:root {
  --ivory: #FAF9F8;
  --sand: #F2F0EF;
  --sand-2: #E7E4E3;
  --sand-3: #DBD5D5;
  --umber: #2B2627;
  --charcoal: #181415;
  --ink: #1E1B1C;
  --ink-soft: #4A4547;
  --muted: #8A8487;
  --bronze: #7A1E2D;
  --bronze-light: #B05566;
  --cream: #F2EFEF;
  --cream-soft: #A6A0A2;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, sans-serif;
}

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

html { scroll-behavior: auto; }

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

#bg3d {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

main { position: relative; z-index: 1; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.1; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1.2rem; }

.micro { font-size: 0.78rem; color: var(--muted); margin-top: 0.8rem; }

/* ---------- nav ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
  transition: color 0.5s ease, background 0.4s ease;
}
.site-nav.nav-solid {
  background: rgba(250, 249, 248, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
body.on-dark .site-nav.nav-solid {
  background: rgba(20, 17, 18, 0.6);
}
.brand {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.nav-logo {
  height: 42px;
  width: auto;
  mix-blend-mode: multiply;
}
body.on-dark .nav-logo {
  mix-blend-mode: screen;
  filter: invert(1);
}
.nav-links { display: flex; gap: 1.6rem; }
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--bronze); }
body.on-dark .brand { color: var(--cream); }
body.on-dark .nav-links a { color: var(--cream-soft); }
body.on-dark .nav-links a:hover { color: var(--bronze-light); }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.7rem;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-bronze { background: var(--bronze); color: var(--ivory); }
.btn-bronze:hover { background: #8F2A3C; box-shadow: 0 10px 30px rgba(122, 30, 45, 0.35); }
.btn-small {
  font-size: 0.78rem;
  padding: 0.55rem 1.2rem;
  background: transparent;
  color: var(--ink);
  border: 1px solid currentColor;
}
body.on-dark .btn-small { color: var(--cream); }

/* ---------- hero ---------- */
section { position: relative; }

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18vh 6vw 12vh;
}
.kicker {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: lowercase;
  color: var(--muted);
  margin-bottom: 2rem;
}
.hero-title {
  font-size: clamp(3.2rem, 10vw, 7.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
}
.hero-title .line { display: inline-block; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 34em;
  margin-bottom: 2.4rem;
}
.scroll-hint {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.scroll-hint .chev { animation: hint 1.8s ease-in-out infinite; font-size: 1rem; }
@keyframes hint { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---------- about ---------- */
.about { padding: 16vh clamp(1.2rem, 6vw, 5rem); }
.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  max-width: 1150px;
  margin: 0 auto;
  align-items: start;
}
.about-photo {
  position: sticky;
  top: 14vh;
}
.about-photo img,
.voices-photo img,
.aside-photo img {
  width: 100%;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}
.about-photo img { aspect-ratio: 4 / 5; }
.about-photo figcaption {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.7rem;
}
.img-missing img { display: none; }
.img-missing::before {
  content: "photo slot — add file to assets/";
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  border: 1px dashed var(--muted);
  color: var(--muted);
  font-size: 0.8rem;
  padding: 1rem;
  text-align: center;
}
.about-copy { padding-top: 1rem; }
.about-copy p { color: var(--ink-soft); max-width: 38em; margin-bottom: 1.1rem; }
.stats { display: flex; flex-wrap: wrap; gap: clamp(1.4rem, 4vw, 3rem); margin-top: 2.2rem; }
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--bronze);
}
.stat-label { font-size: 0.8rem; color: var(--muted); }

/* ---------- procedures ---------- */
.procedures { overflow: hidden; }
.proc-pin {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12vh 0 12vh clamp(1.2rem, 6vw, 5rem);
}
.proc-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-right: clamp(1.2rem, 6vw, 5rem);
  margin-bottom: 3rem;
}
.proc-note { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.04em; }
.proc-track {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
  width: max-content;
}
.proc-card {
  width: clamp(260px, 28vw, 360px);
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(122, 30, 45, 0.25);
  border-radius: 18px;
  padding: 2rem;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.proc-card-next { border-style: dashed; background: transparent; }
.proc-card:hover {
  transform: translateY(-8px);
  border-color: var(--bronze);
  background: rgba(255, 255, 255, 0.85);
}
.proc-num { font-size: 0.8rem; color: var(--bronze); letter-spacing: 0.12em; }
.proc-card h3 { font-size: 1.9rem; margin: 0.6rem 0 0.8rem; }
.proc-card p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 1.6rem; }
.proc-link { font-size: 0.82rem; font-weight: 500; color: var(--bronze); }

