
/* ══════════════════════════════════════════════
   DESIGN SYSTEM
══════════════════════════════════════════════ */
:root {
  --navy:       #0d1f35;
  --navy-mid:   #0f2548;
  --navy-light: #1565c0;
  --gold:       #c9a96e;
  --gold-light: #e8d5a8;
  --gold-dim:   #7a5f38;
  --cream:      #f5f1ea;
  --cream-dark: #ede8df;
  --white:      #ffffff;
  --off-white:  #faf8f4;
  --text-dark:  #0d1f35;
  --text-mid:   #4a5568;
  --text-light: #5f7086;
  --border:     rgba(201,169,110,0.2);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s;
  mix-blend-mode: normal;
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(201,169,110,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.15s var(--ease-out), width 0.4s var(--ease-out), height 0.4s var(--ease-out), border-color 0.3s;
}
body:has(a:hover) .cursor { width: 6px; height: 6px; }
body:has(a:hover) .cursor-ring { width: 60px; height: 60px; border-color: rgba(201,169,110,0.8); }
body:has(.btn-gold:hover) .cursor { background: var(--navy); }

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9997;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  padding: 10px 0;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.topbar-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 48px;
  display: flex; justify-content: space-between; align-items: center;
}
.topbar a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.topbar a:hover { color: var(--gold-light); }
.topbar-phone { color: var(--gold); font-weight: 600; font-size: 14.5px; }
.topbar-fax { color: rgba(255,255,255,.55); font-weight: 600; font-size: 13.2px; }
.topbar-right { display: flex; gap: 24px; align-items: center; }

/* ── NAV ── */
nav {
  position: fixed; top: 34px; left: 0; right: 0; z-index: 1000;
  padding: 0;
  background: var(--off-white);
  border-bottom: 1px solid rgba(13,31,53,0.08);
  box-shadow: 0 2px 20px rgba(13,31,53,0.08);
  transition: top 0.4s var(--ease-out);
}
nav.scrolled { top: 0; }
.nav-inner {
  max-width: 1600px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center;
  height: 100px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400;
  color: var(--white); text-decoration: none;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.logo em { font-style: italic; color: var(--gold); }
.logo-sub {
  display: block; font-family: 'Syne', sans-serif;
  font-size: 8px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.62); margin-top: 2px;
}

.logo-img-link { flex-shrink: 0; }
.nav-links { display: flex; align-items: center; justify-content: space-between; flex: 1 1 auto; gap: 2px; list-style: none; margin: 0 28px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--navy);
  text-decoration: none; padding: 8px 5px;
  display: block; border-radius: 4px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.nav-cta.btn-gold { flex-shrink: 0; }
.nav-links > li > a:hover { color: var(--gold-dim); background: rgba(201,169,110,0.08); }

.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  margin-top: 8px;
  background: var(--white);
  border: 1px solid rgba(13,31,53,0.08);
  border-radius: 12px; min-width: 260px;
  padding: 12px 0; box-shadow: 0 24px 64px rgba(13,31,53,0.16);
  z-index: 200;
}
.dropdown::before {
  content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px;
}
.nav-links > li:hover .dropdown { display: block; animation: dropIn 0.2s var(--ease-out); }
@keyframes dropIn { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }
.dropdown-label {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  background: var(--gold); color: var(--navy);
  padding: 5px 14px; border-radius: 6px;
  display: inline-block; margin: 10px 0 8px 20px;
}
.dropdown-label:not(:first-of-type) { margin-top: 20px; }
.dropdown a {
  display: block; padding: 9px 20px;
  font-size: 14px; color: var(--navy);
  text-decoration: none; transition: all 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.dropdown a:hover { color: var(--gold-dim); padding-left: 26px; }

.btn-gold {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--gold); color: var(--navy);
  padding: 12px 24px; border-radius: 6px;
  text-decoration: none; display: inline-block;
  transition: all 0.3s var(--ease-out);
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,0.4); }
.btn-gold:hover::before { opacity: 1; }

/* hamburger */
.hamburger { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: none; background: none; border: none; padding: 8px; min-width: 44px; min-height: 44px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: all 0.3s; }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: grid;
  grid-template-columns: 35% 65%;
  overflow: hidden;
}

/* Animated grid background */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridShift 20s linear infinite;
  z-index: 0;
}
@keyframes gridShift {
  0% { transform: translateY(0); }
  100% { transform: translateY(80px); }
}

.hero-left {
  padding: 180px 56px 100px 64px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}

