:root {
  --black: #080808;
  --black-soft: #111;
  --white: #fff;
  --off-white: #f2f2f0;
  --grey: #999;
  --line: rgba(255,255,255,.18);
  --accent: #ffcd00;
  --header-height: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--white); background: var(--black); font-family: Inter, Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }
button { color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 9999; background: var(--white); color: var(--black); padding: 12px 16px; transition: top .2s; }
.skip-link:focus { top: 12px; }

.site-header { position: sticky; top: 0; z-index: 1000; background: var(--white); color: var(--black); border-bottom: 1px solid rgba(0,0,0,.15); }
.header-main { position: relative; height: var(--header-height); display: grid; grid-template-columns: minmax(0, 1fr) 230px minmax(0, 1fr); align-items: stretch; padding: 0 32px; }
.brand { grid-column: 2; position: relative; z-index: 3; display: flex; align-items: center; justify-content: center; min-width: 0; }
.brand-logo { width: 210px; height: 58px; object-fit: contain; object-position: center; }
.brand-fallback { display: none; font-family: "Archivo Black", sans-serif; font-size: 18px; letter-spacing: -.05em; white-space: nowrap; }
.desktop-nav { height: 100%; display: flex; align-items: stretch; min-width: 0; }
.desktop-nav--left { grid-column: 1; grid-row: 1; justify-self: start; }
.header-right { grid-column: 3; grid-row: 1; justify-self: end; display: flex; align-items: stretch; min-width: 0; }
.desktop-nav--right { justify-content: flex-end; }
.desktop-nav--right .header-link { align-self: center; margin: 0 14px 0 10px; }
.nav-item { position: relative; display: inline-flex; align-items: center; gap: 7px; padding: 0 15px; border: 0; background: transparent; color: #161616; text-transform: uppercase; white-space: nowrap; font-size: 11px; font-weight: 800; letter-spacing: .105em; cursor: pointer; }
.nav-item::after { content: ""; position: absolute; left: 15px; right: 15px; bottom: 0; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: center; transition: transform .2s ease; }
.nav-item:hover::after, .nav-item:focus-visible::after, .nav-item[aria-expanded="true"]::after { transform: scaleX(1); }
.nav-item svg { width: 10px; fill: none; stroke: currentColor; stroke-width: 1.7; transition: transform .2s; }
.nav-item[aria-expanded="true"] svg { transform: rotate(180deg); }
.header-link { text-transform: uppercase; white-space: nowrap; font-size: 11px; font-weight: 800; letter-spacing: .12em; border-bottom: 2px solid var(--accent); padding: 8px 0; }
.header-socials { display: flex; align-items: center; gap: 3px; padding-left: 10px; border-left: 1px solid rgba(0,0,0,.15); }
.header-socials a { width: 34px; height: 100%; display: grid; place-items: center; color: #333; transition: color .18s, background .18s; }
.header-socials a:hover, .header-socials a:focus-visible { color: var(--black); background: rgba(0,0,0,.06); }
.header-socials svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.header-socials .social-fill { fill: currentColor; stroke: none; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; padding: 9px 5px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: var(--black); margin: 6px 0; transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.dropdown-panel { position: absolute; top: 100%; left: 0; right: 0; background: var(--white); color: var(--black); border-bottom: 1px solid rgba(0,0,0,.15); box-shadow: 0 18px 35px rgba(0,0,0,.12); visibility: hidden; opacity: 0; transform: translateY(-8px); pointer-events: none; transition: opacity .18s, transform .18s, visibility .18s; }
.dropdown-panel.is-open { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; }
.dropdown-inner { width: 100%; display: grid; grid-template-columns: 34% 66%; min-height: 270px; }
.dropdown-inner--compact { grid-template-columns: 1fr; }
.dropdown-feature { padding: 38px 48px; border-right: 1px solid rgba(0,0,0,.14); background: #f2f2ef; }
.dropdown-feature strong { display: block; max-width: 440px; margin-top: 24px; font-family: "Archivo Black", sans-serif; font-size: clamp(26px, 3vw, 48px); line-height: .95; text-transform: uppercase; letter-spacing: -.04em; }
.dropdown-feature p { max-width: 380px; color: #555; line-height: 1.6; }
.dropdown-links { display: grid; grid-template-columns: repeat(2, 1fr); }
.dropdown-links a { min-height: 135px; display: grid; grid-template-columns: 38px 1fr; align-content: center; padding: 28px 34px; border-right: 1px solid rgba(0,0,0,.14); border-bottom: 1px solid rgba(0,0,0,.14); transition: background .2s, color .2s; }
.dropdown-links a:hover, .dropdown-links a:focus-visible { background: var(--black); color: var(--white); }
.dropdown-links span { grid-row: 1 / 3; color: var(--grey); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.dropdown-links strong { text-transform: uppercase; font-size: 16px; letter-spacing: .03em; }
.dropdown-links small { margin-top: 6px; color: var(--grey); font-size: 12px; }
.mobile-menu { display: none; }

.hero { position: relative; min-height: calc(100vh - var(--header-height)); overflow: hidden; display: flex; align-items: flex-end; padding: clamp(70px, 10vw, 140px) 5vw 8vw; background: radial-gradient(circle at 78% 42%, #ffffff 0, #f4f4f1 42%, #e7e7e2 100%); color: var(--black); }
.hero-grid { position: absolute; inset: 0; opacity: .1; background-image: linear-gradient(rgba(0,0,0,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.2) 1px, transparent 1px); background-size: 80px 80px; transform: perspective(600px) rotateX(58deg) scale(1.5) translateY(22%); transform-origin: bottom; }
.hero-content { position: relative; z-index: 2; width: min(960px, 88vw); }
.hero-kicker, .eyebrow { margin: 0 0 18px; color: var(--accent); text-transform: uppercase; font-size: 11px; font-weight: 800; letter-spacing: .2em; }
.hero h1 { margin: 0; font-family: "Archivo Black", sans-serif; font-size: clamp(62px, 10vw, 154px); line-height: .79; letter-spacing: -.075em; text-transform: uppercase; }
.hero h1 span { color: transparent; -webkit-text-stroke: 1.8px rgba(0,0,0,.78); }
.hero-copy { max-width: 650px; margin: 34px 0 0; color: #3f3f3f; font-size: clamp(16px, 1.6vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1px; margin-top: 34px; }
.action-link { min-width: 220px; display: inline-flex; justify-content: space-between; align-items: center; gap: 28px; padding: 18px 20px; border: 1px solid rgba(0,0,0,.55); text-transform: uppercase; font-size: 11px; font-weight: 800; letter-spacing: .12em; transition: background .2s, color .2s; }
.action-link:hover { background: var(--black); color: var(--white); }
.action-link--primary { background: var(--accent); color: var(--black); border-color: var(--accent); }
.action-link--primary:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.hero-mark { position: absolute; right: -1vw; bottom: -5vw; font-family: "Archivo Black", sans-serif; font-size: 35vw; line-height: .7; letter-spacing: -.12em; color: rgba(0,0,0,.035); }

.ticker { overflow: hidden; background: var(--accent); color: var(--black); padding: 14px 0; }
.ticker-track { width: max-content; min-width: 100%; display: flex; justify-content: space-around; align-items: center; gap: 32px; padding: 0 3vw; font-size: 11px; font-weight: 900; letter-spacing: .16em; white-space: nowrap; }
.ticker i { width: 6px; height: 6px; background: var(--black); transform: rotate(45deg); }
.section-label { color: var(--grey); text-transform: uppercase; font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.intro-section { display: grid; grid-template-columns: 25% 75%; padding: clamp(70px, 10vw, 160px) 5vw; background: var(--off-white); color: var(--black); }
.intro-copy { max-width: 1000px; }
.intro-copy .lead { margin: 0 0 20px; font-size: clamp(16px, 1.5vw, 22px); font-weight: 700; }
.intro-copy h2, .section-heading h2, .event-copy h2, .players-copy h2, .signup-section h2 { margin: 0; font-family: "Archivo Black", sans-serif; font-size: clamp(42px, 7vw, 100px); line-height: .93; text-transform: uppercase; letter-spacing: -.055em; }
.intro-copy > p:last-child { max-width: 700px; margin: 34px 0 0 auto; color: #444; font-size: 17px; line-height: 1.75; }
.format-section { padding: clamp(80px, 10vw, 150px) 5vw; }
.section-heading { display: grid; grid-template-columns: 25% 75%; align-items: start; margin-bottom: 70px; }
.format-rows { border-top: 1px solid var(--line); }
.format-rows article { display: grid; grid-template-columns: 12% 34% 54%; align-items: center; min-height: 150px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.format-rows article > span { color: var(--accent); font-size: 11px; font-weight: 900; }
.format-rows h3 { margin: 0; text-transform: uppercase; font-size: clamp(22px, 3vw, 42px); }
.format-rows p { max-width: 520px; margin: 0; color: #aaa; font-size: 15px; line-height: 1.65; }
.event-section { position: relative; min-height: 620px; display: flex; align-items: flex-end; overflow: hidden; padding: 7vw 5vw; background: var(--accent); color: var(--black); }
.event-copy { position: relative; z-index: 2; max-width: 850px; }
.event-copy .eyebrow { color: var(--black); }
.event-copy p { max-width: 550px; font-size: 17px; line-height: 1.6; }
.action-link--light { border-color: var(--black); }
.event-number { position: absolute; right: -2vw; bottom: -10vw; font-family: "Archivo Black", sans-serif; font-size: 50vw; line-height: .8; color: rgba(0,0,0,.08); }
.teams-section { padding: clamp(80px, 10vw, 150px) 0 0; background: #101010; }
.section-heading--line { padding: 0 5vw; }
.team-placeholder-row { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.team-placeholder-row > div { min-height: 410px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; border-right: 1px solid var(--line); background: linear-gradient(145deg, #161616, #090909); }
.team-placeholder-row span { color: var(--grey); font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.team-placeholder-row strong { font-family: "Archivo Black", sans-serif; font-size: clamp(24px, 3vw, 43px); line-height: .9; color: #444; }

.teams-heading > div:last-child { max-width: 1080px; }
.teams-kicker { margin: 0 0 18px; color: var(--accent); text-transform: uppercase; font-size: 11px; font-weight: 900; letter-spacing: .2em; }
.teams-intro { max-width: 760px; margin: 30px 0 0; color: #aaa; font-size: 17px; line-height: 1.75; }
.brand-system { display: grid; grid-template-columns: 34% 66%; border-top: 1px solid var(--line); }
.brand-system-copy { padding: clamp(50px, 6vw, 90px) 5vw; border-right: 1px solid var(--line); }
.brand-system-copy h3 { max-width: 520px; margin: 22px 0 24px; font-family: "Archivo Black", sans-serif; font-size: clamp(34px, 4.5vw, 68px); line-height: .94; text-transform: uppercase; letter-spacing: -.045em; }
.brand-system-copy p { max-width: 560px; margin: 0; color: #aaa; font-size: 15px; line-height: 1.75; }
.brand-growth { display: grid; grid-template-columns: repeat(4, 1fr); }
.growth-stage { min-height: 330px; display: flex; flex-direction: column; justify-content: space-between; padding: 30px 24px; border-right: 1px solid var(--line); background: #0b0b0b; }
.growth-stage:last-child { border-right: 0; }
.growth-stage span, .growth-stage small { color: #777; text-transform: uppercase; font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.growth-stage strong { font-family: "Archivo Black", sans-serif; font-size: clamp(58px, 7vw, 112px); line-height: .8; letter-spacing: -.08em; }
.growth-stage.is-launch { background: var(--accent); color: var(--black); }
.growth-stage.is-launch span, .growth-stage.is-launch small { color: rgba(0,0,0,.62); }
.growth-stage.is-cap { background: var(--white); color: var(--black); }
.growth-stage.is-cap span, .growth-stage.is-cap small { color: #666; }

.players-section { position: relative; overflow: hidden; min-height: 650px; display: flex; align-items: flex-end; justify-content: flex-end; padding: 8vw 5vw; background: #ececea; color: var(--black); }
.players-word { position: absolute; left: -3vw; top: 6vw; writing-mode: vertical-rl; transform: rotate(180deg); font-family: "Archivo Black", sans-serif; font-size: clamp(90px, 18vw, 260px); line-height: .75; color: rgba(0,0,0,.06); letter-spacing: -.08em; }
.players-copy { position: relative; z-index: 2; width: min(720px, 70%); }
.players-copy .eyebrow { color: #666; }
.players-copy p { max-width: 560px; font-size: 17px; line-height: 1.7; color: #444; }
.text-link { display: inline-block; margin-top: 15px; padding-bottom: 5px; border-bottom: 2px solid var(--black); text-transform: uppercase; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.signup-section { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: end; padding: clamp(80px, 10vw, 150px) 5vw; background: var(--black); }
.signup-form { align-self: end; }
.signup-form > div { width: 100%; }
.signup-form input { width: calc(100% - 145px); min-height: 60px; border: 0; border-bottom: 1px solid #666; background: transparent; color: var(--white); outline: 0; border-radius: 0; font-size: 14px; letter-spacing: .08em; }
.signup-form input:focus { border-bottom-color: var(--accent); }
.signup-form button { width: 140px; min-height: 60px; border: 0; background: var(--accent); color: var(--black); text-transform: uppercase; font-size: 11px; font-weight: 900; letter-spacing: .1em; cursor: pointer; }
.form-message { min-height: 20px; margin: 12px 0 0; color: #aaa; font-size: 12px; }

.site-footer { background: #030303; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 42% 58%; min-height: 390px; }
.footer-brand { padding: 55px 5vw; border-right: 1px solid var(--line); }
.footer-brand img { width: 220px; height: 55px; object-fit: contain; object-position: left center; }
.footer-brand p { margin-top: 24px; color: #888; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); }
.footer-links > div { padding: 55px 35px; border-right: 1px solid var(--line); }
.footer-links h3 { margin: 0 0 28px; color: #777; text-transform: uppercase; font-size: 10px; letter-spacing: .16em; }
.footer-links a { display: block; margin: 0 0 18px; text-transform: uppercase; font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { min-height: 74px; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 0 5vw; border-top: 1px solid var(--line); color: #666; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.footer-bottom div { display: flex; gap: 24px; }

@media (max-width: 1220px) and (min-width: 981px) {
  .header-main { grid-template-columns: minmax(0, 1fr) 190px minmax(0, 1fr); padding: 0 18px; }
  .brand-logo { width: 180px; }
  .nav-item { padding-left: 10px; padding-right: 10px; font-size: 10px; }
  .nav-item::after { left: 10px; right: 10px; }
  .desktop-nav--right .header-link { margin-left: 6px; margin-right: 9px; }
  .header-socials { padding-left: 6px; }
  .header-socials a { width: 30px; }
}

@media (max-width: 980px) {
  :root { --header-height: 66px; }
  .header-main { display: grid; grid-template-columns: 48px 1fr 48px; align-items: center; padding: 0 12px; }
  .desktop-nav, .header-link, .header-socials { display: none; }
  .header-right { grid-column: 3; grid-row: 1; justify-self: end; display: block; }
  .menu-toggle { display: block; position: relative; z-index: 4; }
  .brand { grid-column: 2; grid-row: 1; min-width: 0; }
  .brand-logo { width: 164px; height: 46px; }
  .dropdown-panel { display: none; }
  .mobile-menu { display: block; position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0; overflow-y: auto; background: var(--white); color: var(--black); visibility: hidden; opacity: 0; transform: translateY(-8px); pointer-events: none; transition: .2s; }
  .mobile-menu.is-open { visibility: visible; opacity: 1; transform: none; pointer-events: auto; }
  .mobile-menu nav > a, .mobile-group > button { width: 100%; min-height: 68px; display: flex; justify-content: space-between; align-items: center; padding: 0 22px; border: 0; border-bottom: 1px solid rgba(0,0,0,.14); background: transparent; text-transform: uppercase; text-align: left; font-size: 17px; font-weight: 800; letter-spacing: .04em; }
  .mobile-group > button { cursor: pointer; }
  .mobile-group > button span { font-size: 24px; font-weight: 400; transition: transform .2s; }
  .mobile-group > button[aria-expanded="true"] span { transform: rotate(45deg); }
  .mobile-submenu { max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; background: #f2f2ef; }
  .mobile-submenu.is-open { max-height: 320px; padding: 8px 0; }
  .mobile-submenu a { display: block; padding: 15px 34px; color: #555; text-transform: uppercase; font-size: 12px; font-weight: 700; letter-spacing: .08em; }
  .mobile-menu .mobile-join { background: var(--accent); color: var(--black); }
  body.menu-open { overflow: hidden; }
  .intro-section, .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .intro-copy > p:last-child { margin-left: 0; }
  .format-rows article { grid-template-columns: 10% 35% 55%; }
  .team-placeholder-row { grid-template-columns: repeat(2, 1fr); }
  .brand-system { grid-template-columns: 1fr; }
  .brand-system-copy { border-right: 0; border-bottom: 1px solid var(--line); }
  .brand-growth { grid-template-columns: repeat(2, 1fr); }
  .growth-stage:nth-child(2) { border-right: 0; }
  .growth-stage { border-bottom: 1px solid var(--line); }
  .signup-section { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 640px) {
  .hero { min-height: 720px; padding: 90px 20px 55px; }
  .hero-content { width: 100%; }
  .hero h1 { font-size: clamp(54px, 17vw, 82px); }
  .hero-copy { margin-top: 24px; font-size: 15px; }
  .hero-actions { display: grid; }
  .action-link { width: 100%; min-width: 0; }
  .ticker-track { justify-content: flex-start; }
  .intro-section, .format-section, .event-section, .players-section, .signup-section { padding-left: 20px; padding-right: 20px; }
  .section-heading--line { padding-left: 20px; padding-right: 20px; }
  .intro-copy h2, .section-heading h2, .event-copy h2, .players-copy h2, .signup-section h2 { font-size: clamp(38px, 13vw, 60px); }
  .format-rows article { grid-template-columns: 44px 1fr; align-items: start; gap: 10px 0; }
  .format-rows article > span { grid-row: 1 / 3; padding-top: 7px; }
  .format-rows p { grid-column: 2; }
  .event-section { min-height: 520px; }
  .team-placeholder-row { grid-template-columns: 1fr; }
  .brand-growth { grid-template-columns: 1fr 1fr; }
  .growth-stage { min-height: 240px; }
  .team-placeholder-row > div { min-height: 260px; border-right: 0; border-bottom: 1px solid var(--line); }
  .players-section { min-height: 600px; align-items: flex-end; }
  .players-copy { width: 100%; }
  .players-word { font-size: 170px; left: -30px; }
  .signup-form input { width: 100%; }
  .signup-form button { width: 100%; margin-top: 12px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-links > div { padding: 34px 20px; }
  .footer-links > div:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line); }
  .footer-bottom { min-height: 110px; flex-direction: column; justify-content: center; align-items: flex-start; padding: 24px 20px; }
  .footer-bottom div { flex-wrap: wrap; gap: 14px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* Hero artwork layout */
.hero { align-items: center; padding-top: clamp(72px, 8vw, 118px); padding-bottom: clamp(58px, 7vw, 96px); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr); align-items: center; width: 100%; gap: clamp(24px, 3vw, 56px); }
.hero-content { width: 100%; }
.hero-art { min-width: 0; display: flex; align-items: center; justify-content: flex-end; }
.hero-art img { display: block; width: min(100%, 900px); height: auto; object-fit: contain; filter: contrast(1.03) saturate(.96); }

@media (max-width: 1080px) {
  .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr); gap: 18px; }
  .hero h1 { font-size: clamp(58px, 9.2vw, 118px); }
}

@media (max-width: 760px) {
  .hero { min-height: auto; padding: 72px 20px 44px; }
  .hero-layout { display: flex; flex-direction: column; align-items: stretch; gap: 28px; }
  .hero-content { order: 1; }
  .hero-art { order: 2; width: calc(100% + 20px); margin-right: -20px; justify-content: center; }
  .hero-art img { width: 100%; max-width: 680px; }
}

/* News system */
.latest-news-section { padding: 96px 5vw; background: #fff; }
.latest-news-grid, .news-list-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid #d8d8d8; border-left: 1px solid #d8d8d8; }
.news-card { min-width: 0; border-right: 1px solid #d8d8d8; border-bottom: 1px solid #d8d8d8; background: #fff; }
.news-card-image { display: block; aspect-ratio: 16 / 10; background: #111; overflow: hidden; text-decoration: none; }
.news-card-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .35s ease; }
.news-card:hover .news-card-image img { transform: scale(1.025); }
.news-card-image span { display: grid; place-items: center; width: 100%; height: 100%; color: #ffcd00; font-family: "Archivo Black", sans-serif; font-size: clamp(3rem, 8vw, 7rem); }
.news-card-copy { padding: 26px; }
.news-card-meta { margin: 0 0 12px; color: #626262; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.news-card-meta span { color: #ffcd00; padding: 0 5px; }
.news-card h3 { margin: 0 0 13px; font-family: "Archivo Black", sans-serif; font-size: clamp(1.25rem, 2vw, 1.8rem); line-height: 1.04; text-transform: uppercase; }
.news-card h3 a { color: #080808; text-decoration: none; }
.news-card-copy > p:not(.news-card-meta) { color: #555; line-height: 1.65; }
.latest-news-all { display: inline-block; margin-top: 28px; }
.news-empty { grid-column: 1 / -1; padding: 48px 24px; border-right: 1px solid #d8d8d8; border-bottom: 1px solid #d8d8d8; }
.page-hero { padding: 92px 5vw 56px; border-bottom: 1px solid #d8d8d8; background: #fff; }
.page-hero .eyebrow { color: #846d00; }
.page-hero h1 { max-width: 1100px; margin: 16px 0 0; font-family: "Archivo Black", sans-serif; font-size: clamp(3rem, 8vw, 8.5rem); line-height: .85; letter-spacing: -.055em; text-transform: uppercase; }
.news-page-content { padding: 56px 5vw 110px; background: #fff; }
.article-shell { background: #fff; }
.article-header { padding: 70px 5vw 44px; }
.article-header-inner { max-width: 1080px; margin: 0 auto; }
.article-kicker { color: #6a5900; font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.article-header h1 { margin: 18px 0 24px; font-family: "Archivo Black", sans-serif; font-size: clamp(2.7rem, 7vw, 7rem); line-height: .94; letter-spacing: -.045em; text-transform: uppercase; }
.article-deck { max-width: 800px; color: #4e4e4e; font-size: clamp(1.1rem, 2vw, 1.45rem); line-height: 1.55; }
.article-byline { margin-top: 25px; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-hero { width: 100%; max-height: 760px; object-fit: cover; display: block; background: #111; }
.article-body { max-width: 820px; margin: 0 auto; padding: 64px 5vw 110px; color: #202020; font-size: 1.08rem; line-height: 1.8; }
.article-body h2, .article-body h3 { font-family: "Archivo Black", sans-serif; line-height: 1.05; text-transform: uppercase; }
.article-body h2 { margin: 2.2em 0 .7em; font-size: clamp(2rem, 4vw, 3.4rem); }
.article-body h3 { margin: 1.8em 0 .6em; font-size: 1.6rem; }
.article-body img { width: min(100%, 1100px); height: auto; margin: 2rem 50%; transform: translateX(-50%); }
.article-body blockquote { margin: 2rem 0; padding: 6px 0 6px 28px; border-left: 6px solid #ffcd00; font-size: 1.35rem; font-weight: 700; line-height: 1.5; }
.article-status { padding: 100px 5vw; text-align: center; }
@media (max-width: 900px) { .latest-news-grid, .news-list-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .latest-news-section, .news-page-content { padding-left: 22px; padding-right: 22px; } .latest-news-grid, .news-list-grid { grid-template-columns: 1fr; } .page-hero { padding: 60px 22px 38px; } }
.simple-header { min-height:88px; padding:12px 5vw; display:grid; grid-template-columns:1fr auto 1fr; align-items:center; border-bottom:1px solid #d8d8d8; background:#fff; }
.simple-header > a { grid-column:2; }
.simple-header img { display:block; width:180px; height:64px; object-fit:contain; }
.simple-header nav { grid-column:3; justify-self:end; display:flex; gap:24px; }
.simple-header nav a { color:#111; font-size:.76rem; font-weight:800; letter-spacing:.1em; text-decoration:none; text-transform:uppercase; }
@media(max-width:620px){.simple-header{grid-template-columns:1fr auto;padding:8px 20px}.simple-header>a{grid-column:1}.simple-header img{width:135px}.simple-header nav{grid-column:2;gap:13px}.simple-header nav a:first-child{display:none}}

/* Shared public news pages */
.news-page { background:#fff; color:#080808; }
.news-masthead { min-height:540px; display:grid; grid-template-columns:24% 76%; gap:3vw; padding:clamp(80px,9vw,145px) 5vw 70px; border-bottom:1px solid #d9d9d9; }
.news-masthead h1 { margin:18px 0 24px; font-family:"Archivo Black",sans-serif; font-size:clamp(58px,8vw,132px); line-height:.84; letter-spacing:-.065em; text-transform:uppercase; }
.news-masthead > div > p:last-child { max-width:520px; color:#555; font-size:17px; line-height:1.7; }
.news-page-content { padding:0 5vw 120px; }
.news-feature { border-left:1px solid #d8d8d8; border-right:1px solid #d8d8d8; }
.news-feature-story { display:grid; grid-template-columns:minmax(0,1.45fr) minmax(360px,.75fr); min-height:520px; border-bottom:1px solid #d8d8d8; }
.news-feature-image { display:block; min-height:520px; overflow:hidden; background:#111; }
.news-feature-image img { width:100%; height:100%; object-fit:cover; display:block; }
.news-feature-image > span { display:grid; place-items:center; width:100%; height:100%; color:var(--accent); font-family:"Archivo Black",sans-serif; font-size:150px; }
.news-feature-copy { display:flex; flex-direction:column; justify-content:center; padding:clamp(36px,5vw,80px); border-left:1px solid #d8d8d8; }
.news-feature-copy h2 { margin:12px 0 20px; font-family:"Archivo Black",sans-serif; font-size:clamp(38px,4.5vw,72px); line-height:.96; letter-spacing:-.05em; text-transform:uppercase; }
.news-feature-copy > p:not(.news-card-meta) { color:#555; font-size:16px; line-height:1.7; }
.news-index-heading { display:flex; justify-content:space-between; align-items:center; min-height:90px; border-bottom:1px solid #d8d8d8; text-transform:uppercase; font-size:11px; font-weight:800; letter-spacing:.14em; }
.news-index-heading span:last-child { color:#777; }
.news-empty { grid-column:1/-1; margin:0; padding:48px; color:#666; }
.news-empty--large { min-height:320px; display:flex; flex-direction:column; justify-content:center; align-items:flex-start; }
.news-empty--large strong { color:#111; font-family:"Archivo Black",sans-serif; font-size:clamp(34px,5vw,70px); text-transform:uppercase; }
.article-shell { min-height:70vh; background:#fff; color:#111; }
.article-header { padding:clamp(90px,10vw,160px) 5vw 70px; border-bottom:1px solid #ddd; }
.article-header-inner { max-width:1200px; margin:0 auto; }
.article-header h1 { max-width:1100px; margin:18px 0 26px; font-family:"Archivo Black",sans-serif; font-size:clamp(52px,8vw,126px); line-height:.9; letter-spacing:-.06em; text-transform:uppercase; }
.article-kicker,.article-byline { font-size:11px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; }
.article-kicker { color:#907600; }.article-deck { max-width:800px; font-size:clamp(20px,2vw,30px); line-height:1.45; color:#444; }
.article-byline { margin-top:30px; color:#777; }.article-hero { display:block; width:100%; max-height:760px; object-fit:cover; }
.article-body { max-width:820px; margin:0 auto; padding:70px 24px 120px; font-size:18px; line-height:1.85; }
.article-body h2,.article-body h3 { font-family:"Archivo Black",sans-serif; line-height:1.08; text-transform:uppercase; }
.article-body h2 { margin-top:2em; font-size:42px; }.article-body h3 { margin-top:1.7em; font-size:28px; }
.article-body img { display:block; max-width:min(1100px,calc(100vw - 40px)); height:auto; margin:48px 50%; transform:translateX(-50%); }
.article-body blockquote { margin:50px 0; padding:10px 0 10px 28px; border-left:6px solid var(--accent); font-size:28px; line-height:1.4; font-weight:700; }
.article-status { min-height:60vh; display:flex; flex-direction:column; justify-content:center; align-items:center; padding:80px 20px; text-align:center; }

@media(max-width:980px){.news-masthead{grid-template-columns:1fr;min-height:auto}.news-feature-story{grid-template-columns:1fr}.news-feature-copy{border-left:0;border-top:1px solid #d8d8d8}.news-feature-image{min-height:400px}.latest-news-grid,.news-list-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:640px){.news-masthead{padding:70px 20px 50px}.news-page-content{padding:0 20px 80px}.news-feature-image{min-height:260px}.news-feature-copy{padding:30px 22px 38px}.news-index-heading{min-height:72px}.latest-news-grid,.news-list-grid{grid-template-columns:1fr}.article-header{padding:76px 20px 48px}.article-body{padding:46px 20px 80px;font-size:17px}}
