/* ============================================================
   INTO THE WILD GATHERING — STYLES
   Concept: Golden Summer Solstice in Ancient Woodland
   Primary color: GOLD. Warm earth. Living green.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Cinzel:wght@400;500;600&family=EB+Garamond:ital,wght@0,400;0,500;1,400&display=swap');

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul { list-style: none; }

/* ---- CSS Variables ---- */
:root {
  /* Gold — the primary brand identity */
  --gold:          #C4912A;
  --gold-deep:     #9A6E1A;
  --gold-light:    #E8C878;
  --gold-pale:     #F5E8C4;
  --gold-glow:     rgba(196, 145, 42, 0.25);

  /* Earths & darks */
  --earth:         #1C1508;
  --earth-mid:     #2E2108;
  --earth-warm:    #4A3412;
  --earth-light:   #6B5025;

  /* Greens — secondary, the living world */
  --forest:        #253C21;
  --sage:          #4E6E48;
  --leaf:          #7A9E6A;
  --mint:          #A8C598;

  /* Light & warm */
  --cream:         #FDF8ED;
  --parchment:     #F7EDCF;
  --linen:         #EDE0C0;
  --white:         #FEFDF8;

  /* Type */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-heading:  'Cinzel', Georgia, serif;
  --font-body:     'EB Garamond', Georgia, serif;

  --nav-height:    80px;
  --ticker-height: 38px;
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-slow:     cubic-bezier(0.645, 0.045, 0.355, 1.000);
  --max-width:     1320px;
  --section-pad:   clamp(4rem, 8vw, 8rem);
}

/* ---- Base ---- */
body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--earth);
  background: var(--cream);
  overflow-x: hidden;
}

/* Subtle warm grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 clamp(1.5rem, 4vw, 3.5rem);
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.nav.transparent {
  background: var(--earth);
}

.nav.scrolled {
  background: var(--earth);
  box-shadow: 0 1px 0 rgba(196, 145, 42, 0.15);
}

/* Urgency ticker — sits directly below the fixed nav */
.ticker {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  z-index: 998;
  height: var(--ticker-height);
  display: flex;
  align-items: center;
  background: var(--gold);
  color: var(--earth);
  text-decoration: none;
  overflow: hidden;
}
/* Continuously scrolling marquee. The track holds the message sequence repeated
   enough times to exceed any viewport, then duplicated into two identical halves
   so translateX(-50%) loops seamlessly with no visible gap. */
