/* ============================================
   DAWSON'S COVE — Design System
   Editorial luxury / lakeside glamping
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500;1,9..144,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* ----- Foundation (warm cream canvas) ----- */
  --bg-0: #f6f1e6;          /* base canvas */
  --bg-1: #efe7d4;          /* warm sand */
  --bg-2: #e6dcc4;          /* deeper sand */
  --bg-3: #ddd1b3;
  --surface: #fbf7ee;
  --surface-elevated: #ffffff;
  --ink-canvas: #1d2a2c;    /* deep teal-ink for "dark" sections */

  /* ----- Ink / text on cream ----- */
  --ink-50:  #11181a;       /* darkest — headlines */
  --ink-100: #1d2a2c;       /* body strong */
  --ink-200: #2f3c3d;
  --ink-300: #4f5a5b;
  --ink-400: #6e7574;
  --ink-500: #8b8e87;
  --ink-600: #aaa99b;

  /* ----- Brand (from Dawson's Cove badge) ----- */
  --teal:        #2c5759;   /* primary brand — deep cove teal */
  --teal-deep:   #1a3a3c;
  --teal-bright: #3f7c7f;
  --cream:       #f0e9d6;   /* canvas/cream from logo banner */
  --clay:        #b8743c;   /* warm clay accent — sunset on water */
  --clay-bright: #d39156;
  --moss:        #4f6347;
  --lake-navy:   #16344b;

  /* ----- Lines ----- */
  --line:        rgba(29, 42, 44, 0.10);
  --line-strong: rgba(29, 42, 44, 0.22);
  --line-teal:   rgba(44, 87, 89, 0.30);
  --line-cream:  rgba(240, 233, 214, 0.30);

  /* ----- Typography ----- */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.375rem;
  --text-2xl:  1.75rem;
  --text-3xl:  2.25rem;
  --text-4xl:  3rem;
  --text-5xl:  4rem;
  --text-display: clamp(2.25rem, 7vw, 6rem);
  --text-hero:    clamp(2.5rem, 11vw, 8.5rem);

  /* ----- Spacing (8px grid) ----- */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.25rem;
  --s-6: 1.5rem;
  --s-8: 2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;
  --s-32: 8rem;
  --s-40: 10rem;

  --section-y: clamp(5rem, 12vh, 10rem);
  --container: 1280px;
  --container-narrow: 880px;
  --container-wide: 1480px;

  /* ----- Motion ----- */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-back:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =========================================
   Base reset
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }

body {
  background: var(--bg-0);
  color: var(--ink-100);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-base);
  line-height: 1.7;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  min-height: 100vh;
}

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

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--teal); color: var(--cream); }

/* ============= Subtle paper grain overlay ============= */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* =========================================
   Typography
   ========================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink-50);
  font-variation-settings: "opsz" 144;
}

h1 { font-size: var(--text-hero); font-weight: 400; letter-spacing: -0.035em; }
h2 { font-size: var(--text-display); font-weight: 400; letter-spacing: -0.03em; }
h3 { font-size: var(--text-3xl); font-weight: 500; }
h4 { font-size: var(--text-xl); font-weight: 500; letter-spacing: -0.015em; }

.serif-italic { font-family: var(--font-display); font-style: italic; font-weight: 400; }

p { color: var(--ink-200); max-width: 65ch; }

.lead {
  font-size: var(--text-lg);
  line-height: 1.65;
  color: var(--ink-200);
  max-width: 56ch;
  font-weight: 400;
}

/* Eyebrow / label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--teal);
  opacity: 0.7;
}

.eyebrow-plain {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-400);
}

/* =========================================
   Containers
   ========================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--s-6); }
.container-narrow { max-width: var(--container-narrow); margin-inline: auto; padding-inline: var(--s-6); }
.container-wide { max-width: var(--container-wide); margin-inline: auto; padding-inline: var(--s-6); }

section { position: relative; }

/* =========================================
   Header / Navigation
   ========================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: var(--s-5) var(--s-6);
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out), padding 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(246, 241, 230, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: var(--s-3) var(--s-6);
  border-bottom-color: var(--line);
}
/* Over-hero (dark hero image) variant — pre-scroll header */
.site-header.over-hero:not(.scrolled) .brand,
.site-header.over-hero:not(.scrolled) .nav-links a,
.site-header.over-hero:not(.scrolled) .nav-phone { color: var(--cream); }
.site-header.over-hero:not(.scrolled) .nav-links a::after { background: var(--clay-bright); }
.site-header.over-hero:not(.scrolled) .brand-mark { border-color: var(--clay-bright); color: var(--clay-bright); }
.site-header.over-hero:not(.scrolled) .brand-mark::after { border-color: rgba(211, 145, 86, 0.4); }

