/* ============================================================
   LITTERATUS — Design System v2
   Aesthetic: Deep Navy · Antique Gold · Editorial Luxury
   Fonts: Cormorant Garamond (display) · Poppins (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ─── TOKENS ─── */
:root {
  --navy-deep:  #0E1E36;
  --navy-mid:   #162D56;
  --navy:       #1B3A6B;
  --gold:       #C9A84C;
  --gold-lt:    #E2C47A;
  --gold-dim:   rgba(201,168,76,0.12);
  --gold-dim2:  rgba(201,168,76,0.22);
  --gold-dim3:  rgba(201,168,76,0.06);
  --white:      #FFFFFF;
  --off-white:  #F7F6F2;
  --muted:      rgba(255,255,255,0.38);
  --muted-dark: rgba(255,255,255,0.22);
  --border:     rgba(201,168,76,0.18);
  --rule:       rgba(201,168,76,0.22);

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Poppins', 'Helvetica Neue', sans-serif;

  --max-w: 960px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ─── BASE ─── */
body {
  font-family: var(--f-body);
  font-size: clamp(0.82rem, 1.1vw, 0.9rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--white);
  background: var(--navy-deep);
  overflow-x: hidden;
}

/* Grid texture */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none; z-index: 0;
}

/* ─── UTILITY ─── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative; z-index: 1;
}

/* ─── REVEAL ─── */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.rv.visible { opacity: 1; transform: translateY(0); }
.rv.d1 { transition-delay: 0.1s; }
.rv.d2 { transition-delay: 0.2s; }
.rv.d3 { transition-delay: 0.3s; }
.rv.d4 { transition-delay: 0.4s; }
.rv.d5 { transition-delay: 0.5s; }

/* ══════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--gutter);
  background: linear-gradient(to bottom, rgba(14,30,54,0.98) 0%, rgba(14,30,54,0) 100%);
  transition: background 0.4s;
}
.nav.scrolled {
  background: rgba(14,30,54,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
}
.nav__logo img {
  width: 32px; height: 32px; border-radius: 3px;
}
.nav__logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.nav__logo-text span:first-child {
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--white);
}
.nav__logo-text span:last-child {
  font-size: 7px; font-weight: 300; letter-spacing: 0.2em;
  color: var(--gold); margin-top: 3px;
}
.nav__links {
  display: flex; align-items: center; gap: 2rem;
}
.nav__links a {
  font-size: 10px; font-weight: 400; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
  transition: color 0.3s;
}
.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav__cta {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--navy-deep) !important;
  background: var(--gold); padding: 10px 24px; border-radius: 2px;
  transition: background 0.2s, transform 0.2s !important;
}
.nav__cta:hover { background: var(--gold-lt) !important; transform: translateY(-1px); }

/* Mobile */
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.nav__hamburger span {
  display: block; width: 22px; height: 1px; background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__mobile {
  display: none; position: fixed; inset: 0;
  background: var(--navy-deep); z-index: 99;
  flex-direction: column; align-items: center;
  justify-content: center; gap: 2rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--f-display); font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 400; font-style: italic; color: var(--white);
  transition: color 0.3s;
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile .nav__cta {
  font-family: var(--f-body); font-style: normal;
  font-size: 10px; padding: 12px 32px; margin-top: 1rem;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px var(--gutter) 100px; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; top: -10%; right: -8%; width: 52%; height: 120%;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 55%);
  border-left: 1px solid rgba(201,168,76,0.08);
  transform: skewX(-6deg); pointer-events: none;
}
.hero__inner { max-width: var(--max-w); margin-inline: auto; width: 100%; }

