/* ── TOKENS ── */
:root {
  --navy: #0F1D35;
  --navy2: #162540;
  --navy3: #1E3050;
  --red: #B83225;
  --red2: #CE3D2E;
  --orange: #D97B18;
  --cream: #FEFDFB;
  --cream2: #F6F3EE;
  --cream3: #EDE9E2;
  --gray: #6B6B6B;
  --gray2: #9A9A9A;
  --border: #E8E4DC;
  --border2: #D8D4CC;
  --ink: #1A1208;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--navy); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── INTENT ROUTING ── */
.intent-bg { background: var(--cream); padding: 0 0 0; }
.intent-bg .sec { padding-top: 44px; padding-bottom: 80px; }
.intent-top { text-align: center; margin-bottom: 40px; }
.intent-h2 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--navy); margin-top: 8px; line-height: 1.25; }
.intent-h2 em { color: var(--orange); font-style: italic; }
.intent-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.intent-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 32px 20px 28px; border-radius: 6px;
  background: #fff; border: 1px solid var(--border);
  text-decoration: none; color: var(--navy);
  transition: all .2s ease;
}
.intent-card:hover {
  border-color: var(--orange); box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transform: translateY(-2px);
}
.intent-card-agent { border-style: dashed; }
.intent-icon { color: var(--orange); margin-bottom: 14px; line-height: 0; }
.intent-label { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.intent-sub { font-size: 13px; font-weight: 300; color: var(--gray); line-height: 1.5; }
.intent-lead { font-size: 15px; font-weight: 300; color: var(--gray); margin-top: 8px; letter-spacing: 0; }
.intent-cta { display: block; margin-top: 10px; font-size: 12px; font-weight: 400; color: var(--orange); letter-spacing: 0.3px; opacity: 0.7; transition: opacity 0.2s; }
.intent-card:hover .intent-cta { opacity: 1; }
@media (max-width: 768px) {
  .intent-grid { grid-template-columns: 1fr 1fr; }
  .intent-bg { padding: 48px 0 40px; }
  .intent-h2 { font-size: 26px; }
}
@media (max-width: 480px) {
  .intent-grid { grid-template-columns: 1fr; gap: 12px; }
  /* Phase 4A-1B: allow row content to wrap on narrow viewports; min-width:0 lets
     flex children shrink below intrinsic content width instead of forcing the
     card to ~350px and overflowing iPhone SE-class viewports. */
  .intent-card { flex-direction: row; flex-wrap: wrap; text-align: left; padding: 20px; gap: 16px; min-width: 0; }
  .intent-card > * { min-width: 0; }
  .intent-icon { margin-bottom: 0; flex-shrink: 0; }
  .intent-h2 { font-size: 23px; }
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 260;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 56px; transition: all .35s;
  background: rgba(15,29,53,.45); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #B83225, #D97B18, #fff5d6, #D97B18, #B83225, #D97B18);
  background-size: 200% auto;
  animation: nav-shimmer 3s linear infinite;
  z-index: 201;
}
@keyframes nav-shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes chevron-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
nav.solid {
  background: rgba(15,29,53,.92); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.08); padding: 14px 56px;
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
}
.logo {
  display: flex; align-items: center; text-decoration: none;
}
.logo svg { display: block; }
.logo .lt-main { transition: fill .3s; }
nav.solid .logo .lt-main { fill: white !important; }
.logo em { font-style: italic; color: var(--orange); }
.nav-r { display: flex; gap: 36px; align-items: center; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 400; letter-spacing: .3px;
  color: rgba(255,255,255,.55); transition: color .2s;
}
nav.solid .nav-links a { color: rgba(255,255,255,.7); }
.nav-links a:hover { color: #fff; }
nav.solid .nav-links a:hover { color: var(--orange); }
.nav-links li { position: relative; }
/* ── DESKTOP MEGA-MENU (mobile menu aesthetic) ── */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15,29,53,.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  padding: 8px 0 16px;
  min-width: 520px;
  box-shadow: 0 16px 48px rgba(0,0,0,.45);
  z-index: 202;
  margin-top: 12px;
  list-style: none;
  columns: 2;
  column-gap: 0;
}
.nav-dropdown::before {
  content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px;
}
.nav-links li:hover > .nav-dropdown { display: block; }

/* Category headers — DM Mono gold, matching mobile */
.nav-dropdown .nav-group-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #D97B18;
  padding: 16px 24px 6px;
  text-align: left;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 0;
  break-after: avoid;
  -webkit-column-break-after: avoid;
}
.nav-dropdown .nav-group-label:first-child {
  padding-top: 12px;
  border-top: none;
}

