/* ==========================================================
   Cave Lake Event Park — forestry / wholesome theme
   ========================================================== */

:root {
  --forest-900: #1c2a20;
  --forest-800: #25382a;
  --forest-700: #2f4a35;
  --forest-600: #3d5a3a;
  --forest-500: #557a4e;
  --moss: #859a6c;
  --bark-900: #3a2a1d;
  --bark-700: #5a3a22;
  --bark-500: #8a6a4a;
  --lake: #4f7d8a;
  --lake-deep: #2e5560;
  --cream: #f5efe2;
  --cream-2: #ece4d0;
  --paper: #fbf7ee;
  --ink: #2a2520;
  --ink-soft: #4a4138;
  --gold: #c08a3a;
  --gold-soft: #e0b771;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
  --font-script: 'Caveat', cursive;

  --shadow-soft: 0 6px 20px rgba(28, 42, 32, 0.08);
  --shadow-med: 0 12px 36px rgba(28, 42, 32, 0.16);
  --shadow-strong: 0 20px 60px rgba(28, 42, 32, 0.28);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--forest-700);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--forest-900);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.45rem; }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

.container {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}

.container.narrow {
  max-width: 760px;
}

.section {
  padding: 5.5rem 0;
}

.narrow-section {
  padding: 7rem 0;
}

.section-cream {
  background: var(--cream);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-head .lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}

.eyebrow {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin: 0 0 0.4rem;
  display: block;
}

.eyebrow.light {
  color: var(--gold-soft);
}

.centered { text-align: center; }

/* ---------- Header ---------- */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid rgba(58, 42, 29, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(6px);
  background-color: rgba(251, 247, 238, 0.94);
}

.header-inner {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--forest-900);
}

.brand-mark svg {
  display: block;
}

.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}

.brand-sub {
  display: block;
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 1rem;
  margin-top: 0.1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav a {
  font-size: 0.98rem;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--forest-700);
}

.site-nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.btn-cta {
  background: var(--forest-700);
  color: var(--cream) !important;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn-cta:hover {
  background: var(--forest-800);
  color: var(--cream) !important;
}

.btn-cta.active::after { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--forest-900);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 0;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--forest-700);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--forest-800);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245, 239, 226, 0.7);
}

.btn-ghost:hover {
  background: rgba(245, 239, 226, 0.12);
  color: var(--cream);
}

.btn-light {
  background: var(--cream);
  color: var(--forest-800);
}

.btn-light:hover {
  background: var(--paper);
  color: var(--forest-900);
}

.link-arrow {
  display: inline-block;
  font-weight: 600;
  color: var(--forest-700);
  border-bottom: 1.5px solid var(--gold-soft);
  padding-bottom: 2px;
}

.link-arrow:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: saturate(0.95) brightness(0.95);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 42, 32, 0.4) 0%, rgba(28, 42, 32, 0.65) 60%, rgba(28, 42, 32, 0.85) 100%),
    radial-gradient(circle at 70% 30%, rgba(192, 138, 58, 0.18), transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 920px;
  margin: 0 auto;
  padding: 7rem 0 6rem;
}

.hero-content h1 {
  color: var(--cream);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 620px;
  color: rgba(245, 239, 226, 0.92);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  color: rgba(245, 239, 226, 0.75);
  font-size: 0.95rem;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(245, 239, 226, 0.7);
  border-radius: 999px;
  z-index: 2;
}

.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 8px;
  background: var(--cream);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-bob 1.8s ease-in-out infinite;
}

@keyframes scroll-bob {
  0%   { transform: translate(-50%, 0); opacity: 0.9; }
  50%  { transform: translate(-50%, 12px); opacity: 0.3; }
  100% { transform: translate(-50%, 0); opacity: 0.9; }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background-size: cover;
  background-position: center;
  color: var(--cream);
  padding: 7rem 0 5rem;
  text-align: center;
}

.page-hero h1 {
  color: var(--cream);
}

