/* ============================================================
   Timbercrest Camp & RV Park — Premium Design System
   Hand-built with high-end editorial aesthetics.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand Colors (Refined & WCAG AAA Compliant) */
  --tc-gold:        #fbc326;
  --tc-gold-dark:   #e3b123;
  --tc-gold-deep:   #c8960f;
  --tc-orange:      #f47821;
  --tc-orange-dark: #d8631a;
  --tc-brown:       #4a3728;   /* Richer, deeper chocolate brown */
  --tc-wood:        #5c452f;   /* Warm woody border tone */
  --tc-bark:        #4a3728;   /* Alias — vintage sign brown */
  --tc-forest:      #2d4a32;   /* Deep summer forest green */
  --tc-moss:        #3d5c40;   /* Woodsy green accent */
  --tc-sage:        #5a7354;   /* Warm summer sage */
  --tc-honey:       #e3b123;   /* Vintage gold (live site H1) */
  --tc-parchment:   #f5edd8;   /* Warm cream on dark overlays */
  --tc-butter:      #faf0c8;   /* Cream butter yellow — hero nav */
  --tc-butter-deep: #c9a227;   /* Deeper butter on white active pill */
  --tc-ink:         #2d2d2d;   /* High-contrast off-black */
  --tc-panel:       #fdf8f0;   /* Ultra-soft warm cream panel */
  --tc-panel-2:     #f9f0df;   /* Deeper warm gold-tinted panel */
  --tc-cream:       #fffefb;   /* Soft paper white */
  --bg:             #ffffff;
  --line:           #e6dcce;   /* Subtle warm separator */
  --muted:          #6e6557;   /* Elegant warm gray for secondary text */

  /* Type scale (Fluid typography using clamp) */
  --text-xs:  0.8125rem;                       /* 13px */
  --text-sm:  0.9375rem;                       /* 15px */
  --text-base: 1rem;                           /* 16px */
  --text-md:  clamp(1.0625rem, 0.3vw + 0.95rem, 1.1875rem);
  --text-lg:  clamp(1.25rem, 0.8vw + 1.1rem, 1.5625rem);
  --text-xl:  clamp(1.625rem, 1.5vw + 1.3rem, 2.25rem);
  --text-2xl: clamp(2.25rem, 3vw + 1.5rem, 3.5rem);

  /* Fonts */
  --font-body: "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-head: "Montserrat", "Arial Black", Arial, sans-serif;
  --font-serif: "Libre Caslon Text", "Georgia", "Times New Roman", serif;

  /* Spacing (Precise 8px grid) */
  --space-1: 0.25rem;  /* 4px */
  --space-2: 0.5rem;   /* 8px */
  --space-3: 0.75rem;  /* 12px */
  --space-4: 1rem;     /* 16px */
  --space-5: 1.5rem;   /* 24px */
  --space-6: 2rem;     /* 32px */
  --space-7: 3rem;     /* 48px */
  --space-8: 4rem;     /* 64px */
  --space-9: 6rem;     /* 96px */
  --space-16: 5rem;    /* 80px — major section rhythm (contact) */

  --color-text: var(--tc-ink);
  --color-text-muted: var(--muted);

  /* Structural Tokens */
  --radius: 16px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  
  /* Premium Layered Shadows */
  --shadow-sm: 
    0 1px 2px rgba(74, 55, 40, 0.03),
    0 2px 4px rgba(74, 55, 40, 0.03),
    0 4px 8px rgba(74, 55, 40, 0.04);
  
  --shadow: 
    0 4px 6px rgba(74, 55, 40, 0.02),
    0 12px 20px rgba(74, 55, 40, 0.04),
    0 24px 38px rgba(74, 55, 40, 0.06);

  --shadow-hover: 
    0 6px 10px rgba(74, 55, 40, 0.03),
    0 18px 30px rgba(74, 55, 40, 0.06),
    0 36px 54px rgba(74, 55, 40, 0.1);

  --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --container: 1180px;
  --header-z: 200;
}

@keyframes mobileNavLinkIn {
  from {
    opacity: 0;
    transform: translateY(0.65rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navBackdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: clamp(4.5rem, 12vw, 6rem);
  -webkit-text-size-adjust: 100%;
  background: #120d08;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.7;
  color: var(--tc-ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--tc-orange-dark); text-decoration: none; transition: var(--transition); }
a:hover { text-decoration: none; color: var(--tc-orange); }
ul { list-style: none; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--space-5); }
.section { padding-block: var(--space-8); }
.section--tight { padding-block: var(--space-6); }
.section--panel { background: var(--tc-panel); }
.section--cream { background: var(--tc-cream); }
.stack > * + * { margin-top: var(--space-4); }
.center { text-align: center; }
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--tc-orange);
  display: block;
  margin-bottom: var(--space-2);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--tc-brown); line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: var(--text-2xl); }
h2 { font-size: var(--text-xl); }
h3 { font-size: var(--text-lg); }
h4 { font-size: var(--text-md); }
p { max-width: 68ch; }
.lead { font-size: var(--text-md); color: var(--tc-ink); font-weight: 400; opacity: 0.95; }
.area-story {
  --area-story-gutter: clamp(4rem, 10vw, 8rem);
  padding-inline: var(--area-story-gutter);
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
}
.area-story__head {
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
}
.area-story__eyebrow {
  margin: 0 0 var(--space-3);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  color: var(--tc-orange-dark);
}
.area-story__title {
  margin-bottom: var(--space-6);
}
.area-story__intro {
  display: grid;
  gap: clamp(2rem, 4vw, 3.25rem);
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid var(--tc-gold);
  background:
    linear-gradient(90deg, rgba(251, 195, 38, 0.1) 0%, rgba(253, 248, 240, 0.92) 40%, rgba(249, 240, 223, 0.65) 100%);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-sm);
}
.area-story__section-label {
  margin: 0 0 var(--space-4);
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tc-brown);
}
.area-story__copy {
  max-width: 52rem;
  display: grid;
  gap: var(--space-4);
}
.area-story__lead {
  margin: 0;
  max-width: none;
  color: var(--tc-ink);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  line-height: 1.75;
}
.area-story__text {
  margin: 0;
  max-width: none;
  width: 100%;
  color: var(--muted);
  line-height: 1.85;
  font-size: var(--text-md);
}
.area-story__culture {
  display: grid;
  gap: var(--space-5);
  padding-block: var(--space-2) var(--space-4);
}
.area-story__culture-title {
  margin: 0;
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tc-brown);
}
.area-story__body {
  display: grid;
  gap: var(--space-5);
  width: 100%;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(74, 55, 40, 0.12);
}
.area-story__towns {
  width: 100%;
}
.area-story__towns .area-story__section-label {
  margin-bottom: var(--space-2);
}
.area-story__towns-note {
  margin: 0 0 var(--space-4);
  max-width: none;
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.65;
}
.area-story__towns-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.area-story__town {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.05rem;
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--tc-brown);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(74, 55, 40, 0.14);
  border-radius: var(--radius-pill);
  box-shadow: 0 1px 2px rgba(74, 55, 40, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.area-story__town:hover,
.area-story__town:focus-visible {
  color: var(--tc-orange-dark);
  background: #fff;
  border-color: rgba(74, 55, 40, 0.22);
  box-shadow: 0 2px 5px rgba(74, 55, 40, 0.1);
  outline: none;
}
.area-story__next {
  margin: 0;
  max-width: none;
  font-size: var(--text-sm);
}
.area-story__copy p {
  max-width: none;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: var(--text-md);
}
.area-story__next a {
  font-weight: 600;
  color: var(--tc-orange-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 120, 33, 0.35);
}
.area-story__next a:hover {
  color: var(--tc-brown);
  border-bottom-color: currentColor;
}
.area-story__copy p:last-child { margin-bottom: 0; }
.area-story__copy .lead {
  display: none;
}
.area-story__foot {
  padding-top: var(--space-5);
  border-top: 1px solid rgba(74, 55, 40, 0.12);
  display: grid;
  gap: var(--space-4);
}
.area-story__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4) var(--space-5);
}
.area-story__cta-note {
  margin: 0;
  max-width: none;
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.65;
}
.area-story__source {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--muted);
}
.area-story__source a {
  color: var(--tc-orange-dark);
  font-weight: 600;
  text-decoration: none;
}
.area-story__source a:hover {
  color: var(--tc-brown);
  text-decoration: underline;
}

.area-story__snapshots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
  padding-top: 0;
  border-top: 0;
}
@media (min-width: 960px) {
  .area-story__snapshots {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.area-story__snapshot {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.area-story__snapshot-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.area-story__snapshot-cap {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: var(--text-xs);
  line-height: 1.5;
  color: var(--muted);
}
.area-story__snapshot-cap strong {
  font-family: var(--font-head);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tc-brown);
}

.area-links {
  --area-links-gutter: clamp(4rem, 10vw, 8rem);
  padding-inline: var(--area-links-gutter);
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
}
.area-links__head {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.area-links__title.section-title {
  margin-bottom: var(--space-6);
}
.area-links__intro {
  padding: clamp(1.15rem, 2.2vw, 1.5rem) 0 clamp(1.15rem, 2.2vw, 1.5rem) clamp(1.15rem, 2.2vw, 1.5rem);
  border-left: 4px solid var(--tc-gold);
  background: linear-gradient(90deg, rgba(251, 195, 38, 0.07) 0%, transparent 62%);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.area-links__intro p {
  margin: 0;
  max-width: 48ch;
  color: var(--muted);
  font-size: var(--text-md);
  line-height: 1.75;
}
.area-links .tile-grid {
  gap: clamp(1.35rem, 2.5vw, 2rem);
  align-items: end;
}

/* Places to visit — interactive town explorer */
.area-explorer {
  --area-explorer-gutter: clamp(4rem, 10vw, 8rem);
  padding-inline: var(--area-explorer-gutter);
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
}
.area-explorer__head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.area-explorer__title.section-title {
  margin-bottom: var(--space-6);
}
.area-explorer__intro {
  padding: clamp(1.15rem, 2.2vw, 1.5rem) 0 clamp(1.15rem, 2.2vw, 1.5rem) clamp(1.15rem, 2.2vw, 1.5rem);
  border-left: 4px solid var(--tc-gold);
  background: linear-gradient(90deg, rgba(251, 195, 38, 0.07) 0%, transparent 62%);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.area-explorer__intro p {
  margin: 0;
  max-width: none;
  color: var(--muted);
  font-size: var(--text-md);
  line-height: 1.75;
}
.area-explorer__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.7rem;
  margin: var(--space-4) 0 0;
  padding: 0;
  list-style: none;
}
.area-explorer__highlights li {
  margin: 0;
  padding: 0.4rem 0.95rem;
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--tc-brown);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(74, 55, 40, 0.14);
  border-radius: var(--radius-pill);
  box-shadow: 0 1px 2px rgba(74, 55, 40, 0.06);
}
.area-explorer__shell {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
}
.area-explorer__tabs-label {
  margin: 0 0 var(--space-3);
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tc-brown);
}
.area-explorer__tabs-wrap {
  overflow: visible;
  margin-inline: 0;
  padding-inline: 0;
}
.area-explorer__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.7rem;
  overflow: visible;
  padding: 0;
}
.area-explorer__tab {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  min-width: 0;
  max-width: none;
  padding: 0.45rem 1.05rem;
  border: 1px solid rgba(74, 55, 40, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  color: var(--tc-brown);
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 1px 2px rgba(74, 55, 40, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.area-explorer__tab:hover {
  border-color: rgba(74, 55, 40, 0.22);
  background: #fff;
  box-shadow: 0 2px 5px rgba(74, 55, 40, 0.1);
  transform: none;
}
.area-explorer__tab.is-active {
  border-color: var(--tc-gold-deep);
  background: #fff;
  color: var(--tc-brown);
  box-shadow: 0 0 0 2px rgba(251, 195, 38, 0.35);
}
.area-explorer__tab:focus-visible {
  outline: 3px solid var(--tc-gold);
  outline-offset: 2px;
}
.area-explorer__panels {
  position: relative;
  scroll-margin-top: calc(var(--header-height, 72px) + 1rem);
}
.area-explorer__panel {
  display: none;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  animation: areaExplorerIn 0.35s ease;
  overflow-wrap: anywhere;
}
.area-explorer__panel.is-active {
  display: block;
}
.area-explorer__panel[hidden] {
  display: none !important;
}
@keyframes areaExplorerIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.reduced-motion .area-explorer__panel {
  animation: none;
}
.area-explorer__panel-head {
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}
.area-explorer__panel-title {
  margin: 0 0 0.35rem;
  color: var(--tc-brown);
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 700;
}
.area-explorer__panel-tagline {
  margin: 0 0 0.85rem;
  color: var(--tc-orange-dark);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-md);
}
.area-explorer__panel-copy {
  margin: 0 0 0.75rem;
  max-width: none;
  color: var(--muted);
  line-height: 1.75;
}
.area-explorer__panel-copy:last-child {
  margin-bottom: 0;
}
.area-explorer__activities {
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
  padding: clamp(1.15rem, 2.5vw, 1.5rem);
  border-radius: var(--radius-sm);
  background: rgba(251, 195, 38, 0.06);
  border: 1px solid rgba(74, 55, 40, 0.1);
}
.area-explorer__activities-title,
.area-explorer__photos-title {
  margin: 0 0 1rem;
  color: var(--tc-brown);
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.area-explorer__activities-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 901px) {
  .area-explorer__activities-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(1.25rem, 3vw, 2rem);
  }
}
.area-explorer__activity {
  display: grid;
  gap: 0.25rem;
}
.area-explorer__activity strong {
  color: var(--tc-brown);
  font-family: var(--font-head);
  font-size: var(--text-sm);
}
.area-explorer__activity-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 120, 33, 0.35);
}
.area-explorer__activity-link:hover {
  color: var(--tc-orange-dark);
  border-bottom-color: currentColor;
}
.area-explorer__activity span {
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}
.area-explorer__photos {
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}
.area-explorer__photo-grid {
  margin-top: 0;
}
.area-explorer__photos-empty {
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  color: var(--muted);
  font-style: italic;
  border: 2px dashed var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.55);
}
.area-explorer__links {
  margin: clamp(1rem, 2vw, 1.25rem) 0 0;
  font-size: var(--text-sm);
}
.area-explorer__links a {
  color: var(--tc-orange-dark);
  font-weight: 600;
}
.area-explorer__links a:hover {
  color: var(--tc-brown);
  text-decoration: underline;
}