/* Service links — Jost, left-aligned, matching mobile */
.nav-dropdown li { padding: 0; break-inside: avoid; -webkit-column-break-inside: avoid; }
.nav-dropdown a {
  display: block;
  padding: 7px 24px 7px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.55) !important;
  white-space: nowrap;
  transition: color .2s, padding-left .2s;
  text-align: left;
}
.nav-dropdown a:hover {
  color: #fff !important;
  background: transparent;
  padding-left: 32px;
}
nav.solid .nav-dropdown a:hover { color: #fff !important; }

/* Chevron on trigger */
.has-dropdown > a::after { content: ' ▾'; font-size: 10px; opacity: .4; }


/* Dropdown CTA footer */
.nav-dd-footer { column-span: all; -webkit-column-span: all; padding: 14px 24px 6px; margin-top: 8px; border-top: 1px solid rgba(255,255,255,.08); list-style: none; display: flex; flex-direction: column; gap: 8px; }
.nav-dd-actions { width: 100%; }
.nav-dd-book { display: block !important; text-align: center !important; padding: 10px 20px !important; border-radius: 4px; background: var(--accent1, #2D6A4F); color: #fff !important; font-family: 'Jost', sans-serif !important; font-size: 12px !important; font-weight: 600 !important; letter-spacing: .5px; text-transform: uppercase; transition: background .2s !important; white-space: nowrap; }
.nav-dd-book:hover { background: var(--accent1-hover, #3A8463) !important; padding-left: 20px !important; }
.nav-dd-review { display: flex !important; flex-direction: row; align-items: center; justify-content: center; gap: 10px; padding: 11px 20px !important; border-radius: 4px; width: 100%; background: rgba(255,255,255,.05); text-decoration: none !important; transition: background .2s; }
.nav-dd-review:hover { background: rgba(255,255,255,.09); }
.nav-dd-icons { display: flex; align-items: center; gap: 6px; }
.nav-dd-icons svg { width: 17px; height: 17px; flex-shrink: 0; }
.nav-dd-stars { color: #FBBC05; font-size: 14px; letter-spacing: .5px; }
.nav-dd-leave { font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.7) !important; }
@media (max-width: 1024px) { .nav-dropdown { display: none !important; } }
.nav-cta {
  background: var(--red); color: #fff !important;
  font-size: 12px !important; font-weight: 600 !important;
  letter-spacing: .8px !important; text-transform: uppercase;
  padding: 11px 26px; border-radius: 2px;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--red2) !important; }
.nav-phone {
  color: rgba(255,255,255,.7); font-size: 13px;
  display: flex; align-items: center; gap: 6px;
  transition: color .3s;
}
nav.solid .nav-phone { color: rgba(255,255,255,.85); }
.lang-switch {
  color: rgba(255,255,255,.55); font-size: 12px; font-weight: 600;
  letter-spacing: 1px; padding: 6px 12px; border-radius: 2px;
  border: 1px solid rgba(255,255,255,.2); transition: .2s;
}
.lang-switch:hover { color: #fff; border-color: rgba(255,255,255,.5); }

/* ── HERO ── */
.hero {
  min-height: auto; position: relative; overflow: hidden;
  display: flex; align-items: center; padding: 160px 56px 60px;
}
.hero-bg-l { position: absolute; inset: 0; background: var(--navy); }
.hero-bg-r {
  position: absolute; top: 0; right: 0; bottom: 0; width: 46%;
  background: var(--cream2);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-actions-mobile { display: none; }
.hero-proof-mobile { display: none; }
.hero-sub-mobile { display: none; }
.hero-rule {
  display: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 55fr 45fr;
  gap: 0; width: 100%; max-width: 1260px; margin: 0 auto;
  align-items: center;
}
/* LEFT */
.hero-l { padding-right: 40px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 24px;
}
.hero-eyebrow-line { width: 32px; height: 1px; background: var(--orange); }
.hero-eyebrow span {
  font-family: 'DM Mono', monospace;
  font-size: 12px; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; color: var(--orange);
  white-space: nowrap;
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 900; line-height: .95;
  color: #fff; margin-bottom: 24px; letter-spacing: -1px;
}
h1 em { font-style: italic; color: var(--orange); display: inline; }
.hero-sub {
  font-size: 18px; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,.55); max-width: 620px; margin-bottom: 36px;
}
.hero-sub strong { color: rgba(255,255,255,.85); font-weight: 500; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; align-items: center; }
.btn-primary-wrap {
  display: inline-block; border-radius: 4px; padding: 2px;
  background: conic-gradient(from var(--angle), #B83225 0%, #D97B18 25%, #f0c060 40%, #D97B18 55%, #B83225 70%, #8a1f14 85%, #B83225 100%);
  animation: spin-border 4s linear infinite;
  box-shadow: 0 0 24px rgba(184,50,37,.4), 0 0 48px rgba(217,123,24,.18), 0 8px 24px rgba(0,0,0,.3);
  text-decoration: none;
}
.btn-primary {
  background: var(--red); color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: .5px;
  padding: 16px 36px; border-radius: 2px; border: none;
  cursor: pointer; display: block;
  transition: background .2s, transform .15s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--red2); }
.btn-ghost {
  background: transparent; color: rgba(255,255,255,.6);
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 400;
  padding: 15px 28px; border-radius: 2px;
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer; display: inline-block;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.hero-proof {
  display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 32px;
}
.proof-item {
  padding-right: 28px; margin-right: 28px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.proof-item:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.proof-n {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 700; color: #fff;
  letter-spacing: -1px; line-height: 1;
}
.proof-l {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-top: 5px;
}
/* RIGHT — FORM */
.hero-r { padding-left: 32px; }

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes spin-border {
  to { --angle: 360deg; }
}
/* Firefox fallback: static gradient when @property is unsupported */
@supports not (syntax: '<angle>') {
  .btn-primary-wrap, .form-card-wrap, .btn-navy-wrap {
    background: linear-gradient(135deg, #B83225, #D97B18, #f0c060, #D97B18, #B83225);
    animation: none;
  }
}

.form-card-wrap {
  position: relative; border-radius: 6px; padding: 2px;
  background: conic-gradient(from var(--angle), #B83225 0%, #D97B18 25%, #f0c060 40%, #D97B18 55%, #B83225 70%, #8a1f14 85%, #B83225 100%);
  animation: spin-border 4s linear infinite;
  box-shadow: 0 0 32px rgba(184,50,37,.35), 0 0 64px rgba(217,123,24,.15), 0 24px 56px rgba(0,0,0,.4);
  overflow: visible;
}

.form-card {
  background: var(--navy); border-radius: 4px;
  padding: 36px 32px; position: relative; overflow: visible;
  border: none;
}
.form-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange), #f0c060, var(--orange), var(--red));
  background-size: 200% 100%;
  animation: shimmer-bar 3s ease-in-out infinite;
}
@keyframes shimmer-bar {
  0%   { background-position: 100% 0; }
  50%  { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}
.form-card-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 6px;
}
.form-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: #fff;
  margin-bottom: 4px; letter-spacing: -.3px;
}
.form-card-sub {
  color: rgba(255,255,255,.38); font-size: 12px; margin-bottom: 22px; line-height: 1.5;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
.fi {
  width: 100%; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12); color: #fff;
  font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 300;
  padding: 12px 14px; border-radius: 2px;
  outline: none; transition: border-color .2s; margin-bottom: 8px;
}
.fi::placeholder { color: rgba(255,255,255,.28); }
.fi:focus { border-color: var(--orange); }
.fi-sel {
  width: 100%; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.55);
  font-family: 'Jost', sans-serif; font-size: 13px;
  padding: 12px 14px; border-radius: 2px; outline: none;
  margin-bottom: 8px; appearance: none; cursor: pointer;
}
.fi-sel option { background: var(--navy); color: #fff; }
.form-submit {
  width: 100%; background: var(--red); color: #fff;
  font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: .5px; padding: 15px; border-radius: 2px; border: none;
  cursor: pointer; margin-top: 6px; transition: background .2s, transform .15s;
}
.form-submit:hover { background: var(--red2); transform: translateY(-1px); }
.form-micro {
  display: flex; gap: 16px; margin-top: 14px;
  padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}
.fm-item {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,.3); font-size: 10px; letter-spacing: .5px;
}
.fm-dot { width: 4px; height: 4px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }

/* ── PARTNER LOGOS ── */
.partner-bar {
  background: var(--cream2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 28px 56px;
}
.partner-bar-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; gap: 48px;
}
.partner-label {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gray); white-space: nowrap; flex-shrink: 0;
}
.partner-logos {
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.partner-logo {
  display: flex; align-items: center; justify-content: center;
  opacity: 0.75; transition: opacity .2s; filter: grayscale(20%);
}
.partner-logo:hover { opacity: 1; }
.partner-logo img { height: 44px; width: auto; object-fit: contain; }
.partner-logo-intact img { height: 36px; }
.partner-logo-flir img { height: 32px; }
.partner-logo:nth-child(2) img { height: 44px; mix-blend-mode: multiply; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--red); padding: 14px 56px;
  display: flex; justify-content: center; align-items: center;
  gap: 44px; flex-wrap: wrap;
  position: relative;
}
.trust-bar::before, .trust-bar::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  opacity: 0.6;
}
.trust-bar::before { top: 0; }
.trust-bar::after { bottom: -36px; height: 36px; background: linear-gradient(to bottom, rgba(184,50,37,.4), rgba(217,123,24,.2), transparent); opacity: 1; }
.tb-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.85);
}
.tb-check { color: #fff; font-size: 16px; opacity: .8; }

/* ── SOCIAL PROOF HOOK ── */
.proof-hook {
  background: var(--cream2); border-bottom: 1px solid var(--border);
  padding: 48px 56px 28px;
}
.proof-hook-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
}
.proof-hook-left { flex: 1; }
.proof-hook-num {
  font-family: 'Playfair Display', serif;
  font-size: 72px; font-weight: 900; color: var(--navy);
  letter-spacing: -4px; line-height: 1;
}
.proof-hook-sub {
  font-size: 14px; font-weight: 300; color: var(--gray);
  margin-top: 6px; max-width: 280px; line-height: 1.6;
}
.proof-hook-divider { width: 1px; height: 80px; background: var(--border2); flex-shrink: 0; }
.proof-hook-stats {
  display: flex; gap: 40px;
}
.phs { text-align: center; }
.phs-n {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700; color: var(--navy);
  letter-spacing: -1px; line-height: 1;
}
.phs-l { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray2); margin-top: 6px; }
.proof-hook-quote {
  flex: 1.6; background: var(--navy); border-radius: 4px; padding: 28px 32px;
  border-left: 3px solid var(--orange);
}
.phq-text {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-style: italic; color: rgba(255,255,255,.75);
  line-height: 1.65; margin-bottom: 14px;
}
.phq-text span { color: var(--orange); font-style: normal; }
.phq-author { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.4); letter-spacing: .5px; }

