/* ==========================================================================
   CAMP ZIEGENHORN — Design System v2
   Editorial rustic: warm cream surfaces, deep pine, a single ember accent.
   Fraunces (display serif) + Instrument Sans (text).
   ========================================================================== */

:root {
  --pine:        #223c28;
  --pine-deep:   #182b1d;
  --pine-ink:    #101d14;
  --cream:       #f6f1e6;
  --parchment:   #fcfaf3;
  --sand:        #ede6d6;
  --ink:         #292b22;
  --muted:       #6e6b5c;
  --ember:       #b5802f;
  --ember-soft:  #cf9a48;
  --line:        rgba(41, 43, 34, 0.12);
  --line-light:  rgba(255, 255, 255, 0.14);

  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Instrument Sans', system-ui, sans-serif;

  --ease:       cubic-bezier(0.32, 0.72, 0, 1);
  --ease-soft:  cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --shell: 1180px;
  --r-lg: 1.75rem;
  --r-md: 1.1rem;
  --r-sm: 0.65rem;
}

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

html { scroll-behavior: smooth; }

[id] { scroll-margin-top: 5.5rem; }

body {
  font-family: var(--sans);
  font-size: 1.0rem;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Film grain — fixed, non-interactive, extremely subtle */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

a { color: inherit; }

::selection { background: rgba(181, 128, 47, 0.28); }

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

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 300;
  background: var(--pine-ink);
  color: var(--parchment);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: top 0.3s var(--ease);
}

.skip-link:focus-visible { top: 1rem; }

/* ── Utilities ─────────────────────────────────────────────────────────── */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section { padding: clamp(5rem, 10vw, 8.5rem) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--ember);
  opacity: 0.6;
}

.on-dark .eyebrow, .eyebrow.on-dark { color: var(--ember-soft); }

.h-display {
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  margin-bottom: 1.2rem;
}

.h-section {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 1.1rem;
}

.lede {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 58ch;
}

.on-dark .lede { color: rgba(246, 241, 230, 0.72); }

.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }
.center .eyebrow::before { display: none; }

/* ── Buttons ───────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0.55rem 0.55rem 1.6rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.5s var(--ease), background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.btn:active { transform: scale(0.97); }

.btn .btn-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.5s var(--ease);
}

.btn:hover .btn-ic { transform: translateX(3px); }

.btn .btn-ic svg { width: 14px; height: 14px; }

.btn-solid {
  background: var(--pine);
  color: var(--parchment);
  box-shadow: 0 10px 28px -12px rgba(24, 43, 29, 0.55);
}

.btn-solid:hover {
  background: var(--pine-deep);
  box-shadow: 0 16px 34px -12px rgba(24, 43, 29, 0.65);
}

.btn-solid .btn-ic { background: rgba(255, 255, 255, 0.13); color: var(--ember-soft); }

.btn-ember {
  background: var(--ember);
  color: #fff;
  box-shadow: 0 10px 28px -12px rgba(181, 128, 47, 0.6);
}

.btn-ember:hover { background: #a67328; }
.btn-ember .btn-ic { background: rgba(255, 255, 255, 0.18); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--parchment);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }
.btn-ghost .btn-ic { background: rgba(255, 255, 255, 0.12); color: #fff; }

.btn-ghost-dark {
  background: transparent;
  color: var(--pine);
  box-shadow: inset 0 0 0 1px rgba(34, 60, 40, 0.4);
}

.btn-ghost-dark:hover { background: rgba(34, 60, 40, 0.07); }
.btn-ghost-dark .btn-ic { background: rgba(34, 60, 40, 0.09); color: var(--pine); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ember);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease);
}

.text-link:hover { border-color: var(--ember); }

/* ── Double-bezel photo frame ──────────────────────────────────────────── */

.frame {
  background: rgba(41, 43, 34, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 0.45rem;
  box-shadow: 0 30px 60px -30px rgba(41, 43, 34, 0.35);
}

.frame > img, .frame > .frame-in {
  width: 100%;
  border-radius: calc(var(--r-lg) - 0.45rem);
  object-fit: cover;
}

.on-dark .frame, .frame.frame-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-light);
  box-shadow: 0 40px 80px -35px rgba(0, 0, 0, 0.6);
}

