/* ============================================================
   SOUTHERN ESCAPES · Quiet Luxury Editorial
   Shared design system
   ============================================================ */

:root {
  --cream: #F7F4EE;
  --cream-deep: #EFEAE0;
  --ink: #1B1B18;
  --ink-soft: #44443E;
  --ink-quiet: #74746C;
  --ink-faint: #A3A299;
  --green: #1E2A23;
  --green-soft: #2C3B31;
  --gold: #B89B5E;
  --gold-soft: rgba(184, 155, 94, 0.35);
  --surface: #FFFFFF;
  --hairline: rgba(27, 27, 24, 0.14);
  --hairline-light: rgba(247, 244, 238, 0.22);
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.65;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 700px) {
  .container { padding: 0 22px; }
}

/* ── Typography ─────────────────────────────── */

h1, h2, h3 { font-family: var(--serif); font-weight: 300; color: var(--ink); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.eyebrow.ink { color: var(--ink-quiet); }

.headline-xl {
  font-size: clamp(42px, 6.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
}

.headline-lg {
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.headline-md {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
  margin-bottom: 16px;
}

.headline-xl em, .headline-lg em, .headline-md em { font-style: italic; font-weight: 300; }

.lede {
  font-family: var(--serif);
  font-size: clamp(19px, 1.8vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 640px;
}

.body-copy p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.gold-rule {
  width: 56px;
  height: 1px;
  background: var(--gold);
  border: none;
  margin: 0 0 28px;
}

/* ── Top bar + Nav ──────────────────────────── */

.top-bar {
  background: var(--green);
  color: rgba(247, 244, 238, 0.78);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 16px;
}

nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}

nav.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.wordmark {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.wordmark span {
  display: block;
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-top: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); border-color: var(--gold); }

.nav-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--green);
  border: 1px solid var(--green);
  padding: 12px 22px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.nav-cta:hover { background: transparent; color: var(--green); border-color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 0;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--hairline);
    padding: 8px 22px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 0; border-bottom: 1px solid var(--hairline); width: 100%; }
  .nav-links .nav-cta-li a.nav-cta { border: 1px solid var(--green); text-align: center; margin-top: 16px; padding: 14px 22px; }
  .nav-toggle { display: block; }
  .nav-cta.desktop-only { display: none; }
}

@media (min-width: 921px) {
  .nav-links .nav-cta-li { display: none; }
}

/* ── Buttons ────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 16px 32px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid var(--green);
}

.btn-solid { background: var(--green); color: var(--cream); }
.btn-solid:hover { background: var(--green-soft); border-color: var(--gold); color: #fff; }

.btn-line { background: transparent; color: var(--green); }
.btn-line:hover { border-color: var(--gold); color: var(--gold); }

.btn-light { background: transparent; color: var(--cream); border-color: rgba(247,244,238,0.5); }
.btn-light:hover { border-color: var(--gold); color: var(--gold); }

.text-link {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  transition: color 0.25s, border-color 0.25s;
}

.text-link:hover { color: var(--gold); border-color: var(--gold); }

/* ── Sections ───────────────────────────────── */

section { padding: 104px 0; }
@media (max-width: 700px) { section { padding: 64px 0; } }

.section-rule { border: none; border-top: 1px solid var(--hairline); margin: 0; }

.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .gold-rule { margin-left: auto; margin-right: auto; }

/* ── Hero ───────────────────────────────────── */