.hero__eyebrow {
  font-size: 9px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.6s ease forwards 0.1s;
}
.hero__headline {
  font-family: var(--f-display);
  font-size: clamp(42px, 6.5vw, 78px); font-weight: 600;
  line-height: 1.06; letter-spacing: -0.02em; max-width: 780px;
  opacity: 0; animation: fadeUp 0.6s ease forwards 0.2s;
}
.hero__headline em { font-style: italic; color: var(--gold); }
.hero__sub {
  margin-top: 28px; font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 300; color: var(--muted); max-width: 500px; line-height: 1.8;
  opacity: 0; animation: fadeUp 0.6s ease forwards 0.35s;
}
.hero__actions {
  margin-top: 44px; display: flex; align-items: center;
  gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.6s ease forwards 0.48s;
}
.hero__stats {
  display: flex; gap: 52px; margin-top: 80px;
  padding-top: 48px; border-top: 1px solid var(--rule);
  flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.6s ease forwards 0.6s;
}
.stat { display: flex; flex-direction: column; }
.stat__num {
  font-family: var(--f-display); font-size: 38px; font-weight: 600;
  color: var(--gold); line-height: 1; letter-spacing: -0.02em;
}
.stat__label {
  font-size: 9px; font-weight: 400; letter-spacing: 0.14em;
  color: var(--muted-dark); text-transform: uppercase; margin-top: 7px;
}

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy-deep);
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 14px 32px; border-radius: 2px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 40px rgba(201,168,76,0.25);
}
.btn-primary:hover {
  background: var(--gold-lt); transform: translateY(-2px);
  box-shadow: 0 14px 48px rgba(201,168,76,0.35);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--muted);
  font-size: 10px; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--gold-dim2); color: rgba(255,255,255,0.75); }