.page-hero-sub {
  max-width: 640px;
  margin: 0.5rem auto 0;
  font-size: 1.1rem;
  color: rgba(245, 239, 226, 0.9);
}

/* ---------- Two-col layouts ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col.reverse > div:first-child {
  order: 2;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.welcome-grid figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-med);
}

.welcome-grid figure:first-child {
  transform: translateY(-1.5rem);
}

.welcome-grid figure:last-child {
  transform: translateY(1.5rem);
}

.welcome-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.feature-card {
  background: var(--paper);
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(58, 42, 29, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-med);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--forest-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Event list ---------- */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 880px;
  margin: 0 auto 3rem;
}

.event-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.8rem;
  align-items: center;
  padding: 1.6rem 1.8rem;
  background: var(--paper);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--forest-600);
  box-shadow: var(--shadow-soft);
}

.event-date {
  text-align: center;
  background: var(--cream-2);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.4rem;
  color: var(--forest-800);
}

.event-date.highlight {
  background: var(--forest-700);
  color: var(--cream);
}

.event-date .month {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.event-date .day {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.event-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.3rem;
}

.event-body p {
  margin: 0 0 0.6rem;
  color: var(--ink-soft);
}

.event-tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--cream-2);
  color: var(--forest-800);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}

/* ---------- CTA band ---------- */
.cta-band {
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  color: var(--cream);
  text-align: center;
}

.cta-inner h2 {
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.cta-inner p {
  max-width: 580px;
  margin: 0 auto 1.6rem;
  color: rgba(245, 239, 226, 0.9);
  font-size: 1.1rem;
}

/* ---------- Featured event ---------- */
.featured-event {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
  background: var(--paper);
  padding: 2.4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-med);
}

.featured-event-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.featured-event-body h3 { margin-top: 1.4rem; }

.event-date-line {
  font-size: 1.1rem;
  color: var(--forest-800);
}

.small {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ---------- Concert grid ---------- */
.concert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin: 2.5rem 0;
}

.concert-card {
  background: var(--cream);
  padding: 2rem 1.6rem;
  border-radius: var(--radius-md);
  border-top: 4px solid var(--gold);
}

.concert-card h3 { margin-bottom: 0.3rem; }

.concert-meta {
  font-family: var(--font-script);
  color: var(--bark-700);
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

/* ---------- Campsite cards ---------- */
.campsite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.campsite-card {
  background: var(--paper);
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(58, 42, 29, 0.1);
}

.campsite-card.featured {
  background: var(--forest-700);
  color: var(--cream);
  transform: translateY(-1rem);
  box-shadow: var(--shadow-med);
}

.campsite-card.featured h3,
.campsite-card.featured .campsite-icon {
  color: var(--cream);
}

.campsite-card.featured .campsite-icon {
  background: rgba(245, 239, 226, 0.15);
}

.campsite-card.featured .campsite-list li::before {
  background: var(--gold-soft);
}

.campsite-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--forest-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.campsite-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.campsite-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
}

.campsite-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--forest-600);
}

.campsite-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0;
}

.campsite-price strong {
  font-size: 1.5rem;
  color: var(--gold);
}

.campsite-card.featured .campsite-price strong {
  color: var(--gold-soft);
}

/* ---------- Image card ---------- */
.image-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-med);
  background: var(--paper);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.image-caption {
  padding: 0.9rem 1.2rem;
  margin: 0;
  font-family: var(--font-script);
  color: var(--forest-700);
  text-align: center;
  font-size: 1.2rem;
}

/* ---------- Prose ---------- */
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose-paragraph {
  max-width: 760px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  text-align: center;
  color: var(--ink-soft);
}

.prose-list {
  padding-left: 1.2rem;
  margin: 0 0 1.4rem;
}

.prose-list.tight li {
  margin-bottom: 0.3rem;
}

.prose-list li {
  margin-bottom: 0.6rem;
}

/* ---------- Callout band ---------- */
.callout-band {
  background: var(--forest-800);
  color: var(--cream);
  padding: 4rem 0;
}