.nav {
  max-width: var(--container-wide);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--s-6);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  color: var(--ink-50);
  text-transform: uppercase;
  font-weight: 500;
}
.brand-mark {
  width: 38px; height: 38px;
  border: 1px solid var(--teal);
  display: grid; place-items: center;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0;
  font-style: italic;
  position: relative;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid var(--line-teal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-8);
  justify-self: center;
  list-style: none;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-200);
  position: relative;
  padding: 0.5rem 0;
  text-transform: uppercase;
  transition: color 0.3s var(--ease-out);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--teal);
  transition: width 0.4s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { justify-self: end; display: flex; gap: var(--s-3); align-items: center; }
.nav-phone {
  font-size: 0.8125rem;
  color: var(--ink-300);
  letter-spacing: 0.02em;
  display: none;
  font-weight: 500;
}
@media (min-width: 920px) { .nav-phone { display: inline; } }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line-strong);
  position: relative;
  background: rgba(246, 241, 230, 0.8);
}
.nav-toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 1px;
  background: var(--ink-100);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 24px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--bg-0);
    flex-direction: column;
    justify-content: center;
    gap: var(--s-8);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
    z-index: -1;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: var(--text-2xl); font-family: var(--font-display); text-transform: none; letter-spacing: -0.01em; }
  .nav-cta .nav-phone { display: none; }
}

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 1.05rem 1.65rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--teal);
  color: var(--ink-50);
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease-out), border-color 0.3s, transform 0.3s var(--ease-out);
  cursor: pointer;
  z-index: 0;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teal);
  transform: translateX(-101%);
  transition: transform 0.5s var(--ease-out);
  z-index: -1;
}
.btn:hover { color: var(--cream); transform: translateY(-1px); }
.btn:hover::before { transform: translateX(0); }

.btn-arrow {
  width: 14px; height: 14px;
  transition: transform 0.4s var(--ease-out);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-solid {
  background: var(--teal);
  color: var(--cream);
  border-color: var(--teal);
}
.btn-solid::before { background: var(--teal-deep); }
.btn-solid:hover { color: var(--cream); }

.btn-clay {
  background: var(--clay);
  color: #fff;
  border-color: var(--clay);
}
.btn-clay::before { background: var(--clay-bright); }
.btn-clay:hover { color: #fff; }

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--ink-100);
}
.btn-ghost::before { background: var(--ink-100); }
.btn-ghost:hover { color: var(--cream); }

.btn-light {
  border-color: rgba(240, 233, 214, 0.7);
  color: var(--cream);
}
.btn-light::before { background: var(--cream); }
.btn-light:hover { color: var(--ink-50); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-teal);
  transition: color 0.3s, border-color 0.3s, gap 0.3s var(--ease-out);
}
.link-arrow:hover { color: var(--teal-deep); border-color: var(--teal); gap: var(--s-4); }
.link-arrow svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease-out); }
.link-arrow:hover svg { transform: translateX(3px); }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 0 var(--s-6) var(--s-20);
  overflow: hidden;
  isolation: isolate;
  background: var(--ink-canvas);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: contrast(1.05) brightness(0.88) saturate(1.05);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,58,60,0.45) 0%, rgba(26,58,60,0.15) 35%, rgba(26,58,60,0.75) 82%, var(--ink-canvas) 100%),
    radial-gradient(ellipse at 80% 30%, transparent 0%, rgba(26,58,60,0.35) 75%);
}

.hero-inner {
  position: relative;
  max-width: var(--container-wide);
  margin-inline: auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-16);
  padding-top: 12rem;
  color: var(--cream);
}
.hero-inner h1, .hero-inner h2, .hero-inner h3 { color: var(--cream); }

