/* =========================================================
   LIVE YOUR EFFERVESCENCE
   Poetry & art by Marie-Paul Duwai-Sowa
   Design system + styles
   ========================================================= */

:root {
  /* Palette — luminous light field with sunset accents */
  --ink: #2a0b46;
  --ink-2: #3d1263;
  --ink-3: #551b83;
  --plum: #7423a6;
  --wine: #b02f78;

  --gold: #8f6410;
  --gold-deep: #734e0c;
  --gold-soft: #8a5a10;
  --gold-bright: #e8b84a;
  --rose: #b03d6e;
  --rose-deep: #9a2f5c;
  --coral: #c44a3c;
  --iris: #6a3db0;
  --teal: #1b7a70;

  --paper: #fcfbfd;
  --paper-2: #f5f0f9;
  --cream: #241033;
  --mist: #3f2a58;
  --muted: #56436d;
  --line: rgba(42, 11, 70, 0.14);
  --card: #fff8ee;
  --card-wash: #fff8ee;
  --card-line: rgba(42, 11, 70, 0.08);
  --shadow-card: 0 16px 38px -18px rgba(42, 11, 70, 0.18), 0 2px 8px -4px rgba(42, 11, 70, 0.06);
  --radius-card: 22px;

  /* Typography — one serif for voice, one sans for the interface */
  --font-display: "Fraunces", Georgia, serif;
  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius: 18px;

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

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; height: 100%; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  height: 100%;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
}

/* ---------- Horizontal page deck (controlled, one page at a time) ---------- */
.deck {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden; /* no native horizontal scroll — JS moves one page at a time */
  touch-action: pan-y; /* vertical scroll inside pages; horizontal paging is JS-owned */
}
.deck__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
  width: 100%;
  will-change: transform;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.deck.is-instant .deck__track { transition: none; }
.panel {
  position: relative;
  box-sizing: border-box;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}
.panel.section {
  padding: calc(5.5rem + env(safe-area-inset-top, 0px))
    clamp(4rem, 6vw, 5.5rem)
    calc(6rem + env(safe-area-inset-bottom, 0px));
}
.chapter {
  position: relative;
  margin-top: clamp(3.2rem, 7vh, 5rem);
  padding-top: clamp(2.8rem, 6vh, 4.2rem);
  text-align: left;
}
.house > .chapter { text-align: left; width: 100%; }
.deck-controls { position: fixed; inset: 0; pointer-events: none; z-index: 90; }
.deck-arrow {
  pointer-events: auto; position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background: rgba(255,255,255,0.72); backdrop-filter: blur(12px); color: var(--ink);
  display: grid; place-items: center; cursor: pointer;
  transition: opacity 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease), transform 0.35s var(--ease);
}
.deck-arrow:hover { border-color: var(--gold); color: var(--gold-deep); background: rgba(255,255,255,0.92); transform: translateY(-50%) scale(1.05); }
.deck-arrow:disabled { opacity: 0.15; pointer-events: none; }
.deck-arrow--prev { left: 0.85rem; }
.deck-arrow--next { right: 0.85rem; }
.deck-dots {
  position: fixed; left: 50%; bottom: 0.85rem; top: auto; right: auto;
  transform: translateX(-50%);
  z-index: 90; display: flex; flex-direction: row; gap: 0.55rem; padding: 0.45rem 0.7rem;
  border-radius: 999px; background: rgba(255,255,255,0.7); border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.deck-dots button {
  width: 6px; height: 6px; border-radius: 50%; border: 0; padding: 0;
  background: rgba(42,11,70,0.22); cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), width 0.3s var(--ease);
}
.deck-dots button.is-active {
  background: var(--gold); width: 16px; height: 6px; border-radius: 999px;
}
.deck-dots button:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
@media (max-width: 900px) {
  .deck-arrow { display: none; }
  .panel.section { padding-inline: var(--gutter); }
}
@media (prefers-reduced-motion: reduce) {
  .deck__track { transition: none; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--ink); }

/* Soft near-white backdrop with gentle color wash */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(1200px 820px at 82% -8%, rgba(189,136,255,0.18), transparent 60%),
    radial-gradient(1050px 720px at 0% 16%, rgba(255,147,189,0.14), transparent 58%),
    radial-gradient(1000px 780px at 100% 58%, rgba(92,240,216,0.10), transparent 55%),
    radial-gradient(1200px 900px at 48% 112%, rgba(255,182,47,0.12), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 48%, var(--paper-2) 100%);
  z-index: -3;
}

/* ---------- Aurora ---------- */
.aurora {
  position: fixed; inset: -20%; z-index: -2; pointer-events: none;
  background:
    radial-gradient(42% 52% at 18% 28%, rgba(189,136,255,0.12), transparent 60%),
    radial-gradient(42% 48% at 82% 62%, rgba(255,147,189,0.10), transparent 60%),
    radial-gradient(38% 42% at 60% 12%, rgba(92,240,216,0.08), transparent 60%);
  filter: blur(30px);
  animation: aurora 26s var(--ease) infinite alternate;
}
@keyframes aurora {
  0%   { transform: translate3d(-3%, -2%, 0) scale(1); }
  100% { transform: translate3d(4%, 3%, 0) scale(1.1); }
}

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 780px; }
.hide-mobile { display: inline; }
.nowrap { white-space: nowrap; }