/* Vintage postcard tiles (the Area) */
.tile-grid--vintage .tile.tile--vintage {
  aspect-ratio: auto;
  overflow: visible;
  display: flex;
  flex-direction: column;
  padding: clamp(0.55rem, 1.1vw, 0.8rem);
  background: var(--tc-panel);
  border: 2px solid var(--tc-wood);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.tile-grid--vintage .tile.tile--vintage::before,
.tile-grid--vintage .tile.tile--vintage::after {
  display: none;
}
.tile-grid--vintage .tile.tile--vintage:nth-child(4n + 1) { transform: rotate(-0.65deg); }
.tile-grid--vintage .tile.tile--vintage:nth-child(4n + 2) { transform: rotate(0.45deg) translateY(-5px); z-index: 1; }
.tile-grid--vintage .tile.tile--vintage:nth-child(4n + 3) { transform: rotate(-0.35deg); }
.tile-grid--vintage .tile.tile--vintage:nth-child(4n) { transform: rotate(0.55deg); }
.tile-grid--vintage .tile.tile--vintage:hover,
.tile-grid--vintage .tile.tile--vintage:focus-visible {
  transform: translateY(-4px) rotate(0deg);
  z-index: 2;
  border-color: var(--tc-gold-deep);
  box-shadow: var(--shadow-hover);
}
.reduced-motion .tile-grid--vintage .tile.tile--vintage,
.reduced-motion .tile-grid--vintage .tile.tile--vintage:hover,
.reduced-motion .tile-grid--vintage .tile.tile--vintage:focus-visible {
  transform: none;
}
.tile-grid--vintage .tile__frame {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: inset 0 0 0 1px rgba(74, 55, 40, 0.2);
  background: #2a2218;
}
.tile-grid--vintage .tile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: sepia(0.16) contrast(1.04) saturate(0.9);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}
.tile-grid--vintage .tile:hover .tile__img,
.tile-grid--vintage .tile:focus-visible .tile__img {
  transform: scale(1.03);
  filter: sepia(0.08) contrast(1.06) saturate(0.98);
}
.tile-grid--vintage .tile__caption {
  display: block;
  padding: var(--space-3) var(--space-2) var(--space-2);
  text-align: center;
  border-top: 1px dashed rgba(74, 55, 40, 0.18);
  margin-top: clamp(0.5rem, 1vw, 0.7rem);
}
.tile-grid--vintage .tile__label {
  position: static;
  display: block;
  padding: 0;
  color: var(--tc-brown);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.92rem, 1.05vw, 1.06rem);
  letter-spacing: 0.015em;
  text-transform: none;
  text-shadow: none;
  line-height: 1.4;
  background: transparent;
}
.tile-grid--vintage .tile__label::after {
  content: " \2197";
  font-family: var(--font-head);
  font-style: normal;
  font-size: 0.72em;
  color: var(--tc-orange-dark);
  opacity: 0.9;
}
.tile-grid--vintage .tile:focus-visible {
  outline: 3px solid var(--tc-gold);
  outline-offset: 3px;
}

.section-title { position: relative; margin-bottom: var(--space-6); }
.section-title h2 { color: var(--tc-brown); font-size: var(--text-xl); }
.section-title::after {
  content: ""; display: block; width: 48px; height: 4px;
  background: var(--tc-orange); border-radius: var(--radius-pill); margin-top: var(--space-3);
}
.section-title.center { text-align: center; }
.section-title.center::after { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: var(--font-head); font-weight: 700; font-size: var(--text-sm);
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.95em 1.8em; border-radius: var(--radius-pill);
  border: 2px solid transparent; cursor: pointer; transition: var(--transition);
  text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--tc-orange); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--tc-orange-dark); }

.btn--gold { background: var(--tc-gold); color: var(--tc-brown); box-shadow: var(--shadow-sm); text-transform: none; letter-spacing: 0.02em; font-weight: 600; }
.btn--gold:hover { background: var(--tc-gold-dark); }

.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.75); text-transform: none; letter-spacing: 0.02em; font-weight: 600; }
.btn--ghost:hover { background: #fff; color: var(--tc-brown); border-color: #fff; }

.btn--outline { background: transparent; color: var(--tc-orange-dark); border-color: var(--tc-orange); text-transform: none; letter-spacing: 0.02em; font-weight: 600; }
.btn--outline:hover { background: var(--tc-orange); color: #fff; }

/* ---------- Premium Placeholder Images ---------- */
.placeholder-img {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  background: #f5efe4; /* Soft warm gray-cream */
  border: 2px dashed var(--line);
  color: var(--tc-brown); font-family: var(--font-body); font-weight: 500;
  border-radius: var(--radius); overflow: hidden; padding: var(--space-5);
  transition: var(--transition);
}
.placeholder-img span { font-size: var(--text-sm); max-width: 80%; opacity: 0.85; margin-top: var(--space-2); }
.placeholder-img::before {
  content: ""; display: block; width: 32px; height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234a3728' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M2.25 15.75l5.159-5.159a2.25 2.25 0 013.182 0l5.159 5.159m-1.5-1.5l1.409-1.409a2.25 2.25 0 013.182 0l2.909 2.909m-18 3.75h16.5a1.5 1.5 0 001.5-1.5V6a1.5 1.5 0 00-1.5-1.5H3.75A1.5 1.5 0 002.25 6v12a1.5 1.5 0 001.5 1.5zm10.5-11.25h.008v.008h-.008V8.25zm.375 0a.375 0 11-.75 0 .375 0 01.75 0z' /%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat; opacity: 0.45;
}
.placeholder-img:hover { border-color: var(--tc-orange); background: #fdfaf3; }

.ratio-16x9 { aspect-ratio: 16 / 9; }
.ratio-4x3  { aspect-ratio: 4 / 3; }
.ratio-3x2  { aspect-ratio: 3 / 2; }
.ratio-1x1  { aspect-ratio: 1 / 1; }
.ratio-21x9 { aspect-ratio: 21 / 9; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--header-z);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(74,55,40,0.03);
  transition: var(--transition);
}

/* Home hero — live gold, fades into aerial (no blur) */
.site-header--hero {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding-top: env(safe-area-inset-top, 0px);
  background: linear-gradient(
    180deg,
    rgba(251, 195, 38, 0.88) 0%,
    rgba(251, 195, 38, 0.68) 46%,
    rgba(251, 195, 38, 0.34) 82%,
    rgba(251, 195, 38, 0) 100%
  );
  border-bottom: none;
  box-shadow: none;
}

/* iPhone notch / status bar — solid gold band, extends below status bar */
.site-header--hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: calc(env(safe-area-inset-top, 0px) + clamp(2rem, 8vh, 3.25rem));
  background: linear-gradient(
    180deg,
    var(--tc-gold) 0%,
    var(--tc-gold) 55%,
    rgba(251, 195, 38, 0.78) 78%,
    rgba(251, 195, 38, 0) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.site-header--hero .brand__logo {
  width: clamp(150px, 20vw, 210px);
  filter: none;
}

/* Hero pages — photo shows through header; long gold fade (no hard line) */
.page-home .site-header--hero:not(.is-scrolled),
.contact-page .site-header--hero:not(.is-scrolled),
.page-gallery .site-header--hero:not(.is-scrolled),
.area-page .site-header--hero:not(.is-scrolled) {
  background: linear-gradient(
    180deg,
    rgba(251, 195, 38, 0.62) 0%,
    rgba(251, 195, 38, 0.34) 55%,
    rgba(251, 195, 38, 0.1) 85%,
    rgba(251, 195, 38, 0) 100%
  );
}

.page-home .hero--home .hero__media::before,
.contact-page .hero--page .hero__media::before,
.page-gallery .hero--gallery-nav::before,
.area-page .hero--area-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(251, 195, 38, 0.48) 0%,
    rgba(251, 195, 38, 0.26) 22%,
    rgba(251, 195, 38, 0.1) 42%,
    rgba(251, 195, 38, 0.03) 62%,
    rgba(251, 195, 38, 0) 82%
  );
}

/* Solid gold pad behind logo — all hero pages (matches home) */
.site-header--hero:not(.is-scrolled) .brand {
  background: linear-gradient(
    180deg,
    rgba(251, 195, 38, 0.96) 0%,
    rgba(251, 195, 38, 0.88) 100%
  );
  padding: 0.45rem 0.85rem;
  border-radius: 12px;
  box-shadow:
    0 2px 14px rgba(74, 55, 40, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.site-header--hero.is-scrolled .brand {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

/* White ring, white type; active = solid white + butter-gold text */
.site-header--hero .main-nav a {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 6px rgba(74, 55, 40, 0.12);
  -webkit-text-stroke: 0;
  text-shadow: 0 1px 4px rgba(74, 55, 40, 0.45);
}

.site-header--hero .main-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: #fff;
}

.site-header--hero .main-nav a.is-active {
  background: #fff;
  color: var(--tc-butter-deep);
  font-weight: 700;
  border-color: #fff;
  box-shadow: 0 2px 12px rgba(74, 55, 40, 0.18);
  text-shadow: none;
}

.site-header--hero .main-nav a.is-active[target="_blank"]::after {
  content: none;
}

.site-header--hero .nav-toggle span {
  background: var(--tc-bark);
}

.site-header--hero .main-nav ul {
  gap: 0.45rem;
}

/* Scrolled past hero — gold bar (matches footer icon strip) */
.site-header--hero.is-scrolled {
  background: var(--tc-gold);
  border-bottom: 1px solid var(--tc-gold-deep);
  box-shadow: 0 4px 16px rgba(74, 55, 40, 0.08);
}

.site-header--hero.is-scrolled .main-nav a {
  color: var(--tc-brown);
  background: transparent;
  border: 0;
  box-shadow: none;
  text-shadow: none;
  font-weight: 400;
}

.site-header--hero.is-scrolled .main-nav a:hover {
  background: rgba(255, 255, 255, 0.4);
  color: var(--tc-brown);
  border-color: transparent;
}

.site-header--hero.is-scrolled .main-nav a.is-active {
  background: #fff;
  color: var(--tc-butter-deep);
  font-weight: 700;
  border: 0;
  box-shadow: 0 2px 8px rgba(74, 55, 40, 0.12);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding-block: var(--space-4); position: relative; z-index: 1; }

.brand { display: flex; align-items: center; line-height: 1; text-decoration: none; }
.brand:hover { text-decoration: none; opacity: 0.92; }

.brand__logo {
  display: block;
  width: clamp(155px, 20vw, 215px);
  height: auto;
}

/* Nav — vintage camp serif (matches live “the Park” voice) */
.main-nav ul { display: flex; align-items: center; gap: var(--space-2); }
.main-nav a {
  display: inline-block; font-family: var(--font-serif); font-size: 1.02rem;
  font-weight: 400; color: var(--tc-bark); padding: 0.6em 1.1em; border-radius: var(--radius-pill);
  text-decoration: none; transition: var(--transition); white-space: nowrap;
  letter-spacing: 0.02em;
}
.main-nav a:hover { background: rgba(90, 115, 84, 0.14); color: var(--tc-forest); text-decoration: none; }
.main-nav a.is-active { background: var(--tc-honey); color: var(--tc-bark); font-weight: 700; }
.main-nav a[target="_blank"]::after { content: none; }

/* Nav toggle (mobile) */
.nav-toggle { display: none; background: transparent; border: 0; cursor: pointer; padding: var(--space-2); min-width: 44px; min-height: 44px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--tc-brown); border-radius: 2px; margin: 5px 0; transition: var(--transition); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; width: 100%; }
.hero__media { position: relative; width: 100%; }
.hero .placeholder-img { border-radius: 0; width: 100%; aspect-ratio: auto; border: 0; }
.hero--home .hero__media {
  min-height: clamp(520px, 72vh, 820px);
}

.page-home .hero__photo {
  filter: saturate(1.1) contrast(1.03) sepia(0.06);
}
.hero__slides {
  position: absolute;
  inset: 0;
}
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  z-index: 0;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  display: block;
  background: #1e160e;
}
.area-page .hero--page .hero__video { object-position: center 42%; }
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(30,22,14,0.28) 0%, rgba(30,22,14,0.18) 45%, rgba(30,22,14,0.55) 100%);
}
.hero__scrim + .hero__overlay { z-index: 2; }
.contact-page .hero--page .hero__media { min-height: clamp(460px, 72vh, 720px); }
.contact-page .hero--page .hero__img { object-position: center center; }
.area-page .hero--page .hero__img { object-position: center 42%; }
.hero__photo.is-active {
  opacity: 1;
  z-index: 1;
  animation: heroKenBurns 7s ease-out forwards;
}
.hero__photo--from-left { object-position: 42% center; }
.hero__photo--from-right { object-position: 58% center; }
.hero__dots {
  position: absolute;
  left: 50%;
  bottom: var(--space-4);
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: var(--space-2);
}
.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.hero__dot.is-active {
  background: var(--tc-gold);
  border-color: #fff;
  transform: scale(1.15);
}
.reduced-motion .hero__photo { transition: none; animation: none; }
.reduced-motion .hero-animate { animation: none; opacity: 1; transform: none; }

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTitleGlow {
  0%, 100% {
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
  }
  50% {
    text-shadow: 0 4px 32px rgba(251, 195, 38, 0.35), 0 4px 28px rgba(0, 0, 0, 0.45);
  }
}

