:root {
  --yellow: #ffcc00;
  --cream: #f6f3ea;
  --black: #111413;
  --ink: #191b1b;
  --muted: #676760;
  --violet: #4411f3;
  --olive: #444410;
  --line: rgba(17, 20, 19, .14);
  --radius: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--black);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.cursor-glow {
  position: fixed;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 100;
  background: radial-gradient(circle, rgba(255, 204, 0, .24), transparent 68%);
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
}

.site-header {
  position: fixed;
  inset: 18px 18px auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(17, 20, 19, .78);
  color: white;
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 150px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}

.nav-links a,
.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.nav-links a {
  padding: 0 16px;
  color: rgba(255, 255, 255, .82);
}

.mobile-booking-link {
  display: none;
}

.nav-cta {
  justify-self: end;
  padding: 0 18px;
  background: var(--yellow);
  color: var(--black);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--black);
  transition: transform .2s ease, opacity .2s ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  padding-top: 18px;
}

.section-panel {
  width: min(1480px, calc(100% - 36px));
  margin: 18px auto;
  padding: clamp(34px, 6vw, 84px);
  border-radius: var(--radius);
}

.hero {
  min-height: calc(100vh - 36px);
  display: flex;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 204, 0, .95), rgba(255, 204, 0, .82)),
    url("./assets/brand-reference.jpg") center / cover;
}

.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: end;
  gap: 34px;
  padding-top: 110px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(17, 20, 19, .68);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  max-width: 980px;
  font-size: clamp(54px, 8.8vw, 138px);
  line-height: .84;
  font-weight: 900;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(40px, 7vw, 104px);
  line-height: .88;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1;
  font-weight: 900;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-lede {
  max-width: 690px;
  color: rgba(17, 20, 19, .76);
  font-size: clamp(20px, 2.2vw, 31px);
  line-height: 1.18;
  font-weight: 700;
}

.hero-actions,
.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  cursor: pointer;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button.primary {
  background: var(--black);
  color: white;
  box-shadow: 0 20px 45px rgba(17, 20, 19, .22);
}

.button.ghost {
  background: rgba(246, 243, 234, .72);
  color: var(--black);
}

.hero-stage {
  position: relative;
  min-height: 580px;
  border-radius: 46px;
  background: var(--black);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(17, 20, 19, .28);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, .12);
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 42px 42px;
}

.mega-symbol {
  position: absolute;
  top: 20px;
  right: 28px;
  color: var(--yellow);
  font-size: 230px;
  line-height: .7;
  font-weight: 500;
  animation: spin 18s linear infinite;
}

.metric-tile {
  position: absolute;
  display: grid;
  gap: 8px;
  width: 210px;
  min-height: 154px;
  padding: 24px;
  border-radius: 30px;
  font-weight: 900;
}

.metric-tile span {
  color: rgba(17, 20, 19, .62);
  font-size: 13px;
  text-transform: uppercase;
}

.metric-tile strong {
  font-size: 34px;
  line-height: .95;
}

.tile-yellow {
  left: 34px;
  bottom: 34px;
  background: var(--yellow);
}

.tile-dark {
  right: 38px;
  bottom: 44px;
  background: #050505;
  color: white;
}

.tile-dark span {
  color: rgba(255, 255, 255, .62);
}

.tile-cream {
  left: 28%;
  top: 42%;
  background: var(--cream);
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(255, 204, 0, .42);
  border-radius: 50%;
}

.ring-one {
  width: 380px;
  height: 380px;
  left: -120px;
  top: 70px;
}

.ring-two {
  width: 520px;
  height: 520px;
  right: -230px;
  bottom: -180px;
}

.marquee-band {
  overflow: hidden;
  background: var(--black);
  color: var(--yellow);
  padding: 20px 0;
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: clamp(28px, 5vw, 70px);
  line-height: 1;
  font-weight: 900;
  animation: marquee 24s linear infinite;
}

.intro,
.process {
  background: white;
}

.split,
.work-layout,
.proof-grid,
.package-grid,
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.split p,
.work-layout p,
.package-grid p {
  max-width: 650px;
}

.brand-strip span {
  min-width: 120px;
  min-height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  color: white;
  background: var(--black);
  font-weight: 900;
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

.brand-strip span:nth-child(1) {
  background: var(--yellow);
  color: var(--black);
}

.brand-strip span:nth-child(2) {
  background: white;
  color: var(--black);
  border: 1px solid var(--line);
}

.brand-strip span:nth-child(3) {
  background: var(--violet);
}

.brand-strip span:nth-child(4) {
  background: var(--olive);
}

.services,
.testimonials {
  background: var(--yellow);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.section-heading h2 {
  max-width: 920px;
  margin-bottom: 0;
}

.section-heading p {
  max-width: 430px;
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-grid article,
.timeline article,
.package-grid article,
.stats-grid div {
  min-height: 250px;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(17, 20, 19, .1);
  transition: transform .22s ease, background .22s ease;
}

.service-grid article:hover,
.timeline article:hover,
.package-grid article:hover {
  transform: translateY(-8px);
  background: white;
}

.service-grid span,
.timeline span,
.package-grid span {
  display: inline-flex;
  margin-bottom: 42px;
  font-size: 13px;
  font-weight: 900;
  color: rgba(17, 20, 19, .58);
}

.work {
  background: var(--black);
  color: white;
}

.work .section-kicker,
.work p {
  color: rgba(255, 255, 255, .66);
}

.showcase-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.showcase-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 30px;
  background: #232323;
  overflow: hidden;
  position: relative;
}

.showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .62;
  transition: transform .45s ease, opacity .45s ease;
}

.showcase-card:hover img {
  transform: scale(1.06);
  opacity: .78;
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(17, 20, 19, .18), rgba(17, 20, 19, .86));
}

