/* ═════════════════════════════════════════════════════════════════
   ARTISTRY · pink editorial site · shared stylesheet
   ═════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

:root {
  --bg:           #0E0A0E;
  --bg-2:         #15101A;
  --bg-3:         #1B1320;
  --paper:        #FBF5F0;
  --paper-2:      #F4ECE2;
  --ink:          #0E0A0E;
  --ink-2:        #1F1620;
  --mute:         rgba(251,245,240,.60);
  --mute-2:       rgba(251,245,240,.40);
  --mute-3:       rgba(251,245,240,.18);
  --on-paper-mute: rgba(14,10,14,.60);
  --on-paper-mute-2: rgba(14,10,14,.40);
  --on-paper-rule: rgba(14,10,14,.10);

  --pink:         #FF1F8F;
  --pink-soft:    #FF6DB3;
  --pink-deep:    #D81472;
  --pink-glow:    rgba(255,31,143,.32);

  --rule:         rgba(251,245,240,.10);
  --rule-2:       rgba(251,245,240,.18);

  --font-display: 'Big Shoulders Display', 'Inter Tight', system-ui, sans-serif;
  --font-deva:    'Anek Devanagari', 'Big Shoulders Display', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
  --font-serif:   'Fraunces', Georgia, serif;

  --frame-max:    1320px;
  --gutter:       clamp(20px, 4vw, 56px);
}

body {
  background: var(--bg);
  color: var(--paper);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  overflow-x: hidden;
}

/* em renders pink display-bold */
em, i {
  font-style: normal;
  font-weight: 700;
  color: var(--pink);
  font-family: var(--font-display);
  font-size: 1.05em;
  letter-spacing: -0.005em;
}
.on-paper em, .on-paper i { color: var(--pink-deep); }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ───────── FRAME / SHELL ───────── */

.frame {
  max-width: var(--frame-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { position: relative; }
.on-paper { background: var(--paper); color: var(--ink); }

/* ───────── NAV ───────── */

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14,10,14,.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
  gap: 32px;
}
.nav__mark { padding-right: clamp(20px, 3vw, 40px); }
.nav__mark {
  font-family: var(--font-deva);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.005em;
  color: var(--paper);
}
.nav__mark .glyph {
  color: var(--pink);
  font-size: 1.05em;
  margin-right: -1px;
}
.nav__links {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
@media (max-width: 1100px) {
  .nav__links { gap: 2px; font-size: 11px; letter-spacing: 0.14em; }
}
.nav__links a {
  position: relative;
  padding: 8px 12px;
  color: rgba(251,245,240,.62);
  transition: color .18s;
}
.nav__links a::after {
  content: ""; position: absolute;
  left: 12px; right: 12px; bottom: 2px;
  height: 1px; background: var(--pink);
  transform: scaleX(0); transform-origin: left;
  transition: transform .18s;
}
.nav__links a:hover { color: var(--paper); }
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { color: var(--pink); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  background: var(--pink);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 13.5px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background .18s, transform .18s, box-shadow .18s, border-color .18s, color .18s;
  box-shadow: 0 4px 18px rgba(255,31,143,.25);
  white-space: nowrap;
  text-decoration: none;
}
.nav__cta:hover { background: var(--pink-soft); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,31,143,.42); }

/* ───── secondary / ghost CTA ───── */
.nav__cta--ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--rule-2);
  box-shadow: none;
}
.nav__cta--ghost:hover { background: rgba(255,31,143,.08); border-color: var(--pink); color: var(--paper); box-shadow: none; transform: translateY(-1px); }

/* keep the two CTAs together regardless of the nav's space-between layout */
.nav__actions {
  display: inline-flex; align-items: center; gap: 6px;
  margin-left: auto;
}