@keyframes heroUnderline {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

.hero__overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: flex-end; justify-content: center;
  text-align: center; padding: clamp(2rem, 6vh, 4.5rem) var(--space-5) clamp(3.5rem, 9vh, 5.5rem);
  background:
    linear-gradient(180deg, rgba(20, 16, 12, 0.05) 0%, rgba(20, 16, 12, 0.12) 45%, rgba(20, 16, 12, 0.55) 100%);
}

.hero--home .hero__overlay {
  padding-bottom: clamp(2.75rem, 7vh, 4.25rem);
  background:
    linear-gradient(180deg, rgba(12, 9, 6, 0) 0%, rgba(12, 9, 6, 0.14) 55%, rgba(12, 9, 6, 0.58) 100%);
}

.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;
}

.hero__panel {
  width: min(100%, 680px);
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 3vw, 2.5rem);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(18, 14, 10, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero__panel--actions {
  width: auto;
  max-width: min(100%, 720px);
  padding: clamp(0.85rem, 2vw, 1.15rem) clamp(1rem, 2.5vw, 1.5rem);
}

.hero__panel--actions .hero__action-bar {
  margin-top: 0;
}

.hero-animate {
  opacity: 0;
  animation: heroReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-animate--1 { animation-delay: 0.12s; }

.hero__eyebrow {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tc-gold);
  margin-bottom: var(--space-3);
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05em;
  margin: 0;
  line-height: 0.95;
  animation: heroTitleGlow 4s ease-in-out 1s infinite;
}

.hero__title-the {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.35rem, 1.5vw + 1rem, 2rem);
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.hero__title-main {
  position: relative;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.75rem, 6vw + 1rem, 4.75rem);
  letter-spacing: 0.03em;
  color: #fff;
  text-transform: capitalize;
  padding-bottom: 0.12em;
}

.hero__title-main::after {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 0;
  height: 3px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, transparent, var(--tc-gold) 25%, var(--tc-orange) 75%, transparent);
  transform-origin: center;
  animation: heroUnderline 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
  transform: scaleX(0);
  opacity: 0;
}

.hero__deck {
  margin-top: var(--space-4);
  max-width: 34ch;
  margin-inline: auto;
  font-size: clamp(0.95rem, 0.4vw + 0.85rem, 1.05rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.65);
}

.hero__action-bar {
  margin-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}

.hero--home .hero__action-bar {
  margin-top: 0;
}

.hero__action-bar--wood {
  display: inline-flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.4rem;
  border-radius: calc(var(--radius-pill) + 2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 252, 247, 0.22) 100%);
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease,
    transform 0.45s ease;
}

.hero__action-bar--wood.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
}

.reduced-motion .hero__action-bar--wood.is-hidden {
  transform: none;
}

.btn--hero-call,
.btn--hero-ghost {
  min-height: 3.35rem;
  align-self: stretch;
}

.btn--hero-call {
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  padding: 0 1.2em 0 0.55em;
  background: linear-gradient(145deg, #e86f18 0%, var(--tc-orange-dark) 55%, #b85212 100%);
  color: #fff;
  border: 2px solid rgba(180, 130, 60, 0.4);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  text-transform: none;
  letter-spacing: 0.02em;
  min-width: 0;
}

.btn--hero-call:hover {
  background: linear-gradient(145deg, var(--tc-orange) 0%, #b85212 100%);
  color: #fff;
  border-color: rgba(200, 150, 80, 0.55);
}

.btn--hero-call .btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.15em;
  height: 2.15em;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--hero-call .btn__icon svg {
  width: 1.15em;
  height: 1.15em;
}

.btn--hero-call .btn__stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.08em;
  line-height: 1.05;
  text-align: left;
}

.btn--hero-call .btn__label {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 1;
}

.btn--hero-call .btn__value {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0.95;
}

.btn--hero-ghost {
  padding: 0 1.15em;
  background:
    linear-gradient(165deg, rgba(48, 34, 22, 0.92) 0%, rgba(22, 15, 9, 0.96) 100%);
  color: rgba(255, 248, 238, 0.94);
  border: 1px solid rgba(110, 82, 52, 0.45);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 248, 235, 0.06);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.btn--hero-ghost:hover {
  background: linear-gradient(165deg, rgba(58, 42, 28, 0.95) 0%, rgba(32, 22, 14, 0.98) 100%);
  color: #fff;
  border-color: rgba(160, 120, 70, 0.55);
}

.hero__overlay h1:not(.hero__title) { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,0.35); max-width: 18ch; font-size: var(--text-2xl); }
.hero__overlay p:not(.hero__deck):not(.hero__eyebrow) { color: #fff; max-width: 56ch; margin-top: var(--space-3); font-size: var(--text-md); text-shadow: 0 1px 10px rgba(0,0,0,0.45); font-weight: 400; opacity: 0.95; }
.hero__cta { margin-top: var(--space-5); display: flex; gap: var(--space-4); flex-wrap: wrap; justify-content: center; }

.hero--home .placeholder-img { min-height: clamp(520px, 72vh, 820px); }
.hero--page .hero__media { min-height: clamp(280px, 42vh, 440px); }
.hero--page .placeholder-img { min-height: clamp(280px, 42vh, 440px); }

/* Gallery page — three-panel section nav collage */
.hero--gallery-nav {
  display: block;
  margin-top: 0;
}
.hero--gallery-nav .hero__media { display: none; }
.gallery-nav-collage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: clamp(380px, 58vh, 620px);
}
.gallery-nav-collage__panel {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: clamp(380px, 58vh, 620px);
  overflow: hidden;
  text-decoration: none;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.18);
}
.gallery-nav-collage__panel:last-child { border-inline-end: 0; }
.gallery-nav-collage__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-nav-collage__img--center { object-position: center 35%; }
.gallery-nav-collage__img--top { object-position: center 22%; }
.gallery-nav-collage__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 16, 12, 0.08) 0%, rgba(20, 16, 12, 0.22) 42%, rgba(20, 16, 12, 0.72) 100%);
  transition: background 0.35s ease;
}
.gallery-nav-collage__panel:hover .gallery-nav-collage__scrim,
.gallery-nav-collage__panel:focus-visible .gallery-nav-collage__scrim {
  background:
    linear-gradient(180deg, rgba(20, 16, 12, 0.12) 0%, rgba(20, 16, 12, 0.28) 42%, rgba(20, 16, 12, 0.82) 100%);
}
.gallery-nav-collage__panel:hover .gallery-nav-collage__img,
.gallery-nav-collage__panel:focus-visible .gallery-nav-collage__img {
  transform: scale(1.04);
}
.reduced-motion .gallery-nav-collage__panel:hover .gallery-nav-collage__img,
.reduced-motion .gallery-nav-collage__panel:focus-visible .gallery-nav-collage__img {
  transform: none;
}
.gallery-nav-collage__label {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 clamp(0.5rem, 1.5vw, 1rem) clamp(1.1rem, 2.8vw, 1.85rem);
  padding: 0.62em 1.15em;
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(0.68rem, 1.05vw, 0.88rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.07em;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  text-transform: lowercase;
  white-space: nowrap;
  background: rgba(18, 14, 10, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}
.gallery-nav-collage__panel:hover .gallery-nav-collage__label,
.gallery-nav-collage__panel:focus-visible .gallery-nav-collage__label {
  background: rgba(18, 14, 10, 0.52);
  border-color: rgba(251, 195, 38, 0.75);
  transform: translateY(-2px);
}
.reduced-motion .gallery-nav-collage__panel:hover .gallery-nav-collage__label,
.reduced-motion .gallery-nav-collage__panel:focus-visible .gallery-nav-collage__label {
  transform: none;
}
.gallery-nav-collage__panel:focus-visible {
  outline: 3px solid var(--tc-gold);
  outline-offset: -3px;
}
.hero__overlay--gallery-nav {
  align-items: center;
  justify-content: center;
  padding: clamp(6.5rem, 20vh, 10rem) var(--space-5) clamp(5.5rem, 14vh, 8rem);
  background:
    linear-gradient(180deg, rgba(12, 9, 6, 0) 0%, rgba(12, 9, 6, 0.06) 38%, rgba(12, 9, 6, 0.28) 100%);
  pointer-events: none;
}
.hero__overlay--gallery-nav h1 {
  margin: 0;
  margin-top: clamp(1.5rem, 6vh, 3.5rem);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
}
.page-gallery .site-header--hero + main > .hero--gallery-nav:first-child {
  margin-top: 0;
}
.area-page .site-header--hero + main > .hero--area-nav:first-child {
  margin-top: 0;
}
.hero--area-nav .gallery-nav-collage--six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.hero--area-nav .gallery-nav-collage--six .gallery-nav-collage__label {
  font-size: clamp(0.68rem, 0.9vw, 0.78rem);
  padding: 0.5em 0.75em;
  margin-inline: clamp(0.35rem, 1vw, 0.65rem);
  margin-bottom: clamp(0.85rem, 2vw, 1.35rem);
  letter-spacing: 0.05em;
}
.hero--area-nav .gallery-nav-collage__panel {
  cursor: default;
}
.hero--area-nav .gallery-nav-collage__panel:hover .gallery-nav-collage__img,
.hero--area-nav .gallery-nav-collage__panel:focus-within .gallery-nav-collage__img {
  transform: none;
}
.hero--area-nav .gallery-nav-collage__panel:hover .gallery-nav-collage__scrim,
.hero--area-nav .gallery-nav-collage__panel:focus-within .gallery-nav-collage__scrim {
  background:
    linear-gradient(180deg, rgba(20, 16, 12, 0.08) 0%, rgba(20, 16, 12, 0.22) 42%, rgba(20, 16, 12, 0.72) 100%);
}
.hero--area-nav .gallery-nav-collage__panel:hover .gallery-nav-collage__label,
.hero--area-nav .gallery-nav-collage__panel:focus-within .gallery-nav-collage__label {
  background: rgba(18, 14, 10, 0.38);
  border-color: rgba(255, 255, 255, 0.42);
  transform: none;
}
.hero--home .placeholder-img::before { width: 48px; height: 48px; }
.hero--home .placeholder-img span { font-size: var(--text-base); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: var(--space-6); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--space-6); box-shadow: var(--shadow-sm); transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--tc-gold-dark); }
.feature-card h3 { color: var(--tc-orange); display: flex; align-items: center; gap: var(--space-3); font-size: var(--text-lg); }
.feature-card ul { margin-top: var(--space-4); }
.feature-card li { padding: 0.45em 0; border-bottom: 1px dashed var(--line); display: flex; align-items: center; gap: var(--space-3); font-size: var(--text-sm); }
.feature-card li:last-child { border-bottom: 0; }
.feature-card li::before {
  content: ""; display: inline-block; width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23f47821' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5' /%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat; flex-shrink: 0;
}

