/* ─────────────────────────────────────
   CALLED · I AM WOMAN 2026
   Editorial + Retro-telephone aesthetic
   ───────────────────────────────────── */

@font-face {
  font-family: "Bethany Elingston";
  src: url("fonts/Bethany%20Elingston.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aldyn Heart";
  src: url("fonts/Aldyn%20Heart.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* palette */
  --ink: #1c1411;
  --ink-2: #2a1e1a;
  --bone: #ede3d2;
  --bone-2: #f5ecdb;
  --paper: #e8dcc6;
  --blood: #970e16;
  --blood-d: #6f1a20;
  --ember: #970e16;
  --coral: #edb59e;
  --coral-d: #d4866a;
  --rust: #6f2820;
  --gold: #b58a4c;
  --sage: #8b927d;

  /* type */
  --f-script: "Bethany Elingston", "Allura", cursive;
  --f-caps: "Aldyn Heart", "Italiana", serif;
  --f-serif: "Fraunces", "Fraunces VF", serif;
  --f-sans: "Archivo", system-ui, sans-serif;

  /* geom */
  --max: 1440px;
  --gutter: clamp(20px, 3vw, 48px);
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  background: var(--bone);
  color: var(--ink);
}
body {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}

/* ─────────── vignette ─────────── */
.grain {
  display: none;
}

.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(28, 20, 17, 0.35) 100%);
}

/* ─────────── side rail ─────────── */
.rail {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  z-index: 50;
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
}
.rail-mark--vertical {
  writing-mode: vertical-rl;
  letter-spacing: 0.5em;
}
@media (max-width: 900px) {
  .rail {
    display: none;
  }
}