.hero-meta {
  display: flex;
  align-items: center;
  gap: var(--s-8);
  margin-bottom: var(--s-8);
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 233, 214, 0.85);
  font-weight: 600;
}
.hero-meta-item::before {
  content: '';
  width: 6px; height: 6px;
  border: 1px solid var(--clay-bright);
  transform: rotate(45deg);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.04em;
  max-width: 14ch;
  color: var(--cream);
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--clay-bright);
  font-variation-settings: "opsz" 144;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-16);
  align-items: end;
  margin-top: var(--s-12);
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; gap: var(--s-10); } }

.hero-tagline {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: 1.65;
  color: rgba(240, 233, 214, 0.9);
  max-width: 46ch;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  align-items: flex-start;
}
.hero-ctas .row { display: flex; gap: var(--s-4); flex-wrap: wrap; }

.hero-scroll-cue {
  position: absolute;
  bottom: var(--s-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(240, 233, 214, 0.75);
  z-index: 2;
  font-weight: 600;
}
.hero-scroll-cue .line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--clay-bright), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-cue .line::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 16px;
  top: 0;
  background: linear-gradient(to bottom, transparent, var(--clay-bright), transparent);
  animation: scrollLine 2.4s var(--ease-in-out) infinite;
}
@keyframes scrollLine {
  0% { top: -16px; }
  100% { top: 56px; }
}

/* =========================================
   Marquee / Ticker
   ========================================= */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-1);
  padding: var(--s-5) 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: var(--s-12);
  animation: marquee 40s linear infinite;
  width: max-content;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-12);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.6vw, 2.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-50);
  letter-spacing: -0.02em;
}
.marquee-item::after {
  content: '✦';
  color: var(--clay);
  font-style: normal;
  font-size: 0.6em;
  margin-left: var(--s-12);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* =========================================
   Section base
   ========================================= */
.section {
  padding-block: var(--section-y);
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: var(--s-16);
  align-items: end;
  margin-bottom: var(--s-20);
}
@media (max-width: 860px) { .section-head { grid-template-columns: 1fr; gap: var(--s-6); margin-bottom: var(--s-12); } }
.section-head .lhs { display: flex; flex-direction: column; gap: var(--s-5); }
.section-head h2 { max-width: 14ch; }
.section-head h2 em { font-style: italic; color: var(--clay); }

.section-divider {
  width: 100%;
  height: 1px;
  background: var(--line);
}

/* Dark sections */
.section--dark {
  background: var(--ink-canvas);
  color: var(--cream);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--cream); }
.section--dark h2 em { color: var(--clay-bright); }
.section--dark p, .section--dark .lead { color: rgba(240, 233, 214, 0.82); }
.section--dark .eyebrow { color: var(--clay-bright); }
.section--dark .eyebrow::before { background: var(--clay-bright); }

/* =========================================
   Story / Two-column editorial
   ========================================= */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: start;
}
@media (max-width: 860px) { .story-grid { grid-template-columns: 1fr; gap: var(--s-10); } }

.story-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--line);
}
.story-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.05);
  transition: transform 1.2s var(--ease-out);
}
.story-media:hover img { transform: scale(1.04); }
.story-media-caption {
  position: absolute;
  bottom: var(--s-5);
  left: var(--s-5);
  right: var(--s-5);
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(26,58,60,0.6);
  backdrop-filter: blur(12px);
  padding: var(--s-3) var(--s-4);
  border: 1px solid var(--line-cream);
  font-weight: 600;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: var(--s-8);
  padding-top: var(--s-4);
}
.story-text .lead {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink-50);
  font-weight: 400;
  max-width: 28ch;
}
.story-text .lead em { font-style: italic; color: var(--clay); }

.principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6) var(--s-8);
  margin-top: var(--s-6);
}
@media (max-width: 520px) { .principles { grid-template-columns: 1fr; } }
.principle {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
}
.principle .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--clay);
  letter-spacing: 0;
}
.principle h4 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 500; color: var(--ink-50); }
.principle p { font-size: var(--text-sm); color: var(--ink-300); line-height: 1.6; max-width: none; }