.hero-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.8s 0.2s var(--ease-out) forwards;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--gold);
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 300; line-height: 1.05;
  color: var(--white);
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 1s 0.4s var(--ease-out) forwards;
}
.hero-h1 em {
  font-style: italic; color: var(--gold-light);
  display: block;
}
.hero-h1 strong {
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-h1-flow { font-size: clamp(38px, 4.6vw, 60px); max-width: 620px; }

.hero-subhead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2vw, 26px);
  font-style: italic; font-weight: 300;
  color: var(--gold-light);
  max-width: 460px; margin-bottom: 20px;
  opacity: 0; animation: fadeUp 1s 0.5s var(--ease-out) forwards;
}
.hero-subhead em { font-style: italic; font-weight: 600; color: var(--gold); }

.hero-p {
  font-size: 17px; line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 460px; margin-bottom: 48px;
  opacity: 0; animation: fadeUp 1s 0.6s var(--ease-out) forwards;
}

.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s 0.8s var(--ease-out) forwards;
}

.btn-outline-white {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 12px 24px; border-radius: 6px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s var(--ease-out);
}
.btn-outline-white:hover { color: var(--white); border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }

/* Phone-number buttons read small at the shared button size — bump just the tel: links */
a.btn-gold[href^="tel:"], a.btn-outline-white[href^="tel:"] { font-size: 12px; }

/* Hero stats row */
.hero-stats {
  display: flex; gap: 40px; margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(201,169,110,0.15);
  opacity: 0; animation: fadeUp 1s 1s var(--ease-out) forwards;
}
.hstat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 300; color: var(--gold-light);
  display: block; line-height: 1;
}
.hstat-label {
  font-family: 'Syne', sans-serif;
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.62); margin-top: 6px; display: block;
}

/* Hero right — cinematic image stack */
.hero-right {
  position: relative; overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 16%);
  z-index: 2;
}
.hero-img-main {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  filter: brightness(0.78) saturate(0.95);
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

/* Floating card */
.hero-card {
  position: absolute; bottom: 60px; right: 48px; z-index: 3;
  background: rgba(13,31,53,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 16px; padding: 24px 28px;
  max-width: 260px;
  animation: float 4s ease-in-out infinite;
  opacity: 0; animation: fadeUp 1s 1.2s var(--ease-out) forwards, float 4s 2.2s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-card-label {
  font-family: 'Syne', sans-serif;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; display: block;
}
.hero-card-stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 10px; }
.hero-card-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-style: italic; line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
.hero-card-name {
  font-family: 'Syne', sans-serif;
  font-size: 10px; letter-spacing: 1px;
  color: rgba(255,255,255,0.62); margin-top: 12px;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 40px; left: 80px; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  font-family: 'Syne', sans-serif;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  opacity: 0; animation: fadeIn 1s 1.4s forwards;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ══════════════════════════════════════════════
   MARQUEE BAND
══════════════════════════════════════════════ */
.marquee-band {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  position: relative; z-index: 2;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--navy);
  padding: 0 32px;
}
.marquee-track span.sep { color: rgba(13,31,53,0.35); padding: 0 4px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════════
   SCROLL ANIMATIONS BASE
══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(32px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; } to { opacity:1; }
}
@keyframes fadeLeft {
  from { opacity:0; transform:translateX(-32px); }
  to   { opacity:1; transform:translateX(0); }
}
@keyframes fadeRight {
  from { opacity:0; transform:translateX(32px); }
  to   { opacity:1; transform:translateX(0); }
}
@keyframes scaleIn {
  from { opacity:0; transform:scale(0.92); }
  to   { opacity:1; transform:scale(1); }
}

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ══════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════ */
.section { padding: 120px 0; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 48px; }

.about-section { background: var(--off-white); position: relative; overflow: hidden; }
.about-section::before {
  content: 'CARE';
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 240px; font-weight: 600; letter-spacing: -10px;
  color: rgba(13,31,53,0.04); pointer-events: none; line-height: 1;
  white-space: nowrap;
}

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }

.eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-dim);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.eyebrow::before { content:''; display:block; width:24px; height:1px; background:var(--gold-dim); }

h2.display {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 300; line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 24px;
}
h2.display em { font-style: italic; color: var(--gold-dim); }

.body-text {
  font-size: 16px; line-height: 1.85;
  color: var(--text-mid); margin-bottom: 20px;
}

.link-arrow {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: gap 0.3s var(--ease-out), color 0.2s;
}
.link-arrow:hover { gap: 16px; color: var(--gold-dim); }

