:root {
  --navy: #041c2c;
  --navy-deep: #02131f;
  --teal: #082f3d;
  --gold: #c9a557;
  --gold-light: #ecdcae;
  --cream: #f3f0e8;
  --paper: #f8f7f3;
  --ink: #071c29;
  --muted: #5f6c73;
  --line: #ccd2d1;
}

body {
  background: var(--paper);
  color: var(--ink);
}

body.intro-active { overflow: hidden; }

/* Cinematic brand reveal */
.brand-intro {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, #587582 0%, #294b5b 23%, #0b2b3d 48%, #03131f 78%),
    #03131f;
  opacity: 1;
  visibility: visible;
  transition: opacity .8s cubic-bezier(.65,0,.35,1), visibility .8s;
}

.brand-intro::before,
.brand-intro::after {
  content: "";
  position: absolute;
  inset: 0;
}

.brand-intro::before {
  background:
    radial-gradient(circle at 50% 52%, rgba(137,167,177,.44), transparent 32%),
    linear-gradient(115deg, transparent 32%, rgba(227,194,115,.3) 49%, transparent 62%);
  transform: translateX(-70%);
  animation: introSweep 2.2s .55s cubic-bezier(.56,0,.2,1) forwards;
}

.brand-intro::after {
  background:
    linear-gradient(90deg, rgba(2,15,24,.88), transparent 24%, transparent 76%, rgba(2,15,24,.88)),
    linear-gradient(0deg, rgba(2,15,24,.72), transparent 28%, transparent 78%, rgba(2,15,24,.5));
  pointer-events: none;
}

.intro-gridlines {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 8vw 8vw;
  animation: introGrid 1.4s .25s ease forwards;
}

.intro-aura {
  position: absolute;
  width: min(62vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(231,198,118,.27);
  box-shadow:
    0 0 80px rgba(19,62,78,.32),
    inset 0 0 90px rgba(213,177,91,.035);
  border-radius: 50%;
  opacity: 0;
  transform: scale(.65);
  animation: auraRise 2.5s .35s cubic-bezier(.16,1,.3,1) forwards;
}

.intro-aura::before,
.intro-aura::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(231,198,118,.12);
  border-radius: 50%;
}
.intro-aura::before { inset: 9%; }
.intro-aura::after { inset: 19%; }

.intro-logo-wrap {
  position: relative;
  z-index: 2;
  width: min(380px, 68vw);
  opacity: 0;
  filter: blur(18px);
  transform: scale(.82) translateY(16px);
  animation: logoEmerge 1.8s .6s cubic-bezier(.16,1,.3,1) forwards;
}
.intro-logo-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 16% 7%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221,185,99,.2), rgba(42,96,111,.08) 45%, transparent 72%);
  filter: blur(16px);
  animation: logoPulse 2.4s 1s ease-in-out infinite alternate;
}

.intro-logo-wrap img {
  display: block;
  width: 100%;
  filter:
    drop-shadow(0 1px 0 rgba(190,211,215,.28))
    drop-shadow(0 18px 38px rgba(0,0,0,.38));
}

.intro-rule {
  position: absolute;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
  animation: ruleGrow 1.2s 1.25s ease forwards;
}
.intro-rule-top { top: 10%; }
.intro-rule-bottom { bottom: 10%; }

.intro-message {
  position: absolute;
  bottom: 8vh;
  z-index: 2;
  margin: 0;
  color: rgba(237,220,174,.72);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .42em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  animation: messageIn .8s 1.75s ease forwards;
}

.intro-skip {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 3;
  padding: 8px;
  border: 0;
  background: none;
  color: rgba(255,255,255,.44);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 0;
  cursor: pointer;
  animation: messageIn .7s 1.4s ease forwards;
}
.intro-skip:hover { color: white; }

.brand-intro.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes logoEmerge {
  0% { opacity: 0; filter: blur(18px); transform: scale(.82) translateY(16px); }
  58% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; filter: blur(0); transform: scale(1) translateY(0); }
}
@keyframes introSweep { to { transform: translateX(70%); } }
@keyframes introGrid { to { opacity: 1; } }
@keyframes auraRise { to { opacity: 1; transform: scale(1); } }
@keyframes ruleGrow { to { width: 125%; } }
@keyframes messageIn { to { opacity: 1; transform: none; } }
@keyframes logoPulse {
  from { opacity: .45; transform: scale(.92); }
  to { opacity: 1; transform: scale(1.08); }
}