/* ── SECTIONS SHARED ── */
.sec { padding: 100px 56px; }
.sec-inner { max-width: 1180px; margin: 0 auto; }
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 12px; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--red); }
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.6vw, 48px); font-weight: 700;
  line-height: 1.1; letter-spacing: -.3px; color: var(--navy);
  margin-bottom: 16px;
}
h2 em { font-style: italic; color: var(--red); }
.body-text { font-size: 15px; font-weight: 300; line-height: 1.9; color: var(--gray); }

/* ── WHY SECTION ── */
.why-bg { background: var(--navy); border-top: none; position: relative; }
.why-bg > .sec { padding-top: 28px; }
.why-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #B83225, #D97B18, #fff5d6, #D97B18, #B83225, #D97B18);
  background-size: 200% auto;
  animation: nav-shimmer 3s linear infinite;
  box-shadow: none;
}
.why-bg::after {
  content: '';
  position: absolute;
  top: -36px; left: 0; right: 0;
  height: 36px;
  background: linear-gradient(to top, rgba(184,50,37,.4), rgba(217,123,24,.2), transparent);
  pointer-events: none;
}
.why-bg .eyebrow { color: var(--orange); }
.why-bg .eyebrow::before { background: var(--orange); }
.why-bg h2 { color: #fff; }
.why-bg h2 em { color: var(--orange); }
.why-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 56px;
}
.why-lead { color: rgba(255,255,255,.5); font-size: 18px; font-weight: 300; line-height: 1.85; }
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: rgba(255,255,255,.06); }
.why-card {
  background: var(--navy2); padding: 40px 36px;
  position: relative; overflow: hidden;
  transition: background .25s;
}
.why-card:hover { background: var(--navy3); }
.why-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--red), var(--orange));
  transform: scaleX(0); transition: transform .35s; transform-origin: left;
}
.why-card:hover::after { transform: scaleX(1); }
.why-card-num {
  font-family: 'DM Mono', monospace;
  font-size: 13px; letter-spacing: 2px; color: var(--orange); margin-bottom: 18px;
}
.why-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 12px; letter-spacing: -.2px;
}
.why-card-body { font-size: 14px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,.5); }
.why-card-quote {
  margin-top: 18px; padding: 14px 18px;
  background: rgba(255,255,255,.04); border-left: 2px solid var(--orange);
  font-size: 13px; font-style: italic; color: rgba(255,255,255,.55); line-height: 1.6;
}

