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

:root {
  --navy:        #0B1C3D;
  --navy-mid:    #122444;
  --navy-light:  #1a3260;
  --emerald:     #0D5C4A;
  --emerald-mid: #0f6e59;
  --emerald-glow:#14a882;
  --gold:        #C9A84C;
  --gold-light:  #E2C06A;
  --gold-pale:   #f5e9c8;
  --cream:       #F7F4EE;
  --white:       #FFFFFF;
  --text:        #0B1C3D;
  --text-mid:    #4a5568;
  --text-light:  #8a95a3;
  --border:      rgba(11,28,61,0.1);
  --border-gold: rgba(201,168,76,0.3);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'DM Sans', sans-serif;
  background:var(--white);
  color:var(--text);
  line-height:1.7;
  overflow-x:hidden;
  width:100%;
}

/* ── NAV ── */
nav {
  position:sticky; top:0; z-index:200;
  background:var(--navy);
  border-bottom:1px solid rgba(201,168,76,0.2);
  box-shadow:0 2px 24px rgba(0,0,0,0.25);
}
.nav-inner {
  max-width:1140px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 36px; height:80px;
}
.nav-logo img {
  height:52px; max-width:220px;
  width:auto; display:block; object-fit:contain;
}
.nav-links { display:flex; list-style:none; gap:4px; }
.nav-links a {
  font-size:13.5px; font-weight:500;
  color:rgba(255,255,255,0.65);
  text-decoration:none;
  padding:8px 16px; border-radius:8px;
  transition:background .2s, color .2s;
}
.nav-links a:hover, .nav-links a.active {
  color:#fff;
  background:rgba(255,255,255,0.08);
}
.nav-cta {
  background:var(--gold);
  color:var(--navy);
  font-size:13px; font-weight:600;
  padding:9px 22px; border-radius:8px;
  text-decoration:none;
  transition:background .2s, transform .15s;
  white-space:nowrap;
}
.nav-cta:hover { background:var(--gold-light); transform:translateY(-1px); }

.hamburger {
  display:none; flex-direction:column; gap:5px;
  cursor:pointer; padding:6px;
  background:none; border:none;
}
.hamburger span {
  display:block; width:24px; height:2px;
  background:rgba(255,255,255,0.8);
  border-radius:2px; transition:all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display:none; flex-direction:column;
  background:var(--navy-mid);
  border-top:1px solid rgba(201,168,76,0.15);
  padding:16px 24px 24px; gap:4px;
}
.mobile-menu.open { display:flex; }
.mobile-menu a {
  font-size:15px; font-weight:500;
  color:rgba(255,255,255,0.75);
  text-decoration:none;
  padding:12px 16px; border-radius:8px;
  transition:background .2s, color .2s;
}
.mobile-menu a:hover, .mobile-menu a.active { color:#fff; background:rgba(255,255,255,0.08); }
.mobile-menu .mobile-cta {
  margin-top:8px; background:var(--gold);
  color:var(--navy); font-weight:700;
  text-align:center; padding:13px 16px; border-radius:8px;
}

/* ── PAGE HERO ── */
.hero {
  background:linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 50%, #0f2a5a 100%);
  position:relative; overflow:hidden;
  padding:96px 36px 88px;
}
.hero::before {
  content:''; position:absolute;
  top:-100px; right:-80px;
  width:520px; height:520px; border-radius:50%;
  background:radial-gradient(circle, rgba(13,92,74,0.3) 0%, transparent 65%);
  pointer-events:none;
}
.hero::after {
  content:''; position:absolute;
  bottom:-60px; left:8%;
  width:360px; height:360px; border-radius:50%;
  background:radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 65%);
  pointer-events:none;
}
.hero-inner {
  max-width:1140px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr;
  gap:64px; align-items:center;
  position:relative; z-index:1;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(201,168,76,0.12);
  border:1px solid rgba(201,168,76,0.35);
  border-radius:30px; padding:5px 16px;
  font-size:11.5px; font-weight:500;
  letter-spacing:.07em; text-transform:uppercase;
  color:var(--gold-light); margin-bottom:20px;
}
.hero-badge .pulse {
  width:7px; height:7px; border-radius:50%;
  background:var(--emerald-glow); display:inline-block;
}
.hero h1 {
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(38px,4.8vw,60px);
  font-weight:400; line-height:1.1;
  color:#fff; margin-bottom:22px; letter-spacing:-.02em;
}
.hero h1 em { font-style:italic; color:var(--gold-light); }
.hero-sub {
  font-size:15.5px; font-weight:300;
  color:rgba(255,255,255,0.65);
  max-width:500px; margin-bottom:36px; line-height:1.8;
}
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; }
.btn-gold {
  background:var(--gold); color:var(--navy);
  font-size:14px; font-weight:700;
  padding:13px 30px; border-radius:9px;
  text-decoration:none;
  transition:background .2s, transform .15s, box-shadow .15s;
}
.btn-gold:hover {
  background:var(--gold-light); transform:translateY(-2px);
  box-shadow:0 8px 28px rgba(201,168,76,0.35);
}
.btn-ghost {
  border:1.5px solid rgba(255,255,255,0.3);
  color:#fff; font-size:14px; font-weight:400;
  padding:13px 30px; border-radius:9px;
  text-decoration:none;
  transition:background .2s, border-color .2s;
}
.btn-ghost:hover { background:rgba(255,255,255,0.08); border-color:rgba(255,255,255,0.6); }