/* Home — plan your stay quick links */
.explore-links {
  padding-block: clamp(3rem, 6vw, 4.75rem);
  background:
    linear-gradient(180deg, var(--tc-panel) 0%, rgba(253, 248, 240, 0.35) 100%);
}
.explore-links__wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 3vw, 2rem);
}
.explore-links__head {
  max-width: 38rem;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
  text-align: center;
}
.explore-links__eyebrow {
  margin: 0 0 var(--space-2);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tc-orange-dark);
}
.explore-links__title {
  margin: 0 0 var(--space-4);
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--tc-brown);
}
.explore-links__lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  font-weight: 500;
  line-height: 1.75;
}
.explore-links__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}
.explore-links__card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(0.85rem, 1.5vw, 1.15rem);
  min-height: 6.75rem;
  padding: clamp(1.15rem, 2vw, 1.5rem) clamp(1.15rem, 2.2vw, 1.65rem);
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(74, 55, 40, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(74, 55, 40, 0.06);
  transition: var(--transition);
}
.explore-links__card:hover,
.explore-links__card:focus-visible {
  border-color: rgba(251, 195, 38, 0.65);
  box-shadow: 0 8px 24px rgba(74, 55, 40, 0.1);
  transform: translateY(-3px);
}
.reduced-motion .explore-links__card:hover,
.reduced-motion .explore-links__card:focus-visible {
  transform: none;
}
.explore-links__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(251, 195, 38, 0.22) 0%, rgba(251, 195, 38, 0.08) 100%);
  border: 1px solid rgba(251, 195, 38, 0.35);
  color: var(--tc-orange-dark);
}
.explore-links__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}
.explore-links__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}
.explore-links__card-label {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--tc-brown);
}
.explore-links__card-hint {
  font-size: clamp(0.84rem, 0.95vw, 0.92rem);
  line-height: 1.5;
  color: var(--muted);
}
.explore-links__arrow {
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--tc-gold-deep);
  opacity: 0.55;
  transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}
.explore-links__card:hover .explore-links__arrow,
.explore-links__card:focus-visible .explore-links__arrow {
  opacity: 1;
  color: var(--tc-orange);
  transform: translateX(3px);
}
.explore-links__card:focus-visible {
  outline: 3px solid var(--tc-orange);
  outline-offset: 2px;
}

/* Split (text + media) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: center; }
.split--media-first .split__media { order: -1; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.gallery-grid .placeholder-img { aspect-ratio: 4/3; }
.gallery-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  background: #fff;
  transition: var(--transition);
}
.gallery-card:hover { box-shadow: var(--shadow-hover); border-color: var(--tc-orange); }
.gallery-card__open {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  text-align: left;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.gallery-card__open:focus-visible {
  outline: 3px solid var(--tc-orange);
  outline-offset: -3px;
}
.gallery-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: var(--transition);
}
.gallery-card__date {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
  padding: 0.4em 0.75em;
  background: rgba(253, 248, 240, 0.94);
  border: 1px solid rgba(230, 220, 206, 0.95);
  border-left: 3px solid var(--tc-gold);
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(74, 55, 40, 0.18);
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--tc-brown);
  pointer-events: none;
}
.gallery-card__badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  padding: 0.32em 0.7em;
  background: var(--tc-orange);
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 10px rgba(74, 55, 40, 0.24);
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  pointer-events: none;
}
.bakery-gallery__special-tag {
  display: inline-block;
  margin-left: 0.4em;
  padding: 0.05em 0.5em;
  background: var(--tc-orange);
  border-radius: var(--radius-pill);
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  vertical-align: middle;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2rem);
  background: rgba(20, 16, 12, 0.94);
}
.lightbox[hidden] { display: none !important; }
.lightbox.is-open {
  display: flex !important;
}
.millersburg-gallery {
  --millersburg-gutter: clamp(4rem, 10vw, 8rem);
  padding-inline: var(--millersburg-gutter);
}
.millersburg-gallery__head {
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
  margin-bottom: var(--space-7);
}
.millersburg-gallery__title {
  margin-bottom: var(--space-6);
}
.millersburg-gallery__intro {
  display: grid;
  gap: var(--space-5);
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0 clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 2.5vw, 1.75rem);
  border-left: 4px solid var(--tc-gold);
  background: linear-gradient(90deg, rgba(251, 195, 38, 0.07) 0%, transparent 62%);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.millersburg-gallery__copy {
  columns: 2;
  column-gap: clamp(2.5rem, 5vw, 4.5rem);
}
.millersburg-gallery__copy p {
  max-width: none;
  margin: 0 0 var(--space-4);
  break-inside: avoid;
  color: var(--muted);
  line-height: 1.75;
  font-size: var(--text-md);
}
.millersburg-gallery__copy p:last-child { margin-bottom: 0; }
.millersburg-gallery__copy .lead {
  column-span: all;
  margin-bottom: var(--space-5);
  color: var(--tc-ink);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  line-height: 1.8;
}
.millersburg-gallery__towns {
  width: 100%;
  padding-top: var(--space-2);
}
.millersburg-gallery__towns-label {
  margin: 0 0 var(--space-3);
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tc-orange-dark);
}
.millersburg-gallery__towns-hint {
  display: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--muted);
}
.millersburg-gallery__towns-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.millersburg-gallery__town {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  min-width: min(100%, 11.5rem);
  padding: 0.65rem 1rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(74, 55, 40, 0.14);
  border-left: 3px solid var(--tc-gold);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(74, 55, 40, 0.06);
  transition: var(--transition);
}
.millersburg-gallery__town:hover,
.millersburg-gallery__town:focus-visible {
  color: inherit;
  background: #fff;
  border-color: rgba(74, 55, 40, 0.22);
  border-left-color: var(--tc-orange);
  box-shadow: 0 4px 14px rgba(74, 55, 40, 0.1);
  outline: none;
}
.millersburg-gallery__town-name {
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--tc-brown);
}
.millersburg-gallery__town-tag {
  font-size: var(--text-xs);
  line-height: 1.45;
  color: var(--muted);
}
.millersburg-gallery__cta {
  display: grid;
  gap: var(--space-2);
  padding: var(--space-5) 0 var(--space-2);
  border-top: 1px solid rgba(74, 55, 40, 0.12);
}
.millersburg-gallery__cta-btn {
  width: fit-content;
  min-width: min(100%, 18rem);
  padding-inline: 1.35rem;
  font-size: var(--text-sm);
  text-align: center;
}
.millersburg-gallery__cta-note {
  margin: 0;
  max-width: 36rem;
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.6;
}
.millersburg-gallery__millersburg-note {
  margin: 0;
  padding-top: var(--space-3);
  max-width: none;
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.65;
}
.millersburg-gallery__millersburg-note a {
  color: var(--tc-orange-dark);
  font-weight: 600;
  text-decoration: none;
}
.millersburg-gallery__millersburg-note a:hover {
  color: var(--tc-brown);
  text-decoration: underline;
}
.millersburg-gallery__links {
  max-width: none;
  margin: 0;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(74, 55, 40, 0.12);
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.millersburg-gallery__links a {
  color: var(--tc-orange-dark);
  text-decoration: none;
}
.millersburg-gallery__links a:hover { color: var(--tc-brown); text-decoration: underline; }
.millersburg-gallery__links span {
  margin-inline: 0.65em;
  color: var(--line);
}
.gallery-grid--millersburg-today {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.25vw, 1.25rem);
}
.gallery-grid--millersburg-today .gallery-card__img { aspect-ratio: 4/3; }
.millersburg-gallery__subtitle {
  margin: var(--space-7) 0 var(--space-4);
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tc-brown);
}
.millersburg-gallery__subtitle::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: var(--space-3);
  background: var(--tc-gold);
  border-radius: var(--radius-pill);
}
.millersburg-vintage-collage {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}
.millersburg-vintage-collage__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.5vw, 1.35rem);
  align-items: end;
}
.millersburg-vintage-collage__row .gallery-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.millersburg-vintage-collage__row .gallery-card:nth-child(1) { transform: rotate(-0.75deg); }
.millersburg-vintage-collage__row .gallery-card:nth-child(2) { transform: translateY(-6px); z-index: 1; }
.millersburg-vintage-collage__row .gallery-card:nth-child(3) { transform: rotate(0.75deg); }
.reduced-motion .millersburg-vintage-collage__row .gallery-card { transform: none; }
.millersburg-vintage-collage__row .gallery-card:hover {
  transform: translateY(-4px) rotate(0deg);
  z-index: 2;
}
.millersburg-vintage-collage .gallery-card__img { aspect-ratio: 5/3; }

.bakery-gallery__inner { max-width: calc(var(--container) + 8rem); margin-inline: auto; }
.bakery-gallery__head { margin-bottom: var(--space-7); }
.bakery-gallery__title { margin-bottom: var(--space-5); }
.bakery-gallery__intro {
  max-width: 52rem;
  color: var(--muted);
  line-height: 1.75;
}
.bakery-gallery__intro p { margin: 0 0 var(--space-4); max-width: none; }
.bakery-gallery__intro p:last-child { margin-bottom: 0; }
.bakery-gallery__intro .lead {
  color: var(--tc-ink);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.15vw, 1.2rem);
}
.bakery-gallery__team-block {
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid var(--line);
}
.bakery-gallery__subtitle--team::after { background: var(--tc-gold); }
.bakery-gallery__team {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.bakery-gallery__team .gallery-card__img { aspect-ratio: 3/2; object-position: center center; }
.bakery-gallery__subtitle {
  margin: 0 0 var(--space-5);
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tc-brown);
}
.bakery-gallery__subtitle::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: var(--space-3);
  background: var(--tc-orange);
  border-radius: var(--radius-pill);
}
.bakery-gallery__treats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.25vw, 1.25rem);
}
.bakery-gallery__treats .gallery-card__img { aspect-ratio: 4/3; object-position: center center; }

.bakery-gallery__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-7);
  padding: 0;
  list-style: none;
}
.bakery-highlight {
  padding: var(--space-5);
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--tc-orange);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.bakery-highlight strong {
  display: block;
  margin-bottom: var(--space-2);
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--tc-brown);
}
.bakery-highlight span {
  display: block;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.65;
}
.bakery-gallery__more {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  margin-top: var(--space-7);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--tc-gold);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.bakery-gallery__menu-title {
  margin: 0 0 var(--space-4);
  font-family: var(--font-head);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--tc-brown);
}
.bakery-gallery__flavors {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2) var(--space-4);
}
.bakery-gallery__flavors li {
  position: relative;
  padding-left: 1.1em;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.5;
}
.bakery-gallery__flavors li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tc-gold);
}
.bakery-gallery__flavors li.bakery-gallery__seasonal {
  grid-column: 1 / -1;
  margin-top: var(--space-2);
  padding-left: 0;
  font-weight: 600;
  font-style: italic;
  color: var(--tc-ink);
}
.bakery-gallery__flavors li.bakery-gallery__seasonal::before { display: none; }
.bakery-gallery__cta p {
  margin: 0 0 var(--space-5);
  max-width: none;
  color: var(--muted);
  line-height: 1.7;
  font-size: var(--text-sm);
}
.bakery-gallery__cta .btn { width: fit-content; }

.campground-gallery {
  --campground-gutter: clamp(4rem, 10vw, 8rem);
  padding-inline: var(--campground-gutter);
}
.campground-gallery__head {
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
  margin-bottom: var(--space-7);
}
.campground-gallery__title {
  margin-bottom: var(--space-6);
}
.campground-gallery__intro {
  display: grid;
  gap: var(--space-5);
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0 clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 2.5vw, 1.75rem);
  border-left: 4px solid var(--tc-gold);
  background: linear-gradient(90deg, rgba(251, 195, 38, 0.07) 0%, transparent 62%);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.campground-gallery__copy {
  columns: 2;
  column-gap: clamp(2.5rem, 5vw, 4.5rem);
}
.campground-gallery__copy p {
  max-width: none;
  margin: 0 0 var(--space-4);
  break-inside: avoid;
  color: var(--muted);
  line-height: 1.75;
  font-size: var(--text-md);
}
.campground-gallery__copy p:last-child { margin-bottom: 0; }
.campground-gallery__copy .lead {
  column-span: all;
  margin-bottom: var(--space-5);
  color: var(--tc-ink);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  line-height: 1.8;
}
.campground-gallery__photos {
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
}

#campground-map,
#camping-sites,
#around-campground,
#bakery,
#millersburg,
#testimonials,
#rates,
#contact-policies {
  scroll-margin-top: clamp(4.5rem, 12vw, 6rem);
}

.park-map-gallery {
  --park-map-gutter: clamp(2.5rem, 6vw, 5rem);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  padding-inline: var(--park-map-gutter);
}
.park-map-gallery__inner {
  max-width: 1120px;
  margin-inline: auto;
}
.park-map-gallery__head {
  margin-bottom: var(--space-5);
}
.park-map-gallery__title.section-title {
  margin-bottom: 0;
}
.park-map-gallery__layout {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(250px, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}
.park-map-gallery__figure {
  margin: 0;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.park-map-gallery__side {
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.park-map-gallery__guide {
  flex: 1;
  height: 100%;
  padding: clamp(1.1rem, 2.1vw, 1.45rem) clamp(1.1rem, 2.1vw, 1.45rem) clamp(1.1rem, 2.1vw, 1.45rem) clamp(1.2rem, 2.2vw, 1.5rem);
  border-left: 4px solid var(--tc-gold);
  background:
    linear-gradient(90deg, rgba(251, 195, 38, 0.09) 0%, rgba(255, 255, 255, 0.78) 42%, rgba(255, 255, 255, 0.52) 100%);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-sm);
}
.park-map-gallery__eyebrow {
  margin: 0 0 var(--space-2);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tc-orange-dark);
}
.park-map-gallery__lead {
  margin: 0 0 var(--space-4);
  max-width: 36ch;
  color: var(--tc-ink);
  font-weight: 500;
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  line-height: 1.65;
}
.park-map-gallery__list {
  margin: 0 0 var(--space-4);
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}
.park-map-gallery__list li {
  position: relative;
  padding-left: 1.1em;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}
.park-map-gallery__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tc-gold);
}
.park-map-gallery__list strong {
  color: var(--tc-brown);
  font-weight: 700;
}
.park-map-gallery__note {
  margin: 0;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(230, 220, 206, 0.95);
  max-width: 38ch;
  color: var(--muted);
  font-size: var(--text-xs);
  line-height: 1.65;
  letter-spacing: 0.01em;
}
.park-map-gallery__open {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  padding: clamp(1.1rem, 2.1vw, 1.45rem) clamp(1.1rem, 2.1vw, 1.45rem) clamp(1.1rem, 2.1vw, 1.45rem) clamp(1.2rem, 2.2vw, 1.5rem);
  border: 0;
  border-left: 4px solid var(--tc-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background:
    linear-gradient(90deg, rgba(251, 195, 38, 0.09) 0%, rgba(255, 255, 255, 0.78) 42%, rgba(255, 255, 255, 0.52) 100%);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}
.park-map-gallery__open:hover,
.park-map-gallery__open:focus-visible {
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}
.reduced-motion .park-map-gallery__open:hover,
.reduced-motion .park-map-gallery__open:focus-visible {
  transform: none;
}
.park-map-gallery__open img {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: calc(var(--radius-sm) - 4px);
  transition: opacity 0.35s ease;
}
.park-map-gallery__open:hover img,
.park-map-gallery__open:focus-visible img {
  opacity: 0.97;
}
.park-map-gallery__expand {
  position: absolute;
  right: clamp(1rem, 2.5vw, 1.5rem);
  bottom: clamp(1rem, 2.5vw, 1.5rem);
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  padding: 0.55em 0.95em;
  background: rgba(74, 55, 40, 0.92);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--radius-sm);
  line-height: 1;
  box-shadow: 0 2px 10px rgba(45, 34, 24, 0.22);
  transition: var(--transition);
  pointer-events: none;
}
.park-map-gallery__open:hover .park-map-gallery__expand,
.park-map-gallery__open:focus-visible .park-map-gallery__expand {
  background: var(--tc-brown);
}
.park-map-gallery__expand-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sites-gallery {
  --sites-gutter: clamp(4rem, 10vw, 8rem);
  padding-inline: var(--sites-gutter);
}
.sites-gallery__head {
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
  margin-bottom: var(--space-7);
}
.sites-gallery__title {
  margin-bottom: var(--space-6);
}
.sites-gallery__intro {
  display: grid;
  gap: var(--space-5);
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0 clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 2.5vw, 1.75rem);
  border-left: 4px solid var(--tc-orange);
  background: linear-gradient(90deg, rgba(232, 119, 34, 0.06) 0%, transparent 62%);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.sites-gallery__copy {
  columns: 2;
  column-gap: clamp(2.5rem, 5vw, 4.5rem);
}
.sites-gallery__copy p {
  max-width: none;
  margin: 0 0 var(--space-4);
  break-inside: avoid;
  color: var(--muted);
  line-height: 1.75;
  font-size: var(--text-md);
}
.sites-gallery__copy p:last-child { margin-bottom: 0; }
.sites-gallery__copy .lead {
  column-span: all;
  margin-bottom: var(--space-5);
  color: var(--tc-ink);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  line-height: 1.8;
}
.sites-gallery__photos {
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
}
.sites-gallery__photos .millersburg-gallery__subtitle:first-child {
  margin-top: 0;
}

.gallery-panorama {
  margin: var(--space-6) 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  background: #fff;
}
.gallery-panorama__link {
  display: block;
}
.gallery-panorama__link img {
  width: 100%;
  height: auto;
  display: block;
}

.lightbox__frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  max-width: 100%;
  width: auto;
}
.lightbox__img {
  display: block;
  width: auto;
  height: auto;
  max-width: 96vw;
  max-height: 90vh;
  object-fit: contain;
  border: 4px solid rgba(253, 248, 240, 0.92);
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}
.lightbox__date {
  margin: 0;
  padding: 0.45em 1em;
  background: rgba(253, 248, 240, 0.94);
  border: 1px solid rgba(230, 220, 206, 0.95);
  border-left: 3px solid var(--tc-gold);
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--tc-brown);
}
.lightbox__date[hidden] { display: none; }
.lightbox__close {
  position: absolute;
  top: clamp(0.75rem, 3vw, 1.25rem);
  right: clamp(0.75rem, 3vw, 1.25rem);
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.28); }
.lightbox__close:focus-visible {
  outline: 3px solid var(--tc-gold);
  outline-offset: 2px;
}
body.lightbox-open { overflow: hidden; }

/* Testimonials */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.quote {
  background: var(--tc-panel); border-radius: var(--radius); padding: var(--space-6);
  position: relative; box-shadow: var(--shadow-sm); transition: var(--transition);
  border-top: 4px solid var(--tc-orange);
}
.quote:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.quote p { font-family: var(--font-serif); font-style: italic; color: var(--tc-brown); font-size: var(--text-md); line-height: 1.6; position: relative; z-index: 2; }
.quote cite { display: block; margin-top: var(--space-4); font-style: normal; font-weight: 700; color: var(--tc-orange-dark); font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.05em; }
.quote::before {
  content: "“"; position: absolute; top: var(--space-4); left: var(--space-4);
  font-family: var(--font-serif); font-size: 5rem; color: var(--tc-gold); opacity: 0.25; line-height: 1; z-index: 1;
}

