/* ==========================================================================
   P4D Ministry — "Spectrum" design system
   Dark editorial. The logo's spectrum (green → teal → blue → purple)
   becomes light on a midnight canvas. No ripples, no cards-everywhere:
   slanted bands, ghost numerals, oversized condensed type, one serif
   italic accent per headline.
   ========================================================================== */

/* ---------- Fonts (self-hosted, OFL — see OFL.txt) ---------- */
@font-face {
  font-family: "Anton";
  src: url("fonts/anton-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("fonts/instrument-serif-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("fonts/instrument-serif-400-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("fonts/space-grotesk-300-700.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --ink-0: #0a0714;          /* page */
  --ink-1: #110c22;          /* raised band */
  --ink-2: #181130;          /* card */
  --line: #2a2145;           /* hairlines */
  --text: #f4f1fd;
  --muted: #a89fc9;
  --purple: #8b6bff;
  --teal: #2cc8bc;
  --green: #8bd14b;
  --blue: #6fa0ff;
  --spectrum: linear-gradient(90deg, var(--green), var(--teal) 33%, var(--blue) 66%, var(--purple));
  --display: "Anton", "Arial Narrow", sans-serif;
  --accent: "Instrument Serif", Georgia, serif;
  --body: "Space Grotesk", -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 18px;
  --container: 1160px;
  --slant: 3.5vw;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink-0);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
/* faint fixed spectrum aura over the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(55% 40% at 85% -5%, rgba(139, 107, 255, 0.14), transparent 60%),
    radial-gradient(45% 35% at 0% 30%, rgba(44, 200, 188, 0.09), transparent 60%),
    radial-gradient(50% 40% at 50% 110%, rgba(111, 160, 255, 0.08), transparent 60%);
  pointer-events: none;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--blue); }
::selection { background: rgba(139, 107, 255, 0.45); color: #fff; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3 { margin: 0; }
p { margin: 0 0 1em; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 100;
  background: var(--teal);
  color: var(--ink-0);
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; color: var(--ink-0); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(72px, 9vw, 120px) 0; position: relative; }

/* ---------- Type helpers ---------- */
.kicker {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--spectrum);
  border-radius: 2px;
  flex: none;
}
.display {
  font-family: var(--display);
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: 0.012em;
  font-weight: 400;
}
.acc {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  background: var(--spectrum);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.08em; /* italic overhang */
}
.lede { font-size: clamp(18px, 2.2vw, 21px); color: var(--muted); max-width: 56ch; }
.grad-text {
  background: var(--spectrum);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ghost oversized word/number behind a section */
.ghost {
  position: absolute;
  top: 8px;
  right: 12px;
  font-family: var(--display);
  font-size: clamp(120px, 22vw, 300px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(139, 107, 255, 0.16);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Buttons & chips ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--spectrum);
  color: var(--ink-0);
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(139, 107, 255, 0.35); color: var(--ink-0); }
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--purple); color: var(--text); box-shadow: 0 8px 30px rgba(139, 107, 255, 0.18); }
.btn svg { width: 16px; height: 16px; flex: none; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--spectrum);
  flex: none;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 7, 20, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  flex: none;
}
.brand img { height: 38px; width: auto; }
.brand-name {
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}
.brand-name small {
  display: block;
  font-family: var(--body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.34em;
  color: var(--teal);
  margin-top: 4px;
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--ink-1);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 13px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 8px;
}
.site-nav a:hover { color: var(--text); }
.site-nav a[aria-current="page"] { color: var(--text); }
.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 4px;
  height: 2px;
  background: var(--spectrum);
  border-radius: 2px;
}
.site-nav .give {
  margin-left: 10px;
  min-height: 42px;
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--spectrum);
  color: var(--ink-0);
  font-weight: 700;
}
.site-nav .give:hover { color: var(--ink-0); transform: translateY(-1px); }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--ink-1);
    border-bottom: 1px solid var(--line);
    padding: 14px 20px 20px;
  }
  .site-nav[data-open="true"] { display: flex; }
  .site-nav a { font-size: 16px; padding: 12px 14px; }
  .site-nav a[aria-current="page"]::after { display: none; }
  .site-nav a[aria-current="page"] { background: var(--ink-2); border-radius: 10px; }
  .site-nav .give { margin: 10px 0 0; justify-content: center; }
}

