/* ============================================================
   COURT & CAPITAL — implemented from the Claude Design project
   "Website design refresh" (Court and Capital.dc.html).
   Near-black green canvas, cream ink, brass accents, Newsreader.
   ============================================================ */

:root {
  --night: #0a110b;                       /* page canvas, deep money green */
  --night-deep: #12190f;                  /* text on accent surfaces */
  --cream: #eae3d2;
  --cream-74: rgba(234, 227, 210, 0.74);
  --cream-72: rgba(234, 227, 210, 0.72);
  --cream-66: rgba(234, 227, 210, 0.66);
  --cream-52: rgba(234, 227, 210, 0.52);
  --cream-45: rgba(234, 227, 210, 0.45);
  --accent: #a7b48a;                      /* sage green */
  --error: #d98a72;
  --line: rgba(234, 227, 210, 0.1);
  --line-strong: rgba(234, 227, 210, 0.14);
  --input-line: rgba(234, 227, 210, 0.22);
  --serif: "Newsreader", Georgia, serif;
  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  background: var(--night);
  color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--night-deep); }

em { font-style: italic; }

.small-caps {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.7rem;
  font-weight: 500;
}

/* ============ AMBIENT BACKGROUND ============ */
.ambient {
  position: fixed;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(38% 42% at 22% 20%, rgba(122, 158, 108, 0.13), transparent 70%),
    radial-gradient(46% 48% at 82% 74%, rgba(84, 128, 88, 0.12), transparent 72%),
    radial-gradient(40% 40% at 58% 42%, rgba(198, 167, 101, 0.04), transparent 70%);
  animation: ambientDrift 26s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes ambientDrift {
  0%   { transform: translate3d(-1.5%, -1%, 0) scale(1); }
  100% { transform: translate3d(2%, 2%, 0) scale(1.12); }
}

/* ============ HEADER ============ */
.top {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 9, 6, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(234, 227, 210, 0.12);
}

.top-main {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  padding: 1rem clamp(1.5rem, 5vw, 4rem);
}

.top-mark {
  font-family: var(--serif);
  font-size: 1.32rem;
  letter-spacing: 0.01em;
  color: var(--cream);
  text-decoration: none;
  white-space: nowrap;
}

.top-mark span {
  font-style: italic;
  color: var(--accent);
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
}

.top-nav a {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--cream-66);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.top-nav a:hover {
  color: var(--cream);
  border-bottom-color: var(--accent);
}

.top-cta {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.64rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  padding: 0.62rem 1.35rem;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s;
}

.top-cta:hover {
  background: var(--accent);
  color: var(--night-deep);
}

/* ---------- mobile nav ---------- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 32px;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 5px;
  right: 5px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.25s, top 0.25s;
}

.nav-toggle span:nth-child(1) { top: 11px; }
.nav-toggle span:nth-child(2) { top: 20px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { top: 15px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0 0 auto 0;
  top: var(--header-h, 96px);
  z-index: 19;
  background: rgba(5, 9, 6, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 0.6rem 1.5rem 1.4rem;
}

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

.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--cream);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.mobile-menu a:last-child { border-bottom: none; }

.mobile-menu-cta { color: var(--accent) !important; }

@media (min-width: 761px) {
  .mobile-menu { display: none !important; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(6, 11, 7, 0.9), rgba(6, 11, 7, 0.46) 55%, rgba(6, 11, 7, 0.14)),
    linear-gradient(180deg, rgba(6, 11, 7, 0.26), rgba(6, 11, 7, 0.5) 58%, #0a110b),
    url("images/hero-court.jpg");
  background-size: cover;
  background-position: center 32%;
}

.hero-amp {
  position: absolute;
  top: -5rem;
  right: -1.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(13rem, 27vw, 27rem);
  line-height: 1;
  color: var(--accent);
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
}

.hero-inner {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 7rem clamp(1.5rem, 5vw, 4rem) 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4.5rem;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 2 1 440px;
  max-width: 640px;
}

.hero-kicker {
  letter-spacing: 0.34em;
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.9rem;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.1rem, 6.8vw, 5.6rem);
  line-height: 1.01;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.hero-title em { color: #ffffff; }

.hero-standfirst {
  max-width: 462px;
  margin-top: 1.8rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  background: var(--accent);
  color: var(--night-deep);
  border: 1px solid var(--accent);
  padding: 1rem 2.3rem;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover {
  background: transparent;
  color: var(--accent);
}

.hero-btn { margin-top: 2.5rem; }

.hero-btn:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

/* facts, right side of the hero */
.hero-facts {
  flex: 1 1 240px;
  max-width: 280px;
}

.hf {
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hf-last { border-bottom: 1px solid rgba(255, 255, 255, 0.34); }

.hf .small-caps {
  letter-spacing: 0.24em;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.66);
}

.hf b {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.08rem;
  color: #ffffff;
}

.br-mobile { display: none; }

/* ============ STAKEHOLDERS ============ */
.stakeholders {
  overflow: hidden;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.64rem;
  color: var(--cream-52);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.stakeholders-track {
  display: flex;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: stakeholdersScroll 55s linear infinite;
}

/* spacing + separator baked into each item, so the two copies are exactly
   2x one copy and translateX(-50%) lands on a perfect, jump-free seam */
.stakeholders .st { display: inline-block; }

.stakeholders .st::after {
  content: "·";
  margin: 0 1.35rem;
  color: var(--accent);
}

@keyframes stakeholdersScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ PULL QUOTE ============ */
.pull {
  max-width: 960px;
  margin: 0 auto;
  padding: 5.5rem clamp(1.5rem, 5vw, 4rem) 1.5rem;
  text-align: center;
}

.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.3;
  color: var(--cream);
  text-wrap: balance;
}

.pull-quote span { color: var(--accent); }

/* ============ LIGHT BAND (pull quote → hosts) ============ */
.light-band {
  --lb-ink: #16241a;
  --lb-body: #47584b;
  --lb-accent: #2f6a45;
  --lb-line: rgba(22, 36, 26, 0.14);
  background: linear-gradient(180deg, #f2f5f2 0%, #eaeee8 55%, #e4e9e1 100%);
  color: var(--lb-ink);
}

.light-band .pull-quote { color: var(--lb-ink); }
.light-band .pull-quote span { color: var(--lb-accent); }

.light-band .row-bordered { border-top-color: var(--lb-line); }
.light-band .row-numeral { color: var(--lb-accent); }
.light-band .row-label { color: var(--lb-accent); }
.light-band .row-head { border-bottom-color: var(--lb-line); }
.light-band .row-body > p { color: var(--lb-body); }
.light-band .row-body em { color: var(--lb-ink); }
.light-band .row-body strong { color: var(--lb-ink); }
.light-band .row-aside { color: rgba(22, 36, 26, 0.5) !important; }

.light-band .programme .p-row { border-bottom-color: var(--lb-line); }
.light-band .programme dt { color: var(--lb-accent); }
.light-band .programme dd { color: var(--lb-body); }
.light-band .programme dd strong { color: var(--lb-ink); }

/* ============ ROW SECTIONS (numeral + label left, body right) ============ */
.row-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 5rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3.5rem;
}

.row-bordered { border-top: 1px solid var(--line); }

.row-head {
  flex: 1 1 150px;
  max-width: 210px;
}

.row-numeral {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.row-label {
  color: var(--cream-72);
}

.row-body {
  flex: 4 1 420px;
  max-width: 660px;
}

.row-body > p {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--cream-74);
  margin-bottom: 1.3rem;
}

.row-body > p:last-child { margin-bottom: 0; }

.row-body em { color: var(--cream); }

.row-body strong {
  font-weight: 500;
  color: var(--cream);
}

.row-aside {
  font-style: italic;
  font-size: 0.95rem !important;
  color: var(--cream-52) !important;
  margin-top: 1.5rem;
}

.venue-line {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2rem) !important;
  line-height: 1.25 !important;
  color: var(--cream) !important;
  margin-bottom: 1.1rem !important;
}

