@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --bone: #efecdf;
  --olive: #473e0f;
  --olive-deep: #3a3209;
  --sage: #abaa70;
  --sage-soft: rgba(171,170,112,.55);
  --bone-soft: rgba(239,236,223,.62);
  --olive-soft: rgba(71,62,15,.7);
  --serif: 'Crimson Text', Georgia, serif;
  --sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { background: var(--olive); }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { color: var(--bone); min-height: 100vh; }
img { max-width: 100%; display: block; }

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

.eyebrow {
  font-family: var(--sans); font-weight: 400; text-transform: uppercase;
  font-size: clamp(10px, 0.78vw, 11px); letter-spacing: 0.42em; color: var(--bone);
}

.glyph { display: block; }
.una-symbol { display: block; color: inherit; overflow: visible; }
.una-symbol.size-nav { width: 16px; height: 23px; }
.una-symbol.size-md  { width: 22px; height: 31px; }
.una-symbol.size-lg  { width: 26px; height: 37px; }
.una-symbol.size-footer { width: 20px; height: 28px; }

/* ---- NAV ---- */
.topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  background: var(--olive);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  padding: 22px clamp(22px, 4vw, 52px);
  border-bottom: 1px solid rgba(171,170,112,.1);
  transition: background .4s, border-color .4s;
}
.topnav.scrolled {
  background: var(--olive);
  border-bottom-color: rgba(171,170,112,.1);
}
.topnav .brand {
  display: flex; align-items: center; color: var(--sage);
  text-decoration: none; cursor: pointer; line-height: 0; transition: opacity .25s;
}
.topnav .brand:hover { opacity: .75; }
.topnav .brand-glyph { width: auto; height: 22px; display: block; }
.topnav .nav-logo { height: 28px; width: auto; display: block; }
.topnav .links {
  justify-self: end; display: flex; gap: clamp(22px, 3vw, 44px);
}
.topnav .links a {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: .34em;
  font-size: 11px; color: var(--bone); text-decoration: none; font-weight: 400;
  position: relative; padding: 6px 0; transition: opacity .25s;
}
.topnav .links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left center;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.topnav .links a:hover { opacity: .75; }
.topnav .links a.active { opacity: 1; }
.topnav .links a.active::after { transform: scaleX(1); }

.nav-toggle {
  display: none; justify-self: end; width: 30px; height: 30px;
  background: transparent; border: 0; padding: 0; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 7px;
}
.nav-toggle .bar {
  display: block; width: 24px; height: 1px; background: var(--bone);
  transition: transform .3s; transform-origin: center center;
}
.nav-toggle.open .bar:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-toggle.open .bar:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ---- TABS ---- */
.tab { display: none; }
.tab.active {
  display: block;
  animation: tabFade .55s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes tabFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

/* ---- SCROLL REVEAL ---- */
.fade-up {
  opacity: 0; transform: translateY(22px);
  transition: opacity 1.05s, transform 1.05s cubic-bezier(.2,.7,.2,1);
}
.in-view .fade-up { opacity: 1; transform: none; }
.in-view .fade-up.d1 { transition-delay: .10s; }
.in-view .fade-up.d2 { transition-delay: .22s; }
.in-view .fade-up.d3 { transition-delay: .36s; }
.in-view .fade-up.d4 { transition-delay: .50s; }
.in-view .fade-up.d5 { transition-delay: .64s; }
.in-view .fade-up.d6 { transition-delay: .78s; }
.in-view .fade-up.d7 { transition-delay: .92s; }
.in-view .fade-up.d8 { transition-delay: 1.06s; }

/* ---- HERO ---- */
.hero {
  position: relative; background: var(--ink);
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 clamp(18px,3.5vw,48px) clamp(40px,6vh,70px);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(6,6,6,.55) 100%);
  pointer-events: none;
}
@keyframes logoIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.hero-vid {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  z-index: 0;
  filter: grayscale(1) contrast(1.1) brightness(.78);
}

/* ---- MISSION ---- */
.mission {
  background: var(--olive); text-align: center;
  padding: clamp(40px,7vh,86px) 24px clamp(80px,12vh,140px);
}
.mission > * { max-width: 760px; margin-left: auto; margin-right: auto; }
.mission .glyph { color: var(--bone); margin: 22px auto 26px; }
.mission p {
  font-family: var(--serif); font-size: clamp(1.15rem,1.7vw,1.42rem);
  line-height: 1.4; color: var(--bone); max-width: 54ch; margin: 0 auto;
}

