/* ————————————————————————————————————————————————
   Palette from aja monet, “the color of rain”
   midnight indigo · periwinkle · lavender · moonlight · muted rose
   Type: Fraunces (display) · Inter (text) · IBM Plex Mono (meta)
   ———————————————————————————————————————————————— */

:root {
  --bg:          #b9c1e7;
  --bg-deep:     #a8b1e0;
  --ink:         #151936;
  --ink-soft:    #2e3566;
  --ink-faint:   #454e8d;
  --periwinkle:  #3743a5;
  --lavender:    #59459e;
  --rose:        #92406e;
  --hairline:    rgba(21, 25, 54, 0.22);
  --hairline-soft: rgba(21, 25, 54, 0.1);

  --serif: "EB Garamond", Georgia, serif;
  --sans:  "EB Garamond", Georgia, serif;
  --mono:  "EB Garamond", Georgia, serif;
  --ui:    "Inter", -apple-system, "Segoe UI", sans-serif;

  --gutter: clamp(1.25rem, 5vw, 5rem);
  --numcol: clamp(3.5rem, 8vw, 7rem);
  --measure: 62ch;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.3rem;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--ink); color: var(--bg); }

/* ————— texture & page furniture ————— */

.grain {
  position: fixed;
  inset: -50%;
  z-index: 50;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.045;
  mix-blend-mode: multiply;
}

.page-rules {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.page-rules span {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--hairline-soft);
}

.page-rules span:first-child { left: var(--gutter); }
.page-rules span:last-child  { right: var(--gutter); }

/* ————— header ————— */

.header-wrap {
  position: fixed;
  top: 1.25rem;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

.site-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.55rem 0.55rem 1.4rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  box-shadow: 0 10px 34px rgba(21, 25, 54, 0.16);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-right: clamp(1.25rem, 3vw, 2.25rem);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.brand em {
  font-style: italic;
  font-weight: 500;
  color: var(--periwinkle);
  transition: color 0.3s ease;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  transition: rotate 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand:hover { color: var(--periwinkle); }
.brand:hover em { color: var(--ink); }
.brand:hover .brand-mark { rotate: 72deg; }

.nav { display: flex; gap: clamp(1.25rem, 2.5vw, 2.25rem); }

.nav a {
  position: relative;
  font-family: var(--ui);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  text-decoration: none;
  padding-bottom: 0.2rem;
  transition: color 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--lavender);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav a:hover { color: var(--ink); }

.nav a:hover::after { transform: scaleX(1); }

.nav-cta {
  font-family: var(--ui);
  font-size: 0.92rem;
  font-weight: 500;
  color: #eef0fb;
  text-decoration: none;
  background: #1c2145;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-cta:hover {
  background: #2e3566;
  transform: translateY(-1px);
}

/* ————— hero ————— */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6.5rem var(--gutter) 5rem;
  min-height: 100svh;
  overflow: hidden;
}

/* — the night-garden scene — */

.hero-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(255, 255, 255, 0.95), transparent),
    radial-gradient(1px 1px at 26% 34%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(2px 2px at 38% 12%, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(1px 1px at 52% 28%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 64% 8%, rgba(255, 255, 255, 0.85), transparent),
    radial-gradient(1px 1px at 71% 30%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1.5px 1.5px at 8% 46%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(2px 2px at 90% 40%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1px 1px at 45% 45%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 82% 16%, rgba(255, 255, 255, 0.75), transparent);
  mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 55%, rgba(0,0,0,0) 85%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 55%, rgba(0,0,0,0) 85%);
  animation: twinkle 7s ease-in-out infinite alternate;
}

@keyframes twinkle {
  from { opacity: 0.6; }
  to   { opacity: 1; }
}

.moon-art {
  position: absolute;
  top: 4.5rem;
  right: clamp(1rem, 8vw, 8rem);
  width: clamp(120px, 15vw, 210px);
  height: auto;
  filter: drop-shadow(0 0 28px rgba(220, 226, 250, 0.9))
          drop-shadow(0 0 70px rgba(174, 185, 238, 0.55));
}

.birds {
  position: absolute;
  top: 15%;
  left: 11%;
  width: clamp(100px, 11vw, 160px);
  height: auto;
}

.flora {
  position: absolute;
  bottom: 2%;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 16px 36px rgba(21, 25, 54, 0.28));
}