/* ───── primary "live" CTA · animated · used on Next event ───── */
.nav__cta--live {
  position: relative;
  background: var(--pink);
  color: var(--bg);
  padding-left: 14px;
  animation: nav-cta-glow 2.4s ease-in-out infinite;
}
.nav__cta--live::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  background: #FBF5F0;
  border-radius: 50%;
  margin-right: 8px;
  flex: none;
  animation: nav-cta-dot 1.6s ease-in-out infinite;
}
.nav__cta--live:hover {
  background: var(--pink-soft);
  transform: translateY(-1px);
  animation-duration: 1.6s;
}

@keyframes nav-cta-glow {
  0%, 100% { box-shadow: 0 4px 18px rgba(255,31,143,.28), 0 0 0 0 rgba(255,31,143,.5); }
  50%      { box-shadow: 0 8px 28px rgba(255,31,143,.55), 0 0 0 10px rgba(255,31,143,0); }
}
@keyframes nav-cta-dot {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(251,245,240,.85); opacity: 1; }
  50%      { transform: scale(0.78); box-shadow: 0 0 0 6px rgba(251,245,240,0);  opacity: .85; }
}
@media (prefers-reduced-motion: reduce) {
  .nav__cta--live, .nav__cta--live::before { animation: none; }
}

.nav__burger { display: none; background: none; border: 0; color: var(--paper); padding: 8px; }
.nav__burger svg { display: block; }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
}

/* Mobile menu = full-screen overlay (built by site.js), matching the homepage.
   The nav bar + logo are left untouched. */
.nav-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg); color: var(--paper);
  padding: 80px 28px 40px;
  display: none; flex-direction: column; gap: 2px;
  opacity: 0; transition: opacity .25s ease; overflow-y: auto;
}
.nav-overlay.is-open { display: flex; opacity: 1; }
.nav-overlay__close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px; display: grid; place-items: center;
  background: none; border: 0; color: var(--paper); cursor: pointer;
}
.nav-overlay a {
  font-family: var(--font-display); font-weight: 800;
  font-size: 30px; letter-spacing: -.025em;
  padding: 12px 0; color: var(--paper); text-decoration: none;
}
.nav-overlay a:hover { color: var(--pink); }

/* ───────── HERO (shared) ───────── */

.hero {
  position: relative;
  min-height: 88vh;
  padding: clamp(80px, 14vh, 160px) 0 clamp(64px, 10vh, 120px);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 50% at 80% 8%, rgba(255,31,143,.18), transparent 70%),
    radial-gradient(50% 40% at 0% 100%, rgba(216,20,114,.22), transparent 70%);
}
.hero__halftone {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(rgba(255,31,143,.10) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: .42;
  mix-blend-mode: screen;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink-soft);
  display: inline-flex; align-items: center; gap: 12px;
}
.hero__eyebrow::before {
  content: ""; display: inline-block;
  width: 28px; height: 1px; background: var(--pink);
}
.hero__h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.018em;
  margin: 0;
  max-width: 14ch;
}
.hero__h em { font-size: 1em; }
.hero__sub {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.45;
  color: rgba(251,245,240,.78);
  max-width: 62ch;
  margin: 0;
}
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 8px;
}
.hero__meta strong { color: var(--paper); font-weight: 600; }

/* room hero variant — taller, denser */
.hero--room { min-height: 76vh; padding-top: clamp(60px, 10vh, 120px); }
.hero--room .hero__h { font-size: clamp(64px, 11vw, 168px); }
.hero--room .hero__name {
  font-family: var(--font-deva);
  color: var(--pink);
  font-weight: 600;
  font-size: clamp(80px, 14vw, 200px);
  line-height: 0.85;
  margin: 0;
  letter-spacing: -0.02em;
}

/* ───────── SECTION HEADER ───────── */