/* ---- HOME PILLARS ---- */
.home-pillars {
  background: var(--bone); color: var(--olive);
  padding: clamp(80px,12vh,140px) clamp(22px,5vw,72px) clamp(80px,12vh,140px);
  position: relative; overflow: hidden;
}
.pillars-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.pillars-eyebrow { display: flex; flex-direction: column; gap: 8px; margin-bottom: clamp(40px,6vh,80px); }
.pillars-eyebrow .eyebrow { color: var(--olive); font-size: 11px; letter-spacing: .42em; }
.pillars-title {
  font-family: var(--sans); font-weight: 500; text-transform: uppercase;
  font-size: clamp(1.4rem,3.6vw,2.6rem); line-height: 1.15; letter-spacing: .01em;
  color: var(--olive); text-align: center; margin: 0 auto clamp(36px,5vh,56px); max-width: 920px;
}
.pt-line { display: block; }
.pillars-thread { font-weight: 700; letter-spacing: .12em; }
.pillars-meta {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: clamp(60px,9vh,100px); text-align: left; gap: 20px;
}
.pillars-meta p {
  font-family: var(--sans); font-size: 10px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--olive); opacity: .7; line-height: 1.7;
}
.pillars-meta > div:last-child { text-align: right; }

/* ---- HOME LETTER ---- */
.home-letter {
  background: var(--olive); color: var(--bone);
  padding: clamp(80px,12vh,140px) clamp(22px,5vw,72px);
  position: relative; overflow: hidden;
}
.letter-inner { max-width: 920px; margin: 0 auto; position: relative; }
.letter-header { display: flex; justify-content: flex-end; margin-bottom: clamp(20px,4vh,40px); }
.letter-issue { font-family: var(--sans); font-size: 10px; letter-spacing: .34em; text-transform: uppercase; color: var(--sage); }
.letter-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.5rem,6vw,4.8rem); line-height: 1; letter-spacing: -.02em;
  color: var(--bone); text-align: center; margin-bottom: clamp(40px,6vh,70px);
}
.letter-image {
  width: 100%; max-width: 560px; margin: 0 auto clamp(50px,7vh,80px);
  aspect-ratio: 4/5; overflow: hidden;
}
.letter-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.letter-text {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,70px);
  font-family: var(--serif); font-size: clamp(1.05rem,1.4vw,1.18rem);
  line-height: 1.5; color: var(--bone); max-width: 760px; margin: 0 auto;
}
.letter-text p { text-indent: 1.8em; }
.letter-continued {
  text-align: right; margin-top: clamp(30px,5vh,50px);
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.letter-continued a {
  font-family: var(--serif); font-size: 1rem; color: var(--bone-soft);
  text-decoration: none; transition: color .3s; font-style: italic;
}
.letter-continued a:hover { color: var(--bone); }

/* ---- EXPERIENCE ---- */
.experience {
  background: var(--bone); color: var(--olive);
  padding: clamp(70px,10vh,130px) clamp(22px,5vw,72px) clamp(90px,14vh,160px);
}
.exp-grid {
  max-width: 1080px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(12,1fr);
  grid-template-rows: auto auto;
  gap: clamp(48px,7vh,80px) clamp(14px,2vw,28px);
}
.exp-block .eyebrow { color: var(--olive); font-size: 11px; letter-spacing: .38em; }
.exp-block h3 {
  font-family: var(--sans); font-weight: 500; text-transform: uppercase;
  font-size: clamp(1.55rem,2.2vw,1.95rem); line-height: 1.04; letter-spacing: -.015em;
  color: var(--olive); margin: 18px 0 22px;
}
.exp-block .body { font-family: var(--serif); font-size: 1.08rem; line-height: 1.4; color: var(--olive); }
.exp-cultural { grid-area: 1/1/3/span 5; align-self: start; }
.exp-cultural .body { columns: 1; max-width: none; }
.exp-small { grid-area: 1/7/2/span 6; margin-top: 0; max-width: none; align-self: start; }
.exp-small .body { max-width: none; }
.exp-roots { grid-area: 2/7/3/span 6; align-self: start; max-width: none; }
.exp-roots .body { max-width: none; }

/* ---- CYCLE ---- */
.cycle {
  position: relative;
  background: radial-gradient(120% 90% at 50% -10%, var(--olive) 0%, var(--olive-deep) 100%);
  color: var(--bone);
  padding: clamp(72px,11vh,150px) clamp(22px,6vw,90px) clamp(80px,12vh,160px);
  overflow: hidden;
}
.cycle::before {
  content: ""; position: absolute; right: -22vw; top: 50%; transform: translateY(-50%);
  width: 60vw; height: 60vw; border: 1px solid rgba(171,170,112,.12);
  border-radius: 50%; pointer-events: none;
}
.cycle .head {
  max-width: 760px; margin: 0 auto clamp(48px,7vh,96px);
  text-align: center; position: relative; z-index: 2;
}
.cycle .head .eyebrow { color: var(--sage); }
.cycle .head .glyph  { color: var(--sage); margin: 22px auto 26px; }
.cycle .head h2 {
  font-family: var(--sans); font-weight: 500; text-transform: uppercase;
  font-size: clamp(2.3rem,6vw,4.4rem); line-height: .94; letter-spacing: -.02em; color: var(--bone);
}
.cycle .head p {
  font-family: var(--serif); font-size: clamp(1.15rem,1.7vw,1.38rem);
  line-height: 1.42; color: var(--bone-soft); max-width: 46ch; margin: 26px auto 0;
}
.stage-grid {
  position: relative; z-index: 2; max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr minmax(280px,480px) 1fr;
  grid-template-rows: auto auto auto; column-gap: clamp(24px,4vw,64px); align-items: center;
}
.spiral-cell {
  grid-area: 1/2/4; display: flex; align-items: center;
  justify-content: center; padding: 8px;
}
#cycle-svg { width: 100%; height: auto; max-width: 480px; overflow: visible; display: block; }
.stage { max-width: 300px; }
.stage--1 { grid-area: 1/1; justify-self: end; text-align: right; }
.stage--2 { grid-area: 1/3; justify-self: start; text-align: left; }
.stage--3 { grid-area: 3/3; justify-self: start; text-align: left; }
.stage--4 { grid-area: 3/1; justify-self: end; text-align: right; }
.stage .num {
  font-family: var(--sans); font-weight: 400; font-size: .72rem;
  letter-spacing: .34em; color: var(--sage); display: block; margin-bottom: 14px;
}
.stage h3 {
  font-family: var(--sans); font-weight: 500; text-transform: uppercase;
  font-size: clamp(1rem,1.45vw,1.22rem); line-height: 1.06; letter-spacing: -.005em; color: var(--bone);
}
.stage .rule {
  width: 34px; height: 1px; background: var(--sage-soft);
  margin: 14px 0; display: inline-block;
}
.stage--1 .rule, .stage--4 .rule { margin-left: auto; }
.stage p { font-family: var(--serif); font-size: 1.05rem; line-height: 1.46; color: var(--bone-soft); }

.draw { stroke-dasharray: var(--len); stroke-dashoffset: var(--len); transition: stroke-dashoffset 2.4s cubic-bezier(.25,.6,.2,1) .2s; }
.cycle.in-view .draw { stroke-dashoffset: 0; }
.node { opacity: 0; transform: scale(.4); transform-origin: center center; transition: .6s; transform-box: fill-box; }
.cycle.in-view .node { opacity: 1; transform: scale(1); }
.cycle.in-view .node.n1 { transition-delay: 1.10s; }
.cycle.in-view .node.n2 { transition-delay: 1.45s; }
.cycle.in-view .node.n3 { transition-delay: 1.80s; }
.cycle.in-view .node.n4 { transition-delay: 2.15s; }

/* ---- GATHERINGS ---- */
.gatherings {
  background: var(--bone); color: var(--olive);
  padding: clamp(90px,13vh,160px) clamp(22px,5vw,72px);
  position: relative;
}
.gatherings-grid {
  max-width: 1180px; margin: 0 auto; display: grid;
  grid-template-columns: 1fr 1fr; column-gap: clamp(40px,6vw,108px); align-items: center;
}
.g-image {
  aspect-ratio: 3/4; overflow: hidden; max-width: 480px;
  justify-self: end; width: 100%; position: relative;
}
.g-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.06) brightness(.96);
  transform: scale(1.06); transition: transform 2.6s cubic-bezier(.2,.7,.2,1);
}
.gatherings.in-view .g-image img { transform: scale(1); }
.g-content { max-width: 480px; }
.g-content .eyebrow { color: var(--olive); font-size: 11px; letter-spacing: .4em; display: block; }
.g-location {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.4rem,4.4vw,3.6rem); line-height: 1; letter-spacing: -.025em;
  color: var(--olive); margin: 20px 0 16px;
}
.g-location em { font-style: italic; font-weight: 400; }
.g-date {
  font-family: var(--sans); font-size: .78rem; letter-spacing: .32em;
  text-transform: uppercase; color: var(--olive); display: block; margin-bottom: 30px;
}
.g-desc {
  font-family: var(--serif); font-size: 1.12rem; line-height: 1.5;
  color: var(--olive); margin-bottom: 42px; max-width: 42ch;
}
.g-cta {
  display: inline-flex; align-items: center; gap: 16px; font-family: var(--sans);
  text-transform: uppercase; letter-spacing: .3em; font-size: 11px; color: var(--olive);
  text-decoration: none; padding-bottom: 10px; border-bottom: 1px solid var(--olive);
  transition: gap .4s cubic-bezier(.2,.7,.2,1);
}
.g-cta svg { width: 30px; height: 10px; display: block; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.g-cta:hover { gap: 24px; }
.g-cta:hover svg { transform: translateX(6px); }

/* ---- TESTIMONIES ---- */
.testimonies {
  background: var(--olive); color: var(--bone);
  padding: clamp(100px,14vh,170px) clamp(22px,5vw,72px) clamp(110px,15vh,180px);
  position: relative; overflow: hidden;
}
.testimonies::before {
  content: ""; position: absolute; left: -26vw; top: 50%; transform: translateY(-50%);
  width: 60vw; height: 60vw; border: 1px solid rgba(171,170,112,.1);
  border-radius: 50%; pointer-events: none;
}
.testimonies-inner { max-width: 820px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.testimonies .eyebrow { color: var(--sage); font-size: 11px; letter-spacing: .42em; display: inline-block; }
.testimonies .glyph { color: var(--sage); margin: 22px auto 26px; }
.voice .quote { font-family: var(--serif); color: var(--bone); margin: 0 auto 26px; max-width: 680px; }
.voice .quote.q-lead {
  font-size: clamp(1.4rem,2.55vw,2.05rem); font-weight: 400; line-height: 1.26;
  letter-spacing: -.005em; margin-bottom: 38px;
}
.voice .quote.q-line { font-size: clamp(1.1rem,1.7vw,1.32rem); line-height: 1.42; color: var(--bone-soft); }
.voice .attribution { font-family: var(--sans); font-size: .76rem; letter-spacing: .34em; text-transform: uppercase; color: var(--sage); margin-top: 34px; }
.voices-carousel { position: relative; width: 100%; overflow: hidden; }
.voices-track { display: flex; transition: transform 1s cubic-bezier(.65,0,.2,1); will-change: transform; }
.voice.slide { flex: 0 0 100%; padding: 0 clamp(12px,3vw,40px); box-sizing: border-box; }
.voices-dots { display: flex; justify-content: center; gap: 14px; margin-top: clamp(40px,6vh,60px); }
.voices-dots .dot {
  width: 8px; height: 8px; border-radius: 50%; background: transparent;
  border: 1px solid var(--sage-soft); padding: 0; cursor: pointer;
  transition: background .35s, border-color .35s;
}
.voices-dots .dot.active { background: var(--sage); border-color: var(--sage); }

/* ---- PREVIOUS GATHERINGS ---- */
.previous-gatherings {
  background: var(--bone); color: var(--olive);
  padding: clamp(90px,13vh,160px) clamp(22px,5vw,72px) clamp(110px,15vh,180px);
  position: relative;
}
.prev-inner { max-width: 1180px; margin: 0 auto; }
.prev-head { text-align: center; margin-bottom: clamp(60px,9vh,100px); }
.prev-head .eyebrow { color: var(--olive); font-size: 11px; letter-spacing: .42em; display: inline-block; }
.prev-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.4rem,5.2vw,4rem); line-height: 1; letter-spacing: -.02em;
  color: var(--olive); margin-top: 22px;
}
.prev-title em { font-style: italic; }
.prev-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: clamp(50px,7vh,80px) clamp(16px,2.4vw,32px);
}
.prev-item { display: flex; flex-direction: column; }
.prev-image { width: 100%; aspect-ratio: 4/5; overflow: hidden; background: #2a241b; }
.prev-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.04);
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.prev-item:hover .prev-image img { transform: scale(1.04); }
.prev-meta { padding-top: 14px; }
.prev-num { font-family: var(--sans); font-size: 10px; letter-spacing: .34em; text-transform: uppercase; color: var(--olive); opacity: .55; display: block; margin-bottom: 8px; }
.prev-loc { font-family: var(--sans); font-weight: 500; text-transform: uppercase; font-size: clamp(.95rem,1.2vw,1.05rem); line-height: 1.15; letter-spacing: -.005em; color: var(--olive); margin-bottom: 6px; }
.prev-date { font-family: var(--serif); font-size: .95rem; color: var(--olive); opacity: .75; }