.venue-line em { color: var(--accent) !important; }

.divider {
  height: 1px;
  background: var(--line-strong);
  margin: 2.5rem 0;
}

/* ============ PROGRAMME ============ */
.programme .p-row {
  display: grid;
  grid-template-columns: 6.6rem 1fr;
  gap: 1.3rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}

.programme .p-row:first-child { padding-top: 0; }

.programme .p-row-last {
  border-bottom: none;
  padding-bottom: 0;
}

.programme dt {
  font-variant-numeric: tabular-nums;
  color: var(--accent);
  font-size: 1.05rem;
  white-space: nowrap;
}

.programme dd {
  font-size: 1.04rem;
  color: var(--cream-74);
}

.programme dd strong {
  font-weight: 500;
  color: var(--cream);
}

/* ============ HOSTS ============ */
.hosts {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
  text-align: center;
}

.hosts .row-numeral { margin-bottom: 1.1rem; }

.hosts-intro {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.65rem, 3.2vw, 2.2rem);
  line-height: 1.35;
  color: var(--cream);
  margin: 0 auto 3.4rem;
  max-width: 680px;
  text-wrap: balance;
}

.hosts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem clamp(3rem, 6vw, 5.5rem);
  text-align: left;
}

.host-tag {
  letter-spacing: 0.22em;
  font-size: 0.6rem;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.host h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.host p {
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--cream-72);
}

