/* =========================================================
   Homes of the Shoals — design tokens & base
   Warm Southern editorial: cream surfaces, deep navy ink,
   river-blue and tan accents.
   ========================================================= */

:root {
  /* Color */
  --cream: #f6f1e8;
  --cream-2: #efe7d6;
  --paper: #fbf7ee;
  --ink: #1f2a36;        /* deep navy charcoal */
  --ink-2: #3a4757;
  --muted: #6a7382;
  --line: #e3dccb;
  --line-2: #cfc6b2;
  --river: #2f5d6b;      /* muted river blue */
  --river-2: #3e7384;
  --moss: #6b7a52;       /* sage / moss accent */
  --gold: #c9a662;       /* tan/gold */
  --gold-2: #b3904c;

  /* Type */
  --font-display: 'Boska', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Satoshi', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --text-xs: 0.78rem;
  --text-sm: 0.9rem;
  --text-base: 1rem;
  --text-lg: 1.18rem;
  --text-xl: clamp(1.5rem, 1.1rem + 1.6vw, 2.1rem);
  --text-2xl: clamp(2.1rem, 1.4rem + 3.5vw, 3.6rem);
  --text-hero: clamp(2.6rem, 1.4rem + 6vw, 5.6rem);

  /* Space */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Layout */
  --maxw: 1200px;
  --radius: 6px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(31, 42, 54, 0.06), 0 1px 1px rgba(31, 42, 54, 0.04);
  --shadow: 0 10px 30px -12px rgba(31, 42, 54, 0.18), 0 2px 6px rgba(31, 42, 54, 0.05);
  --shadow-lg: 0 30px 60px -20px rgba(31, 42, 54, 0.25), 0 6px 14px rgba(31, 42, 54, 0.07);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--river); }
button { font: inherit; cursor: pointer; }

/* Focus */
:focus-visible {
  outline: 2px solid var(--river);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--cream);
  padding: 8px 12px; z-index: 1000; border-radius: 0 0 4px 0;
}
.skip:focus { left: 0; }

/* Container */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 4vw, 36px); }

/* =========================================================
   Buttons
========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
  text-align: center;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: #14202c; color: var(--cream); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary { background: var(--cream); color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--cream); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); padding: 10px 16px; }
.btn-ghost:hover { border-color: var(--ink); }
.btn-link { padding: 12px 4px; color: var(--ink); border-bottom: 1px solid currentColor; border-radius: 0; }
.btn-link:hover { color: var(--river); }
.btn.full { width: 100%; }

/* =========================================================
   Header
========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 241, 232, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); background: rgba(246, 241, 232, 0.94); }
.header-inner {
  display: flex; align-items: center; gap: var(--space-5);
  height: 72px;
}
.brand { color: var(--ink); flex: 0 0 auto; }
.brand:hover { color: var(--ink); }
.logo { height: 38px; width: auto; }

.primary-nav {
  display: none;
  flex: 1;
  gap: clamp(14px, 2.4vw, 28px);
  font-size: var(--text-sm);
  margin-left: var(--space-5);
}
.primary-nav a {
  color: var(--ink-2);
  position: relative;
  padding: 8px 0;
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform 0.2s ease;
}
.primary-nav a:hover::after { transform: scaleX(1); }

.header-cta { display: none; }

.menu-toggle {
  margin-left: auto;
  width: 42px; height: 42px;
  background: transparent; border: 1px solid var(--line-2);
  border-radius: 999px;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
}
.menu-toggle span {
  display: block; width: 16px; height: 1.5px;
  background: var(--ink); transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px 24px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  font-size: var(--text-base);
}
.mobile-nav a:last-child { border-bottom: none; margin-top: 12px; }

@media (min-width: 900px) {
  .menu-toggle { display: none; }
  .primary-nav { display: flex; }
  .header-cta { display: inline-flex; margin-left: auto; }
  .mobile-nav { display: none !important; }
}

/* =========================================================
   Hero
========================================================= */
.hero {
  position: relative;
  min-height: clamp(560px, 86vh, 820px);
  display: flex; align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 60%;
  filter: saturate(0.85) contrast(1.05) brightness(0.55);
}
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(15, 22, 30, 0.65) 0%, rgba(15, 22, 30, 0.55) 30%, rgba(15, 22, 30, 0.7) 70%, rgba(15, 22, 30, 0.92) 100%),
    linear-gradient(95deg, rgba(15, 22, 30, 0.85) 0%, rgba(15, 22, 30, 0.7) 40%, rgba(15, 22, 30, 0.25) 75%, rgba(15, 22, 30, 0) 100%);
}
.hero-content {
  padding: clamp(48px, 12vh, 120px) clamp(20px, 4vw, 36px) clamp(40px, 8vh, 80px);
  color: var(--cream);
  max-width: var(--maxw);
  position: relative;
}
.hero-content > * {
  max-width: 820px;
}
.hero-stats { max-width: 100% !important; }
.hero-content .eyebrow { color: rgba(246, 241, 232, 0.85); }
.hero-content h1 {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: var(--space-4) 0 var(--space-5);
  color: var(--cream);
  max-width: 16ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}