/* ── Header / nav ──────────────────────────────────────────────────────── */

.site-head {
  position: fixed;
  top: 0.9rem;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
  pointer-events: none;
}

.nav-bar {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  width: 100%;
  max-width: 1060px;
  padding: 0.5rem 0.5rem 0.5rem 1.1rem;
  border-radius: 999px;
  background: rgba(16, 29, 20, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 44px -18px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: background 0.6s var(--ease);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: auto;
  padding: 0.55rem 0.4rem;
}

.nav-logo span {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 560;
  color: var(--parchment);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a:not(.btn) {
  font-size: 0.82rem;
  font-weight: 550;
  color: rgba(246, 241, 230, 0.78);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.35rem 0;
  transition: color 0.4s var(--ease);
}

.nav-links a:not(.btn):hover, .nav-links a.active { color: #fff; }

.nav-links a.active { border-bottom: 1px solid var(--ember-soft); }

.nav-phone {
  font-variant-numeric: tabular-nums;
}

.nav-cta { font-size: 0.82rem !important; padding: 0.4rem 0.4rem 0.4rem 1.2rem; }
.nav-cta .btn-ic { width: 1.85rem; height: 1.85rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--parchment);
  transition: transform 0.55s var(--ease), opacity 0.3s;
}

.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 26px; }

body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(16, 29, 20, 0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2.5rem 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }

.mobile-menu ul { list-style: none; }

.mobile-menu li {
  transform: translateY(28px);
  opacity: 0;
  transition: transform 0.7s var(--ease), opacity 0.7s var(--ease);
}

body.menu-open .mobile-menu li { transform: translateY(0); opacity: 1; }

body.menu-open .mobile-menu li:nth-child(1) { transition-delay: 0.08s; }
body.menu-open .mobile-menu li:nth-child(2) { transition-delay: 0.14s; }
body.menu-open .mobile-menu li:nth-child(3) { transition-delay: 0.20s; }
body.menu-open .mobile-menu li:nth-child(4) { transition-delay: 0.26s; }
body.menu-open .mobile-menu li:nth-child(5) { transition-delay: 0.32s; }
body.menu-open .mobile-menu li:nth-child(6) { transition-delay: 0.38s; }
body.menu-open .mobile-menu li:nth-child(7) { transition-delay: 0.44s; }

.mobile-menu a {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 7vw, 2.6rem);
  color: var(--parchment);
  text-decoration: none;
  padding: 0.45rem 0;
  line-height: 1.2;
}

.mobile-menu a:hover { color: var(--ember-soft); }

.mobile-menu .mm-meta {
  margin-top: 2.2rem;
  font-size: 0.85rem;
  color: rgba(246, 241, 230, 0.55);
  line-height: 2;
}

.mobile-menu .mm-meta a {
  font-family: var(--sans);
  font-size: 1.05rem;
  display: inline;
  color: var(--ember-soft);
  padding: 0;
}

@media (max-width: 940px) {
  /* hide the whole landmark wrapper so it leaves no empty flex item behind */
  .nav-primary { display: none; }
  .nav-toggle { display: block; }
}