/* =========================================
   Tents / Stays (bento)
   ========================================= */
.stays {
  background: var(--bg-1);
  border-block: 1px solid var(--line);
}
.stays-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
}
@media (max-width: 860px) { .stays-grid { grid-template-columns: 1fr; } }

.stay-card {
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out), box-shadow 0.4s;
  text-decoration: none;
  color: inherit;
}
.stay-card:hover {
  border-color: var(--line-teal);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -30px rgba(26,58,60,0.35);
}
.stay-media {
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
}
.stay-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.stay-card:hover .stay-media img { transform: scale(1.05); }
.stay-tag {
  position: absolute;
  top: var(--s-5); left: var(--s-5);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  background: rgba(26,58,60,0.78);
  border: 1px solid var(--line-cream);
  padding: var(--s-3) var(--s-4);
  backdrop-filter: blur(10px);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 600;
}
.stay-tag .dot { width: 7px; height: 7px; background: var(--clay-bright); border-radius: 50%; box-shadow: 0 0 12px var(--clay-bright); }

.stay-body {
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  flex: 1;
}
.stay-body .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--clay);
}
.stay-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.6vw, 2.5rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink-50);
}
.stay-body h3 em { font-style: italic; color: var(--clay); }
.stay-body p { font-size: var(--text-sm); color: var(--ink-300); max-width: none; line-height: 1.65; }

.stay-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
}
.stay-features li {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-400);
  background: var(--bg-1);
  padding: 4px 10px;
  border: 1px solid var(--line);
  font-weight: 600;
}

.stay-footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: var(--s-4);
  padding-top: var(--s-4);
  margin-top: auto;
}
.stay-price {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}
.stay-price .label {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-400);
  font-weight: 600;
}
.stay-price .value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--ink-50);
  letter-spacing: -0.02em;
}
.stay-price .value em { font-style: italic; color: var(--clay); font-size: 0.55em; vertical-align: top; }

.stay-channels {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.channel-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-200);
  font-weight: 600;
  background: var(--surface);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.channel-pill:hover { background: var(--teal); color: var(--cream); border-color: var(--teal); }
.channel-pill svg { width: 11px; height: 11px; }

/* =========================================
   Amenities grid
   ========================================= */
.amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
@media (max-width: 980px) { .amenities { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .amenities { grid-template-columns: 1fr 1fr; } }

.amenity {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.amenity:hover { border-color: var(--line-teal); transform: translateY(-2px); }
.amenity .icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  color: var(--teal);
  border: 1px solid var(--line-teal);
}
.amenity .icon svg { width: 18px; height: 18px; }
.amenity h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--ink-50);
  letter-spacing: -0.01em;
}
.amenity p { font-size: 0.8125rem; color: var(--ink-400); line-height: 1.5; }

/* =========================================
   Lake / location section
   ========================================= */
.cove {
  padding-block: var(--section-y);
  overflow: hidden;
}
.cove-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-20);
  align-items: center;
}
@media (max-width: 980px) { .cove-inner { grid-template-columns: 1fr; gap: var(--s-12); } }

.cove-media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--line);
}
.cove-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.03) saturate(1.08);
}
.cove-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(140deg, transparent 55%, rgba(26,58,60,0.35));
  pointer-events: none;
}
.cove-frame-tag {
  position: absolute;
  top: var(--s-5); left: var(--s-5);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  background: rgba(26,58,60,0.72);
  border: 1px solid var(--line-cream);
  padding: var(--s-3) var(--s-4);
  backdrop-filter: blur(10px);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 600;
}
.cove-frame-tag .dot { width: 7px; height: 7px; background: var(--clay-bright); border-radius: 50%; box-shadow: 0 0 12px var(--clay-bright); }

.cove-body { display: flex; flex-direction: column; gap: var(--s-8); }
.cove-body h2 { max-width: 14ch; }
.cove-body h2 em { font-style: italic; color: var(--clay); }

.cove-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6) var(--s-8);
  border-top: 1px solid var(--line);
  padding-top: var(--s-8);
}
@media (max-width: 580px) { .cove-stats { grid-template-columns: 1fr 1fr; } }