.ticker__track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  align-items: center;
  will-change: transform;
  animation: ticker-scroll var(--ticker-duration, 60s) linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__msg {
  flex: 0 0 auto;
  font-family: var(--font-heading);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 1.1rem;
}
.ticker__sep {
  flex: 0 0 auto;
  font-size: 0.5rem;
  opacity: 0.5;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .ticker__track { animation-duration: var(--ticker-duration-mobile, 32s); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* Logo */
.nav__logo-img {
  height: 42px;
  width: auto;
  max-width: 190px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);  /* make black PNG → white */
  opacity: 0.92;
  transition: opacity 0.3s;
}
.nav__logo-img:hover { opacity: 1; }
@media (max-width: 768px) {
  .nav__logo-img { height: 36px; }
  /* Center the menu logo on mobile; hamburger stays pinned to the right */
  .nav__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/* Desktop links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  margin: 0 auto;
}
.nav__links > li { position: relative; }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-heading);
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-light);
  transition: width 0.35s var(--ease);
}
.nav__link:hover { color: var(--gold-light); }
.nav__link:hover::after { width: 100%; }

.nav__link--tickets {
  color: var(--gold-light);
  border: 1px solid rgba(232,200,120,0.4);
  padding: 0.48rem 1.4rem;
  transition: all 0.3s var(--ease);
}
.nav__link--tickets::after { display: none; }
.nav__link--tickets:hover {
  background: var(--gold);
  color: var(--earth);
  border-color: var(--gold);
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 1.2rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 185px;
  background: rgba(28,21,8,0.97);
  border: 1px solid rgba(196,145,42,0.22);
  padding: 0.6rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
  backdrop-filter: blur(20px);
}
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  width: 9px; height: 9px;
  background: rgba(28,21,8,0.97);
  border-left: 1px solid rgba(196,145,42,0.22);
  border-top: 1px solid rgba(196,145,42,0.22);
  transform: translateX(-50%) rotate(45deg);
}
.nav__links > li:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 0.55rem 1.4rem;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  transition: color 0.22s, padding-left 0.22s, background 0.22s;
}
.nav__dropdown a:hover {
  color: var(--gold-light);
  background: rgba(196,145,42,0.08);
  padding-left: 1.9rem;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 23px; height: 1.5px;
  background: var(--white);
  transition: all 0.32s var(--ease);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.nav__mobile {
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  background: var(--earth);
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2.5rem 3rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.42s var(--ease-slow);
  z-index: 999;
}
.nav__mobile.open { transform: translateX(0); }
.nav__mobile > a,
.nav__mobile-exp-trigger {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(196,145,42,0.12);
  transition: color 0.25s;
  text-align: left;
  width: 100%;
}
.nav__mobile > a:hover,
.nav__mobile-exp-trigger:hover { color: var(--gold-light); }

.nav__mobile-sub {
  display: none;
  flex-direction: column;
  padding: 0.5rem 0 0.5rem 1.75rem;
  border-bottom: 1px solid rgba(196,145,42,0.12);
}
.nav__mobile-sub.open { display: flex; }
.nav__mobile-sub a {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(196,145,42,0.7);
  padding: 0.6rem 0;
  transition: color 0.25s;
}
.nav__mobile-sub a:hover { color: var(--gold-light); }

/* ============================================================
   HERO — SPLIT LAYOUT (text left · photo right)
   ============================================================ */
.hero {
  padding-top: calc(var(--nav-height) + var(--ticker-height));
  min-height: 92vh;
  overflow: hidden;
}

.hero__split {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: calc(92vh - var(--nav-height));
}

/* Left: forest green text panel */
.hero__panel--text {
  background: var(--forest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(3rem, 6vw, 7rem) clamp(2.5rem, 5vw, 6rem);
  gap: 0;
}

/* Right: festival photo */
.hero__panel--photo {
  background-size: cover;
  background-position: center 30%;
  position: relative;
}
.hero__panel--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(37,60,33,0.35) 0%, transparent 40%);
}

/* Logo */
.hero__logo {
  width: clamp(160px, 22vw, 300px);
  height: auto;
  margin-bottom: 2rem;
  animation: fadeIn 1.2s var(--ease) 0.1s both;
  filter: drop-shadow(0 4px 20px rgba(196,145,42,0.3));
}

.hero__dates {
  font-family: var(--font-heading);
  font-size: clamp(0.55rem, 0.85vw, 0.68rem);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  animation: fadeUp 1s var(--ease) 0.4s both;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  margin-bottom: 2.5rem;
  line-height: 1.25;
  animation: fadeUp 1s var(--ease) 0.6s both;
}

.hero__cta {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--earth);
  background: var(--gold);
  padding: 1rem 2.6rem;
  transition: all 0.35s var(--ease);
  animation: fadeUp 1s var(--ease) 0.8s both;
}
.hero__cta:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(196,145,42,0.4);
}

/* ============================================================
   ACTIVITY BANNERS GRID — same concept, real festival photos
   ============================================================ */
.banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, clamp(200px, 26vw, 460px));
}

.banner {
  position: relative;
  overflow: hidden;
  display: block;
}
.banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.75s var(--ease);
}
.banner:hover .banner__bg { transform: scale(1.07); }

/* Warm amber overlay for banners */
.banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 21, 8, 0.4);
  transition: background 0.4s var(--ease);
}
.banner:hover .banner__overlay { background: rgba(28, 21, 8, 0.22); }

.banner__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner__label-inner {
  position: relative;
  display: inline-block;
  padding: 0.65rem 1.6rem;
  border: 1px solid rgba(255,255,255,0.7);
  transition: border-color 0.35s, letter-spacing 0.35s var(--ease);
}

