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

:root {
  /* Texas sunset — matches app (sand / orange / gold / dusk) */
  --orange: #E85D04;
  --orange-deep: #C44D00;
  --gold: #F5A623;
  --coral: #FF8C69;
  --dusk: #1A1420;
  --dusk-mid: #2A1F2E;
  --sand: #FFF5EB;
  --sand-deep: #F5E6D3;
  --peach: #FFE4CC;
  --ink: #1C1410;
  --muted: #6B5C50;
  --line: rgba(28, 20, 16, 0.12);
  --max: 1080px;
  --page-max: 42rem;
  --radius: 4px;
  --font-display: "Syne", system-ui, sans-serif; /* brand title only — tight geometry */
  --font-ui: "Zilla Slab", "Iowan Old Style", "Palatino Linotype", Georgia, serif; /* western slab, readable at UI size */
  --font-body: "Figtree", system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--sand);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--orange-deep); text-decoration-thickness: 1px; text-underline-offset: 0.15em; }
a:hover { color: var(--orange); }

/* ── Motion (reduced-motion respectful) ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.is-in {
    opacity: 1;
    transform: none;
  }
  .map-stop {
    animation: pin-bob 2.8s ease-in-out infinite;
  }
  .map-stop:nth-child(2) { animation-delay: 0.3s; }
  .map-stop:nth-child(3) { animation-delay: 0.55s; }
  .map-stop:nth-child(4) { animation-delay: 0.85s; }
  .map-stop:nth-child(5) { animation-delay: 1.1s; }
  .hero-sky {
    animation: sky-shift 18s ease-in-out infinite alternate;
  }
}

@keyframes pin-bob {
  0%, 100% { transform: translate(-50%, -100%) translateY(0); }
  50% { transform: translate(-50%, -100%) translateY(-5px); }
}

@keyframes sky-shift {
  from { filter: hue-rotate(0deg) brightness(1); }
  to { filter: hue-rotate(-8deg) brightness(1.05); }
}

/* ── Site chrome ── */
.site-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.site-nav .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-right: auto;
  color: #FFF;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  /* Syne clips descenders/side bearings if line-height is tight */
  line-height: 1.25;
  padding: 0.15rem 0.1rem;
}

.site-nav .brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.site-nav a:not(.brand) {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.site-nav a:not(.brand):hover { color: #FFF; }

/* Page chrome (legal / support) — solid bar */
body.page-shell .site-nav {
  position: relative;
  background: var(--dusk);
  max-width: none;
  padding-left: clamp(1.25rem, 4vw, 2.5rem);
  padding-right: clamp(1.25rem, 4vw, 2.5rem);
}

/* ── Hero ── */
.hero {
  position: relative;
  /* Content starts under the nav — do not pin to the bottom of the viewport
     (that left a large empty band above the brand). */
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  overflow: hidden;
  color: #FFF;
  background: var(--dusk);
}

.hero-sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 70% 100%, rgba(232, 93, 4, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 15% 80%, rgba(245, 166, 35, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 50% 0%, #3A2548 0%, transparent 60%),
    linear-gradient(180deg, #0F0A14 0%, #241828 45%, #1A1420 100%);
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 60%, #000 20%, transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  /* Clear absolute nav; compact under menu */
  padding: 4.25rem 1.25rem 1.75rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    padding: 4.5rem 1.5rem 2.25rem;
    gap: 1.75rem;
  }
}

.hero-copy .product-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 5.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
  overflow: visible;
  padding: 0.04em 0.04em 0.06em 0;
}

.hero-copy .product-name em {
  font-style: normal;
  color: var(--gold);
  display: block;
  font-size: 0.72em;
}

.hero-copy .product-line {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(0.85rem, 2vw, 1rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.hero-copy .lede {
  font-size: clamp(0.95rem, 1.9vw, 1.05rem);
  color: rgba(255, 245, 235, 0.88);
  max-width: 26rem;
  line-height: 1.45;
  margin-bottom: 1rem;
  font-weight: 500;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.85rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--dusk) !important;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius);
  text-decoration: none !important;
  border: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-primary:hover {
  background: #FFC14D;
  transform: translateY(-1px);
  color: var(--dusk) !important;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9) !important;
  font-family: var(--font-ui);
  font-weight: 650;
  font-size: 1rem;
  line-height: 1.3;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 0.1rem;
}

.cta-secondary:hover { border-bottom-color: #FFF; color: #FFF !important; }

.cta-secondary--ink {
  color: var(--ink) !important;
  border-bottom-color: rgba(28, 20, 16, 0.3);
}
.cta-secondary--ink:hover {
  color: var(--orange-deep) !important;
  border-bottom-color: var(--orange);
}

.store-soon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.store-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
  color: rgba(255, 245, 235, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.22);
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius);
}

.store-chip svg { opacity: 0.85; flex-shrink: 0; }

/* Hero map visual — carousel of animated hunting maps */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  justify-self: center;
}