.grad-text {
  background: linear-gradient(100deg, var(--gold-soft), var(--gold), var(--rose) 70%, var(--iris));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--gold); color: var(--ink); padding: 0.6rem 1.2rem; border-radius: 999px;
  z-index: 200; transition: top 0.3s var(--ease); font-weight: 500;
}
.skip-link:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  --pad: 0.95rem 1.8rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: var(--pad); border-radius: 999px; font-family: var(--font-sans);
  font-weight: 500; font-size: 0.95rem; letter-spacing: 0.01em; cursor: pointer;
  border: 1px solid transparent; position: relative; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  will-change: transform;
}
.btn--gold {
  background: linear-gradient(100deg, #ffeab3, #ffd76a 45%, #f7b62f);
  color: #2a1608; box-shadow: 0 10px 30px -12px rgba(232,184,74,0.55);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(243,211,138,0.85); }
.btn--ghost {
  background: rgba(255,255,255,0.55); color: var(--cream);
  border-color: rgba(116, 35, 166, 0.22); backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--rose), var(--iris));
  z-index: 150; box-shadow: 0 0 14px rgba(243,211,138,0.6);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem var(--gutter);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(252,251,253,0.82); backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line); padding-block: 0.75rem;
}
.nav__brand { display: flex; align-items: center; gap: 0.6rem; color: var(--cream); }
.nav__mark { color: var(--gold-bright); display: grid; place-items: center; }
.nav__name {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
}
.nav__name em { font-style: italic; color: var(--gold-soft); }
.nav__links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.85rem 0.95rem; max-width: min(60rem, 64vw); }
.nav__links a { font-size: 0.8rem; font-weight: 500; color: var(--mist); position: relative; padding: 0.2rem 0; transition: color 0.3s var(--ease); white-space: nowrap; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--rose)); transition: width 0.35s var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: 0.6rem 1.2rem; font-size: 0.85rem; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 110; display: grid; place-items: center;
  background: rgba(252,251,253,0.96); backdrop-filter: blur(18px);
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.6rem; text-align: center; }
.mobile-menu a { font-family: var(--font-display); font-size: 2rem; color: var(--cream); font-style: italic; }
.mobile-menu a:hover { color: var(--gold); }

/* ---------- Sections ---------- */
.section { position: relative; }
.section__kicker {
  font-family: var(--font-sans);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem;
  display: inline-flex; align-items: center; gap: 0.7rem;
}
.section__kicker::before { content: ""; width: 34px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.section__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.08; letter-spacing: -0.01em;
  max-width: 18ch;
}

/* ---------- Hero ---------- */
.hero {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
  position: relative;
  color: #fff6ef;
}
/* Full-bleed portrait plane — fills the entire home panel */
.hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  background: #1a0a28;
}
.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(18, 6, 32, 0.86) 0%, rgba(18, 6, 32, 0.66) 40%, rgba(18, 6, 32, 0.34) 70%, rgba(18, 6, 32, 0.42) 100%),
    linear-gradient(180deg, rgba(18, 6, 32, 0.42) 0%, rgba(18, 6, 32, 0.12) 30%, rgba(18, 6, 32, 0.18) 60%, rgba(18, 6, 32, 0.62) 100%);
}
.hero__slideshow { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  opacity: 0; transition: opacity 1.1s var(--ease);
}
.hero__slide.is-active { opacity: 1; }
/* Full-length portrait — sit the crop lower so the figure reads whole */
.hero__slide--two { object-position: center 34%; }
.hero__stage {
  position: relative; z-index: 1;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: calc(5.5rem + env(safe-area-inset-top, 0px))
    clamp(2.5rem, 6vw, 5.5rem)
    calc(1.5rem + env(safe-area-inset-bottom, 0px));
}
.hero__inner {
  text-align: left;
  min-width: 0;
  max-width: min(46rem, 100%);
}
.hero__eyebrow {
  font-size: clamp(0.85rem, 1.3vw, 1.05rem);
  letter-spacing: 0.38em; text-transform: uppercase; color: #ffb7d0;
  margin-bottom: 1.15rem;
}
.hero__title { font-family: var(--font-display); font-weight: 300; line-height: 0.92; margin-bottom: 0.7rem; }
.hero__title .line { display: block; }
.hero__title .line--name {
  font-size: clamp(3.8rem, 10vw, 7.4rem); font-weight: 600; letter-spacing: 0.01em;
  background: linear-gradient(100deg, #ffeab3, #ffd76a 40%, #ff93bd 75%, #d4b0ff);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 8s linear infinite; padding-bottom: 0.04em;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,0.35));
}
@keyframes shimmer { to { background-position: 200% center; } }
.hero__award {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.45rem, 2.8vw, 2.05rem); color: #ffeab3;
  margin-bottom: 0.45rem; text-align: left;
}
.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem); color: rgba(255,246,239,0.9);
  max-width: 28ch; margin: 0 0 2rem; font-style: italic; line-height: 1.35;
}
.hero__actions { display: flex; gap: 1rem; justify-content: flex-start; flex-wrap: wrap; }
.hero__actions .btn {
  font-size: 1.05rem;
  padding: 1.1rem 2.15rem;
}
.hero__actions .btn--ghost {
  background: rgba(255,255,255,0.08);
  color: #fff6ef;
  border-color: rgba(255,246,239,0.45);
}
.hero__actions .btn--ghost:hover {
  border-color: #ffd76a;
  color: #ffeab3;
  background: rgba(255,255,255,0.14);
}

/* ---------- Marquee ---------- */
.hero__marquee {
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(255,215,106,0.22);
  padding-block: 0.55rem;
  background: rgba(18, 6, 32, 0.45);
  backdrop-filter: blur(10px);
}
.hero__marquee .marquee__group { color: #ffeab3; opacity: 0.85; }
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding-block: 1.1rem; background: rgba(255,255,255,0.02); }
.marquee__track { display: flex; flex-wrap: nowrap; width: max-content; animation: marquee 38s linear infinite; }
.marquee__group {
  flex: 0 0 auto; min-width: 100vw; white-space: nowrap;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.45rem); color: var(--gold-soft); opacity: 0.78;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Pillars (House of Effervescence) ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.pillar {
  padding: 2.2rem 1.8rem; border-radius: var(--radius-card); text-align: left;
  background: var(--card-wash); border: 1px solid var(--card-line);
  box-shadow: var(--shadow-card); position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 0.7rem;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.pillar::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(400px circle at var(--mx,50%) var(--my,0%), rgba(243,211,138,0.14), transparent 60%);
  transition: opacity 0.4s var(--ease);
}
.pillar:hover, .pillar:focus-visible { transform: translateY(-6px); border-color: rgba(143, 100, 16, 0.35); box-shadow: 0 22px 50px -16px rgba(42, 11, 70, 0.28); outline: none; }
.pillar:hover::before, .pillar:focus-visible::before { opacity: 1; }
.pillar__num { font-family: var(--font-sans); font-size: 0.78rem; font-weight: 600; color: var(--gold-deep); letter-spacing: 0.18em; }
.pillar h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.45rem; line-height: 1.15; margin: 0; color: var(--cream); }
.pillar p { color: var(--mist); font-family: var(--font-serif); font-size: 1rem; line-height: 1.55; position: relative; }