/* Corner accent animation */
.banner__label-inner::before,
.banner__label-inner::after {
  content: '';
  position: absolute;
  width: 7px; height: 7px;
  border-style: solid;
  border-color: rgba(255,255,255,0.7);
  transition: all 0.35s var(--ease);
}
.banner__label-inner::before {
  top: -1px; left: -1px;
  border-width: 1px 0 0 1px;
  transform: translate(-4px, -4px);
}
.banner__label-inner::after {
  bottom: -1px; right: -1px;
  border-width: 0 1px 1px 0;
  transform: translate(4px, 4px);
}
.banner:hover .banner__label-inner { border-color: var(--gold-light); }
.banner:hover .banner__label-inner::before,
.banner:hover .banner__label-inner::after {
  width: 12px; height: 12px;
  border-color: var(--gold-light);
}

.banner__label-text {
  font-family: var(--font-heading);
  font-size: clamp(0.6rem, 1.2vw, 0.82rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  transition: letter-spacing 0.35s var(--ease);
}
.banner:hover .banner__label-text { letter-spacing: 0.3em; }

/* ============================================================
   FESTIVAL INTRO (cream background, gold accents)
   ============================================================ */
.intro {
  background: var(--cream);
  padding: var(--section-pad) clamp(1.5rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative gold rule */
.intro::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.intro__ornament {
  width: clamp(80px, 12vw, 140px);
  height: auto;
  margin: 0 auto 2rem;
  opacity: 0.55;
}

.intro__strapline {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.intro__rule {
  width: 55px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 1.75rem;
}

.intro__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--earth);
  line-height: 1.18;
  max-width: 700px;
  margin: 0 auto 1.75rem;
}

.intro__body {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--earth-warm);
  max-width: 620px;
  margin: 0 auto 3.5rem;
  line-height: 1.85;
}

.intro__stats {
  display: flex;
  justify-content: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  flex-wrap: wrap;
}
.intro__stat-label {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.4rem;
}
.intro__stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--earth);
}

/* ============================================================
   HIGHLIGHTS BAND
   ============================================================ */
.highlights {
  background: var(--earth);
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 6vw, 5rem);
  text-align: center;
}
.highlights__lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1.4;
  color: var(--gold-pale);
  max-width: 900px;
  margin: 0 auto 1.5rem;
}
.highlights__detail {
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  line-height: 1.85;
  color: rgba(245, 232, 196, 0.78);
  max-width: 760px;
  margin: 0 auto;
}

/* ============================================================
   ACTIVITY PAGE HERO
   ============================================================ */
.act-hero {
  position: relative;
  height: 72vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding: 0 0 4.5rem;
  overflow: hidden;
}
.act-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.act-hero__bg.loaded { transform: scale(1); }
.act-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 21, 8, 0.22) 0%,
    rgba(28, 21, 8, 0.15) 35%,
    rgba(28, 21, 8, 0.82) 100%
  );
}
.act-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
}
.act-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232,200,120,0.65);
}
.act-hero__breadcrumb a { transition: color 0.25s; }
.act-hero__breadcrumb a:hover { color: var(--gold-light); }
.act-hero__breadcrumb-sep {
  display: inline-block;
  width: 18px; height: 1px;
  background: rgba(196,145,42,0.4);
}
.act-hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.63rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}
.act-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.03;
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.section { padding: var(--section-pad) clamp(1.5rem, 6vw, 5rem); }
.section--cream   { background: var(--cream); }
.section--white   { background: var(--white); }
.section--parch   { background: var(--parchment); }
.section--earth,
.section--dark    { background: var(--earth);     color: var(--parchment); }
.section--forest  { background: var(--forest);    color: var(--parchment); }

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; }

.section-header { text-align: center; margin-bottom: clamp(3rem, 5vw, 5rem); }

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section--earth  .section-eyebrow,
.section--dark   .section-eyebrow,
.section--forest .section-eyebrow { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--earth);
  line-height: 1.15;
}
.section--earth  .section-title,
.section--dark   .section-title,
.section--forest .section-title { color: var(--parchment); }

.section-rule {
  width: 48px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 1.4rem auto 0;
}

.section-lead {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--earth-warm);
  max-width: 680px;
  margin: 1.5rem auto 0;
  text-align: center;
  line-height: 1.85;
}
.section--earth  .section-lead,
.section--dark   .section-lead,
.section--forest .section-lead { color: rgba(247,237,207,0.75); }

/* ============================================================
   PULL QUOTE / PHILOSOPHY
   ============================================================ */