.callout-inner blockquote {
  margin: 0 auto;
  max-width: 780px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  text-align: center;
  line-height: 1.4;
}

.callout-inner cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-script);
  font-style: normal;
  color: var(--gold-soft);
  font-size: 1.2rem;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}

.gallery-item {
  margin: 0;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--cream-2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.2rem 1rem 0.8rem;
  background: linear-gradient(transparent, rgba(28, 42, 32, 0.85));
  color: var(--cream);
  font-family: var(--font-script);
  font-size: 1.15rem;
  text-align: center;
}

.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
}

.form-lede {
  color: var(--ink-soft);
  margin-bottom: 1.6rem;
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: var(--forest-800);
  font-size: 0.95rem;
  gap: 0.4rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(58, 42, 29, 0.2);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--forest-600);
  box-shadow: 0 0 0 3px rgba(85, 122, 78, 0.15);
}

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

.contact-form button {
  align-self: flex-start;
}

.contact-sidebar h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--forest-800);
  margin: 1.6rem 0 0.4rem;
}

.contact-sidebar h3:first-child { margin-top: 0; }

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-top: 0.6rem;
}

.success-card {
  background: var(--cream);
  padding: 2.6rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--forest-600);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest-900);
  color: rgba(245, 239, 226, 0.75);
  padding: 4rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-grid {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-col h3 {
  color: var(--cream);
  font-size: 1.4rem;
  margin: 0 0 0.6rem;
}

.footer-col h4 {
  color: var(--cream);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 0.8rem;
}

.footer-tagline {
  font-family: var(--font-script);
  color: var(--gold-soft);
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.4rem;
}

.footer-col a {
  color: rgba(245, 239, 226, 0.78);
}

.footer-col a:hover {
  color: var(--gold-soft);
}

.footer-hours {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: rgba(245, 239, 226, 0.6);
}

.footer-bottom {
  width: 92%;
  max-width: 1180px;
  margin: 2.5rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(245, 239, 226, 0.12);
  text-align: center;
  font-size: 0.88rem;
  color: rgba(245, 239, 226, 0.55);
}

/* ---------- Aerial section ---------- */
.aerial-section {
  background: var(--paper);
}

.aerial-frame {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 8px solid var(--cream);
  outline: 1px solid rgba(58, 42, 29, 0.12);
}

.aerial-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.aerial-frame figcaption {
  background: var(--forest-900);
  color: rgba(245, 239, 226, 0.85);
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.9rem 1rem;
  letter-spacing: 0.04em;
}

.aerial-easter-egg {
  display: block;
  font-family: var(--font-script);
  color: var(--gold-soft);
  font-size: 1.1rem;
  margin-top: 0.3rem;
  letter-spacing: 0;
}

.aerial-pins {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.aerial-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}

.aerial-pin .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 6px rgba(192, 138, 58, 0.25), 0 4px 10px rgba(0,0,0,0.4);
  position: relative;
  flex-shrink: 0;
  animation: pin-pulse 2.4s ease-in-out infinite;
}

@keyframes pin-pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(192, 138, 58, 0.25), 0 4px 10px rgba(0,0,0,0.4); }
  50%      { box-shadow: 0 0 0 12px rgba(192, 138, 58, 0.05), 0 4px 10px rgba(0,0,0,0.4); }
}

.aerial-pin .label {
  font-family: var(--font-script);
  font-size: 1.15rem;
  color: var(--cream);
  background: rgba(28, 42, 32, 0.78);
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(245, 239, 226, 0.18);
}

.pin-woods .label,
.pin-runway .label {
  order: -1;
}

@media (max-width: 720px) {
  .aerial-pin .label {
    font-size: 0.95rem;
    padding: 0.1rem 0.5rem;
  }
  .aerial-pin .dot {
    width: 11px;
    height: 11px;
  }
}

/* Aerial detail callouts (Hall, Sundial) */
.aerial-details {
  margin-top: 2.5rem;
}