@media (min-width: 900px) {
  .hero-visual {
    margin: 0 0 0 auto;
    max-width: 380px;
  }
}

.map-carousel {
  position: relative;
  touch-action: pan-y;
  user-select: none;
}

.map-track {
  position: relative;
  min-height: 0;
}

.map-slide {
  display: none;
}

.map-slide.is-active {
  display: block;
  animation: map-fade 0.45s ease;
}

@keyframes map-fade {
  from { opacity: 0.35; transform: scale(0.98); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .map-slide.is-active { animation: none; }
}

.map-panel {
  position: relative;
  border-radius: 14px;
  overflow: visible;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.35));
}

.map-base {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.map-buildings rect,
.map-buildings path,
.map-buildings circle {
  pointer-events: none;
}

.route-nav {
  transition: stroke-dashoffset 0.95s ease-in-out;
}

.route-traveler,
.route-pulse {
  transition: cx 0.95s ease-in-out, cy 0.95s ease-in-out;
}

.map-stops {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.map-stop {
  position: absolute;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.3rem;
  transform: translate(-50%, -100%);
  background: rgba(26, 20, 32, 0.92);
  border: 1px solid rgba(255, 245, 235, 0.22);
  color: #FFF5EB;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
  padding: 0.32rem 0.45rem 0.32rem 0.35rem;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
  max-width: 7.5rem;
  opacity: 0.32;
  transition: opacity 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.map-stop:not([data-stop]) {
  opacity: 0.78;
}

.map-stop.is-lit {
  opacity: 1;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
  filter: saturate(1.05);
}

.map-stop.is-current {
  outline: 2px solid rgba(245, 166, 35, 0.95);
  outline-offset: 2px;
}

.map-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.65rem;
  padding: 0 0.15rem;
}

.map-caption {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 245, 235, 0.78);
  margin: 0;
  letter-spacing: 0.01em;
}

.map-dots {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.map-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 245, 235, 0.28);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.map-dot.is-active {
  background: var(--gold);
  transform: scale(1.25);
}

.map-dot:hover { background: rgba(255, 245, 235, 0.55); }

.map-stop::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 8px;
  height: 8px;
  background: inherit;
  border-right: 1px solid rgba(255, 245, 235, 0.22);
  border-bottom: 1px solid rgba(255, 245, 235, 0.22);
  transform: translateX(-50%) rotate(45deg);
}

.map-stop-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  font-size: 0.62rem;
  line-height: 1;
  flex-shrink: 0;
}

.map-stop-name {
  padding-right: 0.05rem;
}

.map-stop-rating {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.12rem 0.32rem;
  border-radius: 999px;
  line-height: 1.15;
}

.map-stop-rating--boom {
  background: #2D6A4F;
  color: #E8F5E9;
}

.map-stop-rating--bust {
  background: #9B2226;
  color: #FFE8E8;
}

.map-stop--garage {
  background: #E85D04;
  border-color: rgba(255, 245, 235, 0.25);
}
.map-stop--garage .map-stop-ico { background: rgba(0, 0, 0, 0.18); }

.map-stop--thrift {
  background: #2D6A4F;
  border-color: rgba(255, 245, 235, 0.2);
}
.map-stop--thrift .map-stop-ico { background: rgba(0, 0, 0, 0.18); }

.map-stop--estate {
  background: #6B4C7A;
  border-color: rgba(255, 245, 235, 0.2);
}
.map-stop--estate .map-stop-ico { background: rgba(0, 0, 0, 0.18); }

.map-stop--antique {
  background: #8D6E63;
  border-color: rgba(255, 245, 235, 0.22);
}
.map-stop--antique .map-stop-ico { background: rgba(0, 0, 0, 0.18); }