/* Area tiles */
.tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid var(--line);
  background: #fff;
}
.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20, 16, 12, 0.04) 0%, rgba(20, 16, 12, 0.18) 52%, rgba(20, 16, 12, 0.78) 100%);
  transition: background 0.35s ease;
  pointer-events: none;
}
.tile::after {
  content: "";
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  z-index: 2;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a3728' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E") center / 0.72rem no-repeat;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.tile:hover,
.tile:focus-visible {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--tc-gold-dark);
}
.tile:hover::before,
.tile:focus-visible::before {
  background: linear-gradient(180deg, rgba(20, 16, 12, 0.08) 0%, rgba(20, 16, 12, 0.22) 52%, rgba(20, 16, 12, 0.84) 100%);
}
.tile:hover::after,
.tile:focus-visible::after {
  opacity: 1;
  transform: none;
}
.reduced-motion .tile:hover,
.reduced-motion .tile:focus-visible {
  transform: none;
}
.reduced-motion .tile:hover::after,
.reduced-motion .tile:focus-visible::after {
  transform: none;
}
.tile .placeholder-img { position: absolute; inset: 0; border-radius: 0; transition: var(--transition); border: 0; }
.tile .tile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.tile:hover .placeholder-img,
.tile:hover .tile__img,
.tile:focus-visible .tile__img { transform: scale(1.04); }
.tile:hover .placeholder-img { background: #fdfaf3; }
.tile__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: var(--space-5) var(--space-4) var(--space-4);
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(0.88rem, 1.05vw, 1rem);
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
  background: transparent;
  transition: var(--transition);
}
.tile:focus-visible {
  outline: 3px solid var(--tc-gold);
  outline-offset: 2px;
}

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: var(--space-7); align-items: start; }
.contact-main-col { display: flex; flex-direction: column; gap: var(--space-8); }

