/* =========================================================
   SWAN LAKE PREMIERE FILM FESTIVAL
   Cinematic editorial design system
   ========================================================= */

:root {
  /* Palette */
  --ink: #0E0D0B;
  --ink-2: #16140F;
  --smoke: #1C1914;
  --paper: #F2EBDD;
  --paper-2: #E7DFCE;
  --ash: #8C857A;
  --iris: #6A4A9A;
  --iris-deep: #3E2A60;
  --brass: #C9A24A;
  --brass-2: #E5C57B;
  --rouge: #B5483A;

  /* Type */
  --f-display: 'Fraunces', 'Times New Roman', serif;
  --f-body: 'DM Sans', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Spacing */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --maxw: 1440px;

  /* Lines & easing */
  --line: rgba(242, 235, 221, 0.13);
  --line-strong: rgba(242, 235, 221, 0.32);
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: 'ss01', 'ss02';
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Film grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/></svg>");
}

/* Vignette */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.45) 100%);
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: color 200ms var(--ease), opacity 200ms var(--ease); }

::selection { background: var(--brass); color: var(--ink); }

button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

input, textarea, select { font-family: inherit; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--brass);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--paper);
}

h1 { font-size: clamp(3rem, 9vw, 9rem); font-weight: 350; }
h2 { font-size: clamp(2rem, 5.2vw, 4.4rem); font-weight: 380; }
h3 { font-size: clamp(1.4rem, 2.6vw, 2.2rem); font-weight: 420; font-variation-settings: "opsz" 36, "SOFT" 50, "WONK" 0; }
h4 { font-size: clamp(1.1rem, 1.6vw, 1.35rem); font-weight: 500; font-variation-settings: "opsz" 14, "SOFT" 50, "WONK" 0; line-height: 1.15; }

em, .it { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--paper);
  opacity: 0.92;
  max-width: 60ch;
}

.muted { color: var(--ash); }

.divider-line {
  height: 1px;
  background: var(--line);
  width: 100%;
  margin: 0;
}