.map-stop--off {
  font-size: 0.66rem;
  padding: 0.28rem 0.4rem 0.28rem 0.3rem;
  opacity: 0.95;
  max-width: 7rem;
}

.map-stop--winery {
  background: #7B2D5B;
  border-color: rgba(255, 245, 235, 0.2);
}
.map-stop--winery .map-stop-ico { background: rgba(0, 0, 0, 0.18); }

.map-stop--pub {
  background: #37474F;
  border-color: rgba(255, 245, 235, 0.18);
}
.map-stop--pub .map-stop-ico { background: rgba(0, 0, 0, 0.2); }

.map-stop--brewery {
  background: #C67C1E;
  color: #1A1420;
  border-color: rgba(26, 20, 32, 0.12);
}
.map-stop--brewery .map-stop-ico {
  background: rgba(26, 20, 32, 0.12);
  color: #1A1420;
}

.map-stop--gift {
  background: #C2185B;
  border-color: rgba(255, 245, 235, 0.2);
}
.map-stop--gift .map-stop-ico { background: rgba(0, 0, 0, 0.18); }

.map-stop--books {
  background: #455A64;
  border-color: rgba(255, 245, 235, 0.2);
}
.map-stop--books .map-stop-ico { background: rgba(0, 0, 0, 0.2); }

.map-stop--festival {
  background: #F5A623;
  color: #1A1420;
  border-color: rgba(26, 20, 32, 0.12);
}
.map-stop--festival .map-stop-ico {
  background: rgba(26, 20, 32, 0.12);
  color: #1A1420;
}

/* ── Explore tabs ── */
.explore-tabs {
  border-top: 1px solid var(--line);
  padding-top: 0.25rem;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.15rem;
}

.tab-btn {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.tab-btn:hover {
  color: var(--ink);
  border-color: rgba(28, 20, 16, 0.28);
}

.tab-btn.is-active {
  background: var(--dusk);
  border-color: var(--dusk);
  color: #FFF5EB;
}

.tab-panel[hidden] { display: none !important; }

.tab-panel-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.tab-lede {
  margin-bottom: 1rem !important;
  font-size: 0.95rem !important;
}

.tab-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.tab-status {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
  margin: 0;
}

.tab-next {
  margin-left: auto;
  cursor: pointer;
  border: none;
}

/* Categories tab */
.cat-groups {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 800px) {
  .cat-groups {
    grid-template-columns: 1.2fr 1fr 0.85fr;
    gap: 1.25rem;
  }
}

.cat-group-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.55rem;
  color: var(--ink);
  line-height: 1.25;
}

.cat-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}

.cat-chips li {
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--ink);
  background: var(--peach);
  border-bottom: 2px solid var(--gold);
  padding: 0.35rem 0.55rem;
  line-height: 1.2;
}

.cat-chips--plus li {
  background: #FFE8D6;
  border-bottom-color: var(--orange);
}

.cat-chips--pro li {
  background: #EDE4F5;
  border-bottom-color: #6B4C7A;
}

.cat-footnote {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 40rem;
}

/* Features tab */
.feature-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.feature-rows li {
  display: grid;
  gap: 0.15rem 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 640px) {
  .feature-rows li {
    grid-template-columns: 9.5rem 1fr;
    align-items: baseline;
  }
}

.feature-rows strong {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}

.feature-rows span {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ── Sections ── */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.5rem;
}

.section--tight {
  padding-top: clamp(2.25rem, 5vw, 3.25rem);
  padding-bottom: clamp(2.25rem, 5vw, 3.25rem);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section h2 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.section--tight h2 {
  font-size: clamp(1.55rem, 3.5vw, 2rem);
  margin-bottom: 0.4rem;
}

.section .section-lede {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 2.25rem;
  font-weight: 500;
}

.section--tight .section-lede {
  font-size: 0.98rem;
  margin-bottom: 1.15rem;
  max-width: 32rem;
}

.section--sand { background: var(--sand); }
.section--peach {
  background:
    linear-gradient(180deg, var(--peach) 0%, var(--sand) 100%);
}
.section--dusk {
  background: var(--dusk);
  color: #FFF;
}
.section--dusk h2 { color: #FFF; }
.section--dusk .section-lede { color: rgba(255, 245, 235, 0.72); }

/* Hunt steps — purpose-setting, dense */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  counter-reset: hunt;
  border-top: 1px solid var(--line);
}

@media (min-width: 720px) {
  .steps {
    grid-template-columns: 1fr 1fr;
    border-top: none;
    column-gap: 1.75rem;
    row-gap: 0;
  }
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.75rem;
  row-gap: 0.15rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

@media (min-width: 720px) {
  .step {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }
  .step:nth-child(1),
  .step:nth-child(2) {
    border-top: 1px solid var(--line);
  }
}

.step::before {
  counter-increment: hunt;
  content: counter(hunt);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 1.25;
  min-width: 1.35rem;
  grid-row: 1 / span 2;
  padding-top: 0.05rem;
}

.step h3 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.25;
  grid-column: 2;
}

.step p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
  margin: 0;
  max-width: none;
  grid-column: 2;
}