.hero-content .lede,
.hero-content .eyebrow {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}
.hero-content h1 em {
  font-style: italic; font-weight: 500;
  color: var(--gold);
}
.hero-content .lede {
  max-width: 56ch;
  font-size: var(--text-lg);
  color: rgba(246, 241, 232, 0.92);
  margin: 0 0 var(--space-6);
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center;
  margin-bottom: var(--space-7);
}
.hero-ctas .btn-primary { background: var(--cream); color: var(--ink); }
.hero-ctas .btn-primary:hover { background: var(--gold); color: var(--ink); }
.hero-ctas .btn-secondary { background: transparent; color: var(--cream); border-color: rgba(246, 241, 232, 0.6); }
.hero-ctas .btn-secondary:hover { background: var(--cream); color: var(--ink); }
.hero-ctas .btn-link { color: var(--cream); border-color: rgba(246, 241, 232, 0.5); }
.hero-ctas .btn-link:hover { color: var(--gold); }

.hero-stats {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-5);
  border-top: 1px solid rgba(246, 241, 232, 0.2);
  padding-top: var(--space-5);
}
.hero-stats li { display: flex; flex-direction: column; gap: 2px; color: rgba(246, 241, 232, 0.85); font-size: var(--text-sm); }
.hero-stats strong { font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg); color: var(--cream); }

/* =========================================================
   Section primitives
========================================================= */
.section {
  padding: clamp(64px, 10vw, 128px) 0;
}
.section.search-section { padding-top: clamp(72px, 10vw, 112px); padding-bottom: clamp(48px, 8vw, 88px); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--river);
  font-weight: 500;
  margin: 0 0 var(--space-3);
}
.eyebrow.small { letter-spacing: 0.14em; }

h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-2xl);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 var(--space-4);
  color: var(--ink);
  max-width: 24ch;
}
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-xl);
  line-height: 1.15;
  margin: 0 0 var(--space-3);
  color: var(--ink);
}
h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  margin: 0 0 var(--space-3);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
p { margin: 0 0 var(--space-4); color: var(--ink-2); }
.section-head { max-width: 760px; margin: 0 0 var(--space-7); }
.section-head .section-sub {
  font-size: var(--text-lg);
  color: var(--ink-2);
  max-width: 60ch;
}
.section-head.split {
  display: grid; gap: var(--space-5);
  grid-template-columns: 1fr;
  align-items: end;
  max-width: 100%;
  margin-bottom: var(--space-7);
}
@media (min-width: 800px) {
  .section-head.split { grid-template-columns: 1fr 1fr; gap: var(--space-7); }
  .section-head.split .section-sub { margin-bottom: 6px; }
}

/* =========================================================
   Search / IDX mock
========================================================= */
.search-section { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.search-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  padding: clamp(20px, 3vw, 28px);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
@media (min-width: 700px) {
  .search-card {
    grid-template-columns: 1.4fr 1fr 1fr 0.7fr 0.7fr auto;
    align-items: end;
  }
}
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.search-card .field input,
.search-card .field select { background: var(--paper); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(31, 42, 54, 0.08);
}
.field textarea { resize: vertical; min-height: 110px; }

.search-submit { padding: 12px 22px; }
.idx-meta {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: var(--muted);
  letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 8px;
}
.idx-meta .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 166, 98, 0.18);
}
.idx-note {
  margin-top: var(--space-4);
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 3px solid var(--river);
  border-radius: 8px;
  font-size: var(--text-sm);
  color: var(--ink-2);
}