.pullquote {
  background: var(--parchment);
  padding: var(--section-pad) clamp(1.5rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pullquote::before {
  content: '\201C';
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 14rem;
  color: rgba(196,145,42,0.1);
  line-height: 1;
  pointer-events: none;
}
.pullquote__text {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.85rem);
  font-weight: 300;
  font-style: italic;
  color: var(--earth);
  max-width: 820px;
  margin: 0 auto 1.5rem;
  line-height: 1.35;
}
.pullquote__attr {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ============================================================
   CARDS — Vendor, Artist, Craft, Workshop
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}
.cards-grid--wide { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }

/* Vendor card */
.vendor-card {
  background: var(--white);
  border: 1px solid rgba(196,145,42,0.15);
  padding: 1.75rem;
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  overflow: hidden;
}
.vendor-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease);
}
.vendor-card:hover { transform: translateY(-5px); box-shadow: 0 14px 45px rgba(196,145,42,0.12); }
.vendor-card:hover::before { height: 100%; }
.vendor-card__name { font-family: var(--font-display); font-size: 1.55rem; font-style: italic; color: var(--earth); margin-bottom: 0.35rem; }
.vendor-card__tag  { font-family: var(--font-heading); font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.9rem; }
.vendor-card__desc { font-size: 1rem; color: var(--earth-warm); line-height: 1.7; }

/* Artist card */
.artist-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,145,42,0.15);
  padding: 1.4rem 1.6rem;
  transition: all 0.35s var(--ease);
}
.artist-card:hover {
  background: rgba(196,145,42,0.06);
  border-color: rgba(196,145,42,0.35);
  transform: translateY(-3px);
}
.artist-card__day  { font-family: var(--font-heading); font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.4rem; }
.artist-card__name { font-family: var(--font-display); font-size: 1.4rem; font-style: italic; color: var(--parchment); margin-bottom: 0.5rem; }
.artist-card__detail { font-family: var(--font-body); font-size: 0.9rem; color: rgba(168,197,160,0.7); margin: -0.3rem 0 0.6rem; }
.artist-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.25s;
}
.artist-card__link:hover { gap: 0.7rem; }

/* Craft card */
.craft-card {
  background: rgba(28,21,8,0.55);
  border: 1px solid rgba(196,145,42,0.18);
  padding: 2rem;
  text-align: center;
  transition: all 0.38s var(--ease);
}
.craft-card:hover {
  background: rgba(74,52,18,0.65);
  border-color: rgba(196,145,42,0.45);
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}
.craft-card__name  { font-family: var(--font-display); font-size: 1.45rem; font-style: italic; color: var(--gold-pale); margin-bottom: 0.65rem; }
.craft-card__desc  { font-size: 0.98rem; color: rgba(245,232,196,0.7); line-height: 1.72; }

/* Workshop card */
.workshop-card {
  background: var(--white);
  border: 1px solid rgba(196,145,42,0.13);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.workshop-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold-deep), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.workshop-card:hover { transform: translateY(-5px); box-shadow: 0 14px 45px rgba(196,145,42,0.1); }
.workshop-card:hover::after { transform: scaleX(1); }
.workshop-card__name { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; color: var(--earth); margin-bottom: 0.6rem; }
.workshop-card__desc { font-size: 1rem; color: var(--earth-warm); line-height: 1.72; }

/* ============================================================
   STAGE TABS
   ============================================================ */
