/* ============================================================
   STYLES.CSS — maybe:fiction
   Table of contents:
     1. Design tokens (colors, spacing, shadows)
     2. Reset & base
     3. Utilities (layout, buttons, tags, reveal animation)
     4. Nav
     5. Hero (+ blobs)
     6. About
     7. Experiences
     8. Workshops
     9. Contact
     10. Footer
     11. Keyframe animations
     12. Responsive breakpoints
     13. Reduced motion
   ============================================================ */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Brand palette — source: 0_Entity/Design Guidelines */
  --brand-teal-light: #BAEAEA;
  --brand-teal: #82D9D9;
  --brand-purple-light: #CEB7CC;
  --brand-purple: #A67CA3;
  --brand-pink-light: #EAC1C9;
  --brand-pink: #D98F9D;

  /* Backgrounds */
  --bg-base: #F2F2F2;
  --bg-tint: #EDEBED;

  /* Text */
  --ink: #262522;
  --ink-soft: #5A5651;
  --ink-on-color: #262522;
  --white: #FFFFFF;

  /* Color blocks (flat, no gradients — see card/hero/contact rules) */
  --grad-blue: var(--brand-teal);
  --grad-purple: var(--brand-purple);
  --grad-pink: var(--brand-pink);
  --grad-pink-purple: var(--brand-teal-light);
  --grad-blue-purple: var(--brand-purple-light);
  --grad-blue-pink: var(--brand-pink-light);

  /* Shadows */
  --shadow-soft: 0 10px 30px rgba(166, 124, 163, 0.15);
  --shadow-lift: 0 18px 40px rgba(166, 124, 163, 0.25);
  --shadow-button: 0 8px 20px rgba(166, 124, 163, 0.35);

  /* Radii */
  --radius-sm: 16px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --radius-pill: 999px;

  /* Type */
  --font-display: "Lora", Georgia, "Times New Roman", serif;
  --font-body: "Poppins", ui-sans-serif, system-ui, sans-serif;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 84px;

  /* Motion */
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. RESET & BASE ---------- */
* , *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand-purple);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- 3. UTILITIES ---------- */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-purple);
  background: var(--bg-tint);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 2.9rem);
  max-width: 20ch;
}

.section-subheading {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 60ch;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  transition: transform 0.35s var(--ease-bounce), box-shadow 0.35s var(--ease-bounce), background 0.3s ease;
  will-change: transform;
}

.btn-primary {
  background: var(--brand-pink);
  color: var(--white);
  box-shadow: var(--shadow-button);
}
.btn-primary:hover {
  transform: translateY(-4px) scale(1.04) rotate(-1deg);
  box-shadow: 0 16px 28px rgba(166, 124, 163, 0.45);
}
.btn-primary:active { transform: translateY(-1px) scale(0.98); }

.btn-secondary {
  background: var(--white);
  color: var(--brand-purple);
  border: 2px solid var(--brand-purple-light);
}
.btn-secondary:hover {
  transform: translateY(-4px) scale(1.04) rotate(1deg);
  background: var(--bg-tint);
  box-shadow: var(--shadow-soft);
}

.btn-block { width: 100%; }

/* Scroll-reveal (Intersection Observer toggles .in-view) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Stagger children that opt in */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.55s; }

/* Wave dividers */
.wave-divider { position: relative; line-height: 0; margin-top: -2px; }
.wave-divider svg { width: 100%; height: 80px; display: block; }
.wave-divider path { fill: var(--bg-tint); }
.wave-divider-top path { fill: var(--white); }