.stat .num {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  line-height: 1;
  font-weight: 400;
  color: var(--ink-50);
  letter-spacing: -0.04em;
  margin-bottom: var(--s-2);
}
.stat .num em { font-style: italic; color: var(--clay); font-size: 0.6em; vertical-align: top; line-height: 1; }
.stat .label { font-size: var(--text-xs); letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-400); font-weight: 600; }

/* =========================================
   Process / How it works
   ========================================= */
.process {
  background: var(--bg-1);
  border-block: 1px solid var(--line);
}
.process-list { display: flex; flex-direction: column; }
.process-row {
  display: grid;
  grid-template-columns: 80px 1.2fr 2fr auto;
  gap: var(--s-8);
  align-items: center;
  padding: var(--s-8) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding 0.4s var(--ease-out);
}
.process-row:last-child { border-bottom: 0; }
.process-row:hover { padding-inline: var(--s-4); }
.process-row::before {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  height: 1px; width: 0;
  background: var(--clay);
  transition: width 0.7s var(--ease-out);
}
.process-row:hover::before { width: 100%; }

.process-row .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-2xl);
  color: var(--clay);
  font-weight: 400;
}
.process-row h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.process-row p { font-size: var(--text-sm); color: var(--ink-300); }
.process-row .meta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-400);
  text-align: right;
  white-space: nowrap;
  font-weight: 600;
}
@media (max-width: 780px) {
  .process-row {
    grid-template-columns: 50px 1fr;
    gap: var(--s-4) var(--s-6);
  }
  .process-row p { grid-column: 2 / -1; }
  .process-row .meta { grid-column: 2 / -1; text-align: left; }
}

/* =========================================
   Reviews
   ========================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr; } }

.review {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  transition: border-color 0.4s, transform 0.3s var(--ease-out);
}
.review:hover { border-color: var(--line-teal); transform: translateY(-2px); }

.review-stars {
  display: inline-flex;
  gap: 4px;
  color: var(--clay);
}
.review-stars svg { width: 14px; height: 14px; }

.review-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.45;
  color: var(--ink-50);
  font-weight: 400;
  letter-spacing: -0.005em;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-2);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--teal);
  letter-spacing: 0;
  border: 1px solid var(--line-teal);
}
.review-author .name { font-weight: 600; font-size: 0.875rem; color: var(--ink-50); letter-spacing: 0; }
.review-author .meta { font-size: 0.75rem; color: var(--ink-400); letter-spacing: 0.04em; }

/* Source pill */
.review-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-400);
  font-weight: 600;
  align-self: flex-start;
  padding: 4px 9px;
  border: 1px solid var(--line);
  background: var(--bg-1);
}

/* =========================================
   CTA strip
   ========================================= */
.cta-strip {
  position: relative;
  isolation: isolate;
  padding-block: var(--section-y);
  overflow: hidden;
  text-align: center;
  background: var(--ink-canvas);
  color: var(--cream);
}
.cta-strip-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.cta-strip-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.35) saturate(0.9); }
.cta-strip-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--ink-canvas) 0%, transparent 30%, transparent 70%, var(--ink-canvas) 100%),
              radial-gradient(ellipse at center, transparent 30%, rgba(26,58,60,0.65) 80%);
}
.cta-strip h2 {
  max-width: 18ch;
  margin-inline: auto;
  font-size: clamp(2.25rem, 6vw, 5rem);
  color: var(--cream);
}
.cta-strip h2 em { font-style: italic; color: var(--clay-bright); }
.cta-strip .lead { margin-inline: auto; margin-top: var(--s-6); color: rgba(240, 233, 214, 0.85); }
.cta-strip .eyebrow { color: var(--clay-bright); justify-content: center; }
.cta-strip .eyebrow::before { background: var(--clay-bright); }
.cta-strip .ctas {
  margin-top: var(--s-10);
  display: inline-flex;
  gap: var(--s-4);
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================================
   Footer
   ========================================= */
.site-footer {
  background: var(--ink-canvas);
  color: var(--cream);
  border-top: 1px solid var(--teal-deep);
  padding-block: var(--s-20) var(--s-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-12);
  margin-bottom: var(--s-16);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay-bright);
  margin-bottom: var(--s-5);
  font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--s-3); }