.tabs__nav {
  display: flex;
  border-bottom: 1px solid rgba(196,145,42,0.2);
  margin-bottom: 2.75rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs__nav::-webkit-scrollbar { display: none; }
.tabs__btn {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(196,145,42,0.4);
  padding: 0.9rem 1.75rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.28s, border-color 0.28s;
  white-space: nowrap;
}
.tabs__btn:hover { color: rgba(196,145,42,0.75); }
.tabs__btn.active { color: var(--gold-light); border-bottom-color: var(--gold); }

/* Day tabs on parchment */
.tabs__nav.tabs--day { border-bottom-color: rgba(196,145,42,0.18); }
.tabs__nav.tabs--day .tabs__btn { color: rgba(28,21,8,0.4); }
.tabs__nav.tabs--day .tabs__btn:hover { color: rgba(28,21,8,0.65); }
.tabs__nav.tabs--day .tabs__btn.active { color: var(--earth); border-bottom-color: var(--gold); }

.tabs__panel { display: none; animation: fadeIn 0.38s var(--ease); }
.tabs__panel.active { display: block; }

/* ============================================================
   CABARET TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 2.75rem;
  max-width: 720px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0.4rem; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(196,145,42,0.08));
}
.timeline__item {
  position: relative;
  padding-bottom: 2.25rem;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: -2.75rem; top: 0.55rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-3.5px);
  box-shadow: 0 0 0 3px rgba(196,145,42,0.15);
}
.timeline__time   { font-family: var(--font-heading); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.35rem; }
.timeline__artist { font-family: var(--font-display); font-size: 1.6rem; font-style: italic; color: var(--earth); margin-bottom: 0.35rem; }
.timeline__desc   { font-size: 1rem; color: var(--earth-warm); line-height: 1.65; }

/* ============================================================
   COMMUNITY VALUES
   ============================================================ */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.values-grid .value-item {
  flex: 0 1 260px;
}
@media (max-width: 700px) {
  .values-grid { grid-template-columns: 1fr; }
}
.value-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(196,145,42,0.18);
  transition: background 0.35s, border-color 0.35s, transform 0.35s var(--ease);
}
.value-item:hover {
  background: rgba(196,145,42,0.06);
  border-color: rgba(196,145,42,0.38);
  transform: translateY(-4px);
}
.value-item__name  { font-family: var(--font-heading); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.75rem; }
.value-item__desc  { font-size: 1rem; color: rgba(247,237,207,0.72); line-height: 1.7; }

/* The card colours above are tuned for dark sections. On light (parchment/cream)
   sections the pale text becomes unreadable, so give it dark, on-brand tones. */
.section--parchment .value-item__name,
.section--parch     .value-item__name,
.section--cream     .value-item__name,
.section--white     .value-item__name { color: #8a6012; } /* darker gold — clears WCAG AA on cream */
.section--parchment .value-item__desc,
.section--parch     .value-item__desc,
.section--cream     .value-item__desc,
.section--white     .value-item__desc { color: var(--earth-warm); }

/* ============================================================
   GET INVOLVED CARDS
   ============================================================ */
.involve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.involve-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(196,145,42,0.16);
  padding: 2rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.involve-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 45px rgba(196,145,42,0.12);
  border-color: rgba(196,145,42,0.4);
}
.involve-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--earth);
  margin-bottom: 0.7rem;
}
.involve-card__desc {
  font-size: 1rem;
  color: var(--earth-warm);
  line-height: 1.72;
  margin-bottom: 1.6rem;
  flex: 1 1 auto;
}
.involve-card__cta {
  align-self: flex-start;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(196,145,42,0.4);
  padding-bottom: 3px;
  transition: color 0.25s, border-color 0.25s;
}
.involve-card__cta:hover { color: var(--gold); border-color: var(--gold); }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.layout-split__visual { height: 400px; background-size: cover; background-position: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--earth);
  padding: 4.5rem clamp(1.5rem, 6vw, 5rem) 2.25rem;
  border-top: 1px solid rgba(196,145,42,0.15);
}
.footer__grid {
  max-width: var(--max-width);
  margin: 0 auto 3.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}

.footer__logo-img {
  height: 50px;
  width: auto;
  max-width: 220px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  margin-bottom: 1.4rem;
}

.footer__tagline {
  font-size: 1rem;
  color: rgba(245,232,196,0.5);
  line-height: 1.75;
  max-width: 290px;
  margin-bottom: 1.75rem;
}
.footer__social { display: flex; gap: 0.75rem; }
.footer__social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(196,145,42,0.22);
  display: flex; align-items: center; justify-content: center;
  color: rgba(196,145,42,0.55);
  transition: all 0.3s var(--ease);
}
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(196,145,42,0.08);
}
.footer__col-heading { font-family: var(--font-heading); font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.5rem; }
.footer__col-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col-links a { font-size: 1rem; color: rgba(245,232,196,0.52); transition: color 0.25s, padding-left 0.25s; }
.footer__col-links a:hover { color: var(--gold-light); padding-left: 4px; }

