/* ==========================================================================
   Honey Creek Haven — turnerfallsrentals.com
   Palette and type tokens
   ========================================================================== */

:root {
  --forest:       #1B3A2A;
  --forest-deep:  #12281D;
  --forest-mid:   #26503A;
  --cream:        #F7F3E8;
  --cream-warm:   #EFE9D8;
  --gold:         #C8901A;
  --gold-light:   #E2AF43;
  --char:         #2B2B2B;

  --ink-on-cream: #2B2B2B;
  --muted-cream:  #5C5A52;
  --muted-dark:   #B7C4B8;

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --measure: 34rem;
  --wide:    76rem;
  --narrow:  58rem;

  --band-y:  clamp(4rem, 9vw, 8rem);
  --gutter:  clamp(1.25rem, 4vw, 3rem);
}

/* ==========================================================================
   Reset and base
   ========================================================================== */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink-on-cream);
  font-family: var(--body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "SOFT" 20, "WONK" 1;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--forest); color: var(--cream);
  padding: 0.75rem 1.25rem; z-index: 999; font-weight: 600;
}
.skip:focus { left: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.wrap   { width: min(var(--wide),   100% - var(--gutter) * 2); margin-inline: auto; }
.wrap-n { width: min(var(--narrow), 100% - var(--gutter) * 2); margin-inline: auto; }

.band { padding-block: var(--band-y); }
.band-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.band-cream { background: var(--cream); color: var(--ink-on-cream); }
.band-warm  { background: var(--cream-warm); color: var(--ink-on-cream); }
.band-dark  { background: var(--forest); color: var(--cream); }
.band-deep  { background: var(--forest-deep); color: var(--cream); }

.band-dark h1, .band-dark h2, .band-dark h3,
.band-deep h1, .band-deep h2, .band-deep h3 { color: var(--cream); }

/* ==========================================================================
   Type roles
   ========================================================================== */

.eyebrow {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.1rem;
  display: block;
}
.band-cream .eyebrow, .band-warm .eyebrow { color: #9A6E12; }

.h-xl { font-size: clamp(2.5rem, 7.5vw, 5rem); }
.h-lg { font-size: clamp(2rem, 4.6vw, 3.25rem); }
.h-md { font-size: clamp(1.5rem, 2.7vw, 2.125rem); }
.h-sm { font-size: clamp(1.125rem, 1.7vw, 1.375rem); letter-spacing: -0.005em; }

.lede {
  font-size: clamp(1.125rem, 1.6vw, 1.3125rem);
  line-height: 1.55;
  max-width: var(--measure);
}
.band-dark .lede, .band-deep .lede { color: #E6E2D4; }

.lede a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}
.band-dark .lede a:hover, .band-deep .lede a:hover { color: var(--gold-light); }
.band-cream .lede a:hover, .band-warm .lede a:hover { color: #9A6E12; }

.prose { max-width: var(--measure); }
.prose-wide { max-width: 46rem; }

.note {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-cream);
}
.band-dark .note, .band-deep .note { color: var(--muted-dark); }

/* Section heading block */
.head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.head .lede { margin-top: 1.1rem; }
.head .note { margin-top: 0.9rem; }

/* Creek rule — the two wavy lines from the logo mark */
.creek {
  display: block;
  width: 88px;
  height: 16px;
  margin: 0 0 1.5rem;
  color: var(--gold);
  overflow: visible;
}
.creek-c { margin-inline: auto; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.6rem;
  border: 1.5px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-gold { background: var(--gold); color: #1B1405; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(247,243,232,0.45); }
.btn-ghost:hover { border-color: var(--cream); background: rgba(247,243,232,0.08); }

.btn-outline { background: transparent; color: var(--forest); border-color: rgba(27,58,42,0.35); }
.btn-outline:hover { border-color: var(--forest); background: rgba(27,58,42,0.05); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(27,58,42,0.14);
}

.header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 74px;
  padding-block: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  height: 58px;
  width: 58px;
  flex-shrink: 0;
}

.brand-word {
  height: 34px;
  width: auto;
  display: block;
}

.brand-tag {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--forest);
  white-space: nowrap;
}

@media (max-width: 700px) {
  .brand-mark { height: 48px; width: 48px; }
  .brand-word { height: 27px; }
  .brand-tag { font-size: 0.5625rem; letter-spacing: 0.09em; margin-top: 0.3rem; }
}

@media (max-width: 360px) {
  .brand { gap: 0.6rem; }
  .brand-mark { height: 40px; width: 40px; }
  .brand-word { height: 23px; }
  .brand-tag { display: none; }
}

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }

.nav a {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--forest);
  padding-block: 0.35rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s ease;
}
.nav a:hover { border-bottom-color: var(--gold); }
.nav a[aria-current="page"] { border-bottom-color: var(--gold); }