/* ─────────── navigation ─────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  z-index: 100;
  mix-blend-mode: difference;
  color: var(--bone);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.nav-logo-script {
  font-family: var(--f-script);
  font-size: 40px;
  line-height: 0.7;
  transform: translateY(2px);
}
.nav-logo-sub {
  font-family: var(--f-sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  transition: opacity 0.3s;
}
.nav-links a span {
  opacity: 0.6;
  margin: 0 2px;
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
}
.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 100px;
  transition:
    background 0.3s,
    color 0.3s;
}
.nav-cta:hover {
  background: var(--bone);
  color: var(--ink);
}
.nav-cta .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 0 var(--ember);
  animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(151, 14, 22, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(151, 14, 22, 0);
  }
}
/* hamburger toggle */
.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 100px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 210;
}
.nav-toggle-bar {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  transition:
    transform 0.35s cubic-bezier(0.77, 0, 0.18, 1),
    opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child {
  transform: translateY(3.25px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

/* when mobile menu open, lift nav above overlay and kill blend mode so icon stays visible */
body.menu-open .nav {
  mix-blend-mode: normal;
  color: var(--ink);
  z-index: 200;
}
body.menu-open .nav-toggle {
  border-color: var(--ink);
}
body.menu-open {
  overflow: hidden;
}

/* ─────────── MOBILE MENU ─────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--bone);
  color: var(--ink);
  padding: 96px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition:
    opacity 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(151, 14, 22, 0.18), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(181, 138, 76, 0.12), transparent 55%),
    linear-gradient(180deg, var(--bone) 0%, var(--paper) 100%);
  z-index: -1;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-inner {
  max-width: 720px;
  width: 100%;
  margin: auto 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(28, 20, 17, 0.15);
}
.mobile-menu-links a {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(28, 20, 17, 0.15);
  color: var(--ink);
  text-decoration: none;
  transition:
    padding 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    color 0.3s;
}
.mobile-menu-links a:hover,
.mobile-menu-links a:active {
  padding-left: 16px;
  color: var(--blood);
}
.mm-num {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--blood);
  opacity: 0.75;
  min-width: 28px;
}
.mm-label {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 7vw, 48px);
  line-height: 1;
  letter-spacing: -0.02em;
  flex: 1;
}

.mobile-menu-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(28, 20, 17, 0.15);
}
.mm-meta-label {
  display: block;
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blood);
  margin-bottom: 6px;
}
.mm-meta-value {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink);
  opacity: 0.75;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu {
    transition: none;
  }
}

/* ─────────── HERO ─────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px var(--gutter) 80px;
  background: var(--bone);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 28% center;
  z-index: 0;
}
.hero--solo {
  min-height: 0;
  padding: 0;
  display: block;
  background: var(--bone);
  overflow: hidden;
}
.hero--solo .hero-img {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 720px) {
  .hero--solo .hero-img {
    aspect-ratio: 842 / 1249;
  }
}
.hero-img-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      transparent 45%,
      rgba(237, 227, 210, 0.55) 70%,
      rgba(237, 227, 210, 0.82) 100%
    ),
    radial-gradient(ellipse at 90% 40%, rgba(237, 227, 210, 0.6) 0%, transparent 55%);
}
@media (max-width: 900px) {
  .hero-img {
    object-position: 35% 30%;
  }
  .hero-img-fade {
    background: linear-gradient(
      180deg,
      rgba(237, 227, 210, 0.92) 0%,
      rgba(237, 227, 210, 0.5) 28%,
      transparent 55%
    );
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  justify-self: end;
  background: rgba(237, 227, 210, 0.75);
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 3;
}
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 0 rgba(151, 14, 22, 0.6);
  animation: pulseDot 1.8s infinite;
}
.pulse--dark {
  background: var(--blood);
}

.hero-type {
  position: relative;
  z-index: 3;
  margin-top: 24px;
  margin-left: auto;
  width: 100%;
  max-width: 720px;
  padding-right: clamp(48px, 9vw, 160px);
  text-align: right;
  align-self: center;
}
@media (min-width: 900px) {
  .hero-type {
    max-width: 58%;
  }
}
.hero-title {
  font-weight: normal;
  line-height: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(28px, 4vw, 56px);
}

.hero-host,
.hero-host.reveal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.hero-host-label {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--blood);
  opacity: 0.85;
}
.hero-host-name {
  font-family: var(--f-script);
  font-size: clamp(22px, 3vw, 40px);
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
  text-transform: uppercase;
}

.hero-line {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: flex-end;
  gap: clamp(12px, 1.5vw, 24px);
  width: 100%;
  line-height: 1;
}

.hero-script {
  font-family: var(--f-caps);
  font-size: clamp(110px, 14vw, 220px);
  color: var(--blood);
  line-height: 1;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

.hero-year {
  display: inline-block;
  font-family: var(--f-sans);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.hero-year-num {
  font-family: var(--f-script);
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: normal;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1;
  display: inline-block;
  transform: translateY(-0.23em);
}
.hero-year-line {
  flex: 1;
  height: 1px;
  background: var(--ink);
  opacity: 0.4;
}

@media (max-width: 900px) {
  .hero {
    grid-template-rows: 1fr auto;
  }
  .hero-type {
    margin: 0;
    padding: 0 var(--gutter);
    max-width: 100%;
    width: 100%;
    text-align: center;
    justify-self: center;
    align-self: center;
  }
  .hero-title {
    align-items: center;
    gap: clamp(20px, 5vw, 40px);
  }
  .hero-host,
  .hero-host.reveal {
    flex-direction: column;
    align-items: center;
  }
  .hero-line {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 2.5vw, 20px);
    width: 100%;
  }
  .hero-host-label {
    font-size: 12px;
  }
  .hero-host-name {
    font-size: clamp(34px, 9vw, 60px);
  }
  .hero-script {
    font-size: clamp(150px, 38vw, 280px);
    text-align: center;
  }
  .hero-year {
    max-width: 100%;
  }
  .hero-year-num {
    font-size: clamp(72px, 14vw, 120px);
    color: var(--blood);
    transform: none;
  }
}

/* phone illustration */
.hero-phone {
  position: absolute;
  top: 8%;
  right: -6%;
  width: clamp(320px, 42vw, 620px);
  z-index: 1;
  animation: phoneFloat 7s ease-in-out infinite;
  filter: drop-shadow(0 30px 40px rgba(28, 20, 17, 0.3));
}
.hero-phone svg {
  width: 100%;
  height: auto;
}
.hero-phone .phone-handset {
  transform-origin: 300px 310px;
  animation: phoneRing 3.2s ease-in-out infinite;
}
.hero-phone .phone-rings .ring {
  transform-origin: 300px 495px;
  animation: ringOut 2s ease-out infinite;
}
.hero-phone .ring-1 {
  animation-delay: 0s;
}
.hero-phone .ring-2 {
  animation-delay: 0.5s;
}
.hero-phone .ring-3 {
  animation-delay: 1s;
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}
@keyframes phoneRing {
  0%,
  85%,
  100% {
    transform: rotate(0deg);
  }
  88% {
    transform: rotate(-5deg);
  }
  91% {
    transform: rotate(5deg);
  }
  94% {
    transform: rotate(-3deg);
  }
  97% {
    transform: rotate(3deg);
  }
}
@keyframes ringOut {
  0% {
    opacity: 0.7;
    transform: scale(0.6);
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

.hero-footer {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 16px;
  margin-top: 40px;
  padding: 0;
  position: relative;
  z-index: 3;
  background: transparent;
  border-top: none;
}
@media (max-width: 900px) {
  .hero-footer {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 16px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: rgba(237, 227, 210, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 4px;
  border: 1px solid rgba(28, 20, 17, 0.08);
}
.hero-meta-label {
  opacity: 0.6;
}
.hero-meta-value {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--blood);
}
.hero-meta-date {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 2px;
}
.hero-meta--right {
  text-align: right;
}

/* reveal */
.reveal {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="1"] {
  transition-delay: 0.1s;
}
[data-reveal="2"] {
  transition-delay: 0.35s;
}
[data-reveal="3"] {
  transition-delay: 0.5s;
}
[data-reveal="4"] {
  transition-delay: 0.65s;
}

/* ─────────── MARQUEE ─────────── */
.marquee {
  background: var(--ink);
  color: var(--bone);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid var(--ink-2);
  border-bottom: 1px solid var(--ink-2);
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  font-family: var(--f-caps);
  font-size: clamp(40px, 6vw, 90px);
  line-height: 1;
  animation: scroll-x 40s linear infinite;
}
.marquee-track span {
  letter-spacing: -0.01em;
}
.marquee-track i {
  font-style: normal;
  color: var(--blood);
  transform: translateY(5px);
  font-size: 0.7em;
}
@keyframes scroll-x {
  to {
    transform: translateX(-50%);
  }
}

/* ─────────── INTRO — The Called Times newspaper ─────────── */
.intro {
  background: var(--bone-2);
  color: var(--ink);
  padding: 64px var(--gutter) 88px;
  position: relative;
  border-top: 6px solid var(--ink);
  border-bottom: 1px solid rgba(28, 20, 17, 0.2);
}
.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.2  0 0 0 0 0.15  0 0 0 0 0.1  0 0 0 0.5 0'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");
  opacity: 0.08;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.intro-head {
  max-width: var(--max);
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
}
.intro-masthead {
  font-family: var(--f-script);
  font-size: clamp(40px, 6vw, 90px);
  font-weight: normal;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.82;
}
.intro-masthead em {
  font-family: var(--f-caps);
  font-style: normal;
  font-size: 0.88em;
  color: var(--blood);
  margin-left: 0.1em;
  text-transform: none;
}
.intro-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
}
@media (max-width: 800px) {
  .intro-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.intro-eyebrow {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blood);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  align-self: start;
  white-space: nowrap;
  margin: 0;
}
.intro-eyebrow span {
  font-family: var(--f-caps);
  font-size: 26px;
  color: var(--ink);
  margin-right: 8px;
  letter-spacing: 0;
  font-style: normal;
}
@media (max-width: 800px) {
  .intro-eyebrow {
    writing-mode: horizontal-tb;
    transform: none;
  }
}
.intro-copy {
  font-family: var(--f-serif);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.55;
  font-weight: 300;
  letter-spacing: -0.005em;
  color: var(--ink);
  column-count: 2;
  column-gap: 40px;
  column-rule: 1px solid rgba(28, 20, 17, 0.18);
}
@media (max-width: 800px) {
  .intro-copy {
    column-count: 1;
  }
}
.intro-copy::first-letter {
  font-family: var(--f-caps);
  font-size: 5.8em;
  float: left;
  line-height: 0.82;
  padding: 6px 12px 0 0;
  color: var(--blood);
  font-weight: normal;
}
.intro-copy em {
  font-style: italic;
  color: var(--blood);
}
.intro-copy strong {
  font-weight: 500;
  color: var(--ink);
}

.intro-scribble {
  position: relative;
  display: inline-block;
  color: var(--ink);
  font-weight: 500;
}
.intro-scribble::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 45%;
  height: 52%;
  background: repeating-linear-gradient(-6deg, var(--blood) 0 2px, transparent 2px 5px);
  transform: rotate(-1.5deg);
  z-index: -1;
  opacity: 0.82;
  pointer-events: none;
}

.intro-rule {
  max-width: var(--max);
  margin: 56px auto 0;
  border: none;
  border-top: 1px solid var(--ink);
}

.intro-byline {
  max-width: var(--max);
  margin: 56px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(28, 20, 17, 0.25);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
}

/* ─────────── VIDEO ─────────── */
.video {
  padding: 120px var(--gutter) 48px;
  max-width: var(--max);
  margin: 0 auto;
}
.video-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}
.video-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
}
.video-title {
  font-family: var(--f-script);
  font-size: clamp(40px, 6vw, 90px);
  line-height: 0.82;
  font-weight: normal;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.video-title em {
  font-family: var(--f-caps);
  font-style: normal;
  font-size: 0.88em;
  color: var(--blood);
  margin-left: 0.1em;
  text-transform: none;
}

.video-player {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  padding: 0;
  background: var(--ink);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 30px 60px -20px rgba(28, 20, 17, 0.4);
  transition:
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.5s;
}
.video-player:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 70px -20px rgba(28, 20, 17, 0.5);
}
.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) contrast(1.05) brightness(0.85);
  transition: filter 0.5s;
}
.video-player:hover .video-thumb {
  filter: grayscale(0) contrast(1.05) brightness(0.95);
}
.video-player::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 20, 17, 0.1) 0%, rgba(28, 20, 17, 0.5) 100%);
  pointer-events: none;
}
.video-frame-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 12px;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  font-weight: 700;
  z-index: 2;
}
.video-frame-tag--br {
  top: auto;
  left: auto;
  bottom: 18px;
  right: 18px;
  background: var(--blood);
  color: var(--bone);
  font-variant-numeric: tabular-nums;
}
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--bone);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.video-player:hover .video-play {
  transform: translate(-50%, -50%) scale(1.08);
}
.video-play svg {
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4));
}
.video-play-label {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 14px;
  border: 1px solid currentColor;
  border-radius: 100px;
  background: rgba(28, 20, 17, 0.3);
  backdrop-filter: blur(6px);
}
.video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-player.is-playing .video-thumb,
.video-player.is-playing .video-frame-tag,
.video-player.is-playing .video-play,
.video-player.is-playing::after {
  display: none;
}