/* ---------- The Poem ---------- */
.poem { text-align: left; overflow: hidden; }
.poem__ambience {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(55% 50% at 80% 10%, rgba(139, 92, 199, 0.08), transparent 70%);
}
.poem .section__kicker { justify-content: flex-start; }
.poem .section__kicker::before { display: none; }
.poem__title {
  font-family: var(--font-display); font-weight: 300; font-style: italic;
  font-size: clamp(3rem, 10vw, 6.5rem); line-height: 1; margin-bottom: 0.5rem;
  background: linear-gradient(100deg, var(--gold-soft), var(--gold), var(--rose));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.poem__byline { color: var(--muted); font-style: italic; font-family: var(--font-serif); font-size: 1.05rem; margin-bottom: 3.5rem; }
.poem__body { font-family: var(--font-serif); }
.stanza { margin-bottom: 2rem; }
.stanza .pl {
  display: block; font-size: clamp(1.15rem, 2.6vw, 1.6rem); line-height: 1.5; color: var(--cream);
  opacity: 0; transform: translateY(14px); filter: blur(4px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), filter 0.7s var(--ease);
}
.stanza .pl.is-lit { opacity: 1; transform: none; filter: none; }
.stanza--accent .pl { font-style: italic; color: var(--gold-soft); font-size: clamp(1.4rem, 3.4vw, 2.1rem); }
.stanza--yes .pl {
  font-family: var(--font-display); font-weight: 500; font-style: italic;
  font-size: clamp(2rem, 6vw, 3.4rem); letter-spacing: 0.02em;
  background: linear-gradient(100deg, var(--gold), var(--rose)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stanza--finale .pl { color: var(--gold-soft); }
.poem__cta { margin-top: 3rem; display: flex; gap: 1rem; justify-content: flex-start; flex-wrap: wrap; }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.portrait {
  position: relative;
  width: min(340px, 100%, calc(min(56vh, 460px) * 0.8));
  aspect-ratio: 4/5;
  margin-inline: auto;
}
.portrait__frame {
  position: absolute; inset: 0; border-radius: 220px 220px 24px 24px; overflow: hidden;
  background:
    radial-gradient(120% 80% at 30% 10%, rgba(237,157,180,0.35), transparent 60%),
    linear-gradient(160deg, var(--plum), var(--wine) 60%, var(--ink-2));
  border: 1px solid var(--line);
  display: grid; place-items: center; text-align: center;
  box-shadow: inset 0 -60px 120px -40px rgba(0,0,0,0.7);
}
.portrait__initials {
  font-family: var(--font-display); font-size: clamp(4rem, 12vw, 7rem); font-weight: 300; font-style: italic;
  background: linear-gradient(120deg, var(--gold-soft), var(--gold), var(--rose)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.portrait__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%;
  transition: transform 0.9s var(--ease);
}
.portrait:hover .portrait__img { transform: scale(1.04); }
.portrait__frame::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(13,6,22,0.72) 100%);
}
.portrait__caption { position: absolute; z-index: 2; bottom: 1.6rem; font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold-soft); letter-spacing: 0.08em; line-height: 1.3; text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.portrait__ring {
  position: absolute; inset: -14px; border-radius: 230px 230px 30px 30px;
  border: 1px solid rgba(243,211,138,0.3); animation: floaty 7s var(--ease) infinite alternate;
}
@keyframes floaty { to { transform: translateY(-10px) rotate(0.5deg); } }
.about__role { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.05em; margin: 0.6rem 0 1.6rem; }
.about__lead,
.about__text {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: var(--cream);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}
.about__lead em,
.about__text em { color: var(--gold-soft); font-style: italic; }
.about__content .section__title { margin-bottom: 1.65rem; }
.about__text { margin-bottom: 2rem; }
.about__facts { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.about__facts li {
  padding: 0.9rem 1.1rem; border: 1px solid rgba(143, 100, 16, 0.22); border-radius: 12px;
  font-size: 0.9rem; color: var(--mist);
  background: var(--card-wash); box-shadow: 0 8px 22px -14px rgba(42, 11, 70, 0.2);
}
.about__facts strong {
  color: var(--gold-deep); font-weight: 600; display: block;
  letter-spacing: 0.02em; margin-bottom: 0.1rem;
}

/* ---------- Work / Productions ---------- */
.work .section__title { margin-bottom: 1.8rem; }
.work__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.card {
  grid-column: span 2;
  padding: 2.2rem 1.8rem; border-radius: var(--radius-card); text-align: left;
  background: var(--card-wash); border: 1px solid var(--card-line);
  box-shadow: var(--shadow-card); position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 0.7rem; min-height: 0;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.card--wide { grid-column: span 4; }
.card::after {
  content: ""; position: absolute; top: -40%; right: -20%; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(237,157,180,0.16), transparent 70%); opacity: 0; transition: opacity 0.5s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(143, 100, 16, 0.35); box-shadow: 0 24px 52px -16px rgba(42, 11, 70, 0.28); }
.card:hover::after { opacity: 1; }
.card__tag { font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); }
.card__title { font-family: var(--font-display); font-weight: 600; font-size: 1.45rem; line-height: 1.15; color: var(--cream); }
.card__desc { color: var(--mist); font-family: var(--font-serif); font-size: 1rem; line-height: 1.55; flex: 1; }
.card__link { color: var(--gold-deep); font-family: var(--font-sans); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.02em; display: inline-flex; gap: 0.4rem; margin-top: 0.4rem; transition: gap 0.3s var(--ease), color 0.3s; align-self: flex-start; }
.card__link:hover { gap: 0.9rem; color: var(--rose-deep); }

/* Video card play badge */
.card--video { cursor: pointer; }
.card__play {
  position: absolute; top: 1.4rem; right: 1.4rem; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(243,211,138,0.12); border: 1px solid rgba(243,211,138,0.5);
  display: grid; place-items: center; transition: transform 0.4s var(--ease), background 0.4s var(--ease); z-index: 2;
}
.card__play::before {
  content: ""; width: 0; height: 0; margin-left: 3px;
  border-left: 12px solid var(--gold); border-top: 7px solid transparent; border-bottom: 7px solid transparent;
}
.card--video:hover .card__play { transform: scale(1.12); background: rgba(243,211,138,0.22); }

/* ---------- Video lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 250; display: grid; place-items: center;
  padding: var(--gutter); background: rgba(6,3,12,0.86); backdrop-filter: blur(16px);
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__stage { width: min(1000px, 100%); transform: translateY(16px) scale(0.98); transition: transform 0.5s var(--ease); }
.lightbox.is-open .lightbox__stage { transform: none; }
.lightbox__title { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--gold-soft); margin-bottom: 0.9rem; text-align: center; }
.lightbox__frame {
  position: relative; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 40px 120px -40px rgba(0,0,0,0.9);
  background: #000;
}
.lightbox__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lightbox__close {
  position: absolute; top: 1.2rem; right: 1.4rem; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line); color: var(--cream);
  font-size: 1.8rem; line-height: 1; cursor: pointer; transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.lightbox__close:hover { background: rgba(243,211,138,0.18); transform: rotate(90deg); }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; bottom: 1.4rem; left: 1.2rem; z-index: 130;
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  background: linear-gradient(150deg, var(--gold), var(--gold-deep)); color: #2a1608; border: 0;
  display: grid; place-items: center; box-shadow: 0 12px 30px -12px rgba(243,211,138,0.7);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { transform: translateY(-3px); }
.to-top:focus-visible { outline: 2px solid var(--cream); outline-offset: 3px; }

/* Active nav link (scrollspy) */
.nav__links a.is-active { color: var(--gold-deep); }
.nav__links a.is-active::after { width: 100%; }

/* ---------- Connect ---------- */
.connect__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.connect__text { color: var(--mist); font-family: var(--font-serif); font-size: 1.2rem; margin: 1.4rem 0 2rem; max-width: 44ch; }
.connect__channels { list-style: none; display: grid; gap: 0.7rem; }
.connect__channels a, .ch__static {
  display: flex; flex-direction: column; gap: 0.15rem; padding: 1rem 1.2rem; border-radius: 12px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.7); transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), background 0.35s;
}
.connect__channels a:hover { border-color: rgba(243,211,138,0.45); transform: translateX(4px); background: rgba(243,211,138,0.05); }
.ch__label { font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.ch__value { color: var(--cream); font-size: 1.02rem; }

/* Form */
.connect__form {
  padding: 2.2rem 1.8rem; border-radius: var(--radius-card);
  background: var(--card-wash); border: 1px solid var(--card-line);
  display: grid; gap: 1.2rem; box-shadow: var(--shadow-card);
}
.field { position: relative; }
.field input, .field textarea, .field select {
  width: 100%; padding: 1.1rem 1rem 0.5rem; background: rgba(255,255,255,0.85);
  border: 1px solid var(--line); border-radius: 12px; color: var(--cream);
  font-family: var(--font-sans); font-size: 1rem; transition: border-color 0.3s var(--ease), box-shadow 0.3s;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(243,211,138,0.14);
}

/* Select / static labels: sit above the control (native selects vertically center their value) */
.field--select,
.field--static { display: flex; flex-direction: column; gap: 0.45rem; }
.field--select select {
  padding: 0.9rem 2.6rem 0.9rem 1rem; cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: right 1.15rem center, right 0.85rem center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.field--static textarea { padding: 0.9rem 1rem; min-height: 140px; }
.field--select option { background: #fff; color: var(--cream); }
.field label {
  position: absolute; left: 1rem; top: 0.95rem; color: var(--muted); font-size: 1rem;
  pointer-events: none; transition: transform 0.25s var(--ease), color 0.25s, font-size 0.25s;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  transform: translateY(-0.7rem); font-size: 0.72rem; color: var(--gold); letter-spacing: 0.06em;
}
.field .field__label--static {
  position: static; transform: none; pointer-events: auto;
  font-size: 0.72rem; color: var(--gold); letter-spacing: 0.16em;
  text-transform: uppercase; padding-left: 0.15rem;
}
.form__note { font-size: 0.9rem; color: var(--teal); min-height: 1.2em; text-align: left; }
.form__note.is-error { color: var(--rose-deep); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding-top: 4rem; margin-top: 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; }
.footer__logo { font-family: var(--font-display); font-size: 1.4rem; }
.footer__logo em { font-style: italic; color: var(--gold-soft); }
.footer__brand p { color: var(--mist); margin-top: 0.8rem; max-width: 34ch; font-size: 0.95rem; }
.footer__nav, .footer__social { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__nav a, .footer__social a { color: var(--mist); font-size: 0.95rem; font-weight: 500; transition: color 0.3s; width: fit-content; }
.footer__nav a:hover, .footer__social a:hover { color: var(--gold-deep); }
.footer__base { display: flex; justify-content: space-between; align-items: center; padding-block: 1.8rem; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.85rem; flex-wrap: wrap; gap: 0.6rem; }
.footer__made { color: var(--gold); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Hero roles ---------- */
.hero__roles {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.9vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: #fff6ef; margin-bottom: 2rem; text-align: left;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}
.hero__roles span { color: var(--gold-bright); margin: 0 0.5rem; font-weight: 400; }

/* ---------- Performance gallery (gold-framed films) ---------- */
.perf-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
  max-width: 900px; margin-bottom: 1.8rem;
}
.perf-gallery__item {
  margin: 0; border-radius: 16px; overflow: hidden; position: relative;
  border: 3px solid var(--gold);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 18px 44px -26px rgba(212,146,31,0.6);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.perf-gallery__item:hover { transform: translateY(-5px); box-shadow: 0 28px 60px -26px rgba(212,146,31,0.75); }
.perf-gallery__item img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; transition: transform 0.7s var(--ease); }
.perf-gallery__item:hover img { transform: scale(1.04); }
.perf-gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2.2rem 0.9rem 0.85rem;
  background: linear-gradient(transparent, rgba(10,4,18,0.55) 45%, rgba(10,4,18,0.92));
  font-family: var(--font-serif); font-style: italic; font-size: 1rem; color: #ffeab3;
  text-align: left; text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* ---------- Magazine spreads (Our Productions) ---------- */
.productions {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.6rem, 4vw, 3.2rem);
  margin-top: 0.5rem; width: 100%;
}
.spread {
  display: block; text-decoration: none; color: inherit;
  background: none; border: 0; padding: 0; width: 100%; cursor: pointer;
  font: inherit; text-align: left;
}
.spread:focus-visible { outline: 2px solid var(--gold); outline-offset: 6px; border-radius: 16px; }
.spread__cover { display: block; }
.spread__cover {
  position: relative; border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  background: #111; box-shadow: 0 24px 50px -28px rgba(0,0,0,0.75);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.spread:hover .spread__cover { transform: translateY(-6px); box-shadow: 0 34px 70px -28px rgba(0,0,0,0.85); }
.spread__cover img {
  width: 100%;
  height: auto;
  max-height: min(72vh, 720px);
  object-fit: contain;
  object-position: center;
  display: block;
  background: #111;
}
.spread__cta {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) scale(0.92);
  background: rgba(255,255,255,0.94); color: #1a0a24; padding: 0.7rem 1.1rem; border-radius: 10px;
  font-family: var(--font-display); font-style: italic; font-size: 0.95rem; white-space: nowrap;
  opacity: 0; transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.spread:hover .spread__cta { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.spread__title {
  display: block;
  font-family: var(--font-display); font-weight: 500; font-size: clamp(1.25rem, 2vw, 1.55rem); text-align: left;
  margin-top: 1rem; color: var(--cream);
}

/* ---------- Shop lifestyle ---------- */
.shop__editorial { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 1.4rem; margin-top: 2.6rem; }
.shop__lifestyle {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--card-line);
  background: var(--card); box-shadow: var(--shadow-card); display: flex; flex-direction: column;
}
/* The two stills have different native ratios; letting the image flex keeps the pair level. */
.shop__lifestyle img { width: 100%; flex: 1 1 auto; min-height: 0; object-fit: cover; display: block; }
.shop__lifestyle figcaption {
  padding: 0.9rem 1.2rem; color: var(--mist); font-family: var(--font-serif); font-style: italic; font-size: 0.95rem;
  background: var(--card);
}

/* ---------- Animated ink underline ---------- */
.ink-underline {
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat; background-position: 0 92%;
  background-size: 0% 2px; padding-bottom: 2px;
  transition: background-size 1s var(--ease) 0.25s;
  color: var(--gold-soft);
}
.pl.is-lit .ink-underline,
.page.is-active .ink-underline,
.ink-underline.is-drawn { background-size: 100% 2px; }

/* ---------- Poems flip-book ---------- */
.poems__intro { color: var(--mist); font-family: var(--font-serif); font-size: 1.2rem; max-width: 48ch; margin: 1rem 0 2.6rem; }
.book { border: 1px solid var(--card-line); border-radius: var(--radius-card); overflow: hidden; background: var(--card-wash); box-shadow: var(--shadow-card); }
.book__tabs { display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0.9rem; border-bottom: 1px solid var(--card-line); }
.book__tab {
  border: 1px solid var(--card-line); background: var(--paper); color: var(--mist);
  padding: 0.55rem 1.1rem; border-radius: 999px; font-family: var(--font-sans); font-size: 0.85rem;
  cursor: pointer; transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.book__tab:hover { color: var(--cream); border-color: rgba(243,211,138,0.4); }
.book__tab.is-active { color: #2a1608; background: linear-gradient(100deg, #ffeab3, var(--gold-bright)); border-color: transparent; font-weight: 600; }
.book__stage { position: relative; padding: clamp(1.6rem, 5vw, 3.4rem); }
.page { display: none; }
.page.is-active { display: block; animation: pageIn 0.7s var(--ease); }
.page[hidden] { display: none; }
@keyframes pageIn { from { opacity: 0; transform: translateY(18px) rotateX(6deg); } to { opacity: 1; transform: none; } }
.page__head { border-left: 3px solid var(--page-accent, var(--gold)); padding-left: 1rem; margin-bottom: 1.8rem; }
.page__title { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: clamp(1.8rem, 5vw, 3rem); color: var(--page-accent, var(--gold-soft)); line-height: 1.05; }
.page__meta { color: var(--muted); font-size: 0.9rem; font-style: italic; }
.page__text { font-family: var(--font-serif); font-size: clamp(1.15rem, 2.2vw, 1.45rem); line-height: 1.55; color: var(--cream); max-width: 60ch; }
.page__text p { margin-bottom: 1.4rem; }
.page__text em { color: var(--page-accent, var(--gold-soft)); font-style: italic; }
.page__accent { font-family: var(--font-display); font-style: italic; font-size: clamp(1.6rem, 4vw, 2.6rem); color: var(--page-accent, var(--gold)); }
.page__text--placeholder { color: var(--mist); }
.page__soon { display: inline-block; font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--page-accent, var(--gold)); border: 1px dashed color-mix(in srgb, var(--page-accent, var(--gold)) 55%, transparent); padding: 0.4rem 0.9rem; border-radius: 999px; margin-bottom: 1.2rem; }
/* colour per page */
.page--1 { --page-accent: var(--gold); }
.page--2 { --page-accent: var(--rose); }
.page--3 { --page-accent: var(--iris); }
.page--4 { --page-accent: var(--teal); }
.page--5 { --page-accent: var(--coral); }
.book__nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.9rem 1.2rem; border-top: 1px solid var(--line); }
.book__arrow { background: var(--paper); border: 1px solid var(--card-line); color: var(--cream); padding: 0.6rem 1.2rem; border-radius: 999px; cursor: pointer; font-family: var(--font-sans); font-size: 0.85rem; font-weight: 500; transition: border-color 0.3s var(--ease), transform 0.3s var(--ease); }
.book__arrow:hover { border-color: var(--gold); transform: translateY(-2px); }
.book__arrow:disabled { opacity: 0.35; cursor: default; transform: none; }
.book__counter { color: var(--muted); font-size: 0.85rem; letter-spacing: 0.12em; }

/* ---------- House of Effervescence (the movement) ---------- */
.house { text-align: center; }
.house__ambience {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(60% 45% at 50% 12%, rgba(232,184,74,0.14), transparent 65%),
    radial-gradient(55% 45% at 18% 82%, rgba(212,90,138,0.10), transparent 62%),
    radial-gradient(55% 45% at 84% 78%, rgba(139,92,199,0.12), transparent 62%);
}
.house__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.house__founded {
  font-family: var(--font-serif); font-style: italic; color: var(--mist);
  font-size: 1.05rem; letter-spacing: 0.04em;
}
.house__founded strong { font-style: normal; letter-spacing: 0.22em; color: var(--gold-deep); font-weight: 600; }
.house__tagline {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(1.6rem, 4vw, 2.4rem); line-height: 1.1; margin-top: 0.5rem;
}
.house__tagline em {
  font-style: italic; font-weight: 500;
  background: linear-gradient(100deg, var(--gold-soft), var(--gold), var(--rose) 78%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.house__movement {
  font-family: var(--font-sans); font-weight: 600;
  font-size: clamp(0.7rem, 1.1vw, 0.8rem); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-top: 0.55rem;
}
.house__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.2rem, 5.6vw, 3.8rem); line-height: 1; letter-spacing: -0.01em;
  margin-top: clamp(1rem, 2.4vh, 1.7rem); max-width: none;
}
.house__sub {
  display: block; font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.15rem, 2.6vw, 1.75rem); letter-spacing: 0.01em; margin-top: 0.5rem;
}
.house__text {
  color: var(--mist); font-family: var(--font-serif); font-size: clamp(1rem, 1.7vw, 1.18rem);
  max-width: 62ch; margin: 0.9rem auto 0; line-height: 1.5;
}
.house__pillars-title {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--cream); margin: clamp(1.2rem, 2.6vh, 1.9rem) 0 1rem;
}
.house .pillars { text-align: left; width: 100%; gap: 1.3rem; }
.house__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 1.6rem; }

/* Our Productions */
.house__est { color: var(--gold-deep); font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; margin: 0.6rem 0 0.8rem; letter-spacing: 0.04em; }
.house__est strong { font-style: normal; letter-spacing: 0.16em; color: var(--gold-deep); font-weight: 600; }
.productions__intro {
  color: var(--mist); font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem); line-height: 1.55;
  max-width: none; width: 100%; margin: 0 0 2rem;
}
.productions__intro em { color: var(--gold-soft); font-style: italic; }

/* ---------- Comments ---------- */
.comments { margin-top: 3.2rem; padding: 2.2rem 1.8rem; border: 1px solid var(--card-line); border-radius: var(--radius-card); background: var(--card-wash); box-shadow: var(--shadow-card); text-align: left; }
.comments__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem, 3.4vw, 2rem); color: var(--gold-deep); }
.comments__sub { color: var(--muted); font-family: var(--font-serif); font-size: 0.95rem; margin: 0.4rem 0 1.4rem; line-height: 1.5; }
.comments__box { min-height: 60px; }
.comments__box .gsc-comment-box, .comments__box iframe.giscus-frame { width: 100%; }
.comments__fallback {
  margin-top: 1.2rem; padding: 1.4rem 1.6rem; border-radius: 14px; text-align: left;
  border: 1px dashed rgba(243,211,138,0.35); background: rgba(243,211,138,0.05);
}
.comments__fallback[hidden] { display: none !important; }
.comments__fallback p { color: var(--mist); font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 1.1rem; }
.comments.is-fallback .comments__box { display: none; }

