:root {
  --pine-950: #0C2417;
  --pine-900: #123B27;
  --pine-800: #1B5E3A;
  --pine-700: #1F6B42;
  --pine-600: #2A7D4F;
  --sage: #7FA085;
  --sage-light: #B7CBB4;
  --gold: #B8873D;
  --gold-light: #D2A25E;
  --sky: #4FA3C7;
  --sky-light: #8FCBE3;
  --sky-pale: #E4F3F8;
  --charcoal: #2B2B28;
  --stone: #F6F4EE;
  --stone-light: #FBFAF6;
  --ink: #262420;
  --ink-soft: #55534C;
  --line: rgba(38,36,32,0.12);
  --line-on-dark: rgba(246,244,238,0.16);
  --shadow: 0 20px 50px -25px rgba(12,36,23,0.35);
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--stone);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
h1, h2, h3, .display {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--pine-950);
}
.eyebrow {
  font-family: 'Fraunces', serif;
  font-style: italic; font-weight: 500; font-size: 0.95rem;
  letter-spacing: 0.03em; color: var(--gold);
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--gold); display: inline-block; }
p { margin: 0 0 1em; color: var(--ink-soft); }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.95rem;
  padding: 15px 28px; border-radius: var(--radius); border: 1px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-gold { background: var(--gold); color: var(--pine-950); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; border-color: var(--line-on-dark); color: var(--stone-light); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-dark { background: var(--pine-900); color: var(--stone-light); }
.btn-dark:hover { background: var(--pine-800); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- SKIP LINK ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--pine-950);
  padding: 12px 20px; z-index: 200; font-weight: 700; border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* ---------- HEADER ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12,36,23,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-on-dark);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 32px; max-width: 1180px; margin: 0 auto; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo img { height: 42px; width: auto; }
.nav-links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; font-size: 0.9rem; font-weight: 500; align-items: center; }
.nav-links a { text-decoration: none; color: var(--sage-light); transition: color 0.2s ease; white-space: nowrap; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--stone-light); }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: -14px; background: var(--pine-900);
  border: 1px solid var(--line-on-dark); border-radius: var(--radius);
  min-width: 220px; padding: 10px; margin-top: 12px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: var(--shadow);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 9px 12px; border-radius: 3px; font-size: 0.88rem; }
.dropdown a:hover { background: var(--pine-800); }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-phone { display: flex; align-items: center; gap: 6px; text-decoration: none; color: var(--pine-800); font-weight: 700; font-size: 0.88rem; padding: 9px 14px; border: 1.5px solid var(--pine-800); border-radius: 30px; white-space: nowrap; transition: background 0.2s ease, color 0.2s ease; }
.nav-phone:hover { background: var(--pine-900); color: var(--stone-light); }
.nav-phone svg { width: 15px; height: 15px; }
.nav-cta .btn { padding: 11px 20px; font-size: 0.88rem; }
.nav-toggle { display: none; background: none; border: none; color: var(--stone-light); cursor: pointer; padding: 6px; }
.mobile-nav-panel { display: none; position: fixed; inset: 0; z-index: 90; background: rgba(12,36,23,0.7); }
.mobile-nav-panel.open { display: block; }
.mobile-nav-inner {
  position: absolute; top: 0; right: 0; width: min(320px, 84vw); height: 100%;
  background: var(--pine-950); border-left: 2px solid var(--gold);
  padding: 20px 26px; overflow-y: auto;
  transform: translateX(100%); transition: transform 0.28s ease;
}
.mobile-nav-panel.open .mobile-nav-inner { transform: translateX(0); }
.mobile-nav-close { background: none; border: none; color: var(--stone-light); font-size: 1.6rem; line-height: 1; cursor: pointer; padding: 8px; margin: -8px -8px 10px auto; display: block; }
.mobile-nav-inner a { display: block; padding: 13px 4px; color: var(--stone-light); text-decoration: none; font-weight: 600; font-size: 1rem; border-bottom: 1px solid var(--line-on-dark); font-family: 'Fraunces', serif; }
.mobile-nav-inner .sub-link { padding-left: 18px; font-size: 0.88rem; color: var(--sage-light); font-weight: 500; font-family: 'Inter', sans-serif; }
.mobile-nav-inner .group-label { padding: 13px 4px 4px; color: var(--gold-light); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; border-bottom: none; font-family: 'Inter', sans-serif; }
.mobile-nav-inner .mnav-cta { margin-top: 18px; text-align: center; background: var(--gold); color: var(--pine-950); border-radius: 4px; border-bottom: none; font-family: 'Inter', sans-serif; font-weight: 700; }