.aerial-details-title {
  text-align: center;
  position: relative;
  margin: 0 0 1.6rem;
}

.aerial-details-title::before,
.aerial-details-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28%;
  height: 1px;
  background: rgba(58, 42, 29, 0.18);
}

.aerial-details-title::before { left: 8%; }
.aerial-details-title::after  { right: 8%; }

.aerial-details-title span {
  display: inline-block;
  padding: 0 1rem;
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 1.5rem;
  background: var(--paper);
  position: relative;
}

.aerial-details-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 720px;
  margin: 0 auto;
}

.detail-callout {
  margin: 0;
  text-align: center;
}

.detail-frame {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--cream);
  box-shadow:
    0 0 0 6px rgba(192, 138, 58, 0.15),
    0 0 0 7px rgba(192, 138, 58, 0.35),
    0 12px 30px rgba(28, 42, 32, 0.18);
  background: var(--cream-2);
  position: relative;
}

.detail-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.18), transparent 55%);
  pointer-events: none;
}

.detail-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-callout figcaption {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.detail-script {
  display: block;
  font-family: var(--font-script);
  color: var(--forest-700);
  font-size: 1.4rem;
  margin-bottom: 0.1rem;
}

@media (max-width: 600px) {
  .aerial-details-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .detail-frame { width: 180px; height: 180px; }
}

/* About page aerial figure */
.about-aerial {
  margin: 1.6rem 0 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-med);
  border: 6px solid var(--cream);
  outline: 1px solid rgba(58, 42, 29, 0.1);
}

.about-aerial img {
  width: 100%;
  height: auto;
  display: block;
}

.about-aerial figcaption {
  background: var(--forest-800);
  color: rgba(245, 239, 226, 0.85);
  text-align: center;
  font-size: 0.9rem;
  padding: 0.7rem 1rem;
}

/* ---------- Old Runway section ---------- */
.runway-section {
  position: relative;
  background: linear-gradient(180deg, #0f1612 0%, #1a241d 60%, #243528 100%);
  color: var(--cream);
  padding: 6rem 0 6rem;
  overflow: hidden;
}

.runway-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  perspective: 600px;
  perspective-origin: 50% 100%;
  opacity: 0.95;
  z-index: 0;
}

.runway-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(192, 138, 58, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 0%, rgba(245, 239, 226, 0.05) 0%, transparent 70%);
}

.runway-bg::after {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  top: 18%;
  bottom: -4%;
  background: linear-gradient(180deg, #1a1f1a 0%, #2a2e26 60%, #3a3a30 100%);
  transform: rotateX(64deg);
  transform-origin: 50% 100%;
  border-radius: 6px;
  box-shadow: 0 -40px 120px rgba(0, 0, 0, 0.6) inset;
}

.runway-stripe {
  position: absolute;
  left: 50%;
  width: 4px;
  background: var(--cream);
  opacity: 0.55;
  transform-origin: 50% 100%;
  border-radius: 2px;
  filter: blur(0.4px);
}

.runway-stripe:nth-child(1) { top: 30%;  height: 28px; transform: translateX(-50%) rotateX(64deg); animation: stripe-pulse 4s ease-in-out infinite 0s; }
.runway-stripe:nth-child(2) { top: 42%;  height: 36px; transform: translateX(-50%) rotateX(64deg); animation: stripe-pulse 4s ease-in-out infinite 0.4s; }
.runway-stripe:nth-child(3) { top: 56%;  height: 46px; transform: translateX(-50%) rotateX(64deg); animation: stripe-pulse 4s ease-in-out infinite 0.8s; }
.runway-stripe:nth-child(4) { top: 70%;  height: 60px; transform: translateX(-50%) rotateX(64deg); animation: stripe-pulse 4s ease-in-out infinite 1.2s; }
.runway-stripe:nth-child(5) { top: 84%;  height: 78px; transform: translateX(-50%) rotateX(64deg); animation: stripe-pulse 4s ease-in-out infinite 1.6s; }
.runway-stripe:nth-child(6) { top: 96%;  height: 96px; transform: translateX(-50%) rotateX(64deg); animation: stripe-pulse 4s ease-in-out infinite 2.0s; }

@keyframes stripe-pulse {
  0%, 100% { opacity: 0.45; }
  50%      { opacity: 0.85; }
}

.runway-plane {
  position: absolute;
  top: 7%;
  left: 50%;
  transform: translateX(-50%) rotate(15deg);
  opacity: 0.85;
  filter: drop-shadow(0 0 18px rgba(192, 138, 58, 0.55));
  animation: plane-float 6s ease-in-out infinite;
}

@keyframes plane-float {
  0%, 100% { transform: translate(-50%, 0) rotate(15deg); }
  50%      { transform: translate(-50%, -10px) rotate(13deg); }
}

.runway-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: center;
}