/* ─────────── section titles ─────────── */
.section-title {
  font-family: var(--f-caps);
  font-size: clamp(40px, 6vw, 90px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  font-weight: normal;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2vw, 32px);
}
.section-num {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blood);
  font-weight: 600;
}
.section-name {
  font-family: var(--f-script);
  font-weight: normal;
  letter-spacing: -0.01em;
  font-size: 1em;
  line-height: 0.85;
  text-transform: uppercase;
}
.section-name em {
  font-family: var(--f-caps);
  font-style: normal;
  color: var(--blood);
  font-size: 0.88em;
  letter-spacing: -0.01em;
  margin-left: 0.08em;
  text-transform: none;
}

/* ─────────── COUNTDOWN ─────────── */
.countdowns-section {
  padding: 96px var(--gutter) 0;
  max-width: var(--max);
  margin: 0 auto;
}
.countdowns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 0;
}
.cards .countdowns {
  margin: 40px 0 56px;
}
@media (max-width: 900px) {
  .countdowns {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 32px 0 56px;
  }
}
.countdown {
  padding: 18px 24px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  row-gap: 12px;
  border-top: 1px solid rgba(28, 20, 17, 0.18);
  border-bottom: 1px solid rgba(28, 20, 17, 0.18);
  flex-wrap: wrap;
}
.countdown-label,
.countdown-place {
  flex: 0 0 auto;
}
.countdown-clock {
  flex-basis: 100%;
  justify-content: flex-start;
}
.countdown-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}
.countdown-clock {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-variant-numeric: tabular-nums;
}
.countdown-unit {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.countdown-num {
  font-family: var(--f-serif);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--blood);
}
.countdown-u {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.55;
}
.countdown-sep {
  font-family: var(--f-serif);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 500;
  color: var(--blood);
  opacity: 0.55;
  animation: cdBlink 1s steps(2) infinite;
  padding: 0 2px;
}
@keyframes cdBlink {
  50% {
    opacity: 0.15;
  }
}
.countdown-place {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  opacity: 0.7;
}
@media (max-width: 800px) {
  .countdown {
    justify-content: center;
    text-align: center;
  }
  .countdown-label,
  .countdown-place {
    flex-basis: 100%;
    text-align: center;
  }
}