/* ---------- Workshops ---------- */
.workshops__intro { color: var(--mist); font-family: var(--font-serif); font-size: 1.2rem; max-width: 52ch; margin: 1rem 0 2.6rem; }
.workshops__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.wcard {
  padding: 2.2rem 1.8rem; border-radius: var(--radius-card); text-align: left;
  background: var(--card-wash); border: 1px solid var(--card-line);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 0.7rem;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.wcard:hover { transform: translateY(-6px); border-color: rgba(143, 100, 16, 0.35); box-shadow: 0 24px 52px -16px rgba(42, 11, 70, 0.28); }
.wcard__icon { font-size: 1.8rem; color: var(--gold-deep); line-height: 1; }
.wcard__title { font-family: var(--font-display); font-weight: 600; font-size: 1.45rem; line-height: 1.15; color: var(--cream); }
.wcard__desc { color: var(--mist); font-family: var(--font-serif); font-size: 1rem; line-height: 1.55; flex: 1; }
.wcard .card__link { margin-top: 0.4rem; }

/* ---------- Shop ---------- */
.shop__banner {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); margin-bottom: 2.4rem;
  box-shadow: 0 26px 60px -34px rgba(42,11,70,0.5);
}
.shop__banner img { width: 100%; aspect-ratio: 16/7; object-fit: cover; display: block; }
.shop__banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,6,26,0.28) 0%, rgba(14,6,26,0.42) 55%, rgba(14,6,26,0.5) 100%);
}
.shop__banner-title {
  position: absolute; inset: 0; z-index: 1; display: grid; place-items: end start;
  text-align: left; padding: 1.4rem 1.2rem;
  font-family: var(--font-sans); font-weight: 300; color: #fff;
  font-size: clamp(1.5rem, 5.2vw, 3.6rem); letter-spacing: 0.14em; text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0,0,0,0.45);
}
.shop__head { margin-bottom: 2.2rem; }
.shop__join { margin-top: 0.9rem; }
.shop__join a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  color: var(--gold-deep); transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.shop__join a:hover { gap: 0.9rem; color: var(--rose-deep); }
.shop__intro { color: var(--mist); font-family: var(--font-serif); font-size: 1.2rem; max-width: 56ch; margin-top: 0.9rem; }
.shop__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.product { border: 1px solid var(--card-line); border-radius: var(--radius-card); overflow: hidden; background: var(--card-wash); box-shadow: var(--shadow-card); text-align: left; transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.product:hover { transform: translateY(-6px); border-color: rgba(143, 100, 16, 0.35); box-shadow: 0 24px 52px -16px rgba(42, 11, 70, 0.28); }
.product__media {
  aspect-ratio: 4/5; position: relative; overflow: hidden;
  background: #efe8dc;
}
.product__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 12%;
  transition: opacity 0.45s var(--ease), transform 0.6s var(--ease);
}
.product:hover .product__media img { transform: scale(1.03); }
.product__img--alt { opacity: 0; }
.product:hover .product__img--alt, .product:focus-within .product__img--alt { opacity: 1; }
.product__body { padding: 1.8rem 1.8rem 2rem; display: flex; flex-direction: column; gap: 0.55rem; }
.product__title { font-family: var(--font-display); font-weight: 600; font-size: 1.45rem; line-height: 1.15; color: var(--cream); }
.product__desc { color: var(--mist); font-family: var(--font-serif); font-size: 1rem; line-height: 1.55; }
.product__meta { color: var(--muted); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; }
.product__badge { align-self: flex-start; margin-top: 0.4rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); border: 1px solid rgba(143, 100, 16, 0.35); padding: 0.35rem 0.8rem; border-radius: 999px; }

