/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:        #082718;
  --navy2:       #0f3d26;
  --gold:        #4a8c63;
  --gold2:       #c8e8d4;
  --cream:       #f7f5f0;
  --white:       #ffffff;
  --gray:        #5a6b62;
  --light:       #e8f5ee;
  --forest:      #1a5c3a;
  --sage:        #4a8c63;
  --mint:        #e8f5ee;
  --mint-mid:    #c8e8d4;
  --ink:         #0e1a13;
  --muted:       #5a6b62;
  --border:      #d4e6da;
  --warm:        #fdfcf8;
  --amber:       #b06a2c;
  --btn:         #2e6b47;
  --btn-hover:   #14492c;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--btn); color: var(--white);
  padding: 10px 18px; border-radius: 0 0 8px 0;
  font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

/* ── Nav ── */
body > nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,39,24,0.97);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 68px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--mint-mid);
  text-decoration: none; letter-spacing: -0.3px;
}
.nav-logo span { color: var(--white); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: #cbd5e1; text-decoration: none; font-size: 0.9rem; transition: color .2s; }
.nav-links a:hover { color: var(--gold2); }
.nav-cta {
  background: var(--btn); color: var(--white);
  border: none; border-radius: 8px;
  padding: 9px 20px; font-weight: 700; font-size: 0.9rem;
  cursor: pointer; text-decoration: none; transition: background .2s;
}
.nav-cta:hover { background: var(--btn-hover); }
.nav-links a[aria-current="true"] { color: var(--gold2); text-decoration: underline; text-underline-offset: 5px; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 10px; margin-left: auto; margin-right: 12px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--white);
  margin: 5px 0; transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy2) 60%, var(--forest) 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 5% 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: .5;
}
.hero-inner { position: relative; max-width: 820px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold2); border-radius: 50px;
  padding: 6px 16px; font-size: 0.82rem; font-weight: 600;
  margin-bottom: 1.8rem; letter-spacing: 0.5px; text-transform: uppercase;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900; color: var(--white);
  line-height: 1.18; margin-bottom: 1.2rem; letter-spacing: -0.3px;
}
.hero h1 em { color: var(--gold2); font-style: normal; }
.hero-tag {
  font-family: 'Playfair Display', serif; font-weight: 700;
  color: var(--gold2); font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  margin-bottom: 1.2rem;
}
.hero p {
  font-size: 1.15rem; color: #94a3b8;
  max-width: 640px; margin: 0 auto 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--btn); color: var(--white);
  border: none; border-radius: 10px;
  padding: 15px 32px; font-size: 1rem; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: background .2s, transform .15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--btn-hover); transform: translateY(-2px); }
.cta-note { margin-top: 1rem; font-size: 0.85rem; color: #94a3b8; }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.2); border-radius: 10px;
  padding: 15px 32px; font-size: 1rem; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: border-color .2s, transform .15s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold2); transform: translateY(-2px); }
.hero-stats {
  margin-top: 4rem;
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.stat { text-align: center; max-width: 170px; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--gold2); }
.stat-label { font-size: 0.82rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }

/* ── Section commons ── */
section { padding: 90px 5%; }
.section-tag {
  display: inline-block; background: rgba(201,168,76,0.12);
  color: var(--forest); border-radius: 50px;
  padding: 4px 14px; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 1rem;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; line-height: 1.2; margin-bottom: 1rem; letter-spacing: -0.2px;
}
.section-sub { font-size: 1.05rem; color: var(--gray); max-width: 620px; margin: 0 auto; }
.center { text-align: center; }

/* ── Problem / benefit cards ── */
.problem { background: var(--cream); }
.problem h2 em { color: var(--gold); font-style: normal; }
.problem-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.problem-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}
.problem-card .icon { font-size: 2rem; margin-bottom: 1rem; }
.problem-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.problem-card p { font-size: 0.9rem; color: var(--gray); }
.problem-card p + p { margin-top: .5rem; }