.hero {
  background: var(--green);
  color: var(--cream);
  padding: 130px 0 110px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 900px 480px at 78% 18%, rgba(184, 155, 94, 0.10) 0%, transparent 65%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero .eyebrow { color: var(--gold); border-bottom: 1px solid var(--gold-soft); display: inline-block; padding-bottom: 12px; }

.hero h1 { color: var(--cream); }

.hero .lede { color: rgba(247, 244, 238, 0.82); margin-bottom: 44px; }

.hero-ctas { display: flex; gap: 18px; flex-wrap: wrap; }

@media (max-width: 700px) { .hero { padding: 80px 0 72px; } }

/* ── Photo placeholders ─────────────────────── */

.photo-block {
  position: relative;
  background: linear-gradient(155deg, var(--green-soft) 0%, var(--green) 70%, #141d18 100%);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.photo-block.tone-stone { background: linear-gradient(155deg, #6f6354 0%, #4a4238 65%, #2c2822 100%); }
.photo-block.tone-haze { background: linear-gradient(155deg, #5d6b60 0%, #3b4a40 65%, #232d27 100%); }
.photo-block.tone-sand { background: linear-gradient(155deg, #9a8a6c 0%, #6e6048 65%, #3e362a 100%); }

.photo-block .photo-caption {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.55);
  padding: 14px 16px;
}

.photo-block img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ratio-45 { aspect-ratio: 4 / 5; }
.ratio-43 { aspect-ratio: 4 / 3; }
.ratio-32 { aspect-ratio: 3 / 2; }
.ratio-169 { aspect-ratio: 16 / 9; }

/* ── Manifesto ──────────────────────────────── */

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(26px, 2.8vw, 34px);
  line-height: 1.3;
  color: var(--ink);
  border-left: 1px solid var(--gold);
  padding-left: 30px;
}

.signature {
  margin-top: 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
}

.signature span {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-top: 8px;
}

@media (max-width: 860px) {
  .manifesto-grid { grid-template-columns: 1fr; gap: 44px; }
}

/* ── Tool cards ─────────────────────────────── */

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1020px) {
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
}

.tool-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  padding: 44px 36px 40px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}

.tool-card:hover { border-color: var(--gold); transform: translateY(-3px); }

.tool-number {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 26px;
}

.tool-card h3 {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 14px;
}

.tool-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 28px;
  flex: 1;
}

@media (max-width: 860px) {
  .tools-grid { grid-template-columns: 1fr; }
}

/* ── Issue teaser ───────────────────────────── */

.issue-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.issue-meta {
  display: flex;
  gap: 36px;
  padding: 20px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  margin: 30px 0 34px;
}

.issue-meta div {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

.issue-meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 5px;
}

@media (max-width: 860px) {
  .issue-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Bio strip ──────────────────────────────── */

.bio-strip { background: var(--green); color: var(--cream); }

.bio-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: center;
}

.bio-strip .eyebrow { color: var(--gold); }
.bio-strip h2 { color: var(--cream); }

.bio-strip p {
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(247, 244, 238, 0.82);
  margin-bottom: 18px;
  max-width: 640px;
}

.bio-credentials {
  list-style: none;
  margin-top: 28px;
  border-top: 1px solid var(--hairline-light);
}

.bio-credentials li {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(247, 244, 238, 0.78);
  padding: 13px 0;
  border-bottom: 1px solid var(--hairline-light);
}

.bio-credentials li strong {
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 10.5px;
  display: block;
  margin-bottom: 3px;
  color: var(--gold);
}

@media (max-width: 860px) {
  .bio-grid { grid-template-columns: 1fr; gap: 40px; }
  .bio-grid .photo-block { max-width: 320px; }
}

/* ── Newsletter ─────────────────────────────── */

.newsletter { text-align: center; }

.newsletter .section-head { margin-bottom: 40px; }

.embed-slot {
  max-width: 520px;
  margin: 0 auto;
}

.signup-form {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 8px;
  text-align: left;
}

.signup-form input[type="email"], .signup-form input[type="text"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  padding: 12px 0;
}

.signup-form input::placeholder { color: var(--ink-faint); }

.signup-form button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 12px 0 12px 24px;
  transition: color 0.25s;
}

.signup-form button:hover { color: var(--gold); }

.fine-print {
  font-size: 11.5px;
  color: var(--ink-quiet);
  letter-spacing: 0.03em;
  margin-top: 18px;
}

/* ── Forms (calculator, gates) ──────────────── */

.card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  padding: 52px;
}

@media (max-width: 700px) { .card { padding: 30px 22px; } }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

@media (max-width: 700px) { .field-row { grid-template-columns: 1fr; gap: 24px; margin-bottom: 24px; } }

.field label {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-bottom: 10px;
}