/* ---------- 4. NAV ---------- */
/* Transparent over the hero by default; .is-scrolled (toggled by JS once
   the hero scrolls out of view) switches it to the solid, opaque bar. */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease;
}
.site-header.is-scrolled {
  background: rgba(242, 242, 242, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(166, 124, 163, 0.12);
}

.nav {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.35s ease, transform 0.3s var(--ease-bounce);
}
.nav-logo:hover { transform: rotate(-2deg) scale(1.05); }
.site-header.is-scrolled .nav-logo { color: var(--ink); }
.nav-logo-colon { color: var(--brand-pink-light); transition: color 0.35s ease; }
.site-header.is-scrolled .nav-logo-colon { color: var(--brand-pink); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  position: relative;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease-bounce);
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.nav-link.is-active { color: var(--white); background: rgba(255,255,255,0.15); }
.site-header.is-scrolled .nav-link { color: var(--ink-soft); }
.site-header.is-scrolled .nav-link:hover { color: var(--brand-purple); background: var(--bg-tint); }
.site-header.is-scrolled .nav-link.is-active { color: var(--brand-purple); background: var(--bg-tint); }

.nav-link-cta {
  background: var(--brand-pink);
  color: var(--white) !important;
}
.nav-link-cta:hover { transform: translateY(-2px) scale(1.05); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.35s var(--ease-bounce), opacity 0.25s ease, background 0.35s ease;
}
.site-header.is-scrolled .nav-toggle span { background: var(--brand-purple); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- 5. HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  background: var(--ink);
}

.hero-blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.blob {
  position: absolute;
  border-radius: 50% 45% 60% 40% / 45% 55% 45% 55%;
  filter: blur(2px);
  opacity: 0.55;
  animation: float 12s ease-in-out infinite;
}
.blob-1 { width: 320px; height: 320px; background: var(--brand-pink-light); top: -60px; left: -80px; animation-duration: 14s; }
.blob-2 { width: 220px; height: 220px; background: var(--brand-teal-light); bottom: -40px; right: 5%; animation-duration: 10s; animation-delay: -3s; }
.blob-3 { width: 160px; height: 160px; background: var(--white); top: 20%; right: 15%; opacity: 0.4; animation-duration: 9s; animation-delay: -1s; }
.blob-4 { width: 260px; height: 260px; background: var(--brand-purple-light); bottom: 10%; left: 8%; animation-duration: 13s; animation-delay: -6s; }
.blob-5 { width: 280px; height: 280px; background: var(--brand-teal-light); top: -100px; right: -60px; opacity: 0.4; animation-duration: 11s; }
.blob-6 { width: 200px; height: 200px; background: var(--brand-pink-light); bottom: -60px; left: -40px; opacity: 0.4; animation-duration: 15s; animation-delay: -4s; }

.floaty {
  position: absolute;
  font-size: 2rem;
  animation: bob 6s ease-in-out infinite;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.08));
}
.floaty-1 { top: 18%; left: 12%; animation-duration: 5s; }
.floaty-2 { top: 65%; left: 20%; animation-duration: 7s; animation-delay: -2s; font-size: 2.4rem; }
.floaty-3 { top: 28%; right: 12%; animation-duration: 6s; animation-delay: -1s; }
.floaty-4 { bottom: 15%; right: 20%; animation-duration: 8s; animation-delay: -3s; font-size: 2.6rem; }
.floaty-5 { top: 50%; left: 48%; animation-duration: 9s; animation-delay: -4s; font-size: 1.8rem; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero-content .eyebrow { background: rgba(255,255,255,0.12); color: var(--white); }

.hero-heading {
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  margin-bottom: 0.2em;
  color: var(--white);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--white);
  margin-bottom: 0.5em;
}

.hero-subcopy {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 56ch;
  margin: 0 auto 2em;
  color: rgba(255,255,255,0.75);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 46px;
  border: 2px solid var(--white);
  border-radius: var(--radius-pill);
  opacity: 0.5;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.scroll-cue:hover { opacity: 0.9; }
.scroll-cue-dot {
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: scrollDot 2s ease-in-out infinite;
}

/* ---------- 6. ABOUT ---------- */
.about { background: var(--bg-tint); position: relative; }

.about-body { max-width: 70ch; }
.about-body p { font-size: 1.05rem; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease-bounce), box-shadow 0.4s var(--ease-bounce);
}
.pillar-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow-lift);
}
.pillar-icon {
  font-size: 2.2rem;
  display: inline-block;
  margin-bottom: 16px;
  transition: transform 0.4s var(--ease-bounce);
}
.pillar-card:hover .pillar-icon { transform: scale(1.2) rotate(8deg); }
.pillar-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.pillar-card p { margin: 0; font-size: 0.98rem; }