/* =========================================================
   LAYOUT
   ========================================================= */

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (min-width: 880px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (min-width: 720px)  { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* Section-number eyebrow row */
.section-mark {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}
.section-mark .num {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--brass);
  text-transform: uppercase;
}
.section-mark .rule {
  flex: 1; min-width: 40px;
  height: 1px; background: var(--line-strong);
  align-self: center;
}

/* =========================================================
   NAV
   ========================================================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(14, 13, 11, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: padding 250ms var(--ease), background 250ms var(--ease);
}

.nav.scrolled { padding-top: 0.8rem; padding-bottom: 0.8rem; background: rgba(14, 13, 11, 0.85); }

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  transition: opacity 200ms var(--ease);
}
.brand:hover { opacity: 0.85; }

.brand img {
  height: 50px;
  width: auto;
  display: block;
  transition: height 250ms var(--ease);
}

.nav.scrolled .brand img { height: 40px; }

@media (max-width: 540px) {
  .brand img { height: 42px; }
  .nav.scrolled .brand img { height: 36px; }
}

.footer__logo {
  height: auto;
  max-width: 200px;
  margin-bottom: 1.5rem;
  display: block;
}

.nav-links {
  display: none;
  gap: 1.7rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.78;
  position: relative;
}

.nav-links a:hover { opacity: 1; color: var(--brass); }

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 1px; background: var(--brass);
}

@media (min-width: 980px) {
  .nav-links { display: flex; }
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--brass);
  color: var(--brass);
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 200ms var(--ease);
}
.nav-cta:hover { background: var(--brass); color: var(--ink); }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  margin-right: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--paper);
  transition: transform 250ms var(--ease), opacity 200ms var(--ease);
}
@media (min-width: 980px) { .nav-toggle { display: none; } }

.nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99;
  background: var(--ink);
  padding: 6rem var(--gutter) 3rem;
  transform: translateY(-100%);
  transition: transform 380ms var(--ease);
  border-bottom: 1px solid var(--line);
  max-height: 100vh; overflow-y: auto;
}
.nav-drawer.is-open { transform: translateY(0); }
.nav-drawer ul { list-style: none; display: flex; flex-direction: column; gap: 1.4rem; }
.nav-drawer a {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 380;
  font-variation-settings: "opsz" 36, "SOFT" 50, "WONK" 0;
  color: var(--paper);
  display: block;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}
.nav-drawer a:hover { color: var(--brass); }
@media (min-width: 980px) { .nav-drawer { display: none; } }

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 250ms var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brass);
  color: var(--ink);
  border-color: var(--brass);
}
.btn-primary:hover {
  background: var(--brass-2);
  border-color: var(--brass-2);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--paper);
  background: rgba(242, 235, 221, 0.04);
}

.btn-iris {
  background: var(--iris);
  color: var(--paper);
  border-color: var(--iris);
}
.btn-iris:hover { background: var(--iris-deep); border-color: var(--iris-deep); }

.btn-arrow { transition: transform 250ms var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-row {
  display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.5rem;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(7rem, 12vw, 10rem) 0 clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 70% at 50% 35%, rgba(106, 74, 154, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(201, 162, 74, 0.12), transparent 60%),
    var(--ink);
  text-align: center;
}

.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero__logo {
  display: block;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
  max-width: clamp(320px, 55vw, 720px);
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(201, 162, 74, 0.18));
  animation: logo-rise 1100ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes logo-rise {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero__sub {
  font-family: var(--f-mono);
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.hero__sub::before, .hero__sub::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--brass);
  opacity: 0.5;
}

.hero__dates {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  font-weight: 360;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--brass);
  margin: 0.5rem 0 1.5rem;
}
.hero__dates em {
  font-style: italic;
  color: var(--brass);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.hero__location {
  font-family: var(--f-mono);
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 2rem;
}

.hero__lede {
  max-width: 36rem;
  margin: 0 auto 2rem;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.6;
  color: var(--paper);
  opacity: 0.85;
}

.hero__cta {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Marquee */
.marquee {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 1.1rem 0;
  margin-top: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  position: relative;
}
.marquee__track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  gap: 3rem;
  padding-right: 3rem;
}
.marquee span {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2.4vw, 2.2rem);
  font-weight: 380;
  font-variation-settings: "opsz" 36, "SOFT" 50, "WONK" 0;
  color: var(--paper);
}
.marquee span.it {
  font-style: italic;
  color: var(--brass);
  font-variation-settings: "opsz" 36, "SOFT" 100, "WONK" 1;
}
.marquee .star { color: var(--iris); font-size: 1.2em; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Vertical date label on hero edge */
.hero__edge {
  position: absolute;
  top: 50%;
  right: clamp(0.5rem, 1.5vw, 1.5rem);
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ash);
  z-index: 1;
}
@media (max-width: 880px) { .hero__edge { display: none; } }

/* =========================================================
   SWAN MARK (background watermark)
   ========================================================= */

.swan-bg {
  position: absolute;
  pointer-events: none;
  opacity: 0.05;
  z-index: 0;
}

/* =========================================================
   COUNTDOWN
   ========================================================= */

.countdown {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  align-items: baseline;
}
.countdown__unit {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.countdown__num {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 380;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  line-height: 1;
  color: var(--brass);
  font-feature-settings: 'tnum';
}
.countdown__label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
}

/* =========================================================
   FEATURE CARDS
   ========================================================= */

.feature-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(242,235,221,0.02), rgba(242,235,221,0));
  padding: clamp(1.75rem, 3vw, 2.5rem);
  position: relative;
  transition: border-color 250ms var(--ease), transform 350ms var(--ease);
}
.feature-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }

.feature-card__num {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.5rem;
}
.feature-card h3 { margin-bottom: 0.8rem; }
.feature-card p { color: var(--paper); opacity: 0.78; font-size: 0.97rem; }

.feature-card .tags {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-top: 1.4rem;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
}
.feature-card .tags span {
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* =========================================================
   PITCH FEST + COMING SOON BLOCK
   ========================================================= */

.pitch {
  position: relative;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(106, 74, 154, 0.25), transparent 60%),
    var(--smoke);
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.pitch__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 880px) {
  .pitch__grid { grid-template-columns: 1.1fr 1fr; align-items: end; }
}

.pitch h2 em { color: var(--brass-2); }

.pitch-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 2rem;
}
.pitch-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}
.pitch-list li:last-child { border-bottom: 0; }
.pitch-list .index {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--brass);
  min-width: 2.5rem;
  padding-top: 0.25rem;
}

/* =========================================================
   COMING SOON / HOLDING PAGES
   ========================================================= */

