:root {
  --yellow: #f3c92f;
  --yellow-soft: #ffe282;
  --blue: #243f72;
  --ink: #050505;
  --white: #ffffff;
  --muted: #666;
  --line: #d6dce5;
  --panel: #121212;
  --radius: 8px;
  --sans: "Inter", Arial, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 32px clamp(24px, 4vw, 72px);
}

.brand img {
  width: clamp(160px, 14vw, 270px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 76px;
  padding: 0 40px;
  color: var(--blue);
  background: rgba(255, 226, 130, 0.42);
  font-size: 19px;
  font-weight: 700;
}

.nav-cta {
  margin-left: 36px;
}

.mobile-action {
  display: none;
  font-size: 40px;
  line-height: 1;
}

.section-inner {
  width: min(100% - 48px, 1510px);
  margin-inline: auto;
}

.section-sunburst {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 239, 177, 0.96), rgba(246, 205, 61, 0.72) 54%, rgba(244, 201, 47, 0.9)),
    repeating-linear-gradient(68deg, transparent 0 155px, rgba(255, 255, 255, 0.45) 156px 169px, transparent 170px 245px);
  position: relative;
  overflow: hidden;
}

.section-sunburst::before {
  content: "";
  position: absolute;
  inset: 150px -8vw 0;
  opacity: 0.56;
  background-image: radial-gradient(rgba(255, 255, 255, 0.88) 2px, transparent 2.5px);
  background-size: 13px 13px;
  clip-path: polygon(0 0, 12% 0, 48% 100%, 40% 100%, 0 18%, 0 0, 23% 0, 32% 0, 59% 100%, 51% 100%, 23% 0, 48% 0, 55% 0, 66% 100%, 58% 100%, 48% 0, 72% 0, 80% 0, 58% 100%, 50% 100%, 72% 0, 95% 0, 100% 0, 72% 100%, 64% 100%, 95% 0);
  pointer-events: none;
}

.hero {
  padding: 210px 0 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.expertise h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(52px, 8.1vw, 150px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 span,
.expertise h2 span {
  font-family: var(--serif);
  font-weight: 700;
}

.hero-copy {
  width: min(100%, 1260px);
  margin: 48px auto 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 36px);
  font-weight: 600;
  line-height: 1.05;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 68px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 34px;
  border: 2px solid var(--ink);
  border-radius: 0;
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button span {
  margin-right: 14px;
}

.hero-feature {
  position: relative;
  overflow: hidden;
  width: min(100%, 1948px);
  margin: 110px auto 0;
  border: 4px solid var(--ink);
  border-radius: 38px;
  background: var(--ink);
}

.hero-feature img {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
}

.hero-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 42%, rgba(0, 0, 0, 0.12));
}

.services-intro {
  padding: 250px 0 220px;
  background: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(360px, 0.96fr) minmax(420px, 0.7fr);
  gap: clamp(70px, 7vw, 150px);
  align-items: center;
}

.service-media img {
  width: 100%;
  object-fit: cover;
}

.service-list h2 {
  margin: 0 0 66px;
  font-size: clamp(44px, 4vw, 78px);
  font-weight: 800;
  line-height: 1;
}

.service-item {
  padding: 44px 0;
  border-top: 1px solid var(--line);
}

.service-item:last-of-type {
  border-bottom: 1px solid var(--line);
}

.service-item h3 {
  margin: 0 0 20px;
  font-size: 26px;
  font-weight: 800;
}

.service-item p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 1.65vw, 34px);
  font-weight: 600;
  line-height: 1.05;
}

.service-button {
  margin-top: 58px;
}

.expertise {
  padding: 180px 0 205px;
  background:
    linear-gradient(rgba(243, 201, 47, 0.9), rgba(243, 201, 47, 0.9)),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.07) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.05) 0 1px, transparent 1px 92px),
    radial-gradient(circle at 18% 32%, rgba(255, 255, 255, 0.26), transparent 34%),
    var(--yellow);
}

.expertise h2 {
  width: min(100%, 980px);
  margin-inline: auto;
  text-align: center;
  font-size: clamp(54px, 6.4vw, 122px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 110px;
}

.feature-card {
  min-height: 340px;
  padding: 68px 70px 64px;
  border-radius: 8px;
  background: var(--white);
}

.feature-card h3 {
  margin: 0 0 22px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
}

.feature-card p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 1.7vw, 33px);
  font-weight: 600;
  line-height: 1.08;
}