.header-cta { padding: 0.7rem 1.15rem; font-size: 0.8125rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid rgba(27,58,42,0.3);
  border-radius: 2px;
  padding: 0.55rem 0.7rem;
  cursor: pointer;
  color: var(--forest);
}
.nav-toggle svg { display: block; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(27,58,42,0.14);
    padding: 0.5rem var(--gutter) 1.25rem;
  }
  .nav[data-open="true"] { display: flex; }
  .nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(27,58,42,0.1);
  }
  .nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--gold); }
  .nav .btn { margin-top: 1rem; justify-content: center; border-bottom: none; }
  .header-cta { display: none; }
  .site-header { position: relative; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  background: var(--forest-deep);
  color: var(--cream);
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(9,20,14,0.88) 0%, rgba(9,20,14,0.62) 48%, rgba(9,20,14,0.35) 100%),
    linear-gradient(to top, rgba(9,20,14,0.75) 0%, rgba(9,20,14,0) 55%);
}

.hero-in {
  position: relative;
  padding-block: clamp(5rem, 16vh, 9rem);
  min-height: min(78vh, 680px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero h1 { max-width: 15ch; }
.hero .lede { margin-top: 1.5rem; color: #E8E4D6; }

.hero-sub {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
}

/* Page header for interior pages */
.pagehead {
  background: var(--forest);
  color: var(--cream);
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.pagehead h1 { max-width: 18ch; }
.pagehead .lede { margin-top: 1.35rem; }

/* ==========================================================================
   Stat strip
   ========================================================================== */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  border-top: 1px solid rgba(27,58,42,0.16);
  border-bottom: 1px solid rgba(27,58,42,0.16);
}

.stat {
  padding: 1.6rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(27,58,42,0.16);
}
.stat:last-child { border-right: none; }

.stat-n {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  font-variation-settings: "SOFT" 20, "WONK" 1;
  line-height: 1;
  color: var(--forest);
}
.stat-l {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-cream);
}

@media (max-width: 640px) {
  .stat:nth-child(2n) { border-right: none; }
  .stat { border-bottom: 1px solid rgba(27,58,42,0.16); }
}

/* ==========================================================================
   Day / night switch — the signature element
   ========================================================================== */

.switch {
  display: inline-flex;
  border: 1.5px solid rgba(247,243,232,0.3);
  border-radius: 2px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.switch button {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.15rem;
  background: transparent;
  color: rgba(247,243,232,0.72);
  border: none;
  border-radius: 1px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.switch button:hover { color: var(--cream); }
.switch button[aria-selected="true"] { background: var(--gold); color: #1B1405; }

.pairs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2.2vw, 1.75rem);
}

.pair { margin: 0; }

.pair-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--forest-deep);
  border-radius: 2px;
}

.pair-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.7s ease;
}

.pair-frame .ph-night { opacity: 0; }

[data-mode="night"] .pair-frame .ph-day   { opacity: 0; }
[data-mode="night"] .pair-frame .ph-night { opacity: 1; }

.pair figcaption {
  margin-top: 0.9rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #DCD8C9;
}
.pair figcaption strong {
  display: block;
  font-family: var(--display);
  font-size: 1.0625rem;
  font-weight: 600;
  font-variation-settings: "SOFT" 20, "WONK" 1;
  color: var(--cream);
  margin-bottom: 0.2rem;
  letter-spacing: 0;
}

.switch-note { margin-top: 2rem; max-width: 42rem; }

/* ==========================================================================
   Feature rows — alternating image / text
   ========================================================================== */

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.feature + .feature { margin-top: clamp(3.5rem, 7vw, 6rem); }

.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
}
.feature-media.tall img { aspect-ratio: 3 / 4; }

.feature-body h3 { margin-bottom: 0.9rem; }

.feature.flip .feature-media { order: 2; }

@media (max-width: 780px) {
  .feature { grid-template-columns: 1fr; }
  .feature.flip .feature-media { order: 0; }
}

/* Spec list under a feature */
.spec {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(27,58,42,0.16);
}
.band-dark .spec, .band-deep .spec { border-top-color: rgba(247,243,232,0.2); }