.hold {
  text-align: center;
  padding: clamp(5rem, 12vw, 9rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(201, 162, 74, 0.06), transparent 70%);
}
.hold__inner { max-width: 640px; margin: 0 auto; padding: 0 var(--gutter); }
.hold__stamp {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  border: 1px solid var(--brass);
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  border-radius: 2px;
}
.hold h1 { font-size: clamp(2.4rem, 7vw, 5.5rem); margin-bottom: 1.5rem; }
.hold h1 em { color: var(--brass-2); }
.hold p { font-size: 1.1rem; opacity: 0.85; margin-bottom: 2rem; }

/* =========================================================
   NEWSLETTER
   ========================================================= */

.newsletter {
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(201, 162, 74, 0.1), transparent 60%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(106, 74, 154, 0.15), transparent 60%),
    var(--ink-2);
  border-top: 1px solid var(--line);
  padding: clamp(4rem, 9vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.newsletter__grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}
@media (min-width: 880px) {
  .newsletter__grid { grid-template-columns: 1fr 1fr; }
}

.newsletter h2 em { color: var(--brass-2); }

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0.85rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.newsletter-form input[type=email] {
  flex: 1;
  min-width: 200px;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--paper);
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 380;
  font-variation-settings: "opsz" 36, "SOFT" 50, "WONK" 0;
  padding: 0.6rem 0;
}
.newsletter-form input[type=email]::placeholder { color: var(--ash); font-style: italic; }
.newsletter-form button {
  background: var(--brass);
  color: var(--ink);
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 200ms var(--ease);
}
.newsletter-form button:hover { background: var(--brass-2); transform: translateY(-1px); }

.newsletter__small {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: 1rem;
}

.form-success {
  display: none;
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--brass);
  color: var(--brass-2);
  font-family: var(--f-mono);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}
.form-success.show { display: block; }

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  background: var(--ink);
  border-top: 1px solid var(--line-strong);
  padding: clamp(4rem, 7vw, 6rem) 0 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 880px) {
  .footer__top { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.footer__title {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 400;
  font-variation-settings: "opsz" 36, "SOFT" 50, "WONK" 0;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.footer__title em { color: var(--brass-2); }

.footer h4 {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer ul a { color: var(--paper); opacity: 0.78; font-size: 0.95rem; }
.footer ul a:hover { color: var(--brass); opacity: 1; }

.footer__address { color: var(--paper); opacity: 0.78; font-size: 0.95rem; line-height: 1.7; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
  flex-wrap: wrap;
}
.footer__bottom a:hover { color: var(--brass); }

/* =========================================================
   PAGE HEADER (interior pages)
   ========================================================= */

.page-header {
  padding: clamp(8rem, 14vw, 12rem) 0 clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(106, 74, 154, 0.15), transparent 60%),
    var(--ink);
  position: relative;
}
.page-header h1 {
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  margin-top: 0.5rem;
  font-weight: 340;
}
.page-header h1 em { color: var(--brass-2); }
.page-header .crumbs {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
}
.page-header .crumbs a:hover { color: var(--brass); }
.page-header .crumbs .sep { margin: 0 0.6rem; opacity: 0.5; }
.page-header__lede {
  margin-top: 1.5rem;
  max-width: 50rem;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  opacity: 0.85;
}

/* =========================================================
   PROSE BLOCKS (about/competition)
   ========================================================= */

.prose {
  max-width: 60ch;
  font-size: 1.05rem;
  line-height: 1.7;
}
.prose p { margin-bottom: 1.3em; opacity: 0.9; }
.prose h2 { margin: 2.5rem 0 1.2rem; }
.prose h3 { margin: 2rem 0 1rem; }
.prose strong { color: var(--brass-2); font-weight: 500; }

.bullets { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; margin: 1.2em 0; }
.bullets li {
  padding-left: 1.6rem;
  position: relative;
  opacity: 0.9;
}
.bullets li::before {
  content: "✦";
  position: absolute; left: 0; top: 0;
  color: var(--brass);
  font-size: 0.85rem;
}

/* =========================================================
   AWARD GRID (competition)
   ========================================================= */

.awards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 720px) { .awards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .awards { grid-template-columns: repeat(3, 1fr); } }

.award {
  padding: 1.6rem 1.4rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 250ms var(--ease);
}
.award:hover { background: rgba(242,235,221,0.025); }
.award .num {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--brass);
}
.award h4 { font-size: 1.1rem; }
.award p { font-size: 0.88rem; color: var(--ash); }

/* =========================================================
   VENUE / MAP / SCHEDULE
   ========================================================= */

.map-frame {
  border: 1px solid var(--line-strong);
  background: var(--smoke);
  padding: 2px;
  border-radius: 2px;
  overflow: hidden;
  filter: grayscale(0.55) brightness(0.85) contrast(1.05);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg);
}