/* ─────────── CARDS ─────────── */
.cards {
  padding: 48px var(--gutter) 48px;
  max-width: var(--max);
  margin: 0 auto;
}
.cards-head {
  margin-bottom: 64px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards-grid--two {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 900px) {
  .cards-grid,
  .cards-grid--two {
    grid-template-columns: 1fr;
  }
}

.card {
  padding: 28px 28px 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.card:hover {
  transform: translateY(-6px);
}
.card--coral {
  background: var(--coral);
  color: var(--ink);
}
.card--ink {
  background: var(--ink);
  color: var(--bone);
}
.card--virtual {
  background: var(--blood);
  color: var(--bone);
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.75;
  padding-bottom: 16px;
  border-bottom: 1px solid currentColor;
  margin-bottom: 28px;
}

.card-title {
  font-family: var(--f-serif);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  max-width: 14ch;
  min-height: 1.9em;
}
@media (max-width: 900px) {
  .card-title {
    min-height: 0;
  }
}

.card-date {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.3;
  opacity: 0.8;
  margin: 0;
}
.card-addr {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid currentColor;
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  opacity: 0.7;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-start;
  gap: 12px;
  padding: 13px 22px;
  margin-top: auto;
  border: 1px solid currentColor;
  border-radius: 100px;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  transition:
    background 0.3s,
    color 0.3s;
}
.card--coral .card-cta:hover {
  background: var(--ink);
  color: var(--coral);
}
.card--ink .card-cta:hover {
  background: var(--coral);
  color: var(--ink);
}
.card--virtual .card-cta:hover {
  background: var(--bone);
  color: var(--blood);
}
.card-cta span {
  transition: transform 0.3s;
}
.card-cta:hover span {
  transform: translateX(4px);
}

/* ─────────── TICKETS ─────────── */
.tickets {
  padding: 56px var(--gutter) 48px;
  max-width: var(--max);
  margin: 0 auto;
}
.tickets-head {
  margin-bottom: 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.tickets-lede {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.5;
  max-width: 380px;
  opacity: 0.75;
  margin: 0;
}
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .tickets-grid {
    grid-template-columns: 1fr;
  }
}

.ticket {
  position: relative;
  padding: 36px 32px 28px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ticket:hover {
  transform: translateY(-6px);
}
.ticket--vip {
  background: var(--blood);
  color: var(--bone);
}
.ticket--premium {
  background: var(--ink);
  color: var(--bone);
}
.ticket--standard {
  background: var(--bone-2);
  color: var(--ink);
  border: 1px solid rgba(28, 20, 17, 0.12);
}
.ticket--student {
  background: var(--bone-2);
  color: var(--ink);
  border: 1px solid rgba(28, 20, 17, 0.12);
}

.ticket-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 12px;
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 100px;
  border: 1px solid currentColor;
  opacity: 0.85;
}
.ticket--vip .ticket-tag {
  background: rgba(237, 227, 210, 0.1);
}
.ticket--standard .ticket-tag {
  background: transparent;
}

.ticket-name {
  font-family: var(--f-serif);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 0;
}
.ticket-tagline {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.4;
  margin: -8px 0 4px;
  opacity: 0.85;
  max-width: 26ch;
}

.ticket-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid currentColor;
  padding-top: 24px;
}
.ticket-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--f-serif);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.45;
  font-weight: 400;
}
.ticket-list li::before {
  content: "";
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'><path d='M3.5 9.5l3.5 3.5 7.5-8' stroke='currentColor' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.85;
}
.ticket--vip .ticket-list li::before,
.ticket--premium .ticket-list li::before {
  filter: brightness(0) invert(1);
}
.ticket--standard .ticket-list li::before,
.ticket--student .ticket-list li::before {
  filter: invert(13%) sepia(93%) saturate(3247%) hue-rotate(343deg) brightness(82%) contrast(105%);
}