.sundial-callout {
  margin: 0;
  text-align: center;
  order: 2;
}

.sundial-frame {
  width: 240px;
  height: 240px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--cream);
  box-shadow:
    0 0 0 8px rgba(192, 138, 58, 0.15),
    0 0 0 9px rgba(192, 138, 58, 0.4),
    0 18px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  background: #2a2e26;
}

.sundial-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(245, 239, 226, 0.18), transparent 50%);
  pointer-events: none;
}

.sundial-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sundial-callout figcaption {
  margin-top: 1rem;
  font-family: var(--font-body);
  color: rgba(245, 239, 226, 0.9);
  font-size: 0.95rem;
  line-height: 1.4;
}

.sundial-caption-line {
  display: block;
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold-soft);
  margin-bottom: 0.1rem;
}

@media (max-width: 860px) {
  .runway-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .sundial-callout {
    order: 0;
  }
  .sundial-frame {
    width: 200px;
    height: 200px;
  }
}

.runway-text {
  max-width: 720px;
  background: rgba(15, 22, 18, 0.55);
  backdrop-filter: blur(2px);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 239, 226, 0.08);
}

.runway-text h2 {
  color: var(--cream);
  margin-bottom: 1rem;
}

.runway-text p {
  color: rgba(245, 239, 226, 0.88);
}

.runway-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 1.4rem;
  display: grid;
  gap: 0.9rem;
}

.runway-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.8rem;
  align-items: start;
}

.runway-list .rl-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(192, 138, 58, 0.2);
  color: var(--gold-soft);
  font-size: 0.95rem;
  margin-top: 0.1rem;
}

.runway-list strong {
  color: var(--gold-soft);
  font-weight: 600;
}

.runway-tag {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--gold-soft);
  margin: 0.6rem 0 0;
}

.runway-tag a {
  color: var(--cream);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 1px;
}

.runway-tag a:hover {
  color: var(--gold-soft);
}

@media (max-width: 720px) {
  .runway-text {
    padding: 1.8rem;
  }
  .runway-bg::after {
    left: 4%;
    right: 4%;
  }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.hero-content.reveal { transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .feature-grid,
  .concert-grid,
  .campsite-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .two-col.reverse > div:first-child {
    order: 0;
  }
  .featured-event {
    grid-template-columns: 1fr;
    padding: 1.8rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery-wide { grid-column: span 1; }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .campsite-card.featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid rgba(58, 42, 29, 0.1);
    padding: 1rem 1.5rem 1.4rem;
    box-shadow: var(--shadow-med);
    transform: translateY(-130%);
    transition: transform 0.25s ease;
  }
  .site-nav.open {
    transform: translateY(0);
  }
  .site-nav a {
    width: 100%;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(58, 42, 29, 0.07);
  }
  .site-nav a.active::after { display: none; }
  .btn-cta {
    margin-top: 0.6rem;
    align-self: flex-start;
  }
  .feature-grid,
  .concert-grid,
  .campsite-grid {
    grid-template-columns: 1fr;
  }
  .event-row {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    padding: 1.2rem;
  }
  .event-date .day { font-size: 1.7rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-tall { grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
  .hero { min-height: 80vh; }
}