/* Split narrative */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.split-panel {
  font-size: 1.05rem;
  color: var(--muted);
}

.split-panel strong { color: var(--ink); font-weight: 700; }

.boom-bust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.verdict {
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  min-height: 9rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.verdict--boom {
  background: linear-gradient(160deg, #2D6A4F 0%, #1B4332 100%);
  color: #E8F5E9;
}

.verdict--bust {
  background: linear-gradient(160deg, #9B2226 0%, #5C1A1C 100%);
  color: #FFE8E8;
}

.verdict .label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2rem);
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
  line-height: 1.15;
}

.verdict p {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
}

/* Places strip — one job: what's on the map */
.places-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin-top: 0.5rem;
}

.places-line span {
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--ink);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.1rem;
}

/* Tiers */
.tiers {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .tiers { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}

.tier {
  padding: 0;
  border: none;
  background: transparent;
}

.tier .tier-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: #FFF;
  margin-bottom: 0.15rem;
  line-height: 1.2;
}

.tier .tier-price {
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.tier ul {
  list-style: none;
  font-size: 0.92rem;
  color: rgba(255, 245, 235, 0.78);
}

.tier li {
  padding: 0.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.4;
}

.tier.tier--highlight .tier-name { color: var(--gold); }

.tier-note {
  margin-top: 2rem;
  font-size: 0.88rem;
  color: rgba(255, 245, 235, 0.55);
  max-width: 36rem;
}

/* Close / bottom CTA */
.close {
  text-align: center;
  padding: clamp(3.5rem, 8vw, 5rem) 1.5rem 4rem;
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(232, 93, 4, 0.18) 0%, transparent 55%),
    var(--sand);
}

.close h2 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: -0.01em;
  margin-bottom: 0.65rem;
  line-height: 1.15;
}

.close p {
  color: var(--muted);
  max-width: 28rem;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
}

.close .cta-row { justify-content: center; }

/* ── Legal / support pages ── */
.page {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.page h1 {
  font-family: var(--font-ui);
  font-size: clamp(1.8rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
  line-height: 1.15;
}

.page .meta {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.page h2 {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 2rem 0 0.65rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.page p, .page li {
  font-size: 0.95rem;
  color: #3A3028;
  line-height: 1.65;
  margin-bottom: 0.55rem;
}

.page ul { padding-left: 1.2rem; margin-bottom: 0.5rem; }
.page hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 1.75rem 0;
}

.page .notice {
  background: var(--peach);
  border-left: 3px solid var(--orange);
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
  color: #4A3426;
  margin-bottom: 1.75rem;
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.75rem 1.5rem 2.25rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--sand);
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover { color: var(--ink); }

.site-footer .foot-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.15rem;
  margin: 0.4rem 0 0.85rem;
}

.site-footer p { margin: 0; }

.site-footer .foot-brand {
  font-family: var(--font-display);
  font-weight: 750;
  color: var(--ink);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.3;
}

/* Support extras */
.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}

body.page-shell .cta-primary {
  color: var(--dusk) !important;
}

/* FAQ */
.faq-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.95rem;
  margin: 0 0 1.5rem;
}

.faq-toc a {
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.faq-toc a:hover { text-decoration: underline; }

.page.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 0.6rem;
}

.page.faq details summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.35;
  padding: 0.85rem 1rem;
  list-style: none;
}

.page.faq details summary::-webkit-details-marker { display: none; }

.page.faq details[open] summary {
  border-bottom: 1px solid var(--line);
}

.page.faq .faq-a {
  padding: 0.85rem 1rem 1rem;
}

.page.faq .faq-a p:last-child,
.page.faq .faq-a ul:last-child {
  margin-bottom: 0;
}
