/* ─────────────────────────────────────────────────────────────
   Friends of the Township — Styles v3
   Dark cinematic. Photo-forward. Fraunces + DM Sans.
   DESIGN_VARIANCE: 8 | MOTION_INTENSITY: 6 | VISUAL_DENSITY: 4
   ───────────────────────────────────────────────────────────── */

/* ─── Tokens ─────────────────────────────────────────────────── */
:root {
  --bg:          #0d0c0b;
  --bg-surface:  #161410;
  --bg-card:     #1c1916;
  --bg-card-alt: #222018;
  --text:        #e8e0d4;
  --text-muted:  #7a7167;
  --text-dim:    #4a4540;
  --brass:       #b89a2e;
  --brass-light: #d4b84a;
  --brass-dim:   #7a6618;
  --border:      rgba(232, 224, 212, 0.08);
  --border-mid:  rgba(232, 224, 212, 0.14);
  --radius:      3px;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font: inherit; }

.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--brass);
  color: var(--bg);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 1000;
  border-radius: var(--radius);
  transition: top 0.2s;
}
.skip-nav:focus { top: 1rem; }

/* ─── Typography helpers ─────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
}

/* ─── Section wrapper ────────────────────────────────────────── */
.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
}

/* ─── Scroll reveals ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: all 0.28s var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-brass {
  background: var(--brass);
  color: var(--bg);
  font-weight: 500;
}
.btn-brass:hover { background: var(--brass-light); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-mid);
}
.btn-ghost:hover { border-color: rgba(232,224,212,0.35); background: rgba(232,224,212,0.05); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-mid);
}
.btn-outline:hover { border-color: var(--brass); color: var(--brass); }

.btn-full { width: 100%; }

/* ─── Nav ────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease-out), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(13, 12, 11, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
}
.nav-logo span {
  font-size: 0.625rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links .nav-cta {
  color: var(--text);
  background: rgba(184, 154, 46, 0.12);
  border: 1px solid rgba(184, 154, 46, 0.3);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 400;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nav-links .nav-cta:hover {
  background: rgba(184, 154, 46, 0.22);
  border-color: var(--brass);
  color: var(--brass-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--text);
  transition: all 0.3s var(--ease-out);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: rgba(13, 12, 11, 0.98);
  backdrop-filter: blur(16px);
  z-index: 99;
  padding: 2.5rem clamp(1.25rem, 5vw, 3rem);
  overflow-y: auto;
}
.mobile-menu[aria-hidden="false"] { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; }
.mobile-menu a {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 200;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--brass); }
.mobile-cta { color: var(--brass) !important; }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 8vh, 7rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(13, 12, 11, 0.93) 0%,
    rgba(13, 12, 11, 0.82) 35%,
    rgba(13, 12, 11, 0.48) 62%,
    rgba(13, 12, 11, 0.18) 100%
  );
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,12,11,0.72) 0%, transparent 45%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 200px;
  align-items: flex-end;
  gap: 3rem;
}

.hero-content { padding-top: 120px; }

.hero-eyebrow {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.5rem;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 8.5vw, 124px);
  font-weight: 200;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.hero-h1 em {
  font-style: italic;
  color: var(--brass-light);
}

.hero-sub {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  font-weight: 300;
  color: rgba(232, 224, 212, 0.7);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-fine {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Hero stats — right column */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-bottom: 0.5rem;
  border-left: 1px solid var(--border);
  padding-left: 2rem;
}
.hero-stat { display: flex; flex-direction: column; gap: 0.25rem; }
.hero-stat-n {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 200;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}
.hero-stat-l {
  font-size: 0.6875rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .hero { padding-bottom: 3.5rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .hero-h1 { font-size: clamp(42px, 13vw, 72px); }
}

/* ─── Marquee ────────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
  white-space: nowrap;
  user-select: none;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 0;
  animation: marquee 55s linear infinite;
  will-change: transform;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

.marquee-track span {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 0.7rem;
  transition: color 0.2s;
}
.marquee-track .dot {
  color: var(--brass-dim);
  padding: 0 0.1rem;
  letter-spacing: 0;
}
.marquee-track span:not(.dot):hover { color: var(--text); cursor: default; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Gallery ────────────────────────────────────────────────── */
.gallery {
  padding: clamp(5rem, 10vh, 9rem) 0 clamp(4rem, 8vh, 7rem);
}

.gallery-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
  margin-bottom: 2.5rem;
}
.gallery-hed {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 3.25rem);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.gallery-hed em {
  font-style: italic;
  color: var(--text-muted);
}

.gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 10px;
  align-items: stretch;
}

.gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.gallery-main:hover img { transform: scale(1.025); }

.gallery-col {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.03); }

.photo-credit {
  position: absolute;
  bottom: 0.6rem;
  right: 0.75rem;
  font-size: 0.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 224, 212, 0.4);
  line-height: 1;
  pointer-events: none;
}

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-col { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-main img { aspect-ratio: 3/2; }
  .gallery-item img { aspect-ratio: 1/1; }
}

/* ─── The Room ───────────────────────────────────────────────── */
.room {
  padding: clamp(5rem, 10vh, 9rem) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.room-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.room-image {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.room-image img {
  width: 100%;
  display: block;
  border-radius: 2px;
}

.room-hed {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.875rem);
  font-weight: 200;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.room-hed em {
  font-style: italic;
  color: var(--brass-light);
}

.room-text p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(232, 224, 212, 0.62);
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 52ch;
}
.room-text p:last-child { margin-bottom: 0; }

/* Legends carousel */
.legends-carousel {
  margin-top: clamp(3rem, 6vh, 5rem);
  overflow: hidden;
  /* fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.legends-carousel:hover .legends-track { animation-play-state: paused; }

.legends-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: legends-scroll 38s linear infinite;
  will-change: transform;
}

@keyframes legends-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.legend-figure {
  text-align: center;
  flex-shrink: 0;
  cursor: default;
}
.legend-figure img {
  width: 160px;
  height: 200px;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
  filter: grayscale(100%) contrast(1.1);
  opacity: 0.65;
  transition: opacity 0.4s, filter 0.4s, transform 0.4s var(--ease-out);
  display: block;
}
.legend-figure:hover img {
  opacity: 1;
  filter: grayscale(0%) contrast(1.05);
  transform: scale(1.04);
}
.legend-figure figcaption {
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.75rem;
  transition: color 0.3s;
}
.legend-figure:hover figcaption { color: var(--text); }

@media (max-width: 768px) {
  .room-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .room-image { max-height: 420px; }
  .room-image img { height: 100%; object-fit: cover; }
}

/* ─── Benefits ───────────────────────────────────────────────── */
.benefits {
  padding: clamp(5rem, 10vh, 9rem) 0;
}

.benefits-header { margin-bottom: 3rem; }
.benefits-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 200;
  color: var(--text);
  letter-spacing: -0.01em;
}

.benefit-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0 2rem;
  align-items: start;
  padding: 2.25rem 0;
  border-top: 1px solid var(--border);
}
.benefit-row:last-child { border-bottom: 1px solid var(--border); }

.benefit-n {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  padding-top: 0.2rem;
}

.benefit-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.benefit-body p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 56ch;
}

.benefit-tag {
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 0.3rem 0.65rem;
  border-radius: 2px;
  white-space: nowrap;
  margin-top: 0.25rem;
  align-self: start;
}

@media (max-width: 640px) {
  .benefit-row {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
  }
  .benefit-tag { grid-column: 2; justify-self: start; margin-top: 0.75rem; }
}

/* ─── Value ──────────────────────────────────────────────────── */
.value {
  padding: clamp(5rem, 10vh, 9rem) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.value-big {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 118px);
  font-weight: 200;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 0.95;
}
.value-label {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 200;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  line-height: 1;
}
.value-caption {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 40ch;
  margin-bottom: 0.75rem;
}

.value-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25rem;
}
.value-table th {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-mid);
  padding: 0 0 0.75rem;
  text-align: left;
}
.value-table th.text-right { text-align: right; }
.value-table td {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(232, 224, 212, 0.62);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.value-table td.text-right { text-align: right; font-variant-numeric: tabular-nums; }
.value-table tfoot td {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text);
  border-bottom: none;
  padding-top: 1rem;
}
.value-deduct { color: var(--brass) !important; }
.value-note {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.65;
}

@media (max-width: 768px) { .value-grid { grid-template-columns: 1fr; gap: 3rem; } }

/* ─── Membership Tiers ───────────────────────────────────────── */
.membership { padding: clamp(5rem, 10vh, 9rem) 0; }

.membership-header { margin-bottom: clamp(2.5rem, 5vh, 4rem); }
.membership-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 200;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.membership-sub {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 56ch;
  line-height: 1.65;
}

.tiers-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.tier {
  padding: 2rem 1.75rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
}

.tier-side {
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.tier-anchor {
  background: var(--bg-card-alt);
  border: 1px solid rgba(184, 154, 46, 0.22);
  position: relative;
}
.tier-anchor::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 2px;
  background: linear-gradient(135deg, rgba(184,154,46,0.18), transparent 55%);
  pointer-events: none;
}
.tier-anchor > * { position: relative; }