.flora-right {
  right: -3%;
  width: clamp(260px, 27vw, 440px);
}

.flora-left {
  left: -3%;
  width: clamp(200px, 21vw, 340px);
  scale: -1 1;
  opacity: 0.9;
}

.hero-curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(60px, 9vw, 130px);
  z-index: 1;
}

.hero-curve svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-title, .hero-tag, .facilitated {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.6vw, 6.2rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  margin: 0 0 2rem;
}

.hero-title .line { display: block; }

.hero-title .em {
  font-style: italic;
  font-weight: 400;
  color: var(--lavender);
}

.facilitated {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  color: var(--ink-soft);
}

.facilitated strong {
  font-weight: 500;
  color: var(--ink);
}

/* ————— menu ————— */

.menu-btn {
  font-family: var(--ui);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: inherit;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(21, 25, 54, 0.25);
  border-radius: 999px;
  padding: 0.55rem 1.35rem;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.menu-btn:hover { background: rgba(255, 255, 255, 0.55); border-color: rgba(21, 25, 54, 0.45); }

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 75% 15%, rgba(96, 78, 140, 0.35) 0%, transparent 55%),
    linear-gradient(180deg, #1c2145 0%, #14172f 100%);
  overflow-y: auto;
  padding: 4rem 1.5rem;
}

.menu-overlay[hidden] { display: none; }

.menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--ui);
  font-size: 1rem;
  color: #b9c1e7;
  background: transparent;
  border: 1px solid rgba(174, 185, 238, 0.35);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease, rotate 0.4s ease;
}

.menu-close:hover { color: #ffffff; border-color: #ffffff; rotate: 90deg; }

/* the menu is a museum — each page a door, each door a room */

.menu-inner {
  margin: auto;
  width: min(960px, 100%);
  display: grid;
  gap: clamp(1.75rem, 4vh, 2.75rem);
  justify-items: center;
}

.menu-eyebrow {
  font-family: var(--ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #aeb9ee;
  text-align: center;
}

.menu-doors {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.9rem) clamp(1rem, 2.2vw, 1.75rem);
  width: 100%;
}

.door {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  min-height: clamp(10rem, 21vh, 14rem);
  padding: 2.6rem 1.4rem 2rem;
  text-align: center;
  text-decoration: none;
  color: #dfe3f6;
  border: 1px solid rgba(174, 185, 238, 0.4);
  border-radius: 12rem 12rem 14px 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  transition: background 0.45s ease, border-color 0.45s ease,
              transform 0.45s ease, box-shadow 0.45s ease, color 0.45s ease;
}

/* the threshold — a sill of light beneath each door */
.door::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: -0.7rem;
  height: 1px;
  background: rgba(174, 185, 238, 0.3);
  transition: background 0.45s ease;
}

.door-mark {
  width: 30px;
  height: 30px;
  opacity: 0.75;
  transition: rotate 0.6s ease, opacity 0.45s ease;
}

.door-name {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.3;
  max-width: 13ch;
}