/* ---------- Newsletter: Marie-Paul's Musings ---------- */
.musings {
  margin-top: 2.2rem; padding: 2.2rem 1.8rem; border-radius: var(--radius-card); text-align: left;
  border: 1px solid var(--card-line);
  background: var(--card-wash); box-shadow: var(--shadow-card);
}
.musings__eyebrow { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-deep); }
.musings__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.5rem, 3.2vw, 2rem); margin-top: 0.35rem; }
.musings__title em { font-style: italic; color: var(--gold-deep); }
.musings__text { color: var(--mist); font-family: var(--font-serif); font-size: 1.1rem; margin: 0.5rem 0 1.1rem; max-width: 46ch; }
.musings .community__form { max-width: none; justify-content: flex-start; }
.musings .community__note { text-align: left; }

/* ---------- Follow for More ---------- */
.follow { margin-top: 2rem; }
.follow__label { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; margin-bottom: 0.9rem; }
.follow__list { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.follow__list a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1rem; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.7); color: var(--cream); font-size: 0.9rem;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), color 0.35s var(--ease);
}
.follow__list a:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }
.follow__list svg { color: var(--gold-deep); flex: 0 0 auto; }

.community__form { display: flex; gap: 0.6rem; width: 100%; max-width: 460px; flex-wrap: wrap; justify-content: flex-start; }
.community__form input {
  flex: 1; min-width: 200px; padding: 1rem 1.2rem; border-radius: 999px; background: rgba(255,255,255,0.9);
  border: 1px solid var(--line); color: var(--cream); font-family: var(--font-sans); font-size: 1rem;
}
.community__form input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(243,211,138,0.14); }
.community__note { min-height: 1.2em; margin-top: 1rem; color: var(--teal); font-size: 0.95rem; }
.community__note.is-error { color: var(--rose-deep); }