@media (max-width: 760px) {
  .hosts-grid { grid-template-columns: 1fr; }
}

/* ============ PHOTO FIGURE ============ */
.photo-figure {
  position: relative;
  margin: 2.5rem 0 0;
  height: clamp(440px, 64vh, 660px);
  background:
    linear-gradient(180deg, rgba(6, 11, 7, 0.6), rgba(6, 11, 7, 0.08) 26%, rgba(6, 11, 7, 0.08) 62%, rgba(6, 11, 7, 0.88)),
    url("https://images.unsplash.com/photo-1646649853703-7645147474ba?w=2400&q=80");
  background-size: cover;
  background-position: center 48%;
}

.photo-figure figcaption {
  position: absolute;
  left: clamp(1.5rem, 5vw, 4rem);
  bottom: 1.9rem;
  letter-spacing: 0.28em;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.82);
}

/* ============ FORM ============ */
.rsvp-form { margin-top: 2.5rem; }

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.8rem;
}

.form-row .form-field { flex: 1 1 220px; }

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

.form-field label {
  display: block;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.64rem;
  font-weight: 500;
  color: rgba(234, 227, 210, 0.7);
  margin-bottom: 0.5rem;
}

.label-optional {
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--cream-45);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--input-line);
  padding: 0.5rem 0.1rem;
  font-family: var(--serif);
  font-size: 1.12rem;
  color: var(--cream);
  border-radius: 0;
  transition: border-color 0.2s;
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(234, 227, 210, 0.4);
  font-style: italic;
}

/* listed-out radio choice */
.form-field-choice { margin-bottom: 1.7rem; }

.choice-label {
  display: block;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(234, 227, 210, 0.7);
  margin-bottom: 0.85rem;
}

.choice-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.choice {
  flex: 1 1 200px;
  display: flex;
  cursor: pointer;
}

/* beat the generic `.form-field label` rule (higher specificity) so each
   choice stays a flex row and its box fills the cell */
.form-field-choice .choice {
  display: flex;
  margin: 0;
}

.choice input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.choice-box {
  flex: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  border: 1px solid var(--input-line);
  padding: 0.95rem 1.1rem;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}

.choice-sub {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.56rem;
  color: var(--cream-45);
  transition: color 0.2s;
}

.choice input:checked + .choice-box .choice-sub { color: var(--accent); }

.choice:hover .choice-box { border-color: rgba(234, 227, 210, 0.45); }

.choice input:checked + .choice-box {
  border-color: var(--accent);
  background: rgba(167, 180, 138, 0.10);
}

.choice input:focus-visible + .choice-box {
  box-shadow: 0 0 0 2px rgba(167, 180, 138, 0.4);
}

.choice-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  text-transform: none;
  letter-spacing: normal;
  color: var(--cream-72);
  transition: color 0.2s;
}

.choice input:checked + .choice-box .choice-text { color: var(--cream); }
.choice:hover .choice-box .choice-text { color: var(--cream); }

.form-field-choice.invalid .choice-label { color: var(--error); }
.form-field-choice.invalid .choice-box { border-color: var(--error); }

/* groups the identity fields from the evening questions */
.form-divider {
  height: 1px;
  background: var(--line);
  margin: 0.4rem 0 2rem;
}

/* honeypot — hidden from humans, catches bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

.form-field input.invalid,
.form-field textarea.invalid,
.form-field select.invalid {
  border-bottom-color: var(--error);
}

.form-footer {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.btn-submit[disabled] { opacity: 0.55; cursor: wait; }

.form-note {
  font-style: italic;
  font-size: 0.85rem !important;
  color: var(--cream-45) !important;
  margin: 0 !important;
}

.form-error {
  margin-top: 1.3rem;
  color: var(--error) !important;
  font-size: 0.9rem !important;
}

/* success state */
.rsvp-success { margin-top: 2.5rem; }

.success-title {
  font-family: var(--serif);
  font-size: 1.55rem !important;
  color: var(--cream) !important;
  margin-bottom: 0.6rem !important;
}