/* Photo stack */
.photo-stack {
  position: relative;
}
.photo-stack-main {
  border-radius: 20px; overflow: hidden;
  height: 580px; position: relative;
  box-shadow: 0 40px 80px rgba(13,31,53,0.15);
}
.photo-stack-main img { width:100%; height:100%; object-fit:cover; filter:saturate(0.85); }
.photo-stack-badge {
  position: absolute; top: 32px; left: -24px;
  background: var(--navy);
  border-radius: 12px; padding: 18px 22px;
  border: 1px solid rgba(201,169,110,0.2);
  box-shadow: 0 16px 40px rgba(13,31,53,0.3);
}
.badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 300; color: var(--gold-light);
  line-height: 1; display: block;
}
.badge-label {
  font-family: 'Syne', sans-serif;
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.62); display: block; margin-top: 4px;
}

/* ══════════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════════ */
.services-section {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(201,169,110,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(21,101,192,0.8) 0%, transparent 60%);
}
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 72px;
}
.services-header h2 { color: var(--white); }
.services-header h2 em { color: var(--gold-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,169,110,0.1);
  border-radius: 20px; overflow: hidden;
}
.service-card {
  background: rgba(22,45,72,0.8);
  padding: 40px 36px;
  text-decoration: none;
  display: block;
  position: relative; overflow: hidden;
  transition: background 0.4s var(--ease-out);
  group: true;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 0;
  background: linear-gradient(to top, rgba(201,169,110,0.12), transparent);
  transition: height 0.4s var(--ease-out);
}
.service-card:hover { background: rgba(201,169,110,0.08); }
.service-card:hover::before { height: 100%; }
.service-card:hover .sc-arrow { transform: translate(4px,-4px); opacity:1; }

.sc-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 24px;
  transition: border-color 0.3s, background 0.3s;
}
.service-card:hover .sc-icon { border-color: rgba(201,169,110,0.5); background: rgba(201,169,110,0.08); }
.sc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; color: var(--white);
  margin-bottom: 12px; line-height: 1.2;
}
.sc-body { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.45); margin-bottom: 28px; }
.sc-arrow {
  font-family: 'Syne', sans-serif;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 8px;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}

/* ══════════════════════════════════════════════
   PROCESS SECTION
══════════════════════════════════════════════ */
.process-section { background: var(--cream); }
.process-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex; gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(13,31,53,0.08);
  cursor: default;
  transition: all 0.3s;
}
.process-step:first-child { padding-top: 0; }
.process-step:last-child { border-bottom: none; }
.ps-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 300;
  color: rgba(13,31,53,0.12);
  line-height: 1; flex-shrink: 0;
  transition: color 0.3s;
  min-width: 60px;
}
.process-step:hover .ps-num { color: var(--gold); }
.ps-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; color: var(--text-dark);
  margin-bottom: 8px;
}
.ps-content p { font-size: 15px; line-height: 1.75; color: var(--text-mid); }

.process-visual {
  position: sticky; top: 120px;
}
.process-img-wrap {
  border-radius: 24px; overflow: hidden;
  height: 560px; position: relative;
  box-shadow: 0 32px 64px rgba(13,31,53,0.15);
}
.process-img-wrap img { width:100%; height:100%; object-fit:cover; filter:saturate(0.85); }
.process-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,31,53,0.7) 0%, transparent 50%);
}
.process-img-text {
  position: absolute; bottom: 36px; left: 36px; right: 36px;
}
.pit-label {
  font-family: 'Syne', sans-serif;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px; display: block;
}
.pit-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-style: italic; color: var(--white); line-height: 1.4;
}

/* ══════════════════════════════════════════════
   DIFFERENTIATORS
══════════════════════════════════════════════ */
.diff-section { background: var(--off-white); }
.diff-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.diff-list { display: flex; flex-direction: column; gap: 32px; }
.diff-item {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease-out);
}
.diff-item:hover {
  background: rgba(201,169,110,0.05);
  border-color: rgba(201,169,110,0.2);
  transform: translateX(8px);
}
.diff-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(13,31,53,0.15);
}
.diff-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400; color: var(--text-dark);
  margin-bottom: 6px;
}
.diff-item p { font-size: 15px; line-height: 1.7; color: var(--text-mid); }

.diff-visual {
  position: relative;
}
.diff-img-main {
  border-radius: 24px; overflow: hidden;
  height: 640px;
  box-shadow: 0 40px 80px rgba(13,31,53,0.12);
}
.diff-img-main img { width:100%; height:100%; object-fit:cover; filter:saturate(0.85); }