.spec li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(27,58,42,0.12);
  font-size: 0.9375rem;
}
.band-dark .spec li, .band-deep .spec li { border-bottom-color: rgba(247,243,232,0.15); }

.spec dt, .spec .k {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--muted-cream);
  padding-top: 0.15rem;
}
.band-dark .spec .k, .band-deep .spec .k { color: var(--muted-dark); }
.spec .v { text-align: right; }

/* ==========================================================================
   Callout — practical notices that shouldn't be skimmed past
   ========================================================================== */

.callout {
  border-left: 3px solid var(--gold);
  background: rgba(200, 144, 26, 0.09);
  padding: 1.1rem 1.25rem;
  margin-top: 1.5rem;
  border-radius: 0 2px 2px 0;
}
.callout p { font-size: 0.9375rem; margin-bottom: 0.7rem; }
.callout p:last-child { margin-bottom: 0; }
.callout strong { display: block; margin-bottom: 0.3rem; }

.callout-lead {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9A6E12;
  display: block;
  margin-bottom: 0.6rem;
}
.band-dark .callout, .band-deep .callout { background: rgba(226, 175, 67, 0.12); }
.band-dark .callout-lead, .band-deep .callout-lead { color: var(--gold-light); }

/* Compact version that sits inside a card */
.callout-sm {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  line-height: 1.55;
}
.callout-sm p { font-size: 0.875rem; }

/* ==========================================================================
   Full-bleed banner
   ========================================================================== */

.bleed { margin: 0; }
.bleed img {
  width: 100%;
  height: clamp(220px, 34vw, 420px);
  object-fit: cover;
  object-position: center 42%;
}
.bleed figcaption {
  width: min(var(--wide), 100% - var(--gutter) * 2);
  margin: 1rem auto 0;
  font-size: 0.8125rem;
  color: var(--muted-cream);
}
.band-dark .bleed figcaption, .band-deep .bleed figcaption { color: var(--muted-dark); }

/* ==========================================================================
   Card grids
   ========================================================================== */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.75rem, 3.5vw, 3rem);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.75rem, 3.5vw, 3rem);
}

@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card h3 { margin-bottom: 0.7rem; }
.card p { font-size: 0.9375rem; }

.card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 1.1rem;
}
.card-media.tall img { aspect-ratio: 3 / 4; }

/* Outbound links inside cards and place entries */
.card p a, .place-why a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.card p a:hover, .place-why a:hover { color: #9A6E12; }
.band-dark .card p a:hover, .band-deep .card p a:hover { color: var(--gold-light); }

/* Numbered / labelled card variant */
.card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}
.band-cream .card-label, .band-warm .card-label { color: #9A6E12; }

/* ==========================================================================
   Photo strip / gallery
   ========================================================================== */

.strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.6rem;
}
.strip img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 2px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.75rem;
}

.gallery figure { margin: 0; }

.gallery button {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  border-radius: 2px;
  overflow: hidden;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}
.gallery button:hover img { transform: scale(1.035); filter: brightness(1.05); }

.gallery figcaption {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted-cream);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(9,20,14,0.96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox[data-open="true"] { display: flex; }

.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 2px;
}

.lb-cap {
  position: absolute;
  bottom: clamp(1rem, 3vw, 2rem);
  left: 50%;
  transform: translateX(-50%);
  color: #DCD8C9;
  font-size: 0.875rem;
  text-align: center;
  width: min(90%, 40rem);
}

.lb-btn {
  position: absolute;
  background: rgba(247,243,232,0.1);
  border: 1px solid rgba(247,243,232,0.3);
  color: var(--cream);
  width: 46px; height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  line-height: 1;
}
.lb-btn:hover { background: rgba(247,243,232,0.2); }
.lb-close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lb-prev  { left: clamp(0.5rem, 2vw, 2rem);  top: 50%; transform: translateY(-50%); }
.lb-next  { right: clamp(0.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   Amenities
   ========================================================================== */

.amen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.75rem, 3vw, 2.75rem);
}

.amen h3 {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.7rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid rgba(247,243,232,0.22);
}

.amen ul { list-style: none; margin: 0; padding: 0; }
.amen li {
  font-size: 0.9375rem;
  padding: 0.28rem 0;
  color: #DCD8C9;
}

/* ==========================================================================
   Local guide listings
   ========================================================================== */

.places { margin-top: 2rem; }

.place {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(27,58,42,0.14);
  align-items: baseline;
}
.place:first-child { border-top: 1px solid rgba(27,58,42,0.14); }