/* ---------- Hero (home) ---------- */
.hero { padding: clamp(64px, 9vw, 130px) 0 clamp(56px, 7vw, 96px); overflow: hidden; }
.hero .container {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero h1 { font-size: clamp(58px, 9.5vw, 124px); margin: 0 0 26px; }
.hero h1 .acc { font-size: 1.12em; display: inline-block; }
.hero .lede { margin-bottom: 32px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-mark { position: relative; display: grid; place-items: center; }
.hero-mark::before {
  content: "";
  position: absolute;
  width: 130%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(139, 107, 255, 0.30), rgba(44, 200, 188, 0.12) 45%, transparent 70%);
  filter: blur(10px);
}
.hero-mark img {
  position: relative;
  width: min(420px, 100%);
  filter: drop-shadow(0 24px 60px rgba(111, 160, 255, 0.35));
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-mark { order: -1; }
  .hero-mark img { width: min(280px, 70vw); }
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 16px 0;
  background: var(--ink-1);
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee span {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(168, 159, 201, 0.55);
  white-space: nowrap;
}
.marquee b { color: var(--teal); -webkit-text-stroke: 0; font-weight: 400; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Section head pattern ---------- */
.sec-head { position: relative; margin-bottom: clamp(40px, 5vw, 64px); z-index: 1; }
.sec-head h2 { font-size: clamp(42px, 6vw, 76px); }
.sec-head .lede { margin-top: 16px; }

/* ---------- Rhythm rows (weekly schedule) ---------- */
.rhythm { border-top: 1px solid var(--line); position: relative; z-index: 1; }
.rhythm-row {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 26px 18px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s ease;
}
.rhythm-row:hover { background: var(--ink-1); }
.rhythm-day {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 44px);
  text-transform: uppercase;
  line-height: 1;
  background: var(--spectrum);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rhythm-row h3 { font-size: 19px; font-weight: 600; margin: 0 0 4px; }
.rhythm-row p { margin: 0; color: var(--muted); font-size: 15px; }
.rhythm-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.rhythm-time {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.rhythm-where { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); }
@media (max-width: 700px) {
  .rhythm-row { grid-template-columns: 1fr; gap: 10px; }
  .rhythm-meta { flex-direction: row; align-items: baseline; gap: 14px; }
}

/* ---------- Slanted band ---------- */
.band {
  position: relative;
  background: var(--ink-1);
  clip-path: polygon(0 var(--slant), 100% 0, 100% calc(100% - var(--slant)), 0 100%);
  padding: calc(clamp(64px, 8vw, 110px) + var(--slant)) 0;
  overflow: hidden;
}
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 90% at 100% 0%, rgba(139, 107, 255, 0.16), transparent 55%),
    radial-gradient(50% 80% at 0% 100%, rgba(44, 200, 188, 0.10), transparent 55%);
  pointer-events: none;
}
.band .container { position: relative; z-index: 1; }
.band-statement {
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1.18;
  font-weight: 500;
  max-width: 22ch;
}
.band-statement .acc { font-size: 1.06em; }
.scripture-ref {
  display: inline-flex;
  margin-top: 26px;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.scripture-ref::before { content: ""; width: 44px; height: 2px; background: var(--spectrum); border-radius: 2px; }
.verse {
  font-family: var(--accent);
  font-style: italic;
  font-size: clamp(19px, 2.4vw, 23px);
  line-height: 1.65;
  color: var(--text);
  max-width: 60ch;
  margin: 18px 0 0;
}

/* ---------- Split (pastor) ---------- */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.split.rev { grid-template-columns: 1.15fr 0.85fr; }
@media (max-width: 860px) { .split, .split.rev { grid-template-columns: 1fr; } }
.photo-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(139, 107, 255, 0.25);
  pointer-events: none;
}
.photo-frame img { width: 100%; }
.photo-beam { position: relative; }
.photo-beam::before {
  content: "";
  position: absolute;
  inset: -14px auto auto -14px;
  width: 60%;
  height: 60%;
  border-radius: var(--radius);
  border: 2px solid transparent;
  background: var(--spectrum) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.8;
  z-index: -1;
}
.pullquote {
  font-family: var(--accent);
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.5;
  margin: 0 0 22px;
}
.pullquote .acc { font-style: italic; }
.attrib { font-size: 13px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); }