/* =========================================================
   Neighborhoods
========================================================= */
.neighborhoods { background: var(--cream); }
.neighborhood-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 700px) {
  .neighborhood-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .neighborhood-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
  }
  .neighborhood.feature {
    grid-column: span 2; grid-row: span 2;
  }
}

.neighborhood {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.neighborhood:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--line-2); }
.neighborhood img {
  width: 100%; height: 220px; object-fit: cover;
  transition: transform 0.6s ease;
}
.neighborhood:hover img { transform: scale(1.03); }
.neighborhood.feature img { height: 100%; min-height: 360px; }

.neighborhood .card-body { padding: var(--space-5); display: flex; flex-direction: column; gap: 6px; flex: 1; }
.neighborhood h3 { margin-bottom: 4px; font-size: var(--text-xl); }
.neighborhood p { color: var(--ink-2); font-size: var(--text-base); margin-bottom: var(--space-3); flex: 1; }

.neighborhood.feature {
  flex-direction: row;
  align-items: stretch;
}
.neighborhood.feature img { width: 60%; }
.neighborhood.feature .card-body {
  width: 40%;
  padding: clamp(20px, 3vw, 36px);
  justify-content: center;
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream-2) 100%);
}
.neighborhood.feature h3 { font-size: clamp(1.6rem, 1.2rem + 1vw, 2.2rem); }
@media (max-width: 999px) {
  .neighborhood.feature { flex-direction: column; }
  .neighborhood.feature img { width: 100%; min-height: 240px; }
  .neighborhood.feature .card-body { width: 100%; }
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--text-sm); font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.18s ease, border-color 0.18s ease, gap 0.18s ease;
}
.link-arrow:hover { color: var(--river); border-color: var(--river); gap: 10px; }