.place-name {
  font-family: var(--display);
  font-size: 1.1875rem;
  font-weight: 600;
  font-variation-settings: "SOFT" 20, "WONK" 1;
  letter-spacing: -0.005em;
}
.place-name a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}
.place-name a:hover { color: #9A6E12; }

.place-kind {
  display: block;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #9A6E12;
  margin-top: 0.3rem;
}
.place-time {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-cream);
  white-space: nowrap;
}
.place-why {
  grid-column: 1 / -1;
  font-size: 0.9375rem;
  color: #4A4840;
  margin: 0;
  max-width: 46rem;
}

/* Distance table */
.dist { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.dist th, .dist td {
  text-align: left;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(247,243,232,0.18);
  font-size: 0.9375rem;
}
.dist th {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.dist td:last-child, .dist th:last-child { text-align: right; white-space: nowrap; }
.dist td { color: #DCD8C9; }

/* ==========================================================================
   Quote / host note
   ========================================================================== */

.hostnote {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hostnote img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 2px;
}
.hostnote-sig {
  font-family: var(--display);
  font-size: 1.125rem;
  font-variation-settings: "SOFT" 40, "WONK" 1;
  font-style: italic;
  color: var(--gold-light);
  margin-top: 1.5rem;
}
@media (max-width: 780px) { .hostnote { grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq { max-width: 46rem; margin-top: 2rem; }

.faq details {
  border-bottom: 1px solid rgba(27,58,42,0.16);
  padding: 1.15rem 0;
}
.faq summary {
  font-family: var(--display);
  font-size: 1.125rem;
  font-weight: 600;
  font-variation-settings: "SOFT" 20, "WONK" 1;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--body);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin-top: 0.9rem; font-size: 0.9375rem; max-width: 42rem; }

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
}

.contact-item { padding-top: 1.25rem; border-top: 2px solid var(--gold); }
.contact-item h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.contact-item a { color: var(--forest); text-decoration-color: rgba(27,58,42,0.35); text-underline-offset: 3px; }
.band-dark .contact-item a, .band-deep .contact-item a { color: var(--gold-light); }

.form { max-width: 34rem; margin-top: 2rem; }
.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-cream);
  margin-bottom: 0.5rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--body);
  font-size: 1rem;
  padding: 0.8rem 0.9rem;
  border: 1.5px solid rgba(27,58,42,0.28);
  border-radius: 2px;
  background: #FFFDF7;
  color: var(--char);
}
.field textarea { min-height: 9rem; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(200,144,26,0.18);
}
.hp { position: absolute; left: -9999px; }

.formmsg { margin-top: 1.25rem; font-size: 0.9375rem; padding: 0.9rem 1rem; border-radius: 2px; display: none; }
.formmsg[data-show="true"] { display: block; }
.formmsg.ok  { background: rgba(27,58,42,0.08);  border-left: 3px solid var(--forest); }
.formmsg.err { background: rgba(200,144,26,0.12); border-left: 3px solid var(--gold); }

/* ==========================================================================
   Legal pages
   ========================================================================== */

.legal { max-width: 44rem; }
.legal h2 { font-size: 1.375rem; margin-top: 2.5rem; margin-bottom: 0.75rem; }
.legal h3 { font-size: 1.0625rem; margin-top: 1.75rem; margin-bottom: 0.5rem; }
.legal ul { padding-left: 1.15rem; margin: 0 0 1.1em; }
.legal li { margin-bottom: 0.4rem; }
.legal .updated { font-size: 0.8125rem; color: var(--muted-cream); }

/* ==========================================================================
   Final CTA
   ========================================================================== */

.finale { text-align: center; }
.finale .lede { margin-inline: auto; }
.finale .btn-row { justify-content: center; }
.finale-mark { width: 64px; height: 64px; margin: 0 auto 1.75rem; opacity: 0.9; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--forest-deep);
  color: #C9D2C8;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: 0.9375rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(247,243,232,0.15);
}
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }

.foot-word {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  font-variation-settings: "SOFT" 20, "WONK" 1;
  color: var(--cream);
  line-height: 1.1;
}
.foot-word span {
  display: block;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
}

.foot-brand p { margin-top: 1.1rem; max-width: 26rem; color: #A9B5A8; font-size: 0.875rem; }

.site-footer h4 {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.6rem; }
.site-footer a { color: #C9D2C8; text-decoration: none; }
.site-footer a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }

.foot-base {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.8125rem;
  color: #8E9C8D;
}
.foot-base p { margin: 0; }