.footer-col a {
  font-size: 0.9375rem;
  color: rgba(240, 233, 214, 0.82);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--clay-bright); }
.footer-col p { font-size: 0.875rem; color: rgba(240, 233, 214, 0.72); }

.footer-brand-block { display: flex; flex-direction: column; gap: var(--s-5); }
.footer-brand-block .brand { font-size: 1.25rem; color: var(--cream); }
.footer-brand-block .brand-mark { border-color: var(--clay-bright); color: var(--clay-bright); }
.footer-brand-block .brand-mark::after { border-color: rgba(211, 145, 86, 0.4); }
.footer-brand-block .tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--cream);
  max-width: 28ch;
  font-weight: 400;
  line-height: 1.4;
}

.footer-bottom {
  border-top: 1px solid rgba(240, 233, 214, 0.12);
  padding-top: var(--s-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-4);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(240, 233, 214, 0.55);
}

/* =========================================
   Page hero (interior pages)
   ========================================= */
.page-hero {
  position: relative;
  padding-top: 12rem;
  padding-bottom: var(--s-20);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  background: var(--ink-canvas);
  color: var(--cream);
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: -1;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.05) brightness(0.5) saturate(1.05);
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,58,60,0.35) 0%, rgba(26,58,60,0.65) 70%, var(--ink-canvas) 100%);
}
.page-hero-content {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  position: relative;
}
.page-hero h1 {
  font-size: clamp(2.75rem, 7vw, 6rem);
  line-height: 1;
  max-width: 18ch;
  color: var(--cream);
}
.page-hero h1 em { font-style: italic; color: var(--clay-bright); }
.page-hero .lead { max-width: 56ch; color: rgba(240, 233, 214, 0.85); }
.page-hero .eyebrow { color: var(--clay-bright); }
.page-hero .eyebrow::before { background: var(--clay-bright); }

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 233, 214, 0.6);
  font-weight: 600;
}
.breadcrumb a { color: rgba(240, 233, 214, 0.8); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--clay-bright); }
.breadcrumb .sep { color: var(--clay-bright); }

/* =========================================
   Tent detail (stays.html)
   ========================================= */
.tent-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-16);
  align-items: start;
  padding-block: var(--section-y);
}
@media (max-width: 980px) { .tent-detail { grid-template-columns: 1fr; gap: var(--s-10); } }

.tent-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}
.tent-gallery .big { grid-column: 1 / -1; aspect-ratio: 16/10; overflow: hidden; border: 1px solid var(--line); }
.tent-gallery .small { aspect-ratio: 4/3; overflow: hidden; border: 1px solid var(--line); }
.tent-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.tent-gallery .big:hover img, .tent-gallery .small:hover img { transform: scale(1.04); }

.tent-info {
  position: sticky;
  top: 7rem;
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: var(--s-8);
}
.tent-info h2 { font-size: clamp(2rem, 4vw, 2.75rem); letter-spacing: -0.02em; }
.tent-info h2 em { font-style: italic; color: var(--clay); }
.tent-info .summary { font-size: 0.9375rem; color: var(--ink-300); line-height: 1.65; max-width: none; }

.tent-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  padding-block: var(--s-5);
  border-block: 1px solid var(--line);
}
.tent-stats .stat .num { font-size: var(--text-2xl); margin-bottom: 0; }
.tent-stats .stat .label { font-size: 0.625rem; letter-spacing: 0.18em; }

.tent-channels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}
.channel-card {
  border: 1px solid var(--line-strong);
  padding: var(--s-4) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--bg-1);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out);
  text-decoration: none;
}
.channel-card:hover { border-color: var(--teal); background: var(--bg-2); transform: translateY(-2px); }
.channel-card .label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-400);
  font-weight: 600;
}
.channel-card .value {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--ink-50);
  font-weight: 500;
}

.tent-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}
.tent-features-list li {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 0.8125rem;
  color: var(--ink-200);
}
.tent-features-list li svg { width: 14px; height: 14px; color: var(--clay); flex-shrink: 0; }

/* =========================================
   Booking form
   ========================================= */
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-16);
}
@media (max-width: 880px) { .book-grid { grid-template-columns: 1fr; gap: var(--s-10); } }

