:root {
    --purple: #4b2e83;
    --purple-dark: #302055;
    --lime: #b8f34a;
    --black: #151218;
    --cream: #f3efe7;
    --white: #fff;
    --muted: #68636b;
    --display: "Anton", "Arial Narrow", sans-serif;
    --body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 116px; }
body { margin: 0; color: var(--black); background: var(--white); font-family: var(--body); line-height: 1.55; }
::selection { color: var(--black); background: var(--lime); }
body, button, input { font: 400 16px/1.55 var(--body); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { border: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { width: 1.15em; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, .minirugby h3, .category-card h3 { font-family: var(--display); font-weight: 400; letter-spacing: -.015em; line-height: .96; }
.container { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 108px 0; }
.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: 1000; top: 8px; left: 8px; padding: 10px 14px; color: var(--black); background: var(--lime); transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--purple); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { width: 28px; height: 2px; content: ""; background: currentColor; }
.eyebrow--light { color: var(--white); }
.eyebrow--lime { color: var(--lime); }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 12px; padding: 11px 20px; border: 2px solid transparent; border-radius: 2px; font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; transition: color .2s, background .2s, border-color .2s, transform .2s; }
.button:hover { transform: translateY(-2px); }
.button--purple { color: var(--white); background: var(--purple); }
.button--purple:hover { color: var(--black); background: var(--lime); }
.button--lime { color: var(--black); background: var(--lime); }
.button--lime:hover { color: var(--white); background: var(--purple); border-color: var(--white); }
.button--outline-light { color: var(--white); border-color: rgba(255,255,255,.7); }
.button--outline-light:hover { color: var(--black); background: var(--white); }
.button--outline { color: var(--purple); border-color: var(--purple); }
.button--outline:hover { color: var(--white); background: var(--purple); }
a:focus-visible, button:focus-visible, input:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }

.site-header { position: sticky; z-index: 100; top: 0; transition: transform .36s cubic-bezier(.2,.75,.25,1), box-shadow .25s ease; will-change: transform; }
.site-header--hidden { transform: translateY(-100%); }
.site-header--scrolled { box-shadow: 0 12px 30px rgba(21,18,24,.14); }
.utility-bar { color: var(--white); background: var(--black); font-size: 11px; font-weight: 600; letter-spacing: .03em; }
.utility-bar__inner, .utility-bar__contacts { display: flex; align-items: center; }
.utility-bar__inner { min-height: 34px; justify-content: space-between; gap: 30px; }
.utility-bar__contacts { gap: 22px; }
.utility-bar a { display: inline-flex; align-items: center; gap: 7px; }
.utility-bar a:hover { color: var(--lime); }
.nav-bar { position: relative; z-index: 30; background: var(--white); border-bottom: 1px solid #e5e1e6; }
.nav-bar__inner { position: relative; display: flex; min-height: 82px; align-items: center; gap: 20px; }
.brand { display: flex; flex: 0 0 auto; align-items: center; gap: 11px; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.brand img { width: 54px; height: 62px; object-fit: contain; }
.brand strong { display: block; color: var(--purple); font-family: var(--display); font-size: 21px; font-weight: 400; letter-spacing: .03em; line-height: 1; }
.main-nav { display: flex; flex: 1; align-self: stretch; justify-content: center; }
.main-nav__intro, .main-nav__foot { display: none; }
.main-nav__list { display: flex; align-items: stretch; justify-content: center; gap: clamp(9px, 1.2vw, 20px); padding: 0; margin: 0; list-style: none; }
.nav-item { position: relative; display: flex; align-items: stretch; }
.nav-item--categories { position: static; }
.nav-link { position: relative; display: flex; align-items: center; gap: 7px; padding: 3px 0 0; color: var(--black); background: transparent; font-size: clamp(10px, .84vw, 12px); font-weight: 700; white-space: nowrap; cursor: pointer; }
.nav-link::after { position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; content: ""; background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform .2s; }
.nav-link:hover, .nav-link.is-active, .nav-item.is-open > .nav-link { color: var(--purple); }
.nav-link:hover::after, .nav-link.is-active::after, .nav-item.is-open > .nav-link::after { transform: scaleX(1); }
.nav-link__number { display: none; }
.nav-dropdown-toggle svg { width: 12px; transition: transform .25s ease; }
.nav-item.is-open > .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown { position: absolute; z-index: 50; top: calc(100% - 1px); left: 50%; width: min(760px, 90vw); padding: 28px; color: var(--white); background: var(--black); box-shadow: 0 24px 50px rgba(21,18,24,.25); opacity: 0; visibility: hidden; pointer-events: none; transform: translate(-50%, 12px); transition: opacity .22s ease, visibility .22s ease, transform .22s ease; }
.nav-item--categories:hover .nav-dropdown, .nav-item.is-open .nav-dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.nav-dropdown__head { display: flex; align-items: end; justify-content: space-between; gap: 24px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.16); }
.nav-dropdown__head span { color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.nav-dropdown__head strong { font-family: var(--display); font-size: 27px; font-weight: 400; letter-spacing: .02em; text-transform: uppercase; }
.category-menu { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; padding: 0; margin: 20px 0 0; background: rgba(255,255,255,.14); list-style: none; }
.category-menu > li { min-width: 0; padding: 17px; background: #201b23; }
.category-menu__macro { display: flex; flex-direction: column; color: var(--white); font-family: var(--display); font-size: 23px; line-height: 1; text-transform: uppercase; }
.category-menu__macro span { margin-top: 7px; color: var(--lime); font-family: var(--body); font-size: 8px; font-weight: 800; letter-spacing: .1em; }
.category-menu__children { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 15px; }
.category-menu__children a { padding: 4px 7px; color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); font-size: 9px; font-weight: 700; }
.category-menu a:hover { color: var(--lime); }
.nav-cta { flex: 0 0 auto; min-height: 42px; padding: 8px 14px; font-size: 10px; }
.menu-toggle.mburger { --mb-button-size: 46px; --mb-bar-width: .52; --mb-bar-height: 2px; --mb-bar-spacing: 7px; display: none; width: 46px; height: 46px; padding-left: 46px; color: var(--black); }
.menu-toggle.mburger b { color: var(--black); }

.hero { position: relative; min-height: 690px; overflow: hidden; color: var(--white); background: var(--black); }
.hero__image, .hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { object-fit: cover; object-position: center 38%; }
.hero__shade { background: linear-gradient(90deg, rgba(21,18,24,.94) 0, rgba(21,18,24,.72) 40%, rgba(21,18,24,.12) 76%); }
.hero__content { position: relative; z-index: 2; display: flex; min-height: 560px; flex-direction: column; align-items: flex-start; justify-content: center; padding-top: 30px; }
.hero h1 { max-width: 720px; margin-bottom: 24px; font-size: clamp(68px, 8vw, 112px); text-transform: uppercase; }
.hero h1 em, .why h2 em { color: var(--lime); font-style: normal; }
.hero__lead { max-width: 580px; margin-bottom: 32px; color: rgba(255,255,255,.84); font-size: 17px; }
.hero__actions { display: flex; gap: 12px; }
.hero__foot { position: relative; z-index: 2; display: flex; height: 130px; border-top: 1px solid rgba(255,255,255,.25); }
.hero__foot p { display: flex; flex: 1; align-items: center; gap: 14px; margin: 0; padding-right: 30px; border-right: 1px solid rgba(255,255,255,.2); }
.hero__foot p + p { padding-left: 30px; }
.hero__foot p:last-child { border-right: 0; }
.hero__foot strong { font-family: var(--display); font-size: 50px; font-weight: 400; line-height: 1; }
.hero__foot span { color: rgba(255,255,255,.65); font-size: 10px; font-weight: 800; letter-spacing: .12em; line-height: 1.4; text-transform: uppercase; }
.jersey-lines { position: absolute; z-index: 1; top: -20%; right: 4%; width: 180px; height: 140%; opacity: .72; transform: rotate(14deg); }
.jersey-lines i { position: absolute; top: 0; bottom: 0; width: 5px; background: var(--lime); }
.jersey-lines i:nth-child(2) { left: 52px; height: 58%; background: var(--purple); }
.jersey-lines i:nth-child(3) { left: 104px; top: 45%; background: var(--white); }

.categories { background: var(--cream); }
.section-heading--split { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 80px; margin-bottom: 58px; }
.section-heading h2, .news h2 { margin-bottom: 0; font-size: clamp(52px, 6vw, 82px); text-transform: uppercase; }
.section-heading--split > p { max-width: 510px; margin-bottom: 4px; color: var(--muted); }
.minirugby { display: grid; grid-template-columns: 1.08fr .92fr; margin-bottom: 20px; color: var(--white); background: var(--purple); }
.minirugby__media { position: relative; min-height: 500px; overflow: hidden; }
.minirugby__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.minirugby__media::after { position: absolute; inset: auto 0 0; height: 35%; content: ""; background: linear-gradient(transparent, rgba(21,18,24,.55)); }
.minirugby__media > span { position: absolute; z-index: 1; bottom: 24px; left: 24px; padding: 7px 11px; color: var(--black); background: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.minirugby__body { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 46px 50px; }
.minirugby h3 { margin-bottom: 18px; font-size: clamp(56px, 6vw, 82px); text-transform: uppercase; }
.minirugby__body > p:not(.eyebrow) { color: rgba(255,255,255,.82); }
.check-list { display: grid; gap: 8px; margin: 10px 0 30px; padding: 0; list-style: none; font-size: 13px; font-weight: 600; }
.check-list li::before { display: inline-grid; width: 18px; height: 18px; margin-right: 9px; place-items: center; color: var(--black); background: var(--lime); content: "✓"; font-size: 11px; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--cream); }
.category-card { display: flex; min-height: 330px; flex-direction: column; padding: 34px; color: var(--white); background: var(--purple); }
.category-card--deep { background: var(--purple-dark); }
.category-card--black { background: var(--black); }
.category-card > p { color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.category-card h3 { margin: 12px 0 20px; font-size: 56px; text-transform: uppercase; }
.category-card > div { display: flex; flex: 1; flex-direction: column; justify-content: space-between; }
.category-card span { color: rgba(255,255,255,.72); font-size: 14px; }
.category-card a, .news-card__body a { display: flex; width: max-content; align-items: center; gap: 9px; margin-top: 25px; color: var(--lime); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.category-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.category-links a, .category-card .category-links a { display: inline-flex; min-height: 38px; align-items: center; gap: 8px; padding: 8px 11px; margin-top: 0; border: 1px solid rgba(255,255,255,.34); color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: color .2s, background .2s, border-color .2s; }
.category-links a:hover { color: var(--black); background: var(--lime); border-color: var(--lime); }
.category-links svg { width: 14px; }

.why { position: relative; overflow: hidden; color: var(--white); background: var(--black); }
.why::after { position: absolute; top: -180px; right: -150px; width: 500px; height: 500px; border: 80px solid rgba(75,46,131,.45); content: ""; transform: rotate(18deg); }
.why h2 { position: relative; z-index: 1; margin: 0 0 54px; font-size: clamp(52px, 6vw, 82px); text-transform: uppercase; }
.why__grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); }
.why__grid article { padding: 28px 28px 0 0; border-top: 1px solid rgba(255,255,255,.24); }
.why__grid article + article { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.18); }
.why__grid b { color: var(--lime); font-family: var(--display); font-size: 25px; font-weight: 400; }
.why__grid h3 { min-height: 52px; margin: 20px 0 12px; font-size: 18px; line-height: 1.25; }
.why__grid p { margin-bottom: 0; color: rgba(255,255,255,.62); font-size: 13px; }

.try-band { position: relative; overflow: hidden; color: var(--white); background: var(--purple); }
.try-band__inner { display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 100px; padding-top: 86px; padding-bottom: 86px; }
.try-band h2 { margin-bottom: 0; font-size: clamp(52px, 6vw, 82px); text-transform: uppercase; }
.try-band__action { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; }
.try-band__action > p { max-width: 420px; font-size: 18px; }
.try-band .text-link { margin: 17px 0 24px; border-bottom: 1px solid var(--lime); color: var(--lime); font-size: 13px; font-weight: 700; }
.try-band small { color: rgba(255,255,255,.7); }
.try-band__mark { position: absolute; top: -100px; right: 11%; width: 85px; height: 500px; background: var(--lime); opacity: .11; transform: skewX(-16deg); }

.news { background: var(--white); }
.section-heading--row { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 50px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #d9d5dc; }
.news-card { padding: 20px 20px 0; border-right: 1px solid #d9d5dc; }
.news-card:first-child { padding-left: 0; }
.news-card:last-child { padding-right: 0; border-right: 0; }
.news-card__media, .news-card__graphic { position: relative; height: 245px; overflow: hidden; background: var(--purple); }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; }
.news-card__media > span { position: absolute; top: 14px; left: 14px; padding: 5px 8px; color: var(--purple); background: var(--white); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.news-card__graphic { display: flex; align-items: end; justify-content: space-between; padding: 24px; color: var(--white); }
.news-card__graphic span, .news-card__graphic strong { position: relative; z-index: 1; font-family: var(--display); font-size: 72px; font-weight: 400; line-height: 1; }
.news-card__graphic strong { color: var(--lime); }
.news-card__graphic i { position: absolute; top: -50px; left: 45%; width: 45px; height: 360px; background: var(--black); transform: rotate(18deg); }
.news-card__graphic--lime { color: var(--black); background: var(--lime); }
.news-card__graphic--lime strong { color: var(--purple); }
.news-card__graphic--lime i { background: var(--white); opacity: .5; }
.news-card__body { padding: 23px 4px 0; }
.news-card time { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.news-card h3 { margin: 12px 0; font-size: 20px; line-height: 1.25; }
.news-card p { color: var(--muted); font-size: 13px; }
.news-card__body a { color: var(--purple); }

.sponsors { padding: 52px 0 66px; border-top: 1px solid #e5e1e6; }
.sponsors__head { display: flex; align-items: center; gap: 18px; margin-bottom: 30px; }
.sponsors__head h2, .sponsors__head p { margin: 0; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.sponsors__head h2 { color: var(--purple); }
.sponsors__head p { color: var(--muted); }
.sponsors__head span { height: 1px; flex: 1; background: #d9d5dc; }
.sponsors__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #ddd8e0; }
.sponsors__grid strong { display: grid; min-height: 82px; place-items: center; padding: 10px; background: var(--cream); font-family: var(--display); font-size: clamp(15px, 1.5vw, 21px); font-weight: 400; letter-spacing: .05em; text-align: center; }

.footer { padding: 74px 0 30px; color: var(--white); background: var(--black); }
.footer__grid { display: grid; grid-template-columns: 1.25fr .75fr .8fr 1.25fr 1.25fr; gap: 42px; padding-bottom: 54px; }
.footer__grid > div:not(.footer__brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer h2 { margin: 4px 0 11px; color: var(--lime); font-family: var(--body); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.footer a { color: rgba(255,255,255,.68); font-size: 12px; }
.footer a:hover { color: var(--lime); }
.footer__brand img { width: 64px; height: 76px; object-fit: contain; }
.footer__brand p, .newsletter p { margin: 16px 0; color: rgba(255,255,255,.62); font-size: 12px; }
.footer__brand div { display: flex; gap: 14px; }
.newsletter form { display: flex; width: 100%; border: 1px solid rgba(255,255,255,.3); }
.newsletter input { min-width: 0; flex: 1; padding: 10px 12px; color: var(--white); background: transparent; outline: none; }
.newsletter button { display: grid; width: 44px; place-items: center; color: var(--black); background: var(--lime); cursor: pointer; }
.newsletter .newsletter__status { min-height: 18px; margin: 8px 0 0; color: var(--lime); }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.54); font-size: 10px; }
.footer__bottom div { display: flex; gap: 20px; }

.cms-page { min-height: 65vh; overflow: hidden; background: var(--cream); }
.cms-page__hero { position: relative; min-height: clamp(480px, 48vw, 650px); overflow: hidden; color: var(--white); background: var(--black); }
.cms-page__cover, .cms-page__hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.cms-page__cover { object-fit: cover; object-position: center 42%; }
.cms-page__hero-shade { background: linear-gradient(90deg, rgba(21,18,24,.95) 0, rgba(21,18,24,.67) 48%, rgba(21,18,24,.16) 82%); }
.cms-page__hero-mark { position: absolute; top: -20%; right: 10%; width: 110px; height: 145%; border-right: 28px solid var(--lime); border-left: 46px solid var(--purple); opacity: .86; transform: rotate(16deg); }
.cms-page__hero-content { position: relative; z-index: 1; display: flex; min-height: clamp(480px, 48vw, 650px); flex-direction: column; align-items: flex-start; justify-content: flex-end; padding-top: 70px; padding-bottom: clamp(58px, 7vw, 96px); }
.cms-page__hero h1 { max-width: 960px; margin: 0; font-size: clamp(74px, 10vw, 142px); text-transform: uppercase; text-wrap: balance; }
.cms-page__content { position: relative; padding-top: 94px; padding-bottom: 94px; }
.cms-page__content::before { position: absolute; top: 96px; left: 0; width: 8px; height: 76px; content: ""; background: var(--lime); }
.cms-page__content h1 { margin-bottom: 34px; padding-left: 42px; font-size: clamp(60px, 8vw, 110px); text-transform: uppercase; }
.cms-page__lead { max-width: 920px; padding-left: 42px; color: var(--muted); font-size: clamp(19px, 2vw, 27px); line-height: 1.52; }
.cms-page__lead > *:last-child { margin-bottom: 0; }
.cms-page__lead strong, .cms-page__lead a { color: var(--purple); }
.block-nav { color: var(--white); background: var(--black); }
.block-nav__inner { display: flex; min-height: 72px; align-items: stretch; overflow-x: auto; scrollbar-width: thin; scrollbar-color: var(--lime) var(--black); }
.block-nav__inner > span { display: flex; flex: 0 0 auto; align-items: center; padding-right: 28px; color: var(--lime); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.block-nav a { position: relative; display: flex; min-width: 180px; align-items: center; gap: 12px; padding: 14px 22px; border-left: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.76); font-size: 11px; font-weight: 700; white-space: nowrap; transition: color .2s, background .2s; }
.block-nav a b { color: var(--lime); font-size: 9px; letter-spacing: .1em; }
.block-nav a:hover { color: var(--black); background: var(--lime); }
.block-nav a:hover b { color: var(--purple); }
.content-block { scroll-margin-top: 116px; }
.content-block__inner { display: grid; min-height: 560px; grid-template-columns: 1.08fr .92fr; align-items: stretch; }
.content-block__media { position: relative; min-width: 0; margin: 0; overflow: hidden; background: var(--black); }
.content-block__media::after { position: absolute; top: 0; right: 0; width: 8px; height: 100%; content: ""; background: var(--lime); }
.content-block__media img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; transition: transform .7s cubic-bezier(.2,.75,.25,1); }
.content-block:hover .content-block__media img { transform: scale(1.025); }
.content-block__media figcaption { position: absolute; z-index: 1; right: 8px; bottom: 0; max-width: 82%; padding: 11px 15px; color: var(--white); background: var(--black); font-size: 9px; font-weight: 700; letter-spacing: .03em; }
.content-block__copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: clamp(45px, 6vw, 84px); background: var(--white); }
.content-block__number { position: absolute; top: 30px; right: 34px; color: var(--purple); font-family: var(--display); font-size: 30px; }
.content-block h2 { max-width: 640px; margin-bottom: 28px; font-family: var(--display); font-size: clamp(48px, 5.2vw, 76px); font-weight: 400; line-height: .96; text-transform: uppercase; text-wrap: balance; }
.content-block__html { color: var(--muted); }
.content-block__html > *:last-child { margin-bottom: 0; }
.content-block__html strong, .content-block__html a { color: var(--purple); }
.content-block__html a { border-bottom: 2px solid var(--lime); font-weight: 700; }
.content-block__html ul { display: grid; gap: 8px; padding: 0; margin: 24px 0 0; list-style: none; }
.content-block__html li { position: relative; padding-left: 25px; }
.content-block__html li::before { position: absolute; top: .65em; left: 0; width: 12px; height: 3px; content: ""; background: var(--lime); }
.content-block--image-right { background: var(--white); }
.content-block--image-right .content-block__media { grid-column: 2; }
.content-block--image-right .content-block__media::after { right: auto; left: 0; }
.content-block--image-right .content-block__copy { grid-column: 1; grid-row: 1; background: var(--cream); }
.content-block--featured { position: relative; padding: 96px 0 108px; overflow: hidden; color: var(--white); background: var(--purple); }
.content-block--featured::after { position: absolute; right: -100px; bottom: -260px; width: 420px; height: 520px; border: 64px solid rgba(184,243,74,.12); content: ""; transform: rotate(18deg); }
.content-block--featured .content-block__inner { position: relative; z-index: 1; min-height: 500px; grid-template-columns: .85fr 1.15fr; }
.content-block--featured .content-block__media { box-shadow: 24px 24px 0 var(--lime); }
.content-block--featured .content-block__media::after { display: none; }
.content-block--featured .content-block__media img { min-height: 500px; }
.content-block--featured .content-block__copy { padding-right: 0; color: var(--white); background: transparent; }
.content-block--featured .content-block__number { color: var(--lime); }
.content-block--featured .content-block__html { color: rgba(255,255,255,.76); }
.content-block--featured .content-block__html strong, .content-block--featured .content-block__html a { color: var(--lime); }
.content-block--featured.content-block--no-image .content-block__inner { min-height: 0; grid-template-columns: 1fr; }
.content-block--featured.content-block--no-image .content-block__copy { max-width: 960px; padding: 0 0 0 130px; border-left: 8px solid var(--lime); }
.content-block--featured.content-block--no-image .content-block__number { top: 2px; right: auto; left: 42px; }
.content-block--featured.content-block--no-image .content-block__html { max-width: 760px; font-size: 18px; }
.content-block--text { padding: 96px 0; color: var(--white); background: var(--black); }
.content-block--text .content-block__inner { min-height: 0; grid-template-columns: 1fr; }
.content-block--text .content-block__copy { max-width: 900px; padding: 0 0 0 110px; color: var(--white); background: transparent; border-left: 8px solid var(--lime); }
.content-block--text .content-block__number { top: 0; right: auto; left: 35px; color: var(--lime); }
.content-block--text .content-block__html { color: rgba(255,255,255,.7); font-size: 18px; }

.category-hero { position: relative; min-height: 570px; overflow: hidden; color: var(--white); background: var(--black); }
.category-hero__image, .category-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.category-hero__image { object-fit: cover; object-position: center 38%; }
.category-hero__shade { background: linear-gradient(90deg, rgba(21,18,24,.95) 0, rgba(21,18,24,.72) 44%, rgba(21,18,24,.18) 78%); }
.category-hero__content { position: relative; z-index: 2; display: flex; min-height: 570px; flex-direction: column; align-items: flex-start; justify-content: center; padding-top: 45px; padding-bottom: 45px; }
.category-hero h1 { margin-bottom: 20px; font-size: clamp(86px, 12vw, 166px); text-transform: uppercase; }
.category-hero__content > p:not(.eyebrow) { max-width: 620px; margin-bottom: 30px; color: rgba(255,255,255,.82); font-size: 18px; }

.training-band { position: relative; padding: 88px 0 96px; overflow: hidden; color: var(--white); background: var(--purple); }
.training-band::after { position: absolute; top: -190px; right: -90px; width: 380px; height: 480px; border: 62px solid rgba(184,243,74,.12); content: ""; transform: rotate(18deg); }
.training-band__heading { position: relative; z-index: 1; max-width: 760px; margin: 0 auto 42px; text-align: center; }
.training-band__heading .eyebrow { justify-content: center; }
.training-band h2, .coaches h2, .category-contact h2 { margin-bottom: 15px; font-family: var(--display); font-size: clamp(50px, 6vw, 82px); font-weight: 400; line-height: .96; text-transform: uppercase; }
.training-band__heading > p:last-child { margin-bottom: 0; color: rgba(255,255,255,.7); }
.training-grid { position: relative; z-index: 1; display: flex; flex-wrap: wrap; justify-content: center; gap: 2px; }
.training-card { display: flex; width: min(280px, 31%); min-height: 190px; flex-direction: column; align-items: center; justify-content: center; padding: 25px; color: var(--black); background: var(--lime); text-align: center; }
.training-card:nth-child(even) { color: var(--white); background: var(--black); }
.training-card span { font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.training-card strong { margin: 10px 0 2px; font-family: var(--display); font-size: 54px; font-weight: 400; line-height: 1; }
.training-card small { font-size: 12px; font-weight: 600; }
.training-band__empty { position: relative; z-index: 1; text-align: center; }

.coaches { background: var(--cream); }
.coaches__heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 15px 70px; margin-bottom: 52px; }
.coaches__heading .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.coaches__heading h2, .coaches__heading > p { margin-bottom: 0; }
.coaches__heading > p { color: var(--muted); }
.coach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.coach-card { min-width: 0; background: var(--white); }
.coach-card > img, .coach-card__initials { width: 100%; aspect-ratio: 4 / 3; }
.coach-card > img { object-fit: cover; }
.coach-card__initials { display: grid; place-items: center; color: var(--lime); background: var(--purple-dark); font-family: var(--display); font-size: clamp(62px, 7vw, 96px); letter-spacing: .04em; }
.coach-card:nth-child(even) .coach-card__initials { color: var(--white); background: var(--black); }
.coach-card__body { padding: 24px 25px 28px; border-top: 5px solid var(--lime); }
.coach-card__body p { margin-bottom: 11px; color: var(--purple); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.coach-card__body h3 { margin-bottom: 0; font-family: var(--display); font-size: 32px; font-weight: 400; line-height: .98; text-transform: uppercase; }

.category-contact { color: var(--white); background: var(--black); }
.category-contact__inner { display: flex; min-height: 280px; align-items: center; justify-content: space-between; gap: 50px; padding-top: 50px; padding-bottom: 50px; }
.category-contact h2 { margin-bottom: 0; }

.schedule-hero { position: relative; min-height: 350px; overflow: hidden; color: var(--white); background: var(--black); }
.schedule-hero::after { position: absolute; right: 8%; bottom: -300px; width: 560px; height: 620px; border: 74px solid rgba(75,46,131,.72); content: ""; transform: rotate(19deg); }
.schedule-hero__mark { position: absolute; top: -120px; right: 29%; width: 38px; height: 520px; background: var(--lime); transform: skewX(-15deg); }
.schedule-hero__content { position: relative; z-index: 1; display: flex; min-height: 350px; flex-direction: column; align-items: flex-start; justify-content: center; padding-top: 48px; padding-bottom: 48px; }
.schedule-hero h1 { margin-bottom: 18px; font-size: clamp(68px, 7vw, 102px); text-transform: uppercase; }
.schedule-hero__content > p:last-child { max-width: 590px; margin-bottom: 0; color: rgba(255,255,255,.74); font-size: 17px; }
.schedule-section { background: var(--cream); }
.schedule-intro { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; margin-bottom: 42px; }
.schedule-intro h2 { margin-bottom: 0; font-family: var(--display); font-size: clamp(52px, 6vw, 82px); font-weight: 400; line-height: .96; text-transform: uppercase; }
.schedule-intro > p { margin-bottom: 5px; color: var(--muted); }
.schedule-filters { position: relative; z-index: 2; display: grid; grid-template-columns: 220px 1fr; align-items: end; gap: 34px; padding: 25px 28px 28px; margin-bottom: 16px; color: var(--black); background: var(--white); border-top: 6px solid var(--purple); box-shadow: 0 12px 30px rgba(21,18,24,.07); }
.schedule-filters::after { position: absolute; top: -6px; right: 0; width: 90px; height: 6px; content: ""; background: var(--lime); }
.schedule-filters label, .schedule-filters legend { color: var(--purple); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.schedule-filters fieldset { min-width: 0; padding: 0; margin: 0; border: 0; }
.select-wrap { position: relative; margin-top: 10px; background: var(--cream); border: 1px solid #d9d3dc; }
.select-wrap::after { position: absolute; top: 50%; right: 14px; width: 8px; height: 8px; border-right: 2px solid var(--purple); border-bottom: 2px solid var(--purple); content: ""; pointer-events: none; transform: translateY(-70%) rotate(45deg); }
.select-wrap select { width: 100%; min-height: 48px; padding: 8px 42px 8px 14px; border: 0; border-radius: 0; color: var(--black); background: transparent; font: 700 13px var(--body); appearance: none; cursor: pointer; }
.macro-options { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.macro-options label { position: relative; color: var(--purple); cursor: pointer; }
.macro-options input { position: absolute; opacity: 0; pointer-events: none; }
.macro-options span { display: grid; min-height: 48px; place-items: center; padding: 8px 14px; border: 1px solid #c9c0d2; background: var(--white); transition: color .2s, background .2s, border-color .2s; }
.macro-options input:checked + span { border-color: var(--lime); color: var(--black); background: var(--lime); }
.macro-options input:focus-visible + span { outline: 3px solid var(--lime); outline-offset: 3px; }
.schedule-frame { position: relative; min-height: 210px; overflow: hidden; background: var(--white); border: 1px solid #d8d2da; box-shadow: 12px 12px 0 rgba(75,46,131,.1); }
[data-schedule-results] { transition: opacity .2s ease; }
[data-schedule-results].is-loading { opacity: .3; }
.schedule-loader { position: absolute; z-index: 10; inset: 0; display: flex; min-height: 210px; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--purple); background: rgba(243,239,231,.82); backdrop-filter: blur(3px); }
.schedule-loader[hidden] { display: none; }
.schedule-loader span { width: 50px; height: 50px; border: 5px solid rgba(75,46,131,.18); border-top-color: var(--lime); border-right-color: var(--purple); animation: schedule-spin .75s linear infinite; }
.schedule-loader strong { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
@keyframes schedule-spin { to { transform: rotate(360deg); } }
.weekly-schedule { min-width: 1080px; }
.weekly-schedule__head { display: grid; grid-template-columns: 70px repeat(7, minmax(0, 1fr)); color: var(--white); background: var(--purple-dark); }
.weekly-schedule__head span, .weekly-schedule__head strong { display: flex; min-height: 58px; align-items: center; justify-content: center; padding: 8px 5px; border-right: 1px solid rgba(255,255,255,.13); font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.weekly-schedule__head span { color: var(--lime); background: var(--black); }
.weekly-schedule__body { display: grid; grid-template-columns: 70px 1fr; }
.time-axis { position: relative; height: 720px; color: var(--muted); background: #f5f2ed; }
.time-axis span { position: absolute; top: var(--time-top); right: 10px; font-size: 9px; font-weight: 700; transform: translateY(-50%); }
.schedule-days { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); }
.schedule-day { min-width: 0; border-left: 1px solid #e2dee5; }
.schedule-day h3 { display: none; }
.schedule-day__body { position: relative; height: 720px; background: repeating-linear-gradient(to bottom, #fff 0, #fff 59px, #ece8ee 59px, #ece8ee 60px); }
.schedule-event { position: absolute; z-index: var(--event-level); top: var(--event-top); left: calc(var(--event-left) + 2px); display: flex; width: calc(var(--event-width) - 4px); min-height: 38px; height: var(--event-height); flex-direction: column; align-items: flex-start; justify-content: center; padding: 7px 9px; overflow: hidden; color: var(--white); background: var(--purple); border: 1px solid rgba(255,255,255,.55); border-radius: 3px; box-shadow: inset 4px 0 var(--lime), 0 5px 13px rgba(21,18,24,.18); transition: filter .2s, transform .2s, box-shadow .2s; }
.schedule-event:hover, .schedule-event:focus-visible { z-index: 20; filter: brightness(1.08); box-shadow: inset 4px 0 var(--lime), 0 10px 24px rgba(21,18,24,.28); transform: translateY(-2px) scale(1.015); }
.schedule-event span { font-size: 8px; font-weight: 800; letter-spacing: .02em; white-space: nowrap; }
.schedule-event strong { max-width: 100%; overflow: hidden; font-family: var(--display); font-size: clamp(16px, 1.5vw, 23px); font-weight: 400; line-height: 1; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.schedule-event small { max-width: 100%; overflow: hidden; font-size: 7px; font-weight: 700; opacity: .72; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.schedule-event--macro-2 { color: var(--white); background: var(--black); }
.schedule-event--macro-3 { color: var(--black); background: var(--lime); box-shadow: inset 4px 0 var(--purple); }
.schedule-event--macro-4 { color: var(--purple-dark); background: #ded4ef; box-shadow: inset 4px 0 var(--purple); }
.schedule-empty { display: flex; min-height: 280px; flex-direction: column; align-items: center; justify-content: center; padding: 40px 20px; text-align: center; }
.schedule-empty strong { font-family: var(--display); font-size: 36px; font-weight: 400; text-transform: uppercase; }
.schedule-empty p { margin: 7px 0 0; color: var(--muted); }
.schedule-modal[hidden] { display: none; }
body.schedule-modal-open { overflow: hidden; }
.schedule-modal { position: fixed; z-index: 300; inset: 0; display: grid; place-items: center; padding: 24px; opacity: 0; transition: opacity .22s ease; }
.schedule-modal.is-open { opacity: 1; }
.schedule-modal__backdrop { position: absolute; inset: 0; width: 100%; height: 100%; background: rgba(21,18,24,.82); cursor: pointer; }
.schedule-modal__panel { position: relative; width: min(500px, 100%); padding: 46px 48px 48px; background: var(--cream); border-top: 8px solid var(--lime); box-shadow: 18px 18px 0 var(--purple); transform: translateY(18px) scale(.98); transition: transform .22s ease; }
.schedule-modal.is-open .schedule-modal__panel { transform: none; }
.schedule-modal__close { position: absolute; top: 13px; right: 16px; width: 38px; height: 38px; color: var(--purple); background: transparent; font-size: 33px; line-height: 1; cursor: pointer; }
.schedule-modal__panel h2 { margin-bottom: 20px; font-family: var(--display); font-size: clamp(58px, 8vw, 82px); font-weight: 400; line-height: .95; text-transform: uppercase; }
.schedule-modal__time { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 0; margin-bottom: 20px; border-top: 1px solid #cbc3cc; border-bottom: 1px solid #cbc3cc; }
.schedule-modal__time span { color: var(--purple); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.schedule-modal__time strong { font-family: var(--display); font-size: 27px; font-weight: 400; }
.schedule-modal__panel > p:not(.eyebrow) { margin-bottom: 28px; color: var(--muted); font-size: 14px; }

.articles-hero { position: relative; min-height: 430px; overflow: hidden; color: var(--white); background: var(--black); }
.articles-hero::before { position: absolute; top: -210px; right: 4%; width: 500px; height: 570px; border: 75px solid rgba(75,46,131,.72); content: ""; transform: rotate(18deg); }
.articles-hero__mark { position: absolute; top: -80px; right: 28%; width: 42px; height: 580px; background: var(--lime); transform: skewX(-16deg); }
.articles-hero__inner { position: relative; z-index: 1; display: flex; min-height: 430px; flex-direction: column; align-items: flex-start; justify-content: center; padding-top: 55px; padding-bottom: 55px; }
.articles-hero h1 { max-width: 900px; margin-bottom: 22px; font-size: clamp(76px, 9vw, 132px); text-transform: uppercase; }
.articles-hero__inner > p:last-child { margin: 0; color: rgba(255,255,255,.7); font-size: 17px; }
.articles-archive { background: var(--cream); }
.articles-archive__head, .category-articles__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.articles-archive__head h2, .category-articles__head h2, .related-articles__head h2 { margin: 0; font-size: clamp(50px, 6vw, 78px); text-transform: uppercase; }
.article-filters { display: flex; max-width: 620px; flex-wrap: wrap; justify-content: flex-end; gap: 6px; }
.article-filters a { display: inline-flex; min-height: 42px; align-items: center; padding: 8px 13px; border: 1px solid #c9c0d2; color: var(--purple); background: var(--white); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: color .2s, background .2s, border-color .2s; }
.article-filters a:hover, .article-filters a.is-active { border-color: var(--lime); color: var(--black); background: var(--lime); }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.article-card { display: flex; min-width: 0; flex-direction: column; background: var(--white); }
.article-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--black); }
.article-card__media > a:first-child { display: block; width: 100%; height: 100%; }
.article-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.75,.25,1), opacity .3s; }
.article-card:hover .article-card__media img { opacity: .88; transform: scale(1.04); }
.article-category { display: inline-flex; min-height: 34px; align-items: center; padding: 7px 11px; color: var(--black); background: var(--lime); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; transition: color .2s, background .2s; }
.article-category:hover { color: var(--white); background: var(--purple); }
.article-card__media .article-category { position: absolute; z-index: 2; bottom: 14px; left: 14px; }
.article-card__body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 28px 28px 32px; border-top: 5px solid var(--purple); }
.article-card:nth-child(3n+2) .article-card__body { border-top-color: var(--lime); }
.article-card time, .article-hero time { color: var(--purple); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.article-card h3 { margin: 13px 0 14px; font-size: 23px; line-height: 1.18; }
.article-card h3 a:hover { color: var(--purple); }
.article-card__body > p { flex: 1; margin-bottom: 0; color: var(--muted); font-size: 13px; }
.article-card__link { display: inline-flex; align-items: center; gap: 9px; margin-top: 24px; color: var(--purple); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-card__link:hover { color: var(--black); }
.article-card__link svg { width: 16px; }
.article-empty { display: grid; min-height: 280px; place-content: center; padding: 40px; background: var(--white); text-align: center; }
.article-empty strong { font-family: var(--display); font-size: 42px; font-weight: 400; text-transform: uppercase; }
.article-empty p { margin: 4px 0 0; color: var(--muted); }
.article-empty .button { margin-top: 24px; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 48px; }
.pagination__pages { display: flex; gap: 5px; }
.pagination a { display: inline-grid; min-width: 44px; min-height: 44px; place-items: center; padding: 8px 13px; color: var(--purple); background: var(--white); border: 1px solid #c9c0d2; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: color .2s, background .2s, border-color .2s; }
.pagination a:hover, .pagination a.is-active { color: var(--black); background: var(--lime); border-color: var(--lime); }
.pagination a.is-active { box-shadow: inset 0 -4px var(--purple); }
.pagination__step { min-width: 105px !important; }

.article-hero { position: relative; min-height: 690px; overflow: hidden; color: var(--white); background: var(--black); }
.article-hero__image, .article-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.article-hero__image { object-fit: cover; object-position: center 42%; }
.article-hero__shade { background: linear-gradient(0deg, rgba(21,18,24,.96) 0, rgba(21,18,24,.58) 55%, rgba(21,18,24,.08) 100%); }
.article-hero__content { position: relative; z-index: 1; display: flex; min-height: 690px; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding-top: 80px; padding-bottom: 75px; }
.article-hero__category { margin-bottom: 20px; }
.article-hero time { color: var(--lime); }
.article-hero h1 { max-width: 1100px; margin: 16px 0 24px; font-size: clamp(62px, 7vw, 104px); text-transform: uppercase; text-wrap: balance; }
.article-hero__content > p { max-width: 770px; margin: 0; color: rgba(255,255,255,.78); font-size: 18px; }
.article-story { background: var(--white); }
.article-story__layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; align-items: start; gap: clamp(70px, 9vw, 130px); }
.article-prose { min-width: 0; }
.article-prose__text { color: #39333c; font-size: 17px; line-height: 1.85; }
.article-prose__text > *:last-child { margin-bottom: 0; }
.article-prose__text p { margin-bottom: 25px; }
.article-prose__text a { color: var(--purple); border-bottom: 2px solid var(--lime); font-weight: 700; }
.article-prose blockquote { position: relative; padding: 70px 55px 50px; margin: 58px 0; overflow: hidden; color: var(--white); background: var(--purple); }
.article-prose blockquote::after { position: absolute; right: -60px; bottom: -130px; width: 240px; height: 280px; border: 38px solid rgba(184,243,74,.15); content: ""; transform: rotate(18deg); }
.article-prose blockquote > span { position: absolute; top: -18px; left: 28px; color: var(--lime); font-family: Georgia, serif; font-size: 130px; line-height: 1; }
.article-prose blockquote p { position: relative; z-index: 1; margin: 0; font-family: Georgia, serif; font-size: clamp(26px, 3vw, 40px); font-style: italic; line-height: 1.28; text-wrap: balance; }
.match-sheet { position: sticky; top: 28px; color: var(--white); background: var(--black); border-top: 7px solid var(--lime); box-shadow: 16px 16px 0 rgba(75,46,131,.15); }
.match-sheet > .eyebrow { padding: 30px 30px 0; margin-bottom: 12px; }
.match-sheet h2 { padding: 0 30px 25px; margin: 0; font-size: 54px; text-transform: uppercase; }
.match-sheet dl { margin: 0; }
.match-sheet dl > div { padding: 18px 30px; border-top: 1px solid rgba(255,255,255,.15); }
.match-sheet dt { margin-bottom: 4px; color: var(--lime); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.match-sheet dd { margin: 0; color: rgba(255,255,255,.82); font-size: 13px; }
.article-inline-gallery { padding-top: 38px; margin-top: 54px; border-top: 1px solid #d6d0d8; }
.article-inline-gallery__head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.article-inline-gallery__head span { width: 28px; height: 3px; background: var(--purple); }
.article-inline-gallery__head h2 { margin: 0; font-family: var(--body); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.article-inline-gallery__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.article-inline-gallery figure { margin: 0; }
.article-inline-gallery a { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream); }
.article-inline-gallery img { width: 100%; height: 100%; object-fit: cover; transition: opacity .25s; }
.article-inline-gallery a:hover img { opacity: .82; }
.article-inline-gallery figcaption { padding-top: 8px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.related-articles { background: var(--cream); }
.related-articles__head { margin-bottom: 46px; }
.category-articles { background: var(--cream); }
.lg-backdrop { background-color: rgba(21,18,24,.96); }
.lg-toolbar, .lg-actions .lg-next, .lg-actions .lg-prev { background-color: var(--purple); }
.lg-sub-html { color: var(--white); background-color: rgba(21,18,24,.9); font-family: var(--body); }

.notices-hero { color: var(--white); background: var(--purple-dark); border-bottom: 10px solid var(--lime); }
.notices-hero__inner { display: grid; min-height: 460px; grid-template-columns: 230px 1fr; align-items: center; gap: 70px; padding-top: 58px; padding-bottom: 58px; }
.notices-hero__seal { position: relative; display: grid; width: 210px; height: 210px; place-content: center; border: 2px solid rgba(255,255,255,.58); text-align: center; transform: rotate(-3deg); }
.notices-hero__seal::before, .notices-hero__seal::after { position: absolute; content: ""; }
.notices-hero__seal::before { inset: 11px; border: 1px solid rgba(184,243,74,.65); }
.notices-hero__seal::after { top: 50%; right: -28px; width: 56px; height: 8px; background: var(--lime); }
.notices-hero__seal span { color: var(--lime); font-family: var(--display); font-size: 88px; line-height: .8; }
.notices-hero__seal b { margin-top: 17px; font-size: 10px; letter-spacing: .32em; }
.notices-hero h1 { max-width: 920px; margin: 0 0 22px; font-size: clamp(75px, 8.8vw, 128px); text-transform: uppercase; }
.notices-hero__inner > div:last-child > p:last-child { margin: 0; color: rgba(255,255,255,.72); font-size: 17px; }
.notices-archive { background: #eeebe5; }
.notices-archive__head { display: grid; grid-template-columns: minmax(250px, .7fr) minmax(420px, 1.3fr); align-items: end; gap: 16px 50px; padding-bottom: 30px; margin-bottom: 34px; border-bottom: 1px solid #bbb4be; }
.notices-archive__head .eyebrow { margin-bottom: 10px; }
.notices-archive__head h2 { margin: 0; font-size: clamp(48px, 5.5vw, 72px); text-transform: uppercase; }
.notice-search label { display: block; margin-bottom: 9px; color: var(--purple); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.notice-search__field { display: grid; grid-template-columns: 1fr auto; }
.notice-search input { min-width: 0; min-height: 52px; padding: 12px 16px; color: var(--black); background: var(--white); border: 1px solid #bbb4be; font: inherit; font-size: 14px; }
.notice-search input:focus { border-color: var(--purple); outline: 3px solid rgba(75,46,131,.16); outline-offset: 0; }
.notice-search button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 9px; padding: 12px 20px; color: var(--white); background: var(--purple); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: color .2s, background .2s; }
.notice-search button:hover { color: var(--black); background: var(--lime); }
.notice-search button svg { width: 16px; }
.notices-archive__head > .notice-search__count { grid-column: 1 / -1; margin: 4px 0 0; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-align: right; text-transform: uppercase; }
.notice-list { display: grid; gap: 16px; }
.notice-card { display: grid; min-height: 310px; grid-template-columns: minmax(280px, 34%) 1fr; background: var(--white); border-left: 7px solid var(--purple); box-shadow: 0 9px 25px rgba(21,18,24,.06); }
.notice-card__media { position: relative; min-height: 310px; overflow: hidden; background: var(--black); }
.notice-card__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); transition: filter .35s, transform .55s cubic-bezier(.2,.75,.25,1); }
.notice-card:hover .notice-card__media img { filter: saturate(1); transform: scale(1.025); }
.notice-card__media > span { position: absolute; bottom: 0; left: 0; padding: 9px 13px; color: var(--white); background: var(--purple-dark); font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.notice-card__body { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(34px, 5vw, 64px); }
.notice-card__meta { display: flex; gap: 25px; color: var(--purple); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.notice-card__meta span { color: var(--muted); }
.notice-card h3 { max-width: 780px; margin: 15px 0 15px; font-family: var(--display); font-size: clamp(34px, 4vw, 54px); font-weight: 400; line-height: 1.02; text-transform: uppercase; }
.notice-card h3 a:hover { color: var(--purple); }
.notice-card__body > p { display: -webkit-box; max-width: 800px; margin-bottom: 0; overflow: hidden; color: var(--muted); font-size: 14px; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.notice-card__link { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; color: var(--purple); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.notice-card__link svg { width: 16px; }

.notice-hero { position: relative; min-height: 600px; overflow: hidden; color: var(--white); background: var(--black); }
.notice-hero__image, .notice-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.notice-hero__image { object-fit: cover; object-position: center 42%; filter: saturate(.78); }
.notice-hero__shade { background: linear-gradient(90deg, rgba(21,18,24,.96) 0, rgba(21,18,24,.76) 52%, rgba(21,18,24,.28) 100%); }
.notice-hero__content { position: relative; z-index: 1; display: flex; min-height: 600px; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding-top: 75px; padding-bottom: 72px; }
.notice-number { position: absolute; top: 55px; right: 0; padding-bottom: 7px; border-bottom: 2px solid var(--lime); color: rgba(255,255,255,.8); font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.notice-hero .eyebrow { margin-bottom: 14px; }
.notice-hero time { color: rgba(255,255,255,.68); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.notice-hero h1 { max-width: 1050px; margin: 14px 0 0; font-size: clamp(58px, 7vw, 98px); text-transform: uppercase; text-wrap: balance; }
.notice-body { background: var(--white); }
.notice-body__inner { display: grid; grid-template-columns: 230px minmax(0, 760px); justify-content: center; gap: 80px; }
.notice-body__heading { padding-top: 7px; border-top: 5px solid var(--purple); }
.notice-body__heading span, .notice-body__heading strong { display: block; }
.notice-body__heading span { margin: 18px 0 8px; color: var(--purple); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.notice-body__heading strong { font-family: var(--display); font-size: 29px; font-weight: 400; line-height: 1.04; text-transform: uppercase; }
.notice-body__text { color: #39333c; font-size: 17px; line-height: 1.85; }
.notice-body__text p { margin-bottom: 25px; }
.notice-body__text > *:last-child { margin-bottom: 0; }
.notice-body__text strong { color: var(--purple); }
.notice-body__text a { color: var(--purple); border-bottom: 2px solid var(--lime); font-weight: 700; }
.notice-documents { color: var(--white); background: var(--white); }
.notice-documents__panel { position: relative; padding: clamp(38px, 6vw, 72px); overflow: hidden; background: var(--purple); border-top: 10px solid var(--lime); box-shadow: 18px 18px 0 #e4dced; }
.notice-documents__panel::after { position: absolute; top: -150px; right: -95px; width: 290px; height: 350px; border: 46px solid rgba(255,255,255,.08); content: ""; pointer-events: none; transform: rotate(18deg); }
.notice-documents__head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 35px; margin-bottom: 44px; }
.notice-documents__head h2 { margin: 0; font-size: clamp(53px, 6.5vw, 86px); text-transform: uppercase; }
.notice-documents__head > p { max-width: 180px; margin: 0 0 9px; color: rgba(255,255,255,.6); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-align: right; text-transform: uppercase; }
.document-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.document-card { position: relative; z-index: 1; display: grid; min-width: 0; min-height: 132px; grid-template-columns: 36px 72px minmax(0, 1fr) 30px; align-items: center; gap: 18px; padding: 21px 24px; color: var(--white); background: var(--purple-dark); border: 1px solid rgba(255,255,255,.22); transition: color .2s, background .2s, border-color .2s, transform .2s; }
.document-card:hover { color: var(--black); background: var(--lime); border-color: var(--lime); transform: translateY(-3px); }
.document-card__order { align-self: start; color: var(--lime); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.document-card:hover .document-card__order { color: var(--purple); }
.document-card__icon { position: relative; display: grid; width: 66px; height: 74px; place-items: center; color: var(--lime); }
.document-card__icon svg { width: 48px; height: 48px; }
.document-card__icon b { position: absolute; right: -2px; bottom: 2px; min-width: 35px; padding: 3px 5px; color: var(--black); background: var(--lime); font-size: 7px; letter-spacing: .06em; text-align: center; }
.document-card:hover .document-card__icon { color: var(--purple); }
.document-card:hover .document-card__icon b { color: var(--white); background: var(--purple); }
.document-card__copy { min-width: 0; }
.document-card__copy strong, .document-card__copy small { display: block; }
.document-card__copy strong { overflow: hidden; font-size: 14px; line-height: 1.35; text-overflow: ellipsis; }
.document-card__copy small { margin-top: 7px; color: rgba(255,255,255,.55); font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.document-card:hover .document-card__copy small { color: rgba(21,18,24,.7); }
.document-card__arrow { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid rgba(255,255,255,.28); }
.document-card__arrow svg { width: 15px; }
.document-card:hover .document-card__arrow { border-color: var(--purple); color: var(--purple); }

.trial-hero { position: relative; overflow: hidden; background: var(--cream); border-bottom: 10px solid var(--purple); }
.trial-hero__number { position: absolute; top: -155px; left: 50%; color: rgba(75,46,131,.06); font-family: var(--display); font-size: 520px; line-height: 1; transform: translateX(-50%); }
.trial-hero__inner { position: relative; display: flex; min-height: 570px; flex-direction: column; align-items: center; justify-content: center; padding-top: 72px; padding-bottom: 72px; text-align: center; }
.trial-hero .eyebrow { margin-bottom: 24px; }
.trial-hero h1 { max-width: 1040px; margin-bottom: 26px; font-size: clamp(82px, 10vw, 145px); text-transform: uppercase; text-wrap: balance; }
.trial-hero h1 em { color: var(--purple); font-style: normal; }
.trial-hero__inner > p:last-child { max-width: 700px; margin: 0; color: var(--muted); font-size: 17px; }
.trial-flow-section { background: var(--white); }
.trial-flow-shell { width: min(1040px, calc(100% - 48px)); }
.trial-flow { position: relative; }
.trial-honeypot { position: absolute; left: -10000px; }
.trial-errors { padding: 22px 26px; margin-bottom: 28px; color: #7b1f2d; background: #fff0f2; border-left: 6px solid #b62e43; }
.trial-errors strong { font-size: 13px; text-transform: uppercase; }
.trial-errors ul { margin: 8px 0 0; padding-left: 18px; font-size: 13px; }
.trial-progress { display: grid; grid-template-columns: repeat(3, 1fr); padding: 0; margin: 0 0 64px; list-style: none; }
.trial-progress li { display: flex; align-items: center; gap: 12px; padding: 15px 0; color: #99939c; border-bottom: 3px solid #d9d4db; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.trial-progress li span { display: grid; width: 30px; height: 30px; place-items: center; color: var(--muted); border: 1px solid #c7c0ca; }
.trial-progress li.is-active { color: var(--purple); border-color: var(--purple); }
.trial-progress li.is-active span { color: var(--white); background: var(--purple); border-color: var(--purple); }
.trial-progress li.is-complete { color: var(--black); border-color: var(--lime); }
.trial-progress li.is-complete span { color: var(--black); background: var(--lime); border-color: var(--lime); }
.trial-step { min-width: 0; padding: 0; margin: 0; border: 0; scroll-margin-top: 145px; }
.trial-step[hidden], .trial-info-grid[hidden] { display: none; }
.trial-step--year { display: flex; max-width: 650px; min-height: 330px; flex-direction: column; align-items: center; justify-content: center; margin: 0 auto; padding: 55px; background: var(--cream); border-top: 8px solid var(--purple); }
.trial-select-label { margin-bottom: 12px; color: var(--purple); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.trial-select-wrap { position: relative; width: min(100%, 360px); }
.trial-select-wrap select { width: 100%; min-height: 72px; padding: 13px 55px 13px 20px; color: var(--black); background: var(--white); border: 1px solid #c9c1cb; border-radius: 0; appearance: none; font-family: var(--display); font-size: 32px; text-align: center; cursor: pointer; }
.trial-select-wrap svg { position: absolute; top: 50%; right: 22px; width: 18px; color: var(--purple); pointer-events: none; transform: translateY(-50%); }
.trial-next { min-width: 190px; margin-top: 28px; }
.trial-step__head { max-width: 820px; margin-bottom: 38px; }
.trial-step__head h2 { margin-bottom: 22px; font-size: clamp(62px, 8vw, 104px); text-transform: uppercase; }
.trial-step__head h2 em { color: var(--purple); font-style: normal; }
.trial-step__head > p:last-child { max-width: 690px; margin: 0; color: var(--muted); font-size: 16px; }
.trial-category-prompt { padding: 14px 18px; margin-bottom: 18px; color: var(--white); background: var(--purple); font-size: 12px; font-weight: 700; }
.trial-category-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 36px; }
.trial-category-option { cursor: pointer; }
.trial-category-option[hidden] { display: none; }
.trial-category-option input { position: absolute; opacity: 0; pointer-events: none; }
.trial-category-option > span { position: relative; display: flex; min-height: 120px; flex-direction: column; justify-content: center; padding: 24px 120px 24px 26px; background: var(--cream); border: 2px solid transparent; transition: border-color .2s, background .2s; }
.trial-category-option small { color: var(--purple); font-size: 8px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.trial-category-option strong { margin-top: 4px; font-family: var(--display); font-size: 37px; font-weight: 400; line-height: 1; text-transform: uppercase; }
.trial-category-option b { position: absolute; top: 50%; right: 24px; color: var(--muted); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; transform: translateY(-50%); }
.trial-category-option b::before { display: inline-block; width: 18px; height: 18px; margin-right: 8px; border: 2px solid #b9b2bc; content: ""; vertical-align: middle; }
.trial-category-option input:checked + span { background: #eee7fa; border-color: var(--purple); }
.trial-category-option input:checked + span b { color: var(--purple); }
.trial-category-option input:checked + span b::before { background: var(--lime); border: 5px solid var(--purple); }
.trial-category-option input:focus-visible + span { outline: 3px solid var(--lime); outline-offset: 3px; }
.trial-category-empty { padding: 28px; margin-bottom: 30px; color: var(--white); background: var(--black); text-align: center; }
.trial-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.trial-info-grid article { position: relative; min-height: 255px; padding: 34px; color: var(--white); background: var(--black); }
.trial-info-grid article + article { background: var(--purple); }
.trial-info-grid article > span { position: absolute; top: 22px; right: 25px; color: var(--lime); font-size: 9px; font-weight: 800; }
.trial-info-grid h3 { margin: 0 0 24px; color: var(--lime); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.trial-info-grid article > div p { display: flex; justify-content: space-between; gap: 18px; padding: 10px 0; margin: 0; border-top: 1px solid rgba(255,255,255,.17); font-size: 12px; }
.trial-info-grid article > div strong { text-transform: uppercase; }
.trial-info-grid article > p { margin: 0; color: rgba(255,255,255,.8); font-size: 13px; line-height: 1.7; }
.trial-step__actions { display: flex; justify-content: space-between; gap: 15px; margin-top: 36px; }
.trial-step__actions .button--purple { color: var(--white); background: var(--purple); }
.trial-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; padding: 40px; background: var(--cream); border-top: 8px solid var(--purple); }
.trial-form-grid label > span { display: block; margin-bottom: 8px; color: var(--purple); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.trial-form-grid input, .trial-form-grid select, .trial-form-grid textarea { width: 100%; min-height: 54px; padding: 13px 15px; color: var(--black); background: var(--white); border: 1px solid #c8c0ca; border-radius: 0; font: inherit; font-size: 14px; }
.trial-form-grid textarea { resize: vertical; }
.trial-form-grid input:focus, .trial-form-grid select:focus, .trial-form-grid textarea:focus { border-color: var(--purple); outline: 3px solid rgba(75,46,131,.14); outline-offset: 0; }
.trial-form-grid__wide { grid-column: 1 / -1; }
.field-error { display: block; margin-top: 7px; color: #a62237; font-size: 11px; font-weight: 700; }
.trial-submit { min-width: 290px; color: var(--black); background: var(--lime); }
.trial-noscript { padding: 16px; margin-top: 20px; color: var(--white); background: var(--black); }
.trial-success { position: relative; min-height: 430px; padding: clamp(45px, 8vw, 95px); overflow: hidden; color: var(--white); background: var(--purple); border-top: 10px solid var(--lime); }
.trial-success > span { position: absolute; right: -15px; bottom: -95px; color: rgba(255,255,255,.08); font-family: var(--display); font-size: 330px; line-height: 1; }
.trial-success h2 { position: relative; margin-bottom: 24px; font-size: clamp(68px, 9vw, 112px); text-transform: uppercase; }
.trial-success > p:last-child { position: relative; max-width: 650px; color: rgba(255,255,255,.78); font-size: 17px; }
.trial-faq { color: var(--white); background: var(--black); }
.trial-faq__layout { display: grid; grid-template-columns: 390px minmax(0, 1fr); gap: 90px; }
.trial-faq__head { position: sticky; top: 130px; align-self: start; }
.trial-faq__head h2 { margin: 0; font-size: clamp(65px, 7vw, 92px); text-transform: uppercase; }
.trial-faq__list { border-top: 1px solid rgba(255,255,255,.22); }
.trial-faq details { border-bottom: 1px solid rgba(255,255,255,.22); }
.trial-faq summary { display: grid; min-height: 84px; grid-template-columns: 35px 1fr 28px; align-items: center; gap: 18px; padding: 18px 0; cursor: pointer; font-size: 15px; font-weight: 700; list-style: none; }
.trial-faq summary::-webkit-details-marker { display: none; }
.trial-faq summary > span { color: var(--lime); font-size: 9px; letter-spacing: .1em; }
.trial-faq summary b { color: var(--lime); font-size: 25px; font-weight: 400; transition: transform .2s; }
.trial-faq details[open] summary b { transform: rotate(45deg); }
.trial-faq details > div { padding: 0 45px 25px 53px; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.75; }
.trial-faq details p { margin: 0; }

@media (max-width: 1120px) {
    .nav-cta { display: none; }
    .main-nav { justify-content: flex-end; }
    .main-nav__list { gap: 12px; }
    .footer__grid { grid-template-columns: 1.2fr repeat(3, 1fr); }
    .newsletter { grid-column: 1 / -1; max-width: 480px; }
    .article-story__layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 55px; }
    .notice-body__inner { grid-template-columns: 200px minmax(0, 700px); gap: 55px; }
    .trial-faq__layout { grid-template-columns: 320px minmax(0, 1fr); gap: 60px; }
}

@media (max-width: 900px) {
    body.nav-open { overflow: hidden; }
    .container { width: min(100% - 32px, 720px); }
    .section { padding: 72px 0; }
    .utility-bar .utility-bar__address, .utility-bar__contacts span { display: none; }
    .utility-bar__inner { justify-content: center; }
    .nav-bar__inner { min-height: 72px; justify-content: space-between; }
    .brand img { width: 47px; height: 54px; }
    .menu-toggle.mburger { display: inline-block; }
    .main-nav { position: absolute; top: 100%; right: 0; left: 0; display: flex; max-height: calc(100vh - 106px); flex-direction: column; justify-content: flex-start; padding: 0 16px 22px; overflow-x: hidden; overflow-y: auto; color: var(--white); background: var(--black); box-shadow: 0 18px 45px rgba(21,18,24,.3); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-14px); transform-origin: top; transition: opacity .28s ease, visibility .28s ease, transform .38s cubic-bezier(.2,.75,.25,1); }
    .main-nav::before { position: absolute; top: -100px; right: -70px; width: 210px; height: 260px; border: 34px solid rgba(75,46,131,.5); content: ""; transform: rotate(18deg); }
    .main-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
    .main-nav__intro { position: relative; z-index: 1; display: flex; flex-direction: column; padding: 30px 8px 24px; }
    .main-nav__intro span { color: var(--lime); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
    .main-nav__intro strong { margin-top: 4px; font-family: var(--display); font-size: 35px; font-weight: 400; line-height: 1; text-transform: uppercase; }
    .main-nav__list { position: relative; z-index: 1; display: block; width: 100%; }
    .nav-item { display: block; opacity: 0; transform: translateX(22px); transition: opacity .28s ease, transform .38s cubic-bezier(.2,.75,.25,1); transition-delay: 0s; }
    .nav-item--categories { position: relative; }
    .main-nav.is-open .nav-item { opacity: 1; transform: translateX(0); transition-delay: calc((var(--nav-delay) + 1) * 35ms); }
    .nav-link { width: 100%; min-height: 58px; justify-content: flex-start; padding: 8px 42px 8px 2px; border-top: 1px solid rgba(255,255,255,.13); color: var(--white); font-family: var(--display); font-size: 27px; font-weight: 400; letter-spacing: .015em; text-align: left; text-transform: uppercase; }
    .nav-link::after { display: none; }
    .nav-link:hover, .nav-link.is-active, .nav-item.is-open > .nav-link { color: var(--lime); }
    .nav-link__number { display: inline-block; width: 28px; color: var(--lime); font-family: var(--body); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
    .nav-dropdown-toggle svg { position: absolute; right: 8px; width: 18px; }
    .nav-dropdown { position: static; width: calc(100% + 4px); max-height: 0; padding: 0 14px; margin-left: -2px; overflow: hidden; color: var(--white); background: var(--purple-dark); box-shadow: none; opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition: max-height .45s cubic-bezier(.2,.75,.25,1), padding .35s ease; }
    .nav-item--categories:hover .nav-dropdown, .nav-item.is-open .nav-dropdown { transform: none; }
    .nav-item--categories:not(.is-open) .nav-dropdown { max-height: 0; padding-top: 0; padding-bottom: 0; }
    .nav-item--categories.is-open .nav-dropdown { max-height: 900px; padding-top: 20px; padding-bottom: 20px; }
    .nav-dropdown__head { display: block; padding-bottom: 15px; }
    .nav-dropdown__head strong { display: block; margin-top: 5px; font-size: 22px; }
    .category-menu { grid-template-columns: 1fr 1fr; margin-top: 14px; }
    .category-menu > li { padding: 14px 12px; }
    .category-menu__macro { font-size: 20px; }
    .category-menu__children { margin-top: 11px; }
    .main-nav__foot { position: relative; z-index: 1; display: flex; justify-content: space-between; padding: 23px 2px 4px; color: rgba(255,255,255,.45); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
    .main-nav__foot a { color: var(--lime); }
    .hero { min-height: 650px; }
    .hero__content { min-height: 525px; }
    .hero__foot { height: 125px; }
    .hero__foot p { gap: 9px; padding-right: 12px; }
    .hero__foot p + p { padding-left: 12px; }
    .hero__foot strong { font-size: 36px; }
    .section-heading--split, .try-band__inner { grid-template-columns: 1fr; gap: 30px; }
    .minirugby { grid-template-columns: 1fr; }
    .minirugby__media { min-height: 380px; }
    .category-grid, .news-grid { grid-template-columns: 1fr; gap: 2px; }
    .category-card { min-height: 260px; }
    .why__grid { grid-template-columns: 1fr 1fr; }
    .why__grid article:nth-child(3) { border-left: 0; }
    .why__grid article { padding: 25px; border-left: 1px solid rgba(255,255,255,.18); }
    .news-card, .news-card:first-child, .news-card:last-child { padding: 20px 0 30px; border-right: 0; border-bottom: 1px solid #d9d5dc; }
    .news-card__media, .news-card__graphic { height: 330px; }
    .sponsors__grid { grid-template-columns: 1fr 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .footer__brand, .newsletter { grid-column: 1 / -1; }
    .cms-page__hero, .cms-page__hero-content { min-height: 540px; }
    .cms-page__hero-mark { right: 2%; opacity: .58; }
    .cms-page__hero h1 { font-size: clamp(72px, 16vw, 118px); }
    .cms-page__content { padding-top: 72px; padding-bottom: 72px; }
    .cms-page__content::before { top: 74px; }
    .cms-page__lead { max-width: 680px; }
    .content-block { scroll-margin-top: 106px; }
    .content-block__inner, .content-block--featured .content-block__inner { min-height: 0; grid-template-columns: 1fr; }
    .content-block__media, .content-block--image-right .content-block__media { grid-column: 1; grid-row: 1; }
    .content-block__media img, .content-block--featured .content-block__media img { min-height: 380px; max-height: 520px; }
    .content-block__copy, .content-block--image-right .content-block__copy { grid-column: 1; grid-row: 2; padding: 58px 40px; }
    .content-block--featured { padding: 50px 0 70px; }
    .content-block--featured .content-block__media { width: calc(100% - 22px); box-shadow: 22px 22px 0 var(--lime); }
    .content-block--featured .content-block__copy { padding: 72px 0 0; }
    .content-block--featured.content-block--no-image .content-block__copy { padding: 0 0 0 110px; }
    .content-block--featured.content-block--no-image .content-block__number { left: 35px; }
    .content-block--text .content-block__copy { grid-row: 1; padding: 0 0 0 90px; }
    .coaches__heading { grid-template-columns: 1fr; gap: 22px; }
    .coach-grid { grid-template-columns: 1fr 1fr; }
    .schedule-intro { grid-template-columns: 1fr; gap: 22px; }
    .schedule-filters { grid-template-columns: 1fr; gap: 22px; }
    .weekly-schedule { min-width: 0; }
    .weekly-schedule__head, .time-axis { display: none; }
    .weekly-schedule__body { display: block; }
    .schedule-days { display: grid; grid-template-columns: 1fr; gap: 2px; padding: 2px; background: var(--black); }
    .schedule-day { border-left: 0; background: var(--white); }
    .schedule-day--empty { display: none; }
    .schedule-day h3 { display: block; padding: 14px 16px; margin: 0; color: var(--white); background: var(--black); font-family: var(--body); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
    .schedule-day__body { display: grid; height: auto; grid-template-columns: 1fr 1fr; gap: 2px; padding: 2px; background: #e8e4e9; }
    .schedule-event { position: static; width: auto; min-height: 104px; height: auto; padding: 15px 17px; transform: none; }
    .schedule-event:hover, .schedule-event:focus-visible { transform: none; }
    .schedule-event span { font-size: 9px; }
    .schedule-event strong { margin: 5px 0 2px; font-size: 28px; }
    .schedule-event small { font-size: 8px; }
    .articles-archive__head, .category-articles__head { align-items: flex-start; flex-direction: column; }
    .article-filters { max-width: none; justify-content: flex-start; }
    .article-grid { grid-template-columns: 1fr 1fr; }
    .article-story__layout { grid-template-columns: 1fr; }
    .match-sheet { position: static; width: min(100%, 560px); }
    .notices-hero__inner { grid-template-columns: 170px 1fr; gap: 45px; }
    .notices-hero__seal { width: 160px; height: 160px; }
    .notices-hero__seal span { font-size: 68px; }
    .notices-archive__head { grid-template-columns: 1fr; }
    .notices-archive__head > .notice-search__count { text-align: left; }
    .notice-card { grid-template-columns: 300px 1fr; }
    .notice-body__inner { grid-template-columns: 1fr; gap: 45px; }
    .notice-body__heading { max-width: 300px; }
    .document-list { grid-template-columns: 1fr; }
    .trial-hero__inner { min-height: 510px; }
    .trial-flow-shell { width: min(100% - 32px, 720px); }
    .trial-faq__layout { grid-template-columns: 1fr; gap: 45px; }
    .trial-faq__head { position: static; }
}

@media (max-width: 560px) {
    .utility-bar__contacts { width: 100%; justify-content: space-between; gap: 8px; }
    .utility-bar__contacts a { font-size: 9px; }
    .brand span { display: none; }
    .main-nav { max-height: calc(100vh - 106px); }
    .hero { min-height: 670px; }
    .hero__shade { background: linear-gradient(90deg, rgba(21,18,24,.88), rgba(21,18,24,.38)), linear-gradient(0deg, rgba(21,18,24,.8), transparent 65%); }
    .hero__image { object-position: 58% center; }
    .hero__content { min-height: 545px; justify-content: flex-end; padding-bottom: 45px; }
    .hero h1 { font-size: clamp(56px, 18vw, 76px); }
    .hero__lead { font-size: 14px; }
    .hero__actions { width: 100%; flex-direction: column; }
    .hero__actions .button { width: 100%; }
    .hero__foot p { flex-direction: column; align-items: flex-start; justify-content: center; gap: 4px; }
    .hero__foot p + p { padding-left: 9px; }
    .hero__foot strong { font-size: 30px; }
    .hero__foot span { font-size: 8px; }
    .jersey-lines { display: none; }
    .section-heading--split { margin-bottom: 36px; }
    .section-heading h2, .news h2, .why h2, .try-band h2 { font-size: 47px; }
    .minirugby__media { min-height: 260px; }
    .minirugby__body { padding: 32px 24px 36px; }
    .minirugby h3 { font-size: 55px; }
    .category-card { min-height: 245px; padding: 28px 24px; }
    .why__grid { grid-template-columns: 1fr; }
    .why__grid article, .why__grid article + article { padding: 24px 0; border-left: 0; }
    .why__grid h3 { min-height: 0; }
    .try-band__inner { padding-top: 64px; padding-bottom: 64px; }
    .try-band__action .button { width: 100%; }
    .section-heading--row { align-items: flex-start; flex-direction: column; }
    .news-card__media, .news-card__graphic { height: 235px; }
    .sponsors__head p { display: none; }
    .sponsors__grid strong { min-height: 68px; font-size: 15px; }
    .footer__grid { gap: 34px 20px; }
    .footer__bottom { flex-direction: column; gap: 12px; }
    .block-nav__inner { width: 100%; padding-left: 16px; }
    .block-nav__inner > span { display: none; }
    .block-nav a { min-width: auto; padding: 14px 18px; }
    .cms-page__hero, .cms-page__hero-content { min-height: 480px; }
    .cms-page__cover { object-position: 58% center; }
    .cms-page__hero-shade { background: linear-gradient(0deg, rgba(21,18,24,.92), rgba(21,18,24,.24) 85%); }
    .cms-page__hero-mark { top: -15%; right: -12%; height: 110%; opacity: .38; }
    .cms-page__hero-content { justify-content: flex-end; padding-bottom: 52px; }
    .cms-page__hero h1 { font-size: clamp(64px, 22vw, 92px); }
    .cms-page__content { padding-top: 65px; padding-bottom: 65px; }
    .cms-page__content::before { top: 68px; width: 6px; height: 58px; }
    .cms-page__content h1, .cms-page__lead { padding-left: 25px; }
    .cms-page__lead { font-size: 18px; }
    .content-block__media img, .content-block--featured .content-block__media img { min-height: 280px; }
    .content-block__copy, .content-block--image-right .content-block__copy { padding: 48px 24px; }
    .content-block__number { top: 18px; right: 22px; }
    .content-block h2 { font-size: 48px; }
    .content-block--featured { padding: 28px 0 55px; }
    .content-block--featured .content-block__copy { padding: 65px 0 0; }
    .content-block--featured.content-block--no-image { padding: 70px 0; }
    .content-block--featured.content-block--no-image .content-block__copy { padding: 58px 0 0; border-top: 7px solid var(--lime); border-left: 0; }
    .content-block--featured.content-block--no-image .content-block__number { top: 14px; left: 0; }
    .content-block--featured.content-block--no-image .content-block__html { font-size: 16px; }
    .content-block--text { padding: 72px 0; }
    .content-block--text .content-block__copy { padding: 58px 0 0; border-top: 7px solid var(--lime); border-left: 0; }
    .content-block--text .content-block__number { top: 14px; left: 0; }
    .content-block--text .content-block__html { font-size: 16px; }
    .category-hero, .category-hero__content { min-height: 520px; }
    .category-hero h1 { font-size: clamp(68px, 25vw, 105px); }
    .category-hero__content > p:not(.eyebrow) { font-size: 15px; }
    .training-band { padding: 66px 0 72px; }
    .training-grid { display: grid; grid-template-columns: 1fr; }
    .training-card { width: 100%; min-height: 150px; }
    .coach-grid { grid-template-columns: 1fr; }
    .coach-card { display: grid; grid-template-columns: 42% 58%; }
    .coach-card > img, .coach-card__initials { height: 100%; aspect-ratio: auto; }
    .coach-card__body { display: flex; flex-direction: column; justify-content: center; border-top: 0; border-left: 5px solid var(--lime); }
    .category-contact__inner { min-height: 330px; align-items: flex-start; flex-direction: column; justify-content: center; }
    .category-contact .button { width: 100%; }
    html { scroll-padding-top: 106px; }
    .schedule-hero, .schedule-hero__content { min-height: 330px; }
    .schedule-hero h1 { font-size: clamp(65px, 20vw, 88px); }
    .schedule-hero__mark { right: 8%; opacity: .35; }
    .schedule-filters { padding: 24px 20px; }
    .macro-options { display: grid; grid-template-columns: 1fr 1fr; }
    .macro-options span { padding-inline: 8px; }
    .schedule-day__body { grid-template-columns: 1fr; }
    .schedule-modal { padding: 16px; }
    .schedule-modal__panel { padding: 42px 24px 28px; box-shadow: 8px 8px 0 var(--purple); }
    .schedule-modal__time { align-items: flex-start; flex-direction: column; gap: 4px; }
    .articles-hero, .articles-hero__inner { min-height: 390px; }
    .articles-hero h1 { font-size: clamp(64px, 20vw, 88px); }
    .articles-hero__mark { right: 10%; opacity: .35; }
    .article-filters { display: grid; width: 100%; grid-template-columns: 1fr 1fr; }
    .article-filters a { justify-content: center; }
    .pagination { flex-wrap: wrap; gap: 9px; }
    .pagination__pages { order: -1; width: 100%; justify-content: center; }
    .pagination__step { flex: 1; }
    .article-grid { grid-template-columns: 1fr; gap: 18px; }
    .article-card__media { aspect-ratio: 16 / 10; }
    .article-card__body { padding: 25px 22px 28px; }
    .article-hero, .article-hero__content { min-height: 620px; }
    .article-hero__image { object-position: 56% center; }
    .article-hero__content { padding-bottom: 48px; }
    .article-hero h1 { font-size: clamp(53px, 16vw, 72px); }
    .article-hero__content > p { font-size: 15px; }
    .article-prose__text { font-size: 16px; line-height: 1.75; }
    .article-prose blockquote { padding: 64px 24px 36px; margin: 42px -16px; }
    .article-prose blockquote > span { left: 15px; }
    .article-prose blockquote p { font-size: 26px; }
    .match-sheet { box-shadow: 8px 8px 0 rgba(75,46,131,.15); }
    .article-inline-gallery__grid { grid-template-columns: 1fr; }
    .category-articles__head .button { width: 100%; }
    .notices-hero__inner { min-height: 490px; grid-template-columns: 1fr; align-content: end; gap: 38px; }
    .notices-hero__seal { width: 105px; height: 105px; }
    .notices-hero__seal span { font-size: 46px; }
    .notices-hero__seal b { margin-top: 10px; font-size: 7px; }
    .notices-hero h1 { font-size: clamp(59px, 19vw, 82px); }
    .notice-search__field { grid-template-columns: 1fr; gap: 7px; }
    .notice-search button { width: 100%; }
    .notice-card { grid-template-columns: 1fr; border-left-width: 5px; }
    .notice-card__media { min-height: 230px; }
    .notice-card__body { padding: 30px 22px 34px; }
    .notice-card h3 { font-size: 39px; }
    .notice-hero, .notice-hero__content { min-height: 610px; }
    .notice-hero__image { object-position: 58% center; }
    .notice-hero__shade { background: linear-gradient(0deg, rgba(21,18,24,.97) 0, rgba(21,18,24,.42) 85%); }
    .notice-hero__content { padding-bottom: 48px; }
    .notice-number { top: 35px; }
    .notice-hero h1 { font-size: clamp(50px, 15vw, 67px); }
    .notice-body__text { font-size: 16px; line-height: 1.75; }
    .notice-documents__head { grid-template-columns: 1fr; }
    .notice-documents__head > p { max-width: none; text-align: left; }
    .notice-documents__panel { padding: 32px 18px; box-shadow: 8px 8px 0 #e4dced; }
    .document-card { min-height: 118px; grid-template-columns: 25px 58px minmax(0, 1fr); gap: 11px; padding: 17px 14px; }
    .document-card__icon { width: 54px; height: 64px; }
    .document-card__icon svg { width: 42px; }
    .document-card__arrow { display: none; }
    .document-card__copy strong { font-size: 13px; }
    .trial-hero__number { top: -50px; font-size: 330px; }
    .trial-hero__inner { min-height: 480px; padding-top: 60px; padding-bottom: 60px; }
    .trial-hero h1 { font-size: clamp(59px, 17vw, 80px); }
    .trial-hero__inner > p:last-child { font-size: 14px; }
    .trial-progress { margin-bottom: 42px; }
    .trial-progress li { justify-content: center; padding-inline: 4px; font-size: 0; }
    .trial-progress li span { font-size: 9px; }
    .trial-step--year { min-height: 290px; padding: 36px 20px; }
    .trial-step__head h2 { font-size: 58px; }
    .trial-category-options, .trial-info-grid, .trial-form-grid { grid-template-columns: 1fr; }
    .trial-category-option > span { min-height: 105px; padding: 20px 112px 20px 20px; }
    .trial-category-option strong { font-size: 32px; }
    .trial-info-grid article { min-height: 220px; padding: 28px 22px; }
    .trial-form-grid { padding: 28px 20px; }
    .trial-form-grid__wide { grid-column: 1; }
    .trial-step__actions { flex-wrap: wrap; }
    .trial-step__actions .button { flex: 1; }
    .trial-submit { min-width: 100%; flex-basis: 100% !important; order: -1; }
    .trial-faq summary { grid-template-columns: 28px 1fr 22px; gap: 10px; font-size: 13px; }
    .trial-faq details > div { padding-left: 38px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; }
}
