/* ==========================================================================
   Words & Wild — Stylesheet
   Palette: warm ivory / off-white, muted forest green, charcoal
   Type: Fraunces (serif, editorial) + Jost (sans, body)
   ========================================================================== */

:root {
  /* Colour palette */
  --ivory: #faf6ee;
  --off-white: #f2ece0;
  --paper: #fbf8f2;
  --forest-900: #1f2e24;
  --forest-800: #2b3f30;
  --forest-700: #3a5240;
  --forest-500: #5c7a63;
  --forest-300: #93ab97;
  --charcoal-900: #211f1c;
  --charcoal-700: #35322c;
  --charcoal-500: #625d54;
  --charcoal-300: #948d81;
  --gold: #a98a55;
  --line: rgba(33, 31, 28, 0.12);
  --line-light: rgba(250, 246, 238, 0.25);

  /* Type */
  --font-serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-sans: "Jost", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing / layout */
  --container-w: 1200px;
  --container-narrow-w: 760px;
  --gutter: clamp(1.5rem, 5vw, 4rem);
  --section-pad: clamp(4.5rem, 9vw, 8rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, p, ul, ol, li, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

.term-highlight { color: var(--gold); font-style: italic; }

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

body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--charcoal-700);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-narrow { max-width: var(--container-narrow-w); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--forest-900);
  color: var(--ivory);
  padding: 0.8em 1.4em;
  z-index: 999;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

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

/* ---------- Typography helpers ---------- */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; color: var(--charcoal-900); letter-spacing: -0.01em; }

.section-label {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-700);
  margin-bottom: 1.4rem;
}
.section-label-line {
  width: 34px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.section-label-light { color: var(--forest-300); }

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.2;
  max-width: 18ch;
  margin-bottom: 1.6rem;
}
.section-title-light { color: var(--ivory); }

.section-intro {
  max-width: 60ch;
  font-size: 1.08rem;
  color: var(--charcoal-500);
  margin-bottom: 3rem;
}

.section { padding-block: var(--section-pad); position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2.1rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest-800);
  color: var(--ivory);
  border-color: var(--forest-800);
}
.btn-primary:hover { background: var(--forest-700); border-color: var(--forest-700); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--charcoal-900);
  border-color: var(--charcoal-300);
}
.btn-ghost:hover { border-color: var(--charcoal-900); transform: translateY(-2px); }

.btn-ghost-light {
  color: var(--ivory);
  border-color: var(--line-light);
}
.btn-ghost-light:hover { border-color: var(--ivory); }

.btn-large { padding: 1.05rem 2.4rem; font-size: 0.98rem; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 500;
  padding-block: 0.9rem;
  background: var(--ivory);
  box-shadow: 0 1px 0 var(--line);
  transition: padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.is-scrolled {
  padding-block: 0.6rem;
  box-shadow: 0 1px 0 var(--line), 0 8px 24px rgba(33, 31, 28, 0.06);
}

.header-inner {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: inline-flex; align-items: center; }
.brand-logo {
  height: 42px;
  width: auto;
  display: block;
  transition: height 0.4s var(--ease);
}
.site-header.is-scrolled .brand-logo { height: 34px; }

.wordmark {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--charcoal-900);
  display: inline-flex;
  gap: 0.35em;
}
.wordmark-amp { font-style: italic; color: var(--gold); }

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.primary-nav a {
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  color: var(--charcoal-900);
  position: relative;
  padding-block: 0.3rem;
  transition: color 0.4s var(--ease);
}
.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right 0.35s var(--ease);
}
.primary-nav a:not(.nav-cta):hover::after { right: 0; }

.nav-cta {
  border: 1px solid var(--charcoal-300);
  padding: 0.55rem 1.3rem;
  color: inherit;
}
.nav-cta:hover { background: var(--forest-800); border-color: var(--forest-800); color: var(--ivory); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 60;
}
.nav-toggle-bar {
  width: 24px; height: 1.5px;
  background: var(--charcoal-900);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
body.nav-open .nav-toggle-bar { background: var(--ivory); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest-900);
}
.hero-media { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,20,16,0.55) 0%, rgba(15,20,16,0.48) 35%, rgba(11,15,12,0.78) 70%, rgba(9,13,10,0.92) 100%),
    rgba(15,20,16,0.25);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter) clamp(4.5rem, 10vw, 7rem);
  color: var(--ivory);
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}
.hero-eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--off-white);
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.2s forwards;
}
.hero-title {
  font-size: clamp(3.2rem, 10vw, 7rem);
  line-height: 0.95;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.18em;
  color: var(--ivory);
  text-shadow: 0 2px 24px rgba(0,0,0,0.35), 0 1px 3px rgba(0,0,0,0.4);
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 0.4s forwards;
}
.hero-amp { font-style: italic; color: var(--gold); font-size: 0.6em; }
.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--off-white);
  margin-top: 1.6rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 0.6s forwards;
}
.hero-sub {
  max-width: 46ch;
  margin: 1rem auto 0;
  font-size: 1rem;
  color: var(--off-white);
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 0.7s forwards;
}
.hero-meta {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 0.8s forwards;
}
.hero-tag {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
  background: rgba(9,13,10,0.35);
  border: 1px solid var(--line-light);
  padding: 0.5rem 1rem;
}

