/* ============================================================
   Creativity Activation Workshop
   Warm editorial aesthetic — cream, terracotta, sage
   ============================================================ */

:root {
  --cream:      #f5f0e8;
  --paper:      #faf7f2;
  --paper-warm: #f1ebe0;
  --ink:        #2a2318;
  --ink-soft:   #4a3e2e;
  --ink-mute:   #5a4d3c;
  --terra:      #c17f3a;
  --terra-deep: #a8682b;
  --sage:       #8faa8b;
  --sage-deep:  #5b8c7a;
  --line:       #e2d9cc;
  --line-soft:  rgba(42,35,24,0.08);

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  --maxw: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ---------- Shared type ---------- */
h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.1rem;
}

.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 0.7rem;
}
.section-label.center { text-align: center; }
.section-label.light  { color: var(--terra); }

.center { text-align: center; }
.light-h { color: var(--paper); }

em { font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.6rem;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .35s var(--ease), background .3s var(--ease),
              color .3s var(--ease), box-shadow .3s var(--ease);
}
.btn-primary {
  background: var(--terra);
  color: var(--paper);
  box-shadow: 0 6px 22px rgba(193,127,58,0.28);
}
.btn-primary:hover {
  background: var(--terra-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(193,127,58,0.36);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(42,35,24,0.25);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

/* Ghost button on dark backgrounds (e.g. the hero) */
.hero .btn-ghost {
  color: var(--paper);
  border-color: rgba(250,247,242,0.35);
}
.hero .btn-ghost:hover {
  color: var(--terra);
  border-color: var(--terra);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
  transition: background .4s var(--ease), padding .4s var(--ease),
              box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250,247,242,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  border-color: var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--paper);
  transition: color .4s var(--ease);
}
.nav.scrolled .nav-brand { color: var(--ink); }
.nav-mark {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terra), var(--sage-deep));
  flex-shrink: 0;
}
.nav-brand-text {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  text-decoration: none;
  color: rgba(250,247,242,0.8);
  transition: color .25s var(--ease);
  position: relative;
}
.nav.scrolled .nav-links a { color: var(--ink-mute); }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 1.5px;
  background: var(--terra);
  transition: width .3s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a:hover { color: var(--terra); }
.nav-cta {
  background: var(--terra);
  color: var(--paper) !important;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 500;
}
.nav-cta:hover { background: var(--terra-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--paper);
  transition: background .3s, transform .3s, opacity .3s;
}
.nav.scrolled .nav-toggle span { background: var(--ink); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  padding: 8rem clamp(1.25rem, 4vw, 3.5rem) 6rem;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; width: 100%; }

.hero-rings { position: absolute; inset: 0; z-index: 1; }
.ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
}
.ring-1 {
  top: -120px; right: -100px;
  width: 380px; height: 380px;
  border-width: 60px;
  border-color: rgba(193,127,58,0.16);
  animation: float 14s ease-in-out infinite;
}
.ring-2 {
  bottom: -140px; left: -60px;
  width: 300px; height: 300px;
  border-width: 44px;
  border-color: rgba(143,170,139,0.12);
  animation: float 18s ease-in-out infinite reverse;
}
.ring-3 {
  top: 40%; right: 16%;
  width: 90px; height: 90px;
  border-width: 16px;
  border-color: rgba(91,140,122,0.18);
  animation: float 11s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0) translateX(0); }
  50%     { transform: translateY(-26px) translateX(14px); }
}

.hero-grain {
  position: absolute; inset: 0; z-index: 1;
  opacity: 0.4;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.4rem;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(3rem, 9vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
}
.hero-title span { display: block; }
.hero-title-accent {
  font-style: italic;
  font-weight: 500;
  color: var(--terra);
}

.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 300;
  color: rgba(250,247,242,0.78);
  max-width: 30ch;
  margin-bottom: 2.4rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(250,247,242,0.18);
  margin-bottom: 2.6rem;
  max-width: 640px;
}
.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: rgba(250,247,242,0.7);
}
.meta-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terra); flex-shrink: 0; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.scroll-cue {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.5);
  text-decoration: none;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(rgba(250,247,242,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(0.6); opacity: 0.4; transform-origin: top; }
  50%     { transform: scaleY(1); opacity: 1; }
}

/* ============================================================
   Statement
   ============================================================ */
