:root {
  --red: #d82f28;
  --red-dark: #ab211c;
  --orange: #f06426;
  --ink: #101010;
  --paper: #f2efe9;
  --white: #fff;
  --muted: #73706b;
  --line: rgba(16, 16, 16, 0.16);
  --shell: min(1380px, calc(100vw - 64px));
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.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; z-index: 999; top: 12px; left: 12px; padding: 12px 18px; color: white; background: var(--ink); transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.2);
  background: linear-gradient(180deg, rgba(0,0,0,.72), transparent);
  transition: background .25s, box-shadow .25s, transform .25s;
}
.site-header.is-scrolled { background: rgba(12,12,12,.95); box-shadow: 0 8px 30px rgba(0,0,0,.15); }
.header-inner { height: 98px; display: flex; align-items: center; gap: 42px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand img { width: 74px; height: 74px; object-fit: contain; }
.brand-wordmark { display: flex; align-items: baseline; text-transform: uppercase; line-height: .8; }
.brand-wordmark strong { font: 30px/.8 var(--display); letter-spacing: .02em; }
.brand-wordmark em { color: var(--red); font: italic 30px/.8 var(--display); }
.main-nav { display: flex; align-items: center; gap: clamp(22px, 2.5vw, 42px); }
.main-nav a { position: relative; padding-block: 10px; font-size: 14px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 2px; background: var(--red); transition: right .25s; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 12px; border: 1px solid rgba(255,255,255,.3); color: white; background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: transform .25s, opacity .25s; }

.button { display: inline-flex; min-height: 58px; align-items: center; justify-content: center; gap: 20px; padding: 0 25px; border: 1px solid transparent; font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; transition: color .25s, background .25s, border-color .25s, transform .25s; }
.button:hover { transform: translateY(-2px); }
.button svg { font-size: 19px; }
.button-small { min-height: 48px; padding-inline: 20px; }
.button-ticket, .button-primary { color: white; background: var(--red); }
.button-ticket:hover, .button-primary:hover { background: var(--orange); }
.button-ghost { color: white; border-color: rgba(255,255,255,.55); background: rgba(0,0,0,.12); }
.button-ghost:hover { border-color: white; background: white; color: var(--ink); }
.button-dark { color: white; background: var(--ink); }
.button-dark:hover { background: var(--red); }

.hero { position: relative; min-height: 880px; height: 100svh; max-height: 1080px; overflow: hidden; color: white; background: #171717; }
.hero-media { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,8,8,.9) 0%, rgba(8,8,8,.58) 45%, rgba(8,8,8,.08) 78%), url("assets/hero-team.jpg") 64% center/cover no-repeat; transform: scale(1.03); animation: hero-zoom 12s ease-out forwards; }
@keyframes hero-zoom { to { transform: scale(1); } }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.8), transparent 38%, rgba(0,0,0,.2)); }
.hero-grain { position: absolute; inset: 0; opacity: .18; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E"); }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; justify-content: space-between; padding-top: 95px; }
.hero-copy { width: min(820px, 72%); }
.eyebrow { display: flex; align-items: center; gap: 13px; margin: 0 0 26px; color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow > span { width: 38px; height: 2px; background: currentColor; }
.eyebrow.light { color: white; }
.hero h1, .section h2, .match-heading h2, .join-section h2 { margin: 0; font: clamp(86px, 10.8vw, 178px)/.78 var(--display); letter-spacing: -.025em; text-transform: uppercase; }
.hero h1 span { display: block; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.8); }
.hero h1 { color: var(--red); }
.hero-lead { max-width: 650px; margin: 34px 0 0; font-size: clamp(18px, 1.45vw, 23px); line-height: 1.55; color: rgba(255,255,255,.84); }
.hero-actions { display: flex; gap: 12px; margin-top: 38px; }
.hero-stamp { width: 154px; height: 154px; display: grid; place-content: center; grid-template-columns: auto auto auto; align-items: baseline; gap: 3px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; transform: rotate(8deg); text-align: center; }
.hero-stamp span { grid-column: 1/-1; font-size: 11px; font-weight: 900; letter-spacing: .25em; text-transform: uppercase; }
.hero-stamp strong { font: 48px/.9 var(--display); }
.hero-stamp i { color: var(--red); font-size: 26px; font-style: normal; }
.hero-footer { position: absolute; z-index: 2; inset: auto 0 28px; display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,.62); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero-scroll { display: flex; align-items: center; gap: 12px; }
.hero-scroll i { width: 52px; height: 1px; background: var(--red); }

.match-center { color: white; background: var(--red); }
.match-grid { display: grid; grid-template-columns: .78fr 1.22fr; min-height: 370px; align-items: stretch; }
.match-heading { padding: 72px 7vw 72px 0; display: flex; justify-content: center; flex-direction: column; border-right: 1px solid rgba(255,255,255,.25); }
.match-heading .eyebrow { color: white; }
.match-heading h2 { font-size: clamp(52px, 5vw, 82px); }
.match-heading h2 em { color: var(--ink); font-style: normal; }
.match-actions { display: grid; align-content: center; padding: 38px 0 38px 6vw; }
.match-actions > a { min-height: 88px; display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.28); transition: padding .25s, background .25s; }
.match-actions > a:first-child { border-top: 1px solid rgba(255,255,255,.28); }
.match-actions > a:hover { padding-inline: 12px; background: rgba(0,0,0,.08); }
.action-icon { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-size: 21px; }
.match-actions small { display: block; margin-bottom: 4px; color: rgba(255,255,255,.68); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.match-actions strong { font-size: 18px; text-transform: uppercase; }
.action-arrow { font-size: 22px; }

.section { padding: 140px 0; }
.section-header { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 64px; }
.section h2 { font-size: clamp(66px, 7.2vw, 110px); }
.section h2 em { color: var(--red); font-style: normal; }
.text-link { display: inline-flex; align-items: center; gap: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--ink); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.text-link svg { font-size: 18px; }

.news-grid { display: grid; grid-template-columns: 1.25fr .875fr .875fr; gap: 22px; }
.news-card { position: relative; min-width: 0; background: white; }
.news-image { position: relative; display: block; overflow: hidden; aspect-ratio: 1/1; background: #ddd; }
.news-featured .news-image { aspect-ratio: 1.35/1; }
.news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-card:hover .news-image img { transform: scale(1.035); }
.news-tag { position: absolute; top: 16px; left: 16px; padding: 8px 10px; color: white; background: var(--red); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.news-body { position: relative; padding: 28px 28px 30px; }
.news-body time { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.news-body h3 { max-width: 92%; margin: 14px 0 15px; font: 31px/1.02 var(--display); letter-spacing: .01em; text-transform: uppercase; }
.news-featured .news-body h3 { font-size: clamp(34px, 3vw, 48px); }
.news-body p { max-width: 92%; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.round-link { position: absolute; right: 20px; bottom: 20px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: background .2s, color .2s, transform .2s; }
.round-link:hover { color: white; background: var(--red); transform: rotate(8deg); }

.teams-section { position: relative; min-height: 1040px; color: white; background: var(--ink); overflow: hidden; }
.teams-section::after { content: "HAMM"; position: absolute; right: -1.5vw; bottom: -4vw; color: rgba(255,255,255,.025); font: 30vw/.7 var(--display); letter-spacing: -.06em; }
.teams-photo { position: absolute; inset: 0 52% 0 0; }
.teams-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,16,16,.05), var(--ink) 96%), linear-gradient(0deg, var(--ink), transparent 28%); }
.teams-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; filter: grayscale(1) contrast(1.08); opacity: .65; }
.teams-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .86fr 1.14fr; gap: 10vw; }
.teams-intro { padding-top: 8px; }
.teams-intro h2 { font-size: clamp(72px, 8.2vw, 126px); }
.teams-intro p:last-child { max-width: 510px; margin: 34px 0 0; color: rgba(255,255,255,.65); font-size: 18px; line-height: 1.65; }
.team-list { border-top: 1px solid rgba(255,255,255,.25); }
.team-list > a { display: grid; grid-template-columns: 48px 1fr 30px; gap: 22px; align-items: center; min-height: 128px; border-bottom: 1px solid rgba(255,255,255,.25); transition: color .25s, padding .25s; }
.team-list > a:hover { color: var(--red); padding-inline: 10px; }
.team-number { color: rgba(255,255,255,.35); font: 18px var(--display); }
.team-list small { display: block; margin-bottom: 5px; color: rgba(255,255,255,.5); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.team-list strong { font: 45px/1 var(--display); text-transform: uppercase; }
.team-list svg { font-size: 23px; }
.team-stats { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3,1fr); margin-top: 86px; padding: 40px 0 0 50%; border-top: 1px solid rgba(255,255,255,.2); }
.team-stats div { padding-left: 45px; border-left: 1px solid rgba(255,255,255,.2); }
.team-stats strong { display: block; color: var(--red); font: 52px/1 var(--display); text-transform: uppercase; }
.team-stats span { display: block; margin-top: 7px; color: rgba(255,255,255,.55); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.club-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 9vw; align-items: center; }
.club-copy h2 { font-size: clamp(65px, 6.6vw, 104px); }
.club-copy .club-lead { margin: 35px 0 22px; color: var(--ink); font-size: 22px; line-height: 1.5; font-weight: 700; }
.club-copy > p:not(.eyebrow):not(.club-lead) { color: var(--muted); font-size: 16px; line-height: 1.75; }
.club-copy .button { margin-top: 28px; }
.club-collage { position: relative; min-height: 710px; }
.club-image { position: absolute; margin: 0; overflow: hidden; }
.club-image img { width: 100%; height: 100%; object-fit: cover; }
.club-image-main { inset: 0 0 17% 9%; }
.club-image-detail { width: 42%; height: 42%; left: 0; bottom: 0; border: 12px solid var(--paper); }
.club-badge { position: absolute; right: -42px; bottom: 6%; width: 122px; height: 122px; display: grid; place-content: center; text-align: center; color: white; background: var(--red); border-radius: 50%; transform: rotate(8deg); }
.club-badge strong { font: 54px/.8 var(--display); }
.club-badge small { margin-top: 6px; font-size: 9px; font-weight: 900; letter-spacing: .24em; }

