/* ==========================================================================
   Memphis Justice of the Peace — Design System
   Lane: "Garden Chapel" — warm parchment cream + garden green + dusty magnolia
   + cathedral gold + courthouse ink-blue. Second light-palette in the OR
   portfolio after Wallace (which is kraft-paper rustic). This one is
   romantic-formal-garden: think English boxwood + magnolia + ink-stamp authority.
   Type: Marcellus (Roman all-caps display) + EB Garamond (book body) + Inter (sans).
   ========================================================================== */

:root {
  /* Palette — parchment / garden / magnolia / gold / ink */
  --paper:        #f5efe3;       /* primary background — warm parchment */
  --paper-warm:   #ece4d2;       /* deeper paper for section breaks */
  --paper-deep:   #dccfb6;       /* hover / surface */
  --linen:        #fbf6ec;       /* lightest accent */

  --ink:          #1d1a14;       /* primary text — warm near-black */
  --ink-soft:     #3a342a;
  --ink-muted:    #6a6356;
  --ink-quiet:    #968d7e;
  --ink-faint:    #c2b9a8;

  --garden:       #4a5d3a;       /* English boxwood deep green */
  --garden-bright:#6d8559;
  --garden-deep:  #2f3e25;

  --magnolia:     #d4a8a8;       /* dusty rose / magnolia at sunset */
  --magnolia-bright:#e6c2c2;
  --magnolia-deep: #a87474;

  --gold:         #b08846;       /* cathedral gold */
  --gold-bright:  #d4a85f;
  --gold-deep:    #835e26;

  --ink-blue:     #1d3a5c;       /* courthouse ink-stamp blue */
  --ink-blue-bright: #2c5688;

  --border:       rgba(29, 26, 20, 0.12);
  --border-strong:rgba(29, 26, 20, 0.24);
  --border-gold:  rgba(176, 136, 70, 0.36);
  --border-garden:rgba(74, 93, 58, 0.32);

  /* Typography */
  --f-display: "Marcellus", "Cinzel", Georgia, serif;
  --f-serif:   "EB Garamond", "Cormorant Garamond", Georgia, serif;
  --f-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --container-prose: 720px;
  --gutter: clamp(20px, 4vw, 56px);
  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 8px;

  --shadow-1: 0 1px 2px rgba(29,26,20,0.06), 0 8px 24px rgba(29,26,20,0.10);
  --shadow-2: 0 2px 4px rgba(29,26,20,0.08), 0 24px 56px rgba(29,26,20,0.18);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--f-serif);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }

a { color: var(--ink-blue); text-decoration: none; transition: color .2s var(--ease); border-bottom: 1px solid transparent; }
a:hover { color: var(--magnolia-deep); border-bottom-color: var(--gold); }

::selection { background: var(--gold); color: var(--ink); }

.skip-link {
  position: absolute; top: -100px; left: 12px;
  background: var(--ink); color: var(--linen);
  padding: 8px 14px;
  font-family: var(--f-sans);
  font-weight: 700;
  transition: top .2s; z-index: 100;
}
.skip-link:focus { top: 12px; }

.container {
  width: min(100% - var(--gutter)*2, var(--container));
  margin-inline: auto;
}
.prose {
  width: min(100% - var(--gutter)*2, var(--container-prose));
  margin-inline: auto;
}

/* =======================  HEADER  ======================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 0;
  transition: padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(245, 239, 227, 0.93);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.hdr-inner {
  width: min(100% - var(--gutter)*2, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
}

.brand { display: flex; align-items: center; gap: 14px; color: var(--ink); }
.brand:hover { color: var(--ink); border-bottom: 0; }
.brand-mark {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  background: var(--ink-blue);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1;
}
.brand-name {
  font-family: var(--f-display);
  font-size: 19px;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--ink);
}
.brand-sub {
  display: block;
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 6px;
}

.primary-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: clamp(10px, 1.8vw, 26px);
  justify-content: center;
}
.primary-nav a {
  color: var(--ink-soft);
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  border-bottom: 0;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a:hover::after { transform: scaleX(1); }

.hdr-cta { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px;
  font-family: var(--f-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
  text-decoration: none;
  border-radius: var(--r-sm);
}
.btn:hover { transform: translateY(-1px); border-bottom: 1.5px solid transparent; }
.btn-primary {
  background: var(--ink-blue);
  color: var(--linen);
  border-color: var(--ink-blue);
}
.btn-primary:hover {
  background: var(--ink-blue-bright);
  border-color: var(--ink-blue-bright);
  color: var(--linen);
  box-shadow: 0 10px 28px -6px rgba(29, 58, 92, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(176, 136, 70, 0.08);
  color: var(--ink);
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  box-shadow: 0 10px 28px -6px rgba(176, 136, 70, 0.5);
}

/* Hamburger */
.hamburger {
  display: none;
  appearance: none; background: transparent;
  border: 1px solid var(--border-strong);
  width: 44px; height: 44px; border-radius: 4px;
  cursor: pointer; padding: 0;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 1px; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: rgba(245, 239, 227, 0.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 24px var(--gutter);
}
.mobile-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block; padding: 14px 0;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
}
.mobile-nav a.m-call { color: var(--ink-blue); }