/* ── Take Pickup Back (orders positioning — the "solution" beat) ── */
.orders { background: var(--mint); }
.orders .problem-card { border-left: none; border-top: 4px solid var(--forest); }
.orders.resv { background: var(--white); }
.orders.resv .problem-card { border: 1px solid var(--border); border-top: 4px solid var(--forest); }
.orders-note { max-width: 640px; margin: 2rem auto 0; text-align: center; font-size: 0.9rem; color: var(--gray); font-style: italic; }

/* ── Sample calls ── */
.listen { background: var(--warm); }
.listen-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; max-width: 940px; margin: 3rem auto 0;
}
.listen-card {
  background: var(--white); border: 1px solid var(--border);
  border-top: 4px solid var(--forest); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow);
}
.listen-head { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.2rem; text-align: left; }
.listen-head .icon { font-size: 2rem; }
.listen-card h3 { font-size: 1.05rem; font-weight: 700; }
.listen-cap { font-size: .85rem; color: var(--gray); }
.listen-card audio { width: 100%; }
.listen-tx { margin-top: 1.1rem; font-size: .9rem; color: var(--gray); text-align: left; }
.listen-tx summary { cursor: pointer; font-weight: 600; color: var(--forest); }
.listen-tx p { margin-top: .6rem; }

/* ── How it works ── */
.how { background: var(--navy2); color: var(--white); }
.how h2 { color: var(--white); }
.how .section-tag { color: var(--gold2); background: rgba(200,232,212,0.12); border: 1px solid rgba(200,232,212,0.2); }
.how .section-sub { color: #94a3b8; }
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem; margin-top: 3.5rem; position: relative;
}
.step {
  text-align: center; padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  transition: background .2s, border-color .2s;
}
.step:hover { background: rgba(255,255,255,0.08); border-color: rgba(200,232,212,0.2); }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  font-size: 1.2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; color: var(--white); }
.step p { font-size: 0.88rem; color: #94a3b8; }

/* ── Features ── */
.features { background: var(--navy); color: var(--white); }
.features h2 { color: var(--white); }
.features .section-tag { color: var(--gold2); background: rgba(201,168,76,0.15); }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 2rem;
  transition: background .2s, border-color .2s;
}
.feature-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.3);
}
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--white); }
.feature-card p { font-size: 0.88rem; color: #94a3b8; }
.feature-card p + p { margin-top: .6rem; }

/* ── Pricing ── */
.pricing { background: var(--white); }
.pricing-note { text-align: center; font-size: 0.9rem; color: var(--gray); margin-top: .6rem; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.5rem; margin: 3rem auto 0; max-width: 1280px; align-items: stretch;
}
.pricing-fineprint { max-width: 760px; margin: 1.4rem auto 0; text-align: center; font-size: 0.82rem; color: var(--gray); line-height: 1.5; }
.price-card {
  border-radius: var(--radius); padding: 2.2rem;
  border: 2px solid var(--light); position: relative;
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-tier { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--forest); margin-bottom: .5rem; }
.price-card.popular { border-color: var(--forest); }
.price-pop {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--forest); color: var(--white);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px;
  padding: 4px 14px; border-radius: 50px; white-space: nowrap;
}
.price-amount { font-size: 2.6rem; font-weight: 800; line-height: 1; }
.price-period { font-size: 0.9rem; color: var(--gray); margin-top: .35rem; font-weight: 600; }
.price-desc { font-size: 0.88rem; color: var(--gray); margin: .8rem 0 1.3rem; }
.price-features { list-style: none; margin-bottom: 1rem; }
.price-features li {
  font-size: 0.86rem; padding: 5px 0;
  display: flex; align-items: flex-start; gap: 8px;
  color: var(--gray);
}
.price-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.price-limit { background: var(--mint); color: var(--forest); font-weight: 700; font-size: 0.82rem; border-radius: 8px; padding: .6rem .7rem; margin: .3rem 0 .9rem; text-align: center; }
.price-add { font-size: 0.8rem; color: var(--gray); margin: 0 0 1.1rem; line-height: 1.45; }
.price-btn {
  display: block; text-align: center; width: 100%; margin-top: auto;
  padding: 12px; border-radius: 8px; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; cursor: pointer; border: none;
  background: var(--light); color: var(--navy);
  transition: background .2s;
}
.price-btn:hover { opacity: .85; }