.sect {
  padding: clamp(64px, 9vh, 120px) 0;
  border-top: 1px solid var(--rule);
}
.on-paper.sect { border-top: 1px solid var(--on-paper-rule); }
.sect-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: clamp(36px, 5vh, 64px);
  max-width: 92ch;
}
.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink-soft);
  display: inline-flex; align-items: center; gap: 12px;
}
.kicker::before {
  content: ""; display: inline-block;
  width: 28px; height: 1px; background: var(--pink);
}
.on-paper .kicker { color: var(--pink-deep); }
.on-paper .kicker::before { background: var(--pink-deep); }
.h-section {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6.4vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.016em;
  margin: 0;
  max-width: 18ch;
}
.h-section em { font-size: 1em; }
.lead {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  color: rgba(251,245,240,.78);
  max-width: 64ch;
  margin: 0;
}
.on-paper .lead { color: rgba(14,10,14,.72); }

/* ───────── ROOM PREVIEW GRID (on landing) ───────── */

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.room-card {
  background: var(--bg);
  padding: clamp(28px, 3.5vw, 44px) clamp(24px, 3vw, 38px);
  display: flex; flex-direction: column;
  gap: 22px;
  text-decoration: none;
  color: var(--paper);
  transition: background .25s;
  position: relative;
  min-height: 280px;
}
.room-card:hover { background: var(--bg-2); }
.room-card::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  height: 2px; background: var(--pink);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.room-card:hover::after { transform: scaleX(1); }
.room-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--mute);
}
.room-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 0.96;
  margin: 0;
}
.room-card__line {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--mute);
  margin: 0;
}
.room-card__arrow {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink-soft);
}
.room-card__arrow svg { transition: transform .25s; }
.room-card:hover .room-card__arrow svg { transform: translateX(4px); }

/* ───────── UPCOMING EVENTS STRIP ───────── */

.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.event-card {
  display: flex; flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  text-decoration: none;
  color: var(--paper);
  overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.event-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,31,143,.42);
  box-shadow: 0 18px 48px rgba(255,31,143,.18);
}
.event-card__media {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--pink-deep), var(--bg) 70%);
  position: relative;
  overflow: hidden;
}
.event-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,31,143,.18) 1px, transparent 1px);
  background-size: 5px 5px;
  mix-blend-mode: screen;
  opacity: 0.55;
}
.event-card__media-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  /* bias the crop toward the top of the frame so faces in portrait covers stay visible */
  object-position: center 22%;
  z-index: 1;
}
.event-card__media-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,10,14,0) 50%, rgba(14,10,14,.78) 100%);
  z-index: 2;
}
.event-card__room {
  position: absolute; left: 14px; top: 14px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(14,10,14,.62);
  border: 1px solid rgba(251,245,240,.18);
  padding: 5px 9px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.event-card__body {
  padding: 20px 22px 22px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.event-card__date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink-soft);
}
.event-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.02;
  margin: 0;
}
.event-card__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 2px;
}
.event-card__arrow {
  margin-top: auto;
  padding-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  display: inline-flex; align-items: center; gap: 6px;
}

/* ───────── ROOM PAGE — long essay + nights ───────── */

.essay {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 880px) { .essay { grid-template-columns: 1fr; } }
.essay__aside {
  position: sticky; top: 96px;
  display: flex; flex-direction: column; gap: 18px;
}
.essay__aside dl {
  margin: 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 6px 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
}
.essay__aside dt { color: var(--mute); text-transform: uppercase; letter-spacing: 0.18em; font-size: 10px; padding-top: 4px; }
.essay__aside dd { margin: 0; color: var(--paper); }
.on-paper .essay__aside dt { color: var(--on-paper-mute); }
.on-paper .essay__aside dd { color: var(--ink); }
.essay__body p {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.55;
  color: rgba(14,10,14,.85);
  margin: 0 0 1.2em;
}
.essay__body p:first-child::first-letter {
  font-family: var(--font-display);
  float: left;
  font-size: 5.2em;
  line-height: 0.86;
  padding: 8px 14px 0 0;
  color: var(--pink-deep);
  font-weight: 700;
}
.essay__body .pull {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  margin: 1em 0;
  border-top: 1px solid var(--on-paper-rule);
  border-bottom: 1px solid var(--on-paper-rule);
  padding: 0.8em 0;
}
.essay__body .pull em { font-size: 1em; }