/* ---------- 7. EXPERIENCES ---------- */
.experiences { background: var(--bg-tint); }

.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-tag {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.3s var(--ease-bounce), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.filter-tag:hover { transform: translateY(-3px) rotate(-1deg); border-color: var(--brand-purple-light); }
.filter-tag.is-active {
  background: var(--brand-purple);
  color: var(--white);
  transform: translateY(-2px);
}
/* Category color language, reused for the tag on each experience card */
.filter-tag[data-filter="exhibition"].is-active { background: var(--brand-teal); color: var(--ink); }
.filter-tag[data-filter="event"].is-active { background: var(--brand-pink); color: var(--white); }

.experience-carousel { position: relative; }

.experience-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.experience-grid::-webkit-scrollbar { display: none; }

.experience-card {
  position: relative;
  flex: 0 0 min(320px, 78vw);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--shadow-soft);
  display: block;
  transition: transform 0.4s var(--ease-bounce), box-shadow 0.4s var(--ease-bounce), opacity 0.4s ease;
}
.experience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.experience-card.is-hidden {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

.experience-card-media,
.media-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.grad-blue { background: var(--grad-blue); }
.grad-purple { background: var(--grad-purple); }
.grad-pink { background: var(--grad-pink); }
.grad-pink-purple { background: var(--grad-pink-purple); }
.grad-blue-purple { background: var(--grad-blue-purple); }
.grad-blue-pink { background: var(--grad-blue-pink); }

.experience-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  background: linear-gradient(180deg, rgba(38,37,34,0) 45%, rgba(38,37,34,0.85) 100%);
}

.experience-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-purple-light);
  margin-bottom: 8px;
}
.experience-tag.tag-exhibition { color: var(--brand-teal-light); }
.experience-tag.tag-event { color: var(--brand-pink-light); }

.experience-card-overlay h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin: 0;
}

.experience-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lift);
  z-index: 2;
  transition: transform 0.3s var(--ease-bounce), background 0.3s ease;
}
.experience-carousel-arrow:hover { background: var(--brand-purple); color: var(--white); transform: translateY(-50%) scale(1.08); }
.experience-carousel-arrow-prev { left: -20px; }
.experience-carousel-arrow-next { right: -20px; }

/* ---------- 8. WORKSHOPS ---------- */
.workshops { background: var(--white); position: relative; }

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.workshop-card {
  display: flex;
  gap: 20px;
  background: var(--bg-tint);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform 0.4s var(--ease-bounce), box-shadow 0.4s var(--ease-bounce);
}
.workshop-card:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: var(--shadow-soft);
}

.workshop-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease-bounce);
}
.workshop-card:hover .workshop-icon { transform: rotate(-10deg) scale(1.1); }

.workshop-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.workshop-meta span {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--brand-purple);
}

.workshop-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.workshop-card p { font-size: 0.95rem; }

.btn-inquire {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-weight: 700;
  color: var(--brand-pink);
  transition: transform 0.3s var(--ease-bounce), gap 0.3s ease;
}
.btn-inquire:hover { transform: translateX(4px); gap: 10px; }

/* ---------- 9. CONTACT ---------- */
.contact {
  position: relative;
  background: var(--brand-purple);
  overflow: hidden;
}

.contact-blobs { z-index: 0; }

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-intro .eyebrow { background: rgba(255,255,255,0.7); }
.contact-intro h2 { color: var(--white); }
.contact-intro p { color: rgba(255,255,255,0.85); }

.contact-details {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 700;
  color: var(--white);
}
.contact-details li::before { content: "📍 "; }
.contact-details li:nth-child(1)::before { content: "✉️ "; }
.contact-details li:nth-child(2)::before { content: "📞 "; }

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-links a {
  background: rgba(255,255,255,0.7);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.3s var(--ease-bounce), background 0.3s ease;
  display: inline-block;
}
.social-links a:hover {
  transform: translateY(-3px) rotate(-2deg);
  background: var(--white);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lift);
}