.field select,
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"] {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--hairline);
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 300;
  color: var(--ink);
  padding: 14px 16px;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.25s;
}

.field select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2374746C'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.field select:focus, .field input:focus { border-color: var(--gold); }

.field .hint { font-size: 12px; color: var(--ink-quiet); margin-top: 8px; letter-spacing: 0.02em; }

.choice-row { display: flex; gap: 12px; flex-wrap: wrap; }

.choice {
  flex: 1;
  min-width: 150px;
  border: 1px solid var(--hairline);
  background: var(--cream);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--ink-soft);
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.04em;
  transition: all 0.25s;
  user-select: none;
}

.choice:hover { border-color: var(--gold); }

.choice.selected {
  background: var(--green);
  border-color: var(--green);
  color: var(--cream);
}

.check-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-soft);
  cursor: pointer;
  user-select: none;
}

.check-line input { accent-color: var(--green); width: 16px; height: 16px; cursor: pointer; }

/* ── Calculator results ─────────────────────── */

.dividend-headline {
  text-align: center;
  padding-bottom: 40px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--hairline);
}

.dividend-figure {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 84px);
  font-weight: 300;
  line-height: 1;
  color: var(--green);
  margin: 18px 0 14px;
}

.dividend-context {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-quiet);
}

.results-body { position: relative; }

.results-detail { transition: filter 0.4s ease; }
.results-detail.blurred { filter: blur(9px); pointer-events: none; user-select: none; }

.gate-panel {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 440px);
  background: var(--surface);
  border: 1px solid var(--gold);
  padding: 40px 36px;
  text-align: center;
  z-index: 5;
  display: none;
}

.gate-panel.active { display: block; }

.gate-panel h3 { font-size: 26px; font-weight: 400; margin-bottom: 10px; }
.gate-panel > p { font-size: 14px; color: var(--ink-soft); margin-bottom: 24px; }
.gate-panel .field { margin-bottom: 14px; text-align: left; }
.gate-panel .btn { width: 100%; margin-top: 8px; }
.gate-panel .fine-print { margin-top: 16px; }

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 40px;
}

@media (max-width: 700px) { .stat-grid { grid-template-columns: 1fr; } }

.stat-card {
  background: var(--cream);
  border-top: 1px solid var(--gold);
  padding: 24px 26px;
}

.stat-card.deep { background: var(--green); }
.stat-card.deep h4 { color: var(--gold); }
.stat-card.deep .stat-value { color: var(--cream); }

.stat-card h4 {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-bottom: 10px;
}

.stat-value {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
}

.ledger-table { border-top: 1px solid var(--hairline); }

.ledger-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
  color: var(--ink-soft);
}

.ledger-row .amount { font-weight: 500; color: var(--ink); white-space: nowrap; }

.ledger-row.total {
  border-bottom: 1px solid var(--gold);
  font-weight: 500;
  color: var(--ink);
}

.ledger-row.total .amount { font-family: var(--serif); font-size: 21px; }

.breakdown-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}

@media (max-width: 700px) { .breakdown-cols { grid-template-columns: 1fr; } }

.breakdown-col h5 {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.note-box {
  background: var(--cream);
  border-left: 1px solid var(--gold);
  padding: 22px 26px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-top: 36px;
}

.disclaimer-block {
  max-width: 760px;
  margin: 56px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--ink-quiet);
}

/* ── Quiz ───────────────────────────────────── */

.quiz-shell { max-width: 720px; margin: 0 auto; }

.progress-track {
  height: 2px;
  background: var(--hairline);
  margin-bottom: 44px;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.4s ease;
}

.screen { display: none; animation: rise 0.4s ease; }
.screen.active { display: block; }

@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.question-text {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 32px;
}

.answer-options { display: flex; flex-direction: column; gap: 12px; }

.answer-option {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s;
}

.answer-option:hover { border-color: var(--gold); transform: translateX(3px); }
.answer-option.selected { border-color: var(--green); background: var(--green); }
.answer-option.selected .answer-label { color: var(--cream); }
.answer-option.selected .answer-letter { color: var(--gold); border-color: var(--gold); }