/* ── Hero ──────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-media, .hero-media video, .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(16, 29, 20, 0.88) 0%, rgba(16, 29, 20, 0.25) 45%, rgba(16, 29, 20, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: auto;
  padding-bottom: clamp(2rem, 6vh, 4.5rem);
  color: var(--parchment);
}

.hero-brand {
  position: relative;
  z-index: 2;
  margin: clamp(5.75rem, 13vh, 8rem) auto 1.5rem;
  width: clamp(210px, 24vw, 340px);
  height: auto;
  filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.55));
}

@media (max-height: 760px) { .hero-brand { width: 170px; } }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(16, 29, 20, 0.35);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246, 241, 230, 0.9);
  margin-bottom: 1.6rem;
}

.hero-title {
  font-size: clamp(2.9rem, 7.5vw, 5.8rem);
  font-weight: 480;
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 12ch;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}

.hero-title em {
  font-style: italic;
  font-weight: 420;
  color: var(--ember-soft);
}

.hero-sub {
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  color: rgba(246, 241, 230, 0.82);
  max-width: 52ch;
  margin-bottom: 2.2rem;
}

.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: clamp(2.4rem, 5vh, 3.8rem); }

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1.4rem;
}

.hero-fact {
  padding-right: 2.6rem;
  margin-right: 2.6rem;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-fact:last-child { border-right: none; margin-right: 0; padding-right: 0; }

.hero-fact b {
  display: block;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 560;
  letter-spacing: 0.01em;
}

.hero-fact b a { text-decoration: none; color: inherit; }

.hero-fact span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(246, 241, 230, 0.55);
}

@media (max-width: 680px) {
  .hero-fact { padding-right: 1.4rem; margin-right: 1.4rem; }
  .hero-fact:nth-child(3) { border-right: none; }
}

/* very narrow phones: the 3-fact row wraps awkwardly — stack it instead */
@media (max-width: 480px) {
  .hero-facts { flex-direction: column; gap: 1rem; }
  .hero-fact { border-right: none; margin-right: 0; padding-right: 0; }
}

/* ── Page hero (subpages) ──────────────────────────────────────────────── */

.page-hero {
  position: relative;
  min-height: 62dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero .hero-content { padding-bottom: clamp(2.5rem, 6vh, 4rem); }

.page-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  font-weight: 500;
  max-width: 16ch;
  margin-bottom: 0.8rem;
}

/* ── Dark band sections ────────────────────────────────────────────────── */

.band-dark {
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(207, 154, 72, 0.12), transparent 60%),
    linear-gradient(175deg, var(--pine-deep), var(--pine-ink));
  color: var(--parchment);
}

.band-pine { background: var(--pine); color: var(--parchment); }

/* ── Editorial split rows (stays) ──────────────────────────────────────── */

.stay-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.stay-row + .stay-row { margin-top: clamp(4.5rem, 9vw, 7.5rem); }

.stay-row.flip .stay-media { order: 2; }

.stay-media { position: relative; }

.stay-media .frame img { aspect-ratio: 4 / 3.4; }

.stay-media .frame.tall img { aspect-ratio: 3 / 3.4; }

.price-tag {
  position: absolute;
  bottom: -1.1rem;
  right: 1.6rem;
  background: var(--parchment);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  box-shadow: 0 16px 34px -14px rgba(41, 43, 34, 0.4);
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  white-space: nowrap;
}

.price-tag b {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--pine);
  font-variant-numeric: tabular-nums;
}

.price-tag span { font-size: 0.72rem; color: var(--muted); }

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.4rem;
  margin: 1.7rem 0 2.1rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
}

.feature-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ember);
  flex-shrink: 0;
}

.stay-note {
  font-size: 0.86rem;
  color: var(--muted);
  border-left: 2px solid var(--ember);
  padding-left: 0.9rem;
  margin: 1.4rem 0 1.9rem;
  max-width: 46ch;
}

/* ── Photo collage (cabins) ────────────────────────────────────────────── */

.collage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.collage .frame { padding: 0.35rem; border-radius: var(--r-md); }
.collage .frame img { border-radius: calc(var(--r-md) - 0.35rem); height: 100%; }
.collage .frame:first-child { grid-row: 1 / -1; }
.collage .frame:first-child img { aspect-ratio: auto; height: 100%; }

/* ── Wedding banner ────────────────────────────────────────────────────── */

.banner {
  position: relative;
  min-height: 88dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.banner-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(16, 29, 20, 0.82) 5%, rgba(16, 29, 20, 0.28) 60%, rgba(16, 29, 20, 0.45) 100%);
}

.banner-content {
  position: relative;
  z-index: 2;
  color: var(--parchment);
  max-width: 560px;
}

.banner-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 480;
  margin-bottom: 1.3rem;
}

.banner-title em { font-style: italic; color: var(--ember-soft); font-weight: 420; }

.event-types {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.8rem 0 2.3rem;
}