/* ── SERVICES ── */
.services-bg { background: var(--cream2); border-top: 1px solid var(--border); }
.s-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 48px;
}
.s-lead { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--gray); }
.s-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.s-card {
  background: #FAF6EC; border-radius: 4px;
  border: 1px solid rgba(0,0,0,.06);
  border-top: 2px solid var(--orange);
  padding: 24px 20px 22px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: box-shadow .25s, transform .2s;
}
.s-card:hover {
  box-shadow: 0 12px 40px rgba(15,29,53,.08);
  transform: translateY(-2px);
  cursor: pointer;
}
.s-name a::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
}
.s-actions { position: relative; z-index: 2; }
.s-actions {
  display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; justify-content: center;
}
.s-call {
  display: inline-block;
  background: rgba(0,0,0,.04); color: var(--navy);
  font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: .3px; padding: 4px 10px; border-radius: 2px;
  border: 1px solid rgba(0,0,0,.08); cursor: pointer;
  transition: background .2s, border-color .2s;
  box-sizing: border-box; position: relative; z-index: 2;
  text-decoration: none;
}
.s-call:hover { background: rgba(0,0,0,.07); border-color: rgba(0,0,0,.15); }
.s-num { display: none; }
.s-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
  color: var(--orange);
}
.s-icon svg { width: 36px; height: 36px; }
.s-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 700; color: var(--navy);
  margin-bottom: 8px; letter-spacing: -.2px; line-height: 1.2;
}
.s-body { font-size: 14px; font-weight: 300; line-height: 1.75; color: var(--gray); margin-bottom: 0; flex: 1; text-wrap: balance; }
.s-price {
  font-size: 13px; font-weight: 500; color: var(--navy);
  padding: 6px 14px; background: rgba(0,0,0,.04);
  border-radius: 2px; display: inline-block; border: 1px solid rgba(0,0,0,.08);
  letter-spacing: .3px; margin-top: 20px; align-self: flex-start;
}
.s-cta-row {
  display: flex; gap: 14px; margin-top: 48px; align-items: center;
}
.btn-navy {
  background: var(--navy); color: #fff;
  font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: .5px; padding: 15px 36px; border-radius: 2px; border: none;
  cursor: pointer; display: inline-block; transition: background .2s;
}
.btn-navy:hover { background: var(--navy2); }
.btn-navy-wrap {
  display: inline-block; border-radius: 4px; padding: 2px;
  background: conic-gradient(from var(--angle), #08091C 0%, #2a3a8c 25%, #5b7fff 40%, #2a3a8c 55%, #08091C 70%, #0d1a6e 85%, #08091C 100%);
  animation: spin-border 4s linear infinite;
  box-shadow: 0 0 24px rgba(42,58,140,.5), 0 0 48px rgba(91,127,255,.2), 0 8px 24px rgba(0,0,0,.3);
  text-decoration: none;
}
.btn-outline-navy {
  background: transparent; color: var(--navy);
  font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 500;
  padding: 14px 28px; border-radius: 2px; border: 1px solid var(--border2);
  cursor: pointer; display: inline-block; transition: .2s;
}
.btn-outline-navy:hover { border-color: var(--navy); }
.btn-red {
  background: var(--red); color: #fff;
  font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: .5px; padding: 15px 36px; border-radius: 2px; border: none;
  cursor: pointer; display: inline-block; transition: background .2s;
}
.btn-red:hover { background: #a02010; }

/* ── GIACOMO / ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-photo-wrap { position: relative; }
.about-photo {
  aspect-ratio: 4/5; background: var(--cream3);
  border-radius: 4px; overflow: hidden;
  border: 1px solid var(--border); position: relative;
}
.about-photo-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center; text-align: center;
  font-size: 13px; color: var(--gray2); padding: 24px; line-height: 1.6;
}
.about-photo::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy); color: #fff; padding: 20px 24px;
  border-radius: 4px; text-align: center; border: 1px solid rgba(255,255,255,.1);
}
.badge-n {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700; line-height: 1; letter-spacing: -1px;
}
.badge-l { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; opacity: .5; margin-top: 5px; }
.about-creds { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.cred {
  font-size: 11px; font-weight: 500; padding: 10px 16px;
  background: var(--cream2); border-radius: 2px;
  color: var(--navy); border: 1px solid var(--border); letter-spacing: .3px;
  flex: 1 1 calc(50% - 8px); text-align: center;
}
.about-quote {
  background: var(--navy); padding: 24px 28px; border-radius: 4px;
  margin: 28px 0; border-left: 3px solid var(--orange);
}
.aq-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-style: italic; color: #fff; line-height: 1.65;
}
.aq-text span { color: var(--orange); font-style: normal; }
.aq-attr { font-size: 11px; color: rgba(255,255,255,.3); margin-top: 10px; letter-spacing: .5px; }

/* ── PROCESS ── */
.process-bg { background: var(--cream3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin-top: 56px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 28px; left: 12.5%; right: 12.5%; height: 1px;
  background: var(--border2); z-index: 0;
}
.process-step { padding: 0 20px; position: relative; z-index: 1; }
.ps-num {
  width: 56px; height: 56px; background: var(--navy);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700;
  color: #fff; margin: 0 auto 20px; border: 3px solid var(--cream3);
}
.ps-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; color: var(--navy);
  text-align: center; margin-bottom: 10px;
}
.ps-body { font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--gray); text-align: center; }

/* ── TESTIMONIALS ── */
.testi-bg { background: var(--navy); }
.testi-bg .eyebrow { color: var(--orange); }
.testi-bg .eyebrow::before { background: var(--orange); }
.testi-bg h2 { color: #fff; }
.testi-bg h2 em { color: var(--orange); }
.testi-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 48px; }
.testi-note { color: rgba(255,255,255,.4); font-size: 17px; font-weight: 300; line-height: 1.7; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.testi-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px; padding: 36px 28px; transition: background .2s;
}
.testi-card:hover { background: rgba(255,255,255,.07); }
.stars { color: var(--orange); font-size: 13px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-style: italic; line-height: 1.65;
  color: rgba(255,255,255,.65); margin-bottom: 24px;
}
.testi-auth { font-size: 12px; font-weight: 500; letter-spacing: .5px; color: #fff; }
.testi-loc { font-size: 11px; color: rgba(255,255,255,.3); margin-top: 3px; }
.testi-cta { text-align: center; margin-top: 40px; }
.btn-orange-ol {
  background: transparent; color: var(--orange);
  font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 500;
  padding: 13px 28px; border-radius: 2px; border: 1px solid var(--orange);
  cursor: pointer; display: inline-block; transition: .2s;
}
.btn-orange-ol:hover { background: var(--orange); color: var(--navy); }

/* ── AREAS ── */
.areas-bg { background: var(--cream); }
.areas-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 48px; }
.areas-note { font-size: 14.5px; font-weight: 300; color: var(--gray); line-height: 1.7; }
.areas-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.area-card {
  background: var(--cream2); border: 1px solid var(--border);
  border-radius: 4px; padding: 24px 20px; text-align: center;
  transition: .2s;
  display: flex; flex-direction: column;
}
.area-card:hover { border-color: var(--red); background: var(--cream); }
.area-n {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px;
}
.area-s { font-size: 11px; color: var(--gray2); line-height: 1.4; flex: 1; }
.area-tag { display: none; }
.area-card::after {
  content: ''; display: block; width: 48px; height: 2px;
  background: var(--orange); margin: 14px auto 0; border-radius: 2px;
}

.h1-rotate-wrap { display: block; overflow: hidden; }
.h1-rotate { display: block; }
.h1-rotate em {
  font-style: italic; color: var(--orange);
  display: inline-block;
  transition: none;
}
.h1-rotate em.blur-out {
  animation: h1-blur-out .35s ease forwards;
}
.h1-rotate em.slide-type-in {
  animation: h1-slide-in .4s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes h1-blur-out {
  0%   { opacity:1; filter:blur(0); transform:translateY(0) scale(1); }
  100% { opacity:0; filter:blur(6px); transform:translateY(-12px) scale(.97); }
}
@keyframes h1-slide-in {
  0%   { opacity:0; filter:blur(4px); transform:translateY(14px) scale(.98); }
  100% { opacity:1; filter:blur(0); transform:translateY(0) scale(1); }
}

/* ── FAQ ── */
.faq-bg { background: var(--cream2); border-top: 1px solid var(--border); }
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; }
.faq-left { position: sticky; top: 100px; height: fit-content; }
.faq-left h2 { margin-bottom: 16px; }
.faq-left .body-text { margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border); cursor: pointer; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  padding: 22px 0; display: flex; justify-content: space-between;
  align-items: flex-start; gap: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 700; color: var(--navy);
  letter-spacing: -.2px; line-height: 1.3;
}
.faq-q:hover { color: var(--red); }
.faq-toggle {
  color: var(--red); font-size: 22px; font-weight: 300;
  flex-shrink: 0; line-height: 1; margin-top: 1px;
  transition: transform .2s;
}
.faq-a {
  font-size: 14px; font-weight: 300; color: var(--gray);
  line-height: 1.75; padding-bottom: 22px; display: none;
  max-width: 560px;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-item.open .faq-q { color: var(--red); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--red); padding: 100px 56px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: '✦'; font-size: 300px; color: rgba(255,255,255,.04);
  position: absolute; top: -60px; left: 50%;
  transform: translateX(-50%); line-height: 1; pointer-events: none;
  font-family: 'Playfair Display', serif;
}
.cta-band .eyebrow { color: rgba(255,255,255,.55); justify-content: center; }
.cta-band .eyebrow::before { background: rgba(255,255,255,.4); }
.cta-band h2 { color: #fff; position: relative; margin-bottom: 16px; }
.cta-band h2 em { color: rgba(255,255,255,.7); }
.cta-band-sub {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,.7);
  margin-bottom: 44px; position: relative; max-width: 480px; margin-left: auto; margin-right: auto;
  line-height: 1.7;
}
.cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-white {
  background: #fff; color: var(--red);
  font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: .5px; padding: 16px 40px; border-radius: 2px; border: none;
  cursor: pointer; display: inline-block; transition: transform .15s;
}
.btn-white:hover { transform: translateY(-1px); }
.btn-white-ol {
  background: transparent; color: rgba(255,255,255,.8);
  font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 500;
  padding: 15px 32px; border-radius: 2px;
  border: 1px solid rgba(255,255,255,.35);
  cursor: pointer; display: inline-block; transition: .2s;
}
.btn-white-ol:hover { border-color: #fff; color: #fff; }
.cta-band-trust {
  display: flex; gap: 28px; justify-content: center;
  margin-top: 32px; flex-wrap: wrap;
}
.cbt-item {
  color: rgba(255,255,255,.5); font-size: 11px;
  letter-spacing: .5px; display: flex; align-items: center; gap: 5px;
}

/* ── FOOTER ── */
footer { background: var(--navy); padding: 64px 56px 32px; }
.screen-edge-bottom {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 18px;
  background: linear-gradient(to top, rgba(184,50,37,.45), rgba(217,123,24,.15), transparent);
  z-index: 9998;
  pointer-events: none;
}
.f-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 56px; max-width: 1180px; margin: 0 auto 48px;
}
.f-brand { }
.f-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 14px; letter-spacing: -.3px;
}
.f-logo em { font-style: italic; color: var(--orange); }
.f-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.3); line-height: 1.75; max-width: 260px; margin-bottom: 20px; }
.f-phone { color: #fff; font-size: 15px; font-weight: 500; }
.f-phone:hover { color: var(--orange); }
.f-col-title { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.2); margin-bottom: 20px; }
.f-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.f-links a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.38); transition: color .2s; }
.f-links a:hover { color: #fff; }
.f-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1180px; margin: 0 auto; flex-wrap: wrap; gap: 16px;
}
.f-copy { font-size: 11px; color: rgba(255,255,255,.2); }
.f-certs { display: flex; gap: 8px; }
.f-cert {
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.2); padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.1); border-radius: 2px;
}