.statement {
  background: var(--paper);
  padding: clamp(4rem, 9vw, 7rem) clamp(1.25rem, 4vw, 3.5rem);
}
.statement-text {
  max-width: 880px;
  margin: 0 auto;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.6vw, 2.6rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-align: center;
}
.statement-text em { color: var(--terra); font-style: italic; }

/* ============================================================
   Experience
   ============================================================ */
.experience {
  background: var(--cream);
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3.5rem);
}
.exp-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.exp-block p { font-size: 0.95rem; line-height: 1.85; color: var(--ink-soft); margin-bottom: 1rem; }
.exp-block p:last-child { margin-bottom: 0; }

/* Card container — gives the text-heavy "Why It Works" block a visual break */
.exp-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: 0 10px 30px rgba(42,35,24,0.05);
}
.exp-objective {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem !important;
  color: var(--ink) !important;
  line-height: 1.6 !important;
  padding-left: 1.25rem;
  border-left: 3px solid var(--terra);
  margin-top: 1.4rem !important;
}
.exp-objective strong { font-weight: 600; font-style: normal; }
.exp-note {
  font-size: 0.86rem !important;
  color: var(--ink-mute) !important;
  margin-top: 1.2rem !important;
}

.dot-list { list-style: none; margin: 0.5rem 0 0; }
.dot-list li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
  padding: 0.65rem 0 0.65rem 1.6rem;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.dot-list li:last-child { border-bottom: none; }
.dot-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terra);
}

/* ============================================================
   Gallery
   ============================================================ */
.gallery {
  background: var(--paper);
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.25rem, 4vw, 3.5rem);
}
.gallery-head { max-width: var(--maxw); margin: 0 auto 2.6rem; text-align: center; }
.gallery-head h2 { margin-bottom: 0.5rem; }
.gallery-sub { font-size: 0.85rem; color: var(--ink-mute); }

.gallery-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}
.ph { position: relative; margin: 0; overflow: hidden; border-radius: 8px; }
.ph-tall { grid-row: span 2; }
.ph-wide { grid-column: span 2; }

.ph-fill {
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 30% 30%, rgba(193,127,58,0.14), transparent 60%),
    radial-gradient(circle at 75% 70%, rgba(143,170,139,0.16), transparent 60%),
    var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform .5s var(--ease);
}
.ph-fill::after {
  content: attr(data-label);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  opacity: 0.55;
}
.ph-fill img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.ph:hover .ph-fill { transform: scale(1.04); }
.ph figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1rem 0.85rem;
  font-size: 0.78rem;
  color: var(--paper);
  background: linear-gradient(transparent, rgba(42,35,24,0.78));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  border-radius: 0 0 8px 8px;
  pointer-events: none;
}
.ph:hover figcaption { opacity: 1; transform: translateY(0); }

/* ============================================================
   Outcomes
   ============================================================ */
.outcomes {
  background: var(--ink);
  padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3.5rem);
  position: relative;
}
.outcomes-inner { max-width: 760px; margin: 0 auto; }
.outcomes h2 { margin-bottom: 2.4rem; }
.outcomes-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.outcome-pill {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--paper);
  background: rgba(250,247,242,0.04);
  border: 1px solid rgba(143,170,139,0.4);
  padding: 0.55rem 1.15rem;
  border-radius: 24px;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.outcome-pill:hover {
  background: rgba(143,170,139,0.16);
  border-color: var(--sage);
  transform: translateY(-2px);
}

/* ============================================================
   Ideal For
   ============================================================ */
.idealfor {
  background: var(--cream);
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3.5rem);
}
.idealfor-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.idealfor-intro p { font-size: 0.95rem; line-height: 1.8; color: var(--ink-soft); }
.tags { display: flex; flex-wrap: wrap; gap: 0.6rem; padding-top: 0.4rem; }
.tag {
  font-size: 0.85rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.55rem 1rem;
  border-radius: 4px;
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.tag:hover { border-color: var(--terra); color: var(--terra-deep); transform: translateY(-2px); }

/* ============================================================
   Facilitator
   ============================================================ */
.facilitator {
  background: var(--paper);
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.25rem, 4vw, 3.5rem);
}
.fac-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.fac-photo { margin: 0; }
.ph-portrait {
  aspect-ratio: 4/5;
  height: auto;
}
.fac-bio { font-size: 0.98rem; line-height: 1.85; color: var(--ink-soft); margin-bottom: 1.6rem; }
.fac-facets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.fac-facets li {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sage-deep);
  position: relative;
  padding-left: 1rem;
}
.fac-facets li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--sage);
}