/* ───────── EVENT DETAIL PAGE ───────── */

.event-hero {
  position: relative;
  min-height: 70vh;
  padding: clamp(80px, 12vh, 140px) 0 clamp(60px, 9vh, 100px);
  overflow: hidden;
  isolation: isolate;
}
.event-hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  /* bias toward the top of the frame so faces in portrait covers stay visible */
  background-position: center 20%;
  filter: saturate(1.05);
}
.event-hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(14,10,14,.55) 0%, rgba(14,10,14,.85) 70%, var(--bg) 100%);
}
.event-hero__halo {
  position: absolute; right: -20%; top: -10%;
  width: 70%; aspect-ratio: 1; z-index: -1;
  background: radial-gradient(circle, rgba(255,31,143,.42), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.event-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.event-hero__room-pill {
  align-self: start;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(255,31,143,.18);
  border: 1px solid rgba(255,31,143,.42);
  padding: 7px 14px;
  border-radius: 999px;
  display: inline-block;
}
.event-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.94;
  letter-spacing: -0.018em;
  margin: 8px 0 0;
}
.event-hero__when {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 12px 0 0;
}
.event-hero__when strong { color: var(--pink); font-weight: 600; }
.event-hero__desc {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.55;
  color: rgba(251,245,240,.85);
  max-width: 62ch;
  margin: 22px 0 0;
}

.event-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 940px) { .event-layout { grid-template-columns: 1fr; } }

.event-details {
  display: flex; flex-direction: column;
  gap: 36px;
}
.detail-block h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin: 0 0 14px;
}
.detail-block p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(251,245,240,.84);
  margin: 0;
}
.lineup {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.lineup__row {
  background: var(--bg-2);
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.lineup__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
}
a.lineup__name--ig {
  color: var(--paper);
  text-decoration: none;
  display: inline-flex; align-items: baseline; gap: 8px;
  transition: color .15s;
  position: relative;
}
a.lineup__name--ig .lineup__ig {
  color: var(--pink-soft);
  transform: translateY(2px);
  transition: color .15s, transform .25s;
}
a.lineup__name--ig::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: var(--pink);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
a.lineup__name--ig:hover { color: var(--pink); }
a.lineup__name--ig:hover .lineup__ig { color: var(--pink); transform: translateY(2px) scale(1.08); }
a.lineup__name--ig:hover::after { transform: scaleX(1); }
a.lineup__name--ig:focus-visible { outline: 2px solid var(--pink); outline-offset: 4px; border-radius: 2px; }
.lineup__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
}
.venue-block {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(251,245,240,.84);
}
.venue-block strong { color: var(--paper); font-weight: 600; font-family: var(--font-display); font-size: 22px; display: block; margin-bottom: 4px; }

/* ───────── GUESTLIST FORM ───────── */

.form-shell {
  background: var(--bg-2);
  border: 1px solid rgba(255,31,143,.32);
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.form-shell::before {
  content: "";
  position: absolute; right: -30%; top: -30%;
  width: 60%; aspect-ratio: 1; z-index: -1;
  background: radial-gradient(circle, rgba(255,31,143,.22), transparent 60%);
  filter: blur(50px);
  pointer-events: none;
}
.form-shell h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.02;
  margin: 0 0 6px;
}
.form-shell p.form-lede {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--mute);
  margin: 0 0 26px;
}
.form-row {
  display: flex; flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-row label,
.form-row__two label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
  line-height: 1.5;
  display: block;
}
.form-row label .req,
.form-row__two label .req { color: var(--pink); margin-left: 2px; }
.form-row input,
.form-row textarea,
.form-row select,
.form-row__two input,
.form-row__two textarea,
.form-row__two select {
  background: var(--bg);
  border: 1px solid var(--rule-2);
  color: var(--paper);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: 4px;
  transition: border-color .15s, background .15s;
  width: 100%;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus,
.form-row__two input:focus,
.form-row__two textarea:focus,
.form-row__two select:focus {
  outline: none;
  border-color: var(--pink);
  background: var(--bg-3);
}
.form-row textarea { resize: vertical; min-height: 80px; }
.form-row__two {
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 14px;
  margin-bottom: 18px;
}
.form-row__two > div { display: flex; flex-direction: column; gap: 6px; }

.form-submit {
  width: 100%;
  padding: 16px 20px;
  background: var(--pink);
  color: var(--bg);
  border: 0;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background .15s, transform .15s;
  box-shadow: 0 6px 22px rgba(255,31,143,.32);
}
.form-submit:hover { background: var(--pink-soft); transform: translateY(-1px); }
.form-submit:disabled { background: var(--mute-3); color: var(--mute); cursor: wait; box-shadow: none; transform: none; }

.form-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 12px;
  text-align: center;
}

