/* ==========================================================================
   Xcelbet.co — main stylesheet (BEM). Mobile-first: 390px design → 1440px design.
   ========================================================================== */

:root {
  --font: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --c-cream: #f7f7f0;
  --c-white: #ffffff;
  --c-forest: #0c4539;
  --c-deep: #0a2f2c;
  --c-ink: #071d1a;
  --c-lime: #a8ef00;
  --c-lime-hover: #b9f52e;
  --c-lime-soft: #eff8d3;
  --c-line: rgba(10, 47, 44, 0.125);
  --c-line-strong: rgba(10, 47, 44, 0.2);
  --c-line-soft: rgba(10, 47, 44, 0.082);
  --c-line-white: rgba(255, 255, 255, 0.188);
  --c-muted: rgba(7, 29, 26, 0.565);
  --c-muted-forest: rgba(12, 69, 57, 0.565);
  --c-error: #c62828;
  --c-success: #1b7f3b;

  --lh: 1.366;                 /* Manrope natural line height (Figma "100%") */
  --gutter: 16px;
  --section-y: 48px;
  --radius-card: 12px;
  --shadow-card: 0 12px 32px rgba(7, 29, 26, 0.10);
  --shadow-lift: 0 10px 24px rgba(7, 29, 26, 0.12);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --t: .22s var(--ease);
}
@media (min-width: 768px) { :root { --gutter: 32px; } }
@media (min-width: 1024px) { :root { --gutter: 8.333vw; --section-y: 96px; } }

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  line-height: var(--lh);
  color: var(--c-ink);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
hr { border: 0; margin: 0; }
strong { font-weight: 800; }
:focus-visible { outline: 2px solid var(--c-lime); outline-offset: 3px; border-radius: 4px; }
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--c-lime); color: var(--c-forest); padding: 8px 16px; border-radius: 100px; font-weight: 800; font-size: 12px; }
.skip-link:focus { left: 16px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.icon { flex: none; }
.main { display: block; }

.container { width: min(1200px, 100% - 2 * var(--gutter)); margin-inline: auto; }

/* --------------------------------------------------------------------------
   Typography helpers
   -------------------------------------------------------------------------- */
.logo { font-weight: 800; letter-spacing: -1px; color: var(--c-forest); font-size: 26px; line-height: var(--lh); white-space: nowrap; }
.eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 1px; line-height: var(--lh); text-transform: uppercase; color: var(--c-forest); }
.eyebrow--lime { color: var(--c-lime); }
.eyebrow--icon { display: inline-flex; align-items: center; gap: 6px; }
.display { font-size: 48px; line-height: .95; letter-spacing: -2px; font-weight: 800; color: var(--c-forest); text-transform: uppercase; }
.h2 { font-size: 36px; line-height: var(--lh); letter-spacing: -1.5px; font-weight: 800; color: var(--c-forest); text-transform: uppercase; }
.h2--tight { line-height: 1; }
.h3 { font-size: 28px; line-height: 1.1; letter-spacing: -1px; font-weight: 800; color: var(--c-forest); text-transform: uppercase; }
.lead { font-size: 14px; line-height: 1.5; color: var(--c-ink); opacity: .7; }
.lead--strong { opacity: 1; color: var(--c-muted); }
@media (min-width: 1024px) {
  .logo { font-size: 36px; letter-spacing: -1.5px; }
  .eyebrow { font-size: 12px; }
  .display { font-size: clamp(64px, 6.667vw, 96px); line-height: .9; letter-spacing: -4px; }
  .h2 { font-size: clamp(44px, 4.444vw, 64px); letter-spacing: -3px; }
  .h3 { font-size: 48px; line-height: 1.05; letter-spacing: -2px; }
  .lead { font-size: 15px; line-height: 1.6; opacity: 1; color: var(--c-muted); }
}

/* --------------------------------------------------------------------------
   Buttons & links
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 800; font-size: 13px; line-height: var(--lh); letter-spacing: 0;
  border-radius: 100px; padding: 12px 20px; border: 1.5px solid transparent;
  transition: background-color var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
  white-space: nowrap; text-transform: uppercase;
}
.btn .icon { transition: transform var(--t); }
.btn:hover .icon--arrow-right { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--c-lime); color: var(--c-forest); border-color: var(--c-forest); }
.btn--primary:hover { background: var(--c-forest); color: var(--c-lime); box-shadow: 0 8px 20px rgba(12, 69, 57, .25); transform: translateY(-1px); }
.btn--dark { background: var(--c-forest); color: var(--c-white); border-color: var(--c-forest); }
.btn--dark:hover { background: var(--c-deep); border-color: var(--c-deep); box-shadow: 0 8px 20px rgba(7, 29, 26, .3); transform: translateY(-1px); }
.btn--lime { background: var(--c-lime); color: var(--c-forest); border-color: var(--c-lime); }
.btn--lime:hover { background: var(--c-lime-hover); box-shadow: 0 8px 20px rgba(168, 239, 0, .35); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--c-ink); border: 1px solid var(--c-line); }
.btn--outline:hover { border-color: var(--c-forest); background: var(--c-white); color: var(--c-forest); }
.btn--white { background: var(--c-white); color: var(--c-forest); border-color: var(--c-white); }
.btn--white:hover { background: var(--c-lime-soft); border-color: var(--c-lime); }
.btn--ghost { background: transparent; color: var(--c-forest); border-color: transparent; padding-inline: 8px; }
.btn--ghost:hover { color: var(--c-deep); text-decoration: underline; text-underline-offset: 4px; }
.btn--sm { padding: 9px 14px; font-size: 12px; }
.btn--lg { padding: 14px 24px; font-size: 14px; }
.btn--block { width: 100%; }
.btn--square { border-radius: 8px; }
.btn[disabled], .btn.is-disabled { opacity: .5; pointer-events: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 14px; line-height: var(--lh);
  color: var(--c-forest); text-transform: uppercase; position: relative;
}
.link-arrow .icon { transition: transform var(--t); }
.link-arrow::after { content: ''; position: absolute; left: 0; bottom: -3px; height: 2px; width: 100%; background: var(--c-lime); border-radius: 1px; transform: scaleX(0); transform-origin: left; transition: transform var(--t); }
.link-arrow:hover::after { transform: scaleX(1); }
.link-arrow:hover .icon { transform: translateX(4px); }
.link-arrow--lime { color: var(--c-lime); }
.link-arrow--lime::after { background: var(--c-lime); }
.link-arrow--white { color: var(--c-white); }
@media (min-width: 1024px) { .link-arrow { font-size: 16px; gap: 12px; } }

.text-link { color: var(--c-forest); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(12, 69, 57, .3); transition: text-decoration-color var(--t); }
.text-link:hover { text-decoration-color: var(--c-forest); }

/* --------------------------------------------------------------------------
   Badges / pills
   -------------------------------------------------------------------------- */