.ticket-cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-start;
  gap: 12px;
  margin-top: auto;
  padding: 14px 22px;
  border: 1px solid currentColor;
  border-radius: 100px;
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  color: inherit;
  transition:
    background 0.25s,
    color 0.25s;
}
.ticket--vip .ticket-cta {
  background: var(--bone);
  color: var(--blood);
  border-color: var(--bone);
}
.ticket--vip .ticket-cta:hover {
  background: transparent;
  color: var(--bone);
}
.ticket--premium .ticket-cta {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
}
.ticket--premium .ticket-cta:hover {
  background: transparent;
  color: var(--bone);
}
.ticket--standard .ticket-cta,
.ticket--student .ticket-cta {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.ticket--standard .ticket-cta:hover,
.ticket--student .ticket-cta:hover {
  background: transparent;
  color: var(--ink);
}

.ticket-note {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
  margin: 0;
  padding-top: 12px;
  border-top: 1px dashed currentColor;
}

.ticket-price {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  font-weight: 400;
  color: var(--blood);
  margin: -4px 0 0;
}
.ticket--virtual .ticket-price,
.ticket--party .ticket-price {
  color: var(--blood);
}

.ticket--virtual {
  background: var(--bone-2);
  color: var(--ink);
  border: 1px solid rgba(28, 20, 17, 0.12);
}
.ticket--party {
  background: var(--coral);
  color: var(--ink);
}

.ticket--virtual .ticket-list li::before,
.ticket--party .ticket-list li::before {
  filter: invert(13%) sepia(93%) saturate(3247%) hue-rotate(343deg) brightness(82%) contrast(105%);
}
.ticket--virtual .ticket-cta,
.ticket--party .ticket-cta {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.ticket--virtual .ticket-cta:hover,
.ticket--party .ticket-cta:hover {
  background: transparent;
  color: var(--ink);
}
.ticket-cta span {
  transition: transform 0.3s;
}
.ticket-cta:hover span {
  transform: translateX(4px);
}

/* ─────────── PULL QUOTE ─────────── */
.pullquote {
  padding: 140px var(--gutter);
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.pullquote-marks {
  font-family: var(--f-script);
  font-size: 280px;
  line-height: 0.5;
  color: var(--blood);
  opacity: 0.25;
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.pullquote blockquote {
  font-family: var(--f-serif);
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.15;
  font-weight: 300;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.pullquote blockquote em {
  font-style: italic;
  color: var(--blood);
}
.pullquote blockquote strong {
  font-weight: 400;
  font-family: var(--f-script);
  font-size: 1.15em;
  letter-spacing: 0;
  color: var(--blood);
}
.pullquote cite {
  display: block;
  margin-top: 32px;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-style: normal;
  opacity: 0.6;
}

/* ─────────── SPEAKERS ─────────── */
.speakers {
  padding: 120px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.speakers-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 56px;
}
.speakers-lede {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  max-width: 36ch;
  opacity: 0.7;
  margin: 0;
}
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) {
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .speakers-grid {
    grid-template-columns: 1fr;
  }
}

.speaker {
  display: flex;
  flex-direction: column;
  gap: 20px;
  --stagger: calc(var(--i) * 80ms);
}
.speaker-frame {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink);
}
.speaker-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) sepia(0.15);
  transform: scale(1.02);
  transition:
    filter 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.speaker:hover .speaker-frame img {
  filter: grayscale(0) contrast(1) sepia(0);
  transform: scale(1.05);
}
.speaker-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(28, 20, 17, 0.6) 100%);
  pointer-events: none;
}
.speaker-tape {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
}
.tape-chip {
  padding: 5px 10px;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
.tape-chip--virtual {
  background: var(--blood);
  color: var(--bone);
}

.speaker-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.speaker-meta h3 {
  font-family: var(--f-serif);
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.speaker-meta h3 em {
  font-family: var(--f-serif);
  font-style: normal;
  font-weight: 500;
  font-size: 1em;
  display: inline;
  color: var(--blood);
  letter-spacing: -0.02em;
  margin-left: 0.18em;
}
.speaker-role {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.65;
}

/* ─────────── GALLERY ─────────── */
.gallery {
  padding: 0 var(--gutter) 120px;
  max-width: var(--max);
  margin: 0 auto;
}
.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 40px;
}
.gallery-count {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.5;
  font-family: var(--f-serif);
  font-style: italic;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 120px;
  gap: 12px;
}
.gallery-grid .g {
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink);
  position: relative;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gallery-grid .g:hover img {
  transform: scale(1.05);
}
.g-1 {
  grid-column: 1 / span 2;
  grid-row: span 4;
}
.g-2 {
  grid-column: 3 / span 2;
  grid-row: span 2;
}
.g-3 {
  grid-column: 5 / span 2;
  grid-row: span 3;
}
.g-4 {
  grid-column: 3 / span 2;
  grid-row: span 2;
}
.g-5 {
  grid-column: 5 / span 2;
  grid-row: span 2;
}
.g-6 {
  grid-column: 1 / span 4;
  grid-row: span 3;
}
.g-7 {
  grid-column: 5 / span 2;
  grid-row: span 3;
}
@media (max-width: 800px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .g-1,
  .g-2,
  .g-3,
  .g-4,
  .g-5,
  .g-6,
  .g-7 {
    grid-column: auto;
    grid-row: span 1;
    aspect-ratio: 1 / 1;
  }
}

/* ─────────── FAQ ─────────── */
.faq {
  padding: 120px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.faq-head {
  margin-bottom: 56px;
}
.faq-grid {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid rgba(28, 20, 17, 0.15);
}
.faq-item:first-child {
  border-top: 1px solid rgba(28, 20, 17, 0.15);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  font-family: var(--f-serif);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  transition: color 0.3s;
}
.faq-q::-webkit-details-marker {
  display: none;
}
.faq-q::marker {
  content: "";
}
.faq-q::after {
  content: "+";
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-sans);
  font-size: 20px;
  font-weight: 300;
  color: var(--blood);
  border: 1px solid var(--blood);
  border-radius: 50%;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.3s,
    color 0.3s;
}
.faq-item[open] .faq-q::after {
  content: "−";
  background: var(--blood);
  color: var(--bone);
  transform: rotate(180deg);
}
.faq-q:hover {
  color: var(--blood);
}
.faq-a {
  padding: 0 4px 28px;
  max-width: 680px;
}
.faq-a p {
  font-family: var(--f-serif);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.8;
  margin: 0 0 12px;
}
.faq-a p:last-child {
  margin-bottom: 0;
}
.faq-a strong {
  font-weight: 500;
  font-style: normal;
  color: var(--ink);
}
.faq-a a {
  color: var(--blood);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-a a:hover {
  text-decoration-thickness: 2px;
}

/* ─────────── HOTELS ─────────── */
.hotels {
  position: relative;
  padding: 120px var(--gutter);
  overflow: hidden;
  background: var(--ink);
  color: var(--bone);
}
.hotels-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(151, 14, 22, 0.25), transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(181, 138, 76, 0.15), transparent 55%);
  pointer-events: none;
}
.hotels-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.hotels-head {
  text-align: left;
  margin-bottom: 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.hotels-head .section-num {
  color: var(--coral);
}
.hotels-head .section-name em {
  color: var(--coral);
}
.hotels-lede {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  max-width: 36ch;
  opacity: 0.7;
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 64px;
  text-align: left;
}
@media (max-width: 720px) {
  .hotels-grid {
    grid-template-columns: 1fr;
  }
}

.hotel {
  padding: 28px;
  background: rgba(237, 227, 210, 0.04);
  border: 1px solid rgba(237, 227, 210, 0.15);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition:
    border-color 0.3s,
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.3s;
}
.hotel:hover {
  border-color: var(--coral);
  background: rgba(237, 227, 210, 0.06);
  transform: translateY(-4px);
}
.hotel-tag {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--coral);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(237, 227, 210, 0.15);
}
.hotel-name {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--bone);
}
.hotel-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hotel-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: baseline;
}
.hotel-row-label {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.5;
}
.hotel-row-value {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.4;
  color: var(--bone);
}
.hotel-cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-start;
  gap: 12px;
  padding: 13px 22px;
  margin-top: auto;
  border: 1px solid var(--coral);
  color: var(--coral);
  border-radius: 100px;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  transition:
    background 0.3s,
    color 0.3s;
}
.hotel-cta:hover {
  background: var(--coral);
  color: var(--ink);
}
.hotel-cta span {
  transition: transform 0.3s;
}
.hotel-cta:hover span {
  transform: translateX(4px);
}