/* ---------- STICKY MOBILE BOOK BAR ---------- */
.mobile-book-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: var(--pine-950); border-top: 1px solid var(--line-on-dark);
  padding: 12px 16px; box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
}
.mobile-book-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; }

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  background: var(--stone-light); border-bottom: 1px solid var(--line);
  padding: 14px 0; font-size: 0.85rem;
}
.breadcrumb ol { list-style: none; display: flex; gap: 8px; margin: 0; padding: 0; flex-wrap: wrap; color: var(--ink-soft); }
.breadcrumb a { text-decoration: none; color: var(--pine-700); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--sage); }

/* ---------- HERO ---------- */
.hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(143,203,227,0.4) 0%, transparent 42%),
    radial-gradient(circle at 78% 68%, rgba(184,135,61,0.16) 0%, transparent 34%),
    radial-gradient(circle at 96% 45%, rgba(127,160,133,0.28) 0%, transparent 30%),
    radial-gradient(circle at 65% 85%, rgba(143,203,227,0.25) 0%, transparent 26%),
    linear-gradient(128deg, transparent 38%, rgba(255,255,255,0.75) 49%, transparent 60%),
    linear-gradient(160deg, var(--sky-pale) 0%, var(--stone-light) 45%, var(--stone) 100%);
  position: relative; overflow: hidden; padding: 76px 0 0; min-height: 560px; display: flex; flex-direction: column;
  border-bottom: 1px solid var(--line);
}
.hero-sparkles { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.hero-sparkles svg { position: absolute; }
.hero-photo {
  position: absolute; top: 0; right: 0; width: min(52%, 560px); height: 100%;
  z-index: 1; pointer-events: none; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.55) 20%, black 42%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.55) 20%, black 42%);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: right center; display: block; }
.hero-inner {
  flex: 1; display: flex; align-items: center;
  position: relative; z-index: 3;
  max-width: 1180px; margin: 0 auto; padding: 0 32px 90px;
}
.hero-inner > div { max-width: 640px; padding: 0; }
.hero-bg-scene {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 1; pointer-events: none;
}
.hero-bg-scene svg { width: 100%; height: 100%; display: block; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(251,250,246,0.94) 0%, rgba(251,250,246,0.8) 42%, rgba(251,250,246,0.25) 75%, rgba(251,250,246,0.05) 100%);
}
.hero.hero-simple .hero-inner { max-width: 760px; padding-bottom: 60px; }
.hero-price-badge {
  display: inline-flex; align-items: baseline; gap: 6px;
  background: var(--pine-950); color: var(--stone-light);
  padding: 9px 18px; border-radius: 30px; margin-bottom: 20px;
  font-family: 'Inter', sans-serif; font-size: 0.86rem; font-weight: 600;
}
.hero-price-badge .num { font-family: 'Fraunces', serif; color: var(--gold-light); font-size: 1.05rem; }
.hero h1 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); color: var(--pine-950); line-height: 1.12; margin-bottom: 20px; }
.hero h1 em { color: var(--pine-700); font-style: italic; }
.hero p.lede { color: var(--ink-soft); font-size: 1.08rem; max-width: 50ch; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn-ghost { border-color: var(--pine-800); color: var(--pine-900); }
.hero .btn-ghost:hover { border-color: var(--gold); color: var(--pine-700); background: rgba(184,135,61,0.08); }
.hero-badge-row {
  display: flex; gap: 26px; margin-top: 40px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.hero-badge { display: flex; align-items: center; gap: 9px; font-size: 0.84rem; color: var(--pine-800); font-weight: 600; }
.hero-badge svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.hero-art { position: relative; }
.ridge { display: none; }

/* ---------- TRUST STRIP ---------- */
.trust-strip { background: var(--stone-light); border-bottom: 1px solid var(--line); }
.trust-strip .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px 36px; padding: 20px 32px; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 0.86rem; font-weight: 600; color: var(--pine-800); }
.trust-item svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; }

/* ---------- SECTION GENERIC ---------- */
section { padding: 88px 0; }
section.tight { padding: 60px 0; }
.section-head { max-width: 660px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 2.8vw, 2.4rem); }
.section-head p { margin-top: 15px; font-size: 1.02rem; }
.alt-bg { background: var(--stone-light); }