.age-badge {
  display: inline-flex; align-items: center; padding: 0 3px; border-radius: 3px;
  border: 1px solid var(--c-lime); color: var(--c-lime); background: var(--c-deep);
  font-size: 9px; font-weight: 800; line-height: var(--lh); white-space: nowrap;
}
@media (min-width: 1024px) { .age-badge { padding: 1px 7px; border-radius: 4px; font-size: 10px; } }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 100px; font-size: 11px; font-weight: 800; line-height: var(--lh); letter-spacing: .5px; text-transform: uppercase; background: var(--c-lime-soft); color: var(--c-forest); border: 1px solid var(--c-lime); }
.pill--plain { border-color: transparent; }
.pill--dark { background: var(--c-deep); color: var(--c-lime); border-color: transparent; }
.pill--forest { background: var(--c-forest); color: var(--c-white); border-color: transparent; }
.tag-label {
  position: absolute; left: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 11px 7px 8px; border-radius: 4px; background: var(--c-deep); border: 1px solid var(--c-lime); border-left-width: 4px;
  color: var(--c-lime); font-size: 11px; font-weight: 800; line-height: var(--lh); white-space: nowrap;
}
@media (min-width: 1024px) { .tag-label { left: 32px; bottom: 32px; padding: 11px 15px 11px 12px; font-size: 13px; } }

/* --------------------------------------------------------------------------
   Utility bar
   -------------------------------------------------------------------------- */
.utility-bar { background: var(--c-deep); color: var(--c-white); }
.utility-bar__inner { display: flex; flex-direction: column; justify-content: space-between; height: 38px; padding-block: 6px; }
.utility-bar__left { display: flex; align-items: center; gap: 6px; font-size: 9px; font-weight: 800; letter-spacing: .5px; line-height: var(--lh); }
.utility-bar__icon { color: var(--c-lime); width: 10px; height: 10px; }
.utility-bar__right { display: flex; align-items: center; gap: 12px; }
.utility-bar__help { font-size: 9px; font-weight: 600; color: var(--c-lime-soft); line-height: var(--lh); transition: color var(--t); }
.utility-bar__help:hover { color: var(--c-lime); }
.utility-bar__phone { display: none; font-size: 11px; font-weight: 700; color: var(--c-lime); line-height: var(--lh); }
.utility-bar__phone:hover { text-decoration: underline; text-underline-offset: 3px; }
@media (min-width: 1024px) {
  .utility-bar__inner { flex-direction: row; align-items: flex-start; justify-content: space-between; height: 34px; padding-block: 8px; }
  .utility-bar__left { gap: 8px; font-size: 11px; letter-spacing: 1px; }
  .utility-bar__icon { width: 12px; height: 12px; }
  .utility-bar__right { gap: 24px; }
  .utility-bar__help { font-size: 11px; }
  .utility-bar__phone { display: block; }
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.header { background: var(--c-cream); border-bottom: 1px solid var(--c-line-strong); position: relative; z-index: 40; }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 59px; }
.header__left { display: flex; align-items: center; gap: 48px; min-width: 0; }
.header__logo { transition: opacity var(--t); }
.header__logo:hover { opacity: .8; }
.header__nav { display: none; }
.nav__list { display: flex; gap: 24px; }
.nav__item { position: relative; }
.nav__link { display: inline-flex; flex-direction: column; gap: 2px; font-size: 14px; font-weight: 700; line-height: var(--lh); color: var(--c-ink); opacity: .6; transition: opacity var(--t), color var(--t); }
.nav__indicator { display: block; width: 12px; height: 2px; border-radius: 1px; background: var(--c-lime); transform: scaleX(0); transform-origin: left; transition: transform var(--t); }
.nav__link:hover { opacity: 1; color: var(--c-forest); }
.nav__link:hover .nav__indicator { transform: scaleX(1); }
.nav__item--active .nav__link { opacity: 1; color: var(--c-forest); }
.nav__item--active .nav__indicator { transform: scaleX(1); }
.header__right { display: flex; align-items: center; gap: 12px; }
.slip-btn {
  display: inline-flex; align-items: center; gap: 6px; padding: 7px 11px; border-radius: 100px; border: 1px solid var(--c-line-strong);
  font-size: 11px; font-weight: 700; color: var(--c-ink); line-height: var(--lh); transition: border-color var(--t), background-color var(--t), color var(--t), transform var(--t);
}
.slip-btn:hover { border-color: var(--c-forest); background: var(--c-white); color: var(--c-forest); }
.slip-btn__badge { display: inline-flex; align-items: center; justify-content: center; min-width: 17px; height: 14px; padding: 1px 5px; border-radius: 10px; background: var(--c-forest); color: var(--c-white); font-size: 9px; font-weight: 800; line-height: 1; transition: transform var(--t), background-color var(--t); }
.slip-btn--filled .slip-btn__badge { background: var(--c-forest); }
.slip-btn--active { background: var(--c-lime-soft); border: 1.5px solid var(--c-forest); color: var(--c-forest); font-weight: 800; }
.slip-btn__badge.is-bump { animation: bump .4s var(--ease); }
@keyframes bump { 0% { transform: scale(1); } 40% { transform: scale(1.35); background: var(--c-lime); color: var(--c-forest); } 100% { transform: scale(1); } }
.header__login, .header__join, .header__account { display: none; }
.burger { display: flex; flex-direction: column; gap: 4px; width: 20px; padding: 4px 0; }
.burger__bar { display: block; width: 20px; height: 2px; background: var(--c-forest); transition: transform var(--t), opacity var(--t); transform-origin: center; }
.burger[aria-expanded="true"] .burger__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bar:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (min-width: 1024px) {
  .header { border-bottom-color: var(--c-line); }
  .header__inner { height: 87px; }
  .header__nav { display: block; }
  .header__right { gap: 16px; }
  .slip-btn { gap: 8px; padding: 11px 15px; font-size: 13px; border-color: var(--c-line); }
  .slip-btn--active { padding: 10.5px 14.5px; }
  .slip-btn__badge { min-width: 20px; height: 19px; padding: 2px 6px; font-size: 11px; }
  .header__join { padding: 12.5px 22.5px; }
  .header__login { display: inline-block; font-size: 14px; font-weight: 700; color: var(--c-ink); line-height: var(--lh); padding: 0 6px; transition: color var(--t); }
  .header__login:hover { color: var(--c-forest); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--c-lime); text-decoration-thickness: 2px; }
  .header__join { display: inline-flex; padding: 12.5px 22.5px; font-size: 14px; }
  .header__account { display: inline-flex; flex-direction: column; align-items: flex-end; line-height: 1.1; padding: 0 6px; }
  .header__account-name { font-size: 12px; font-weight: 800; color: var(--c-forest); letter-spacing: .5px; }
  .header__account-balance { font-size: 12px; font-weight: 600; color: var(--c-muted); }
  .burger { display: none; }
}