.door:hover,
.door:focus-visible {
  color: #ffffff;
  border-color: rgba(243, 238, 255, 0.9);
  background:
    radial-gradient(ellipse at 50% 10%, rgba(255, 241, 212, 0.22) 0%, transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  transform: translateY(-5px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.35);
}

.door:hover .door-mark,
.door:focus-visible .door-mark { rotate: 72deg; opacity: 1; }

.door:hover::after,
.door:focus-visible::after { background: rgba(255, 241, 212, 0.55); }

/* the room you are already standing in stays softly lit */
.door[aria-current="page"] {
  border-color: rgba(255, 241, 212, 0.5);
  background:
    radial-gradient(ellipse at 50% 10%, rgba(255, 241, 212, 0.12) 0%, transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}

@media (max-width: 860px) {
  .menu-doors { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .door { min-height: 8.5rem; padding: 2rem 1rem 1.5rem; }
}

@media (max-width: 400px) {
  .menu-doors { gap: 0.8rem; }
  .door { min-height: 7.5rem; gap: 0.8rem; }
  .door-mark { width: 24px; height: 24px; }
}

body.menu-open { overflow: hidden; }

/* ————— forms ————— */

.form {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.form-field { margin-bottom: 1.6rem; }

.form-field label {
  display: block;
  font-family: var(--ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(21, 25, 54, 0.2);
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-field textarea { min-height: 170px; resize: vertical; line-height: 1.6; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--periwinkle);
  background: rgba(255, 255, 255, 0.72);
}

.form-submit {
  font-family: var(--ui);
  font-size: 0.95rem;
  font-weight: 500;
  color: #eef0fb;
  background: #1c2145;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.9rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.form-submit:hover { background: #2e3566; transform: translateY(-1px); }

.form-note {
  margin-top: 1.1rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-faint);
}

/* ————— contact page ————— */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.3fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-intro { text-align: left; }

.contact-intro h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.contact-intro h2 em { font-style: italic; color: var(--periwinkle); }

.contact-intro > p {
  font-size: clamp(1.3rem, 1.9vw, 1.5rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 34ch;
}

.contact-reasons {
  list-style: none;
  margin-top: 2rem;
  max-width: 30ch;
}

.contact-reasons li {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink-soft);
  padding: 0.65em 0;
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: baseline;
  gap: 0.7em;
}

.contact-reasons li:last-child { border-bottom: 1px solid var(--hairline); }

.contact-reasons li::before {
  content: "—";
  color: var(--rose);
  flex-shrink: 0;
}

.contact-flourish {
  width: 54px;
  height: auto;
  margin-top: 2.25rem;
  opacity: 0.8;
  rotate: -8deg;
}

.contact-card {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 30px;
  padding: clamp(2.25rem, 4vw, 3.75rem);
  box-shadow: 0 16px 44px rgba(21, 25, 54, 0.14);
  max-width: none;
  width: 100%;
}

.contact-card .form-field textarea { min-height: 230px; }

.contact-card .form-field input,
.contact-card .form-field textarea {
  font-size: 1.3rem;
  padding: 1rem 1.2rem;
}

.contact-card .form-submit {
  font-size: 1.05rem;
  padding: 0.95rem 2.3rem;
}

.contact-card .form-field input,
.contact-card .form-field select,
.contact-card .form-field textarea {
  background: rgba(255, 255, 255, 0.6);
}

.form-field ::placeholder {
  color: var(--ink-faint);
  font-style: italic;
  opacity: 0.8;
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-intro > p { max-width: none; }
}

/* ————— writings on the wall ————— */

.wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 1080px;
  margin: 0 auto;
}

.wall-card {
  padding: 2.5rem 2.25rem;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(21, 25, 54, 0.1);
}

.wall-card blockquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--ink);
}

.wall-card figcaption {
  margin-top: 1.2rem;
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
}

/* ————— prompts ————— */

.prompt-list {
  max-width: 760px;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
  list-style: none;
  counter-reset: prompt;
}

.prompt-list li {
  counter-increment: prompt;
  padding: 1.9rem 0;
  border-top: 1px solid var(--hairline);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  line-height: 1.5;
  color: var(--ink-soft);
  text-align: left;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: baseline;
}

.prompt-list li::before {
  content: counter(prompt, lower-roman);
  font-style: italic;
  color: var(--lavender);
  font-size: 1.15em;
}

.prompt-list li:last-child { border-bottom: 1px solid var(--hairline); }

/* ————— inner-page hero ————— */

.page-hero {
  padding: 10rem var(--gutter) 3rem;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.page-hero h1 em {
  font-style: italic;
  color: var(--lavender);
}

.page-sub {
  max-width: 44ch;
  margin: 1.5rem auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  color: var(--ink-soft);
}

/* ————— offer & workshop cards ————— */

.offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1080px;
  margin: 0 auto;
}

/* wider two-up variant — used for the podcast cards on the journal page */
.offers-wide {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  max-width: 1000px;
  gap: clamp(1.75rem, 3.5vw, 2.75rem);
}

.offers-wide .offer-card h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  text-wrap: balance;
}

.offer-card {
  padding: 2.75rem 2.5rem 2.5rem;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 26px;
  box-shadow: 0 12px 36px rgba(21, 25, 54, 0.12);
  text-align: left;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(21, 25, 54, 0.18);
}

.offer-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.1rem;
}