.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(196,145,42,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy { font-family: var(--font-heading); font-size: 0.58rem; letter-spacing: 0.1em; color: rgba(245,232,196,0.25); }

/* ============================================================
   FESTIVAL VIDEO SECTION
   ============================================================ */
.video-section {
  background: var(--earth);
  overflow: hidden;
  line-height: 0;
}

.video-section__player {
  width: 100%;
  display: block;
  max-height: 80vh;
  object-fit: cover;
}

/* ============================================================
   MOSAIC CALLOUTS
   ============================================================ */
.mosaic__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, min(420px, 38vw));
}

.mosaic__cell { overflow: hidden; }

.mosaic__cell--photo {
  background-size: cover;
  background-position: center;
  transition: transform 0.9s var(--ease);
}
.mosaic__cell--photo:hover { transform: scale(1.04); }

.mosaic__cell--text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5rem);
}

.mosaic__cell--forest { background: var(--forest); color: var(--parchment); }
.mosaic__cell--sage   { background: var(--sage);   color: var(--white); }
.mosaic__cell--earth  { background: var(--earth);  color: var(--parchment); }

.mosaic__text-inner { max-width: 30ch; }

.mosaic__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.mosaic__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.mosaic__body {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.75;
  opacity: 0.72;
  margin-bottom: 2rem;
}

.mosaic__cta {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--earth);
  background: var(--gold);
  padding: 0.75rem 2.2rem;
  transition: background 0.25s, letter-spacing 0.25s;
}
.mosaic__cta:hover {
  background: var(--gold-light);
  letter-spacing: 0.28em;
}

/* ============================================================
   FIND US — LOCATION MAP
   ============================================================ */
.find-us {
  background: var(--earth);
  padding: var(--section-pad) clamp(1.5rem, 5vw, 5rem);
}

.find-us__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.find-us__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--parchment);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.find-us__title span {
  color: var(--gold);
  font-style: italic;
}

.find-us__detail {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.find-us__address {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(245,232,196,0.55);
  line-height: 1.7;
  margin-bottom: 2.2rem;
}

.find-us__cta {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--earth);
  background: var(--gold);
  padding: 0.85rem 2.5rem;
  transition: background 0.25s;
}
.find-us__cta:hover { background: var(--gold-light); }

.find-us__map {
  border: 1px solid rgba(196,145,42,0.2);
  overflow: hidden;
  line-height: 0;
}
.find-us__map iframe { display: block; width: 100%; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp  { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollPulse { 0%,100% { opacity: 0.35; } 50% { opacity: 0.75; } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.72s var(--ease), transform 0.72s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-height: 62px; }
  .nav__links    { display: none; }
  .nav__hamburger { display: flex; }
  /* Stack the activity banners full-width on mobile with a thin warm hairline
     between them so the sections read as distinct (client feedback Jun 2026). */
  .banners {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 56vw);
    gap: 6px;
    background: var(--parchment);
  }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__logo-img { height: 60px; max-width: 260px; }
  .timeline { padding-left: 2rem; }
  .intro__stats { gap: 2rem; }
  .layout-split { grid-template-columns: 1fr; gap: 2rem; }
  .layout-split__visual { height: 260px; }
  /* Hero stacks on mobile: green text panel on top (auto height so the logo
     never clips under the fixed nav), festival photo below. */
  .hero { min-height: auto; }
  .hero__split { grid-template-columns: 1fr; grid-template-rows: auto auto; min-height: auto; }
  .hero__panel--text { align-items: center; text-align: center; padding: 2.5rem 1.8rem 3rem; }
  .hero__panel--photo { min-height: 62vw; }

  .mosaic__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .mosaic__cell--photo { height: 56vw; min-height: 220px; }
  .mosaic__cell--text  { padding: 3rem 2rem; }
  /* The desktop checkerboard linearises to two photos / two text blocks
     clumping together on mobile. Re-pair each text with its own photo so the
     column alternates text -> photo, giving every text an image before and
     after (client feedback Jun 2026). */
  .mosaic__cell:nth-child(1) { order: 1; }  /* Sleep under the stars — text  */
  .mosaic__cell:nth-child(2) { order: 2; }  /* Sleep under the stars — photo */
  .mosaic__cell:nth-child(4) { order: 3; }  /* A sanctuary in nature — text  */
  .mosaic__cell:nth-child(3) { order: 4; }  /* A sanctuary in nature — photo */
  .mosaic__cell:nth-child(5) { order: 5; }  /* Moments that last forever — text  */
  .mosaic__cell:nth-child(6) { order: 6; }  /* Moments that last forever — photo */
  .find-us__inner { grid-template-columns: 1fr; }
  .find-us__map iframe { height: 300px; }
}