.tier-label {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.tier-label-brass { color: var(--brass); }

.tier-name {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.8vw, 1.5rem);
  font-weight: 200;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.tier-amount {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 2.5vw, 2.125rem);
  font-weight: 200;
  color: var(--text);
  letter-spacing: -0.03em;
}
.tier-cycle {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--text-muted);
}

.tier-perks {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: auto;
  padding-bottom: 2rem;
}
.tier-perks li {
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(232, 224, 212, 0.55);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.tier-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 1px;
  background: var(--text-dim);
}
.tier-anchor .tier-perks li { color: rgba(232, 224, 212, 0.75); }

.tier-cta { margin-bottom: 1rem; }
.tier-note {
  font-size: 0.5625rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .tiers-layout { grid-template-columns: 1fr 1fr; }
  .tier-anchor { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .tiers-layout { grid-template-columns: 1fr; }
  .tier-anchor { grid-column: auto; }
}

/* ─── Charter Wall ───────────────────────────────────────────── */
.charter {
  padding: clamp(5rem, 10vh, 9rem) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.charter-header { margin-bottom: 3rem; }
.charter-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 200;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.charter-sub {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 48ch;
  line-height: 1.65;
}

.charter-grid {
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  gap: 8px;
}

.charter-spot {
  aspect-ratio: 1;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  transition: all 0.25s var(--ease-out);
}

.charter-spot.filled {
  background: var(--bg-card-alt);
  border: 1px solid rgba(184, 154, 46, 0.2);
  color: var(--brass);
}

.charter-spot.open {
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.charter-spot.open a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  font-weight: 200;
  color: var(--text-dim);
  transition: color 0.2s;
}
.charter-spot.open:hover { border-color: rgba(184, 154, 46, 0.3); }
.charter-spot.open:hover a { color: var(--brass); }

@media (max-width: 768px) { .charter-grid { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 400px) { .charter-grid { grid-template-columns: repeat(4, 1fr); } }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq { padding: clamp(5rem, 10vh, 9rem) 0; }

.faq-header { margin-bottom: 3rem; }
.faq-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 200;
  color: var(--text);
  letter-spacing: -0.01em;
}

.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-item summary {
  font-family: var(--font-display);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.01em;
  padding: 1.5rem 2.5rem 1.5rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  user-select: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--text-dim);
  transition: transform 0.3s var(--ease-out), color 0.2s;
  line-height: 1;
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--brass);
}
.faq-item summary:hover { color: var(--brass-light); }

.faq-item p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 68ch;
  padding: 0 0 1.75rem;
}

/* ─── Join / Reserve ─────────────────────────────────────────── */
.join {
  padding: clamp(5rem, 10vh, 9rem) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.join-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.join-hed {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.125rem);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.join-hed em { font-style: italic; color: var(--brass-light); }

.join-left p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 40ch;
  margin-bottom: 2rem;
}

.join-contact p {
  font-size: 0.6875rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}
.join-phone {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 200;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.join-phone:hover { color: var(--brass-light); }

/* Form */
.reserve-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 0.75rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(184, 154, 46, 0.5);
  box-shadow: 0 0 0 3px rgba(184, 154, 46, 0.08);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7167' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option { background: var(--bg-card); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 80px; }

.btn.is-sending .btn-label { display: none; }
.btn-sending { display: none; }
.btn.is-sending .btn-sending { display: inline; }

.form-note {
  font-size: 0.6875rem;
  font-weight: 300;
  color: var(--text-dim);
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

.form-success {
  background: rgba(184, 154, 46, 0.08);
  border: 1px solid rgba(184, 154, 46, 0.22);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.form-success p { font-size: 0.875rem; font-weight: 300; color: rgba(212, 184, 74, 0.9); line-height: 1.65; }
.form-error {
  background: rgba(180, 60, 60, 0.08);
  border: 1px solid rgba(180, 60, 60, 0.22);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.form-error p { font-size: 0.875rem; font-weight: 300; color: rgba(240, 140, 140, 0.9); }

@media (max-width: 768px) { .join-grid { grid-template-columns: 1fr; gap: 3rem; } }

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: clamp(2.5rem, 5vh, 4rem) 0 2rem;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.65;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: flex-end;
}
.footer-nav a {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  flex-wrap: wrap;
}
.footer-copy, .footer-addr {
  font-size: 0.6875rem;
  font-weight: 300;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .footer-top { flex-direction: column; }
  .footer-nav { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
}

/* ─── Utility ────────────────────────────────────────────────── */
.text-right { text-align: right; }