.schedule-day {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0;
}
.schedule-day:last-child { border-bottom: 1px solid var(--line); }
.schedule-day__head {
  display: flex; align-items: baseline; gap: 1.5rem; margin-bottom: 1.5rem; flex-wrap: wrap;
}
.schedule-day__date {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 380;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
}
.schedule-day__date em { color: var(--brass-2); }
.schedule-day__weekday {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--ash);
  text-transform: uppercase;
}

.schedule-blocks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.schedule-blocks li {
  display: grid;
  grid-template-columns: clamp(7.5rem, 14vw, 11rem) 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  padding: 1.1rem 0;
  border-top: 1px dashed var(--line);
  align-items: baseline;
}
.schedule-blocks li:first-child { border-top: none; padding-top: 0.4rem; }
.schedule-blocks .when {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  padding-top: 0.25rem;
}
.schedule-blocks .what {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.schedule-blocks .what strong {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 460;
  color: var(--paper);
  font-variation-settings: "opsz" 36, "SOFT" 50, "WONK" 0;
}
.schedule-blocks .what span {
  font-size: 0.94rem;
  color: var(--ash);
  line-height: 1.5;
}
@media (max-width: 640px) {
  .schedule-blocks li { grid-template-columns: 1fr; gap: 0.3rem; }
  .schedule-blocks .when { padding-top: 0; }
}

.card-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  border-top: 1px dashed var(--line);
}
.card-list li {
  padding: 0.6rem 0;
  font-size: 0.85rem;
  color: var(--ash);
  border-bottom: 1px dashed var(--line);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.card-list li:last-child { border-bottom: none; }
.card-list li::before {
  content: "✦";
  color: var(--brass);
  font-size: 0.7em;
  flex-shrink: 0;
}

.how-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: how;
}
.how-list li {
  display: grid;
  grid-template-columns: clamp(3.5rem, 7vw, 5.5rem) 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.how-list li:last-child { border-bottom: 1px solid var(--line); }
.how-list .step {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--brass);
  padding-top: 0.4rem;
}
.how-list h4 {
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 460;
  color: var(--paper);
  font-variation-settings: "opsz" 36, "SOFT" 50, "WONK" 0;
  margin-bottom: 0.4rem;
}
.how-list p {
  font-size: 0.95rem;
  color: var(--ash);
  line-height: 1.55;
}

/* =========================================================
   PARTNER STRIP
   ========================================================= */

.partner-strip {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partner-strip h3 {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--brass-2);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}
.partner-strip__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--brass);
  width: max-content;
}
.partner-strip__cta:hover { color: var(--brass-2); border-color: var(--brass-2); }

/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-form .field { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-form label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
}
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--paper);
  padding: 0.7rem 0;
  font-size: 1.05rem;
  font-family: var(--f-body);
  outline: 0;
  transition: border-color 200ms var(--ease);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--brass); }
.contact-form textarea { min-height: 140px; }
.contact-form button { align-self: flex-start; margin-top: 1rem; }

/* Honeypot */
.hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* =========================================================
   ANIMATIONS
   ========================================================= */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 800ms var(--ease), transform 800ms var(--ease);
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal[data-delay="1"] { transition-delay: 80ms; }
  .reveal[data-delay="2"] { transition-delay: 160ms; }
  .reveal[data-delay="3"] { transition-delay: 240ms; }
  .reveal[data-delay="4"] { transition-delay: 320ms; }
}

/* =========================================================
   UTILS
   ========================================================= */

.center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }
.full-bleed { width: 100vw; margin-left: calc(50% - 50vw); }

.tag-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
}
.tag-pill .dot { width: 6px; height: 6px; background: var(--brass); border-radius: 50%; }
.tag-pill--iris .dot { background: var(--iris); }
.tag-pill--rouge .dot { background: var(--rouge); }