/* ---------- The Visual Poetry Experience ---------- */
.vpx__grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.vpx__title {
  font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em;
  font-size: clamp(2rem, 4.2vw, 3.2rem); line-height: 1.1;
  margin-bottom: 1.2rem; max-width: 16ch;
}
.vpx__lead { font-family: var(--font-serif); font-size: 1.12rem; color: var(--cream); line-height: 1.55; }
.vpx__lead em { color: var(--gold-soft); font-style: italic; }
.vpx__text {
  font-family: var(--font-serif);
  color: var(--cream);
  margin-top: 0.9rem;
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.55;
}
.vpx__text a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  border-bottom: none;
}
.vpx__text a:hover { color: var(--rose-deep); }
.vpx__actions { margin-top: 1.6rem; display: flex; gap: 0.8rem; flex-wrap: wrap; }

.vpx__film {
  position: relative; display: block; border-radius: 14px; overflow: hidden;
  border: 3px solid var(--gold-bright); background: #100a18; cursor: pointer;
  box-shadow: 0 26px 60px -30px rgba(212,146,31,0.65);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.vpx__film:hover { transform: translateY(-5px); box-shadow: 0 34px 74px -30px rgba(212,146,31,0.8); }
.vpx__film img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; opacity: 0.9; }
.vpx__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(232,184,74,0.92); box-shadow: 0 14px 34px -10px rgba(0,0,0,0.5);
  transition: transform 0.4s var(--ease);
}
.vpx__play::before {
  content: ""; margin-left: 5px;
  border-left: 20px solid #2a1608; border-top: 12px solid transparent; border-bottom: 12px solid transparent;
}
.vpx__film:hover .vpx__play { transform: translate(-50%, -50%) scale(1.09); }
.vpx__filmlabel {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.8rem 1rem 0.85rem;
  text-align: left; font-family: var(--font-serif); font-style: italic; font-size: 1rem;
  color: #ffeab3; background: linear-gradient(transparent, rgba(12,5,22,0.85));
}