.offer-card h3 em { font-style: italic; color: var(--periwinkle); }

.offer-card p {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.offer-link {
  display: inline-block;
  margin-top: 1.6rem;
  font-family: var(--ui);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--periwinkle);
  text-decoration: none;
  transition: color 0.3s ease, translate 0.3s ease;
}

.offer-link:hover { color: var(--ink); translate: 4px 0; }

.workshop-card {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 30px;
  box-shadow: 0 14px 40px rgba(21, 25, 54, 0.13);
  text-align: center;
}

.card-label {
  font-family: var(--ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.25rem;
}

.card-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.15;
  color: var(--ink);
}

.card-title em { font-style: italic; color: var(--lavender); }

.card-facilitators {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink-soft);
  margin-top: 1.1rem;
}

.card-facilitators strong { font-weight: 500; color: var(--ink); }

.card-blurb {
  max-width: 58ch;
  margin: 1.5rem auto 0;
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.more-soon {
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink-faint);
}

/* ————— sections ————— */

.section {
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) var(--gutter);
  border-top: 1px solid var(--hairline);
  scroll-margin-top: 4.5rem;
}

/* tonal bands — the page moves from twilight into night */

#workshop {
  background: linear-gradient(180deg, #c5cceb 0%, #d6daf3 18%, #d6daf3 100%);
  border-top: none;
}

#three-rs {
  background:
    radial-gradient(ellipse at 88% 12%, rgba(146, 64, 110, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 8% 85%, rgba(85, 99, 196, 0.09) 0%, transparent 50%),
    #c6c0ea;
}

#facilitators {
  background: linear-gradient(180deg, #d2d6f1 0%, #c4cbea 100%);
}

/* ————— section decorations ————— */

.deco {
  position: absolute;
  pointer-events: none;
}

.deco-butterfly-f { bottom: 30%; left: 34%; width: 52px; opacity: 0.8; rotate: 10deg; }

.ornament {
  display: block;
  width: 42px;
  height: 42px;
  margin: 1.75rem auto 0;
  opacity: 0.85;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
}

.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.section-head h2 em {
  font-style: italic;
  color: var(--periwinkle);
}

/* centred, full-width section copy */

.prose {
  max-width: 58rem;
  margin: 0 auto;
  text-align: center;
}

.prose p { text-wrap: pretty; }

.prose p {
  font-size: clamp(1.4rem, 2vw, 1.65rem);
  line-height: 1.7;
  color: var(--ink-soft);
}

.prose p + p { margin-top: 1.8rem; }

.prose em { font-style: italic; color: var(--lavender); }

.prose strong { font-weight: 500; color: var(--ink); }

/* ————— grand quote ————— */

.grand-quote {
  margin: clamp(4.5rem, 10vw, 8rem) auto;
  max-width: 980px;
  text-align: center;
  position: relative;
}

.grand-quote blockquote p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.7rem, 4.2vw, 3.1rem);
  line-height: 1.35;
  color: var(--ink);
  text-wrap: balance;
}

.grand-quote figcaption {
  margin-top: 2rem;
  font-family: var(--mono);
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.grand-quote figcaption::before {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  margin: 0 auto 1.4rem;
  background: var(--rose);
  opacity: 0.7;
}

/* ————— the three R's ————— */

.rs-list {
  list-style: none;
  counter-reset: rs;
}

.rs-row {
  display: grid;
  grid-template-columns: clamp(4rem, 9vw, 8rem) minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: baseline;
  padding: clamp(2rem, 4vw, 3.25rem) 0;
  border-top: 1px solid var(--hairline);
  transition: background 0.4s ease;
}

.rs-list .rs-row:last-child { border-bottom: 1px solid var(--hairline); }

.rs-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1;
  color: var(--lavender);
  opacity: 0.75;
}