.event-types li {
  font-size: 0.8rem;
  font-weight: 550;
  padding: 0.42rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(16, 29, 20, 0.3);
  backdrop-filter: blur(6px);
}

/* ── Fishing / land ────────────────────────────────────────────────────── */

.land-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.9rem;
  margin-top: 3.2rem;
}

.land-grid .frame { padding: 0.35rem; border-radius: var(--r-md); }
.land-grid .frame img { border-radius: calc(var(--r-md) - 0.35rem); width: 100%; height: 100%; object-fit: cover; }

.lg-a { grid-column: span 5; }
.lg-b { grid-column: span 4; }
.lg-c { grid-column: span 3; }
.lg-a img { aspect-ratio: 5 / 4; }
.lg-b img { aspect-ratio: 4 / 4; }
.lg-c img { aspect-ratio: 3 / 4; }

@media (max-width: 800px) {
  .lg-a, .lg-b, .lg-c { grid-column: span 6; }
  .lg-a img, .lg-b img, .lg-c img { aspect-ratio: 4 / 3.2; }
}

/* ── Gallery (masonry via columns) ─────────────────────────────────────── */

.masonry {
  columns: 3;
  column-gap: 0.9rem;
  margin-top: 3.2rem;
}

.masonry .frame {
  padding: 0.35rem;
  border-radius: var(--r-md);
  margin-bottom: 0.9rem;
  break-inside: avoid;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.masonry .frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 60px -26px rgba(41, 43, 34, 0.45);
}

.masonry .frame img { border-radius: calc(var(--r-md) - 0.35rem); }

@media (max-width: 900px) { .masonry { columns: 2; } }

/* ── FAQ ───────────────────────────────────────────────────────────────── */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(2.5rem, 5vw, 4.5rem);
  margin-top: 3rem;
}

.faq-item {
  padding: 1.7rem 0;
  border-top: 1px solid var(--line);
}

.on-dark .faq-item { border-top-color: var(--line-light); }

.faq-item h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.faq-item p { font-size: 0.93rem; color: var(--muted); line-height: 1.8; }

.on-dark .faq-item p { color: rgba(246, 241, 230, 0.68); }

.faq-item p a { color: var(--ember); font-weight: 600; text-decoration: none; }
.faq-item p a:hover { text-decoration: underline; }
.on-dark .faq-item p a { color: var(--ember-soft); }

@media (max-width: 800px) { .faq-grid { grid-template-columns: 1fr; } }

/* ── Rate cards (booking) ──────────────────────────────────────────────── */

.rate-board {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  margin-top: 3.2rem;
}

.rate-card {
  grid-column: span 4;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-light);
  border-radius: var(--r-lg);
  padding: 0.45rem;
  display: flex;
  flex-direction: column;
}

.rate-card-in {
  background: rgba(16, 29, 20, 0.55);
  border-radius: calc(var(--r-lg) - 0.45rem);
  padding: 1.8rem 1.7rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.rate-card.wide { grid-column: span 6; }

.rate-kind {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember-soft);
  margin-bottom: 1.2rem;
}

.rate-rows { display: flex; flex-direction: column; flex: 1; }

.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.rate-row:first-child { border-top: none; padding-top: 0; }

.rate-row .rr-name { font-size: 0.95rem; font-weight: 550; }

.rate-row .rr-note {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(246, 241, 230, 0.55);
  margin-top: 0.15rem;
  line-height: 1.5;
}

.rate-row .rr-price {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--parchment);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.rate-row .rr-price small {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(246, 241, 230, 0.55);
}

.rate-row .rr-price.accent { color: var(--ember-soft); }

/* Cabin tiers */
.tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-radius: var(--r-md);
  padding: 1.35rem 1.6rem;
  margin-top: 0.9rem;
}

.tier-day {
  background: var(--parchment);
  border: 1px solid var(--line);
}

.tier-end {
  background: var(--pine);
  color: var(--parchment);
}

.tier b {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.15rem;
}

.tier-day b { color: var(--ember); }
.tier-end b { color: var(--ember-soft); }