.diff-floating-stat {
  position: absolute;
  background: var(--navy);
  border-radius: 14px; padding: 20px 24px;
  border: 1px solid rgba(201,169,110,0.2);
  box-shadow: 0 20px 40px rgba(13,31,53,0.3);
}
.dfs-1 { top: -24px; right: -24px; }
.dfs-2 { bottom: 60px; left: -24px; }
.dfs-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 300; color: var(--gold-light); line-height: 1;
}
.dfs-label {
  font-family: 'Syne', sans-serif;
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.62); margin-top: 4px; display: block;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testi-section {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.testi-section::before {
  content: '"';
  position: absolute; left: -40px; top: -40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 500px; line-height: 1;
  color: rgba(255,255,255,0.02); pointer-events: none;
  font-weight: 300;
}

.testi-header {
  text-align: center; margin-bottom: 72px;
}
.testi-header h2 { color: var(--white); }
.testi-header h2 em { color: var(--gold-light); }

.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.testi-card {
  background: rgba(22,45,72,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: 20px; padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: all 0.4s var(--ease-out);
}
.testi-card::before {
  content: '\201C';
  position: absolute; top: 16px; right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; font-weight: 300;
  color: rgba(201,169,110,0.15); line-height: 1;
}
.testi-card:hover {
  background: rgba(201,169,110,0.08);
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.testi-stars { color: var(--gold); font-size: 13px; letter-spacing: 3px; margin-bottom: 20px; }
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-style: italic; line-height: 1.65;
  color: rgba(255,255,255,0.8); margin-bottom: 24px;
}
.testi-divider { width: 32px; height: 1px; background: var(--gold); opacity: 0.4; margin-bottom: 16px; }
.testi-name { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--white); }
.testi-loc { font-size: 13px; color: rgba(255,255,255,0.62); margin-top: 2px; }

/* ══════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════ */
.faq-section { background: var(--cream); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 100px; align-items: start;
}
.faq-left { position: sticky; top: 120px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid rgba(13,31,53,0.1);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid rgba(13,31,53,0.1); }
.faq-q {
  width: 100%; background: none; border: none; cursor: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 400; color: var(--text-dark);
  text-align: left; gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold-dim); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid rgba(13,31,53,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--gold-dim);
  transition: all 0.3s; font-style: normal;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--navy); border-color: var(--navy); color: var(--white); }
.faq-a {
  font-size: 15px; line-height: 1.8; color: var(--text-mid);
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.3s;
  padding: 0;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 24px; }

/* ══════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════ */
.cta-section {
  background: var(--navy);
  padding: 120px 0;
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(201,169,110,0.06) 0%, transparent 70%);
}
.cta-eyebrow { color: var(--gold); margin-bottom: 24px; justify-content: center; }
.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300; line-height: 1.1;
  color: var(--white); margin-bottom: 24px;
}
.cta-section h2 em { font-style: italic; color: var(--gold-light); }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 540px; margin: 0 auto 48px; line-height: 1.8; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer {
  background: #080f1a;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(201,169,110,0.1);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400;
  color: var(--white); text-decoration: none;
  display: block; margin-bottom: 16px;
}
.footer-logo em { font-style: italic; color: var(--gold); }
.footer-brand p { font-size: 16.2px; line-height: 1.75; color: rgba(255,255,255,0.62); max-width: 280px; }
.footer-contact { margin-top: 24px; }
.footer-contact a {
  display: block; font-size: 14.4px; color: rgba(255,255,255,0.45);
  text-decoration: none; margin-bottom: 6px; transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold-light); }
