:root, html.theme-dark {
  --paper: #0e0e0e;
  --paper-2: #161616;
  --ink: #f3f3f3;
  --muted: #9a9a9a;
  --line: #2c2c2c;
  --gold: #c4a574;
  --gold-deep: #d4b88a;
  --card: #1a1a1a;
  --overlay: rgba(0, 0, 0, 0.5);
  --serif: "Montserrat", "Helvetica Neue", sans-serif;
  --sans: "Montserrat", "Helvetica Neue", sans-serif;
  --canopy: var(--paper);
  --ivory: var(--ink);
  --mist: var(--muted);
  --sun: var(--gold);
  --moss: var(--paper-2);
  --bark: var(--card);
  --fern: #2c2c2c;
  --header-bg: rgba(14, 14, 14, 0.92);
  --header-scrolled: rgba(14, 14, 14, 0.94);
  --hero-bg: #111;
  --hero-wash: linear-gradient(90deg, rgba(14, 14, 14, 0.82) 0%, rgba(14, 14, 14, 0.32) 38%, rgba(14, 14, 14, 0) 58%);
  --nav-panel: #111;
  --form-fill: #141414;
  --btn-on: #0e0e0e;
  --edge: clamp(1rem, 4vw, 3.25rem);
  --max: 1680px;
  --text: clamp(0.94rem, 0.8rem + 0.45vw, 1.125rem);
  --h1: clamp(1.5rem, 0.65rem + 3vw, 3.2rem);
  --h2: clamp(1.2rem, 0.72rem + 1.55vw, 2rem);
  --h3: clamp(1.02rem, 0.88rem + 0.55vw, 1.38rem);
  --small: clamp(0.6rem, 0.5rem + 0.28vw, 0.78rem);
  --nav: clamp(0.6rem, 0.48rem + 0.32vw, 0.8rem);
  --brand: clamp(0.9rem, 0.68rem + 0.55vw, 1.28rem);
  --display: clamp(1.6rem, 0.45rem + 4.1vw, 4.2rem);
}
html.theme-light {
  --paper: #f6f5f2;
  --paper-2: #efeee9;
  --ink: #111111;
  --muted: #8a8a8a;
  --line: #e6e4de;
  --gold: #c4a574;
  --gold-deep: #b08d5a;
  --card: #ffffff;
  --overlay: rgba(17, 17, 17, 0.38);
  --fern: #d8d6d0;
  --header-bg: rgba(246, 245, 242, 0.94);
  --header-scrolled: rgba(255, 255, 255, 0.94);
  --hero-bg: #eceae6;
  --hero-wash: linear-gradient(90deg, rgba(246, 245, 242, 0.82) 0%, rgba(246, 245, 242, 0.28) 38%, rgba(246, 245, 242, 0) 58%);
  --nav-panel: #ffffff;
  --form-fill: #ffffff;
  --btn-on: #ffffff;
}
html { color-scheme: dark; scroll-behavior: smooth; overflow-x: hidden; }
html.theme-light { color-scheme: light; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--text);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img, svg, video, canvas { max-width: 100%; height: auto; display: block; }
iframe { max-width: 100%; }
.protect-image {
  position: relative;
  overflow: hidden;
}
.protect-image img {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
  -webkit-touch-callout: none;
}
.protect-shield {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
}
a { color: var(--gold-deep); text-decoration: none; }
a:hover { color: var(--ink); }
h1, h2, h3, .brand-name {
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 0.4em;
  color: var(--ink);
  letter-spacing: -0.03em;
}
h1 { font-size: var(--h1); overflow-wrap: anywhere; }
h2 { font-size: var(--h2); overflow-wrap: anywhere; }
h3 { font-size: var(--h3); overflow-wrap: anywhere; }
p { margin: 0 0 1rem; overflow-wrap: break-word; }
.header-inner,
.container,
.container.wide {
  width: min(var(--max), calc(100% - (2 * var(--edge))));
  margin-inline: auto;
}
.container.narrow { width: min(40rem, calc(100% - (2 * var(--edge)))); }
.container.wide { width: min(68rem, calc(100% - (2 * var(--edge)))); }
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip-link:focus { left: 1rem; top: 1rem; background: var(--gold); color: #fff; padding: 0.4rem 0.8rem; }

.sw-kicker {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: var(--small);
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.sw-btn {
  display: inline-block;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 0.85em 1.55em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: var(--small);
  font-weight: 400;
  background: transparent;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  transition: background 0.25s ease, color 0.25s ease;
}
.sw-btn:hover { background: var(--ink); color: var(--btn-on); }
.sw-btn-gold { background: transparent; color: var(--ink); border-color: var(--gold); }
.sw-btn-gold:hover { background: var(--ink); color: var(--btn-on); border-color: var(--ink); }
.text-link { border-bottom: 1px solid var(--gold); padding-bottom: 0.1em; color: var(--ink); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-over {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}
.header-over.is-scrolled {
  background: var(--header-scrolled);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.6rem, 1.5vw, 1.4rem);
  padding: clamp(0.75rem, 1.5vw, 1.35rem) 0;
  width: min(var(--max), calc(100% - (2 * var(--edge))));
}
.brand { color: var(--ink); display: flex; align-items: center; min-width: 0; flex: 0 1 auto; margin-right: auto; }
.brand-kicker { font-size: var(--small); letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.brand-name {
  font-size: var(--brand);
  margin: 0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.site-logo {
  height: clamp(28px, 3.2vw, 40px);
  width: auto;
  max-width: min(220px, 48vw);
  max-height: clamp(28px, 3.2vw, 40px);
  object-fit: contain;
  background: transparent;
}
.site-nav { display: flex; align-items: center; gap: clamp(0.8rem, 1.8vw, 1.8rem); }
.site-nav ul { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: clamp(0.85rem, 1.6vw, 1.7rem); list-style: none; margin: 0; padding: 0; }
.site-nav a {
  color: var(--ink);
  font-size: var(--nav);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 0.2em;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover { color: var(--ink); border-bottom-color: var(--gold); }
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a,
.site-nav .current-menu-ancestor > a {
  border-bottom-color: var(--gold);
}
body:not(.home) .site-nav .menu-item-home > a {
  border-bottom-color: transparent;
}
.nav-socials { display: none; font-size: var(--small); letter-spacing: 0.12em; text-transform: uppercase; }
.nav-toggle {
  display: none;
  background: none;
  color: var(--ink);
  border: 0;
  padding: 0.4rem;
  min-width: 40px;
  min-height: 40px;
  flex-shrink: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
}

.mode-switch {
  position: fixed;
  left: 0;
  top: 38%;
  z-index: 55;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: var(--gold);
  color: #fff;
  border: 0;
  border-radius: 0 0 8px 8px;
  padding: 0.9rem 0.42rem;
  font: inherit;
  font-size: var(--small);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

.intro-hero {
  padding: 4.5rem 0 2rem;
  text-align: left;
}
.intro-copy { max-width: 40rem; }
.intro-copy h1 {
  font-size: var(--display);
  margin-bottom: 0.35rem;
  font-weight: 700;
}
.intro-role {
  font-family: var(--sans);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 0.85rem + 0.7vw, 1.35rem);
  color: var(--muted);
  margin: 0 0 1.4rem;
}
.intro-copy .hero-lead {
  font-size: var(--text);
  max-width: 34rem;
  color: var(--muted);
  font-weight: 400;
}
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 1.8rem; }

.stage-hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--hero-bg);
  color: var(--ink);
}
.stage-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.stage-slide.is-on {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.stage-photo,
.stage-photo img {
  width: 100%;
  height: 100%;
  min-height: 100%;
}
.stage-hero .protect-image {
  position: absolute;
  inset: 0;
  height: 100%;
}
.stage-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}
.stage-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-wash);
  pointer-events: none;
  z-index: 2;
}
.stage-copy {
  position: absolute;
  left: calc(var(--edge) + 2.8rem);
  bottom: clamp(4.5rem, 10vh, 7.5rem);
  z-index: 4;
  max-width: min(36rem, calc(100% - 9rem));
}
.stage-kicker {
  margin: 0 0 0.7rem;
  font-size: clamp(0.7rem, 0.55rem + 0.4vw, 0.9rem);
  font-weight: 400;
  color: var(--muted);
}
.stage-title {
  font-family: var(--sans);
  font-size: var(--display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 1.1rem;
  color: var(--ink);
}
.stage-more {
  color: var(--muted);
  font-size: var(--small);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
.stage-more:hover { color: var(--ink); }
.rail-left,
.rail-right {
  position: absolute;
  z-index: 5;
  display: flex;
  gap: 1.4rem;
  align-items: center;
  writing-mode: vertical-rl;
  font-size: var(--small);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.rail-left {
  left: 1.35rem;
  bottom: 7.5rem;
  transform: rotate(180deg);
}
.rail-right {
  right: 1.35rem;
  top: 7rem;
}
.rail-left a,
.rail-right a {
  color: var(--ink);
}
.rail-left a:hover,
.rail-right a:hover { color: var(--gold-deep); }
.stage-pager {
  position: absolute;
  right: 3.2rem;
  bottom: 2.2rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.stage-pager button {
  background: none;
  border: 0;
  padding: 0;
  color: var(--muted);
  font: inherit;
  font-size: var(--small);
  letter-spacing: 0.08em;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.12rem;
}
.stage-pager button.is-on {
  color: var(--ink);
  border-bottom-color: var(--gold);
}
.stage-prev,
.stage-next {
  font-size: 1.1rem !important;
  color: var(--ink) !important;
}

.section { padding: 5rem 0; }
.section.moss { background: var(--paper-2); }
.intro-strip { text-align: center; padding: 5.5rem 0; }
.intro-strip .quote::before {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.6rem;
}
.quote {
  font-family: var(--sans);
  font-size: clamp(1.1rem, 0.8rem + 1.4vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.45;
}
.quote-meta { color: var(--muted); font-size: var(--small); letter-spacing: 0.04em; }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.section-head h2 { flex: 1; }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.4rem, 0.7vw, 0.7rem);
  align-items: stretch;
}
.photo-card {
  position: relative;
  display: block;
  color: #fff;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  min-height: 0;
  height: auto;
  background: var(--paper-2);
}
.photo-card .protect-image,
.photo-fallback {
  position: absolute;
  inset: 0;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}
.photo-card img,
.photo-card .protect-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
}
.photo-card:hover img { transform: scale(1.04); }
.photo-fallback { display: block; background: linear-gradient(160deg, #d8d2c6, #b7b09f); }
.photo-meta {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem 1rem 1rem;
  background: linear-gradient(transparent 35%, var(--overlay));
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
}
.photo-card:hover .photo-meta,
.photo-card:focus-visible .photo-meta { opacity: 1; }
.photo-title { display: block; font-family: var(--sans); font-size: clamp(0.9rem, 0.75rem + 0.45vw, 1.15rem); font-weight: 600; color: #fff; }
.photo-loc { font-size: var(--small); color: rgba(255,255,255,0.82); letter-spacing: 0.06em; text-transform: uppercase; }

.workshop-list { display: grid; gap: 1rem; }
.workshop-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.5vw, 1.4rem);
}
.workshop-card, .field-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 1.5rem 1.6rem;
}
.workshop-card { padding: 0; overflow: hidden; }
.workshop-card-body { padding: 1.25rem 1.4rem 1.4rem; }
.workshop-thumb,
.workshop-hero {
  display: block;
  overflow: hidden;
  background: var(--paper-2);
}
.workshop-thumb {
  aspect-ratio: 16 / 10;
}
.workshop-thumb .protect-image,
.workshop-hero .protect-image {
  height: 100%;
}
.workshop-thumb img,
.workshop-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.workshop-hero {
  margin: 0 0 1.6rem;
  aspect-ratio: 16 / 8;
  max-height: min(62vh, 640px);
}
.workshop-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.4rem 0 1.8rem;
}
.workshop-gallery .protect-image {
  aspect-ratio: 4 / 3;
}
.workshop-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prose img,
.prose figure,
.prose .wp-block-image,
.prose .wp-block-image img,
.story-body img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.1rem 0;
}
.workshop-card h3 a { color: var(--ink); }
.workshop-foot { display: flex; justify-content: space-between; gap: 0.75rem 1rem; align-items: center; flex-wrap: wrap; }