.rs-row h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.4s ease, font-style 0.4s ease;
}

.rs-row:hover h3 { color: var(--lavender); font-style: italic; }

.rs-row p {
  font-size: clamp(1.4rem, 2vw, 1.65rem);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 46ch;
}

.blueprint {
  margin: clamp(4rem, 9vw, 6.5rem) auto 0;
  max-width: 46ch;
  text-align: center;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  line-height: 1.5;
  color: var(--ink-soft);
}

.blueprint em { font-style: italic; color: var(--rose); }

/* ————— living map: quote → lived effect ————— */

.map-list {
  max-width: 800px;
  margin: 0 auto;
}

.map-item {
  border-top: 1px solid var(--hairline);
}

.map-list .map-item:last-child { border-bottom: 1px solid var(--hairline); }

.map-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 1.25rem;
  padding: 2rem 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.35;
  color: var(--ink);
  transition: color 0.35s ease;
}

.map-item summary::-webkit-details-marker { display: none; }

.map-item summary::after {
  content: "+";
  font-style: normal;
  font-size: 1.2em;
  line-height: 1;
  color: var(--lavender);
  transition: rotate 0.35s ease;
}

.map-item[open] summary::after { rotate: 45deg; }

.map-item summary:hover { color: var(--lavender); }

.map-body {
  padding: 0.25rem 0 2.4rem;
  max-width: 58ch;
}

.map-label {
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.9rem;
}

.map-body p {
  font-size: clamp(1.3rem, 1.9vw, 1.55rem);
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ————— journal: in print ————— */

.article-feature {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: center;
  max-width: 920px;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
}

.article-cover {
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(21, 25, 54, 0.14);
  rotate: -1.4deg;
  transition: rotate 0.4s ease, transform 0.4s ease;
}

.article-cover:hover { rotate: 0deg; transform: translateY(-4px); }

.article-cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.article-info { text-align: left; }

.article-info h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 1.1rem;
}

.article-info h3 em { font-style: italic; color: var(--periwinkle); }

.article-byline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}

.article-info > p:not(.article-byline):not(.card-label) {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

@media (max-width: 680px) {
  .article-feature { grid-template-columns: 1fr; }
  .article-cover { max-width: 300px; margin: 0 auto; }
  .article-info { text-align: center; }
}

.page-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  max-width: 1020px;
  margin: 0 auto;
}

.page-gallery a {
  display: block;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(21, 25, 54, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.page-gallery a:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(21, 25, 54, 0.16);
}

.page-gallery img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 11px;
}

.page-gallery-note {
  margin: 1.75rem auto 0;
  text-align: center;
  font-family: var(--ui);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
}

/* ————— archive gallery — photographs framed like the museum doors ————— */

.archive-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1020px;
  margin: 0 auto;
}

.archive-gallery figure {
  padding: 0.9rem 0.9rem 0;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 11rem 11rem 22px 22px;
  box-shadow: 0 12px 34px rgba(21, 25, 54, 0.1);
  text-align: center;
}

.archive-gallery img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10rem 10rem 14px 14px;
}

.archive-gallery figcaption {
  padding: 1.1rem 0.75rem 1.2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

/* ————— facilitators ————— */

.bio {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.4fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-top: 1px solid var(--hairline);
  max-width: 1400px;
  margin-inline: auto;
}

.bio:first-of-type { border-top: none; padding-top: 0; }

.bio-head { position: sticky; top: 6.5rem; align-self: start; }

.bio-head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.1rem;
}

.bio-role {
  font-family: var(--mono);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 2.1;
  color: var(--ink-faint);
}

.bio-text { max-width: none; }

.bio-text p {
  font-size: clamp(1.4rem, 2vw, 1.65rem);
  line-height: 1.7;
  color: var(--ink-soft);
}

.bio-text p + p { margin-top: 1.5rem; }

/* ————— footer ————— */

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  padding: clamp(5rem, 12vw, 9rem) var(--gutter) 2.5rem;
  background: linear-gradient(180deg, #33396b 0%, #23284e 45%, #141731 100%);
  color: #dfe3f6;
}