.mega-cta {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 24px 40px;
  background: var(--blood);
  color: var(--bone);
  border-radius: 100px;
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  transition:
    background 0.4s,
    transform 0.4s;
  position: relative;
  overflow: hidden;
}
.mega-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ember);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 0;
}
.mega-cta:hover::before {
  transform: translateY(0);
}
.mega-cta > * {
  position: relative;
  z-index: 1;
}
.mega-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bone);
  color: var(--blood);
  transition: transform 0.4s;
}
.mega-cta:hover .mega-cta-arrow {
  transform: translateX(6px) rotate(-8deg);
}

/* ─────────── FOOTER ─────────── */
.footer {
  background: var(--bone);
  padding: 80px var(--gutter) 32px;
  border-top: 1px solid rgba(28, 20, 17, 0.1);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: var(--max);
  margin: 0 auto 60px;
  align-items: start;
}
@media (max-width: 800px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-script {
  font-family: var(--f-caps);
  font-size: clamp(110px, 14vw, 220px);
  line-height: 1;
  color: var(--blood);
  letter-spacing: -0.02em;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 600px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
}
.footer-links h4 {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--blood);
}
.footer-links a {
  display: block;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 18px;
  padding: 4px 0;
  transition:
    padding 0.3s,
    color 0.3s;
}
.footer-links a:hover {
  padding-left: 12px;
  color: var(--blood);
}