.values { width: calc(100% + 24px); margin-left: -12px; overflow: hidden; padding: 24px 0 18px; color: white; background: var(--red); transform: rotate(-1.2deg); }
.values-track { width: max-content; display: flex; align-items: center; gap: 34px; animation: marquee 28s linear infinite; }
.values-track span { font: 70px/.8 var(--display); letter-spacing: .01em; text-transform: uppercase; }
.values-track i { color: var(--ink); font-size: 27px; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.partners-section { background: white; }
.partners-copy { max-width: 430px; margin: 0 6vw 0 auto; color: var(--muted); font-size: 16px; line-height: 1.65; }
.partner-grid { display: grid; grid-template-columns: repeat(5,1fr); border: 1px solid var(--line); }
.partner-logo, .partner-more { min-height: 220px; display: grid; place-items: center; padding: 35px; border-right: 1px solid var(--line); }
.partner-logo img { max-width: 82%; max-height: 105px; object-fit: contain; filter: grayscale(1); mix-blend-mode: multiply; transition: filter .25s, transform .25s; }
.partner-logo:hover img { filter: grayscale(0); transform: scale(1.03); }
.partner-more { border: 0; color: white; background: var(--ink); align-content: center; justify-items: start; gap: 18px; font: 32px/1 var(--display); text-transform: uppercase; transition: background .25s; }
.partner-more:hover { background: var(--red); }
.partner-more svg { font-size: 26px; }

.join-section { position: relative; min-height: 730px; display: flex; align-items: center; overflow: hidden; color: white; background: #181818; }
.join-image { position: absolute; inset: 0; background: url("assets/players-floor.jpg") center 44%/cover no-repeat; }
.join-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.52) 58%, rgba(0,0,0,.1)), linear-gradient(0deg, rgba(0,0,0,.55), transparent); }
.join-content { position: relative; z-index: 2; }
.join-section h2 { font-size: clamp(80px, 9.5vw, 150px); }
.join-section h2 em { color: var(--red); font-style: normal; }
.join-actions { display: flex; gap: 12px; margin-top: 40px; }