.contact-info {
  background: var(--tc-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.contact-info__label {
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-2);
}
.contact-info__label:not(:first-child) { margin-top: var(--space-5); }
.contact-info__phone { margin: 0 0 var(--space-2); }
.contact-info__phone a {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: var(--text-xl);
  color: var(--tc-orange-dark);
  text-decoration: none;
}
.contact-info__phone a:hover { color: var(--tc-orange); }
.contact-info__email,
.contact-info__address {
  margin: 0;
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.6;
}
.contact-info__email a { color: var(--tc-orange-dark); font-weight: 600; }
.contact-info__actions { margin: var(--space-5) 0 0; }
.contact-info__actions .btn--view-rates { width: 100%; }

.phone-cta {
  background: var(--tc-orange); color: #fff; border-radius: var(--radius);
  padding: var(--space-6); text-align: center; margin-bottom: var(--space-6);
  box-shadow: var(--shadow); transition: var(--transition);
}
.phone-cta:hover { background: var(--tc-orange-dark); box-shadow: var(--shadow-hover); }
.phone-cta span { display: none; }
.phone-cta a { font-family: var(--font-serif); font-weight: 700; font-size: var(--text-xl); color: #fff; text-decoration: none; text-transform: lowercase; }

/* Form */
.form { display: grid; gap: var(--space-5); }
.form[hidden] { display: none; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.field { display: flex; flex-direction: column; gap: var(--space-2); }
.field label { font-family: var(--font-head); font-weight: 700; font-size: var(--text-sm); color: var(--tc-brown); letter-spacing: 0.02em; }
.field .req { color: var(--tc-orange); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: var(--text-base); color: var(--tc-ink);
  padding: 0.85em 1.1em; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: #fff; width: 100%;
  transition: var(--transition);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--tc-orange); box-shadow: 0 0 0 4px rgba(244,120,33,.12); background: var(--tc-cream); }
.field textarea { resize: vertical; min-height: 140px; }
.field.has-error input, .field.has-error textarea { border-color: #d64545; }
.field__error { color: #d64545; font-size: var(--text-xs); display: none; }
.field.has-error .field__error { display: block; }
.hp { position: absolute; left: -9999px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: var(--text-xs); color: var(--muted); margin-top: var(--space-2); }

.form-alert {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  line-height: 1.55;
  border: 1px solid var(--line);
}
.form-alert--success {
  background: #eef8f0;
  border-color: #9bc4a3;
  color: #2d4a32;
}
.form-alert--error {
  background: #fdf0ee;
  border-color: #e8a99e;
  color: #7a2e22;
}

/* Submit button loading state */
.btn.is-loading { opacity: 0.75; cursor: progress; }

/* Animated success confirmation */
.form-success {
  text-align: center;
  padding: var(--space-7) var(--space-5);
  background: var(--tc-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.form-success__check { display: inline-block; margin-bottom: var(--space-4); }
.form-success__circle {
  stroke: var(--tc-forest);
  stroke-width: 2.5;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
}
.form-success__tick {
  stroke: var(--tc-forest);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
}
.form-success.is-visible .form-success__circle {
  animation: tc-check-circle 0.5s ease-out forwards;
}
.form-success.is-visible .form-success__tick {
  animation: tc-check-tick 0.35s 0.45s ease-out forwards;
}
.form-success.is-visible {
  animation: tc-success-pop 0.4s ease-out;
}
.form-success__title {
  font-family: var(--font-head);
  color: var(--tc-forest);
  font-size: var(--text-xl);
  margin: 0 0 var(--space-3);
}
.form-success__text {
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.6;
  max-width: 40ch;
  margin: 0 auto var(--space-5);
}
.form-success__text a { color: var(--tc-orange-dark); font-weight: 700; }
.form-success .btn--ghost {
  background: transparent;
  color: var(--tc-brown);
  border: 1.5px solid var(--tc-brown);
}
.form-success .btn--ghost:hover {
  background: var(--tc-brown);
  color: #fff;
  border-color: var(--tc-brown);
}

@keyframes tc-check-circle {
  to { stroke-dashoffset: 0; }
}
@keyframes tc-check-tick {
  to { stroke-dashoffset: 0; }
}
@keyframes tc-success-pop {
  0% { transform: scale(0.96); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .form-success.is-visible .form-success__circle,
  .form-success.is-visible .form-success__tick { animation: none; stroke-dashoffset: 0; }
  .form-success.is-visible { animation: none; }
}

/* Rules sidebar */
.rules { background: var(--tc-panel); border-radius: var(--radius); padding: var(--space-6); border: 1px solid var(--line); }
.rules h3 { color: var(--tc-orange-dark); margin-top: var(--space-5); font-size: var(--text-md); border-bottom: 1px solid var(--line); padding-bottom: 4px; }
.rules h3:first-child { margin-top: 0; }
.rules p { font-size: var(--text-sm); margin-top: var(--space-2); color: var(--tc-ink); opacity: 0.9; }

.contact-page .rules--policies {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6);
}
.contact-page .policy-card {
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--line);
}
.contact-page .policy-card:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.contact-page .policy-card__title {
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--tc-brown);
  margin: 0 0 var(--space-2);
  letter-spacing: 0.02em;
}
.contact-page .policy-card__body {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
  max-width: none;
  opacity: 1;
}

.contact-page main > .section:not(.hero) { padding-block: var(--space-16); }
.contact-page main > .hero.hero--page { padding-block: 0; }
.contact-page .contact-layout { gap: var(--space-8); }
.contact-page .section-title { margin-bottom: var(--space-8); }

.btn--view-rates {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 2px solid var(--tc-orange);
  color: var(--tc-orange);
  background: transparent;
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 600;
}
.btn--view-rates:hover {
  background: var(--tc-gold);
  border-color: var(--tc-gold);
  color: var(--tc-brown);
}

/* Rates */
.rates { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-6); box-shadow: var(--shadow-sm); }
.rates table { width: 100%; border-collapse: collapse; margin-top: var(--space-3); }
.rates th, .rates td { text-align: left; padding: 0.85em 0.75em; border-bottom: 1px solid var(--line); font-size: var(--text-sm); }
.rates th { font-family: var(--font-head); color: var(--tc-brown); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: var(--text-xs); }
.rates td { color: var(--tc-ink); }
.rates td:last-child { text-align: right; font-weight: 700; color: var(--tc-orange-dark); white-space: nowrap; font-size: var(--text-md); }
.rates__note { font-size: var(--text-xs); color: var(--muted); margin-top: var(--space-4); line-height: 1.6; }
.rates__links { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-top: var(--space-5); }

/* 2026 tabbed rates (contact) */
.rates--2026 { padding: var(--space-6) var(--space-5); }
.rates-tabs__radio {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.rates-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--space-5);
}
.rates-tabs__nav label {
  cursor: pointer;
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 0 1em;
  margin-bottom: -1px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  user-select: none;
  letter-spacing: 0.04em;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.rates-tabs__nav label:hover { color: var(--tc-orange); }
#rates-tab-individual:checked ~ .rates-tabs__nav label[for="rates-tab-individual"],
#rates-tab-group:checked ~ .rates-tabs__nav label[for="rates-tab-group"],
#rates-tab-fall:checked ~ .rates-tabs__nav label[for="rates-tab-fall"],
#rates-tab-winter:checked ~ .rates-tabs__nav label[for="rates-tab-winter"],
#rates-tab-meeting:checked ~ .rates-tabs__nav label[for="rates-tab-meeting"] {
  color: var(--tc-orange);
  border-bottom-color: var(--tc-orange);
}
.rates-tabs__panel { display: none; animation: rates-tab-in 0.2s ease; }
@keyframes rates-tab-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
#rates-tab-individual:checked ~ .rates-tabs__panel--individual,
#rates-tab-group:checked ~ .rates-tabs__panel--group,
#rates-tab-fall:checked ~ .rates-tabs__panel--fall,
#rates-tab-winter:checked ~ .rates-tabs__panel--winter,
#rates-tab-meeting:checked ~ .rates-tabs__panel--meeting { display: block; }
.rates-tabs__intro {
  font-size: var(--text-sm);
  color: var(--tc-brown);
  margin: 0 0 var(--space-4);
  font-weight: 500;
}
.rates-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  background: var(--tc-cream);
}
.rates-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  margin: 0;
}
.rates-table th,
.rates-table td {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--line);
  font-size: var(--text-sm);
  vertical-align: top;
}
.rates-table thead th {
  background: var(--tc-panel-2);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.rates-table tbody tr:nth-child(even) { background: var(--tc-parchment); }
.rates-table tbody tr:last-child td { border-bottom: 0; }
.rates-table td:first-child {
  min-width: 11rem;
  max-width: 18rem;
  color: var(--tc-ink);
  font-weight: 500;
  line-height: 1.45;
}
.rates-table__price {
  text-align: right !important;
  font-weight: 600 !important;
  color: var(--tc-orange) !important;
  white-space: nowrap;
  font-size: var(--text-sm) !important;
}
.rates-fall { padding: var(--space-2) 0; }
.rates-fall__dates {
  font-family: var(--font-head);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--tc-brown);
  margin: 0 0 var(--space-3);
}
.rates-fall__rate {
  font-size: var(--text-base);
  color: var(--tc-ink);
  margin: 0 0 var(--space-3);
  line-height: 1.5;
}
.rates-fall__note {
  font-size: var(--text-sm);
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
  padding: var(--space-4);
  background: var(--tc-parchment);
  border-radius: calc(var(--radius) - 2px);
  border-left: 3px solid var(--tc-gold);
}
.rates-deposits {
  margin-top: var(--space-6);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  background: var(--tc-panel);
  overflow: hidden;
}
.rates-deposits__summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--text-md);
  color: var(--tc-brown);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), color var(--transition);
}
.rates-deposits__summary::-webkit-details-marker { display: none; }
.rates-deposits__summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--tc-orange);
  line-height: 1;
  transition: transform var(--transition);
}
.rates-deposits[open] .rates-deposits__summary {
  background: var(--tc-parchment);
  color: var(--tc-orange-dark);
  border-bottom: 1px solid var(--line);
}
.rates-deposits[open] .rates-deposits__summary::after {
  content: "−";
  transform: rotate(180deg);
}
.rates-deposits__list {
  margin: 0;
  padding: var(--space-4) var(--space-5) var(--space-5);
  list-style: none;
}
.rates-deposits__list li {
  position: relative;
  padding: 0.45em 0 0.45em 1.25em;
  font-size: var(--text-sm);
  color: var(--tc-ink);
  line-height: 1.55;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.rates-deposits__list li:last-child { border-bottom: 0; }
.rates-deposits__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tc-gold);
}
.rates--2026 .rates__links {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--line);
}
@media (max-width: 640px) {
  .rates--2026 { padding: var(--space-5) var(--space-4); }
  .rates-tabs__nav { gap: 0; }
  .rates-tabs__nav label {
    flex: 1 1 auto;
    text-align: center;
    font-size: var(--text-xs);
    padding: 0 0.35em;
    min-height: 40px;
  }
  .rates-table { min-width: 480px; }
  .rates--2026 .rates__links { flex-direction: column; }
  .rates--2026 .rates__links .btn { width: 100%; text-align: center; }
  .contact-page main > .section:not(.hero) { padding-block: var(--space-8); }
}

/* Ground rules */
.ground-rules { background: var(--tc-cream); border: 1px dashed var(--tc-gold-deep); border-radius: var(--radius); padding: var(--space-6); }
.ground-rules ul { columns: 2; column-gap: var(--space-7); }
.ground-rules li { break-inside: avoid; padding: 0.5em 0 0.5em 1.5em; position: relative; font-size: var(--text-sm); color: var(--tc-ink); }
.ground-rules li::before {
  content: ""; display: inline-block; width: 8px; height: 8px; background: var(--tc-orange);
  border-radius: var(--radius-pill); position: absolute; left: 0; top: 14px;
}

/* Map */
.map-block {
  display: grid; grid-template-columns: auto 1fr; gap: var(--space-6); align-items: stretch;
  width: 100%;
  background: var(--tc-brown); border: 2px solid var(--tc-wood); border-radius: var(--radius);
  padding: var(--space-5); box-shadow: var(--shadow);
}
.map-block__media { width: auto; }
.map-block__side {
  display: flex; align-items: center; justify-content: center;
  min-width: 0; min-height: 100%;
}
.map-block__actions {
  width: 100%; max-width: 420px;
  background: var(--tc-panel); border: 1px solid var(--tc-gold-deep);
  border-radius: var(--radius-sm); padding: 6px;
  text-align: center; box-shadow: var(--shadow-sm);
}
.map-block__actions-inner {
  border: 1px dashed var(--tc-gold-dark);
  border-radius: calc(var(--radius-sm) - 4px);
  padding: var(--space-6) var(--space-5);
  display: flex; flex-direction: column; align-items: center;
}
.map-block__icon {
  width: 32px; height: 32px; color: var(--tc-orange);
  margin-bottom: var(--space-3);
}
.map-block__eyebrow {
  font-family: var(--font-head); font-size: 11px; font-weight: 700; 
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted);
  margin-bottom: var(--space-2); display: block;
}
.map-block__address {
  font-family: var(--font-serif); font-size: var(--text-lg); font-weight: 700; color: var(--tc-brown);
  margin-bottom: var(--space-5); max-width: none; line-height: 1.4;
}
.map-block__buttons { display: flex; flex-direction: column; gap: var(--space-3); width: 100%; }
.map-block__buttons .btn { width: 100%; text-align: center; }
.map-block__figure {
  position: relative; display: block; width: fit-content; max-width: 100%;
  border-radius: var(--radius-sm); overflow: hidden;
  border: 4px solid var(--tc-panel); box-shadow: var(--shadow-sm);
}
.map-block__figure img { width: 380px; max-width: 100%; height: auto; display: block; }
.map-block__figure:hover img { opacity: 0.96; }
.map-block__expand {
  position: absolute; right: var(--space-3); bottom: var(--space-3);
  display: inline-flex; align-items: center; gap: 0.45em;
  padding: 0.5em 0.85em;
  background: rgba(74, 55, 40, 0.92); color: #fff;
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600;
  border-radius: var(--radius-sm); line-height: 1;
  box-shadow: 0 2px 8px rgba(45, 34, 24, 0.25);
  transition: var(--transition);
}
.map-block__figure:hover .map-block__expand { background: var(--tc-brown); }
.map-block__expand-icon {
  width: 14px; height: 14px; flex-shrink: 0;
  stroke: currentColor; fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.map-block .placeholder-img { aspect-ratio: 16/10; }

/* Simpler map row (gallery — image + button stack) */
.map-block--simple {
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
.map-block--simple .stack {
  align-items: center;
  text-align: center;
}
.map-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.map-figure__link {
  display: block;
  width: 100%;
  max-width: 960px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 4px solid var(--tc-panel);
  box-shadow: var(--shadow);
  cursor: pointer;
}
.map-figure__link img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}
.map-figure__link:hover img { opacity: 0.96; }
.map-figure__caption {
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(253, 248, 240, 0.9);
}

/* Info bar (phone / map CTA) — matched pair, no outer box */
.section--info.section--bleed {
  padding-block: var(--space-4) var(--space-5);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(12.5rem, 14.75rem));
  gap: var(--space-4);
  width: fit-content;
  max-width: calc(100% - clamp(2rem, 4vw, 3rem));
  margin-inline: auto;
}

.info-strip__action {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.85rem;
  min-height: 3.25rem;
  padding: 0.55rem 1.35rem 0.55rem 0.55rem;
  border-radius: var(--radius-pill);
  background: #2a1e14;
  border: 1px solid rgba(251, 195, 38, 0.28);
  color: var(--tc-parchment);
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.info-strip__action:hover {
  background: #3d2b1c;
  border-color: rgba(251, 195, 38, 0.42);
  color: #fff;
}

.info-strip__action:focus-visible {
  outline: 2px solid var(--tc-gold);
  outline-offset: 3px;
}

.info-strip__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(251, 195, 38, 0.28);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.info-strip__action:hover .info-strip__icon-wrap {
  background: rgba(251, 195, 38, 0.08);
  border-color: rgba(251, 195, 38, 0.42);
}

.info-strip__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
  min-width: 0;
  padding-right: 0.25rem;
}

.info-strip__label {
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.7);
  line-height: 1;
}

.info-strip__value {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1rem, 0.85vw + 0.92rem, 1.125rem);
  color: var(--tc-gold);
  letter-spacing: 0.02em;
  line-height: 1.15;
  white-space: nowrap;
}