.footer-bot {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(28, 20, 17, 0.1);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.55;
  max-width: var(--max);
  margin: 0 auto;
}
@media (max-width: 600px) {
  .footer-bot {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ─────────── scroll reveal ─────────── */
.will-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.will-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.speaker.will-reveal {
  transition-delay: calc(var(--i, 1) * 100ms);
}

.g.will-reveal {
  transition-duration: 1.2s;
}

/* ─────────── CONTACT ─────────── */
.contact {
  padding: 160px var(--gutter) 120px;
  max-width: 880px;
  margin: 0 auto;
}
.contact-head {
  margin-bottom: 56px;
}
.contact-masthead {
  font-family: var(--f-script);
  font-size: clamp(72px, 11vw, 160px);
  line-height: 0.9;
  color: var(--blood);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.contact-lede {
  font-family: var(--f-serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  font-weight: 300;
  max-width: 560px;
  color: var(--ink);
}
.contact-lede em {
  font-style: italic;
  color: var(--blood);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-field--full {
  grid-column: 1 / -1;
}
.contact-field label {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  opacity: 0.75;
}
.contact-field label .req {
  color: var(--blood);
  margin-left: 4px;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
  font-family: var(--f-serif);
  font-size: 17px;
  padding: 14px 16px;
  background: var(--bone-2);
  border: 1px solid rgba(28, 20, 17, 0.18);
  border-radius: 4px;
  color: var(--ink);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  width: 100%;
}
.contact-field textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.5;
}
.contact-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'><path d='M1 1L7 7L13 1' stroke='%23970e16' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--blood);
  background: var(--bone);
  box-shadow: 0 0 0 3px rgba(151, 14, 22, 0.12);
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(28, 20, 17, 0.4);
  font-style: italic;
}

.contact-submit {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 36px;
  margin-top: 8px;
  background: var(--blood);
  color: var(--bone);
  font-family: var(--f-sans);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.contact-submit:hover {
  background: var(--blood-d);
  transform: translateY(-1px);
}
.contact-submit:active {
  transform: translateY(0);
}
.contact-submit svg {
  width: 18px;
  height: 18px;
}

.contact-foot {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(28, 20, 17, 0.15);
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.6;
}

@media (max-width: 700px) {
  .contact {
    padding: 120px var(--gutter) 80px;
  }
  .contact-form {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* inline success (replaces form) */
.contact-success {
  text-align: center;
  padding: clamp(40px, 6vw, 80px) 0;
  animation: contactSuccessIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.contact-success-ring {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--blood);
  color: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-success-ring svg {
  width: 34px;
  height: 34px;
}
.contact-success-title {
  font-family: var(--f-caps);
  font-size: clamp(48px, 7vw, 96px);
  color: var(--blood);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.contact-success-copy {
  font-family: var(--f-serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ink);
  max-width: 560px;
  margin: 0 auto 36px;
}
.contact-success-reset {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.contact-success-reset:hover {
  background: var(--ink-2);
}
@keyframes contactSuccessIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─────────── 404 ─────────── */
.notfound {
  min-height: 80vh;
  padding: 160px var(--gutter) 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notfound-inner {
  max-width: 720px;
  width: 100%;
  text-align: center;
  position: relative;
}
.notfound-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--blood);
  margin-bottom: 32px;
}
.notfound-num {
  font-family: var(--f-caps);
  font-size: clamp(72px, 11vw, 140px);
  line-height: 0.9;
  color: var(--blood);
  letter-spacing: -0.02em;
  opacity: 0.95;
  margin: 0 0 16px;
  text-transform: uppercase;
}
.notfound-title {
  font-family: var(--f-script);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: normal;
  color: var(--ink);
  margin: 0 0 28px;
  white-space: nowrap;
}
.notfound-title em {
  font-family: var(--f-script);
  font-style: normal;
  color: var(--blood);
  font-size: 1em;
  letter-spacing: 0;
  margin-left: 0.05em;
}
.notfound-copy {
  font-family: var(--f-serif);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  font-weight: 300;
  color: var(--ink);
  max-width: 540px;
  margin: 0 auto 40px;
}
.notfound-copy em {
  font-style: italic;
  color: var(--blood);
}
.notfound-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.notfound-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  background: var(--blood);
  color: var(--bone);
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid var(--blood);
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s;
}
.notfound-cta:hover {
  background: var(--blood-d);
  border-color: var(--blood-d);
  transform: translateY(-1px);
}
.notfound-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}
.notfound-cta:hover svg {
  transform: translateX(4px);
}
.notfound-cta--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.notfound-cta--ghost:hover {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}

.notfound-links {
  list-style: none;
  padding: 32px 0 0;
  margin: 0;
  border-top: 1px solid rgba(28, 20, 17, 0.15);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 700px) {
  .notfound-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
.notfound-links a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 8px;
  transition: color 0.2s;
}
.notfound-links a:hover {
  color: var(--blood);
}
.notfound-links a span {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--blood);
  text-transform: none;
  opacity: 0.7;
}

/* ─────────── reduced motion ─────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