.answer-letter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.answer-label { font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); transition: color 0.25s; }

.quiz-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 36px; }
.quiz-nav .btn { flex: 0 0 auto; }
.quiz-nav .btn-solid { flex: 1; }

.btn:disabled { opacity: 0.35; cursor: not-allowed; }

.result-card-main {
  background: var(--surface);
  border: 1px solid var(--gold);
  padding: 48px 44px;
  margin-bottom: 24px;
}

@media (max-width: 700px) { .result-card-main { padding: 32px 24px; } }

.result-name {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  margin: 8px 0 18px;
}

.result-desc { font-size: 15px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 26px; }

.result-markets {
  border-left: 1px solid var(--gold);
  padding: 4px 0 4px 22px;
  margin-bottom: 20px;
}

.result-markets .label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.result-markets .list { font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); }

.result-secondary {
  background: var(--cream-deep);
  border: 1px solid var(--hairline);
  padding: 26px 28px;
  margin-bottom: 24px;
}

.result-secondary h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.result-secondary p { font-size: 14px; line-height: 1.7; color: var(--ink-soft); }

.cta-panel {
  background: var(--green);
  color: var(--cream);
  padding: 36px 32px;
  text-align: center;
}

.cta-panel p { font-size: 14.5px; line-height: 1.7; color: rgba(247,244,238,0.85); margin-bottom: 22px; }

/* ── Coverage map embed (about) ─────────────── */

.coverage-embed { margin: 8px 0 56px; border: 1px solid var(--hairline); background: #E7E1D2; }
.coverage-embed iframe { width: 100%; aspect-ratio: 5 / 4; border: 0; display: block; }
/* Interactive map is desktop-built; on phones we fall back to the clean text directory below */
@media (max-width: 760px) { .coverage-embed { display: none; } }

/* ── Market list (about) ────────────────────── */

.market-list { border-top: 1px solid var(--hairline); }

.market-item {
  display: grid;
  grid-template-columns: 64px 1fr 2fr;
  gap: 36px;
  align-items: baseline;
  padding: 30px 0;
  border-bottom: 1px solid var(--hairline);
}

.market-item .index {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
}

.market-item h3 { font-size: 27px; font-weight: 400; line-height: 1.15; }

.market-item p { font-size: 14.5px; line-height: 1.7; color: var(--ink-soft); }

@media (max-width: 700px) {
  .market-item { grid-template-columns: 1fr; gap: 8px; }
}

/* ── Journal issues list ────────────────────── */

.issue-list { border-top: 1px solid var(--hairline); }

.issue-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 32px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid var(--hairline);
  text-decoration: none;
  color: var(--ink);
  transition: opacity 0.25s;
}

.issue-row:hover { opacity: 0.7; }

.issue-row .issue-no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--gold);
}

.issue-row h3 { font-size: 24px; font-weight: 400; line-height: 1.2; margin-bottom: 4px; }
.issue-row p { font-size: 13.5px; color: var(--ink-quiet); }

.issue-row .read {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

@media (max-width: 700px) {
  .issue-row { grid-template-columns: 1fr; gap: 6px; }
}

/* ── Deep CTA band ──────────────────────────── */

.cta-band {
  background: var(--green);
  color: var(--cream);
  text-align: center;
}

.cta-band h2 { color: var(--cream); }
.cta-band .lede { color: rgba(247,244,238,0.8); margin: 0 auto 40px; }
.cta-band .eyebrow { color: var(--gold); }

/* ── Footer ─────────────────────────────────── */

footer.site-footer {
  background: var(--green);
  color: var(--cream);
  padding: 80px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--hairline-light);
}

.footer-grid .wordmark { color: var(--cream); }
.footer-grid .wordmark span { color: rgba(247,244,238,0.55); }

.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(247, 244, 238, 0.82);
  margin-top: 22px;
  max-width: 340px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }

.footer-col a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(247, 244, 238, 0.85);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-col a:hover { color: var(--gold); }