.vpx__quote {
  margin-top: clamp(2rem, 5vh, 3.2rem); padding: clamp(1.8rem, 5vw, 3rem);
  border-radius: var(--radius); text-align: left; position: relative; overflow: hidden;
  background:
    radial-gradient(70% 120% at 18% 12%, rgba(139,92,199,0.85), transparent 62%),
    radial-gradient(70% 120% at 84% 88%, rgba(212,90,138,0.6), transparent 60%),
    linear-gradient(140deg, #43156f, #2a0b46 62%, #1c0733);
  box-shadow: 0 30px 70px -34px rgba(42,11,70,0.7);
}
.vpx__quote blockquote {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(1.25rem, 3.2vw, 2.1rem); line-height: 1.38; color: #fff6ef;
  max-width: 30ch; margin-inline: auto;
}
.vpx__quote .ink-underline { color: #ffeab3; background-image: linear-gradient(#ffeab3, #ffeab3); }
.vpx__quote figcaption {
  margin-top: 1.4rem; font-size: 0.74rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,246,239,0.72);
}
.vpx__quote figcaption span { color: var(--gold-bright); }

/* Two smaller cards under the performance films */
.work__grid--pair { grid-template-columns: repeat(2, 1fr); max-width: 900px; }
.card--sm { grid-column: span 1; min-height: 0; padding: 2.2rem 1.8rem; gap: 0.7rem; }
.card--sm .card__play { width: 34px; height: 34px; top: 1.1rem; right: 1.1rem; }
.card--sm .card__play::before { border-left-width: 9px; border-top-width: 5.5px; border-bottom-width: 5.5px; }

/* ---------- Magazine spread viewer ---------- */
.mag {
  position: fixed; inset: 0; z-index: 250; display: grid; place-items: center;
  padding: var(--gutter); background: rgba(20,8,34,0.82); backdrop-filter: blur(16px);
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.mag.is-open { opacity: 1; visibility: visible; }
.mag__book {
  position: relative; display: grid; grid-template-columns: 1fr 2px 1fr;
  width: min(940px, 100%); max-height: 84vh; border-radius: 8px; overflow: hidden;
  background: linear-gradient(180deg, #fffdf9, #f4eee6);
  box-shadow: 0 50px 120px -40px rgba(0,0,0,0.8), 0 0 0 1px rgba(42,11,70,0.18);
  transform: translateY(18px) scale(0.97); transition: transform 0.5s var(--ease);
}
.mag.is-open .mag__book { transform: none; }
.mag__page { position: relative; }
.mag__page--left { background: #1a1020; }
.mag__page--left img {
  width: 100%;
  height: auto;
  max-height: 84vh;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #1a1020;
}
.mag__spine { background: linear-gradient(90deg, rgba(0,0,0,0.22), rgba(0,0,0,0.06)); }
.mag__page--right {
  padding: clamp(1.6rem, 4vw, 3rem); display: flex; flex-direction: column;
  justify-content: center; gap: 0.7rem; overflow-y: auto;
}
.mag__meta { font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-deep); }
.mag__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.6rem, 4vw, 2.4rem); line-height: 1.1; color: var(--cream); }
.mag__desc { color: var(--mist); font-family: var(--font-serif); font-size: 1.1rem; line-height: 1.5; }
.mag__cta { align-self: flex-start; margin-top: 0.8rem; }
.mag__close {
  position: absolute; top: 1.2rem; right: 1.4rem; z-index: 2; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3); color: #fff;
  font-size: 1.8rem; line-height: 1; cursor: pointer; transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.mag__close:hover { background: rgba(232,184,74,0.3); transform: rotate(90deg); }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}