/* ---------- SERVICES GRID (used on home + services index) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-card { background: var(--stone-light); padding: 34px 26px; transition: background 0.25s ease; text-decoration: none; display: block; }
.service-card:hover { background: #fff; }
.service-icon { width: 40px; height: 40px; color: var(--gold); margin-bottom: 18px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--pine-900); }
.service-card p { font-size: 0.92rem; margin-bottom: 12px; }
.service-card .link { font-size: 0.85rem; font-weight: 700; color: var(--pine-700); }

/* ---------- WHY (dark band) ---------- */
.why { background: var(--pine-950); color: var(--stone-light); }
.why .section-head h2 { color: var(--stone-light); }
.why .section-head p { color: var(--sage-light); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 56px; }
.why-item { display: flex; gap: 18px; }
.why-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--pine-800); display: flex; align-items: center; justify-content: center; border: 1px solid var(--line-on-dark); }
.why-icon svg { width: 19px; height: 19px; color: var(--gold-light); }
.why-item h3 { color: var(--stone-light); font-size: 1.1rem; margin-bottom: 7px; }
.why-item p { color: var(--sage-light); font-size: 0.93rem; margin-bottom: 0; }

/* ---------- LOCATION GRID (home + military page) ---------- */
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.loc-card {
  background: var(--stone-light); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; text-decoration: none; transition: border-color 0.2s ease, transform 0.2s ease;
}
.loc-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.loc-card .tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); }
.loc-card h3 { font-size: 1.15rem; margin: 8px 0 6px; color: var(--pine-900); }
.loc-card p { font-size: 0.88rem; margin-bottom: 0; }

/* ---------- LOCATION PAGE LAYOUT ---------- */
.loc-hero-facts { display: flex; gap: 30px; flex-wrap: wrap; margin-top: 30px; }
.loc-fact { }
.loc-fact .num { font-family: 'Fraunces', serif; color: var(--gold-light); font-size: 1.6rem; display: block; }
.loc-fact .label { color: var(--sage-light); font-size: 0.82rem; }
.two-col { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; }
.two-col.reverse { grid-template-columns: 0.8fr 1.2fr; }
.local-callout {
  background: var(--stone-light); border-left: 3px solid var(--gold);
  padding: 22px 24px; border-radius: 0 4px 4px 0; margin: 30px 0;
}
.local-callout p:last-child { margin-bottom: 0; }
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li { display: flex; gap: 12px; padding: 10px 0; font-size: 0.96rem; color: var(--ink-soft); }
.check-list svg { width: 19px; height: 19px; color: var(--pine-700); flex-shrink: 0; margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: 'Fraunces', serif; font-size: 1.08rem; color: var(--pine-950);
}
.faq-q svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; transition: transform 0.25s ease; }
.faq-item[open] .faq-q svg { transform: rotate(45deg); }
.faq-a { padding: 0 0 22px; font-size: 0.96rem; }
.faq-a p:last-child { margin-bottom: 0; }

/* ---------- PRICING ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.pricing-grid.three { grid-template-columns: repeat(3, 1fr); }
.price-card { background: var(--stone-light); border: 1px solid var(--line); border-radius: 6px; padding: 36px; }
.price-card.featured { background: var(--pine-950); border-color: var(--pine-950); }
.price-card.featured h3, .price-card.featured .amount { color: var(--stone-light); }
.price-card.featured p, .price-card.featured .check-list li { color: var(--sage-light); }
.price-card.featured .check-list svg { color: var(--gold-light); }
.price-card h3 { font-size: 1.15rem; margin-bottom: 6px; color: var(--pine-900); }
.amount { font-family: 'Fraunces', serif; font-size: 2.4rem; color: var(--pine-950); margin: 16px 0 4px; }
.amount sup { font-size: 0.95rem; font-weight: 500; }
.unit { font-size: 0.83rem; color: var(--ink-soft); margin-bottom: 18px; display: block; }
.price-card.featured .unit { color: var(--sage-light); }
.price-note { margin-top: 24px; font-size: 0.86rem; color: var(--ink-soft); text-align: center; }

/* ---------- ABOUT PAGE ---------- */
.about-hero { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.about-photo {
  aspect-ratio: 4/5; border-radius: 6px; overflow: hidden; background: var(--sage-light);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo .ph-label {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  background: rgba(12,36,23,0.85); color: var(--stone-light); font-size: 0.78rem;
  padding: 8px 12px; border-radius: 3px; text-align: center;
}
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.value-item h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--pine-900); }
.value-item p { font-size: 0.92rem; margin-bottom: 0; }