/* ---- CONTACT ---- */
.contact {
  background: var(--bone); color: var(--olive);
  padding: clamp(90px,13vh,160px) clamp(22px,5vw,72px) clamp(110px,15vh,180px);
  position: relative; overflow: hidden;
}
.contact::after {
  content: ""; position: absolute; right: -30vw; bottom: -30vw;
  width: 60vw; height: 60vw; border: 1px solid rgba(71,62,15,.1);
  border-radius: 50%; pointer-events: none;
}
.contact-inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.contact .eyebrow { color: var(--olive); font-size: 11px; letter-spacing: .42em; display: inline-block; }
.contact .glyph { color: var(--olive); margin: 22px auto 26px; }
.contact-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.2rem,4.4vw,3.4rem); line-height: 1.02; letter-spacing: -.02em;
  color: var(--olive); margin-bottom: 22px;
}
.contact-title em { font-style: italic; }
.contact-desc {
  font-family: var(--serif); font-size: clamp(1.1rem,1.6vw,1.3rem); line-height: 1.45;
  color: var(--olive); max-width: 48ch; margin: 0 auto clamp(50px,8vh,80px);
}
.contact-form { text-align: left; display: flex; flex-direction: column; gap: 34px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.contact-form label { display: block; }
.contact-form .label {
  display: block; font-family: var(--sans); font-size: 10px; letter-spacing: .38em;
  text-transform: uppercase; color: var(--olive); opacity: .65; margin-bottom: 12px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(71,62,15,.4);
  font-family: var(--serif); font-size: 1.08rem; color: var(--olive);
  padding: 8px 0; outline: none; transition: border-color .35s; border-radius: 0;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-bottom-color: var(--olive); }
.contact-form textarea { resize: vertical; min-height: 80px; font-family: var(--serif); }
.contact-form select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23473e0f' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 4px center; padding-right: 24px;
}
.contact-submit {
  align-self: flex-start; margin-top: 18px; display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--sans); text-transform: uppercase; letter-spacing: .3em; font-size: 11px;
  color: var(--olive); background: transparent; border: none; border-bottom: 1px solid var(--olive);
  padding: 12px 0 10px; cursor: pointer; transition: gap .4s cubic-bezier(.2,.7,.2,1);
}
.contact-submit svg { width: 30px; height: 10px; display: block; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.contact-submit:hover { gap: 24px; }
.contact-submit:hover svg { transform: translateX(6px); }
.contact-meta {
  margin-top: clamp(60px,9vh,90px); font-family: var(--sans); font-size: .78rem;
  letter-spacing: .28em; text-transform: uppercase; color: var(--olive); opacity: .65;
}
.form-success {
  display: none; text-align: center; padding: 60px 0;
  font-family: var(--serif); font-size: 1.32rem; color: var(--olive); font-style: italic;
}
.form-success.show { display: block; animation: tabFade .6s ease both; }

/* ---- HERO SOUND ---- */
.hero-sound-wrap {
  display: flex; justify-content: center;
  padding-top: clamp(4px,0.6vh,8px);
  position: relative; z-index: 2;
  opacity: 0; animation: logoIn 1s cubic-bezier(.2,.7,.2,1) .6s forwards;
}
.hero-sound {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; border: 1px solid rgba(239,236,223,.35);
  border-radius: 20px; padding: 7px 14px 7px 10px;
  cursor: pointer; color: var(--bone);
  font-family: var(--sans); font-size: 10px; letter-spacing: .32em; text-transform: uppercase;
  transition: border-color .3s;
}
.hero-sound:hover { border-color: rgba(239,236,223,.75); }
.hero-sound svg { width: 14px; height: 14px; display: block; flex-shrink: 0; }
.hero-sound-label { line-height: 1; }

/* ---- HERO CTA ---- */
.hero-cta {
  display: flex; flex-direction: column; align-items: center;
  gap: 22px; padding: clamp(20px,3vh,36px) 0 clamp(10px,2vh,20px);
  position: relative; z-index: 2;
  opacity: 0; animation: logoIn 1.4s cubic-bezier(.2,.7,.2,1) .8s forwards;
}
.hero-cta .eyebrow { color: var(--sage); font-size: 12px; letter-spacing: .48em; }
.hero-register-btn {
  display: inline-flex; align-items: center; gap: 20px;
  font-family: var(--sans); text-transform: uppercase; letter-spacing: .36em; font-size: 13px;
  color: var(--bone); background: transparent; border: 0;
  border-bottom: 1px solid rgba(239,236,223,.6); padding: 14px 0 12px; cursor: pointer;
  transition: gap .4s cubic-bezier(.2,.7,.2,1), border-color .3s;
}
.hero-register-btn:hover { gap: 28px; border-bottom-color: var(--bone); }
.hero-register-btn svg { width: 34px; height: 10px; display: block; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.hero-register-btn:hover svg { transform: translateX(7px); }

/* ---- REGISTRATION MODAL ---- */
.reg-modal {
  position: fixed; inset: 0; z-index: 60;
  display: flex; align-items: flex-start; overflow-y: auto;
  opacity: 0; pointer-events: none;
  transition: opacity .45s cubic-bezier(.2,.7,.2,1);
}
.reg-modal.open { opacity: 1; pointer-events: auto; }
.reg-backdrop {
  position: fixed; inset: 0;
  background: rgba(58,50,9,.9); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.reg-panel {
  position: relative; z-index: 1;
  background: var(--bone); color: var(--olive);
  width: min(760px, calc(100% - 40px));
  margin: clamp(16px,3vh,40px) auto;
  transform: translateY(18px);
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.reg-modal.open .reg-panel { transform: translateY(0); }
.reg-close {
  position: absolute; top: 24px; right: 24px;
  width: 30px; height: 30px; background: transparent; border: 0;
  padding: 0; cursor: pointer; display: flex; flex-direction: column;
  justify-content: center; gap: 7px; outline: none;
}
.reg-close .bar {
  display: block; width: 22px; height: 1px; background: var(--olive);
  transform-origin: center center;
}
.reg-close .bar:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.reg-close .bar:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
.reg-inner {
  padding: clamp(60px,8vh,90px) clamp(30px,6vw,72px) clamp(50px,7vh,80px);
}
.reg-inner .eyebrow { color: var(--olive); display: inline-block; }
.reg-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2rem,4vw,3rem); line-height: 1.02; letter-spacing: -.02em;
  color: var(--olive); margin: 14px 0 18px;
}
.reg-title em { font-style: italic; }
.reg-desc {
  font-family: var(--serif); font-size: clamp(1.05rem,1.5vw,1.18rem); line-height: 1.5;
  color: var(--olive); max-width: 52ch; margin-bottom: clamp(40px,6vh,60px);
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--olive); color: var(--bone);
  border-top: 1px solid rgba(171,170,112,.15);
  padding: clamp(64px,9vh,96px) clamp(22px,5vw,72px) clamp(28px,4vh,40px);
  position: relative;
}
.footer-inner { max-width: 1180px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: start;
  gap: clamp(40px,6vw,100px);
  padding-bottom: clamp(48px,7vh,72px);
  border-bottom: 1px solid rgba(171,170,112,.18);
  margin-bottom: 28px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-mark { display: block; width: 130px; height: auto; }
.footer-tagline {
  display: block; font-family: var(--sans); font-size: .8rem;
  letter-spacing: .04em; font-weight: 400; color: var(--sage-soft);
}
.footer-nav {
  display: flex; gap: clamp(50px,6vw,96px);
  justify-self: end;
}
.footer-col {
  display: flex; flex-direction: column; gap: 12px;
}
.footer-col-label {
  font-family: var(--sans); font-size: 10px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--sage-soft); margin-bottom: 4px;
}
.footer-col a {
  font-family: var(--serif); font-size: .98rem; color: var(--bone);
  text-decoration: none; opacity: .8; transition: opacity .3s;
}
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-family: var(--sans); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--sage-soft);
}
.footer-dot { margin: 0 10px; opacity: .5; }
.footer-admin-link {
  color: var(--sage-soft);
  font-family: var(--sans); font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  text-decoration: none; opacity: .8; transition: opacity .3s, color .3s;
}
.footer-admin-link:hover { opacity: 1; color: var(--bone); }