.info-strip__icon {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  stroke: var(--tc-gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section--bleed { padding-block: var(--space-6); }

main:has(.section--info) + .site-footer {
  margin-top: var(--space-5);
}

/* ---------- Footer — vintage woody camp sign (deep amber + walnut) ---------- */
.site-footer {
  margin-top: var(--space-9);
  border-top: 0;
  box-shadow: 0 -6px 28px rgba(22, 16, 8, 0.14);
  background: #120d08;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  --footer-brown: #2a1e14;
  --footer-brown-mid: #3d2b1c;
  --footer-brown-deep: #120d08;
  --footer-ink: #1a1208;
}

/* Home — camp life: gold icon band + vintage photo strip + walnut quote */
.camp-life.section {
  padding-block: 0;
}

.camp-life__inner {
  /* Named camp-life palette (matches footer vintage sign) */
  --cl-honey: #f0bc28;
  --cl-gold: var(--tc-gold-dark);
  --cl-amber: #d9a61a;
  --cl-butter: var(--tc-panel-2);
  --cl-cream: var(--tc-panel);
  --cl-parchment: var(--tc-parchment);
  --cl-walnut: #3d2b1c;
  --cl-bark: #2a1e14;
  --cl-bark-deep: #120d08;

  width: calc(100% - clamp(2rem, 4vw, 3rem));
  max-width: none;
  margin-inline: auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(74, 55, 40, 0.12);
  box-shadow: 0 12px 40px rgba(74, 55, 40, 0.09);
  background: var(--cl-cream);
}

.camp-life__icons {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: var(--space-2) var(--space-3);
  width: 100%;
  padding: var(--space-5) clamp(0.75rem, 2vw, 1.25rem) var(--space-4);
  background: linear-gradient(
    180deg,
    var(--cl-honey) 0%,
    var(--cl-gold) 52%,
    var(--cl-amber) 100%
  );
  border-bottom: 0;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.camp-life__icons::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(
    180deg,
    var(--tc-gold-deep) 0%,
    var(--cl-walnut) 55%,
    var(--cl-bark) 100%
  );
  pointer-events: none;
}

@media (min-width: 900px) {
  .camp-life__icons {
    padding-inline: clamp(2.5rem, 5vw, 3.5rem);
  }

  .camp-life__icons::before,
  .camp-life__icons::after {
    content: "";
    position: absolute;
    top: 50%;
    width: clamp(22px, 2.5vw, 30px);
    height: clamp(44px, 6vw, 60px);
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.55;
    pointer-events: none;
  }

  .camp-life__icons::before {
    left: clamp(0.5rem, 1.5vw, 1rem);
    background-image: url("../img/bracket_left.png");
  }

  .camp-life__icons::after {
    right: clamp(0.5rem, 1.5vw, 1rem);
    background-image: url("../img/bracket_right.png");
  }
}

.camp-life__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-2) var(--space-1);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
  width: 100%;
}

.camp-life__icon.is-active {
  background: var(--tc-butter);
  box-shadow:
    inset 0 0 0 2px rgba(201, 162, 39, 0.38),
    0 2px 10px rgba(42, 30, 20, 0.12);
}

.camp-life__icon:focus-visible {
  outline: 2px solid var(--tc-brown);
  outline-offset: 2px;
}

.camp-life__icon:hover {
  background: rgba(250, 240, 200, 0.9);
  box-shadow:
    inset 0 0 0 1px rgba(201, 162, 39, 0.28),
    0 2px 6px rgba(42, 30, 20, 0.08);
  transform: translateY(-2px);
}

.camp-life__icon.is-active:hover {
  background: var(--tc-butter);
}

.camp-life__icon-svg {
  width: 34px;
  height: 34px;
  display: block;
  padding: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 1px 3px rgba(74, 55, 40, 0.14);
  stroke: var(--tc-brown);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition);
}

.camp-life__icon.is-active .camp-life__icon-svg,
.camp-life__icon:hover .camp-life__icon-svg {
  transform: scale(1.06);
  stroke: var(--tc-orange-dark);
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 0 0 1px rgba(201, 162, 39, 0.32),
    0 1px 4px rgba(42, 30, 20, 0.12);
}

.camp-life__icon.is-active .camp-life__icon-name {
  color: var(--tc-brown);
  text-shadow: none;
}

.camp-life__icon-name {
  font-family: var(--font-serif);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: lowercase;
  color: var(--tc-brown);
  margin-top: var(--space-2);
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.camp-life__icon-name .the {
  opacity: 0.65;
  font-weight: 500;
  font-style: italic;
}

.camp-life__stage {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(0, 0.58fr);
  align-items: stretch;
  min-height: clamp(280px, 32vw, 420px);
  background: var(--cl-cream);
}

.camp-life__media {
  position: relative;
  min-height: inherit;
  padding: var(--space-4);
  background: linear-gradient(
    165deg,
    var(--cl-butter) 0%,
    var(--cl-cream) 60%,
    var(--tc-cream) 100%
  );
  border-right: 0;
}

.camp-life__slides {
  position: absolute;
  inset: var(--space-4);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
  align-items: stretch;
  width: auto;
  min-width: 0;
}

.camp-life__slides.is-count-1 {
  grid-template-columns: minmax(0, 1fr);
  max-width: min(340px, 62%);
  margin-inline: auto;
}

.camp-life__slides.is-count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 82%;
  margin-inline: auto;
}

.camp-life__tile {
  min-width: 0;
  min-height: 0;
  height: 100%;
  padding: 4px;
  border-radius: 5px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--cl-honey) 0%, var(--cl-gold) 100%);
  box-shadow:
    0 4px 14px rgba(42, 30, 20, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.camp-life__tile img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
  background: var(--cl-bark);
}

.camp-life__tile .camp-life__open {
  height: 100%;
  min-height: inherit;
}

.camp-life__placeholder {
  position: absolute;
  inset: var(--space-4);
  z-index: 1;
  display: grid;
  place-items: center;
  padding: var(--space-6);
  text-align: center;
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at 30% 40%, rgba(240, 188, 40, 0.15), transparent 55%),
    linear-gradient(160deg, var(--cl-cream) 0%, var(--cl-butter) 100%);
  border: 1px dashed rgba(74, 55, 40, 0.16);
}

.camp-life__placeholder[hidden] {
  display: none !important;
}

.camp-life__placeholder-label {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-style: italic;
  font-weight: 500;
  color: rgba(61, 43, 28, 0.45);
  text-transform: lowercase;
  letter-spacing: 0.04em;
}

.camp-life__dots {
  display: none;
}

/* 28px hit area, 9px visual dot */
.camp-life__dot {
  position: relative;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: none;
  box-shadow: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.camp-life__dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(74, 55, 40, 0.35);
  background: rgba(255, 253, 248, 0.55);
  box-shadow: 0 1px 3px rgba(42, 30, 20, 0.12);
  transition: var(--transition);
}

.camp-life__dot.is-active::after {
  background: var(--cl-bark);
  border-color: var(--cl-bark);
  transform: translate(-50%, -50%) scale(1.15);
}

.camp-life__dot:focus-visible {
  outline: 2px solid var(--tc-orange);
  outline-offset: 2px;
}

.camp-life__swipe-hint {
  display: none;
}

.camp-life__quote {
  margin-block: var(--space-3);
  margin-inline: 0;
  align-self: stretch;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(
    180deg,
    var(--cl-walnut) 0%,
    var(--cl-bark) 45%,
    var(--cl-bark-deep) 100%
  );
  border: 0;
  border-left: 4px solid var(--cl-honey);
  border-top: 4px solid var(--cl-honey);
  border-bottom: 4px solid var(--cl-honey);
  box-sizing: border-box;
  position: relative;
}

.camp-life__quote::before {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin-bottom: var(--space-3);
  background: linear-gradient(90deg, var(--cl-honey), var(--cl-amber));
  border-radius: 2px;
}

.camp-life__quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  line-height: 1.65;
  color: var(--cl-parchment);
  text-align: left;
  max-width: none;
}

.camp-life__quote-the {
  font-style: italic;
  opacity: 0.88;
  font-weight: 500;
  color: var(--cl-parchment);
}

.camp-life__quote strong {
  font-weight: 700;
  color: var(--cl-honey);
}

.footer-bar {
  background: linear-gradient(
    180deg,
    var(--footer-brown-mid) 0%,
    var(--footer-brown) 40%,
    var(--footer-brown-deep) 100%
  );
  color: var(--tc-parchment);
  padding-block: var(--space-7);
  border-top: 3px solid var(--tc-gold-deep);
}

.footer-bar__inner {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: var(--space-5);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-bar a {
  color: var(--tc-gold);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.footer-bar a:hover {
  text-decoration: none;
  color: #fff;
}

.footer-bar__brand {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #f0e6cc;
  text-transform: uppercase;
  font-size: clamp(0.875rem, 1.4vw, 1.0625rem);
  line-height: 1.45;
  position: relative;
  padding-top: var(--space-5);
  max-width: 28rem;
}

.footer-bar__brand::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(240px, 55vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--tc-gold) 20%, var(--tc-gold) 80%, transparent);
  border-radius: 2px;
}

.footer-bar__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-3);
  font-size: 0.875rem;
  align-items: center;
  justify-content: center;
  max-width: 920px;
}

.footer-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(251, 195, 38, 0.16);
  color: var(--tc-parchment);
  font-family: var(--font-body);
  line-height: 1.35;
  transition: var(--transition);
}

.footer-bar__item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(251, 195, 38, 0.32);
}

.footer-bar__icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--tc-gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .container { padding-inline: var(--space-5); }
}

@media (max-width: 1024px) {
  .contact-layout { gap: var(--space-6); }
  .section { padding-block: var(--space-7); }
}