.showcase-card::after {
  content: "*";
  position: absolute;
  z-index: 2;
  right: -2px;
  bottom: -66px;
  color: rgba(255, 204, 0, .36);
  font-size: 220px;
  line-height: 1;
}

.showcase-card.large {
  grid-column: span 2;
  min-height: 350px;
  background: #232323;
}

.showcase-card.yellow {
  background: var(--yellow);
  color: white;
}

.showcase-card.cream {
  background: var(--cream);
  color: white;
}

.showcase-card span {
  position: relative;
  z-index: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-card strong {
  position: relative;
  z-index: 1;
  max-width: 430px;
  font-size: clamp(28px, 4vw, 58px);
  line-height: .95;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.timeline article {
  background: var(--cream);
}

.proof {
  background: var(--black);
  color: white;
}

.proof .section-kicker,
.proof p {
  color: rgba(255, 255, 255, .62);
}

.quote-block h2 {
  font-size: clamp(38px, 5.8vw, 88px);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stats-grid div {
  min-height: 190px;
  background: #202221;
  color: white;
}

.stats-grid strong {
  display: block;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: clamp(42px, 6vw, 86px);
  line-height: .8;
  font-weight: 900;
}

.stats-grid span {
  color: rgba(255, 255, 255, .66);
  font-weight: 800;
}

.benefits-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.benefits-grid div,
.testimonial-grid article {
  position: relative;
  min-height: 176px;
  padding: 24px;
  border-radius: 28px;
  overflow: hidden;
  font-weight: 900;
}

.benefits-grid div {
  display: flex;
  align-items: end;
  background: #202221;
  color: white;
}

.benefits-grid div::before,
.testimonial-grid article::before {
  content: "*";
  position: absolute;
  top: -32px;
  right: 12px;
  color: var(--yellow);
  font-size: 112px;
  line-height: 1;
  opacity: .42;
}

.testimonial-grid article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(17, 20, 19, .1);
}

.testimonial-grid p {
  position: relative;
  z-index: 1;
  color: var(--black);
  font-size: 22px;
  line-height: 1.28;
  font-weight: 900;
}

.testimonial-grid strong {
  position: relative;
  z-index: 1;
  font-size: 14px;
  text-transform: uppercase;
}

.contact {
  background: white;
}

.contact h2 {
  font-size: clamp(42px, 6vw, 92px);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-links a,
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-links a {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
}

.social-link span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 9px;
  color: rgba(17, 20, 19, .62);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream);
  color: var(--black);
  padding: 18px;
  outline: none;
  font-size: 16px;
  font-weight: 700;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 204, 0, .22);
}

.footer {
  width: min(1480px, calc(100% - 36px));
  margin: 18px auto 28px;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--black);
  color: white;
}

.footer-brand {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: 34px;
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-brand img {
  width: min(560px, 100%);
}

.footer-brand p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .62);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 34px 0;
}

.footer-columns div {
  display: grid;
  gap: 12px;
}

.footer h3 {
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 13px;
  text-transform: uppercase;
}

.footer a {
  color: rgba(255, 255, 255, .72);
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .46);
  font-size: 14px;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 10px;
    border-radius: 24px;
    background: rgba(17, 20, 19, .94);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    box-shadow: 0 20px 50px rgba(17, 20, 19, .22);
  }

  .site-header.menu-open .nav-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    justify-content: flex-start;
    min-height: 48px;
    padding: 0 16px;
    background: rgba(255, 255, 255, .06);
  }

  .mobile-booking-link {
    display: inline-flex;
    background: var(--yellow) !important;
    color: var(--black) !important;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .split,
  .work-layout,
  .proof-grid,
  .package-grid,
  .contact-shell,
  .footer-brand {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 480px;
  }

  .section-heading {
    display: grid;
  }

  .service-grid,
  .timeline,
  .benefits-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .cursor-glow {
    display: none;
  }

  .site-header {
    inset: 8px 10px auto;
    padding: 6px 7px 6px 12px;
    gap: 6px;
    border-radius: 18px;
    min-height: 52px;
  }

  .brand img {
    width: 94px;
    max-width: 34vw;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .menu-toggle span {
    width: 16px;
  }

  .section-panel {
    width: calc(100% - 20px);
    margin: 10px auto;
    padding: 28px 20px;
    border-radius: 26px;
  }

  .hero {
    min-height: auto;
    align-items: center;
  }

  .hero-grid {
    padding-top: 84px;
  }

  h1 {
    font-size: 42px;
    line-height: .9;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 16px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-stage {
    min-height: 390px;
    border-radius: 30px;
  }

  .mega-symbol {
    font-size: 150px;
  }

  .metric-tile {
    width: 158px;
    min-height: 124px;
    padding: 18px;
    border-radius: 22px;
  }

  .metric-tile strong {
    font-size: 25px;
  }

  .tile-cream {
    left: 16px;
    top: 120px;
  }

  .tile-dark {
    right: 16px;
    bottom: 20px;
  }

  .tile-yellow {
    left: 16px;
    bottom: 18px;
  }

  .service-grid,
  .timeline,
  .benefits-grid,
  .testimonial-grid,
  .stats-grid,
  .showcase-board,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .showcase-card.large {
    grid-column: auto;
  }

  .showcase-card,
  .showcase-card.large {
    min-height: 280px;
  }

  .brand-strip span {
    min-width: 76px;
  }
}