.footer-affiliation {
  font-size: 12.5px;
  line-height: 1.75;
  color: rgba(247, 244, 238, 0.62);
  max-width: 820px;
  margin: 36px 0 0;
}

.footer-disclaimer {
  font-size: 11px;
  line-height: 1.7;
  color: rgba(247, 244, 238, 0.45);
  max-width: 820px;
  margin: 18px 0 0;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-light);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(247, 244, 238, 0.5);
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ── Utility ────────────────────────────────── */

.hidden { display: none !important; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* ============================================================
   LOCALS ONLY · community guides + Southern Escapes Score
   ============================================================ */

/* Hub: region grid */
.region-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 860px) { .region-grid { grid-template-columns: 1fr; } }

.region-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  padding: 0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.3s, transform 0.3s;
  overflow: hidden;
}
.region-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.region-card .photo-block { aspect-ratio: 16 / 10; }
.region-card .region-body { padding: 30px 32px 34px; display: flex; flex-direction: column; flex: 1; }
.region-card .eyebrow { margin-bottom: 14px; }
.region-card h3 { font-size: 28px; font-weight: 400; line-height: 1.12; margin-bottom: 12px; }
.region-card p { font-size: 14.5px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 22px; flex: 1; }
.region-card .region-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid var(--hairline); padding-top: 16px;
}
.region-card .region-meta .who {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-quiet);
}
.region-card .region-meta .se-badge { display: inline-flex; align-items: baseline; gap: 4px; }
.region-card .region-meta .se-badge b {
  font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--green); line-height: 1;
}
.region-card .region-meta .se-badge span {
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
}

/* Community profile block */
.community { padding: 64px 0; border-bottom: 1px solid var(--hairline); }
.community:first-of-type { padding-top: 28px; }
.community-head {
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; margin-bottom: 30px;
}
@media (max-width: 760px) { .community-head { grid-template-columns: 1fr; gap: 26px; } }
.community-head .name-block .index {
  font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--gold); margin-bottom: 8px;
}
.community-head h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.08; margin-bottom: 14px; }
.community-head .positioning {
  font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.5;
  color: var(--ink-soft); max-width: 560px;
}

/* Southern Escapes Score meter */
.se-score { min-width: 248px; border: 1px solid var(--hairline); border-top: 2px solid var(--gold); padding: 22px 24px; background: var(--cream); }
.se-score .score-top { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; }
.se-score .score-label { font-size: 9.5px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-quiet); max-width: 96px; line-height: 1.5; }
.se-score .score-figure { font-family: var(--serif); font-weight: 300; color: var(--green); line-height: 1; }
.se-score .score-figure b { font-size: 50px; font-weight: 300; }
.se-score .score-figure span { font-size: 17px; color: var(--ink-quiet); }
.se-pillar { margin-bottom: 9px; }
.se-pillar:last-child { margin-bottom: 0; }
.se-pillar .p-row { display: flex; justify-content: space-between; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-quiet); margin-bottom: 4px; }
.se-pillar .p-row b { color: var(--ink); font-weight: 600; }
.se-pillar .track { height: 3px; background: var(--hairline); }
.se-pillar .track i { display: block; height: 100%; background: var(--gold); }

/* Community body sections */
.community-body { display: grid; grid-template-columns: 1fr; gap: 0; }
.community-body p { font-size: 16px; line-height: 1.82; color: var(--ink-soft); margin-bottom: 18px; max-width: 760px; text-align: justify; -webkit-hyphens: auto; hyphens: auto; }
.c-sub {
  font-family: var(--sans); font-size: 10.5px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin: 26px 0 12px;
}
.fast-facts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--hairline); border: 1px solid var(--hairline); margin: 24px 0 8px;
}
@media (max-width: 680px) { .fast-facts { grid-template-columns: 1fr 1fr; } }
.fast-facts .ff { background: var(--surface); padding: 16px 18px; }
.fast-facts .ff .k { font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-quiet); margin-bottom: 6px; }
.fast-facts .ff .v { font-family: var(--serif); font-size: 18px; color: var(--ink); line-height: 1.2; }
.locals-take {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--hairline); margin-top: 22px;
}
@media (max-width: 680px) { .locals-take { grid-template-columns: 1fr; } }
.locals-take .col { padding: 22px 26px; }
.locals-take .col.pro { border-right: 1px solid var(--hairline); }
@media (max-width: 680px) { .locals-take .col.pro { border-right: none; border-bottom: 1px solid var(--hairline); } }
.locals-take h5 { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 12px; }
.locals-take .col.pro h5 { color: var(--green); }
.locals-take .col.con h5 { color: var(--ink-quiet); }
.locals-take ul { list-style: none; }
.locals-take li { font-size: 14px; line-height: 1.6; color: var(--ink-soft); padding-left: 16px; position: relative; margin-bottom: 9px; }
.locals-take li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; background: var(--gold); }