/* ---------- CONTACT / QUOTE FORM ---------- */
.contact { background: var(--stone-light); border-top: 1px solid var(--line); }
.contact-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; }
.contact-side h2 { font-size: clamp(1.8rem, 2.8vw, 2.3rem); margin-bottom: 16px; }
.contact-list { list-style: none; padding: 0; margin: 26px 0 0; }
.contact-list li { padding: 13px 0; border-top: 1px solid var(--line); display: flex; gap: 13px; align-items: center; font-size: 0.94rem; }
.contact-list svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
form { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 0.8rem; font-weight: 600; color: var(--pine-900); text-transform: uppercase; letter-spacing: 0.03em; }
.field input, .field select, .field textarea {
  font-family: 'Inter', sans-serif; font-size: 0.97rem; padding: 11px 13px;
  border: 1px solid var(--line); border-radius: 3px; background: var(--stone-light);
  color: var(--ink); outline: none; transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: #fff; }
.field textarea { resize: vertical; min-height: 84px; font-family: inherit; }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 6px; }
.form-foot p { margin: 0; font-size: 0.8rem; color: var(--ink-soft); }
.form-status { font-size: 0.88rem; font-weight: 600; margin-top: 12px; min-height: 1.2em; }
.form-status.ok { color: var(--pine-800); }
.form-status.err { color: #9C4A2E; }
.embed-placeholder {
  border: 2px dashed var(--sage); border-radius: 6px; padding: 40px 24px; text-align: center;
  color: var(--ink-soft); font-size: 0.9rem; background: var(--stone-light);
}

/* ---------- HOW IT WORKS ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step { position: relative; padding-top: 10px; }
.step-num {
  font-family: 'Fraunces', serif; font-style: italic; font-size: 2.4rem; color: var(--gold);
  display: block; margin-bottom: 10px; line-height: 1;
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--pine-900); }
.step p { font-size: 0.93rem; margin-bottom: 0; }

/* ---------- GUARANTEE BAND ---------- */
.guarantee {
  background: var(--pine-950); border-radius: 8px; padding: 44px;
  display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center;
}
.guarantee-badge {
  width: 74px; height: 74px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.guarantee-badge svg { width: 34px; height: 34px; color: var(--pine-950); }
.guarantee h3 { color: var(--stone-light); font-size: 1.3rem; margin-bottom: 8px; }
.guarantee p { color: var(--sage-light); margin-bottom: 0; font-size: 0.96rem; }
@media (max-width: 640px) {
  .guarantee { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .guarantee-badge { margin: 0 auto; }
  .steps-grid { grid-template-columns: 1fr; gap: 26px; }
}

/* ---------- SIZE PRICING TABLE ---------- */
.size-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.size-table th, .size-table td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.94rem; }
.size-table th { background: var(--pine-950); color: var(--stone-light); font-family: 'Fraunces', serif; font-weight: 500; font-size: 0.98rem; }
.size-table tr:last-child td { border-bottom: none; }
.size-table td:first-child { font-weight: 600; color: var(--pine-900); }
.size-table td.price { font-family: 'Fraunces', serif; color: var(--pine-950); font-size: 1.05rem; }
.table-scroll { overflow-x: auto; }

/* ---------- ADD-ON GRID ---------- */
.addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.addon-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
}
.addon-card .name { font-weight: 600; color: var(--pine-900); font-size: 0.95rem; display: block; }
.addon-card .note { font-size: 0.8rem; color: var(--ink-soft); display: block; }
.addon-card .incl-tag {
  display: inline-block; margin-top: 6px; font-size: 0.72rem; font-weight: 700;
  color: var(--pine-800); background: #E8F0E6; border: 1px solid #C9DDC5;
  padding: 3px 9px; border-radius: 20px;
}
.addon-card .amt { font-family: 'Fraunces', serif; color: var(--gold); font-size: 1.15rem; white-space: nowrap; }

/* ---------- CHECKLIST ACCORDION ---------- */
.checklist-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.checklist-tab {
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.88rem;
  padding: 10px 18px; border-radius: 20px; border: 1px solid var(--line);
  background: #fff; color: var(--ink-soft); cursor: pointer; transition: all 0.2s ease;
}
.checklist-tab.active { background: var(--pine-950); color: var(--stone-light); border-color: var(--pine-950); }
.checklist-panel { display: none; }
.checklist-panel.active { display: block; }
.checklist-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.checklist-cols h4 { font-family: 'Fraunces', serif; font-size: 1.05rem; color: var(--pine-900); margin: 0 0 12px; }
.checklist-cols .check-list li { padding: 7px 0; font-size: 0.92rem; }
.included-note {
  background: var(--stone-light); border-left: 3px solid var(--pine-700);
  padding: 14px 18px; border-radius: 0 4px 4px 0; font-size: 0.88rem; margin-top: 18px;
}
@media (max-width: 760px) {
  .addon-grid { grid-template-columns: 1fr 1fr; }
  .checklist-cols { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .addon-grid { grid-template-columns: 1fr; }
  .hero-price-badge { font-size: 0.78rem; padding: 8px 14px; }
  .hero-price-badge .num { font-size: 0.95rem; }
}

/* ---------- PERSONA / WHO WE HELP ---------- */
.persona-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.persona-card {
  background: var(--stone-light); border: 1px solid var(--line); border-radius: 8px;
  padding: 34px 28px; position: relative;
}
.persona-card .mark { font-family: 'Fraunces', serif; font-style: italic; font-size: 2.4rem; color: var(--gold); line-height: 1; display: block; margin-bottom: 14px; }
.persona-card h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--pine-900); line-height: 1.3; }
.persona-card p { font-size: 0.94rem; margin-bottom: 0; }
.persona-card .feel {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line);
  font-family: 'Fraunces', serif; font-style: italic; font-size: 0.98rem; color: var(--pine-700);
}
@media (max-width: 920px) { .persona-grid { grid-template-columns: 1fr; } }