/* form success state */
.form-success {
  display: none;
  padding: clamp(28px, 4vw, 44px);
  text-align: center;
}
.form-success.is-on { display: block; }
.form-shell.is-submitted .form-success { display: block; }
.form-shell.is-submitted form { display: none; }
.form-success__check {
  display: inline-flex;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--pink);
  align-items: center; justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 8px 30px rgba(255,31,143,.38);
}
.form-success h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.02;
  margin: 0 0 10px;
}
.form-success p {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.5;
  color: var(--mute);
  margin: 0 0 6px;
}
.form-success small {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-top: 18px;
  display: inline-block;
}

/* ───────── FEATURED EVENT (landing hero adjacent) ───────── */

.featured {
  position: relative;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(48px, 7vh, 88px) 0;
  overflow: hidden;
}
.featured__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
@media (max-width: 880px) { .featured__inner { grid-template-columns: 1fr; } }
.featured__media {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-deep) 0%, #4A0E2E 50%, var(--bg) 100%);
}
.featured__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.featured__media::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,31,143,.16) 1px, transparent 1px);
  background-size: 6px 6px;
  mix-blend-mode: screen;
  z-index: 1;
}
.featured__body {
  display: flex; flex-direction: column; gap: 16px;
}
.featured__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6.4vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.012em;
  margin: 0;
}
.featured__cta {
  align-self: start;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--pink);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 8px;
  box-shadow: 0 6px 24px rgba(255,31,143,.32);
  transition: background .18s, transform .18s;
}
.featured__cta:hover { background: var(--pink-soft); transform: translateY(-1px); }

/* ───────── FOOTER ───────── */

.foot {
  border-top: 1px solid var(--rule);
  padding: clamp(48px, 7vh, 80px) 0 clamp(28px, 4vh, 48px);
  background: var(--bg);
}
.foot__inner {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: clamp(20px, 3vw, 56px);
}
@media (max-width: 760px) { .foot__inner { grid-template-columns: 1fr 1fr; } }
.foot__brand {
  font-family: var(--font-deva);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 14px;
  display: inline-flex; align-items: baseline;
}
.foot__brand .glyph { color: var(--pink); margin-right: 0; }
.foot__line {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: var(--mute);
  max-width: 36ch;
  margin: 0;
}
.foot h6 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin: 0 0 14px;
}
.foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.foot a {
  font-size: 14px;
  color: var(--mute);
  transition: color .15s;
}
.foot a:hover { color: var(--paper); }
.foot__bottom {
  margin-top: clamp(36px, 6vh, 56px);
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ───────── UTILS ───────── */

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 20px;
  border: 1px solid var(--rule-2);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  transition: border-color .18s, background .18s;
}
.btn-ghost:hover { border-color: var(--pink); background: rgba(255,31,143,.08); }

.empty {
  padding: 64px 0;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--mute);
}

/* ───────── REVEAL (subtle on scroll, JS-controlled) ───────── */

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }


/* ── brand logo image (replaces अrtistry wordmark) ── */
.brand-logo{ height:26px; width:auto; display:block; }
.foot__brand .brand-logo{ height:34px; }