.hero-card {
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:20px; padding:36px 32px;
  backdrop-filter:blur(6px);
}
.stat-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.stat-box {
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px; padding:22px 18px; text-align:center;
}
.stat-num {
  font-family:'Cormorant Garamond', serif;
  font-size:40px; font-weight:300; color:#fff;
  line-height:1; margin-bottom:6px;
}
.stat-num span { color:var(--gold-light); }
.stat-lbl { font-size:11.5px; color:rgba(255,255,255,0.45); line-height:1.45; }
.card-footnote {
  text-align:center; margin-top:20px;
  font-size:12px; color:rgba(255,255,255,0.3); font-style:italic;
}

/* ── SECTION BASE ── */
section { padding:88px 36px; }
.inner { max-width:1140px; margin:0 auto; }
.sec-eyebrow {
  font-size:11px; font-weight:600;
  letter-spacing:.15em; text-transform:uppercase;
  color:var(--emerald-mid); margin-bottom:10px;
}
h2.sec-title {
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(30px,3.8vw,46px);
  font-weight:400; line-height:1.18;
  color:var(--navy); margin-bottom:16px;
}
.sec-sub {
  font-size:15px; color:var(--text-mid);
  max-width:580px; line-height:1.8; margin-bottom:52px;
}

/* ── SERVICE CARDS ── */
.card-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.card-grid.two { grid-template-columns:1fr 1fr; }
.svc-card {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:16px; padding:32px 28px;
  position:relative; overflow:hidden;
  transition:box-shadow .25s, transform .25s;
}
.svc-card::after {
  content:''; position:absolute;
  top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--emerald), var(--emerald-glow));
  opacity:0; transition:opacity .25s;
}
.svc-card:hover { box-shadow:0 12px 48px rgba(11,28,61,0.12); transform:translateY(-3px); }
.svc-card:hover::after { opacity:1; }
.svc-card h3 {
  font-family:'Cormorant Garamond', serif;
  font-size:21px; font-weight:600; color:var(--navy); margin-bottom:10px;
}
.svc-card p { font-size:13.5px; color:var(--text-mid); line-height:1.75; }
.card-link {
  display:inline-flex; align-items:center; gap:6px;
  font-size:13px; font-weight:600; color:var(--emerald-mid);
  text-decoration:none; margin-top:16px; transition:gap .2s;
}
.card-link:hover { gap:10px; }

/* tag cloud */
.tag-cloud { display:flex; flex-wrap:wrap; gap:10px; margin-top:16px; }
.tag {
  background:var(--white); border:1px solid var(--border);
  font-size:12.5px; color:var(--text);
  padding:6px 16px; border-radius:30px;
  transition:border-color .2s, color .2s;
}
.tag:hover { border-color:var(--emerald-mid); color:var(--emerald-mid); }
.tag-dark {
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  font-size:12.5px; color:rgba(255,255,255,0.65);
  padding:6px 16px; border-radius:30px;
}