.book-info { display: flex; flex-direction: column; gap: var(--s-8); }
.book-info h2 { max-width: 14ch; }
.book-info h2 em { font-style: italic; color: var(--clay); }

.book-list { display: flex; flex-direction: column; gap: var(--s-1); }
.book-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: var(--s-5);
  padding-block: var(--s-5);
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.book-row .label {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-400);
  font-weight: 600;
  padding-top: 4px;
}
.book-row .value {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--ink-50);
  font-weight: 400;
  line-height: 1.35;
}
.book-row .value a { color: inherit; border-bottom: 1px solid transparent; transition: border-color 0.3s, color 0.3s; }
.book-row .value a:hover { color: var(--teal); border-color: var(--teal); }
.book-row .sub { font-family: var(--font-body); font-size: 0.8125rem; color: var(--ink-300); display: block; margin-top: 4px; letter-spacing: 0; }

.book-form {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: var(--s-10);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.field { display: flex; flex-direction: column; gap: var(--s-2); }
.field label {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-400);
  font-weight: 600;
}
.field input, .field select, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: var(--s-3) 0;
  color: var(--ink-50);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  transition: border-color 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-bottom-color: var(--teal);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select option { background: var(--surface); color: var(--ink-50); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--s-4);
  flex-wrap: wrap;
  gap: var(--s-4);
}
.form-actions .small {
  font-size: 0.75rem;
  color: var(--ink-400);
  letter-spacing: 0;
  text-transform: none;
}

/* =========================================
   Map placeholder
   ========================================= */
.map-card {
  margin-top: var(--s-10);
  position: relative;
  aspect-ratio: 16/9;
  border: 1px solid var(--line);
  overflow: hidden;
}
.map-card iframe { width: 100%; height: 100%; border: 0; }
.map-card .marker {
  position: absolute;
  top: var(--s-5); left: var(--s-5);
  background: rgba(26,58,60,0.85);
  border: 1px solid var(--line-cream);
  padding: var(--s-3) var(--s-4);
  backdrop-filter: blur(10px);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-weight: 600;
}
.map-card .marker .dot { width: 7px; height: 7px; background: var(--clay-bright); border-radius: 50%; box-shadow: 0 0 10px var(--clay-bright); animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* =========================================
   FAQ
   ========================================= */
.faq-list { display: flex; flex-direction: column; }
.faq {
  border-bottom: 1px solid var(--line);
  padding-block: var(--s-6);
  cursor: pointer;
}
.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-6);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink-50);
  transition: color 0.3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232c5759' stroke-width='1.5'><path d='M12 5v14M5 12h14'/></svg>");
  transition: transform 0.4s var(--ease-out);
  flex-shrink: 0;
}
.faq[open] summary { color: var(--teal); }
.faq[open] summary::after { transform: rotate(45deg); }
.faq-body { padding-top: var(--s-5); color: var(--ink-300); font-size: 0.9375rem; line-height: 1.7; max-width: 70ch; }

/* =========================================
   Gallery (masonry)
   ========================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--s-3);
  grid-auto-rows: 140px;
}
@media (max-width: 720px) { .gallery-grid { grid-template-columns: repeat(6, 1fr); } }

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out), filter 0.6s;
  filter: saturate(1.02);
}
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.1); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(26,58,60,0.6));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .caption {
  position: absolute;
  bottom: var(--s-4);
  left: var(--s-4);
  right: var(--s-4);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  font-weight: 600;
}
.gallery-item:hover .caption { opacity: 1; transform: translateY(0); }

.g-a { grid-column: span 5; grid-row: span 3; }
.g-b { grid-column: span 4; grid-row: span 2; }
.g-c { grid-column: span 3; grid-row: span 2; }
.g-d { grid-column: span 4; grid-row: span 2; }
.g-e { grid-column: span 3; grid-row: span 2; }
.g-f { grid-column: span 5; grid-row: span 3; }
.g-g { grid-column: span 3; grid-row: span 2; }
.g-h { grid-column: span 4; grid-row: span 2; }

@media (max-width: 720px) {
  .gallery-item { grid-column: span 6 !important; grid-row: span 2; }
}

/* =========================================
   Reveal animations
   ========================================= */
