/* ============================================================
   Phoenix Awards 2026 — phoenix.css
   VARIANT: V1 "Editorial Classic" (base skin).
   Layered on MSN ../css/style.css + ../css/overrides.css (tokens + .evf + .cf-footer).
   Brand: sharp corners, Playfair headings, gold on near-black, pure #fff on dark.
   ============================================================ */

:root {
  --phx-bg: #0a0a0a;
  --phx-bg-2: #111111;
  --phx-bg-3: #161616;
  --phx-ink: #ffffff;
  --phx-soft: #e8e6e3;
  --phx-muted: #b0aca8;
  --phx-line: #2a2a2a;
  --phx-gold: #ddc074;
  --phx-gold-deep: #c5a55a;
  --phx-red: #e31b23;
  --phx-pad: clamp(3.5rem, 8vw, 7rem);
}

/* ---- page frame ---- */
body { margin: 0; background: var(--phx-bg); color: var(--phx-ink);
  font-family: 'Geist','Inter',system-ui,sans-serif; line-height: 1.6;
  -webkit-font-smoothing: antialiased; }
* { box-sizing: border-box; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.skip-nav { position: absolute; left: -9999px; }
.skip-nav:focus { left: 1rem; top: 1rem; background: var(--phx-gold); color: #000; padding: .6rem 1rem; z-index: 200; }

.phx-shell { width: min(1160px, calc(100vw - 2.5rem)); margin: 0 auto; }
@media (max-width: 640px) { .phx-shell { width: calc(100vw - 1.5rem); } }

/* ---- NAV ---- */
.phx-nav { position: sticky; top: 0; z-index: 100; display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem; padding: .85rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(10,10,10,.86); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--phx-line); }
.phx-logo { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; }
.phx-logo img { width: 36px; height: 36px; }
.phx-logo-text { font-family: 'Playfair Display',serif; font-size: 1.2rem; font-weight: 700;
  letter-spacing: .01em; color: var(--phx-ink); }
.phx-nav .nav-links { display: flex; align-items: center; gap: 1.4rem; }
.phx-nav .nav-links a { text-decoration: none; color: var(--phx-soft); font-size: .9rem;
  font-weight: 500; transition: color 180ms ease; }
.phx-nav .nav-links a:hover { color: var(--phx-gold); }
/* NOTE: the shared MSN top-nav (nav.nav#msn-nav) owns .lang-toggle / .nav-cta /
   .nav-hamburger styling via ../css/style.css + ../css/overrides.css. The rules
   below are scoped to the legacy .phx-nav container ONLY so they never leak onto
   the shared top-nav and force Phoenix to match the spoke pages (Partnership/
   Program/Registration). Do NOT un-scope these. */
.phx-nav .lang-toggle { background: none; border: 1px solid var(--phx-line); color: var(--phx-muted);
  font-family: 'Geist Mono',monospace; font-size: .8rem; padding: .35rem .6rem; cursor: pointer;
  letter-spacing: .04em; }
.phx-nav .lang-toggle .lang-opt.is-active { color: var(--phx-gold); }
.phx-nav .nav-cta { background: var(--phx-gold); color: #000 !important; padding: .55rem 1.1rem;
  font-weight: 600; text-decoration: none; transition: background 180ms ease; }
.phx-nav .nav-cta:hover { background: #fff; }
.phx-nav .nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 10px; }
.phx-nav .nav-hamburger span { width: 24px; height: 2px; background: var(--phx-ink); display: block; }

/* ---- HERO ---- */
.phx-hero { position: relative; min-height: 100dvh; display: flex; align-items: center;
  overflow: hidden; }
.phx-hero-bg { position: absolute; inset: 0; z-index: 0; }
.phx-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.phx-hero-overlay { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(10,10,10,.92) 0%, rgba(10,10,10,.74) 45%, rgba(10,10,10,.45) 100%); }
.phx-hero-content { position: relative; z-index: 2; width: min(1160px, calc(100vw - 2.5rem));
  margin: 0 auto; padding: 6rem 0; }
.phx-hero-kicker { font-family: 'Geist Mono',monospace; text-transform: uppercase; letter-spacing: .22em;
  font-size: .78rem; color: var(--phx-gold); margin: 0 0 1.2rem; }