/* --------------------------------------------------------------------------
   Mobile menu
   -------------------------------------------------------------------------- */
.mobile-menu { position: fixed; left: 0; right: 0; top: var(--menu-top, 98px); bottom: 0; z-index: 90; }
.mobile-menu[hidden] { display: none; }
.mobile-menu__backdrop { position: absolute; inset: 0; background: rgba(7, 29, 26, .5); opacity: 0; transition: opacity .25s; }
.mobile-menu__panel { position: relative; max-height: 100%; overflow-y: auto; background: var(--c-forest); padding: 24px 16px 32px; display: flex; flex-direction: column; gap: 24px; opacity: 0; transform: translateY(-14px); transition: transform .32s var(--ease), opacity .32s var(--ease); box-shadow: 0 24px 40px rgba(7, 29, 26, .35); }
.mobile-menu.is-open .mobile-menu__backdrop { opacity: 1; }
.mobile-menu.is-open .mobile-menu__panel { opacity: 1; transform: none; }
.mobile-menu__item { border-bottom: 1px solid rgba(255, 255, 255, .1); opacity: 0; transform: translateX(-10px); }
.mobile-menu.is-open .mobile-menu__item { animation: menu-in .4s var(--ease) forwards; animation-delay: calc(80ms + var(--i) * 40ms); }
@keyframes menu-in { to { opacity: 1; transform: none; } }
.mobile-menu__link { display: flex; align-items: center; gap: 12px; height: 57px; font-size: 18px; font-weight: 700; color: var(--c-white); line-height: var(--lh); transition: color var(--t); }
.mobile-menu__bar { width: 4px; height: 18px; border-radius: 2px; background: transparent; transition: background-color var(--t); }
.mobile-menu__chevron { margin-left: auto; opacity: .6; transition: transform var(--t), opacity var(--t), color var(--t); }
.mobile-menu__item--active .mobile-menu__link { color: var(--c-lime); font-weight: 800; }
.mobile-menu__link:hover { color: var(--c-lime); }
.mobile-menu__item--active .mobile-menu__bar, .mobile-menu__link:hover .mobile-menu__bar { background: var(--c-lime); }
.mobile-menu__item--active .mobile-menu__chevron, .mobile-menu__link:hover .mobile-menu__chevron { opacity: 1; transform: translateX(3px); }
.mobile-menu__actions { display: flex; flex-direction: column; gap: 12px; }
.mobile-menu__btn { display: flex; align-items: center; justify-content: center; height: 48px; border-radius: 8px; font-size: 16px; font-weight: 700; line-height: var(--lh); border: 1.5px solid transparent; transition: background-color var(--t), color var(--t), transform var(--t); }
.mobile-menu__btn:active { transform: scale(.985); }
.mobile-menu__btn--outline { border-color: var(--c-white); color: var(--c-white); }
.mobile-menu__btn--outline:hover { background: rgba(255, 255, 255, .08); }
.mobile-menu__btn--lime { background: var(--c-lime); border-color: var(--c-forest); color: var(--c-forest); font-weight: 800; }
.mobile-menu__btn--lime:hover { background: var(--c-lime-hover); }
.mobile-menu__divider { height: 1px; background: rgba(255, 255, 255, .1); }
.mobile-menu__support { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu__support-label { font-size: 12px; font-weight: 600; color: var(--c-lime-soft); line-height: var(--lh); }
.mobile-menu__support-phone { font-size: 16px; font-weight: 800; color: var(--c-lime); line-height: var(--lh); }
@media (max-width: 1023px) { .header { position: sticky; top: 0; } }
.header.is-scrolled { box-shadow: 0 4px 18px rgba(7, 29, 26, .08); }

/* --------------------------------------------------------------------------
   Odds button
   -------------------------------------------------------------------------- */
.odds {
  flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  height: 48px; padding: 0 11px; border-radius: 4px; background: var(--c-white); border: 1px solid var(--c-line-strong);
  text-align: center; position: relative; overflow: hidden;
  transition: background-color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
}
.odds__label { font-size: 10px; font-weight: 600; text-transform: uppercase; color: var(--c-ink); opacity: .6; line-height: var(--lh); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; transition: opacity var(--t), color var(--t); }
.odds__value { font-size: 15px; font-weight: 800; color: var(--c-ink); line-height: var(--lh); transition: color var(--t), transform var(--t); }
.odds:hover { border-color: var(--c-forest); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(12, 69, 57, .12); }
.odds:hover .odds__value { color: var(--c-forest); }
.odds--selected, .odds--selected:hover { background: var(--c-lime); border-color: var(--c-forest); }
.odds--selected .odds__label { opacity: 1; color: var(--c-forest); }
.odds--selected .odds__value { color: var(--c-forest); }
.odds.is-up .odds__value { animation: odds-up .9s var(--ease); }
.odds.is-down .odds__value { animation: odds-down .9s var(--ease); }
@keyframes odds-up { 0%, 60% { color: var(--c-success); } }
@keyframes odds-down { 0%, 60% { color: var(--c-error); } }
@media (min-width: 1024px) {
  .odds { align-items: flex-start; justify-content: flex-start; text-align: left; height: auto; padding: 11px 15px; border-color: var(--c-line); }
  .odds__label { font-size: 11px; }
  .odds__value { font-size: 16px; }
  .odds--selected, .odds--selected:hover { border-width: 1px; }
}

/* --------------------------------------------------------------------------
   Event card
   -------------------------------------------------------------------------- */
.event { display: flex; flex-direction: column; gap: 12px; padding: 11px; border-radius: 8px; background: var(--c-cream); border: 1px solid var(--c-line-strong); transition: border-color var(--t), box-shadow var(--t), transform var(--t); }
.event:hover { border-color: rgba(12, 69, 57, .35); box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.event__meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.event__meta-left { display: flex; align-items: center; gap: 8px; min-width: 0; }
.event__time { font-size: 11px; font-weight: 700; color: var(--c-forest); line-height: var(--lh); white-space: nowrap; }
.event__tags { font-size: 11px; color: var(--c-ink); opacity: .6; line-height: var(--lh); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.event__more { font-size: 11px; font-weight: 700; color: var(--c-forest); line-height: var(--lh); white-space: nowrap; transition: color var(--t); }
.event__more:hover { text-decoration: underline; text-underline-offset: 3px; }
.event__more-full { display: none; }
.event__tag--desk { display: none; }
.event.is-highlighted { border-color: var(--c-lime); box-shadow: 0 0 0 3px rgba(168, 239, 0, .35); }
.event__content { display: flex; flex-direction: column; gap: 12px; }
.event__title { font-size: 14px; font-weight: 800; color: var(--c-ink); line-height: var(--lh); }
.event__odds { display: flex; gap: 8px; }
.event__odds--3 { gap: 6px; }
@media (min-width: 1024px) {
  .event { gap: 16px; padding: 19px; border-color: var(--c-line); }
  .event__meta-left { gap: 12px; }
  .event__time, .event__more { font-size: 12px; }
  .event__more-full { display: inline; }
  .event__more-short { display: none; }
  .event__tag--desk { display: inline; }
  .event__tags { font-size: 12px; opacity: 1; color: var(--c-muted); }
  .event__content { flex-direction: row; align-items: center; gap: 16px; }
  .event__title { flex: 1; font-size: 18px; }
  .event__odds { width: 380px; flex: none; }
  .event__odds--3 { gap: 8px; }
}
.market-group { display: flex; flex-direction: column; gap: 8px; }
.market-group__head { padding: 6px 10px; background: var(--c-forest); color: var(--c-white); font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; line-height: var(--lh); }
@media (min-width: 1024px) {
  .market-group { gap: 12px; }
  .market-group__head { padding: 8px 12px; font-size: 12px; }
}

/* --------------------------------------------------------------------------
   Race row
   -------------------------------------------------------------------------- */
.race { display: flex; align-items: center; gap: 12px; padding: 11px; border-radius: 6px; background: var(--c-deep); border: 1px solid rgba(255, 255, 255, .3); color: var(--c-white); transition: border-color var(--t), transform var(--t), background-color var(--t); }
.race:hover { border-color: var(--c-lime); transform: translateX(4px); }
.race__num { flex: none; width: 28px; height: 28px; border-radius: 100px; background: var(--c-lime); color: var(--c-forest); font-size: 12px; font-weight: 800; display: grid; place-items: center; line-height: 1; }
.race__info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.race__track { font-size: 14px; font-weight: 800; line-height: var(--lh); }
.race__meta { font-size: 11px; color: var(--c-lime-soft); opacity: .8; line-height: var(--lh); }
.race__view { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 700; color: var(--c-lime); line-height: var(--lh); }
.race__arrow { width: 10px; height: 10px; transition: transform var(--t); }
.race:hover .race__arrow { transform: translateX(3px); }
@media (min-width: 1024px) {
  .race { gap: 16px; padding: 15px; border-color: var(--c-line-white); }
  .race__num { width: 36px; height: 36px; font-size: 14px; }
  .race__track { font-size: 15px; }
  .race__meta, .race__view { font-size: 12px; }
  .race__arrow { width: 12px; height: 12px; }
}

/* --------------------------------------------------------------------------
   Game row (staggered list)
   -------------------------------------------------------------------------- */
.game-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px; border-radius: 8px; background: var(--c-white); border: 1px solid var(--c-line-strong); transition: transform var(--t), border-color var(--t), box-shadow var(--t), background-color var(--t); }
.game-row__left { display: flex; align-items: center; gap: 16px; }
.game-row__num { font-size: 13px; font-weight: 800; color: var(--c-forest); line-height: var(--lh); }
.game-row__name { font-size: 16px; font-weight: 800; color: var(--c-ink); text-transform: uppercase; line-height: var(--lh); }
.game-row__right { display: flex; align-items: center; gap: 12px; }
.game-row__count { font-size: 13px; font-weight: 600; color: var(--c-forest); line-height: var(--lh); white-space: nowrap; }
.game-row__circle { width: 24px; height: 24px; border-radius: 100px; background: var(--c-lime-soft); color: var(--c-forest); display: grid; place-items: center; transition: background-color var(--t), transform var(--t); }
.game-row__circle .icon { width: 10px; height: 10px; }
.game-row:hover { transform: translateX(6px); border-color: var(--c-forest); box-shadow: var(--shadow-lift); }
.game-row:hover .game-row__circle { background: var(--c-lime); transform: rotate(-45deg); }
.game-row--active { background: var(--c-forest); border-color: var(--c-forest); }
.game-row--active .game-row__num, .game-row--active .game-row__count { color: var(--c-lime); }
.game-row--active .game-row__name { color: var(--c-white); }
.game-row--active .game-row__circle { background: var(--c-lime); }
@media (min-width: 1024px) {
  .game-row { padding: 19px 23px; border-color: var(--c-line); width: calc(100% - var(--n) * 24px); }
  .game-row__left { gap: 24px; }
  .game-row__num { font-size: 14px; }
  .game-row__name { font-size: 20px; }
  .game-row__right { gap: 16px; }
  .game-row__count { font-size: 14px; }
  .game-row__circle { width: 32px; height: 32px; }
  .game-row__circle .icon { width: 14px; height: 14px; }
}

/* --------------------------------------------------------------------------
   Responsible gambling section
   -------------------------------------------------------------------------- */
.rg { padding-block: var(--section-y); background: var(--c-white); }
.rg--dark { background: var(--c-forest); }
.rg__top { display: flex; flex-direction: column; gap: 12px; }
.rg__title-col { display: flex; flex-direction: column; gap: 8px; }
.rg__title { line-height: 1; }
.rg--dark .rg__title { color: var(--c-white); }
.rg__text { font-size: 14px; line-height: 1.5; color: var(--c-ink); opacity: .7; }
.rg--dark .rg__text { color: var(--c-lime-soft); opacity: .8; }
.rg__cards { display: grid; gap: 16px; margin-top: 32px; }
.rg-card { display: flex; flex-direction: column; gap: 20px; padding: 19px; border-radius: 12px; border: 1px solid var(--c-line-strong); transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.rg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.rg-card--soft { background: var(--c-lime-soft); }
.rg-card--cream { background: var(--c-cream); }
.rg-card--dark { background: var(--c-forest); border-color: transparent; }
.rg--dark .rg-card--dark { background: var(--c-deep); }
.rg-card__head { display: flex; align-items: center; justify-content: space-between; }
.rg-card__index { font-size: 12px; font-weight: 800; color: var(--c-forest); line-height: var(--lh); }
.rg-card__badge { width: 24px; height: 24px; border-radius: 100px; background: var(--c-white); color: var(--c-forest); display: grid; place-items: center; transition: transform var(--t); }
.rg-card__badge .icon { width: 10px; height: 10px; }
.rg-card:hover .rg-card__badge { transform: rotate(12deg) scale(1.08); }
.rg-card--dark .rg-card__index { color: var(--c-lime); }
.rg-card--dark .rg-card__badge { background: var(--c-deep); color: var(--c-lime); }
.rg--dark .rg-card--dark .rg-card__badge { background: var(--c-forest); }
.rg-card__body { display: flex; flex-direction: column; gap: 8px; }
.rg-card__title { font-size: 18px; font-weight: 800; color: var(--c-forest); text-transform: uppercase; line-height: var(--lh); }
.rg-card--cream .rg-card__title { color: var(--c-ink); }
.rg-card--dark .rg-card__title { color: var(--c-white); }
.rg-card__text { font-size: 13px; line-height: 1.4; color: var(--c-ink); opacity: .7; }
.rg-card--dark .rg-card__text { color: var(--c-lime-soft); opacity: .8; }
.rg-card__link { display: inline-flex; gap: 4px; font-size: 12px; font-weight: 800; letter-spacing: 1px; color: var(--c-forest); line-height: var(--lh); text-transform: uppercase; }
.rg-card__arrow { display: inline-block; transition: transform var(--t); }
.rg-card__link:hover .rg-card__arrow { transform: translateX(4px); }
.rg-card--dark .rg-card__link { color: var(--c-lime); }
/* dark theme (inner pages) mobile specifics */
.rg--dark .rg__eyebrow { letter-spacing: 1.5px; }
.rg--dark .rg__text { font-size: 14px; }
.rg--dark .rg-card__badge { width: 32px; height: 32px; }
.rg--dark .rg-card__badge .icon { width: 14px; height: 14px; }
.rg--dark .rg-card__link { font-size: 13px; }
.rg--dark .rg-card--dark { border: 1px solid rgba(255, 255, 255, .2); }
@media (min-width: 1024px) {
  .rg__top { flex-direction: row; align-items: flex-start; gap: 32px; }
  .rg__title-col { flex: 1; gap: 12px; }
  .rg__text { width: 379px; flex: none; font-size: 15px; line-height: 1.6; opacity: 1; color: var(--c-muted); }
  .rg__cards { grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
  .rg-card { min-height: 320px; padding: 31px; gap: 32px; justify-content: space-between; border-color: var(--c-line); }
  .rg-card--dark { border-color: transparent; }
  .rg-card__badge, .rg--dark .rg-card__badge { width: 40px; height: 40px; }
  .rg-card__badge .icon, .rg--dark .rg-card__badge .icon { width: 16px; height: 16px; }
  .rg--dark .rg-card__link { font-size: 12px; }
  .rg--dark .rg-card--dark { border-color: transparent; }
  .rg--dark .rg__text { font-size: 15px; }
  .rg-card__body { gap: 12px; }
  .rg-card__title { font-size: 20px; }
  .rg-card__text { font-size: 14px; line-height: 1.5; opacity: 1; color: var(--c-muted); }
  .rg-card--soft .rg-card__text { color: var(--c-forest); opacity: .8; }
  .rg-card--dark .rg-card__text { color: var(--c-lime-soft); opacity: .8; }
}

/* --------------------------------------------------------------------------
   BetStop band
   -------------------------------------------------------------------------- */
.betstop-band { background: var(--c-white); padding-block: 24px; }
.betstop-band--bleed { padding-block: 0; }
.betstop-band--cream { background: var(--c-cream); }
.betstop-band__box { display: flex; flex-direction: column; border-radius: 16px; overflow: hidden; background: var(--c-deep); border: 2px solid var(--c-forest); }
.betstop-band__left { display: flex; flex-direction: column; gap: 24px; padding: 22px 22px 24px; }
.betstop-band__heading { display: flex; flex-direction: column; gap: 12px; }
.betstop-band__title { font-size: 28px; line-height: 1.1; letter-spacing: -1px; font-weight: 800; color: var(--c-white); text-transform: uppercase; }
.betstop-band__accent { width: 80px; height: 3px; border-radius: 2px; background: var(--c-lime); }
.betstop-band__text { font-size: 13px; line-height: 1.5; color: var(--c-lime-soft); opacity: .8; }
.betstop-band__right { display: flex; flex-direction: column; gap: 16px; padding: 24px 22px 22px; background: var(--c-lime); }
.betstop-band__side-title { font-size: 24px; letter-spacing: -1px; font-weight: 800; color: var(--c-forest); line-height: var(--lh); }
.betstop-band__side-text { font-size: 13px; line-height: 1.4; color: var(--c-forest); }
.betstop-band__btn { width: 100%; padding: 12px 20px; }
@media (max-width: 1023px) {
  .betstop-band--bleed .container { width: 100%; }
}
@media (min-width: 1024px) {
  .betstop-band { padding: 48px 0 var(--section-y); }
  .betstop-band--pad-lg { padding-top: var(--section-y); }
  .betstop-band__box { flex-direction: row; }
  .betstop-band__left { flex: 1 1 687px; gap: 48px; padding: 48px; }
  .betstop-band__heading { gap: 16px; }
  .betstop-band__title { font-size: clamp(36px, 3.333vw, 48px); line-height: 1.05; letter-spacing: -2px; }
  .betstop-band__accent { width: 120px; height: 4px; }
  .betstop-band__text { font-size: 14px; line-height: 1.6; }
  .betstop-band__right { flex: 0 0 479px; gap: 24px; padding: 46px 48px; }
  .betstop-band__left { padding: 46px 48px; }
  .betstop-band__side-title { font-size: 32px; letter-spacing: -1.5px; }
  .betstop-band__side-text { font-size: 14px; line-height: 1.5; max-width: 385px; }
  .betstop-band__btn { width: auto; align-self: flex-start; padding: 14px 24px; font-size: 13px; }
}

/* --------------------------------------------------------------------------
   Payment strip
   -------------------------------------------------------------------------- */
.payment-strip { background: var(--c-cream); border-top: 1px solid var(--c-line-strong); border-bottom: 1px solid var(--c-line-strong); }
.payment-strip__inner { display: flex; flex-direction: column; gap: 16px; padding-block: 31px; }
.payment-strip__left { display: flex; flex-direction: column; gap: 12px; }
.payment-strip__title { font-size: 11px; font-weight: 800; letter-spacing: 1px; color: var(--c-forest); line-height: var(--lh); white-space: nowrap; }
.payment-strip__logos { width: 180px; height: 24px; object-fit: contain; object-position: left; }
.payment-strip__right { display: flex; flex-direction: column; gap: 8px; }
.payment-strip__note { font-size: 12px; line-height: 1.4; color: var(--c-forest); }
.payment-strip__line { font-size: 11px; font-weight: 800; color: var(--c-forest); line-height: var(--lh); }
@media (min-width: 1024px) {
  .payment-strip { border-color: var(--c-line); }
  .payment-strip__inner { flex-direction: row; align-items: center; justify-content: space-between; padding-block: 23px; }
  .payment-strip__left { flex-direction: row; align-items: center; gap: 24px; }
  .payment-strip__title { font-size: 12px; }
  .payment-strip__logos { width: 300px; height: 40px; }
  .payment-strip__right { align-items: flex-end; gap: 4px; text-align: right; }
  .payment-strip__note { font-size: 12px; line-height: var(--lh); }
  .payment-strip__line { font-size: 12px; }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--c-forest); color: var(--c-white); padding: 48px 0; }
.footer__main { display: flex; flex-direction: column; gap: 40px; }
.footer__brand { display: flex; flex-direction: column; gap: 24px; }
.footer__logo { color: var(--c-lime); font-size: 32px; letter-spacing: -1.5px; }
.footer__legal { display: flex; flex-direction: column; gap: 8px; }
.footer__operator { font-size: 14px; font-weight: 700; line-height: var(--lh); }
.footer__address { font-size: 12px; line-height: 1.5; color: var(--c-lime-soft); opacity: .8; }
.footer__navs { display: flex; flex-direction: column; gap: 32px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__heading { font-size: 12px; font-weight: 800; letter-spacing: 1px; color: var(--c-lime); line-height: var(--lh); }
.footer__list { display: flex; flex-direction: column; gap: 12px; }
.footer__link { font-size: 13px; color: var(--c-white); opacity: .8; line-height: var(--lh); display: block; width: fit-content; position: relative; transition: opacity var(--t), transform var(--t); }
.footer__link::before { content: ''; position: absolute; left: -14px; top: 50%; width: 8px; height: 2px; background: var(--c-lime); transform: translateY(-50%) scaleX(0); transform-origin: right; transition: transform var(--t); }
.footer__link:hover { opacity: 1; transform: translateX(14px); }
.footer__link:hover::before { transform: translateY(-50%) scaleX(1); }
.footer__divider { height: 1px; background: rgba(255, 255, 255, .3); margin-block: 40px; }
.footer__bottom { display: flex; flex-direction: column; gap: 16px; }
.footer__compliance { font-size: 11px; font-weight: 800; letter-spacing: .5px; color: var(--c-lime); line-height: var(--lh); text-transform: uppercase; }
.footer__copyright { font-size: 11px; color: var(--c-white); opacity: .4; line-height: var(--lh); }
@media (min-width: 1024px) {
  .footer { padding: 96px 0 64px; }
  .footer__main { flex-direction: row; gap: 64px; }
  .footer__brand { flex: 0 0 481px; }
  .footer__logo { font-size: 40px; letter-spacing: -2px; }
  .footer__address { font-size: 13px; line-height: 1.6; }
  .footer__navs { flex: 1; flex-direction: row; gap: 64px; }
  .footer__col { flex: 1; gap: 16px; }
  .footer__list { gap: 16px; }
  .footer__divider { background: var(--c-line-white); margin-block: 64px; }
  .footer__compliance { font-size: 12px; letter-spacing: 1px; }
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label { font-size: 12px; font-weight: 800; letter-spacing: .5px; color: var(--c-forest); text-transform: uppercase; line-height: var(--lh); }
.field__hint { font-size: 12px; color: var(--c-muted); line-height: 1.4; }
.field__error { font-size: 12px; color: var(--c-error); font-weight: 600; line-height: 1.4; }
.field--error .input { border-color: var(--c-error); }
.input {
  width: 100%; padding: 14px 16px; border-radius: 8px; background: var(--c-white); border: 1px solid var(--c-line-strong);
  font-size: 14px; color: var(--c-ink); line-height: var(--lh); transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
}
.input::placeholder { color: rgba(7, 29, 26, .4); }
.input:hover { border-color: rgba(12, 69, 57, .4); }
.input:focus { outline: none; border-color: var(--c-forest); box-shadow: 0 0 0 3px rgba(168, 239, 0, .35); }
.input--textarea { min-height: 140px; resize: vertical; }
.select { position: relative; }
.select .input { padding-right: 40px; }
.select__chevron { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--c-forest); }
.check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 13px; line-height: 1.45; color: var(--c-ink); }
.check input { position: absolute; opacity: 0; width: 0; height: 0; }
.check__box { flex: none; width: 20px; height: 20px; margin-top: 1px; border-radius: 4px; border: 1.5px solid var(--c-forest); background: var(--c-white); display: grid; place-items: center; color: var(--c-forest); transition: background-color var(--t), border-color var(--t); }
.check__box .icon { width: 12px; height: 12px; opacity: 0; transform: scale(.6); transition: opacity var(--t), transform var(--t); }
.check input:checked + .check__box { background: var(--c-lime); }
.check input:checked + .check__box .icon { opacity: 1; transform: none; }
.check input:focus-visible + .check__box { outline: 2px solid var(--c-lime); outline-offset: 2px; }
.form-grid { display: grid; gap: 16px; }
@media (min-width: 768px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } .form-grid .span-2 { grid-column: span 2; } }
.form-alert { padding: 12px 16px; border-radius: 8px; font-size: 13px; font-weight: 600; line-height: 1.45; border: 1px solid; }
.form-alert--error { background: #fdecec; border-color: #f3b5b5; color: #8f1d1d; }
.form-alert--success { background: var(--c-lime-soft); border-color: var(--c-lime); color: var(--c-forest); }
.form-alert--info { background: var(--c-cream); border-color: var(--c-line); color: var(--c-forest); }
.toggle { position: relative; display: inline-flex; align-items: center; width: 44px; height: 24px; flex: none; }
.toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.toggle__track { position: absolute; inset: 0; border-radius: 100px; background: rgba(12, 69, 57, .2); transition: background-color var(--t); }
.toggle__thumb { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 100px; background: var(--c-white); box-shadow: 0 1px 3px rgba(0, 0, 0, .25); transition: transform var(--t); }
.toggle input:checked ~ .toggle__track { background: var(--c-forest); }
.toggle input:checked ~ .toggle__thumb { transform: translateX(20px); background: var(--c-lime); }
.toggle input:disabled ~ .toggle__track { opacity: .5; }
.toggle input:focus-visible ~ .toggle__track { outline: 2px solid var(--c-lime); outline-offset: 2px; }

/* --------------------------------------------------------------------------
   Flash / toast / cookie banner
   -------------------------------------------------------------------------- */
.flash-stack { position: fixed; top: 12px; left: 50%; transform: translateX(-50%); z-index: 95; display: flex; flex-direction: column; gap: 8px; width: min(92vw, 520px); }
.flash, .toast { padding: 12px 16px; border-radius: 10px; font-size: 13px; font-weight: 700; line-height: 1.4; box-shadow: 0 10px 30px rgba(7, 29, 26, .25); animation: toast-in .35s var(--ease); }
.flash::before, .toast::before { content: ''; display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 10px; vertical-align: middle; background: var(--c-lime); flex: none; }
.flash--success, .toast--success { background: var(--c-forest); color: var(--c-white); }
.flash--error, .toast--error { background: #fdecec; color: #8f1d1d; }
.flash--error::before, .toast--error::before { background: var(--c-error); }
.flash--info, .toast--info { background: var(--c-deep); color: var(--c-lime-soft); }
.toast-stack { position: fixed; right: 16px; bottom: 16px; z-index: 96; display: flex; flex-direction: column; gap: 8px; width: min(92vw, 360px); pointer-events: none; }
.toast { display: flex; align-items: center; gap: 10px; pointer-events: auto; }
.toast.is-leaving { animation: toast-out .3s var(--ease) forwards; }
@keyframes toast-in { from { opacity: 0; transform: translateY(12px); } }
@keyframes toast-out { to { opacity: 0; transform: translateY(8px); } }
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; padding: 12px; transform: translateY(120%); animation: banner-in .5s var(--ease) 1s forwards; }
@keyframes banner-in { to { transform: none; } }
.cookie-banner.is-hidden { display: none; }
.cookie-banner__inner { max-width: 1200px; margin: 0 auto; background: var(--c-deep); color: var(--c-white); border: 1px solid var(--c-line-white); border-radius: 14px; padding: 16px; display: flex; flex-direction: column; gap: 14px; box-shadow: 0 16px 40px rgba(7, 29, 26, .35); }
.cookie-banner__text { display: flex; gap: 10px; font-size: 13px; line-height: 1.5; color: var(--c-lime-soft); }
.cookie-banner__icon { color: var(--c-lime); margin-top: 2px; }
.cookie-banner__text a { color: var(--c-lime); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie-banner .btn--outline { color: var(--c-white); border-color: var(--c-line-white); }
.cookie-banner .btn--outline:hover { color: var(--c-forest); }
.cookie-banner .btn--ghost { color: var(--c-lime-soft); }
@media (min-width: 768px) {
  .cookie-banner { padding: 16px; }
  .cookie-banner__inner { flex-direction: row; align-items: center; justify-content: space-between; padding: 16px 20px; }
  .cookie-banner__actions { flex: none; }
}

/* --------------------------------------------------------------------------
   Reveal animations
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }
.hero-anim > * { animation: hero-in .7s var(--ease) both; }
.hero-anim > *:nth-child(1) { animation-delay: .05s; }
.hero-anim > *:nth-child(2) { animation-delay: .15s; }
.hero-anim > *:nth-child(3) { animation-delay: .25s; }
.hero-anim > *:nth-child(4) { animation-delay: .35s; }
.hero-anim > *:nth-child(5) { animation-delay: .45s; }
@keyframes hero-in { from { opacity: 0; transform: translateY(20px); } }
.img-zoom { overflow: hidden; }
.img-zoom img { transition: transform .8s var(--ease); }
.img-zoom:hover img { transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-delay: 0ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Split hero (sports / racing): text column + framed photo
   -------------------------------------------------------------------------- */
.split-hero { display: flex; flex-direction: column; background: var(--c-cream); }
.split-hero__left { display: flex; flex-direction: column; gap: 24px; padding: 32px var(--gutter) 0; }
.split-hero__meta { display: flex; flex-direction: column; gap: 12px; }
.split-hero__desc { display: flex; flex-direction: column; gap: 24px; }
.split-hero__text { font-size: 14px; line-height: 1.5; color: var(--c-ink); opacity: .7; }
.split-hero__decor { display: none; }
.split-hero__right { padding: 24px var(--gutter) 48px; }
.photo-frame { display: flex; padding: 6px; border-radius: 12px; background: var(--c-lime-soft); }
.photo-frame__img { position: relative; flex: 1; min-height: 268px; border-radius: 8px; overflow: hidden; }
.photo-frame__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.photo-frame:hover .photo-frame__img img { transform: scale(1.04); }
.tag-label--tight { left: 12px; bottom: 12px; padding: 7px 11px 7px 8px; }
.photo-frame--outline { padding: 0; background: none; border: 2px solid var(--c-lime); }
.photo-frame--outline .photo-frame__img { border-radius: 10px; min-height: 276px; }
.photo-frame--outline .tag-label { left: 16px; bottom: 16px; }
@media (min-width: 1024px) {
  .split-hero { flex-direction: row; min-height: 640px; }
  .photo-frame--outline { padding: 8px; background: var(--c-lime-soft); border: 0; }
  .photo-frame--outline .photo-frame__img { border-radius: 8px; }
  .photo-frame--outline .tag-label { left: 24px; bottom: 24px; }
  .split-hero--tall { min-height: 680px; }
  .split-hero__left { flex: 0 0 56.04%; justify-content: space-between; gap: 32px; padding: 64px 48px 64px var(--gutter); }
  .split-hero__meta { gap: 16px; }
  .split-hero__text { font-size: 15px; line-height: 1.6; opacity: .75; }
  .split-hero--tall .split-hero__text { font-size: 16px; font-weight: 500; }
  .split-hero__decor { display: flex; align-items: center; gap: 16px; height: 24px; color: var(--c-forest); }
  .split-hero__decor-circle { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--c-forest); }
  .split-hero__decor-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--c-lime); }
  .split-hero__decor-line { width: 100px; height: 1px; background: var(--c-forest); opacity: .2; }
  .split-hero__decor-line--long { width: 120px; }
  .split-hero__right { flex: 1; display: flex; align-items: stretch; padding: 64px var(--gutter) 64px 0; }
  .photo-frame { flex: 1; padding: 8px; }
  .photo-frame__img { min-height: 0; }
  .tag-label--tight { left: 24px; bottom: 24px; padding: 11px 15px 11px 12px; }
}
@media (min-width: 1440px) { .split-hero__left { flex-basis: 807px; } }

.filter-pill { display: inline-flex; align-items: center; justify-content: center; height: 44px; padding: 0 19px; border-radius: 100px; background: var(--c-white); border: 1px solid var(--c-line); font-size: 13px; font-weight: 800; text-transform: uppercase; color: var(--c-ink); opacity: .6; line-height: var(--lh); white-space: nowrap; transition: background-color var(--t), border-color var(--t), color var(--t), opacity var(--t), transform var(--t); }
.filter-pill:hover { opacity: 1; border-color: var(--c-forest); }
.filter-pill:active { transform: scale(.97); }
.filter-pill--active, .filter-pill--active:hover { background: var(--c-lime); border: 1.5px solid var(--c-forest); color: var(--c-forest); opacity: 1; padding: 0 18.5px; }
@media (min-width: 1024px) {
  .filter-pill { height: 51px; padding: 0 31px; font-size: 14px; opacity: 1; }
  .filter-pill--active, .filter-pill--active:hover { padding: 0 30.5px; }
}

/* --------------------------------------------------------------------------
   Generic page building blocks
   -------------------------------------------------------------------------- */
.section { padding-block: var(--section-y); }
.section--white { background: var(--c-white); }
.section--cream { background: var(--c-cream); }
.section--forest { background: var(--c-forest); color: var(--c-white); }
.section--deep { background: var(--c-deep); color: var(--c-white); }
.section--soft { background: var(--c-lime-soft); }
.section--border-b { border-bottom: 1px solid var(--c-line); }
.section--border-y { border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
.section-head { display: flex; flex-direction: column; gap: 8px; }
.section-head--row { gap: 12px; }
@media (min-width: 1024px) {
  .section-head { gap: 12px; }
  .section-head--row { flex-direction: row; align-items: center; justify-content: space-between; }
}
.num-badge { display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 100px; background: var(--c-lime-soft); color: var(--c-forest); font-size: 14px; font-weight: 800; line-height: 1; flex: none; }
.num-badge--lime { background: var(--c-lime); }
.num-badge--dark { background: var(--c-deep); color: var(--c-lime); }
.divider { height: 1px; background: var(--c-line); }
.divider--white { background: var(--c-line-white); }
.accent-bar { display: block; width: 80px; height: 3px; border-radius: 2px; background: var(--c-lime); }
@media (min-width: 1024px) { .accent-bar { width: 120px; height: 4px; } .accent-bar--lg { width: 160px; } }

.not-found { padding-block: 80px; }
.not-found__inner { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; max-width: 640px; }
.not-found__title { line-height: 1; }