/* ---------- FOOTER ---------- */
footer { background: var(--pine-950); color: var(--sage-light); padding: 64px 0 26px; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid var(--line-on-dark); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo img { height: 34px; width: auto; }
.footer-col h4 { color: var(--stone-light); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 15px; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; font-size: 0.9rem; }
.footer-col a { text-decoration: none; color: var(--sage-light); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.8rem; color: rgba(183,203,180,0.6); }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 920px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .mobile-book-bar { display: block; }
  body { padding-bottom: 66px; }
  .hero {
    min-height: auto; height: 78vh; max-height: 560px; padding: 0;
    display: block; position: relative; overflow: hidden;
    border-bottom: none;
  }
  .hero-sparkles { display: none; }
  .hero-photo {
    position: absolute; inset: 0; width: 100%; height: 100%;
    opacity: 1; z-index: 1;
    mask-image: none; -webkit-mask-image: none;
  }
  .hero-photo img { object-fit: cover; object-position: 74% 55%; }
  .hero-photo::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(12,36,23,0.18) 0%, rgba(12,36,23,0.35) 45%, rgba(12,36,23,0.86) 100%);
  }
  .hero-inner, .hero.hero-simple .hero-inner {
    position: absolute; inset: 0; z-index: 3;
    display: flex; align-items: flex-end;
    max-width: none; margin: 0; padding: 0 20px 26px;
  }
  .hero-inner > div { max-width: none; padding: 0; }
  .hero .eyebrow { color: var(--gold-light); }
  .hero .eyebrow::before { background: var(--gold-light); }
  .hero h1 { color: var(--stone-light); font-size: clamp(1.7rem, 7vw, 2.2rem); margin-bottom: 10px; }
  .hero h1 em { color: var(--gold-light); }
  .hero p.lede { color: var(--sage-light); font-size: 0.94rem; margin-bottom: 18px; max-width: 46ch; }
  .hero-price-badge { margin-bottom: 12px; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { flex: 1; justify-content: center; padding: 13px 16px; font-size: 0.9rem; }
  .hero .btn-ghost { border-color: rgba(251,250,246,0.5); color: var(--stone-light); }
  .hero-badge-row { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; }
  .pricing-grid, .pricing-grid.three { grid-template-columns: 1fr; }
  .about-hero { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .services-grid, .loc-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .wrap, .hero-inner { padding-left: 20px; padding-right: 20px; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
}
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