@media (max-width: 900px) {
  .millersburg-gallery__copy { columns: 1; }
  .area-story__copy { columns: 1; }
  .campground-gallery__copy { columns: 1; }
  .sites-gallery__copy { columns: 1; }
  .millersburg-gallery { --millersburg-gutter: clamp(2.5rem, 8vw, 5rem); }
  .campground-gallery { --campground-gutter: clamp(2.5rem, 8vw, 5rem); }
  .sites-gallery { --sites-gutter: clamp(2.5rem, 8vw, 5rem); }
  .area-story { --area-story-gutter: clamp(2.5rem, 8vw, 5rem); }
  .area-explorer { --area-explorer-gutter: clamp(2.5rem, 8vw, 5rem); }
  .area-links { --area-links-gutter: clamp(2.5rem, 8vw, 5rem); }
  .area-explorer__panel {
    padding: clamp(1.1rem, 3vw, 1.5rem);
  }
  .area-explorer__photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .area-story__intro {
    padding: clamp(1.1rem, 3vw, 1.35rem);
  }
  .area-story__snapshots {
    grid-template-columns: 1fr;
  }
  .area-story__cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .area-story__cta-note {
    max-width: none;
  }
  .park-map-gallery { --park-map-gutter: clamp(2.5rem, 8vw, 5rem); }
  .park-map-gallery__layout {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .park-map-gallery__figure,
  .park-map-gallery__side,
  .park-map-gallery__open,
  .park-map-gallery__guide {
    min-height: 0;
    height: auto;
  }
  .park-map-gallery__open img {
    flex: none;
    height: auto;
    object-fit: initial;
  }
  .grid--4, .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid--millersburg-today { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bakery-gallery__highlights { grid-template-columns: 1fr; }
  .bakery-gallery__more { grid-template-columns: 1fr; }
  .bakery-gallery__flavors { grid-template-columns: 1fr; }
  .bakery-gallery__team,
  .bakery-gallery__treats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .millersburg-vintage-collage__row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid--3, .gallery-grid:not(.gallery-grid--millersburg-today), .quote-grid { grid-template-columns: repeat(2, 1fr); }
  .grid--2 { grid-template-columns: 1fr; }
  .split, .map-block:not(.map-block--simple), .contact-layout { grid-template-columns: 1fr; gap: var(--space-6); }
  .map-block__figure { margin-inline: auto; }
  .map-block__figure img { width: 100%; max-width: 420px; }
  .map-block__side { justify-content: center; }
  .split--media-first .split__media { order: 0; }
  .hero--page .hero__media { min-height: clamp(220px, 38vh, 360px); }
  .hero--page .placeholder-img { min-height: clamp(220px, 38vh, 360px); }
  .gallery-nav-collage,
  .gallery-nav-collage__panel { min-height: clamp(280px, 44vh, 420px); }
}

@media (max-width: 1024px) {
  .hero--area-nav .gallery-nav-collage--six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .millersburg-gallery__cta-btn {
    width: 100%;
    min-width: 0;
  }

  .camp-life__stage {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .camp-life__media {
    min-height: clamp(460px, 72vh, 720px);
    padding-bottom: calc(var(--space-4) + var(--space-5));
    border-right: 0;
    border-bottom: 1px solid rgba(74, 55, 40, 0.08);
  }

  .camp-life__slides {
    display: flex;
    flex-direction: row;
    grid-template-columns: none;
    overflow-x: hidden;
    overflow-y: visible;
    scroll-snap-type: none;
    overscroll-behavior: auto;
    touch-action: auto;
    gap: 0;
    scrollbar-width: none;
  }

  .camp-life__slides::-webkit-scrollbar {
    display: none;
  }

  .camp-life__slides.is-count-1,
  .camp-life__slides.is-count-2 {
    max-width: none;
  }

  .camp-life__slides.is-carousel {
    cursor: default;
  }

  .camp-life__slides.is-carousel:active {
    cursor: default;
  }

  .camp-life__tile .camp-life__open {
    touch-action: pan-y;
  }

  .camp-life__tile {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    min-height: 100%;
    height: 100%;
  }

  .camp-life__tile img {
    height: 100%;
    min-height: 100%;
  }

  .camp-life__dots {
    position: absolute;
    left: 50%;
    bottom: var(--space-2);
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: var(--space-2);
    align-items: center;
    justify-content: center;
  }

  .camp-life__dots[hidden] {
    display: none !important;
  }

  .camp-life__swipe-hint {
    position: absolute;
    left: calc(var(--space-4) + 0.5rem);
    bottom: calc(var(--space-5) + 0.35rem);
    z-index: 4;
    display: inline-block;
    padding: 0.4em 0.75em;
    background: rgba(253, 248, 240, 0.94);
    border: 1px solid rgba(230, 220, 206, 0.95);
    border-left: 3px solid var(--tc-gold);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(74, 55, 40, 0.18);
    font-family: var(--font-head);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--tc-brown);
    text-transform: none;
    white-space: nowrap;
    pointer-events: none;
  }

  .camp-life__swipe-hint[hidden] {
    display: none !important;
  }

  .camp-life__quote {
    padding: var(--space-5) var(--space-5) var(--space-6);
    border-left: 4px solid var(--cl-honey);
    border-top: 0;
    border-right: 0;
    border-bottom: 4px solid var(--cl-honey);
  }

  .camp-life__icon-name {
    font-size: 0.625rem;
  }

  .camp-life__icons {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --space-8: 3rem;
    --space-9: 4.5rem;
  }
  .container { padding-inline: clamp(1rem, 4vw, 1.5rem); }
  .section-title h2 { font-size: clamp(1.35rem, 5vw, 1.75rem); }
  .phone-cta { padding: var(--space-5); }
  .phone-cta a {
    font-size: clamp(1.35rem, 6vw, 1.85rem);
    line-height: 1.2;
    word-break: break-word;
  }
  .rates {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .rates table { min-width: 280px; }
  .rates__links .btn { width: 100%; justify-content: center; }
  .info-strip {
    grid-template-columns: 1fr;
    width: min(100%, 22rem);
  }
  .explore-links__grid {
    grid-template-columns: 1fr;
  }
  .info-strip__action {
    width: 100%;
    justify-items: center;
    grid-template-columns: auto auto;
    justify-content: center;
  }
  .info-strip__text {
    align-items: flex-start;
    text-align: left;
  }
  .footer-bar__meta { flex-direction: column; align-items: center; gap: var(--space-2); }
  .footer-bar__item { justify-content: center; width: min(100%, 22rem); }

  .area-explorer__activities-list {
    grid-template-columns: 1fr;
  }
  .area-explorer__activity-link {
    display: inline-block;
    padding-block: 0.3rem;
  }
  .area-explorer__panel-title {
    font-size: clamp(1.2rem, 4.8vw, 1.45rem);
  }
  .area-explorer__intro {
    padding-right: clamp(0.75rem, 3vw, 1rem);
  }
  .area-links__intro {
    padding-right: clamp(0.75rem, 3vw, 1rem);
  }
}

@media (max-width: 640px) {
  .millersburg-gallery__intro {
    padding: var(--space-4) 0 var(--space-4) var(--space-4);
  }

  .millersburg-gallery__towns-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .millersburg-gallery__town {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-width: 0;
    width: 100%;
    min-height: 38px;
    padding: 0.35rem 0.3rem;
    border-left: 0;
    border-radius: var(--radius-pill);
    box-shadow: none;
    text-align: center;
  }

  .millersburg-gallery__town-tag {
    display: none;
  }

  .millersburg-gallery__town-name {
    font-size: 0.72rem;
    letter-spacing: 0.01em;
    line-height: 1.2;
  }

  .millersburg-gallery__towns-label {
    margin-bottom: var(--space-2);
    font-size: 0.7rem;
  }

  .millersburg-gallery__towns-hint {
    display: inline;
  }

  .millersburg-gallery__cta {
    padding-top: var(--space-4);
  }

  .millersburg-gallery__cta-note {
    font-size: var(--text-xs);
  }

  .millersburg-gallery__millersburg-note {
    font-size: var(--text-xs);
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
  }

  .nav-toggle span {
    width: 20px;
    height: 1.5px;
    margin: 4px 0;
    background: #fff;
    border-radius: 1px;
    box-shadow: 0 1px 3px rgba(74, 55, 40, 0.35);
    transition: transform 0.28s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.2s ease;
  }

  .site-header--hero:not(.is-scrolled) .nav-toggle span {
    background: #fff;
    box-shadow: 0 1px 3px rgba(74, 55, 40, 0.35);
  }

  .site-header--hero.is-scrolled .nav-toggle span {
    background: var(--tc-bark);
    box-shadow: none;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .site-header--hero:not(.is-scrolled) .nav-toggle,
  .site-header--hero.is-scrolled .nav-toggle {
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(45, 35, 28, 0.32);
    z-index: calc(var(--header-z));
    animation: navBackdropIn 0.24s ease;
  }

  body.nav-open .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: calc(var(--header-z) + 2);
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: calc(var(--header-z) + 1);
    display: block;
    padding: 0.25rem var(--space-4) var(--space-3);
    background: rgba(255, 254, 251, 0.94);
    backdrop-filter: blur(20px) saturate(1.06);
    -webkit-backdrop-filter: blur(20px) saturate(1.06);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(74, 55, 40, 0.1);
    max-height: min(68vh, 380px);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.26s cubic-bezier(0.25, 1, 0.5, 1),
      transform 0.26s cubic-bezier(0.25, 1, 0.5, 1),
      visibility 0.26s;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    margin: 0;
  }

  .main-nav li {
    opacity: 1;
    transform: none;
    border-bottom: 1px solid rgba(230, 220, 206, 0.9);
  }

  .main-nav li:last-child {
    border-bottom: 0;
  }

  .main-nav.is-open li {
    animation: none;
  }

  .main-nav a {
    display: block;
    min-height: 3rem;
    padding: 0.82rem 0.15rem;
    font-family: var(--font-serif);
    font-size: 1.04rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-align: left;
    border-radius: 0;
    white-space: normal;
    background: transparent;
    border: 0;
    color: var(--tc-brown);
    text-shadow: none;
    box-shadow: none;
    transition: color 0.2s ease, background 0.2s ease;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(251, 195, 38, 0.1);
    color: var(--tc-brown);
    transform: none;
  }

  .main-nav a.is-active {
    background: transparent;
    color: var(--tc-butter-deep);
    font-weight: 700;
    border: 0;
    box-shadow: none;
  }

  .main-nav a:active {
    background: rgba(251, 195, 38, 0.16);
    transform: none;
  }

  .header-inner { position: relative; padding-block: var(--space-3); z-index: calc(var(--header-z) + 3); }
  .brand__logo { width: clamp(130px, 42vw, 180px); }

  .site-header--hero .brand__logo {
    width: clamp(120px, 38vw, 165px);
  }

  .site-header--hero:not(.is-scrolled) .brand {
    padding: 0.35rem 0.65rem;
    border-radius: 10px;
  }

  body.nav-open .site-header--hero .main-nav a,
  body.nav-open .site-header--hero.is-scrolled .main-nav a {
    background: transparent;
    border: 0;
    color: var(--tc-brown);
    text-shadow: none;
    box-shadow: none;
  }

  body.nav-open .site-header--hero .main-nav a:hover,
  body.nav-open .site-header--hero.is-scrolled .main-nav a:hover {
    background: rgba(251, 195, 38, 0.1);
    color: var(--tc-brown);
    border-color: transparent;
  }

  body.nav-open .site-header--hero .main-nav a.is-active,
  body.nav-open .site-header--hero.is-scrolled .main-nav a.is-active {
    background: transparent;
    color: var(--tc-butter-deep);
    font-weight: 700;
    border: 0;
    box-shadow: none;
  }

  .main-nav a[target="_blank"]::after {
    content: none;
  }

  .reduced-motion .main-nav,
  .reduced-motion .main-nav li {
    transition: none;
    animation: none !important;
    transform: none;
    opacity: 1;
  }

  .reduced-motion body.nav-open::before {
    animation: none;
  }

  .hero--home .hero__overlay {
    padding-bottom: clamp(1.85rem, 5vh, 2.75rem);
  }

  .grid--2, .grid--3, .grid--4, .gallery-grid:not(.gallery-grid--millersburg-today), .quote-grid, .tile-grid { grid-template-columns: 1fr; }
  .gallery-grid--millersburg-today { grid-template-columns: 1fr; }
  .bakery-gallery__team,
  .bakery-gallery__treats { grid-template-columns: 1fr; }
  .millersburg-vintage-collage__row { grid-template-columns: 1fr; }
  .millersburg-vintage-collage__row .gallery-card { transform: none; }
  .tile-grid--vintage .tile.tile--vintage { transform: none; }
  .form__row { grid-template-columns: 1fr; }
  .ground-rules ul { columns: 1; }
  .camp-life__icons { grid-template-columns: repeat(3, 1fr); }
  .gallery-nav-collage:not(.gallery-nav-collage--six) { grid-template-columns: 1fr; }
  .hero--area-nav .gallery-nav-collage--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero--area-nav .gallery-nav-collage--six .gallery-nav-collage__panel {
    min-height: clamp(160px, 32vw, 220px);
  }
  .area-explorer {
    padding-block: clamp(2.5rem, 7vw, 4rem);
  }
  .area-story {
    padding-block: clamp(2.5rem, 7vw, 4rem);
  }
  .area-links {
    padding-block: clamp(2.5rem, 7vw, 4rem);
  }
  .area-explorer__photo-grid {
    grid-template-columns: 1fr;
  }
  .gallery-nav-collage,
  .gallery-nav-collage__panel { min-height: clamp(220px, 36vw, 280px); }
  .hero__overlay--gallery-nav {
    padding-top: clamp(5rem, 16vh, 7rem);
    padding-bottom: clamp(4rem, 12vh, 6rem);
  }
  .hero__overlay--gallery-nav h1 { margin-top: clamp(1rem, 4vh, 2rem); }
  .gallery-nav-collage__panel {
    border-inline-end: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .gallery-nav-collage__panel:last-child { border-bottom: 0; }
  .footer-bar__inner { flex-direction: column; align-items: center; text-align: center; gap: var(--space-4); }
  .footer-bar__item { width: min(100%, 20rem); justify-content: center; }

  .hero--home .hero__media { min-height: clamp(460px, 72vh, 720px); }
  .hero--home .placeholder-img { min-height: clamp(460px, 72vh, 720px); }
  .hero__dots { bottom: var(--space-3); }
  .hero__overlay { padding-inline: clamp(1rem, 4vw, 1.5rem); }
  .hero--page .hero__overlay h1 { font-size: clamp(1.65rem, 8vw, 2.25rem); }
  .map-block { padding: var(--space-4); }
  .map-block__actions-inner { padding: var(--space-5) var(--space-4); }
  .map-block__buttons .btn,
  .rates__links .btn,
  .hero__action-bar .btn { width: 100%; max-width: none; }
  .form .btn--primary { width: auto; min-width: 140px; }
  .rates__links { flex-direction: column; }
  .hero__action-bar { flex-direction: column; width: 100%; }
  .hero__action-bar--wood {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    max-width: 100%;
    align-items: stretch;
    gap: 0.4rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .btn--hero-call, .btn--hero-ghost { width: 100%; justify-content: center; min-height: 3.1rem; padding-left: 0.5em; padding-right: 0.5em; }
  .btn--hero-call { gap: 0.5em; }
  .btn--hero-call .btn__stack { align-items: center; text-align: center; }
  .btn--hero-call .btn__icon { width: 1.8em; height: 1.8em; flex-shrink: 0; }
  .btn--hero-call .btn__label { font-size: 0.72rem; }
  .btn--hero-call .btn__value { font-size: 0.76rem; white-space: normal; }
}