.hero-actions {
  margin-top: 2.8rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 1s forwards;
}
.hero-actions .btn-ghost { color: var(--ivory); border-color: var(--line-light); }
.hero-actions .btn-ghost:hover { border-color: var(--ivory); }

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

/* ==========================================================================
   Botanical divider
   ========================================================================== */
.botanical-divider { width: 100%; max-width: 400px; margin: var(--section-pad) auto 0; opacity: 0.5; }
.botanical-divider svg { width: 100%; height: 40px; }
.botanical-divider path { fill: none; stroke: var(--forest-500); stroke-width: 1; }
.botanical-divider-light { margin-top: 0; margin-bottom: 3rem; }
.botanical-divider-light path { stroke: var(--forest-300); }

/* ==========================================================================
   Philosophy
   ========================================================================== */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.philosophy-lead p {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.4;
  color: var(--charcoal-900);
}
.philosophy-body p { font-size: 1.05rem; color: var(--charcoal-500); margin-bottom: 1.2rem; }
.philosophy-body p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Step away from screens
   ========================================================================== */
.screens-stories {
  background: var(--forest-900);
  color: var(--off-white);
  overflow: hidden;
}
.screens-stories-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.screens-stories-text p { font-size: 1.05rem; color: var(--forest-300); margin-bottom: 1.3rem; max-width: 48ch; }
.screens-stories-text p:last-child { margin-bottom: 0; }
.screens-stories-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid var(--line-light);
}

/* ==========================================================================
   What's Included
   ========================================================================== */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.included-item {
  padding: 2.4rem 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.4s var(--ease);
}
.included-item:hover { background: var(--off-white); }
.included-icon { color: var(--gold); display: block; margin-bottom: 1.1rem; }
.included-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.included-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  font-weight: 500;
}
.included-item p { font-size: 0.96rem; color: var(--charcoal-500); }

.included-item-featured { background: var(--forest-900); }
.included-item-featured:hover { background: var(--forest-800); }
.included-item-featured h3 { color: var(--ivory); }
.included-item-featured p { color: var(--forest-300); }
.included-item-featured .included-icon { color: var(--gold); }

/* ==========================================================================
   Journey / Timeline
   ========================================================================== */
.timeline { position: relative; margin-top: 3rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: clamp(1.2rem, 4vw, 2.6rem);
  padding-bottom: clamp(2.2rem, 5vw, 3.2rem);
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--forest-500);
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--forest-700);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.timeline-date {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.timeline-content h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.timeline-content p { color: var(--charcoal-500); max-width: 62ch; }

/* ==========================================================================
   Who it's for
   ========================================================================== */
.who { background: var(--off-white); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.who-item {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 2.2rem;
  transition: background-color 0.4s var(--ease);
}
.who-item:hover { background: var(--paper); }
.who-item p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--charcoal-900);
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
}

/* ==========================================================================
   Venue
   ========================================================================== */
.venue-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.venue-figure-large { grid-column: 1 / -1; }
.venue-figure img { width: 100%; object-fit: cover; }
.venue-figure-large img { aspect-ratio: 16/8; }
.venue-figure:not(.venue-figure-large) img { aspect-ratio: 4/5; }

/* ==========================================================================
   Campuses
   ========================================================================== */
.campuses { background: var(--off-white); }
.campuses-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.campuses-text p { font-size: 1.05rem; color: var(--charcoal-500); margin-bottom: 1.3rem; max-width: 50ch; }
.campuses-text .btn { margin-top: 0.6rem; }

.campuses-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 0.4rem;
}
.campuses-features li { padding: 1.8rem 0; border-bottom: 1px solid var(--line); }
.campuses-feature-icon { color: var(--gold); font-size: 0.7rem; display: block; margin-bottom: 0.9rem; }
.campuses-features h3 { font-size: 1.1rem; margin-bottom: 0.5rem; font-weight: 500; }
.campuses-features p { font-size: 0.96rem; color: var(--charcoal-500); }