@media (max-width: 960px) {
  .hero__stage {
    align-items: flex-end;
    justify-content: flex-start;
    padding-inline: var(--gutter);
    padding-bottom: 1.5rem;
  }
  .hero__inner { text-align: left; max-width: 36rem; }
  .hero__actions { justify-content: flex-start; }
  .hero__title .line--name { font-size: clamp(3rem, 13vw, 4.8rem); }
  .hero__slide { object-position: center 22%; }
  .hero__visual::after {
    background:
      linear-gradient(180deg, rgba(18, 6, 32, 0.28) 0%, rgba(18, 6, 32, 0.2) 35%, rgba(18, 6, 32, 0.72) 100%);
  }
  .pillars { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .about__portrait { order: -1; }
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .card { grid-column: span 1; }
  .card--wide { grid-column: span 2; }
  .productions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spread__cover img { max-height: min(56vh, 560px); }
  .perf-gallery { grid-template-columns: repeat(3, 1fr); gap: 0.7rem; }
  .workshops__grid, .shop__grid { grid-template-columns: repeat(2, 1fr); }
  .connect__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .vpx__grid { grid-template-columns: 1fr; }
  .vpx__film { order: -1; }
  .shop__editorial { grid-template-columns: 1fr; }
  .mag__book { grid-template-columns: 1fr; grid-template-rows: auto auto; max-height: 86vh; overflow-y: auto; }
  .mag__spine { display: none; }
  .mag__page--left img { max-height: 42vh; object-fit: contain; }
}
@media (max-width: 560px) {
  .hide-mobile { display: none; }
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; }
  .work__grid { grid-template-columns: 1fr; }
  .card--wide { grid-column: span 1; }
  .about__facts { grid-template-columns: 1fr; }
  .hero__title .line--name { letter-spacing: 0.01em; }
  .workshops__grid, .shop__grid { grid-template-columns: 1fr; }
  .productions { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
  .spread__cover img { height: auto; max-height: none; }
  .perf-gallery { grid-template-columns: 1fr; }
  .work__grid--pair { grid-template-columns: 1fr; }
  .follow__list a { width: 100%; }
  .hero__roles { font-size: 0.82rem; letter-spacing: 0.13em; }
  .hero__roles span { margin: 0 0.3rem; }
  /* Touch devices can't hover, so the prompt sits as a bar along the cover */
  .spread__cta {
    left: 0; right: 0; top: auto; bottom: 0; transform: none;
    opacity: 1; border-radius: 0; white-space: normal; text-align: center;
    font-size: 0.72rem; padding: 0.45rem 0.5rem; box-shadow: none;
  }
  .spread:hover .spread__cta { transform: none; }
  .book__tabs { gap: 0.35rem; }
  .book__tab { font-size: 0.78rem; padding: 0.5rem 0.85rem; }
  .community__form { flex-direction: column; }
  .community__form .btn { width: 100%; }
}

/* Custom cursor bubble (desktop, fine pointer only) */
.cursor-bubble {
  position: fixed; top: 0; left: 0; width: 26px; height: 26px; border-radius: 50%; pointer-events: none; z-index: 200;
  border: 1px solid rgba(243,211,138,0.6); mix-blend-mode: screen; transform: translate(-50%,-50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s; display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-bubble { display: block; }
}