.tier .tier-days { font-size: 0.92rem; }
.tier-day .tier-days { color: var(--muted); }
.tier-end .tier-days { color: rgba(246, 241, 230, 0.7); }

.tier .tier-price {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.tier-day .tier-price { color: var(--pine); }
.tier-end .tier-price { color: var(--ember-soft); }

.tier .tier-per {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  opacity: 0.6;
  margin-top: 0.25rem;
}

/* ── Steps (how to book) ───────────────────────────────────────────────── */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 3.4rem;
  counter-reset: step;
}

.step {
  counter-increment: step;
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  position: relative;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ember);
  margin-bottom: 0.9rem;
}

.step h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }

.step p { font-size: 0.92rem; color: var(--muted); line-height: 1.8; }

.step p a { color: var(--ember); font-weight: 600; text-decoration: none; }
.step p a:hover { text-decoration: underline; }

@media (max-width: 800px) { .steps { grid-template-columns: 1fr; gap: 2rem; } }

/* ── Info strip ────────────────────────────────────────────────────────── */

.info-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.6rem 2.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 0;
}

.on-dark .info-strip { border-color: var(--line-light); }

.info-cell b {
  display: block;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 560;
  font-variant-numeric: tabular-nums;
}

.info-cell b a { text-decoration: none; color: inherit; }
.info-cell b a:hover { color: var(--ember); }
.on-dark .info-cell b a:hover { color: var(--ember-soft); }

.info-cell span {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.on-dark .info-cell span { color: rgba(246, 241, 230, 0.5); }

/* ── Forms ─────────────────────────────────────────────────────────────── */

.form-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-list { display: flex; flex-direction: column; gap: 1.6rem; margin-top: 2.2rem; }

.contact-item b {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ember-soft);
  margin-bottom: 0.3rem;
}

.contact-item p, .contact-item a {
  font-size: 0.98rem;
  color: rgba(246, 241, 230, 0.82);
  text-decoration: none;
  line-height: 1.7;
}

.contact-item a:hover { color: var(--ember-soft); }

.contact-item .big {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--parchment);
  font-variant-numeric: tabular-nums;
}

.form-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-light);
  border-radius: var(--r-lg);
  padding: 0.45rem;
}

.form-card-in {
  background: rgba(16, 29, 20, 0.5);
  border-radius: calc(var(--r-lg) - 0.45rem);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }

.form input, .form textarea, .form select {
  color-scheme: dark;
  width: 100%;
  padding: 0.85rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.055);
  color: var(--parchment);
  font-family: var(--sans);
  font-size: 0.92rem;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.form input::placeholder, .form textarea::placeholder { color: rgba(246, 241, 230, 0.4); }

.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--ember-soft);
  background: rgba(255, 255, 255, 0.09);
}

.form select { color: rgba(246, 241, 230, 0.55); appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%23cf9a48' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form select.filled { color: var(--parchment); }
.form select option { background: var(--pine-deep); color: var(--parchment); }

.form .field-error {
  display: none;
  font-size: 0.78rem;
  color: #e9a1a1;
  margin-top: -0.4rem;
}

.form button[type="submit"] { align-self: flex-start; margin-top: 0.5rem; }

.form-confirm {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  color: var(--parchment);
}

.form-confirm .fc-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--ember-soft);
  color: var(--ember-soft);
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.form-confirm p { color: rgba(246, 241, 230, 0.8); max-width: 34ch; margin: 0 auto; }

/* ── Timeline (about) ──────────────────────────────────────────────────── */

.timeline { position: relative; max-width: 720px; margin: 3.5rem auto 0; }

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(to bottom, var(--ember) 0%, rgba(207, 154, 72, 0.15) 100%);
}

.tl-item {
  position: relative;
  padding: 0 0 2.6rem 2.6rem;
}

.tl-item:last-child { padding-bottom: 0; }

.tl-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--pine-ink);
  border: 1.5px solid var(--ember-soft);
}

.tl-year {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ember-soft);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.tl-item p { font-size: 0.95rem; color: rgba(246, 241, 230, 0.72); max-width: 56ch; line-height: 1.8; }