.footer-col h5 {
  font-family: 'Syne', sans-serif;
  font-size: 11.98px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14.4px; color: rgba(255,255,255,0.62);
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12.6px; color: rgba(255,255,255,0.2);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.2); text-decoration: none; margin-left: 20px; }
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════════════
   MOBILE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { height: 50vh; }
  .hero-left { padding: 48px 40px 80px; }
  .about-grid, .process-grid, .diff-grid, .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  /* "Verify Your Coverage" grid is hard-coded inline as 2 columns with no responsive fallback —
     it was forcing ~700px of horizontal overflow on every mobile page that includes it. */
  .ins-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 28px; }
  .photo-stack-badge { left: 16px; }
  .diff-floating-stat { display: none; }
  .process-visual { position: relative; top: 0; }
  .faq-left { position: relative; top: 0; }
  /* Static (non-floating) header on mobile — a fixed nav caused overlap and jumpiness on phones */
  nav { position: static; top: auto; }
  .nav-inner { backdrop-filter: none; -webkit-backdrop-filter: none; }
}
/* Below this, even the shrunk nav-links row can't fit on one line — switch to the hamburger */
@media (max-width: 1250px) {
  nav .nav-links { display: none; }
  .hamburger { display: flex; }
  /* Get Started lives outside nav-links now (for the desktop centered layout) — it must hide
     alongside the menu below this breakpoint or it collides with the hamburger and overflows. */
  .nav-cta.btn-gold { display: none; }
}
/* Laptop widths (1251-1500px): the full nav-links row still fits on one line, just tighter — shrink type instead of dropping to the hamburger */
@media (min-width: 1251px) and (max-width: 1500px) {
  nav .logo-img-link img { height: 90px !important; }
  .nav-links { margin: 0 14px; }
  .nav-links > li > a { font-size: 9.5px; padding: 8px 3px; letter-spacing: 0.5px; }
  .nav-cta.btn-gold { font-size: 9px; padding: 8px 12px; }
  .nav-phone { font-size: 12.5px; margin-left: 14px; }
  .nav-phone svg { width: 13px; height: 13px; }
}
@media (max-width: 640px) {
  .services-grid, .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .hero-left { padding: 40px 24px 60px; }
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .topbar-inner { flex-direction: column; gap: 6px; text-align: center; }
  .hero-card { right: 16px; bottom: 24px; max-width: 200px; }
}

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: rgba(8,15,26,0.98); backdrop-filter: blur(20px);
  z-index: 999; overflow-y: auto; padding: 100px 32px 40px;
}
.mobile-nav.open { display: block; animation: fadeIn 0.3s; }
.mobile-nav-close {
  position: absolute; top: 28px; right: 28px;
  background: none; border: none; color: rgba(255,255,255,0.5);
  font-size: 28px; cursor: none;
}
.mobile-nav a {
  display: block; color: rgba(255,255,255,0.7); text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav .sub { font-size: 15px; color: rgba(255,255,255,0.62); padding-left: 20px; font-family: 'DM Sans', sans-serif; }

/* ══ INNER PAGE ADDITIONS ══ */
.page-hero{background:linear-gradient(90deg,#0d1f35 0%,#0f2548 70%,#1565c0 100%);min-height:58vh;display:flex;align-items:center;position:relative;overflow:hidden;padding:160px 0 80px;}
.page-hero::before{content:'';position:absolute;inset:0;background-image:linear-gradient(rgba(201,169,110,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(201,169,110,0.04) 1px,transparent 1px);background-size:80px 80px;animation:gridShift 20s linear infinite;}
.page-hero-bg{position:absolute;inset:0;z-index:0;}
.page-hero-bg img{width:100%;height:100%;object-fit:cover;filter:brightness(0.25) saturate(0.7);}
.page-hero-bg::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(13,31,53,0.5) 0%,rgba(13,31,53,0.9) 100%);}
.page-hero-content{position:relative;z-index:2;max-width:780px;}
.page-hero-content.wide{max-width:940px;}
.page-hero h1{font-family:'Cormorant Garamond',serif;font-size:clamp(38px,5.5vw,70px);font-weight:300;line-height:1.08;color:var(--white);margin-bottom:24px;opacity:0;animation:fadeUp .9s .2s var(--ease-out) forwards;}
.page-hero h1 em{font-style:italic;color:#90caf9;}
.page-hero p{font-size:17px;line-height:1.8;color:rgba(255,255,255,.6);max-width:560px;margin-bottom:36px;opacity:0;animation:fadeUp .9s .4s var(--ease-out) forwards;}
.page-hero .hero-eyebrow{opacity:0;animation:fadeUp .8s .1s var(--ease-out) forwards;}
.page-hero .hero-btns{opacity:0;animation:fadeUp .9s .6s var(--ease-out) forwards;}

.breadcrumb{background:var(--off-white);padding:16px 0;border-bottom:1px solid rgba(13,31,53,0.06);font-family:'Syne',sans-serif;font-size:10px;letter-spacing:1px;text-transform:uppercase;}
.breadcrumb a{color:var(--text-light);text-decoration:none;transition:color .2s;}
.breadcrumb a:hover{color:var(--gold-dim);}
.breadcrumb .sep{color:rgba(13,31,53,.15);margin:0 10px;}
.breadcrumb .current{color:var(--text-mid);}

.section-cream{background:var(--cream);}
.section-navy{background:linear-gradient(90deg,#0d1f35 0%,#0f2548 70%,#1565c0 100%);position:relative;overflow:hidden;}
.section-navy::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 50% at 20% 50%,rgba(201,169,110,.06) 0%,transparent 60%);}
.section-navy h2,.section-navy h3{color:var(--white);}
.section-navy h2 em,.section-navy h3 em{color:#90caf9;}
.section-navy .body-text{color:rgba(255,255,255,.55);}
.section-navy .eyebrow{color:var(--gold);}
.section-navy .eyebrow::before{background:var(--gold);}

.two-col{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;}
.two-col.align-top{align-items:start;}
.three-col{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.four-col{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}

.lcard{background:var(--white);border:1px solid rgba(13,31,53,.08);border-radius:18px;padding:36px 32px;transition:all .4s var(--ease-out);position:relative;overflow:hidden;}
.lcard::before{content:'';position:absolute;top:0;left:0;width:100%;height:3px;background:linear-gradient(90deg,var(--gold),transparent);transform:scaleX(0);transform-origin:left;transition:transform .4s var(--ease-out);}
.lcard:hover{box-shadow:0 24px 48px rgba(13,31,53,.1);transform:translateY(-4px);border-color:rgba(201,169,110,.3);}
.lcard:hover::before{transform:scaleX(1);}
.lcard-icon{width:52px;height:52px;background:linear-gradient(135deg,var(--navy),var(--navy-light));border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:22px;margin-bottom:20px;box-shadow:0 8px 20px rgba(13,31,53,.15);}
.lcard h3{font-family:'Cormorant Garamond',serif;font-size:21px;font-weight:400;color:var(--text-dark);margin-bottom:10px;line-height:1.3;}
.lcard p{font-size:15px;line-height:1.7;color:var(--text-mid);}
.lcard a.card-link{display:inline-flex;align-items:center;gap:6px;font-family:'Syne',sans-serif;font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--gold-dim);text-decoration:none;margin-top:16px;transition:gap .3s;}
.lcard a.card-link:hover{gap:12px;}

.svc-card{position:relative;border-radius:18px;overflow:hidden;height:320px;text-decoration:none;display:block;box-shadow:0 16px 40px rgba(13,31,53,.1);}
.svc-card img{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease-out),filter .4s;filter:saturate(.8) brightness(.85);}
.svc-card:hover img{transform:scale(1.08);filter:saturate(1) brightness(.7);}
.svc-card-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(13,31,53,.92) 0%,rgba(13,31,53,.2) 55%,transparent 100%);display:flex;flex-direction:column;justify-content:flex-end;padding:28px;}
.svc-card h3{font-family:'Cormorant Garamond',serif;font-size:22px;font-weight:400;color:var(--white);margin-bottom:8px;}
.svc-card p{font-size:15px;line-height:1.6;color:rgba(255,255,255,.7);margin-bottom:12px;}
.svc-card .sc-arrow2{font-family:'Syne',sans-serif;font-size:9px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:#90caf9;display:inline-flex;align-items:center;gap:6px;transition:gap .3s;}
.svc-card:hover .sc-arrow2{gap:12px;}

.step-card{background:var(--white);border:1px solid rgba(13,31,53,.07);border-radius:18px;padding:36px 32px;transition:all .3s;}
.step-card:hover{border-color:rgba(201,169,110,.3);box-shadow:0 16px 40px rgba(13,31,53,.08);}
.step-num{font-family:'Cormorant Garamond',serif;font-size:48px;font-weight:300;color:rgba(201,169,110,.3);line-height:1;margin-bottom:16px;}
.step-card h3{font-family:'Cormorant Garamond',serif;font-size:20px;font-weight:400;color:var(--text-dark);margin-bottom:10px;}
.step-card p{font-size:15px;line-height:1.7;color:var(--text-mid);}

.photo-frame{border-radius:22px;overflow:hidden;box-shadow:0 32px 64px rgba(13,31,53,.12);position:relative;}
.photo-frame img{width:100%;height:100%;object-fit:cover;filter:saturate(.85);display:block;}
.photo-frame.h-tall{height:560px;}
.photo-frame.h-med{height:420px;}
.photo-badge{position:absolute;background:linear-gradient(90deg,#0d1f35 0%,#0f2548 70%,#1565c0 100%);border-radius:14px;padding:18px 22px;border:1px solid rgba(201,169,110,.2);box-shadow:0 20px 40px rgba(13,31,53,.3);z-index:3;}
.photo-badge .badge-num{font-family:'Cormorant Garamond',serif;font-size:34px;font-weight:300;color:#90caf9;line-height:1;display:block;}
.photo-badge .badge-label{font-family:'Syne',sans-serif;font-size:9px;letter-spacing:1.5px;text-transform:uppercase;color:rgba(255,255,255,.4);margin-top:4px;display:block;}

.info-table{width:100%;border-collapse:collapse;background:var(--white);border-radius:18px;overflow:hidden;box-shadow:0 20px 50px rgba(13,31,53,.08);}
.info-table thead{background:linear-gradient(90deg,#0d1f35 0%,#0f2548 70%,#1565c0 100%);}
.info-table thead th{color:var(--white);font-family:'Syne',sans-serif;font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;padding:20px 28px;text-align:left;}
.info-table tbody tr{border-bottom:1px solid rgba(13,31,53,.06);transition:background .2s;}
.info-table tbody tr:hover{background:rgba(201,169,110,.04);}
.info-table tbody tr:last-child{border-bottom:none;}
.info-table tbody td{padding:22px 28px;font-size:15px;vertical-align:top;line-height:1.7;color:var(--text-mid);}
.info-table tbody td:first-child{font-family:'Cormorant Garamond',serif;font-weight:600;font-size:17px;color:var(--navy);}
.info-table ul{padding-left:16px;margin:0;}
.info-table ul li{margin-bottom:5px;color:var(--text-mid);}

.elegant-list{list-style:none;display:flex;flex-direction:column;gap:16px;}
.elegant-list li{display:flex;gap:16px;align-items:flex-start;font-size:15px;line-height:1.7;color:var(--text-mid);}
.elegant-list li::before{content:'\2726';color:var(--gold-dim);font-size:14px;flex-shrink:0;margin-top:2px;}
.section-navy .elegant-list li{color:rgba(255,255,255,.65);}
.section-navy .elegant-list li::before{color:var(--gold);}

.form-panel{background:var(--white);border-radius:22px;padding:48px 44px;border:1px solid rgba(13,31,53,.07);box-shadow:0 32px 64px rgba(13,31,53,.08);}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
.form-group{display:flex;flex-direction:column;gap:8px;}
.form-group.full{grid-column:1/-1;}
.form-group label{font-family:'Syne',sans-serif;font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--gold-dim);}
.form-group input,.form-group select,.form-group textarea{padding:14px 18px;border:1.5px solid rgba(13,31,53,.1);border-radius:10px;font-size:16px;font-family:'DM Sans',sans-serif;color:var(--text-dark);background:var(--off-white);transition:border-color .25s,background .25s;}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--gold);background:var(--white);}
.form-group textarea{resize:vertical;min-height:130px;}
.form-submit{font-family:'Syne',sans-serif;font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;background:linear-gradient(90deg,#0d1f35 0%,#0f2548 70%,#1565c0 100%);color:var(--white);border:none;padding:17px 32px;border-radius:10px;cursor:pointer;width:100%;transition:all .3s var(--ease-out);}
.form-submit:hover{background:var(--navy-light);transform:translateY(-2px);box-shadow:0 12px 28px rgba(13,31,53,.25);}
.form-note{font-size:13px;line-height:1.6;color:var(--text-light);background:var(--off-white);border:1px dashed rgba(201,169,110,.35);border-radius:10px;padding:12px 16px;margin:2px 0 4px;}
.form-more{grid-column:1/-1;margin-top:4px;}
.form-more summary{cursor:pointer;list-style:none;font-family:'Syne',sans-serif;font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--gold-dim);padding:4px 0;}
.form-more summary::-webkit-details-marker{display:none;}
.form-more summary::before{content:'+ ';}
.form-more[open] summary::before{content:'\2212 ';}
.form-more[open] summary{margin-bottom:16px;}
.form-more .form-grid{margin-top:4px;}

.contact-block{display:flex;gap:20px;align-items:flex-start;padding:26px;border-radius:16px;border:1px solid rgba(13,31,53,.07);margin-bottom:16px;transition:all .3s;}
.contact-block:hover{background:rgba(201,169,110,.04);border-color:rgba(201,169,110,.25);}
.contact-block-icon{width:48px;height:48px;flex-shrink:0;background:linear-gradient(135deg,var(--navy),var(--navy-light));border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:20px;box-shadow:0 8px 20px rgba(13,31,53,.15);}
.contact-block h4{font-family:'Cormorant Garamond',serif;font-size:18px;font-weight:500;color:var(--text-dark);margin-bottom:4px;}
.contact-block p,.contact-block a{font-size:15px;color:var(--text-mid);text-decoration:none;line-height:1.6;}
.contact-block a:hover{color:var(--gold-dim);}

.job-card{background:var(--white);border:1px solid rgba(13,31,53,.08);border-radius:18px;padding:32px 28px;transition:all .3s;}
.job-card:hover{border-color:rgba(201,169,110,.3);box-shadow:0 16px 40px rgba(13,31,53,.08);transform:translateY(-3px);}
.job-card-badge{font-family:'Syne',sans-serif;font-size:9px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;background:rgba(201,169,110,.12);color:var(--gold-dim);padding:4px 10px;border-radius:20px;display:inline-block;margin-bottom:14px;}
.job-card h3{font-family:'Cormorant Garamond',serif;font-size:22px;font-weight:400;color:var(--text-dark);margin-bottom:10px;}
.job-card p{font-size:15px;line-height:1.7;color:var(--text-mid);margin-bottom:20px;}
.job-card a.apply-btn{font-family:'Syne',sans-serif;font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--gold-dim);text-decoration:none;display:inline-flex;align-items:center;gap:8px;transition:gap .3s;}
.job-card a.apply-btn:hover{gap:14px;}

.pull-quote{font-family:'Cormorant Garamond',serif;font-size:26px;font-style:italic;font-weight:300;line-height:1.5;color:var(--navy);padding:8px 0 8px 32px;border-left:3px solid var(--gold);margin:32px 0;}
.section-navy .pull-quote{color:var(--white);}

/* Marquee (reused) */
.marquee-band{background:#8a6f45;padding:14px 0;overflow:hidden;}
.marquee-track{display:flex;animation:marquee 25s linear infinite;white-space:nowrap;}
.marquee-track span{font-family:'Syne',sans-serif;font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--navy);padding:0 32px;}
.marquee-track span.sep{color:rgba(13,31,53,.35);padding:0 4px;}

/* Stat counter row */
.stat-row{display:grid;grid-template-columns:repeat(4,1fr);gap:2px;background:rgba(201,169,110,.1);border-radius:18px;overflow:hidden;margin-top:60px;}
.stat-box{background:rgba(22,45,72,.7);backdrop-filter:blur(10px);padding:36px 32px;text-align:center;}
.stat-box-num{font-family:'Cormorant Garamond',serif;font-size:46px;font-weight:300;color:#90caf9;line-height:1;display:block;}
.stat-box-label{font-family:'Syne',sans-serif;font-size:9px;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,.4);margin-top:8px;display:block;}

@media(max-width:1024px){
  .two-col{grid-template-columns:1fr;gap:48px;}
  .three-col{grid-template-columns:1fr 1fr;}
  .four-col,.stat-row{grid-template-columns:1fr 1fr;}
  .photo-badge{display:none;}
  .page-hero{padding:40px 0 60px;min-height:auto;}
  .container{padding:0 28px;}
}
@media(max-width:640px){
  .three-col,.four-col,.stat-row{grid-template-columns:1fr;}
  .form-grid{grid-template-columns:1fr;}
  .form-panel{padding:28px 20px;}
  .section{padding:72px 0;}
}

@keyframes pulse{0%,100%{box-shadow:0 0 0 0 rgba(66,165,245,.4)}70%{box-shadow:0 0 0 8px rgba(66,165,245,0)}}
.chat-opt-btn:hover{background:#ede8df!important;border-color:rgba(21,101,192,.4)!important;transform:translateX(3px);}

.quiz-btn{
  width:100%;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);
  border-radius:10px;padding:14px 18px;text-align:left;font-size:14px;color:rgba(255,255,255,.85);
  cursor:pointer;transition:all .2s;font-family:'DM Sans',sans-serif;
}
.quiz-btn:hover{background:rgba(201,169,110,.2);border-color:#c9a96e;color:#fff;transform:translateX(4px);}

/* ── Form submit messages (referral-form.html / contact.html) ── */
.form-msg { display: none; border-radius: 10px; padding: 14px 18px; font-size: 15px; line-height: 1.6; margin-top: 14px; }
.form-msg.visible { display: block; }
.form-msg-success { background: rgba(45,106,79,.1); border: 1px solid rgba(45,106,79,.3); color: #2d6a4f; }
.form-msg-success a { color: #2d6a4f; font-weight: 600; }
.form-msg-error { background: rgba(211,47,47,.08); border: 1px solid rgba(211,47,47,.3); color: #b71c1c; }
.form-submit:disabled { opacity: .7; cursor: not-allowed; }

/* ── Persistent desktop phone number (nav stays fixed; topbar scrolls away) ── */
.nav-phone { display: none; align-items: center; gap: 8px; color: var(--navy); text-decoration: none; font-family: 'Syne', sans-serif; font-size: 15.6px; font-weight: 600; letter-spacing: .5px; margin-left: 28px; margin-right: 0; flex-shrink: 0; white-space: nowrap; }
.nav-phone:hover { color: var(--gold-dim); }
.nav-phone svg { width: 15px; height: 15px; flex-shrink: 0; }
@media (min-width: 769px) {
  .nav-phone { display: inline-flex; }
}

/* ── Legal pages (Privacy Policy / Terms of Service) ── */
.legal-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 500; color: var(--navy); margin: 40px 0 14px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { font-size: 15px; line-height: 1.8; color: var(--text-mid); margin-bottom: 14px; }
.legal-content ul { margin: 0 0 14px 22px; }
.legal-content li { font-size: 15px; line-height: 1.8; color: var(--text-mid); margin-bottom: 6px; }
.legal-content a { color: var(--gold-dim); font-weight: 600; }
.legal-meta { font-family: 'Syne', sans-serif; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); margin-bottom: 28px; }