/* =======================  HERO  ======================= */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: grid; align-items: center;
  overflow: hidden; isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  filter: saturate(0.94) brightness(0.92);
  animation: heroDrift 28s var(--ease) infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.03) translateX(-0.5%); }
  to   { transform: scale(1.09) translateX(0.7%); }
}
.hero-vignette {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 70% at 50% 30%, rgba(245,239,227,0) 0%, rgba(245,239,227,0.35) 60%, rgba(245,239,227,0.92) 100%),
    linear-gradient(180deg, rgba(245,239,227,0.55) 0%, rgba(245,239,227,0.18) 30%, rgba(245,239,227,0.70) 78%, rgba(245,239,227,0.95) 100%);
}

.hero-inner {
  width: min(100% - var(--gutter)*2, 1100px);
  margin-inline: auto;
  text-align: center;
  padding: 140px 0 80px;
  position: relative;
}

.hero-frame {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 22px;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 auto 36px;
  background: rgba(251, 246, 236, 0.7);
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(40px, 8vw, 96px);
  line-height: 1.0;
  letter-spacing: 0.005em;
  margin: 0 0 20px;
  color: var(--ink);
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(245,239,227,0.4);
}
.hero-title .line-2 {
  display: block;
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.42em;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: 0;
  color: var(--garden);
  margin-top: 20px;
}

.hero-tag {
  max-width: 700px;
  margin: 28px auto 8px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 500;
}
.hero-tag em { color: var(--magnolia-deep); font-style: italic; }

.hero-sub {
  max-width: 580px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 42px;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.hero-meta {
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: clamp(22px, 4vw, 56px);
  justify-content: center;
  padding: 24px clamp(28px, 4vw, 64px);
  background: rgba(251, 246, 236, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-top: 1px solid var(--border-gold);
  width: fit-content;
}
.meta-item { text-align: center; }
.meta-num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 42px);
  color: var(--ink-blue);
  line-height: 1;
  letter-spacing: 0;
}
.meta-lbl {
  display: block;
  font-family: var(--f-sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 10px;
}

/* =======================  GENERIC BAND  ======================= */
.band { padding: clamp(80px, 10vw, 130px) 0; position: relative; }
.band-paper { background: var(--paper); }
.band-warm  { background: var(--paper-warm); }
.band-ink   { background: var(--ink); color: var(--linen); }
.band-ink h2, .band-ink h3, .band-ink h4, .band-ink .display { color: var(--linen); }
.band-ink .lede { color: rgba(251,246,236,0.78); }
.band-ink .eyebrow { color: var(--gold-bright); }

.band-head { max-width: 820px; margin: 0 auto clamp(48px, 6vw, 76px); text-align: center; }
.band-head .lede {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 18px 0 0;
}
.band-head .lede em { color: var(--magnolia-deep); font-style: italic; }

.eyebrow {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 18px;
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow.with-mark::before, .eyebrow.with-mark::after {
  content: ""; display: inline-block;
  width: 22px; height: 1px;
  background: var(--gold);
}
.eyebrow.garden { color: var(--garden); }
.eyebrow.garden.with-mark::before, .eyebrow.garden.with-mark::after { background: var(--garden); }

.display {
  font-family: var(--f-display);
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin: 0 0 14px;
  text-transform: uppercase;
}
.display em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  color: var(--magnolia-deep);
  letter-spacing: 0;
}
.display-xl {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: 0.005em;
  color: var(--ink);
  text-transform: uppercase;
}
.display-xl em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  color: var(--magnolia-deep);
}

.lede { color: var(--ink-muted); }