@media (max-width: 480px) {
  .hero__logo { width: clamp(160px, 70vw, 280px); }
  .act-hero__title { font-size: clamp(2.4rem, 11vw, 4rem); }
}

/* ============================================================
   FAQ PAGE — accessible accordion
   ============================================================ */
.faq-group { max-width: 880px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.faq-group:last-child { margin-bottom: 0; }
.faq-group__heading {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-bottom: 0.9rem;
  margin-bottom: 0.6rem;
  border-bottom: 1px solid rgba(196,145,42,0.25);
}
.faq-item {
  border-bottom: 1px solid rgba(196,145,42,0.16);
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0.25rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--earth);
  transition: color 0.25s;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:hover { color: var(--gold-deep); }
.faq-item > summary::after {
  content: '+';
  font-family: var(--font-body);
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold);
  flex: 0 0 auto;
  transition: transform 0.3s var(--ease);
}
.faq-item[open] > summary::after { transform: rotate(45deg); }
.faq-item__answer {
  padding: 0 0.25rem 1.5rem;
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--earth-warm);
}
.faq-item__answer p { margin-bottom: 0.9rem; }
.faq-item__answer p:last-child { margin-bottom: 0; }
.faq-item__answer a {
  color: var(--gold-deep);
  border-bottom: 1px solid rgba(196,145,42,0.4);
}
.faq-item__answer ul {
  list-style: none;
  margin: 0.4rem 0 0;
}
.faq-item__answer li {
  padding: 0.15rem 0;
}
.faq-item__answer li strong { color: var(--earth); }

/* ============================================================
   TRAVEL PAGE
   ============================================================ */
.travel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.travel-card {
  background: var(--white);
  border: 1px solid rgba(196,145,42,0.16);
  padding: 2.2rem;
}
.travel-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--earth);
  margin-bottom: 0.9rem;
}
.travel-card__body {
  font-size: 1.02rem;
  color: var(--earth-warm);
  line-height: 1.74;
}
.travel-card__body p { margin-bottom: 0.85rem; }
.travel-card__body p:last-child { margin-bottom: 0; }
.travel-card__body strong { color: var(--earth); }
.travel-times {
  list-style: none;
  margin-top: 0.4rem;
}
.travel-times li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(196,145,42,0.14);
}
.travel-times li:last-child { border-bottom: none; }
.travel-times .day { color: var(--earth); }
.travel-times .time { color: var(--earth-warm); }

/* what3words highlight */
.w3w {
  display: block;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--forest);
  color: var(--parchment);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(232,200,120,0.25);
}
.w3w__label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.w3w__words {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 0.4rem;
  overflow-wrap: break-word;
}
.w3w__words .slashes { color: #e11f26; font-style: normal; }
.w3w__hint {
  font-size: 0.95rem;
  color: rgba(247,237,207,0.7);
}
.w3w__hint a { color: var(--gold-light); border-bottom: 1px solid rgba(232,200,120,0.4); overflow-wrap: break-word; }

/* ---- Responsive tuning for new FAQ / Travel components ---- */
@media (max-width: 768px) {
  .faq-item > summary { font-size: 1.2rem; gap: 1.1rem; }
  .travel-card { padding: 1.8rem; }
}
@media (max-width: 480px) {
  .faq-group__heading { font-size: 0.66rem; }
  .faq-item > summary { font-size: 1.1rem; gap: 0.9rem; padding: 1.1rem 0.1rem; }
  .faq-item > summary::after { font-size: 1.3rem; }
  .faq-item__answer { font-size: 1rem; padding-bottom: 1.25rem; }
  .travel-card { padding: 1.5rem 1.35rem; }
  .travel-card__name { font-size: 1.35rem; }
  .w3w { padding: 1.9rem 1.25rem; }
  .w3w__words { font-size: 1.5rem; }
  .w3w__label { font-size: 0.62rem; }
}