/* ==========================================================================
   FAQ / Accordion
   ========================================================================== */
.faq { background: var(--off-white); }
.accordion { margin-top: 1rem; border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  padding: 1.6rem 0;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--charcoal-900);
}
.accordion-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  position: relative;
}
.accordion-icon::before, .accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--forest-700);
  transition: transform 0.35s var(--ease);
}
.accordion-icon::before { left: 0; top: 50%; width: 100%; height: 1px; transform: translateY(-50%); }
.accordion-icon::after { top: 0; left: 50%; width: 1px; height: 100%; transform: translateX(-50%); }
.accordion-trigger[aria-expanded="true"] .accordion-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.accordion-panel p { padding-bottom: 1.7rem; color: var(--charcoal-500); max-width: 62ch; font-size: 1.02rem; }

/* ==========================================================================
   Join / Final CTA
   ========================================================================== */
.join {
  background: var(--forest-900);
  color: var(--ivory);
  text-align: center;
  overflow: hidden;
}
.join-inner { display: flex; flex-direction: column; align-items: center; }
.join-label { justify-content: center; }
.join-title {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.15;
  color: var(--ivory);
  max-width: 16ch;
  margin-bottom: 1.2rem;
}
.join-copy {
  max-width: 52ch;
  color: var(--forest-300);
  font-size: 1.05rem;
  margin-bottom: 2.6rem;
}
.newsletter-form {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1rem;
}
.newsletter-form input[type="email"] {
  font: inherit;
  font-size: 0.95rem;
  color: var(--ivory);
  background: transparent;
  border: 1px solid var(--line-light);
  padding: 0.95rem 1.3rem;
  min-width: 300px;
  transition: border-color 0.3s var(--ease);
}
.newsletter-form input[type="email"]::placeholder { color: var(--forest-300); }
.newsletter-form input[type="email"]:focus { border-color: var(--gold); }

.newsletter-note {
  min-height: 1.2em;
  font-size: 0.88rem;
  color: var(--gold);
  margin-bottom: 1.8rem;
}

.join-contact {
  display: flex;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--forest-300);
}
.join-contact a { border-bottom: 1px solid transparent; transition: border-color 0.3s var(--ease); }
.join-contact a:hover { border-color: currentColor; }

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

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--charcoal-900);
  color: var(--charcoal-300);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250,246,238,0.1);
}
.brand-footer { display: inline-flex; align-items: center; gap: 0.7rem; margin-bottom: 0.9rem; }
.brand-footer-icon { height: 34px; width: auto; }
.wordmark-footer { color: var(--ivory); display: inline-flex; margin-bottom: 0; }
.wordmark-footer span { font-style: italic; color: var(--gold); margin-inline: 0.35em; }
.footer-brand p { font-size: 0.92rem; line-height: 1.7; }
.footer-nav { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav a, .footer-contact a { font-size: 0.92rem; transition: color 0.3s var(--ease); }
.footer-nav a:hover, .footer-contact a:hover { color: var(--ivory); }
.footer-contact { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-bottom {
  padding-block: 1.6rem;
  font-size: 0.82rem;
  color: var(--charcoal-500);
}

/* ==========================================================================
   Back to top
   ========================================================================== */
.back-to-top {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--forest-800);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background 0.3s var(--ease);
  z-index: 400;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--forest-700); }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .philosophy-grid { grid-template-columns: 1fr; }
  .screens-stories-inner { grid-template-columns: 1fr; }
  .screens-stories-media { order: -1; }
  .campuses-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }

  .primary-nav {
    position: fixed;
    inset: 0;
    background: var(--forest-900);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
    z-index: 55;
  }
  .primary-nav.is-open { opacity: 1; visibility: visible; }
  .primary-nav ul { flex-direction: column; gap: 1.8rem; text-align: center; }
  .primary-nav a { font-size: 1.3rem; font-family: var(--font-serif); color: var(--ivory) !important; }
  .primary-nav .nav-cta { border-color: var(--line-light) !important; }

  body.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  body.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  body.nav-open { overflow: hidden; }

  .hero-content { text-align: center; }
  .hero-meta { flex-wrap: wrap; }

  .venue-gallery { grid-template-columns: 1fr; }
  .venue-figure-large img, .venue-figure img { aspect-ratio: 4/3; }

  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input[type="email"] { min-width: 0; width: 100%; }
  .newsletter-form .btn { width: 100%; }
}