.rsvp-success p:last-child { max-width: 560px; }

/* ============ FOOTER ============ */
.foot {
  max-width: 1080px;
  margin: 2rem auto 0;
  padding: 2.4rem clamp(1.5rem, 5vw, 4rem) 3rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.foot .small-caps {
  letter-spacing: 0.22em;
  font-size: 0.66rem;
  color: var(--cream-45);
}

.foot a {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.foot a:hover { border-bottom-color: var(--accent); }

.foot-legal {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  align-items: baseline;
}

.foot-legal a {
  font-family: var(--sans);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.62rem;
  color: var(--cream-45);
  border-bottom: none;
  cursor: pointer;
}

.foot-legal a:hover { color: var(--cream); border-bottom: none; }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 760px;
  margin: 0 auto;
  display: none;
  gap: 1.2rem 1.6rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #0a110b;
  border: 1px solid var(--line);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.5);
  padding: 1.05rem 1.3rem;
}

.cookie-banner.is-open { display: flex; }

.cookie-text {
  flex: 1 1 320px;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--cream-72);
}

.cookie-text a { color: var(--accent); }

.cookie-actions {
  display: flex;
  gap: 0.7rem;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.64rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.62rem 1.4rem;
  border: 1px solid var(--input-line);
  background: transparent;
  color: var(--cream);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.cookie-reject:hover { border-color: var(--cream); }

.cookie-accept {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--night-deep);
}

.cookie-accept:hover { opacity: 0.85; }

@media (max-width: 520px) {
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}

/* ============ LEGAL / PROSE PAGE ============ */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem clamp(1.5rem, 5vw, 4rem) 2rem;
}

.legal h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 0.4rem;
}

.legal .legal-meta {
  color: var(--cream-45);
  font-size: 0.8rem;
  margin-bottom: 2.6rem;
}

.legal h2 {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  margin: 2.4rem 0 0.9rem;
}

.legal p, .legal li {
  color: var(--cream-72);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal ul { padding-left: 1.2rem; margin-bottom: 1rem; }
.legal li { margin-bottom: 0.4rem; }
.legal a { color: var(--accent); }
.legal strong { color: var(--cream); font-weight: 500; }

/* ============ RESPONSIVE / MOTION ============ */
@media (max-width: 760px) {
  /* header: hamburger replaces nav + cta */
  .top-nav, .top-cta { display: none; }
  .nav-toggle { display: block; }
  .top-main { padding: 0.85rem 1.5rem; flex-wrap: nowrap; }

  /* hero: taller, centered, no watermark or kicker */
  .hero { min-height: 90vh; }
  .hero-amp { display: none; }
  .hero-kicker { display: none; }
  .hero-inner {
    padding: 6rem 1.5rem 4rem;
    gap: 2.8rem;
    justify-content: center;
    text-align: center;
  }
  .hero-copy { flex: 1 1 100%; max-width: none; }
  .hero-standfirst { margin: 1.4rem auto 0; font-size: 1.04rem; }
  .hero-btn { margin-top: 2.1rem; }
  .hero-facts {
    max-width: 340px;
    margin: 0 auto;
    flex: 1 1 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.34);
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  }
  .hf, .hf-last {
    border-top: none;
    border-bottom: none;
    padding: 0.85rem 0;
    align-items: center;
    text-align: center;
  }
  .hf b { font-size: 1rem; }
  .br-mobile { display: inline; }
  /* keep only Date + Place on mobile */
  .hf-hours, .hf-seats { display: none; }

  /* sections: clear title row, tighter rhythm */
  .pull { padding: 3.5rem 1.5rem 0.5rem; }
  .row-section { padding: 3.2rem 1.5rem; gap: 1.6rem; }
  .row-head {
    flex: 1 1 100%;
    max-width: none;
    display: flex;
    align-items: baseline;
    gap: 0.9rem;
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.85rem;
  }
  .row-numeral { font-size: 1.5rem; margin-bottom: 0; }
  .row-label { color: var(--accent); }
  .row-body > p { font-size: 1.04rem; }

  .hosts { padding: 3.2rem 1.5rem; }
  .hosts-intro { margin-bottom: 2.4rem; }
  .hosts-grid { gap: 2.2rem; }

  .photo-figure { height: clamp(280px, 42vh, 420px); }

  .form-row { display: block; }
}

@media (max-width: 640px) {
  .foot { flex-direction: column; gap: 0.6rem; text-align: center; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ambient { animation: none; }
  .stakeholders-track { animation: none; }
}