/* ── STICKY MOBILE ── */
.mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy); padding: 10px 16px; gap: 8px; z-index: 999;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-cta a {
  flex: 1; text-align: center; padding: 12px;
  border-radius: 2px; font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 600; text-decoration: none;
}
.mc-call { background: var(--red); color: #fff; }
.mc-book { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.15); }

/* ── SR-ONLY (visually hidden, accessible) ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── FADE ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.vis { opacity: 1; transform: translateY(0); }

/* Hero entry animations */
.hero-l > * { animation: fadeUp .65s ease forwards; opacity: 0; }
.hero-l > *:nth-child(1) { animation-delay: .1s; }
.hero-l > *:nth-child(2) { animation-delay: .2s; }
.hero-l > *:nth-child(3) { animation-delay: .3s; }
.hero-l > *:nth-child(4) { animation-delay: .4s; }
.hero-l > *:nth-child(5) { animation-delay: .5s; }
.hero-r { animation: fadeUp .7s .35s ease forwards; opacity: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 16px 24px; }
  nav.solid { padding: 12px 24px; }
  .nav-links, .nav-phone, .nav-cta { display: none !important; }

  /* HERO — Concept B */
  .hero { padding: 80px 0 0; min-height: auto; display: block; background: var(--navy); }
  .hero-bg-l { display: none; }
  .hero-bg-r { display: none; }
  .hero-inner { grid-template-columns: 1fr; display: block; }
  .hero-l {
    padding: 32px 24px 44px;
    position: relative; z-index: 2;
  }
  .hero-l .hero-proof { display: none; }
  .hero-l .hero-actions { display: none; }
  .hero-l .hero-sub { display: none; }
  .hero-l .hero-authority { display: block; }
  .hero-eyebrow span { font-size: 9px; letter-spacing: 1.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .hero-authority { font-size: 9px !important; letter-spacing: 1px !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; }
  h1 { font-size: clamp(28px, 7.5vw, 44px); }

  /* Floating cream card */
  .hero-r {
    background: var(--cream);
    margin: -20px 16px 0;
    border-radius: 8px;
    border-top: 3px solid var(--orange);
    padding: 24px 20px 28px;
    position: relative; z-index: 3;
    box-shadow: 0 -8px 40px rgba(0,0,0,.15);
  }
  .hero-sub-mobile {
    font-size: 13px; font-weight: 300; color: var(--gray);
    line-height: 1.7; margin-bottom: 18px;
  }
  .hero-sub { max-width: 100%; font-size: 13px; color: var(--gray); margin-bottom: 20px; }
  .hero-sub br { display: none; }
  .form-card-wrap { display: none; }

  /* Mobile CTAs inside hero-r */
  .hero-r .hero-actions-mobile {
    display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px;
  }
  .hero-r .hero-actions-mobile .btn-m-city {
    background: linear-gradient(135deg, #C6993A, #B8860B);
    color: #fff; text-decoration: none; display: block;
    padding: 16px 20px; border-radius: 6px; text-align: center;
    box-shadow: 0 4px 15px rgba(198,153,58,.35);
    transition: transform .2s, box-shadow .2s;
  }
  .hero-r .hero-actions-mobile .btn-m-city:hover {
    transform: translateY(-2px); box-shadow: 0 6px 20px rgba(198,153,58,.5);
  }
  .hero-r .hero-actions-mobile .btn-m-city strong {
    font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 700;
    display: block; letter-spacing: .3px;
  }
  .hero-r .hero-actions-mobile .btn-m-city span {
    font-family: 'Playfair Display', serif; font-size: 13px;
    font-style: italic; opacity: .9; display: block; margin-top: 4px;
  }
  .hero-r .hero-actions-mobile .btn-m-call {
    background: var(--red); color: #fff;
    font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 600;
    padding: 14px; text-align: center; border-radius: 2px;
    text-decoration: none; display: block; letter-spacing: .3px;
  }
  .hero-r .hero-actions-mobile .btn-m-book {
    color: var(--navy); font-size: 13px; font-weight: 500;
    padding: 13px; text-align: center;
    border: 1px solid rgba(15,29,53,.18); border-radius: 2px;
    text-decoration: none; display: block;
  }
  .hero-r .hero-actions-mobile .btn-m-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  }
  .hero-r .hero-actions-mobile .btn-m-alt {
    color: var(--navy); font-size: 12px; font-weight: 500;
    padding: 12px 8px; text-align: center;
    border: 1px solid rgba(15,29,53,.12); border-radius: 2px;
    text-decoration: none; display: block; background: rgba(0,0,0,.02);
  }

  /* Stats in card */
  .hero-proof-mobile {
    display: flex; border-top: 1px solid var(--border); padding-top: 16px; gap: 0;
  }
  .hero-proof-mobile .pm-stat {
    flex: 1; text-align: center; border-right: 1px solid var(--border);
  }
  .hero-proof-mobile .pm-stat:last-child { border-right: none; }
  .hero-proof-mobile .pm-n {
    font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--navy); line-height: 1;
  }
  .hero-proof-mobile .pm-l {
    font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 1px;
    text-transform: uppercase; color: #aaa; margin-top: 4px;
  }

  /* Show mobile-only elements */
  .hero-actions-mobile { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
  .hero-proof-mobile { display: flex; border-top: 1px solid var(--border); padding-top: 16px; }
  .form-card-wrap { display: none; }

  .partner-bar { padding: 20px 24px; }
  .partner-bar-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .partner-logos { gap: 20px; }
  .partner-logo img { height: 36px; }
  .trust-bar { padding: 20px 24px; gap: 8px 14px; justify-content: center; }
  .tb-item { font-size: 13px; letter-spacing: 0.8px; }
  .proof-hook { padding: 40px 24px; }
  .proof-hook-inner { flex-direction: column; gap: 28px; }
  .proof-hook-divider { display: none; }
  .proof-hook-stats { justify-content: center; }
  .phq-text { font-size: 13px; }
  .sec { padding: 64px 24px; }
  .why-intro, .s-top, .testi-intro, .areas-intro { grid-template-columns: 1fr; gap: 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .s-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  #giacomo { background: var(--cream); }
  /* Phase 4A-1B: use width-derived height via aspect-ratio: 4/5 (set in base
     .about-photo rule) instead of forcing 400px height which back-calculated a
     320px width and pushed the photo wider than the viewport. */
  .about-photo { height: auto; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-left { position: static; }
  .cta-band { padding: 64px 24px; }
  footer { padding: 48px 24px 90px; }
  .f-grid { grid-template-columns: 1fr 1fr; }
  .mobile-cta { display: flex; }
  .mobile-cta a { font-size: 11px; white-space: nowrap; }
}
@media (max-width: 640px) {
  .s-grid, .f-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  h1 { letter-spacing: -.5px; }
  .proof-hook-stats { gap: 24px; }
  .hero-sub { font-size: 15px; }
  h1 { font-size: clamp(28px, 8vw, 44px); }
  .about-creds { gap: 8px; }
  .cred { font-size: 12px; padding: 10px 16px; text-align: center; flex: 1 1 calc(50% - 8px); }
  .s-cta-row { flex-direction: column; gap: 10px; }
  .s-cta-row a { width: 100%; text-align: center; }
  .why-chevron { padding: 12px 0 !important; }
  /* Phase 4A-1B: homepage has its own .process-steps inline rules that override
     the shared style.css 4A-1A fix. Mirror that fix here. */
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
}

/* ── BOOKING MODAL ── */
#booking-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: none; align-items: center; justify-content: center;
  background: rgba(15,29,53,.7);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
}
#booking-modal.open { display: flex; opacity: 1; pointer-events: all; }
.bm-card {
  background: #fff; width: 100%; max-width: 480px;
  border-radius: 12px; padding: 40px 36px;
  position: relative; box-shadow: 0 24px 80px rgba(0,0,0,.3);
  margin: 0 16px;
  transform: translateY(12px) scale(.97);
  transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .3s;
}
#booking-modal.open .bm-card { transform: translateY(0) scale(1); }
.bm-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; font-size: 20px;
  color: rgba(0,0,0,.3); cursor: pointer; line-height: 1;
}
.bm-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 8px;
}
.bm-title {
  font-family: 'Playfair Display', serif; font-size: 22px;
  font-weight: 700; color: var(--navy); margin-bottom: 4px;
}
.bm-sub {
  font-family: 'Jost', sans-serif; font-size: 12px;
  color: var(--gray); margin-bottom: 20px;
}
.bm-call {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; background: #0F1D35; color: #fff;
  font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 600;
  padding: 13px; border-radius: 6px; text-decoration: none; margin-bottom: 8px;
}
.bm-contact-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; margin-bottom: 12px;
}
.bm-contact-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; background: #f5f4f0; color: var(--navy);
  font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 600;
  padding: 11px; border-radius: 6px; text-decoration: none;
  border: 1px solid rgba(0,0,0,.08);
}
.bm-divider {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.bm-divider-line { flex: 1; height: 1px; background: rgba(0,0,0,.08); }
.bm-divider-text {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(0,0,0,.25);
}
.bm-fi {
  background: #f5f4f0 !important; border: 1px solid rgba(0,0,0,.1) !important;
  color: var(--navy) !important;
}
.bm-fi::placeholder { color: rgba(15,29,53,.4) !important; }
.bm-fi-sel {
  background: #f5f4f0 !important; border: 1px solid rgba(0,0,0,.1) !important;
  color: var(--navy) !important;
}

/* ── FORM HIGHLIGHT HINT ── */
@keyframes form-glow {
  0%   { box-shadow: 0 0 0 0 rgba(217,123,24,.0); }
  30%  { box-shadow: 0 0 0 6px rgba(217,123,24,.35); }
  60%  { box-shadow: 0 0 0 3px rgba(217,123,24,.15); }
  100% { box-shadow: 0 0 0 0 rgba(217,123,24,.0); }
}
.form-highlight .fi,
.form-highlight .fi-sel,
.form-highlight .bm-fi,
.form-highlight .bm-fi-sel {
  animation: form-glow .8s ease;
}
.form-hint {
  display: none; text-align: center;
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--orange); padding: 8px 0 4px;
  animation: hint-fade 3.5s ease forwards;
}
.form-hint-dark {
  color: rgba(217,123,24,.9);
}
@keyframes hint-fade {
  0%   { opacity: 0; transform: translateY(-4px); }
  15%  { opacity: 1; transform: translateY(0); }
  75%  { opacity: 1; }
  100% { opacity: 0; }
}