/* ── Story prose (about) ───────────────────────────────────────────────── */

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}

.story-grid .frame { position: sticky; top: 6.5rem; }

.prose p {
  font-size: 1.04rem;
  line-height: 1.95;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.prose p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 3.4em;
  font-weight: 500;
  float: left;
  line-height: 0.82;
  padding: 0.08em 0.12em 0 0;
  color: var(--pine);
}

.prose p:last-child { margin-bottom: 0; }

/* ── Map ───────────────────────────────────────────────────────────────── */

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0.35rem;
  background: rgba(41, 43, 34, 0.04);
}

.map-frame iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: calc(var(--r-md) - 0.35rem);
}

/* ── Privacy prose ─────────────────────────────────────────────────────── */

.legal { max-width: 720px; margin: 0 auto; }

.legal h2 {
  font-size: 1.45rem;
  color: var(--pine);
  margin: 2.6rem 0 0.7rem;
}

.legal h2:first-child { margin-top: 0; }

.legal p { font-size: 0.97rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.85; }

.legal ul { margin: 0.4rem 0 1rem 1.3rem; }

.legal li { font-size: 0.97rem; color: var(--muted); margin-bottom: 0.35rem; line-height: 1.7; }

.legal a { color: var(--pine); }
.legal a:hover { color: var(--ember); }

.legal strong { color: var(--ink); }

/* ── CTA band ──────────────────────────────────────────────────────────── */

.cta-band { text-align: center; }

.cta-band .h-section { max-width: 22ch; margin-left: auto; margin-right: auto; }

.cta-actions {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}

/* ── Footer ────────────────────────────────────────────────────────────── */

.site-foot {
  background: var(--pine-ink);
  color: rgba(246, 241, 230, 0.6);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2.5rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.foot-brand img {
  width: clamp(220px, 22vw, 330px);
  height: auto;
  margin-bottom: 1.4rem;
}

.foot-brand .fb-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--parchment);
  margin-bottom: 0.5rem;
}

.foot-brand p { font-size: 0.88rem; line-height: 1.8; max-width: 34ch; }

.foot-col b {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(246, 241, 230, 0.55); /* was 0.4 — failed WCAG AA contrast on pine-ink */
  margin-bottom: 1rem;
}

.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }

.foot-col a {
  font-size: 0.9rem;
  color: rgba(246, 241, 230, 0.68);
  text-decoration: none;
  transition: color 0.35s var(--ease);
}

.foot-col a:hover { color: var(--ember-soft); }

.foot-col p { font-size: 0.9rem; line-height: 1.9; }

.foot-col p a { font-variant-numeric: tabular-nums; }

.foot-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(246, 241, 230, 0.6); /* was 0.4 — failed WCAG AA contrast on pine-ink */
}

.foot-base a { color: rgba(246, 241, 230, 0.72); text-decoration: none; }
.foot-base a:hover { color: var(--ember-soft); }

@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr; gap: 2.2rem; } }

/* ── A11y ──────────────────────────────────────────────────────────────── */

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

/* ── Scroll reveal ─────────────────────────────────────────────────────── */

.rv {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}

.rv.in { opacity: 1; transform: translateY(0); }

/* ── Responsive collapse ───────────────────────────────────────────────── */

@media (max-width: 940px) {
  .stay-row, .form-grid, .story-grid { grid-template-columns: 1fr; }
  .stay-row.flip .stay-media { order: 0; }
  .story-grid .frame { position: static; }
  .rate-card, .rate-card.wide { grid-column: span 12; }
  .banner { min-height: 74dvh; }
}

.form-row > div { min-width: 0; }

@media (max-width: 680px) {
  .feature-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .collage { grid-template-columns: 1fr; grid-template-rows: none; }
  .collage .frame:first-child { grid-row: auto; }
  .collage .frame img { aspect-ratio: 4 / 3; }
  .masonry { columns: 1; }
  .hero-actions .btn { width: 100%; justify-content: space-between; }
  .price-tag { right: 1rem; }
}

/* ── Reduced motion ────────────────────────────────────────────────────── */

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