/* ── Setup section ── */
.setup-box { max-width: 940px; margin: 3rem auto 0; background: var(--warm); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.4rem; box-shadow: var(--shadow); text-align: center; }
.setup-box h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: .4rem; }
.setup-price { font-size: 2rem; font-weight: 800; color: var(--forest); }
.setup-price span { font-size: 0.95rem; font-weight: 600; color: var(--gray); }
.setup-sub { color: var(--gray); font-size: 0.92rem; margin: .7rem auto 1.5rem; max-width: 580px; }
.setup-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: .5rem 1.6rem; max-width: 820px; margin: 0 auto 1.3rem; text-align: left; }
.setup-list li { font-size: 0.88rem; color: var(--gray); display: flex; gap: 8px; }
.setup-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.setup-note { font-size: 0.9rem; font-weight: 600; color: var(--forest); }

/* ── Pickup Profit Calculator ── */
.calc { max-width: 760px; margin: 3.5rem auto 0; background: var(--warm); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow); }
.calc h3 { font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 3.2vw, 1.6rem); text-align: center; margin-bottom: .4rem; }
.calc-sub { text-align: center; font-size: .92rem; color: var(--gray); margin: 0 auto 1.6rem; max-width: 520px; }
.calc-toggle { display: flex; gap: .4rem; background: var(--light); border-radius: 12px; padding: .35rem; margin: 0 auto 1.6rem; max-width: 420px; }
.calc-toggle input { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.calc-toggle label { flex: 1; text-align: center; padding: .6rem .5rem; border-radius: 9px; font-size: .88rem; font-weight: 600; color: var(--gray); cursor: pointer; transition: background .2s, color .2s; }
.calc-toggle input:checked + label { background: var(--white); color: var(--forest); box-shadow: 0 1px 4px rgba(0,0,0,.12); }
.calc-toggle input:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 2px; }
.calc-field[hidden] { display: none; }
.calc-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.4rem; }
@media (max-width: 620px) { .calc-inputs { grid-template-columns: 1fr; } }
.calc-field label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.calc-num { width: 100%; padding: .6rem .7rem; border: 1px solid var(--border); border-radius: 8px; font-size: 1rem; font-family: inherit; color: var(--ink); background: var(--white); text-align: left; }
.calc-num:focus-visible { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.calc-help { font-size: .75rem; color: var(--gray); margin-top: .35rem; line-height: 1.4; }
/* single result card — savings first */
.calc-result { margin-top: 1.8rem; background: var(--white); border: 2px solid var(--mint-mid); border-radius: 14px; overflow: hidden; box-shadow: 0 10px 30px rgba(26,92,58,0.10); }
.rz-hero-wrap { background: linear-gradient(160deg, var(--mint) 0%, #dcefe4 100%); padding: 1.9rem 1.5rem 1.7rem; text-align: center; border-bottom: 1px solid var(--mint-mid); }
.rz-eyebrow { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--forest); }
.rz-hero { display: flex; align-items: baseline; justify-content: center; gap: .3rem; margin-top: .35rem; }
.rz-save { font-family: 'Playfair Display', serif; font-weight: 900; font-size: clamp(2.9rem, 11vw, 4.4rem); color: var(--forest); line-height: 1; letter-spacing: -1.5px; font-variant-numeric: tabular-nums; }
.rz-save-unit { font-size: 1.1rem; font-weight: 700; color: var(--forest); opacity: .8; }
.rz-year { font-size: 1rem; color: var(--forest); font-weight: 600; margin-top: .45rem; }
.rz-year strong { font-weight: 800; }
.rz-soft { font-size: .95rem; color: var(--gray); line-height: 1.55; max-width: 440px; margin: .3rem auto 0; }
.rz-soft strong { color: var(--forest); }
.rz-body { padding: 1.6rem 1.5rem 1.8rem; text-align: center; }
.rz-compare { max-width: 440px; margin: 0 auto; text-align: left; }
.rz-bar-row { margin-bottom: .85rem; }
.rz-bar-label { display: flex; justify-content: space-between; font-size: .85rem; margin-bottom: .32rem; }
.rz-bar-label .rz-bl { color: var(--gray); }
.rz-bar-label .rz-bv { font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.rz-track { height: 12px; background: var(--light); border-radius: 6px; overflow: hidden; }
.rz-fill { height: 100%; border-radius: 6px; width: 0; transition: width .7s cubic-bezier(.22,.61,.36,1); }
.rz-fill-cost { background: linear-gradient(90deg, #d9a768, var(--amber)); }
.rz-fill-price { background: linear-gradient(90deg, var(--sage), var(--forest)); }
.rz-keep { text-align: center; font-size: .82rem; color: var(--forest); font-weight: 600; margin-top: .5rem; }
.rz-plan { margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--border); }
.rz-plan-head { font-size: 1rem; color: var(--ink); }
.rz-plan-head strong { color: var(--forest); }
.rz-incl { list-style: none; margin: .9rem auto 0; display: inline-grid; grid-template-columns: repeat(2, auto); gap: .25rem 1.5rem; text-align: left; }
@media (max-width: 520px) { .rz-incl { grid-template-columns: 1fr; } }
.rz-incl li { font-size: .84rem; color: var(--gray); display: flex; gap: 7px; }
.rz-incl li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
@media (prefers-reduced-motion: reduce) { .rz-fill { transition: none; } }
.calc-see { margin-top: 1.1rem; }
.calc-see summary { cursor: pointer; font-size: .8rem; color: var(--gray); font-weight: 600; list-style: none; }
.calc-see summary::-webkit-details-marker { display: none; }
.calc-see summary::after { content: ' ▸'; color: var(--gold); }
.calc-see[open] summary::after { content: ' ▾'; }
.calc-see summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.calc-see-body { font-size: .82rem; color: var(--gray); margin-top: .5rem; line-height: 1.7; }
.calc-cta-row { display: flex; gap: 1.2rem; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 1.5rem; }
.calc-textlink { color: var(--forest); font-weight: 600; font-size: .9rem; text-decoration: none; border-bottom: 1px solid var(--mint-mid); }
.calc-textlink:hover { border-color: var(--forest); }
/* value strip */
.calc-strip { max-width: 760px; margin: 1.4rem auto 0; text-align: center; }
.calc-strip-journey { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--forest); font-size: clamp(1rem, 2.6vw, 1.35rem); line-height: 1.4; }
.calc-strip-journey span { color: var(--gold); margin: 0 .25rem; }
.calc-strip-sub { font-size: .9rem; color: var(--gray); max-width: 560px; margin: .6rem auto 0; }
/* disclaimer */
.calc-disclaimer { max-width: 760px; margin: 1.2rem auto 0; font-size: .74rem; color: var(--gray); line-height: 1.55; text-align: center; }
/* ── Why Switch / comparison ── */
.compare { background: var(--cream); }
.cmp-table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.cmp-table th, .cmp-table td { padding: 15px 16px; text-align: center; font-size: 0.92rem; border-bottom: 1px solid var(--border); }
.cmp-table thead th { background: var(--cream); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray); }
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table .row-label { text-align: left; font-weight: 500; color: var(--ink); }
.cmp-table .us-col { background: rgba(74,140,99,0.07); font-weight: 700; color: var(--forest); }
.cmp-table thead .us-col { background: var(--forest); color: var(--white); }
.cmp-table .yes { color: var(--gold); font-weight: 700; }
.cmp-table .them { color: #955353; }
.split-grid { max-width: 1040px; margin: 2.5rem auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; align-items: stretch; }
.split-col { display: flex; flex-direction: column; }
.split-title { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.9rem; text-align: center; color: var(--navy); }
.split-col .cmp-table { flex: 1; }
.cmp-foot { max-width: 1040px; margin: 1.1rem auto 0; font-size: 0.78rem; color: var(--gray); text-align: center; }
@media (max-width: 760px) { .split-grid { grid-template-columns: 1fr; } .cmp-table th, .cmp-table td { padding: 12px 10px; font-size: 0.85rem; } }

/* ── FAQ ── */
.faq { background: var(--white); }
.faq-list { max-width: 800px; margin: 2.5rem auto 0; }
.faq-item { background: var(--warm); border: 1px solid var(--border); border-radius: 10px; margin-bottom: .8rem; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 1.1rem 1.3rem; font-weight: 700; font-size: 1rem; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--gold); font-weight: 700; flex-shrink: 0; line-height: 1; }
.faq-item[open] summary::after { content: '\2013'; }
.faq-item summary:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }
.faq-item .faq-a { padding: 0 1.3rem 1.1rem; font-size: 0.92rem; color: var(--gray); }

/* ── Contact/CTA ── */
.contact { background: var(--navy); color: var(--white); }
.contact h2 { color: var(--white); }
.contact .section-sub { color: #94a3b8; }
.contact-email-link { display: inline-block; color: var(--gold2); font-weight: 600; text-decoration: none; font-size: 1rem; margin-top: 0.5rem; }
.contact-email-link:hover { text-decoration: underline; }
.contact-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.contact-form { max-width: 560px; margin: 3rem auto 0; display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: #94a3b8; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 11px 14px;
  color: var(--white); font-size: 0.92rem;
  transition: border-color .2s;
  font-family: inherit;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #8a99ad; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold2);
  outline: 2px solid var(--gold2); outline-offset: 2px;
}
.form-error { display: none; text-align: center; color: #f3c1b5; font-size: 0.9rem; margin-top: .6rem; }
.form-group select option { background: var(--navy2); }
.form-group textarea { resize: vertical; min-height: 100px; }
.submit-btn {
  background: var(--btn); color: var(--white);
  border: none; border-radius: 10px;
  padding: 14px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: background .2s, transform .15s;
  margin-top: .5rem;
}
.submit-btn:hover { background: var(--btn-hover); transform: translateY(-2px); }

/* ── Footer ── */
footer {
  background: #080f1c;
  color: #94a3b8; font-size: 0.85rem;
  padding: 2.5rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--mint-mid); }
.footer-logo span { color: #94a3b8; }
footer p { color: #94a3b8; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: #94a3b8; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold2); }

/* ── Responsive ── */
@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(8,39,24,0.98);
    border-bottom: 1px solid rgba(200,232,212,0.15);
    padding: .5rem 0 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: .85rem 5%; font-size: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   Shared subpage components (added 2026-08 for multi-page SEO)
   ═══════════════════════════════════════════════════════════ */

/* ── Subpage hero (shorter than the homepage full-viewport hero) ── */
.page-hero {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy2) 60%, var(--forest) 100%);
  color: var(--white);
  padding: 150px 5% 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero-inner { position: relative; max-width: 800px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 900; color: var(--white);
  line-height: 1.18; margin-bottom: 1.1rem; letter-spacing: -0.3px;
}
.page-hero h1 em { color: var(--gold2); font-style: normal; }
.page-hero .page-lede {
  font-size: 1.12rem; color: #b8c9c0;
  max-width: 660px; margin: 0 auto 2.2rem;
}
.page-hero .hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Breadcrumbs ── */
.crumbs {
  max-width: 1100px; margin: 0 auto; padding: 1rem 0 0;
  font-size: 0.82rem; color: #94a3b8;
}
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; }
.crumbs li::after { content: '/'; margin-left: .4rem; opacity: .5; }
.crumbs li:last-child::after { content: ''; }
.crumbs a { color: var(--gold2); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* ── Long-form prose (blog articles & content sections) ── */
.prose { max-width: 720px; margin: 0 auto; }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-top: 2.8rem; margin-bottom: .2rem; line-height: 1.25;
}
.prose h3 { font-size: 1.12rem; font-weight: 700; margin-top: 1.9rem; margin-bottom: .1rem; }
.prose p, .prose li { font-size: 1.02rem; color: var(--gray); line-height: 1.75; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li + li { margin-top: .5rem; }
.prose a { color: var(--forest); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--btn-hover); }
.prose blockquote {
  border-left: 4px solid var(--gold); background: var(--warm);
  padding: 1.1rem 1.3rem; border-radius: 0 8px 8px 0;
  font-size: 1.02rem; color: var(--ink);
}
.prose table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.prose th, .prose td { padding: 11px 12px; border-bottom: 1px solid var(--border); text-align: left; }
.prose thead th { background: var(--cream); font-size: .8rem; text-transform: uppercase; letter-spacing: .5px; color: var(--gray); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ── Article meta ── */
.article-meta { font-size: .85rem; color: #94a3b8; margin-top: 1rem; }
.article-meta time { font-weight: 600; }

/* ── Blog index cards ── */
.post-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem; max-width: 1100px; margin: 3rem auto 0;
}
.post-card {
  background: var(--white); border: 1px solid var(--border);
  border-top: 4px solid var(--forest); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow);
  display: flex; flex-direction: column; text-align: left;
}
.post-card h2, .post-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; line-height: 1.3; margin-bottom: .6rem;
}
.post-card h2 a, .post-card h3 a { color: var(--ink); text-decoration: none; }
.post-card h2 a:hover, .post-card h3 a:hover { color: var(--forest); }
.post-card p { font-size: .92rem; color: var(--gray); flex: 1; }
.post-card .post-date { font-size: .78rem; color: var(--gray); text-transform: uppercase; letter-spacing: .5px; margin-bottom: .6rem; }
.post-card .post-more { margin-top: 1rem; font-size: .9rem; font-weight: 700; color: var(--forest); text-decoration: none; }
.post-card .post-more:hover { text-decoration: underline; }

/* ── Key-takeaways / callout box ── */
.takeaways {
  background: var(--mint); border: 1px solid var(--mint-mid);
  border-radius: var(--radius); padding: 1.5rem 1.7rem; margin: 2rem 0;
}
.takeaways h2, .takeaways h3, .takeaways .footer-head {
  font-family: 'DM Sans', sans-serif; font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--forest);
  margin: 0 0 .8rem;
}
.takeaways ul { list-style: none; padding: 0; }
.takeaways li { font-size: .95rem; color: var(--ink); display: flex; gap: 9px; line-height: 1.6; }
.takeaways li + li { margin-top: .55rem; }
.takeaways li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ── Inline CTA band inside content pages ── */
.cta-band { background: var(--navy); color: var(--white); text-align: center; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: #b8c9c0; max-width: 600px; margin: 0 auto; }
.cta-band .hero-actions { margin-top: 2rem; }

/* ── Related links ── */
.related { background: var(--cream); }
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem; max-width: 1100px; margin: 2.5rem auto 0;
}
.related-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.4rem;
  text-decoration: none; display: block; transition: transform .15s, box-shadow .2s;
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.related-card strong { display: block; color: var(--ink); font-size: 1rem; margin-bottom: .35rem; }
.related-card span { font-size: .87rem; color: var(--gray); }

/* ── Footer columns (replaces single-row footer) ── */
.footer-cols {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem; max-width: 1180px; margin: 0 auto; width: 100%;
  text-align: left; align-items: start;
}
.footer-cols h2, .footer-cols .footer-head {
  font-family: 'DM Sans', sans-serif; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--gold2);
  margin-bottom: .9rem;
}
.footer-cols ul { list-style: none; display: grid; gap: .55rem; }
.footer-cols a { color: #94a3b8; text-decoration: none; font-size: .87rem; }
.footer-cols a:hover { color: var(--gold2); }
.footer-about p { font-size: .85rem; line-height: 1.6; margin-top: .7rem; max-width: 300px; }
.footer-bottom {
  max-width: 1180px; margin: 2.2rem auto 0; padding-top: 1.4rem; width: 100%;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .82rem;
}
footer.site-footer { display: block; padding: 3rem 5% 2.2rem; }
@media (max-width: 860px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-cols { grid-template-columns: 1fr; } }