/* Region scorecard table */
.scorecard { border-top: 1px solid var(--ink); margin-top: 8px; }
.scorecard .sc-row {
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: baseline;
  padding: 15px 0; border-bottom: 1px solid var(--hairline);
}
.scorecard .sc-row .nm { font-family: var(--serif); font-size: 19px; color: var(--ink); }
.scorecard .sc-row .nm small { font-family: var(--sans); font-size: 11px; letter-spacing: 0.08em; color: var(--ink-quiet); text-transform: uppercase; margin-left: 10px; }
.scorecard .sc-row .sc { font-family: var(--serif); font-size: 22px; color: var(--green); white-space: nowrap; }
.scorecard .sc-row .sc span { font-size: 13px; color: var(--ink-quiet); }

/* Score method note */
.method-note { background: var(--cream-deep); border-left: 1px solid var(--gold); padding: 20px 26px; margin: 8px 0 0; font-size: 13px; line-height: 1.7; color: var(--ink-soft); }
.method-note strong { color: var(--ink); }

/* Locals gate band (PDF capture) + inline subscribe, shared */
.gate-band { background: var(--green); color: var(--cream); padding: 40px 0; }
.gate-band .inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.gate-band .eyebrow { color: var(--gold); margin-bottom: 8px; }
.gate-band h3 { font-size: 26px; font-weight: 400; color: var(--cream); margin: 6px 0 8px; }
.gate-band p { font-size: 13.5px; line-height: 1.6; color: rgba(247,244,238,0.78); }
.gate-band form { border-bottom: 1px solid rgba(247,244,238,0.6); display: flex; padding-bottom: 6px; }
.gate-band input[type="email"] { flex: 1; background: transparent; border: none; outline: none; font-family: var(--sans); font-size: 14px; font-weight: 300; color: var(--cream); padding: 10px 0; }
.gate-band input::placeholder { color: rgba(247,244,238,0.45); }
.gate-band button { background: transparent; border: none; cursor: pointer; font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); padding: 10px 0 10px 18px; white-space: nowrap; }
.gate-band .fine { font-size: 11px; color: rgba(247,244,238,0.5); margin-top: 12px; }
@media (max-width: 760px) { .gate-band .inner { grid-template-columns: 1fr; gap: 22px; padding: 0 22px; } }

.subscribe-inline { background: var(--cream-deep); border: 1px solid var(--hairline); border-top: 1px solid var(--gold); padding: 38px 36px; margin: 8px 0 0; text-align: center; }
.subscribe-inline h3 { font-size: 26px; font-weight: 400; margin-bottom: 8px; }
.subscribe-inline p { font-size: 14px; color: var(--ink-soft); margin-bottom: 20px; }
.subscribe-inline form { display: flex; max-width: 420px; margin: 0 auto; border-bottom: 1px solid var(--ink); padding-bottom: 6px; text-align: left; }
.subscribe-inline input[type="email"] { flex: 1; background: transparent; border: none; outline: none; font-family: var(--sans); font-size: 14px; font-weight: 300; color: var(--ink); padding: 10px 0; }
.subscribe-inline input::placeholder { color: var(--ink-faint); }
.subscribe-inline button { background: transparent; border: none; cursor: pointer; font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); padding: 10px 0 10px 18px; }
.subscribe-inline button:hover { color: var(--gold); }