.centered {
  margin: 80px auto 0;
}

.project-band {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.project-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.statement {
  overflow: hidden;
  background: var(--yellow);
}

.statement-track {
  display: grid;
  min-height: 620px;
  align-content: center;
  gap: 76px;
  width: min(100% - 140px, 1500px);
  margin-inline: auto;
}

.statement h2 {
  max-width: 1260px;
  margin: 0;
  font-size: clamp(72px, 8.2vw, 176px);
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.contact {
  padding: 88px 0;
  color: var(--white);
  background:
    linear-gradient(rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.64)),
    url("./assets/contact-bg.png") center / cover no-repeat;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 80px;
  align-items: center;
  padding: clamp(54px, 7vw, 120px);
  background: rgba(18, 18, 18, 0.96);
}

.yellow {
  color: var(--yellow);
}

.contact-copy h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(38px, 3vw, 62px);
  line-height: 1.12;
}

.contact-copy p:last-child {
  max-width: 820px;
  margin: 58px 0 0;
  color: #e6e6e6;
  font-size: 22px;
  line-height: 1.5;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--yellow);
  font-size: 19px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #aeb4bd;
  border-radius: 2px;
  padding: 18px 22px;
  font: 18px var(--sans);
  color: var(--ink);
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
}

.submit {
  min-height: 58px;
  border: 0;
  border-radius: 4px;
  color: var(--ink);
  background: var(--yellow);
  font: 800 20px var(--sans);
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    align-items: center;
    padding: 22px;
  }

  .brand img {
    width: 154px;
  }

  .nav-links {
    display: none;
  }

  .mobile-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--ink);
    font-weight: 400;
  }

  .section-inner {
    width: min(100% - 42px, 760px);
  }

  .hero {
    padding-top: 128px;
  }

  .eyebrow {
    display: none;
  }

  .hero h1 {
    font-size: clamp(48px, 13vw, 74px);
  }

  .hero-copy {
    margin-top: 26px;
    font-size: 27px;
  }

  .button-row {
    display: grid;
    justify-items: center;
    gap: 16px;
    margin-top: 42px;
  }

  .button {
    min-height: 56px;
    max-width: 100%;
    padding-inline: 24px;
    font-size: 16px;
  }

  .hero-feature {
    margin-top: 34px;
    border-width: 3px;
    border-radius: 11px;
  }

  .services-intro {
    padding: 72px 0 78px;
  }

  .split,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 50px;
  }

  .service-list h2 {
    margin-bottom: 42px;
    text-align: center;
  }

  .service-item {
    padding: 28px 0;
  }

  .service-button {
    width: 100%;
    margin-top: 34px;
  }

  .expertise {
    padding: 74px 0 88px;
  }

  .expertise h2 {
    font-size: clamp(50px, 11vw, 76px);
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 56px;
  }

  .feature-card {
    min-height: 0;
    padding: 46px 42px;
  }

  .project-band {
    min-height: 440px;
  }

  .statement-track {
    width: 100%;
    min-height: 520px;
    gap: 42px;
    padding: 76px 0;
  }

  .statement h2 {
    width: min(100% - 42px, 760px);
    margin-inline: auto;
    font-size: clamp(62px, 15vw, 118px);
    line-height: 1.12;
  }

  .statement .button {
    width: 100%;
    border-left: 0;
    border-right: 0;
  }

  .contact {
    padding: 0;
  }

  .contact-panel {
    width: 100%;
    gap: 42px;
    padding: 58px 22px;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    max-width: 360px;
    margin-inline: auto;
    line-height: 0.98;
  }

  .hero-copy {
    font-size: 25px;
    line-height: 1.02;
  }

  .button {
    width: auto;
  }

  .hero-feature img {
    aspect-ratio: 1.56 / 1;
  }

  .hero-feature figcaption {
    width: 50%;
    font-size: 19px;
  }

  .service-item p,
  .feature-card p {
    font-size: 26px;
  }

  .project-band {
    min-height: 410px;
  }

  .statement h2 {
    transform: translateX(-18vw);
    width: 124vw;
  }

  .contact-copy p:last-child {
    margin-top: 28px;
    font-size: 18px;
  }
}