/* ── DARK SECTION ── */
.dark-sec {
  background:var(--navy);
  padding:88px 36px;
  position:relative; overflow:hidden;
}
.dark-sec::before {
  content:''; position:absolute;
  top:-120px; right:-80px;
  width:480px; height:480px; border-radius:50%;
  background:radial-gradient(circle, rgba(13,92,74,0.22), transparent 70%);
}
.dark-sec .sec-eyebrow { color:var(--gold); }
.dark-sec h2.sec-title { color:#fff; }
.dark-sec .sec-sub { color:rgba(255,255,255,0.55); }

/* ── STAT BAR ── */
.stat-bar {
  display:grid; grid-template-columns:repeat(4,1fr);
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px; overflow:hidden; margin-bottom:52px;
}
.stat-bar-cell {
  padding:32px 24px; text-align:center; position:relative;
}
.stat-bar-cell + .stat-bar-cell::before {
  content:''; position:absolute;
  left:0; top:20%; height:60%;
  width:1px; background:rgba(255,255,255,0.1);
}
.stat-bar-cell .num {
  font-family:'Cormorant Garamond', serif;
  font-size:42px; font-weight:300;
  color:var(--gold-light); line-height:1; margin-bottom:6px;
}
.stat-bar-cell .lbl { font-size:12px; color:rgba(255,255,255,0.45); letter-spacing:.03em; }

/* ── STEPS ── */
.steps { display:flex; flex-direction:column; gap:0; position:relative; }
.steps::before {
  content:''; position:absolute;
  left:27px; top:56px; bottom:56px; width:2px;
  background:linear-gradient(to bottom, var(--emerald), var(--gold));
}
.step { display:flex; gap:28px; align-items:flex-start; padding:28px 0; }
.step-num {
  width:56px; height:56px; min-width:56px;
  border-radius:50%;
  background:var(--navy); border:2px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-family:'Cormorant Garamond', serif;
  font-size:22px; font-weight:600; color:var(--gold);
  position:relative; z-index:1;
}
.step-body h3 {
  font-family:'Cormorant Garamond', serif;
  font-size:21px; font-weight:600; color:var(--navy);
  margin-bottom:8px; margin-top:10px;
}
.step-body p { font-size:14px; color:var(--text-mid); line-height:1.75; }

/* ── REASSURANCE STRIP ── */
.reassure-strip {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:1px; background:var(--border);
  border:1px solid var(--border); border-radius:14px;
  overflow:hidden; margin-top:56px;
}
.reassure-cell {
  background:var(--cream); padding:24px 22px;
  display:flex; align-items:flex-start; gap:12px;
}
.reassure-cell p { font-size:13px; color:var(--text-mid); line-height:1.6; }
.reassure-cell strong { color:var(--navy); font-weight:600; display:block; margin-bottom:3px; }

/* ── WHY GRID ── */
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.why-card {
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px; padding:28px 26px;
  display:flex; gap:18px; align-items:flex-start;
  transition:background .25s, border-color .25s;
}
.why-card:hover { background:rgba(255,255,255,0.07); border-color:rgba(201,168,76,0.3); }
.why-num {
  font-family:'Cormorant Garamond', serif;
  font-size:36px; font-weight:300;
  color:rgba(201,168,76,0.35); line-height:1; min-width:36px;
}
.why-card h3 {
  font-family:'Cormorant Garamond', serif;
  font-size:19px; font-weight:600; color:#fff; margin-bottom:8px;
}
.why-card p { font-size:13.5px; color:rgba(255,255,255,0.55); line-height:1.7; }

/* ── ADDON CARDS ── */
.addon-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.addon-card {
  background:var(--cream); border:1px solid var(--border);
  border-radius:12px; padding:20px;
  display:flex; align-items:flex-start; gap:12px;
}
.addon-dot {
  width:8px; height:8px; min-width:8px;
  border-radius:50%; background:var(--gold); margin-top:8px;
}
.addon-card p { font-size:13px; color:var(--text-mid); line-height:1.6; }
.addon-card strong { color:var(--navy); font-weight:600; font-size:13.5px; display:block; margin-bottom:3px; }

/* ── SPECIALTY TAGS ── */
.spec-cloud { display:flex; flex-wrap:wrap; gap:10px; }
.spec-tag {
  background:var(--white); border:1px solid var(--border);
  font-size:12.5px; color:var(--text);
  padding:6px 16px; border-radius:30px;
  transition:border-color .2s, color .2s;
}
.spec-tag:hover { border-color:var(--emerald-mid); color:var(--emerald-mid); }

/* ── CTA BANNER ── */
.cta-banner {
  background:linear-gradient(130deg, var(--navy) 0%, var(--navy-light) 100%);
  border-top:1px solid rgba(201,168,76,0.15);
  padding:80px 36px; text-align:center;
  position:relative; overflow:hidden;
}
.cta-banner::before {
  content:''; position:absolute;
  top:50%; left:50%; transform:translate(-50%,-50%);
  width:600px; height:400px; border-radius:50%;
  background:radial-gradient(ellipse, rgba(13,92,74,0.18), transparent 65%);
}
.cta-banner .inner { position:relative; z-index:1; }
.cta-banner h2.sec-title { color:#fff; margin-bottom:14px; }
.cta-banner .sec-sub { color:rgba(255,255,255,0.55); margin:0 auto 28px; }
.cta-email {
  display:inline-block;
  font-family:'Cormorant Garamond', serif;
  font-size:22px; font-weight:400; font-style:italic;
  color:var(--gold-light); text-decoration:none; margin-bottom:28px;
  border-bottom:1px solid rgba(201,168,76,0.4); padding-bottom:4px;
  transition:color .2s, border-color .2s;
}
.cta-email:hover { color:var(--gold); border-color:var(--gold); }

.contact-row {
  display:flex; justify-content:center;
  flex-wrap:wrap; gap:14px; margin-bottom:28px;
}
.contact-pill {
  display:flex; align-items:center; gap:8px;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.14);
  border-radius:40px; padding:10px 22px;
  font-size:13.5px; color:rgba(255,255,255,0.8);
  text-decoration:none;
  transition:background .2s, border-color .2s;
}
.contact-pill:hover { background:rgba(255,255,255,0.12); border-color:rgba(201,168,50,0.5); color:#fff; }
.cta-note { font-size:12px; color:rgba(255,255,255,0.3); font-style:italic; }

/* ── FAQ ── */
.faq-group { margin-bottom:44px; }
.faq-group-title {
  font-family:'Cormorant Garamond', serif;
  font-size:22px; font-weight:600; color:var(--navy);
  margin-bottom:18px; padding-bottom:12px;
  border-bottom:1px solid var(--border);
}
.faq-list { display:flex; flex-direction:column; gap:10px; }
.faq-item {
  border:1px solid var(--border);
  border-radius:12px; overflow:hidden;
}
.faq-q {
  width:100%; background:none; border:none; cursor:pointer;
  padding:18px 22px; text-align:left;
  display:flex; justify-content:space-between; align-items:center;
  font-weight:500; font-size:15px; color:var(--navy);
  font-family:'DM Sans', sans-serif; line-height:1.4;
}
.faq-q:hover { background:var(--cream); }
.faq-q .arrow { font-size:18px; transition:transform .25s; color:var(--gold); flex-shrink:0; margin-left:16px; }
.faq-item.open .faq-q { background:var(--cream); }
.faq-item.open .faq-q .arrow { transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-item.open .faq-a { max-height:300px; }
.faq-a p { padding:0 22px 18px; font-size:14.5px; color:var(--text-mid); }

/* ── ESTIMATOR ── */
.estimator {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:16px; padding:44px 40px;
  max-width:680px; margin:0 auto;
  box-shadow:0 8px 40px rgba(11,28,61,0.10);
}
.est-progress { height:3px; background:var(--border); border-radius:2px; margin-bottom:8px; }
.est-progress-fill { height:100%; background:var(--gold); border-radius:2px; transition:width .3s; }
.est-step-label { font-size:12px; color:var(--text-light); margin-bottom:28px; letter-spacing:.5px; }
.est-step { display:none; }
.est-step.active { display:block; }
.est-question {
  font-family:'Cormorant Garamond', serif;
  font-size:1.3rem; color:var(--navy); margin-bottom:24px; font-weight:600; line-height:1.3;
}
.est-options { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.est-option {
  background:var(--cream); border:1.5px solid var(--border);
  border-radius:10px; padding:15px 14px;
  cursor:pointer; font-size:14px; color:var(--text);
  text-align:left; transition:border-color .2s, background .2s; line-height:1.4;
}
.est-option:hover, .est-option.selected { border-color:var(--gold); background:var(--gold-pale); color:var(--navy); }
.est-nav { display:flex; justify-content:space-between; align-items:center; margin-top:26px; }
.est-nav .back-btn {
  background:none; border:1.5px solid var(--border);
  border-radius:9px; padding:10px 20px;
  cursor:pointer; color:var(--text-mid); font-size:14px; font-family:'DM Sans', sans-serif;
}
.est-result { text-align:center; }
.est-result h3 { font-family:'Cormorant Garamond', serif; font-size:1.5rem; color:var(--navy); margin-bottom:8px; }
.est-range { font-family:'Cormorant Garamond', serif; font-size:2.6rem; font-weight:300; color:var(--gold); margin:18px 0 10px; }

/* ── FOOTER ── */
footer { background:#060f20; padding:52px 36px 28px; }
.footer-grid {
  max-width:1140px; margin:0 auto;
  display:grid; grid-template-columns:2fr 1fr 1fr 1.4fr;
  gap:48px; padding-bottom:36px;
  border-bottom:1px solid rgba(255,255,255,0.07);
}
.footer-brand-name {
  font-family:'Cormorant Garamond', serif;
  font-size:22px; font-weight:400; color:#fff; margin-bottom:6px;
}
.footer-logo img { height:44px; width:auto; margin-bottom:14px; }
.footer-brand p { font-size:13px; color:rgba(255,255,255,0.35); line-height:1.7; max-width:220px; }
footer h4 {
  font-size:11px; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase;
  color:rgba(255,255,255,0.35); margin-bottom:14px;
}
footer ul { list-style:none; }
footer ul li { margin-bottom:10px; }
footer ul a { font-size:13.5px; color:rgba(255,255,255,0.55); text-decoration:none; transition:color .2s; }
footer ul a:hover { color:#fff; }
.footer-contact p { font-size:13px; color:rgba(255,255,255,0.55); margin-bottom:8px; }
.footer-contact a { color:rgba(255,255,255,0.7); text-decoration:none; }
.footer-contact a:hover { color:var(--gold-light); }
.footer-bottom {
  max-width:1140px; margin:22px auto 0;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px;
  font-size:11.5px; color:rgba(255,255,255,0.25);
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .nav-inner { height:68px; padding:0 24px; }
  .nav-logo img { height:40px; max-width:180px; }
  .nav-links, .nav-cta { display:none; }
  .hamburger { display:flex; }
  .hero { padding:60px 24px 56px; }
  .hero-inner { grid-template-columns:1fr; gap:40px; }
  .hero h1 { font-size:clamp(34px,7vw,48px); }
  .hero-sub { font-size:15px; max-width:100%; }
  .hero-actions { flex-direction:column; gap:12px; }
  .btn-gold, .btn-ghost { width:100%; text-align:center; padding:15px 24px; font-size:15px; }
  .stat-grid { grid-template-columns:1fr 1fr; gap:12px; }
  section { padding:64px 24px; }
  .dark-sec { padding:64px 24px; }
  .card-grid { grid-template-columns:1fr; }
  .card-grid.two { grid-template-columns:1fr; }
  .stat-bar { grid-template-columns:1fr 1fr; }
  .why-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
  .addon-grid { grid-template-columns:1fr 1fr; }
  .reassure-strip { grid-template-columns:1fr 1fr; }
  .cta-banner { padding:60px 24px; }
}
@media(max-width:600px) {
  .nav-inner { height:60px; padding:0 20px; }
  .nav-logo img { height:34px; max-width:150px; }
  .hero { padding:48px 20px 44px; }
  .hero h1 { font-size:clamp(30px,9vw,42px); }
  section { padding:52px 20px; }
  .dark-sec { padding:52px 20px; }
  .stat-bar { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  footer { padding:44px 20px 24px; }
  .footer-bottom { flex-direction:column; gap:4px; text-align:center; }
  .addon-grid { grid-template-columns:1fr; }
  .reassure-strip { grid-template-columns:1fr; }
  h2.sec-title { font-size:clamp(26px,8vw,36px); }
  .sec-sub { font-size:14px; margin-bottom:36px; }
  .est-options { grid-template-columns:1fr; }
  .estimator { padding:28px 20px; }
}

.fade { opacity:0; transform:translateY(22px); animation:fu .65s ease forwards; }
@keyframes fu { to { opacity:1; transform:none; } }
.d1{animation-delay:.12s} .d2{animation-delay:.24s} .d3{animation-delay:.36s} .d4{animation-delay:.48s}