/* ══════════════════════════════════════════════
   SECTION SHARED
══════════════════════════════════════════════ */
.section-eyebrow {
  font-size: 9px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.section-headline {
  font-family: var(--f-display);
  font-size: clamp(30px, 4vw, 48px); font-weight: 600;
  line-height: 1.1; letter-spacing: -0.015em;
}
.section-headline em { font-style: italic; color: var(--gold); }
.section-sub {
  font-size: 13px; font-weight: 300; color: var(--muted);
  line-height: 1.8; max-width: 500px; margin-top: 16px;
}
.gold-rule {
  width: 40px; height: 1px; background: var(--gold); margin: 24px 0;
}

/* ══════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════ */
.marquee-bar {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 14px 0; overflow: hidden; background: rgba(22,45,86,0.6);
  position: relative; z-index: 1;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee-track span {
  font-size: 9px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted-dark);
  padding: 0 2.5rem; white-space: nowrap;
}
.marquee-track span.accent { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   POSITIONING SECTION
══════════════════════════════════════════════ */
.positioning {
  background: var(--off-white); color: #1A1A1A;
  padding: clamp(5rem, 9vw, 9rem) var(--gutter);
  position: relative; z-index: 1;
}
.positioning .section-eyebrow { color: #8C6F2E; }
.positioning .container {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: start;
}
.positioning__headline {
  font-family: var(--f-display);
  font-size: clamp(30px, 4vw, 46px); font-weight: 600;
  line-height: 1.1; color: var(--navy); margin-bottom: 1.5rem;
}
.positioning__headline em { font-style: italic; color: var(--gold); }
.positioning__body {
  font-size: 13px; font-weight: 300; color: #4A4A4A; line-height: 1.85;
}
.positioning__body p + p { margin-top: 1.25rem; }

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services {
  padding: clamp(5rem, 9vw, 9rem) var(--gutter);
  background: var(--navy-mid); position: relative; z-index: 1;
}
.services__header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3.5rem; gap: 2rem; flex-wrap: wrap;
}
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem; position: relative; overflow: hidden;
  transition: background 0.3s, border-color 0.3s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 2px; height: 0; background: var(--gold);
  transition: height 0.4s var(--ease-out);
}
.service-card:hover { background: rgba(255,255,255,0.055); border-color: var(--gold-dim2); }
.service-card:hover::before { height: 100%; }
.service-card__num {
  font-size: 8px; font-weight: 600; letter-spacing: 0.22em;
  color: var(--gold); opacity: 0.6; margin-bottom: 1.25rem;
}
.service-card__title {
  font-family: var(--f-display); font-size: clamp(20px, 2vw, 26px);
  font-weight: 600; line-height: 1.15; margin-bottom: 1rem;
}
.service-card__price {
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem; opacity: 0.8;
}
.service-card__body {
  font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.8;
  margin-bottom: 1.5rem;
}
.service-card__link {
  font-size: 9px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.3s;
}
.service-card__link:hover { gap: 10px; }

/* ══════════════════════════════════════════════
   HOW IT WORKS (light section)
══════════════════════════════════════════════ */
.how {
  background: var(--off-white); color: #1A1A1A;
  padding: clamp(5rem, 9vw, 9rem) var(--gutter);
  position: relative; z-index: 1;
}
.how .section-eyebrow { color: #8C6F2E; }
.how .section-headline { color: var(--navy); margin-bottom: 3rem; }
.how__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.how-step {
  background: #fff; padding: 2.5rem 2rem;
  border: 1px solid rgba(27,58,107,0.07);
  position: relative; overflow: hidden; transition: border-color 0.25s;
}
.how-step::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.35s ease;
}
.how-step:hover { border-color: rgba(201,168,76,0.3); }
.how-step:hover::after { width: 100%; }
.how-step__num {
  font-family: var(--f-display); font-size: 52px; font-weight: 600;
  color: rgba(201,168,76,0.18); line-height: 1; margin-bottom: 1.25rem;
}
.how-step__title {
  font-size: 14px; font-weight: 600; color: var(--navy);
  margin-bottom: 0.75rem; line-height: 1.3;
}
.how-step__body {
  font-size: 12px; font-weight: 300; color: #4A4A4A; line-height: 1.8;
}

/* ══════════════════════════════════════════════
   WHY LITTERATUS
══════════════════════════════════════════════ */
.why {
  padding: clamp(5rem, 9vw, 9rem) var(--gutter);
  background: var(--navy-deep); position: relative; z-index: 1;
}
.why .container {
  display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; align-items: start;
}
.why__sticky { position: sticky; top: 8rem; }
.why__list { display: flex; flex-direction: column; }
.why-item {
  padding: 2rem 0; border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 2rem 1fr; gap: 1.5rem;
}
.why-item:first-child { border-top: 1px solid var(--border); }
.why-item__num {
  font-size: 8px; font-weight: 600; letter-spacing: 0.2em;
  color: var(--gold); opacity: 0.6; padding-top: 4px;
}
.why-item__title {
  font-family: var(--f-display); font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600; margin-bottom: 0.5rem;
}
.why-item__body {
  font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.85;
}

/* ══════════════════════════════════════════════
   SIGNAL STRIP
══════════════════════════════════════════════ */
.signal {
  background: var(--navy-mid); padding: clamp(4rem,7vw,7rem) var(--gutter);
  border-top: 1px solid var(--border); position: relative; z-index: 1;
}
.signal .container {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center;
}
.signal__posts { display: flex; flex-direction: column; }
.signal-post {
  padding: 1.25rem 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; transition: opacity 0.25s;
}
.signal-post:first-child { border-top: 1px solid var(--border); }
.signal-post:hover { opacity: 0.6; }
.signal-post__title {
  font-family: var(--f-display); font-size: 17px; font-weight: 500; line-height: 1.3;
}
.signal-post__arrow { color: var(--gold); flex-shrink: 0; font-size: 14px; }

/* ══════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════ */
.cta-band {
  background: var(--navy-mid); padding: clamp(6rem,11vw,10rem) var(--gutter);
  text-align: center; position: relative; z-index: 1; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 55% at 50% 100%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band__headline {
  font-family: var(--f-display);
  font-size: clamp(34px, 5vw, 58px); font-weight: 600;
  line-height: 1.08; letter-spacing: -0.02em;
  max-width: 640px; margin: 1rem auto 1.25rem;
}
.cta-band__headline em { font-style: italic; color: var(--gold); }
.cta-band__sub {
  font-size: 13px; font-weight: 300; color: var(--muted);
  max-width: 420px; margin: 0 auto 3rem; line-height: 1.8;
}
.cta-band__actions {
  display: flex; align-items: center; justify-content: center;
  gap: 1.25rem; flex-wrap: wrap;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer {
  background: var(--navy-deep); border-top: 1px solid var(--border);
  padding: 2rem var(--gutter); position: relative; z-index: 1;
}
.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem;
}
.footer__logo { display: flex; align-items: center; gap: 10px; }
.footer__logo img { width: 26px; height: 26px; border-radius: 3px; opacity: 0.7; }
.footer__logo-text {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.22em; color: var(--muted-dark);
}
.footer__links {
  display: flex; gap: 2rem; flex-wrap: wrap;
}
.footer__links a {
  font-size: 9px; font-weight: 400; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted-dark); transition: color 0.3s;
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.footer__copy {
  font-size: 10px; font-weight: 300; color: var(--muted-dark); letter-spacing: 0.05em;
}
.footer__location {
  font-size: 9px; font-weight: 300; color: var(--muted-dark); letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════════ */
.page-hero {
  padding: 160px var(--gutter) 80px;
  position: relative; z-index: 1; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::after {
  content: '';
  position: absolute; top: -10%; right: -8%; width: 52%; height: 120%;
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 55%);
  border-left: 1px solid rgba(201,168,76,0.06);
  transform: skewX(-6deg); pointer-events: none;
}

.service-detail {
  padding: clamp(4rem, 7vw, 7rem) var(--gutter);
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 1;
}
.service-detail:nth-child(even) { background: rgba(22,45,86,0.4); }
.service-detail .container {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 6rem; align-items: start;
}
.service-detail__meta { position: sticky; top: 8rem; }
.service-detail__num {
  font-size: 8px; font-weight: 600; letter-spacing: 0.22em;
  color: var(--gold); opacity: 0.6; margin-bottom: 0.75rem;
}
.service-detail__title {
  font-family: var(--f-display); font-size: clamp(26px, 3vw, 36px);
  font-weight: 600; line-height: 1.15; margin-bottom: 0.75rem;
}
.service-detail__price {
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
}
.service-detail__tagline {
  font-family: var(--f-display); font-style: italic;
  font-size: 15px; color: var(--gold-lt); margin-bottom: 1rem; line-height: 1.5;
}
.service-detail__body {
  font-size: 12.5px; font-weight: 300; color: var(--muted); line-height: 1.85;
}
.service-detail__body p + p { margin-top: 1.1rem; }
.service-detail__features { margin-top: 2.5rem; }
.service-detail__features li {
  font-size: 12px; font-weight: 300; color: var(--muted);
  padding: 0.75rem 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 1rem; line-height: 1.5;
}
.service-detail__features li::before {
  content: ''; display: block; width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 6px;
}

/* ══════════════════════════════════════════════
   CONTACT / FORM PAGE
══════════════════════════════════════════════ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.2fr;
  min-height: calc(100svh - 0px);
  margin-top: 72px; position: relative; z-index: 1;
}
.contact-info {
  background: var(--navy-mid); padding: clamp(3rem, 6vw, 5rem);
  display: flex; flex-direction: column; justify-content: space-between;
  border-right: 1px solid var(--border);
}
.contact-info__label {
  font-size: 9px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
}
.contact-info__headline {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.5vw, 42px); font-weight: 600;
  line-height: 1.15; margin-bottom: 1.5rem;
}
.contact-info__headline em { font-style: italic; color: var(--gold); }
.contact-info__body {
  font-size: 12.5px; font-weight: 300; color: var(--muted);
  line-height: 1.85; max-width: 38ch; margin-bottom: 2.5rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; flex: 1; }
.contact-detail__label {
  font-size: 8px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); opacity: 0.7; margin-bottom: 4px;
}
.contact-detail__value { font-size: 12.5px; font-weight: 300; color: var(--white); }
.contact-info__quote {
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border);
  font-family: var(--f-display); font-style: italic;
  font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 36ch;
}

/* Form panel */
.contact-form-panel {
  background: var(--navy-deep); padding: clamp(3rem, 6vw, 5rem);
  display: flex; flex-direction: column; justify-content: flex-start;
}
.form-title {
  font-family: var(--f-display); font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600; margin-bottom: 6px;
}
.form-sub {
  font-size: 11.5px; font-weight: 300; color: var(--muted);
  margin-bottom: 2.5rem; line-height: 1.7;
}

/* Field groups */
.field-group { margin-bottom: 1.75rem; }
.field-num {
  font-size: 8px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); opacity: 0.6; margin-bottom: 4px;
}
.field-label {
  font-size: 12px; font-weight: 500; color: var(--white);
  margin-bottom: 4px; line-height: 1.3;
}
.field-hint {
  font-size: 10.5px; font-weight: 300; color: var(--muted-dark);
  margin-bottom: 10px; line-height: 1.6;
}
.field-input, .field-select, .field-textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: 3px;
  color: var(--white); font-family: var(--f-body);
  font-size: 12.5px; font-weight: 300; padding: 12px 16px;
  transition: border-color 0.2s, background 0.2s; outline: none;
  -webkit-appearance: none;
}
.field-input::placeholder, .field-textarea::placeholder {
  color: rgba(255,255,255,0.18);
}
.field-input:focus, .field-select:focus, .field-textarea:focus {
  border-color: rgba(201,168,76,0.45); background: rgba(255,255,255,0.06);
}
.field-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%23C9A84C' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px; background-color: rgba(255,255,255,0.04);
}
.field-select option { background: var(--navy-deep); color: var(--white); }
.field-textarea { resize: none; height: 90px; line-height: 1.7; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Conditional budget section */
.budget-section { display: none; }
.budget-section.visible { display: block; }

/* Choice buttons */
.choice-options {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px;
}
.choice-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--muted); font-family: var(--f-body);
  font-size: 11px; font-weight: 400; letter-spacing: 0.06em;
  padding: 9px 16px; border-radius: 2px; cursor: pointer;
  transition: all 0.18s; white-space: nowrap;
}
.choice-btn:hover {
  border-color: var(--gold-dim2); color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06);
}
.choice-btn.active {
  background: var(--gold-dim); border-color: rgba(201,168,76,0.5);
  color: var(--gold);
}