.footer-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 18% 22%, rgba(255, 255, 255, 0.85), transparent),
    radial-gradient(1px 1px at 34% 44%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(2px 2px at 55% 18%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1px 1px at 68% 38%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1.5px 1.5px at 84% 25%, rgba(255, 255, 255, 0.75), transparent),
    radial-gradient(1px 1px at 10% 55%, rgba(255, 255, 255, 0.5), transparent);
  mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
}

.footer-moon {
  bottom: 24%;
  left: 8%;
  width: 88px;
  opacity: 0.95;
  filter: drop-shadow(0 0 22px rgba(230, 234, 252, 0.95))
          drop-shadow(0 0 55px rgba(174, 185, 238, 0.55));
}

.footer-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(2.5rem, 6vw, 5rem);
  flex-wrap: wrap;
  margin-bottom: clamp(4rem, 9vw, 7rem);
}

.footer-mark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 14ch;
  color: #eef0fb;
}

.footer-nav {
  display: flex;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.footer-col-title {
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.4;
  padding: 0.28em 0;
  color: #b9c1e7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover { color: #ffffff; }

.footer-mark em { font-style: italic; color: #aeb9ee; }

.footer-row {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  border-top: 1px solid rgba(174, 185, 238, 0.25);
  padding-top: 1.5rem;
  font-family: var(--mono);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 2;
  color: #9aa2cf;
}

.footer-row p:last-child { text-align: right; }

/* ————— ambient motion ————— */

@media (prefers-reduced-motion: no-preference) {

  .site-header {
    animation: navDrop 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  @keyframes navDrop {
    from { opacity: 0; transform: translateY(-18px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* idle animations use individual transform properties (rotate / translate /
     scale) so the scroll parallax — which writes `transform` — composes freely */

  .flora-right {
    transform-origin: 78% 100%;
    animation: sway 8s ease-in-out infinite alternate;
  }

  .flora-left {
    transform-origin: 22% 100%;
    scale: -1 1;
    animation: sway 9.5s ease-in-out 0.8s infinite alternate;
  }

  @keyframes sway {
    from { rotate: -1.1deg; }
    to   { rotate: 1.3deg; }
  }

  .moon-art { animation: moonBob 11s ease-in-out infinite alternate; }

  @keyframes moonBob {
    from { translate: 0 0; }
    to   { translate: 0 10px; }
  }

  .birds { animation: birdDrift 16s ease-in-out infinite alternate; }

  @keyframes birdDrift {
    from { translate: 0 0; }
    50%  { translate: 28px -10px; }
    to   { translate: 56px 4px; }
  }

  .deco-butterfly-f { animation: flutter 5s ease-in-out infinite alternate; }

  @keyframes flutter {
    from { rotate: 6deg; translate: 0 0; }
    50%  { rotate: 14deg; translate: 0 -8px; }
    to   { rotate: 4deg; translate: 0 -2px; }
  }
}

/* ————— reveals ————— */

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(8px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.grand-quote[data-reveal] { transform: translateY(30px) scale(0.96); }

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.hero-title .line:nth-child(1) { transition-delay: 0.08s; }
.hero-title .line:nth-child(2) { transition-delay: 0.18s; }
.hero-title .line:nth-child(3) { transition-delay: 0.28s; }
.facilitated { transition-delay: 0.38s; }

/* ————— responsive ————— */

@media (max-width: 860px) {
  .rs-row {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    row-gap: 0.75rem;
  }

  .rs-row p { grid-column: 1 / -1; }

  .bio { grid-template-columns: 1fr; }
  .bio-head { position: static; }
}

@media (max-width: 860px) {
  .footer-moon, .deco-butterfly-f { display: none; }
}

@media (max-width: 640px) {
  .hero { padding-top: 6rem; }
  .flora { opacity: 0.55; }
  .flora-left { display: none; }
  .birds { top: 16%; }
  .site-header .nav, .site-header .nav-cta { display: none; }
  .site-header { padding-left: 1.1rem; gap: 1rem; }
  .footer-row { flex-direction: column; align-items: flex-start; }
  .footer-row p:last-child { text-align: left; }
  .page-rules { display: none; }
}

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