.instagram-band { background: var(--paper-2); }
.split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2.5rem; align-items: center; }
.split-top { display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 2rem; align-items: start; padding-bottom: 2rem; }
.ig-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; min-height: 220px; }
.ig-tiles .protect-image,
.ig-tiles .ig-tile {
  min-height: 110px;
  overflow: hidden;
  background: var(--paper-2);
}
.ig-tiles img {
  width: 100%;
  height: 100%;
  min-height: 110px;
  object-fit: cover;
}

.video-frame { position: relative; padding-top: 56.25%; background: #111; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.cta-band { text-align: center; background: var(--paper); }
.page-hero { padding: clamp(2.6rem, 7vw, 5rem) 0 clamp(1.25rem, 3vw, 2.2rem); }
.page-wrap { padding-bottom: 4rem; }
.prose { max-width: 42rem; }
.workshop-single .prose { max-width: none; }
.prose p { color: var(--muted); }
.filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.2rem; }
.filters button {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 0.4em 0.85em;
  cursor: pointer;
  min-height: 40px;
  font-size: var(--small);
}
.filters button.is-on { background: var(--ink); color: var(--btn-on); border-color: var(--ink); }
.photo-card.is-hidden { display: none; }
.empty-note, .sw-note { color: var(--muted); }
.sw-form-error { color: #9a3f2c; }

.sw-booking-form, .sw-form-success {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 1.5rem;
  margin: 1.5rem 0 3rem;
}
.sw-booking-form label { display: block; font-size: var(--small); margin-bottom: 0.3rem; color: var(--muted); }
.sw-booking-form input, .sw-booking-form select, .sw-booking-form textarea {
  width: 100%;
  background: var(--form-fill);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.7rem 0.8rem;
  font: inherit;
}
.sw-booking-form input[type="file"] {
  padding: 0.5rem 0;
  border: 0;
  background: transparent;
}
.sw-status-steps {
  display: flex;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-wrap: wrap;
}
.sw-status-steps li {
  flex: 1;
  min-width: 5.4rem;
  text-align: center;
  font-size: var(--small);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 0.4rem;
  border: 1px solid var(--line);
  color: var(--muted);
}
.sw-status-steps li.is-done { border-color: var(--gold); color: var(--gold); }
.sw-status-steps li.is-on { background: var(--gold); color: #fff; border-color: var(--gold); }
.sw-join-card,
.sw-id-card {
  border: 1px solid var(--gold);
  padding: 1rem 1.2rem;
  margin: 1rem 0 1.4rem;
}
.sw-booking-id {
  font-size: clamp(1.35rem, 1rem + 1.4vw, 2rem);
  letter-spacing: 0.14em;
  font-weight: 700;
  margin: 0.15rem 0 0.55rem;
}
.sw-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.sw-pay-card { text-align: center; margin-top: 1rem; }
.sw-pay-card img { margin: 0 auto 0.8rem; max-width: 220px; background: #fff; padding: 0.6rem; border: 1px solid var(--line); }
.sw-upi-id { letter-spacing: 0.04em; }

.sw-desk-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.4rem;
}
.sw-desk-nav a {
  border: 1px solid var(--line);
  padding: 0.45rem 0.85rem;
  font-size: var(--small);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}
.sw-desk-nav a.is-on {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.sw-desk-table-wrap { overflow-x: auto; margin: 1rem 0 2rem; }
.sw-desk-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.sw-desk-table th,
.sw-desk-table td {
  text-align: left;
  padding: 0.7rem 0.55rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.sw-desk-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.sw-btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.sw-bill-form { max-width: 36rem; }
.sw-desk .sw-form-success { padding: 0.8rem 1rem; border: 1px solid var(--gold); }

.photo-stage { background: #111; }
.photo-stage .protect-image { background: #111; }
.photo-stage img { width: min(1200px, 100%); margin: 0 auto; max-height: 88vh; object-fit: contain; }
.frame-list { display: grid; gap: 2.4rem; padding-bottom: 3rem; }
.story-frame figcaption { margin-top: 0.7rem; font-family: var(--sans); font-size: var(--h3); font-weight: 600; }
.exif-line { font-size: var(--small); letter-spacing: 0.06em; color: var(--gold-deep); }
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); gap: 1.2rem; }
.yt-channel-row { margin-top: 1.4rem; }
.topic-links { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }
.field-card ul { padding-left: 1.1rem; color: var(--muted); }
.field-card li { margin-bottom: 0.45rem; }

.site-footer { position: relative; padding: 4rem 0 1.5rem; background: var(--paper-2); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1fr; gap: 2rem; }
.footer-label { letter-spacing: 0.16em; text-transform: uppercase; font-size: var(--small); color: var(--gold-deep); }
.footer-bio { color: var(--muted); max-width: 28rem; }
.footer-socials { list-style: none; padding: 0; margin: 0; }
.footer-socials a, .site-footer .menu a { color: var(--ink); }
.copyright { text-align: center; color: var(--muted); font-size: var(--small); margin: 2.5rem 0 0; padding: 0 0.75rem; overflow-wrap: anywhere; }
.site-footer .menu { list-style: none; padding: 0; margin: 0; }
.prose img, .prose figure, .prose iframe, .story-body img, .wp-block-image, .wp-caption {
  max-width: 100%;
  height: auto;
}
.alignwide, .alignfull { max-width: 100%; }
.story-body, .prose { overflow-wrap: break-word; }
body.nav-open { overflow: hidden; }

@media (hover: none) {
  .photo-meta { opacity: 1; }
  .photo-card:hover img { transform: none; }
}

@media (max-width: 1100px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--nav-panel);
    padding: 1rem 1.25rem 1.5rem;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
  }
  .site-nav.is-open { display: flex; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav .nav-socials { display: flex; flex-direction: column; gap: 0; }
  .site-nav a {
    display: block;
    padding: 0.7rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--line);
  }
  .split, .split-top { grid-template-columns: 1fr; }
  .intro-hero { padding: 2.4rem 0 1rem; }
  .rail-left, .rail-right { display: none; }
  .stage-copy {
    left: var(--edge);
    bottom: 5.5rem;
    max-width: calc(100% - (2 * var(--edge)));
  }
  .stage-pager { right: var(--edge); }
  .photo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mode-switch { top: 22%; padding: 0.7rem 0.36rem; }
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 3rem 0; }
  .workshop-card, .field-card, .sw-booking-form, .sw-form-success { padding: 1.1rem; }
  .workshop-card { padding: 0; }
  .workshop-card-body { padding: 1.1rem; }
  .workshop-grid,
  .workshop-gallery { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .sw-btn { width: 100%; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .ig-tiles { min-height: 0; }
  .ig-tiles img,
  .ig-tiles .protect-image,
  .ig-tiles .ig-tile { min-height: 96px; }
  .cta-band .sw-btn { width: 100%; max-width: 22rem; }
  .sw-booking-form input,
  .sw-booking-form select,
  .sw-booking-form textarea { font-size: 16px; }
  .copyright { margin: 1.8rem 0 0; }
}

@media (max-width: 520px) {
  .sw-kicker { letter-spacing: 0.12em; }
  .photo-grid { grid-template-columns: 1fr; }
  .ig-tiles { grid-template-columns: 1fr 1fr; }
}