/* Navigation */
.site-header {
  border-color: rgba(255,255,255,.14);
  background: linear-gradient(90deg, rgba(55,82,90,.95) 0, rgba(20,55,67,.94) 235px, rgba(5,35,48,.92) 460px);
  backdrop-filter: blur(14px);
}
.site-header.scrolled {
  background: linear-gradient(90deg, rgba(48,74,83,.98) 0, rgba(12,45,57,.98) 235px, rgba(3,27,39,.98) 460px);
}
.nav-wrap {
  width: min(1380px, calc(100% - 72px));
  height: 96px;
}
.brand {
  width: 158px;
  height: 84px;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.brand img {
  width: 142px;
  height: 142px;
  object-fit: contain;
  transform: none;
  filter:
    drop-shadow(1px 0 0 rgba(160,187,193,.35))
    drop-shadow(0 6px 12px rgba(0,0,0,.2));
}
nav { gap: 37px; }
nav a {
  position: relative;
  padding-block: 12px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  letter-spacing: .03em;
}
nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 1px;
  background: var(--gold);
  transition: right .25s;
}
nav a:hover::after { right: 0; }
nav a:hover { color: white; }
nav .nav-cta {
  min-width: 169px;
  padding: 15px 20px;
  border: 0;
  background: var(--gold);
  color: var(--navy-deep);
  text-align: center;
  font-weight: 700;
}