/* =======================  THREE WAYS (positioning grid)  ======================= */
.three-ways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
  max-width: 1100px;
  margin: 0 auto;
}
.way {
  background: var(--linen);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.way.elope  { border-top-color: var(--garden); }
.way.secular { border-top-color: var(--ink-blue); }
.way.church { border-top-color: var(--gold); }
.way:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-1);
}
.way .w-marker {
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.way h3 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.way p {
  font-family: var(--f-serif);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
.way p em { color: var(--magnolia-deep); font-style: italic; }

/* =======================  PROMISES STRIP  ======================= */
.promises-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.promise {
  padding: 22px 24px;
  border-left: 2px solid var(--gold);
  background: rgba(176, 136, 70, 0.05);
}
.promise h4 {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 6px;
}
.promise p {
  font-family: var(--f-serif);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* =======================  GALLERY  ======================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
}
.gallery figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.gallery figure:hover img { transform: scale(1.04); }

.g-1 { grid-column: span 6; aspect-ratio: 4/3; }
.g-2 { grid-column: span 6; aspect-ratio: 4/3; }
.g-3 { grid-column: span 4; aspect-ratio: 3/4; }
.g-4 { grid-column: span 4; aspect-ratio: 3/4; }
.g-5 { grid-column: span 4; aspect-ratio: 3/4; }
.g-6 { grid-column: span 12; aspect-ratio: 21/9; }
@media (max-width: 768px) {
  .g-1, .g-2, .g-3, .g-4, .g-5 { grid-column: span 6; aspect-ratio: 1/1; }
  .g-6 { grid-column: span 12; aspect-ratio: 16/9; }
}

/* =======================  TENNESSEE LAW  ======================= */
.band-law {
  background: var(--paper-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.law-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.law-stamp {
  text-align: center;
  padding: 48px 32px;
  border: 2px solid var(--ink-blue);
  background: var(--linen);
  position: relative;
}
.law-stamp::before, .law-stamp::after {
  content: "";
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid var(--ink-blue);
}
.law-stamp::before { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.law-stamp::after  { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }
.law-stamp .stamp-eyebrow {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink-blue);
}
.law-stamp .stamp-big {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 52px);
  color: var(--ink-blue);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 14px 0;
}
.law-stamp .stamp-sub {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
}

.law-copy p {
  font-family: var(--f-serif);
  font-size: 17.5px;
  line-height: 1.78;
  color: var(--ink);
  margin: 0 0 16px;
}
.law-copy p:first-of-type { font-size: 19px; color: var(--ink); }
.law-copy strong { color: var(--ink-blue); }
.law-copy em { font-style: italic; color: var(--magnolia-deep); }

/* =======================  BOOK / CONTACT  ======================= */
.band-book {
  background: var(--paper);
  text-align: center;
}
.book-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--linen);
  border: 1px solid var(--border-strong);
  border-top: 3px solid var(--ink-blue);
  padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 56px);
}
.book-card .display { margin-bottom: 18px; }
.book-card .lede { font-size: 17px; max-width: 540px; margin: 0 auto 32px; }

.phone-display {
  display: inline-flex;
  flex-direction: column;
  padding: 22px 36px;
  background: var(--ink-blue);
  color: var(--linen);
  text-decoration: none;
  transition: background .25s var(--ease);
  border-radius: var(--r-sm);
  margin: 0 0 18px;
  border-bottom: 0;
}
.phone-display:hover { background: var(--ink-blue-bright); color: var(--linen); border-bottom: 0; }
.phone-display .ph-label {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.85;
}
.phone-display .ph-num {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 38px);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.book-fineprint {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-top: 12px;
}
.book-fineprint strong { color: var(--ink); font-style: normal; font-weight: 600; }

/* =======================  REGION / FOOTER  ======================= */
.region-strip {
  margin-top: 36px;
  padding: 18px 28px;
  background: rgba(74, 93, 58, 0.08);
  border: 1px solid var(--border-garden);
  display: inline-flex; gap: 10px 24px;
  flex-wrap: wrap;
  font-family: var(--f-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--garden-deep);
}
.region-strip span.sep { color: var(--ink-faint); }

/* =======================  REVEAL  ======================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* =======================  FOOTER  ======================= */
.site-footer {
  background: var(--ink);
  color: rgba(251, 246, 236, 0.78);
  padding: 64px 0 24px;
  border-top: 3px solid var(--gold);
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}
.ft-brand h4 {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--linen);
  margin: 0 0 14px;
}
.ft-brand p {
  font-family: var(--f-serif);
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(251,246,236,0.7);
  margin: 0;
  max-width: 360px;
}
.ft-col h5 {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0 0 18px;
}
.ft-col a, .ft-col p {
  font-family: var(--f-serif);
  font-size: 16px;
  color: rgba(251,246,236,0.78);
  text-decoration: none;
  line-height: 1.5;
  margin: 0 0 8px;
  display: block;
  border-bottom: 0;
}
.ft-col a:hover { color: var(--linen); border-bottom-color: var(--gold-bright); }
.ft-col p.small {
  font-family: var(--f-sans);
  font-size: 12.5px;
  color: rgba(251,246,236,0.5);
  margin-top: 4px;
}

.ft-base {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(251,246,236,0.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  width: min(100% - var(--gutter)*2, var(--container));
  margin-inline: auto;
  font-family: var(--f-sans);
  font-size: 12px;
  color: rgba(251,246,236,0.5);
}
.ft-base a { color: var(--gold-bright); }

/* =======================  RESPONSIVE  ======================= */
@media (max-width: 1024px) {
  .primary-nav { display: none; }
  .hamburger { display: inline-flex; }
  .hdr-cta .btn-secondary { display: none; }
  .hdr-inner { grid-template-columns: auto 1fr auto; }
  .hero-meta { grid-template-columns: repeat(2, auto); gap: 22px 40px; }
}
@media (max-width: 768px) {
  .three-ways { grid-template-columns: 1fr; }
  .law-grid { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .brand-name { font-size: 16px; }
  .brand-sub { font-size: 9px; }
  body { font-size: 17px; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .ft-grid { grid-template-columns: 1fr; }
}