/* ---- RESPONSIVE ---- */
@media (max-width: 880px) {
  .topnav { padding: 16px 22px; }
  .nav-toggle { display: flex; }
  .topnav .links {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--olive);
    flex-direction: column; gap: 0; padding: 6px 22px 24px;
    border-bottom: 1px solid rgba(171,170,112,.18);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform .35s, opacity .25s; z-index: 39;
  }
  .topnav .links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .topnav .links a {
    padding: 18px 0; font-size: 12px; letter-spacing: .32em;
    border-bottom: 1px solid rgba(171,170,112,.1); display: block; width: 100%;
  }
  .topnav .links a:last-child { border-bottom: 0; }
  .topnav .links a::after { display: none; }

  .hero { padding: 60px 18px 70px; }
  .hero-photo { width: 72vw; }

  .mission { padding: 60px 22px 70px; }

  .home-pillars { padding: 80px 22px 90px; }
  .pillars-title { font-size: clamp(1.8rem,8vw,2.6rem); }
  .pillars-meta { flex-direction: column; gap: 14px; align-items: center; text-align: center; }
  .pillars-meta > div:last-child { text-align: center; }

  .home-letter { padding: 80px 22px 90px; }
  .letter-title { font-size: clamp(2rem,9vw,2.8rem); }
  .letter-image { max-width: none; aspect-ratio: 16/10; margin: 30px 0; }
  .letter-text { grid-template-columns: 1fr; gap: 22px; }
  .letter-text p { text-indent: 0; }

  .experience { padding: 80px 22px 90px; }
  .exp-grid { grid-template-columns: 1fr; row-gap: 54px; }
  .exp-cultural, .exp-small, .exp-roots { grid-area: auto/1; margin-top: 0; max-width: none; align-self: auto; }
  .exp-cultural .body { columns: 1; max-width: none; }
  .exp-small .body, .exp-roots .body { max-width: none; }

  .cycle { padding: 80px 22px 90px; }
  .stage-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .spiral-cell { grid-area: auto/1; margin-bottom: 40px; }
  #cycle-svg { max-width: 300px; }
  .stage {
    max-width: none; padding: 24px 0; border-top: 1px solid rgba(171,170,112,.16);
    text-align: left !important; justify-self: stretch !important; grid-area: auto/1 !important;
  }
  .stage--1 { order: 1; } .stage--2 { order: 2; } .stage--3 { order: 3; } .stage--4 { order: 4; }
  .stage .rule { margin: 12px 0 !important; }
  .cycle::before { display: none; }

  .gatherings { padding: 70px 22px 80px; }
  .gatherings-grid { grid-template-columns: 1fr; row-gap: 40px; }
  .g-image { justify-self: center; width: 100%; max-width: none; }
  .g-content { max-width: none; }

  .testimonies { padding: 70px 22px 80px; }
  .testimonies::before { display: none; }

  .previous-gatherings { padding: 70px 22px 80px; }
  .prev-grid { grid-template-columns: 1fr; row-gap: 42px; }
  .prev-title { font-size: clamp(1.9rem,9vw,2.6rem); }

  .contact { padding: 70px 22px 80px; }
  .contact-form .form-row { grid-template-columns: 1fr; gap: 30px; }
  .contact::after { display: none; }

  .reg-inner { padding: 56px 22px 60px; }
  .reg-inner .contact-form .form-row { grid-template-columns: 1fr; gap: 28px; }

  .site-footer { padding: 60px 22px 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav { justify-self: start; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 420px) {
  .hero-photo { width: 78vw; }
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after { transition: none !important; animation: none !important; }
  .fade-up { opacity: 1; transform: none; }
  .draw { stroke-dashoffset: 0; }
  .node { opacity: 1; transform: none; }
  .g-image img { transform: none; }
  .hero-logo, .hero-photo { opacity: 1; }
  .hero-logo { transform: none; }
  .hero-photo { transform: translate(-50%,-50%); }
  .hero-cta { opacity: 1; }
  .reg-panel { transform: translateY(0); }
}