/* ── HAMBURGER MENU ── */
.burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative; z-index: 251;
  padding: 0; flex-shrink: 0;
}
.burger span {
  display: block; width: 100%; height: 2px;
  background: #fff; border-radius: 2px;
  position: absolute; left: 0;
  transition: transform .3s, opacity .3s, top .3s;
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { top: 18px; }
.burger.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 90px; left: 0; right: 0; bottom: 0; z-index: 250;
  background: rgba(15,29,53,.98); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: none; flex-direction: column;
  justify-content: center; align-items: center;
  opacity: 0; transition: opacity .3s;
  padding-bottom: 52px;
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu-inner { text-align: center; padding: 0 24px; width: 100%; }
@media (max-width: 1024px) {
  .burger { display: block; }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

.nav-group-label { font-size: 11px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: rgba(198,153,58,.95); padding: 18px 20px 6px; pointer-events: none; border-top: 1px solid rgba(255,255,255,.1); margin-top: 4px; text-align: center; }
.nav-group-label:first-child { padding-top: 14px; border-top: none; margin-top: 0; }


/* ── MOBILE MENU (redesigned accordion) ── */
.mobile-menu{position:fixed;inset:0;z-index:199;background:rgba(15,29,53,.98);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);display:none;flex-direction:column;opacity:0;transition:opacity .3s}
.mobile-menu.open{display:flex;opacity:1}
body[style*="overflow: hidden"] .mobile-cta{display:none!important}
.mobile-menu-inner{display:flex;flex-direction:column;padding:100px 28px 28px;overflow-y:auto;height:100%;box-sizing:border-box}
.mm-links{display:flex;flex-direction:column}
.mm-link{font-family:'Playfair Display',serif;font-size:22px;font-weight:700;color:#fff;text-decoration:none;letter-spacing:-.3px;padding:14px 0;border-bottom:1px solid rgba(255,255,255,.08);display:block}
.mm-link:hover{color:var(--accent2)}
.mm-svc{border-bottom:1px solid rgba(255,255,255,.08)}
.mm-svc>.mm-link{border-bottom:none;display:flex;justify-content:space-between;align-items:center}
.mm-arrow{font-size:16px;color:rgba(255,255,255,.35);transition:transform .25s}
.mm-svc.open>.mm-link .mm-arrow{transform:none}
.mm-svc-content{display:none;padding-bottom:10px}
.mm-svc.open .mm-svc-content{display:block}
.mm-cat-header{display:flex;justify-content:space-between;align-items:center;padding:10px 0 10px 12px;cursor:pointer;font-family:'DM Mono',monospace;font-size:12px;font-weight:500;letter-spacing:2px;text-transform:uppercase;color:#D97B18;border-bottom:1px solid rgba(255,255,255,.05)}
.mm-cat.open .mm-cat-header .mm-arrow{transform:none}
.mm-cat-items{display:none}
.mm-cat.open .mm-cat-items{display:flex;flex-direction:column}
.mm-cat-items a{font-family:'Jost',sans-serif;font-size:14px;font-weight:300;color:rgba(255,255,255,.55);text-decoration:none;padding:8px 0 8px 24px;transition:color .2s}
.mm-cat-items a:hover{color:#fff}
.mm-cta-wrap{margin-top:auto;padding-top:18px}
.mm-cta{display:grid;grid-template-columns:auto 1fr auto;gap:10px}
.mm-cta-call{background:#1b6b3a;color:#fff;border-radius:8px;padding:13px 18px;font-family:'Jost',sans-serif;font-size:14px;font-weight:600;text-decoration:none;text-align:center;white-space:nowrap}
.mm-cta-text{background:rgba(255,255,255,.08);color:rgba(255,255,255,.7);border-radius:8px;padding:13px 12px;font-family:'Jost',sans-serif;font-size:14px;font-weight:500;text-decoration:none;text-align:center;white-space:nowrap}
.mm-cta-book{background:var(--accent1);color:#fff;border-radius:8px;padding:13px 22px;font-family:'Jost',sans-serif;font-size:14px;font-weight:600;text-decoration:none;text-align:center;white-space:nowrap}
.mm-review{display:flex;align-items:center;justify-content:center;gap:8px;margin-top:12px;padding:10px 16px;border-radius:8px;background:rgba(255,255,255,.04);text-decoration:none}
.mm-review-g{width:18px;height:18px;flex-shrink:0}
.mm-review-stars{color:#FBBC05;font-size:13px;letter-spacing:1px}
.mm-review-text{font-family:'Jost',sans-serif;font-size:13px;font-weight:400;color:rgba(255,255,255,.5)}