/* ---------- results ---------- */
.results { padding: 16vh clamp(1.2rem, 6vw, 5rem); }
.results-inner { max-width: 900px; margin: 0 auto; }
.results-sub { color: var(--ink-soft); margin-bottom: 2rem; }
.ba {
  position: relative;
  aspect-ratio: 1320 / 1464;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #BAB3B5;
  touch-action: none;
  user-select: none;
}
.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-after {
  left: auto;
  right: 0;
  width: 50%;
  background: #F6EEDC;
  border-left: 2px solid var(--bronze);
  overflow: hidden;
}
.ba-label {
  position: absolute;
  top: 1rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
}
.ba-before .ba-label { left: 1.2rem; color: #5F595B; }
.ba-after .ba-label { right: 1.2rem; color: var(--bronze); }
.ba-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin: 0.4rem 0 1.2rem;
}
.ba-title { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); }
.ba-note { font-size: 0.84rem; color: var(--muted); margin-top: 0.2rem; }
.ba-nav { display: flex; align-items: center; gap: 0.8rem; }
.ba-nav span { font-size: 0.8rem; letter-spacing: 0.1em; color: var(--muted); }
.ba-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--bronze);
  background: transparent;
  color: var(--bronze);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.ba-nav button:hover { background: var(--bronze); color: var(--ivory); }
.ba-fig {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-fig svg { height: 88%; }
.ba-fig path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
}
.ba-fig .fig-decor { opacity: 0.45; stroke-width: 2.2; }
.fig-before { color: #5F595B; }
.fig-after { color: var(--bronze); }
.ba-img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  aspect-ratio: 1320 / 1464;
  object-fit: cover;
}
.ba .ba-label {
  background: rgba(18, 15, 16, 0.6);
  color: var(--cream);
  padding: 4px 12px;
  border-radius: 999px;
}
.ba-handle {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bronze);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  border: none;
}

/* ---------- OR band ---------- */
.or-band {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #100D0E;
}
.or-bg {
  position: absolute;
  inset: -14% -2%;
  background-image: url("../assets/or-bw.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  filter: blur(5px) brightness(0.9);
}
.or-band blockquote {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  color: var(--cream);
  max-width: 22em;
  text-align: center;
  padding: 0 6vw;
}

/* ---------- voices ---------- */
.voices { padding: 16vh clamp(1.2rem, 6vw, 5rem) 10vh; color: var(--cream); }
.voices-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  max-width: 1150px;
  margin: 0 auto;
  align-items: center;
}
.voices h2 { color: var(--cream); }
.voices blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: #D7D2D4;
  border-left: 2px solid var(--bronze);
  padding-left: 1.2rem;
  margin: 1.6rem 0;
  line-height: 1.5;
}
.voices cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  color: var(--cream-soft);
  margin-top: 0.5rem;
}
.voices-photo img { aspect-ratio: 4 / 5; }
.voices .img-missing::before { border-color: var(--cream-soft); color: var(--cream-soft); }
.ig-row { max-width: 1150px; margin: 6rem auto 0; }
.ig-label { font-size: 0.8rem; letter-spacing: 0.1em; color: var(--cream-soft); margin-bottom: 1rem; }
.ig-marquee { overflow: hidden; }
.ig-strip {
  display: flex;
  gap: 0.9rem;
  width: max-content;
  animation: igslide 22s linear infinite;
}
.ig-marquee:hover .ig-strip { animation-play-state: paused; }
@keyframes igslide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ig-tile {
  width: 84px;
  height: 84px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(176, 85, 102, 0.35);
  color: var(--bronze-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}
.ig-tile:hover { background: rgba(176, 85, 102, 0.18); transform: translateY(-4px); }

/* ---------- contact ---------- */
.contact { padding: 16vh clamp(1.2rem, 6vw, 5rem) 0; color: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  max-width: 1150px;
  margin: 0 auto;
  align-items: start;
}
.contact h2 { color: var(--cream); }
.contact-sub { color: var(--cream-soft); margin-bottom: 1.8rem; }
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.6rem; }
.chip {
  font-family: var(--sans);
  font-size: 0.84rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid #524C4E;
  background: transparent;
  color: #D7D2D4;
  cursor: pointer;
  transition: all 0.25s ease;
}
.chip:hover { border-color: var(--bronze-light); }
.chip.on { background: var(--bronze); border-color: var(--bronze); color: var(--ivory); }
.form-row { display: flex; gap: 0.8rem; margin-bottom: 0.8rem; }
.contact input, .contact textarea {
  font-family: var(--sans);
  font-size: 0.92rem;
  width: 100%;
  background: #242122;
  border: 1px solid #433E40;
  border-radius: 10px;
  color: var(--cream);
  padding: 0.85rem 1rem;
  transition: border-color 0.25s;
}
.contact input { flex: 1; }
.contact textarea { resize: vertical; margin-bottom: 1.1rem; }
.contact input:focus, .contact textarea:focus {
  outline: none;
  border-color: var(--bronze-light);
}
.contact input::placeholder, .contact textarea::placeholder { color: #8E8789; }
.contact .micro { color: #8E8789; }
.aside-photo img { aspect-ratio: 4 / 5; }
.contact .img-missing::before { border-color: #8E8789; color: #8E8789; }
.aside-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream-soft);
  text-align: center;
  margin-top: 1rem;
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1150px;
  margin: 7rem auto 0;
  padding: 1.6rem 0 2rem;
  border-top: 1px solid #383334;
  font-size: 0.78rem;
  color: #8E8789;
}
.socials { display: flex; gap: 1.1rem; }
.socials a { color: var(--bronze-light); transition: color 0.25s, transform 0.25s; display: inline-flex; }
.socials a:hover { color: var(--cream); transform: translateY(-2px); }

/* ---------- currently band ---------- */
.current-band { padding: 8vh clamp(1.2rem, 6vw, 5rem); }
.cb-inner {
  max-width: 1150px;
  margin: 0 auto;
  border-top: 1px solid rgba(122, 30, 45, 0.35);
  border-bottom: 1px solid rgba(122, 30, 45, 0.35);
  padding: 2.4rem 0;
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}
.cb-items {
  list-style: none;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
}
.cb-items li {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
}
.cb-items li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bronze-light);
  margin-right: 0.7rem;
  vertical-align: 3px;
}
.currently-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  white-space: nowrap;
}
.currently-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6F9456;
  animation: livepulse 2s ease-in-out infinite;
}
@keyframes livepulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ---------- video grid ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-top: 1.6rem;
}
.video-tile {
  aspect-ratio: 9 / 12;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(176, 85, 102, 0.35);
  color: var(--bronze-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.9rem;
  text-align: center;
  text-decoration: none;
  font-size: 0.76rem;
  line-height: 1.4;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}
.video-tile:hover {
  background: rgba(176, 85, 102, 0.16);
  border-color: var(--bronze-light);
  transform: translateY(-4px);
}
.video-tile span { color: var(--cream-soft); }

.video-tile { position: relative; overflow: hidden; }
.vt-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-tile svg, .video-tile span { position: relative; z-index: 1; }
.video-tile.has-img { color: var(--cream); }
.video-tile.has-img svg { filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.6)); }
.video-tile.has-img span { display: none; }
.video-tile.has-img:hover .vt-img { transform: scale(1.05); }