.site-footer { padding: 85px 0 0; color: white; background: #0b0b0b; }
.footer-top { display: grid; grid-template-columns: 1.35fr .72fr .72fr 1.05fr; gap: 5vw; padding-bottom: 70px; }
.footer-brand img { width: 112px; height: 112px; object-fit: contain; }
.footer-brand p { margin: 24px 0 0; color: rgba(255,255,255,.55); font-size: 15px; line-height: 1.6; }
.footer-brand strong { color: white; }
.footer-column, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-column h2, .footer-contact h2 { margin: 0 0 13px; color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.footer-column a, .footer-contact > a { color: rgba(255,255,255,.7); font-size: 14px; transition: color .2s; }
.footer-column a:hover, .footer-contact > a:hover { color: white; }
.footer-contact address { margin-top: 10px; color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.6; font-style: normal; }
.socials { display: flex; gap: 8px; margin-top: 8px; }
.socials a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; font-size: 11px; font-weight: 900; text-transform: uppercase; transition: background .2s; }
.socials a:hover { background: var(--red); }
.footer-bottom { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.4); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.footer-bottom div { display: flex; gap: 24px; }
.back-top { display: inline-flex; align-items: center; gap: 10px; color: white; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.news-card:nth-child(2), .team-list { transition-delay: .08s; }
.news-card:nth-child(3) { transition-delay: .16s; }

@media (max-width: 1100px) {
  :root { --shell: min(100% - 44px, 960px); }
  .header-inner { height: 84px; }
  .brand img { width: 62px; height: 62px; }
  .brand-wordmark { display: none; }
  .header-ticket { margin-left: auto; }
  .menu-toggle { display: block; order: 3; }
  .main-nav { position: fixed; z-index: -1; inset: 0; padding: 125px 22px 60px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 0; color: white; background: rgba(11,11,11,.98); transform: translateX(100%); transition: transform .35s ease; }
  .main-nav a { width: min(100%, 600px); margin-inline: auto; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.18); font: 44px/1 var(--display); letter-spacing: 0; }
  .menu-open .main-nav { transform: translateX(0); }
  .menu-open .menu-toggle span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-of-type(3) { opacity: 0; }
  .menu-open .menu-toggle span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: 800px; }
  .hero-stamp { display: none; }
  .hero-copy { width: 85%; }
  .match-grid { grid-template-columns: 1fr; }
  .match-heading { padding: 70px 0 45px; border: 0; }
  .match-actions { padding: 0 0 60px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-featured { grid-column: 1/-1; display: grid; grid-template-columns: 1.15fr .85fr; }
  .news-featured .news-image { aspect-ratio: auto; }
  .teams-photo { inset-right: 42%; opacity: .8; }
  .teams-layout { grid-template-columns: 1fr 1.15fr; gap: 6vw; }
  .team-stats { padding-left: 38%; }
  .club-grid { gap: 5vw; }
  .club-collage { min-height: 580px; }
  .club-badge { right: -15px; }
  .partner-logo, .partner-more { min-height: 180px; padding: 24px; }
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-contact { grid-column: 1/-1; display: grid; grid-template-columns: repeat(3,auto) 1fr auto; align-items: center; border-top: 1px solid rgba(255,255,255,.14); padding-top: 32px; }
  .footer-contact h2 { grid-column: 1/-1; }
  .footer-contact address { margin: 0; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100vw - 36px); }
  .header-inner { gap: 14px; }
  .brand img { width: 54px; height: 54px; }
  .header-ticket { min-height: 43px; padding-inline: 15px; }
  .header-ticket svg { display: none; }
  .menu-toggle { width: 43px; height: 43px; }
  .hero { height: 820px; min-height: 0; max-height: none; }
  .hero-media { background-image: linear-gradient(90deg, rgba(8,8,8,.86), rgba(8,8,8,.22)), url("assets/hero-team.jpg"); background-position: 58% center; }
  .hero-content { align-items: flex-end; padding: 0 0 112px; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(74px, 24vw, 110px); }
  .hero-lead { max-width: 95%; margin-top: 25px; font-size: 17px; line-height: 1.5; }
  .hero-actions { flex-direction: column; align-items: stretch; margin-top: 28px; }
  .hero-footer { bottom: 18px; }
  .hero-footer p:first-child { display: none; }
  .hero-scroll { display: none; }
  .hero-footer p:last-child { margin-left: auto; }
  .match-heading { padding-top: 60px; }
  .match-heading h2 { font-size: 50px; }
  .match-actions > a { grid-template-columns: 47px 1fr auto; min-height: 82px; gap: 14px; }
  .action-icon { width: 42px; height: 42px; }
  .match-actions strong { font-size: 15px; }
  .section { padding: 88px 0; }
  .section-header { align-items: flex-start; flex-direction: column; margin-bottom: 42px; }
  .section h2 { font-size: clamp(60px, 19vw, 84px); }
  .news-grid { display: block; }
  .news-card, .news-featured { display: block; margin-bottom: 22px; }
  .news-featured .news-image, .news-image { aspect-ratio: 1.25/1; }
  .news-body h3, .news-featured .news-body h3 { font-size: 33px; }
  .news-body p { padding-right: 25px; }
  .teams-section { min-height: auto; padding-bottom: 80px; }
  .teams-photo { inset: 0; height: 700px; opacity: .45; }
  .teams-photo::after { background: linear-gradient(0deg, var(--ink) 3%, transparent 85%), linear-gradient(90deg, rgba(16,16,16,.3), var(--ink)); }
  .teams-layout { grid-template-columns: 1fr; gap: 70px; }
  .teams-intro h2 { font-size: clamp(68px, 20vw, 92px); }
  .teams-intro p:last-child { font-size: 16px; }
  .team-list strong { font-size: 37px; }
  .team-list > a { min-height: 108px; }
  .team-stats { grid-template-columns: 1fr 1fr; gap: 30px 0; margin-top: 55px; padding: 35px 0 0; }
  .team-stats div { padding-left: 18px; }
  .team-stats div:last-child { grid-column: 1/-1; }
  .team-stats strong { font-size: 43px; }
  .club-grid { grid-template-columns: 1fr; gap: 60px; }
  .club-copy .club-lead { font-size: 19px; }
  .club-collage { min-height: 510px; }
  .club-image-main { left: 7%; }
  .club-image-detail { width: 47%; height: 38%; border-width: 8px; }
  .club-badge { right: -8px; width: 100px; height: 100px; }
  .club-badge strong { font-size: 45px; }
  .values-track span { font-size: 52px; }
  .partner-grid { grid-template-columns: 1fr 1fr; }
  .partner-logo, .partner-more { min-height: 150px; border-bottom: 1px solid var(--line); }
  .partner-logo:nth-child(even) { border-right: 0; }
  .partner-more { grid-column: 1/-1; }
  .partners-copy { margin: 0; }
  .partner-more { font-size: 27px; }
  .join-section { min-height: 700px; }
  .join-section h2 { font-size: clamp(73px, 22vw, 105px); }
  .join-actions { flex-direction: column; align-items: stretch; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 55px 28px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-contact { display: flex; grid-column: 1/-1; align-items: flex-start; }
  .footer-bottom { min-height: 125px; padding: 25px 0; flex-wrap: wrap; }
  .footer-bottom p { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