/* ============================================================
   Voices / Quotes
   ============================================================ */
.voices {
  background: var(--terra);
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.25rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.lead-quote {
  max-width: 820px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}
.lead-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  line-height: 1.45;
  color: var(--paper);
}
.lead-quote figcaption {
  margin-top: 1.1rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.8);
}
.quote-cards {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.quote-card {
  background: rgba(250,247,242,0.1);
  border: 1px solid rgba(250,247,242,0.22);
  border-radius: 10px;
  padding: 1.6rem 1.5rem;
  backdrop-filter: blur(4px);
}
.quote-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--paper);
  margin-bottom: 1.1rem;
}
.quote-card figcaption { display: flex; flex-direction: column; gap: 0.15rem; }
.q-name { font-size: 0.85rem; font-weight: 500; color: var(--paper); }
.q-role { font-size: 0.76rem; color: rgba(250,247,242,0.7); }

/* ============================================================
   Booking
   ============================================================ */
.book {
  background: var(--ink);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 3.5rem);
}
.book-grid {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.book-grid .book-cta,
.book-grid .book-format,
.book-grid .contact-list { text-align: left; }
.book-cta { justify-content: center; }
.contact-list { display: inline-flex; }
.book-lead {
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(250,247,242,0.78);
  margin-bottom: 2rem;
  max-width: 40ch;
}
.book-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  margin-bottom: 2rem;
}
.book-cta-or {
  font-size: 0.82rem;
  color: rgba(250,247,242,0.6);
}

.book-format {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(250,247,242,0.16);
  border-bottom: 1px solid rgba(250,247,242,0.16);
  margin-bottom: 2rem;
}
.format-time {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--terra);
  line-height: 1;
  white-space: nowrap;
}
.format-time span {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(250,247,242,0.6);
  margin-left: 0.3rem;
}
.book-format p { font-size: 0.82rem; color: rgba(250,247,242,0.72); line-height: 1.6; }

.contact-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  font-size: 0.92rem;
  color: rgba(250,247,242,0.85);
}
.contact-k {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  min-width: 72px;
  flex-shrink: 0;
}
.contact-list a { color: var(--paper); text-decoration: none; border-bottom: 1px solid rgba(193,127,58,0.5); transition: border-color .25s; }
.contact-list a:hover { border-color: var(--terra); }
.contact-social a { border: none; }

/* Form */
.book-form {
  background: var(--paper);
  border-radius: 12px;
  padding: clamp(1.6rem, 3vw, 2.4rem);
}
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label {
  display: block;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.4rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.7rem 0.85rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(193,127,58,0.14);
}
.field input::placeholder,
.field textarea::placeholder { color: #a89b86; }
.form-note { font-size: 0.78rem; color: var(--ink-mute); text-align: center; margin-top: 0.9rem; }
.book-form.sent .field, .book-form.sent button { opacity: 0.5; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--ink); }
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2rem clamp(1.25rem, 4vw, 3.5rem) 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-name { font-family: var(--serif); font-size: 1rem; color: rgba(250,247,242,0.92); }
.footer-by { font-size: 0.78rem; color: rgba(250,247,242,0.5); margin-top: 0.2rem; }
.footer-tag { font-size: 0.75rem; letter-spacing: 0.1em; color: rgba(250,247,242,0.45); }
.footer-bar { height: 5px; background: linear-gradient(90deg, var(--terra) 0%, var(--sage) 45%, var(--sage-deep) 100%); }

/* ============================================================
   Scroll reveal
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0s);
}
[data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    padding: 2rem 2.2rem;
    background: var(--ink);
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,0.3);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: rgba(250,247,242,0.85); font-size: 1.05rem; }
  .nav.scrolled .nav-links a { color: rgba(250,247,242,0.85); }
  .nav-toggle { display: flex; z-index: 101; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--paper); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--paper); }
  .nav.scrolled .nav-toggle.open span { background: var(--paper); }

  .exp-grid,
  .idealfor-grid,
  .fac-grid,
  .book-grid { grid-template-columns: 1fr; }
  .quote-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .ph-wide { grid-column: span 2; }
  .ph-tall { grid-row: span 1; }
  .fac-photo { max-width: 380px; }
}

@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .ph-wide, .ph-tall { grid-column: auto; grid-row: auto; }
  .field-row { grid-template-columns: 1fr; }
  .hero-meta { gap: 0.8rem 1.4rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