.phx-hero-title { font-family: 'Playfair Display',serif; font-weight: 700; line-height: 1.05;
  font-size: clamp(3rem, 8vw, 6rem); color: var(--phx-gold-deep);
  -webkit-text-stroke: 2px #ffffff; text-shadow: 0 2px 24px rgba(0,0,0,.85); margin: 0 0 1.2rem; }
.phx-hero-tagline { font-family: 'Playfair Display',serif; font-style: italic;
  font-size: clamp(1.4rem, 3.4vw, 2.3rem); color: var(--phx-ink); max-width: 22ch; margin: 0 0 1.6rem;
  text-shadow: 0 1px 12px rgba(0,0,0,.7); }
.phx-hero-meta { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center;
  font-size: 1.05rem; font-weight: 600; color: var(--phx-ink); margin: 0 0 .4rem; }
.phx-dot { color: var(--phx-gold); }
.phx-hero-context { font-family: 'Geist Mono',monospace; font-size: .85rem; letter-spacing: .08em;
  color: var(--phx-gold); text-transform: uppercase; margin: 0 0 2rem; }
.phx-hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---- BUTTONS ---- */
.phx-btn { display: inline-block; padding: .85rem 1.6rem; font-weight: 600; font-size: .95rem;
  text-decoration: none; border-radius: 0; transition: all 180ms ease; cursor: pointer; border: 1px solid transparent; }
.phx-btn-primary { background: var(--phx-gold); color: #000; }
.phx-btn-primary:hover { background: #fff; }
.phx-btn-ghost { background: transparent; color: var(--phx-ink); border-color: rgba(255,255,255,.35); }
.phx-btn-ghost:hover { border-color: var(--phx-gold); color: var(--phx-gold); }

/* ---- SECTIONS ---- */
.phx-section { padding: var(--phx-pad) 0; border-top: 1px solid var(--phx-line); }
.phx-section:nth-of-type(even) { background: var(--phx-bg-2); }
.phx-manifest { background: var(--phx-bg); }
.phx-categories { background: var(--phx-bg-2); }
.phx-section-header { max-width: 60ch; margin: 0 0 3rem; }
.phx-pretitle { font-family: 'Geist Mono',monospace; text-transform: uppercase; letter-spacing: .2em;
  font-size: .76rem; color: var(--phx-gold); margin: 0 0 1rem; padding-left: 2.6rem; position: relative; }
.phx-pretitle::before { content: ""; position: absolute; left: 0; top: 50%; width: 2rem; height: 2px;
  background: var(--phx-red); transform: translateY(-50%); }
.phx-title { font-family: 'Playfair Display',serif; font-weight: 700; line-height: 1.12;
  font-size: clamp(1.9rem, 4.2vw, 3rem); color: var(--phx-ink); margin: 0 0 1rem; text-wrap: balance; }
.phx-subtitle { font-size: 1.08rem; color: var(--phx-muted); margin: 0; }
.phx-minihead { font-family: 'Geist Mono',monospace; text-transform: uppercase; letter-spacing: .14em;
  font-size: .82rem; color: var(--phx-gold); margin: 2.4rem 0 1rem; }
.phx-lead { font-size: 1.25rem; line-height: 1.55; color: var(--phx-soft); }
.phx-body { font-size: 1.05rem; color: var(--phx-soft); max-width: 65ch; }
.phx-note { font-size: .92rem; color: var(--phx-muted); }
.phx-tba { font-family: 'Geist Mono',monospace; font-size: .82rem; color: var(--phx-gold);
  letter-spacing: .04em; margin-top: 1.6rem; }

/* ---- MANIFEST ---- */
.phx-manifest-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.4rem; align-items: start; }
.phx-dropcap::first-letter { font-family: 'Playfair Display',serif; font-size: 3.6rem; font-weight: 700;
  float: left; line-height: .8; padding: .35rem .5rem 0 0; color: var(--phx-gold); }
.phx-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.phx-pillar { border: 1px solid var(--phx-line); padding: 1.8rem; background: var(--phx-bg-3); }
.phx-pillar-num { font-family: 'Geist Mono',monospace; font-size: .9rem; color: var(--phx-gold); margin-bottom: .8rem; }
.phx-pillar h3 { font-family: 'Playfair Display',serif; font-size: 1.4rem; margin: 0 0 .7rem; color: var(--phx-ink); }
.phx-pillar p { color: var(--phx-muted); font-size: .98rem; margin: 0; }

/* ---- CATEGORIES ---- */
.phx-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.phx-cat-card { border: 1px solid var(--phx-line); padding: 1.8rem; background: var(--phx-bg); transition: border-color 180ms ease, transform 180ms ease; }
.phx-cat-card:hover { border-color: var(--phx-gold); transform: translateY(-3px); }
.phx-cat-card h3 { font-family: 'Playfair Display',serif; font-size: 1.35rem; margin: .4rem 0 .7rem; color: var(--phx-ink); }
.phx-cat-card p { color: var(--phx-muted); font-size: .96rem; margin: 0; }
.phx-cat-no { font-family: 'Geist Mono',monospace; font-size: .85rem; color: var(--phx-muted); }
.phx-cat-grand { grid-column: 1 / -1; background: linear-gradient(135deg, rgba(221,192,116,.14), rgba(10,10,10,.2)); border-color: var(--phx-gold); }
.phx-cat-grand h3 { font-size: 1.7rem; }
.phx-cat-tag { display: inline-block; font-family: 'Geist Mono',monospace; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .14em; color: #000; background: var(--phx-gold); padding: .25rem .6rem; }
.phx-cat-tba { border-style: dashed; }
.phx-cat-note { font-size: .85rem; color: var(--phx-gold); font-family: 'Geist Mono',monospace; margin: 0 0 .6rem; }

/* ---- STEPS ---- */
.phx-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.phx-step { border-left: 2px solid var(--phx-gold); padding: .2rem 0 .2rem 1.5rem; }
.phx-step-num { font-family: 'Playfair Display',serif; font-size: 2.6rem; color: var(--phx-gold-deep);
  -webkit-text-stroke: 1px var(--phx-gold); line-height: 1; margin-bottom: .6rem; }
.phx-step h3 { font-family: 'Playfair Display',serif; font-size: 1.3rem; margin: 0 0 .6rem; }
.phx-step p { color: var(--phx-muted); font-size: .96rem; margin: 0; }
.phx-submit-foot { margin-top: 2.6rem; display: flex; flex-direction: column; gap: .5rem; align-items: flex-start; }
.phx-submit-foot .phx-btn { margin-top: 1rem; }

/* ---- JURY ---- */
.phx-rules { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; max-width: 70ch; }
.phx-rules li { position: relative; padding-left: 1.6rem; color: var(--phx-soft); }
.phx-rules li::before { content: ""; position: absolute; left: 0; top: .55rem; width: .6rem; height: .6rem; background: var(--phx-gold); }

/* ---- PARTNERS ---- */
.phx-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.phx-tier { border: 1px solid var(--phx-line); padding: 1.8rem; background: var(--phx-bg-3); position: relative; }
.phx-tier h3 { font-family: 'Playfair Display',serif; font-size: 1.4rem; margin: 0 0 .8rem; color: var(--phx-ink); }
.phx-tier p { color: var(--phx-muted); font-size: .96rem; margin: 0; }
.phx-tier-title { border-color: var(--phx-gold); background: linear-gradient(135deg, rgba(221,192,116,.12), transparent); }
.phx-tier-badge { position: absolute; top: 1rem; right: 1rem; font-family: 'Geist Mono',monospace;
  font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: #000; background: var(--phx-gold); padding: .2rem .55rem; }
.phx-role-list { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: .7rem; max-width: 72ch; }
.phx-role-list li { position: relative; padding-left: 1.5rem; color: var(--phx-soft); font-size: .98rem; }
.phx-role-list li::before { content: "→"; position: absolute; left: 0; color: var(--phx-gold); }
.phx-partners-cta { margin-top: 2.4rem; display: flex; flex-direction: column; gap: .9rem; align-items: flex-start; }
.phx-partners-cta p { color: var(--phx-muted); margin: 0; }

/* ---- SHOWCASE ---- */
.phx-showcase { background: var(--phx-bg-3); }
.phx-showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.phx-video-tile { margin: 0; }
.phx-video-thumb { aspect-ratio: 16 / 10; background-size: cover; background-position: center;
  position: relative; border: 1px solid var(--phx-line); display: flex; align-items: center; justify-content: center; }
.phx-video-thumb::after { content: ""; position: absolute; inset: 0; background: rgba(10,10,10,.45); }
.phx-play { position: relative; z-index: 1; width: 56px; height: 56px; display: grid; place-items: center;
  background: var(--phx-gold); color: #000; font-size: 1.1rem; }
.phx-video-tile figcaption { margin-top: .8rem; color: var(--phx-soft); font-size: .96rem; }

/* ---- TIMELINE ---- */
.phx-timeline { list-style: none; padding: 0; margin: 0; border-left: 2px solid var(--phx-line); }
.phx-tl-row { position: relative; padding: 0 0 1.6rem 1.8rem; }
.phx-tl-row p { margin: 0; color: var(--phx-soft); }
.phx-tl-dot { position: absolute; left: -7px; top: .4rem; width: 12px; height: 12px; background: var(--phx-muted); }
.phx-tl-gala .phx-tl-dot { background: var(--phx-gold); box-shadow: 0 0 0 4px rgba(221,192,116,.2); }
.phx-tl-gala p { color: var(--phx-gold); font-weight: 600; }

/* ---- INSPO ---- */
.phx-inspo-lead { margin-bottom: 1rem; }
.phx-project-grid { list-style: none; padding: 0; margin: 0; display: grid;
  grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.phx-project { border: 1px solid var(--phx-line); background: var(--phx-bg-3); padding: 1.3rem 1rem;
  font-family: 'Playfair Display',serif; font-size: 1.1rem; color: var(--phx-soft);
  display: flex; align-items: center; min-height: 90px; transition: all 180ms ease; }
.phx-project:hover { border-color: var(--phx-gold); color: var(--phx-ink); }

/* ---- GALA ---- */
.phx-gala { background: var(--phx-bg-2); }
.phx-gala .phx-btn { margin-top: 1.4rem; }
.phx-gala .phx-body { margin: 0 0 1rem; }

/* ---- FAQ ---- */
.phx-faq-list { display: grid; gap: .8rem; max-width: 80ch; }
.phx-faq-item { border: 1px solid var(--phx-line); background: var(--phx-bg); }
.phx-faq-item summary { cursor: pointer; padding: 1.1rem 1.3rem; font-weight: 600; color: var(--phx-ink);
  font-size: 1.02rem; list-style: none; position: relative; }
.phx-faq-item summary::-webkit-details-marker { display: none; }
.phx-faq-item summary::after { content: "+"; position: absolute; right: 1.3rem; color: var(--phx-gold); font-size: 1.3rem; }
.phx-faq-item[open] summary::after { content: "–"; }
.phx-faq-item p { margin: 0; padding: 0 1.3rem 1.2rem; color: var(--phx-muted); }

/* ---- DOCS ---- */
.phx-contact { margin-top: 2.4rem; }
.phx-contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.phx-contact-list li { color: var(--phx-soft); }

/* ---- REVEAL (enhancement only — content is ALWAYS visible by default;
   the fade plays when JS adds .is-in. Never hides content if JS/IO is absent
   or in a static full-page capture). ---- */
.phx-reveal.is-in { animation: phxFade .6s ease both; }
@keyframes phxFade { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .phx-reveal.is-in { animation: none; } }

/* ---- RESPONSIVE ---- */
@media (max-width: 980px) {
  .phx-manifest-grid { grid-template-columns: 1fr; }
  .phx-pillars, .phx-cat-grid, .phx-steps, .phx-tiers, .phx-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .phx-project-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .phx-nav .nav-links { position: fixed; inset: 56px 0 auto 0; flex-direction: column; align-items: flex-start;
    gap: 0; background: rgba(10,10,10,.98); border-bottom: 1px solid var(--phx-line); padding: 1rem 1.5rem;
    transform: translateY(-120%); transition: transform 220ms ease; }
  .phx-nav .nav-links.is-open { transform: translateY(0); }
  .phx-nav .nav-links a, .phx-nav .nav-links .nav-cta { width: 100%; padding: .9rem 0; }
  .nav-hamburger { display: flex; }
  .phx-pillars, .phx-cat-grid, .phx-steps, .phx-tiers, .phx-showcase-grid { grid-template-columns: 1fr; }
  .phx-cat-grand { grid-column: auto; }
  .phx-project-grid { grid-template-columns: repeat(2, 1fr); }
  .phx-hero-overlay { background: linear-gradient(180deg, rgba(10,10,10,.6) 0%, rgba(10,10,10,.85) 100%); }
}
@media (max-width: 640px) {
  .phx-project-grid { grid-template-columns: 1fr; }
}