/* Disqualified / Session message */
.disqualified-msg {
  display: none; margin-top: 1.5rem; padding: 1.5rem;
  background: var(--gold-dim3); border: 1px solid var(--border);
  border-radius: 3px;
}
.disqualified-msg.visible { display: block; }
.disqualified-msg p {
  font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.8;
}
.disqualified-msg a {
  color: var(--gold); border-bottom: 1px solid var(--gold-dim2);
  transition: border-color 0.2s;
}
.disqualified-msg a:hover { border-color: var(--gold); }

/* Submit */
.form-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--gold); color: var(--navy-deep);
  font-family: var(--f-body); font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 15px 32px; border-radius: 2px; width: 100%; margin-top: 1.5rem;
  cursor: pointer; border: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(201,168,76,0.2);
}
.form-submit:hover {
  background: var(--gold-lt); transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.3);
}
.form-submit:disabled { opacity: 0.6; cursor: default; transform: none; }
.form-success { display: none; text-align: center; padding: 3rem 1rem; }
.form-success__icon {
  font-size: 2rem; color: var(--gold); margin-bottom: 1rem;
}
.form-success p:first-of-type {
  font-family: var(--f-display); font-size: 1.8rem;
  font-style: italic; margin-bottom: 0.75rem;
}
.form-success p:last-of-type {
  font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.8;
}

/* Divider */
.section-divider {
  border: none; border-top: 1px solid var(--border); margin: 2rem 0;
}

/* ══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .positioning .container,
  .why .container,
  .signal .container,
  .service-detail .container { grid-template-columns: 1fr; gap: 3rem; }
  .service-detail__meta { position: static; }
  .why__sticky { position: static; }
  .services__grid { grid-template-columns: 1fr; }
  .how__grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { border-right: none; border-bottom: 1px solid var(--border); }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 120px var(--gutter) 60px; }
  .hero__stats { gap: 2rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