.form-field { margin-bottom: 22px; display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-weight: 700; font-family: var(--font-display); font-size: 0.95rem; }

.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--bg-tint);
  background: var(--bg-tint);
  color: var(--ink);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand-purple);
  background: var(--white);
  transform: scale(1.01);
}
.form-field.has-error input,
.form-field.has-error textarea { border-color: var(--brand-pink); }

.form-error {
  font-size: 0.82rem;
  color: var(--brand-pink);
  font-weight: 700;
  min-height: 1em;
}

.form-success {
  margin: 16px 0 0;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--brand-purple);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s var(--ease-bounce), transform 0.4s var(--ease-bounce);
}
.form-success.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- 9b. NEWSLETTER ---------- */
.newsletter { background: var(--brand-teal); }
.newsletter-inner { text-align: center; }
.newsletter .eyebrow { background: rgba(255,255,255,0.5); }
.newsletter-embed {
  max-width: 700px;
  margin: 0 auto;
}
/* Nudge the third-party Kit embed's own fonts toward the site's type system
   without touching its functional/layout styles (inline on the embed). */
.newsletter-embed .formkit-header h2 { font-family: var(--font-display); }
.newsletter-embed .formkit-input,
.newsletter-embed .formkit-submit,
.newsletter-embed .formkit-disclaimer { font-family: var(--font-body); }

/* ---------- 10. FOOTER ---------- */
.site-footer { background: var(--ink); color: var(--white); }
.footer-inner { text-align: center; padding: 64px 24px; }
.footer-logo { display: inline-block; color: var(--white); font-size: 1.3rem; margin-bottom: 12px; }
.footer-tagline { color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.footer-nav { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.footer-nav a {
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  transition: color 0.3s ease, transform 0.3s var(--ease-bounce);
  display: inline-block;
}
.footer-nav a:hover { color: var(--brand-pink-light); transform: translateY(-2px); }
.footer-copyright { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin: 0; }

/* ---------- 11. KEYFRAME ANIMATIONS ---------- */
@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33% { transform: translate(20px, -30px) rotate(8deg) scale(1.05); }
  66% { transform: translate(-15px, 15px) rotate(-6deg) scale(0.97); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(18px); opacity: 0; }
}

/* ---------- 12. RESPONSIVE BREAKPOINTS ---------- */

/* Tablet: <= 1024px */
@media (max-width: 1024px) {
  .pillars { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .section-inner { padding: 80px 24px; }
}

/* Mobile-ish tablet: <= 768px */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-base);
    padding: 12px 24px 24px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth);
    border-bottom: 1px solid rgba(166, 124, 163, 0.12);
  }
  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-menu li { width: 100%; }
  .nav-link { display: block; text-align: center; padding: 14px; }
  /* The mobile dropdown panel is always a solid light background,
     regardless of nav scroll state, so its links must stay dark. */
  .nav-menu .nav-link { color: var(--ink-soft); }
  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.is-active { color: var(--brand-purple); background: var(--bg-tint); }

  .workshop-grid { grid-template-columns: 1fr; }
  .workshop-card { flex-direction: column; }

  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
}

/* Small mobile: <= 480px */
@media (max-width: 480px) {
  .section-inner { padding: 64px 18px; }
  .experience-carousel-arrow { display: none; }
  .pillar-card { padding: 28px 22px; }
  .contact-form { padding: 28px 22px; }
  .hero-heading { font-size: clamp(2.4rem, 12vw, 3rem); }
  .blob-1, .blob-4 { display: none; } /* declutter tiny screens */
  .floaty { font-size: 1.6rem !important; }
}

/* ---------- 13. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .blob, .floaty, .scroll-cue-dot { animation: none !important; }
  .reveal, .reveal-stagger > * {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  * { transition-duration: 0.01ms !important; }
}