.proc-card { overflow: hidden; position: relative; }
.chapter-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(14px) saturate(0.9);
  transform: scale(1.15);
  transition: filter 0.6s ease, transform 0.6s ease;
}
.proc-card.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(248, 247, 246, 0.9);
  transition: background 0.6s ease;
}
.proc-card.has-photo .proc-num,
.proc-card.has-photo h3,
.proc-card.has-photo p {
  position: relative;
  z-index: 1;
  transition: color 0.5s ease;
}
.proc-card.has-photo:hover .chapter-img { filter: blur(0) saturate(1); transform: scale(1.03); }
.proc-card.has-photo:hover::after { background: rgba(18, 15, 16, 0.5); }
.proc-card.has-photo:hover .proc-num { color: var(--bronze-light); }
.proc-card.has-photo:hover h3 { color: var(--cream); }
.proc-card.has-photo:hover p { color: rgba(243, 237, 228, 0.92); }

/* ---------- newsletter ---------- */
.newsletter {
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid #383334;
}
.nl-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--cream);
}
.nl-sub { font-size: 0.82rem; color: #8E8789; margin: 0.2rem 0 0.9rem; }
.nl-row { display: flex; gap: 0.7rem; }
.nl-row input { flex: 1; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .about-grid, .voices-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-photo { position: static; max-width: 320px; margin: 0 auto; }
  .voices-photo { max-width: 320px; margin: 0 auto; }
  .contact-aside { max-width: 320px; margin: 0 auto; }
  .proc-track {
    width: auto;
    overflow-x: auto;
    padding-bottom: 1rem;
    padding-right: 1.2rem;
    scroll-snap-type: x mandatory;
  }
  .proc-card { scroll-snap-align: start; }
  .proc-pin { min-height: auto; padding-top: 14vh; padding-bottom: 14vh; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .nl-row { flex-direction: column; }
  .cb-inner { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .cb-items { flex-direction: column; gap: 0.8rem; }
  .ba-head { flex-direction: column; align-items: flex-start; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .scroll-hint .chev, .ig-strip { animation: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