[data-reveal] { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

[data-stagger] > * { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
[data-stagger].is-visible > * { opacity: 1; transform: translateY(0); }
[data-stagger].is-visible > *:nth-child(1) { transition-delay: 0.05s; }
[data-stagger].is-visible > *:nth-child(2) { transition-delay: 0.15s; }
[data-stagger].is-visible > *:nth-child(3) { transition-delay: 0.25s; }
[data-stagger].is-visible > *:nth-child(4) { transition-delay: 0.35s; }
[data-stagger].is-visible > *:nth-child(5) { transition-delay: 0.45s; }
[data-stagger].is-visible > *:nth-child(6) { transition-delay: 0.55s; }
[data-stagger].is-visible > *:nth-child(7) { transition-delay: 0.65s; }
[data-stagger].is-visible > *:nth-child(8) { transition-delay: 0.75s; }

[data-reveal-word] { display: inline-block; overflow: hidden; }
[data-reveal-word] > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease-out);
}
[data-reveal-word].is-visible > span { transform: translateY(0); }

/* =========================================
   Utilities
   ========================================= */
.text-teal { color: var(--teal); }
.text-clay { color: var(--clay); }
.text-italic { font-style: italic; }
.hide-mobile { display: revert; }
.show-mobile { display: none; }
@media (max-width: 640px) {
  .hide-mobile { display: none; }
  .show-mobile { display: revert; }
}

/* =========================================
   Mobile tuning
   ========================================= */
@media (max-width: 760px) {
  :root { --section-y: clamp(3.5rem, 9vh, 6rem); }
  .hero { padding-bottom: var(--s-12); }
  .hero-inner { padding-top: 8rem; gap: var(--s-10); }
  .hero-meta { gap: var(--s-5); margin-bottom: var(--s-6); }
  .hero-meta-item { font-size: 0.6875rem; letter-spacing: 0.18em; }
  .hero-grid { gap: var(--s-8); margin-top: var(--s-8); }
  .hero-tagline { font-size: 1rem; }
  .hero-ctas .row { width: 100%; }
  .hero-ctas .btn { flex: 1 1 auto; justify-content: center; }

  .page-hero { padding-top: 8rem; padding-bottom: var(--s-12); }
  .page-hero h1 { font-size: clamp(2.25rem, 11vw, 4rem); }

  .section { padding-block: var(--section-y); }
  .section-head { margin-bottom: var(--s-10); gap: var(--s-5); }

  .marquee { padding: var(--s-4) 0; }
  .marquee-item { font-size: clamp(1.25rem, 6vw, 1.75rem); }

  .story-grid { gap: var(--s-8); }
  .story-text .lead { font-size: 1.25rem; }
  .principles { gap: var(--s-5) var(--s-6); }

  .stay-body { padding: var(--s-6); }
  .stay-body h3 { font-size: 1.625rem; }

  .cove-inner { gap: var(--s-10); }
  .cove-stats { gap: var(--s-5) var(--s-6); padding-top: var(--s-6); }
  .stat .num { font-size: 2.5rem; }

  .process-row { padding: var(--s-6) 0; gap: var(--s-3) var(--s-5); }

  .cta-strip h2 { font-size: clamp(2rem, 10vw, 4rem); }
  .cta-strip .ctas { flex-direction: column; align-items: stretch; }
  .cta-strip .ctas .btn { justify-content: center; }

  .book-form { padding: var(--s-6); }
  .book-row { grid-template-columns: 1fr; gap: var(--s-1); }
  .book-row .label { padding-top: 0; }

  .tent-info { position: static; padding: var(--s-6); }

  .footer-grid { gap: var(--s-8); margin-bottom: var(--s-10); }
  .site-footer { padding-block: var(--s-12) var(--s-6); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .container, .container-narrow, .container-wide { padding-inline: var(--s-5); }
  .site-header { padding-inline: var(--s-5); }
  .hero { padding-inline: var(--s-5); }
}

/* Reduce motion respect */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  [data-stagger] > * { opacity: 1; transform: none; }
  [data-reveal-word] > span { transform: none; }
}