/* ---------- Sermon cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .card-grid { grid-template-columns: 1fr; } }
.sermon-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}
.sermon-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 107, 255, 0.55);
  box-shadow: 0 18px 44px rgba(6, 3, 16, 0.6);
}
.sermon-thumb { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.sermon-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.sermon-card:hover .sermon-thumb img { transform: scale(1.04); }
.play-badge {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 7, 20, 0.72));
}
.play-badge span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(10, 7, 20, 0.66);
  border: 1.5px solid rgba(244, 241, 253, 0.85);
  backdrop-filter: blur(4px);
}
.play-badge svg { width: 20px; height: 20px; color: #fff; margin-left: 2px; }
.sermon-body { padding: 18px 20px 20px; }
.sermon-body h3 { font-size: 16.5px; font-weight: 600; margin: 0 0 6px; }
.sermon-body p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Ministry panels ---------- */
.panel {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(28px, 4vw, 52px);
  overflow: hidden;
  z-index: 1;
}
.panel + .panel { margin-top: 28px; }
.panel .ghost { top: -18px; right: 6px; font-size: clamp(140px, 20vw, 260px); }
.panel h3 { font-family: var(--display); font-size: clamp(32px, 4.6vw, 52px); text-transform: uppercase; letter-spacing: 0.02em; line-height: 1; margin-bottom: 18px; max-width: 14ch; }
.panel p { color: var(--muted); max-width: 62ch; }
.panel .chip-row { margin: 22px 0; }
.panel h4 {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 10px;
}
.panel ul { margin: 0; padding: 0; list-style: none; }
.panel li { padding: 7px 0 7px 22px; position: relative; color: var(--text); }
.panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 2px;
  background: var(--spectrum);
}

/* ---------- Big words (Submit / Obey) ---------- */
.bigwords { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; position: relative; z-index: 1; }
@media (max-width: 760px) { .bigwords { grid-template-columns: 1fr; } }
.bigword {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: var(--ink-1);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.bigword .num {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.3em;
  color: var(--teal);
  display: block;
  margin-bottom: 14px;
}
.bigword .word {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 88px);
  text-transform: uppercase;
  line-height: 0.95;
  background: var(--spectrum);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 16px;
}
.bigword p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(40px, 6vw, 72px); margin-bottom: 18px; }
.cta-band .lede { margin: 0 auto 32px; }
.cta-band .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding: clamp(64px, 8vw, 110px) 0 clamp(40px, 5vw, 64px); position: relative; overflow: hidden; }
.page-hero h1 { font-size: clamp(52px, 8.5vw, 104px); margin-bottom: 20px; }
.page-hero .lede { max-width: 60ch; }

/* ---------- Live panel ---------- */
.live-panel {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--line);
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(139, 107, 255, 0.20), transparent 55%),
    radial-gradient(70% 110% at 0% 100%, rgba(44, 200, 188, 0.14), transparent 55%),
    var(--ink-1);
  padding: clamp(32px, 5vw, 64px);
  overflow: hidden;
  z-index: 1;
}
.live-time {
  font-family: var(--display);
  font-size: clamp(52px, 9vw, 110px);
  line-height: 0.95;
  text-transform: uppercase;
  margin: 8px 0 10px;
}
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: clamp(28px, 4vw, 44px); }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step { border-top: 2px solid; border-image: var(--spectrum) 1; padding-top: 16px; }
.step .num { font-family: var(--display); font-size: 15px; letter-spacing: 0.28em; color: var(--teal); display: block; margin-bottom: 8px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }
.step strong { color: var(--text); display: block; margin-bottom: 4px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); position: relative; z-index: 1; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.info-list { border-top: 1px solid var(--line); }
.info-row { display: flex; gap: 18px; padding: 20px 4px; border-bottom: 1px solid var(--line); align-items: flex-start; }
.info-row svg { width: 22px; height: 22px; color: var(--teal); flex: none; margin-top: 3px; }
.info-row h3 { font-size: 12.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin: 0 0 5px; }
.info-row p { margin: 0; font-size: 17px; }
.info-row a { color: var(--text); }

.form-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(24px, 3.5vw, 40px);
}
.form-card h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 8px; }
.form-card > p { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%;
  background: var(--ink-0);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font: inherit;
  padding: 13px 16px;
  min-height: 48px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--purple); outline: none; box-shadow: 0 0 0 3px rgba(139, 107, 255, 0.25); }
.form-note { font-size: 13.5px; color: var(--muted); margin-top: 14px; }

/* ---------- Event specials ---------- */
.special-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; position: relative; z-index: 1; }
@media (max-width: 700px) { .special-grid { grid-template-columns: 1fr; } }
.special {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  background: var(--ink-1);
}
.special h3 { font-size: 18px; margin: 0 0 6px; }
.special p { margin: 0; color: var(--muted); font-size: 15px; }
.special .tag { font-size: 11.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: 10px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--ink-1); margin-top: 0; position: relative; }
.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--spectrum);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(48px, 6vw, 80px) 0 40px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { width: 72px; margin-bottom: 16px; }
.footer-brand .fw-name {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}
.footer-brand .fw-tag {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 8px 0 16px;
}
.footer-brand p { color: var(--muted); font-size: 15px; max-width: 34ch; }
.footer-col h2 { font-size: 12.5px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); margin: 0 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 15px; }
.footer-col a:hover { color: var(--text); }
.footer-col p { color: var(--muted); font-size: 15px; margin: 0 0 10px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--muted);
}

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