/* =========================================================
   Valuation
========================================================= */
.valuation {
  background: var(--ink);
  color: var(--cream);
}
.valuation .eyebrow { color: var(--gold); }
.valuation h2 { color: var(--cream); max-width: 18ch; }
.valuation p { color: rgba(246, 241, 232, 0.85); }
.valuation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: start;
}
@media (min-width: 900px) {
  .valuation-grid { grid-template-columns: 1.05fr 1fr; gap: clamp(48px, 6vw, 80px); }
}
.check-list {
  list-style: none; padding: 0; margin: var(--space-5) 0 0;
  display: grid; gap: 10px;
}
.check-list li {
  position: relative; padding-left: 28px;
  color: rgba(246, 241, 232, 0.92);
  font-size: var(--text-base);
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 16px; height: 10px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.valuation-card {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: var(--space-4);
}
.valuation-card h3 { margin-bottom: 0; }
.field-row {
  display: grid; grid-template-columns: 1fr; gap: var(--space-4);
}
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form-success {
  margin: 0; padding: 12px 14px;
  background: rgba(107, 122, 82, 0.12); color: #354227;
  border: 1px solid rgba(107, 122, 82, 0.3);
  border-radius: 8px; font-size: var(--text-sm);
}
.form-fine { font-size: var(--text-xs); color: var(--muted); margin: 0; }

/* =========================================================
   First-time buyers
========================================================= */
.first-time { background: var(--paper); }
.guides {
  display: grid; gap: var(--space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .guides { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .guides { grid-template-columns: repeat(4, 1fr); } }

.guide {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-3);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.guide:hover { transform: translateY(-2px); border-color: var(--gold); }
.guide .step {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.guide h3 { font-size: var(--text-lg); margin-bottom: 4px; }
.guide p { font-size: var(--text-base); flex: 1; margin-bottom: var(--space-3); }

.content-callout {
  margin-top: var(--space-7);
  padding: clamp(24px, 3vw, 40px);
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: var(--space-4);
  align-items: flex-start;
}
.content-callout h3 { color: var(--cream); margin: 0 0 var(--space-2); }
.content-callout p { color: rgba(246, 241, 232, 0.85); margin: 0; max-width: 60ch; }
.content-callout .eyebrow { color: var(--gold); }
.content-callout .btn-secondary {
  background: transparent; color: var(--cream); border-color: rgba(246, 241, 232, 0.6);
}
.content-callout .btn-secondary:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
@media (min-width: 800px) {
  .content-callout {
    flex-direction: row; align-items: center; justify-content: space-between;
  }
  .content-callout > div { max-width: 65%; }
}

/* =========================================================
   About
========================================================= */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1.1fr; gap: clamp(48px, 6vw, 88px); }
}
.about-portrait {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.about-portrait figcaption {
  position: absolute; bottom: 14px; left: 16px;
  padding: 6px 10px; background: rgba(31, 42, 54, 0.7); color: var(--cream);
  font-size: var(--text-xs); letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 4px;
}

.creds {
  list-style: none; padding: 0;
  margin: var(--space-5) 0 var(--space-6);
  display: grid; gap: var(--space-4);
}
.creds li { display: flex; flex-direction: column; gap: 2px; padding-bottom: var(--space-4); border-bottom: 1px solid var(--line); }
.creds li:last-child { border-bottom: none; }
.creds strong { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600; }
.creds span { font-size: var(--text-sm); color: var(--muted); }

/* =========================================================
   Quotes
========================================================= */
.quotes { background: var(--cream-2); }
.example-note {
  font-size: var(--text-sm); color: var(--muted); font-style: italic;
}
.quote-grid {
  display: grid; gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .quote-grid { grid-template-columns: repeat(3, 1fr); } }

.quote-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin: 0;
  display: flex; flex-direction: column; gap: var(--space-4);
  position: relative;
}
.quote-card::before {
  content: "\201C";
  position: absolute; top: 8px; left: 18px;
  font-family: var(--font-display);
  font-size: 64px; line-height: 1;
  color: var(--gold); opacity: 0.6;
}
.quote-card blockquote {
  margin: 24px 0 0; padding: 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
}
.quote-card figcaption {
  font-size: var(--text-sm); color: var(--ink-2);
  display: flex; align-items: center; gap: 8px;
  margin-top: auto;
}
.sample-tag {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--cream); border: 1px solid var(--line-2);
  padding: 2px 6px; border-radius: 999px; color: var(--muted);
}

/* =========================================================
   Contact
========================================================= */
.contact { background: var(--paper); }
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-7);
  align-items: start;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.1fr; gap: clamp(48px, 6vw, 88px); }
}
.contact-info {
  list-style: none; padding: 0; margin: var(--space-5) 0 0;
  display: grid; gap: var(--space-4);
}
.contact-info li {
  display: grid; grid-template-columns: 96px 1fr; gap: var(--space-4);
  align-items: baseline;
  padding-bottom: var(--space-3); border-bottom: 1px solid var(--line);
}
.contact-info .label {
  font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.contact-info a { color: var(--ink); border-bottom: 1px solid var(--line-2); }
.contact-info a:hover { color: var(--river); border-color: var(--river); }
.contact-info em { color: var(--muted); font-style: italic; font-size: var(--text-xs); }

.contact-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  display: flex; flex-direction: column; gap: var(--space-4);
  box-shadow: var(--shadow);
}
.contact-card h3 { margin-bottom: 0; }

/* =========================================================
   Footer
========================================================= */
.site-footer {
  background: #14202c;
  color: rgba(246, 241, 232, 0.78);
  padding: clamp(48px, 8vw, 80px) 0 var(--space-6);
  font-size: var(--text-sm);
}
.footer-grid {
  display: grid; gap: var(--space-7);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-7);
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--space-6); }
}
.footer-brand .logo { color: var(--cream); margin-bottom: var(--space-4); }
.footer-blurb { color: rgba(246, 241, 232, 0.7); max-width: 38ch; line-height: 1.6; }
.footer-col h4 { color: var(--cream); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-col a { color: rgba(246, 241, 232, 0.78); }
.footer-col a:hover { color: var(--gold); }
.cities { columns: 1; }
@media (min-width: 500px) { .cities { columns: 2; column-gap: 16px; } }

.footer-bottom {
  padding-top: var(--space-5);
  border-top: 1px solid rgba(246, 241, 232, 0.12);
  display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: space-between;
  font-size: var(--text-xs);
  color: rgba(246, 241, 232, 0.55);
}
.footer-bottom .legal { font-style: italic; }

/* =========================================================
   Reduced motion
========================================================= */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