/* Hero */
.hero {
  min-height: 900px;
  padding-top: 96px;
  background: #092b42;
}
.hero::before {
  opacity: .16;
  background-size: 9vw 9vw;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-atmosphere {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-atmosphere::before {
  content: "";
  position: absolute;
  inset: -4%;
  width: auto;
  height: auto;
  background: url("assets/dubai-night-hero.png") center center / cover no-repeat;
  transform: scale(1.04);
  animation: skylineDrift 18s ease-in-out infinite alternate;
}
.hero-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  background:
    linear-gradient(90deg, rgba(3,23,37,.9) 0%, rgba(3,23,37,.7) 42%, rgba(3,23,37,.24) 75%, rgba(3,23,37,.34) 100%),
    linear-gradient(0deg, rgba(2,19,31,.74) 0%, transparent 48%, rgba(2,19,31,.2) 100%);
  transform: none;
}
@keyframes skylineDrift {
  0% { transform: scale(1.04) translate3d(0, 0, 0); }
  100% { transform: scale(1.1) translate3d(-1.2%, -.7%, 0); }
}
.hero-wordmark {
  position: absolute;
  left: -1.2vw;
  bottom: 43px;
  color: rgba(255,255,255,.022);
  font: 800 clamp(130px, 21vw, 335px)/.7 "Manrope", sans-serif;
  letter-spacing: -.085em;
  white-space: nowrap;
  user-select: none;
}
.hero-shell {
  position: relative;
  z-index: 2;
  padding-top: 56px;
}
.hero-kicker {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.24);
  color: rgba(255,255,255,.5);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-kicker p { margin: 0; }
.hero-kicker span { color: var(--gold); }
.hero-statement {
  display: grid;
  grid-template-columns: 1fr 285px;
  gap: 110px;
  align-items: end;
  padding-top: 54px;
}
.hero h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(64px, 7.7vw, 118px);
  line-height: .94;
  letter-spacing: -.067em;
  font-weight: 600;
}
.hero h1 em {
  display: inline-block;
  color: var(--gold-light);
  font-style: normal;
  font-weight: 600;
}
.hero-side {
  padding-bottom: 7px;
}
.hero-monogram {
  display: block;
  margin-bottom: 45px;
  color: rgba(255,255,255,.11);
  font: 700 98px/.8 Georgia, serif;
}
.hero-side > p {
  margin: 0 0 35px;
  color: rgba(255,255,255,.63);
  font-size: 15px;
  line-height: 1.75;
}
.circle-link {
  width: 145px;
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  border: 1px solid rgba(201,165,87,.64);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 11px;
  line-height: 1.45;
  transition: color .3s, background .3s, transform .3s;
}
.circle-link:hover {
  color: var(--navy-deep);
  background: var(--gold);
  transform: rotate(-5deg);
}
.circle-link b { align-self: flex-start; font-size: 17px; font-weight: 400; }
.hero-index {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  min-height: 112px;
  border-top: 1px solid rgba(255,255,255,.18);
  transform: translateX(-50%);
}
.hero-index > p {
  color: rgba(255,255,255,.46);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-index > a {
  justify-self: end;
  color: rgba(255,255,255,.58);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.hero-index > a span { margin-left: 9px; color: var(--gold); }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
}
.hero-proof div {
  min-width: 0;
  margin: 0;
  padding: 0 22px;
  border-right: 1px solid rgba(255,255,255,.14);
}
.hero-proof div:first-child { border-left: 1px solid rgba(255,255,255,.14); }
.hero-proof strong {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .1em;
}
.hero-proof span {
  margin-top: 8px;
  color: rgba(255,255,255,.58);
  font-size: 10px;
}

/* Editorial content system */
.section { padding: 135px 0; }
.container { width: min(1280px, calc(100% - 72px)); }
.eyebrow {
  gap: 14px;
  font-size: 10px;
  letter-spacing: .22em;
}
.section-heading h2,
.packages-heading h2,
.additional h2,
.contact h2 {
  margin-top: 24px;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 600;
}

.intro {
  position: relative;
  padding: 150px 0;
  background: var(--paper);
}
.intro::after {
  content: "01";
  position: absolute;
  right: 4vw;
  top: 45px;
  color: rgba(7,28,41,.06);
  font: 700 180px/1 "Manrope";
}
.intro-grid {
  grid-template-columns: 1.3fr .7fr;
  align-items: start;
  gap: 12vw;
}
.intro-copy {
  padding-top: 70px;
  border-top: 1px solid var(--line);
}
.intro-copy > p {
  color: #374c55;
  font-size: 18px;
  line-height: 1.75;
}
.arrow-link {
  gap: 20px;
  padding: 0 0 9px;
  border-color: var(--ink);
  color: var(--ink);
}

.services {
  position: relative;
  padding-top: 130px;
  background: #e8ece9;
}
.section-heading.centered {
  max-width: 940px;
  text-align: left;
  margin: 0;
}
.section-heading.centered .eyebrow { justify-content: flex-start; }
.section-heading.centered > p:last-child {
  max-width: 480px;
  margin: 30px 0 0 auto;
  font-size: 16px;
}
.service-grid {
  gap: 0;
  margin-top: 85px;
  border-top: 1px solid #acb7b5;
}
.service-card {
  min-height: 480px;
  padding: 42px 35px;
  border: 0;
  border-right: 1px solid #acb7b5;
  background: transparent;
  box-shadow: none;
}
.service-card:first-child { border-left: 1px solid #acb7b5; }
.service-card:hover {
  border-color: #acb7b5;
  background: var(--navy);
  color: white;
  box-shadow: none;
  transform: translateY(-10px);
}
.service-card:hover p { color: rgba(255,255,255,.63); }
.service-card:hover .service-number { color: var(--gold); }
.service-card:hover .service-icon { background: var(--gold); }
.service-card:hover .service-icon svg { stroke: var(--navy); }
.service-card h3 {
  max-width: 260px;
  margin-top: 100px;
  font-size: 27px;
  line-height: 1.15;
}
.service-card p {
  max-width: 310px;
  min-height: 95px;
  margin-top: 22px;
  font-size: 14px;
}
.service-number { right: 34px; top: 35px; }
.service-icon { width: 58px; height: 58px; background: #d8dfdc; }

.packages {
  background: var(--navy-deep);
}
.packages-heading {
  grid-template-columns: 1.25fr .75fr;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.packages-heading > p {
  max-width: 430px;
  justify-self: end;
  font-size: 16px;
}
.package-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 0;
  border-left: 1px solid rgba(255,255,255,.16);
}
.package-card {
  min-height: 510px;
  padding: 48px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: transparent;
}
.package-card:hover {
  background: #092a39;
  transform: none;
}
.package-card.featured {
  border-color: rgba(255,255,255,.16);
  background: linear-gradient(135deg, rgba(201,165,87,.16), transparent 55%);
}
.popular { right: 0; top: 0; height: 32px; padding: 10px 14px; }
.package-top h3 { font-size: 35px; }
.package-top > span { margin-top: 10px; font-size: 12px; }
.price {
  margin-top: 33px;
  padding: 25px 0;
}
.price strong { font-size: 25px; }
.package-card li { font-size: 12px; margin: 11px 0; }
.package-btn { padding: 18px 0 0; font-size: 12px; }
.cfo-banner {
  margin-top: 55px;
  padding: 50px;
  background: var(--gold);
  border: 0;
  color: var(--navy-deep);
}
.cfo-label p { color: var(--navy); }
.cfo-icon { background: var(--navy); color: var(--gold); }
.cfo-main h3 { font-size: 40px; }
.cfo-main p { color: rgba(4,28,44,.62); }
.cfo-price small { color: rgba(4,28,44,.55); }
.cfo-price strong { color: var(--navy); }
.cfo-price span { color: rgba(4,28,44,.54); }
.cfo-features span {
  color: rgba(4,28,44,.72);
  border-color: rgba(4,28,44,.2);
}
.cfo-banner > .btn {
  border: 1px solid var(--navy);
  background: var(--navy);
  color: white;
}

.additional {
  background: var(--paper);
}
.additional-grid {
  grid-template-columns: .9fr 1.1fr;
  gap: 10vw;
}
.additional-copy {
  position: sticky;
  top: 150px;
  align-self: start;
}
.btn-dark {
  padding: 18px 24px;
  border-radius: 0;
}
.service-list { border-color: #aeb8b6; }
.service-list div {
  min-height: 112px;
  grid-template-columns: 56px 1fr 40px;
  border-color: #aeb8b6;
  padding-block: 20px;
}
.service-list div:hover {
  padding-inline: 17px;
  background: var(--navy);
  color: white;
}
.service-list p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}
.service-list p small {
  display: block;
  max-width: 620px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
}
.service-list div:hover p small { color: rgba(255,255,255,.62); }

.why {
  background: #e8ece9;
}
.why .section-heading.centered { margin: 0 auto; text-align: center; }
.why .section-heading.centered .eyebrow { justify-content: center; }
.benefit-grid {
  margin-top: 80px;
  border-color: #b8c1bf;
}
.benefit-grid article {
  min-height: 320px;
  padding: 42px 34px;
  border-color: #b8c1bf;
}
.benefit-grid h3 { margin-top: 82px; font-size: 22px; }
.benefit-grid p { font-size: 14px; }

.contact {
  padding: 0;
  background: var(--navy-deep);
}
.contact-shell {
  width: 100%;
  max-width: none;
  grid-template-columns: 1fr 1fr;
  box-shadow: none;
  background: var(--navy);
}
.contact-copy {
  padding: 110px max(6vw, 50px);
  background:
    radial-gradient(circle at 0 100%, rgba(201,165,87,.16), transparent 35%),
    var(--navy);
}
.contact-copy h2 { max-width: 650px; }
.contact-copy > p:not(.eyebrow) { max-width: 520px; font-size: 16px; }
.contact-form { padding: 105px max(6vw, 50px); }
.contact-form input,
.contact-form select {
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid #aab5b3;
  background: transparent;
}
.submit-btn { padding: 19px; }

footer {
  margin-top: 0;
  background: #010c14;
}
.footer-main { padding-top: 95px; }
.footer-brand .brand { width: 220px; height: 155px; }
.footer-brand .brand img { width: 225px; height: 223px; }
.footer-brand .brand {
  padding: 0;
  background: transparent;
}

.reveal {
  transform: translateY(30px);
  transition-duration: .9s;
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}

@media (max-width: 1050px) {
  .hero-statement { gap: 55px; }
  .hero h1 { font-size: clamp(65px, 8.6vw, 94px); }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card h3 { margin-top: 70px; }
}

@media (max-width: 820px) {
  .nav-wrap, .container { width: min(100% - 36px, 700px); }
  .nav-wrap { height: 80px; }
  .brand { width: 132px; height: 70px; padding: 0 6px; }
  .brand img { width: 118px; height: 118px; }
  .menu-toggle > span:not(.sr-only) { background: white; }
  nav { top: 80px; }
  nav.open { background: var(--navy-deep); }
  .hero { min-height: 850px; padding-top: 80px; }
  .hero-shell { padding-top: 35px; }
  .hero-statement { grid-template-columns: 1fr; gap: 45px; padding-top: 42px; }
  .hero h1 { font-size: clamp(56px, 11.5vw, 86px); }
  .hero-side { display: grid; grid-template-columns: 1fr 145px; align-items: center; gap: 35px; }
  .hero-monogram { display: none; }
  .hero-side > p { margin: 0; }
  .hero-index { grid-template-columns: 1fr auto; }
  .hero-index > p { display: none; }
  .hero-proof { grid-column: 1; }
  .hero-index > a { grid-column: 2; }
  .intro-grid, .packages-heading, .additional-grid, .contact-shell, .footer-main { grid-template-columns: 1fr; }
  .intro-copy { padding-top: 35px; }
  .section-heading.centered { max-width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:first-child {
    min-height: 310px;
    border-left: 1px solid #acb7b5;
    border-bottom: 1px solid #acb7b5;
  }
  .service-card h3 { margin-top: 35px; }
  .additional-copy { position: static; }
  .contact-copy, .contact-form { padding: 70px max(7vw, 32px); }
}

@media (max-width: 560px) {
  body { overflow-x: hidden; }
  .section { padding: 78px 0; }
  .nav-wrap, .container { width: min(100% - 28px, 520px); }
  .nav-wrap { height: 72px; }
  .site-header .brand {
    width: 120px;
    height: 66px;
  }
  .site-header .brand img {
    width: 112px;
    height: 112px;
  }
  .menu-toggle {
    min-width: 44px;
    min-height: 44px;
    padding: 7px;
  }
  nav {
    top: 72px;
    max-height: calc(100svh - 72px);
    padding: 30px 24px 35px;
    overflow-y: auto;
  }
  nav.open { gap: 8px; }
  nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px 4px;
    font-size: 15px;
  }
  nav .nav-cta {
    justify-content: center;
    margin-top: 10px;
  }
  .intro-logo-wrap { width: min(82vw, 330px); }
  .intro-message { font-size: 8px; letter-spacing: .28em; }
  .intro-skip { right: 16px; bottom: 14px; min-width: 44px; min-height: 44px; }
  .hero { min-height: max(760px, 100svh); padding-top: 72px; }
  .hero-shell { padding-top: 25px; }
  .hero-atmosphere::before {
    background-position: 67% center;
    animation-duration: 24s;
  }
  .hero-statement { gap: 28px; padding-top: 34px; }
  .hero-kicker p { display: none; }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(45px, 14vw, 58px);
    line-height: 1;
    overflow-wrap: normal;
  }
  .hero-side { display: block; }
  .hero-side > p { max-width: 330px; margin-bottom: 22px; font-size: 14px; line-height: 1.65; }
  .circle-link {
    width: 100%;
    height: auto;
    min-height: 52px;
    display: inline-flex;
    gap: 35px;
    border-radius: 0;
    padding: 15px 18px;
  }
  .circle-link span br { display: none; }
  .circle-link b { align-self: center; }
  .hero-index { min-height: 94px; display: block; padding-top: 20px; }
  .hero-index > a { display: none; }
  .hero-proof div { padding: 0 8px; }
  .hero-proof strong { font-size: 9px; }
  .hero-proof span { font-size: 8px; line-height: 1.3; }
  .intro::after { font-size: 110px; }
  .intro { padding: 90px 0; }
  .intro-grid { gap: 30px; }
  .intro-copy > p { font-size: 16px; line-height: 1.7; }
  .section-heading h2, .packages-heading h2, .additional h2, .contact h2 {
    font-size: clamp(36px, 10.5vw, 42px);
    line-height: 1.06;
  }
  .section-heading.centered > p:last-child { margin-left: 0; }
  .service-grid { margin-top: 50px; }
  .service-card,
  .service-card:first-child {
    min-height: 285px;
    padding: 30px 26px;
  }
  .service-card h3 { margin-top: 32px; font-size: 24px; }
  .service-card p { margin-bottom: 23px; }
  .packages-heading { gap: 24px; padding-bottom: 45px; }
  .packages-heading > p { font-size: 14px; }
  .package-grid { grid-template-columns: 1fr; }
  .package-card { min-height: 0; padding: 36px 26px; }
  .package-top h3 { font-size: 30px; }
  .package-card ul { padding-bottom: 26px; }
  .cfo-banner { padding: 35px 26px; }
  .cfo-main h3 { font-size: 34px; }
  .cfo-main { gap: 18px; }
  .cfo-features { margin-bottom: 22px; }
  .cfo-banner > .btn { min-height: 50px; }
  .additional-grid { gap: 48px; }
  .additional-copy .btn { width: 100%; }
  .service-list div {
    min-height: 0;
    grid-template-columns: 38px 1fr;
    padding: 20px 0;
  }
  .service-list div:hover { padding-inline: 10px; }
  .service-list b { display: none; }
  .service-list p { font-size: 15px; line-height: 1.35; }
  .service-list p small { margin-top: 7px; font-size: 12px; line-height: 1.5; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid article { min-height: 250px; }
  .benefit-grid h3 { margin-top: 48px; }
  .contact-copy, .contact-form { padding: 58px 22px; }
  .contact-copy > p:not(.eyebrow) { font-size: 14px; }
  .contact-form input,
  .contact-form select {
    min-height: 48px;
    font-size: 16px;
  }
  .submit-btn { min-height: 52px; }
  .form-success { padding: 30px 24px; }
  .footer-main { gap: 32px; padding: 65px 0 40px; }
  .footer-brand .brand { width: 185px; height: 125px; }
  .footer-brand .brand img { width: 190px; height: 188px; }
  .footer-links { grid-template-columns: 1fr; gap: 26px; }
  .footer-links > div:last-child { grid-column: auto; }
  .footer-links a { min-height: 32px; display: flex; align-items: center; }
  .footer-bottom { padding: 28px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-intro { display: none; }
  body.intro-active { overflow: auto; }
}
