/* ==========================================================================
   Dugmates — global stylesheet
   Rebuild of dugmates.com (WordPress + Elementor) as static HTML/CSS/JS.
   Tokens are lifted from the original Elementor kit (post-5) and the
   per-section CSS in _source/elementor-css/.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --black: #000000;
  --white: #ffffff;
  --red: #ff0000;          /* brand red — consolidates #FF2905 #FF1100 #FB0202 #FB0000 #F9443B */
  --red-deep: #f50101;     /* footer "#DUGMATES" */
  --red-dark: #cc0000;

  /* Neutrals */
  --ink: #212529;          /* body copy */
  --ink-soft: #3d434a;
  --surface-dark: #242529;
  --surface-darker: #131316;
  --muted: #5c6167;        /* darkened from the original #7A7A7A for AA contrast */
  --line: #cecece;
  --line-soft: #e6e8ea;
  --off-white: #f7f8f9;

  /* Type */
  --font-body: "Titillium Web", "Segoe UI", system-ui, sans-serif;
  --font-display: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-script: "Bilbo Swash Caps", "Brush Script MT", cursive;

  /* Layout */
  --container: 1140px;
  --header-h: 92px;
  --radius: 14px;
  --radius-sm: 8px;

  /* Effects */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, .08);
  --shadow-md: 0 12px 34px rgba(0, 0, 0, .12);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, .18);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); text-decoration: underline; }
button { font: inherit; color: inherit; }
ul, ol { padding-left: 1.25rem; }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .6em;
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.18;
  color: var(--black);
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 1.35rem + 2.6vw, 3.35rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.7vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 1.08rem + .9vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.08rem; }
p  { margin: 0 0 1.15em; }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 12px 20px;
  background: var(--red);
  color: var(--white);
  font-weight: 600;
}
.skip-link:focus { left: 0; text-decoration: none; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
.container--narrow { max-width: 900px; }

.section { padding-block: clamp(48px, 6vw, 90px); }
.section--tight { padding-block: clamp(32px, 4vw, 56px); }
.section--dark { background: var(--black); color: var(--white); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--muted { background: var(--off-white); }

.section-head { text-align: center; margin-bottom: clamp(28px, 4vw, 52px); }
.section-head p { max-width: 720px; margin-inline: auto; color: var(--muted); }

.grid { display: grid; gap: clamp(20px, 3vw, 34px); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 1024px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px)  { .grid--3, .grid--2 { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   4. Script heading pair  ("Connecting Bridge" / "Bridge among the Sportsman")
   Original: Bilbo Swash Caps italic 300 100px #FF0000 over
             Titillium Web 700 54px #000 pulled up -46px.
   -------------------------------------------------------------------------- */
.script-head { text-align: center; }

.script-head__script {
  margin: 0;
  font-family: var(--font-script);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(3.2rem, 1.4rem + 7vw, 6.25rem);   /* 100px cap */
  line-height: 1;
  color: var(--red);
}
.script-head__main {
  margin: clamp(-32px, -2.9vw, -18px) 0 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.75rem, 1.05rem + 2.8vw, 3.375rem); /* 54px cap */
  line-height: 1.15;
  color: var(--black);
}
.section--dark .script-head__main { color: var(--white); }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              color .18s var(--ease), border-color .18s var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn--primary { background: var(--red); color: var(--white); }
.btn--primary:hover { background: var(--red-dark); color: var(--white); }

.btn--light { background: var(--white); color: var(--black); }
.btn--light:hover { background: var(--red); color: var(--white); }

.btn--ghost { border-color: currentColor; background: transparent; color: var(--white); }
.btn--ghost:hover { background: var(--white); color: var(--black); }

.store-buttons { display: flex; flex-wrap: wrap; gap: 16px; }
.store-buttons a { display: block; transition: transform .18s var(--ease); }
.store-buttons a:hover { transform: translateY(-3px); }
.store-buttons img { height: 56px; width: auto; }
@media (max-width: 767px) { .store-buttons img { height: 46px; } }

/* --------------------------------------------------------------------------
   6. Header
   Original: transparent, gradient #000 → transparent, overlays the hero,
             logo left / nav right, 20px Titillium white, hover red.
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding-block: 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, 0) 100%);
  transition: background-color .3s var(--ease), padding .3s var(--ease);
}
.site-header--solid,
.site-header.is-stuck {
  background: var(--black);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .35);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header__logo img { height: 49px; width: auto; }

.nav { display: flex; align-items: center; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__link,
.nav__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border: 0;
  background: none;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--white);
  cursor: pointer;
  transition: color .18s var(--ease);
}
.nav__link:hover,
.nav__toggle:hover,
.nav__link[aria-current="page"] { color: var(--red); text-decoration: none; }

.nav__toggle svg { width: 12px; height: 12px; transition: transform .2s var(--ease); }
.nav__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.nav__item--has-menu { position: relative; }
.nav__submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.nav__item--has-menu:hover .nav__submenu,
.nav__toggle[aria-expanded="true"] + .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}
.nav__submenu a:hover { background: rgba(255, 255, 255, .08); color: var(--red); text-decoration: none; }

.nav-burger {
  display: none;
  width: 46px; height: 46px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 26px; height: 2px;
  margin: 6px auto;
  background: var(--white);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-burger { display: block; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 86vw);
    padding: 100px 24px 40px;
    background: var(--black);
    border-left: 1px solid rgba(255, 255, 255, .1);
    transform: translateX(100%);
    transition: transform .3s var(--ease);
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; width: 100%; }
  .nav__link, .nav__toggle { width: 100%; justify-content: space-between; padding: 14px 12px; }
  .nav__item--has-menu { position: static; }
  .nav__submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border: 0;
    box-shadow: none;
    background: rgba(255, 255, 255, .05);
  }
  .nav__toggle[aria-expanded="true"] + .nav__submenu { display: block; }
  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(0, 0, 0, .55);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), visibility .3s;
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
}

/* --------------------------------------------------------------------------
   7. Hero (home) — replaces Slider Revolution
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 40px) 0 70px;
  background: var(--black);
  overflow: hidden;
  text-align: center;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.3) 45%, rgba(0,0,0,.75) 100%);
}
.hero__inner { position: relative; z-index: 1; }
.hero__logo { margin: 0 auto 28px; max-width: 380px; }
.hero__title {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(1.85rem, 1.15rem + 2.9vw, 3.25rem);
  text-shadow: 0 3px 24px rgba(0, 0, 0, .6);
}
.hero__text {
  max-width: 780px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(1rem, .95rem + .3vw, 1.2rem);
}
.hero__text strong { color: var(--white); font-weight: 700; }
.hero .store-buttons { justify-content: center; }

.hero__play {
  display: none;
  margin: 22px auto 0;
}
.hero.is-poster-only .hero__play { display: inline-flex; }

@media (max-width: 767px) {
  .hero { min-height: 88svh; }
  .hero__logo { max-width: 250px; }
}

/* --------------------------------------------------------------------------
   8. Inner-page banner
   -------------------------------------------------------------------------- */
.page-banner {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(260px, 30vw, 420px);
  padding: calc(var(--header-h) + 40px) 0 50px;
  background: var(--black) center/cover no-repeat;
  text-align: center;
}
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.45) 60%, rgba(0,0,0,.7) 100%);
}
.page-banner__inner { position: relative; z-index: 1; }
.page-banner h1 { color: var(--white); margin: 0; }
.page-banner p {
  max-width: 760px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, .9);
}

.breadcrumb {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
}
.breadcrumb a { color: rgba(255, 255, 255, .75); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; opacity: .6; }

/* --------------------------------------------------------------------------
   9. Post cards
   -------------------------------------------------------------------------- */
.card-post {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.card-post:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-post__media { aspect-ratio: 16 / 11; overflow: hidden; background: var(--off-white); }
.card-post__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.card-post:hover .card-post__media img { transform: scale(1.05); }
.card-post__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.card-post__meta {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .02em;
}
.card-post__meta a { color: var(--muted); }
.card-post__title { margin: 0 0 10px; font-size: 1.3rem; }
.card-post__title a { color: var(--black); }
.card-post__title a:hover { color: var(--red); text-decoration: none; }
.card-post__excerpt { margin: 0 0 18px; color: var(--muted); font-size: 16px; }
.card-post__more {
  margin-top: auto;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card-post__more svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.card-post__more:hover svg { transform: translateX(4px); }

.card-post--compact { flex-direction: row; align-items: stretch; }
.card-post--compact .card-post__media { flex: 0 0 42%; aspect-ratio: auto; }
.card-post--compact .card-post__body { padding: 18px 22px; }
@media (max-width: 767px) {
  .card-post--compact { flex-direction: column; }
  .card-post--compact .card-post__media { flex: none; aspect-ratio: 16 / 11; }
}

/* Section header with a "view all" on the right */
.rowhead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(22px, 3vw, 38px);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--line-soft);
}
.rowhead h2 { margin: 0; }
.rowhead a { font-weight: 600; white-space: nowrap; }
.section--dark .rowhead { border-bottom-color: rgba(255, 255, 255, .18); }

/* --------------------------------------------------------------------------
   10. Partner logo strip
   -------------------------------------------------------------------------- */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(16px, 2.5vw, 34px);
  align-items: center;
}
.logo-strip li { list-style: none; }
.logo-strip ul { margin: 0; padding: 0; }
.logo-strip img {
  max-height: 62px;
  width: auto;
  margin-inline: auto;
  filter: grayscale(1);
  opacity: .72;
  transition: filter .25s var(--ease), opacity .25s var(--ease), transform .25s var(--ease);
}
.logo-strip img:hover { filter: grayscale(0); opacity: 1; transform: scale(1.06); }
@media (max-width: 1024px) { .logo-strip { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 767px)  { .logo-strip { grid-template-columns: repeat(3, 1fr); } }

/* --------------------------------------------------------------------------
   11. Gameolution band
   -------------------------------------------------------------------------- */
.gameolution { position: relative; overflow: hidden; }
.gameolution__head { text-align: center; position: relative; z-index: 2; }
.gameolution__script {
  margin: 0;
  font-family: var(--font-script);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.9rem, .95rem + 3.4vw, 5.625rem);  /* 90px cap */
  line-height: 1.05;
  color: var(--red);
}
.gameolution__word {
  margin: 0 0 clamp(24px, 4vw, 46px);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, .9rem + 6.6vw, 8.125rem);   /* 130px cap */
  line-height: .95;
  letter-spacing: -.01em;
  color: var(--white);
}
.gameolution__figure {
  position: absolute;
  right: 2%;
  bottom: 0;
  width: min(480px, 34vw);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1024px) { .gameolution__figure { display: none; } }

/* Tabs */
.tabs { position: relative; z-index: 2; max-width: 900px; margin-inline: auto; }
.tabs__list {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}
.tabs__tab {
  padding: 12px 34px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.tabs__tab:hover { border-color: var(--red); }
.tabs__tab[aria-selected="true"] { background: var(--red); border-color: var(--red); color: var(--white); }

.tabs__panel { display: none; text-align: center; }
.tabs__panel.is-active { display: block; animation: fade-up .35s var(--ease); }
.tabs__panel h3 {
  color: var(--white);
  font-size: clamp(1.4rem, 1.1rem + 1.1vw, 2rem);
  margin-bottom: .5em;
}
.tabs__panel p, .tabs__panel li { color: rgba(255, 255, 255, .85); }
.tabs__panel ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.tabs__panel ul li { padding-left: 28px; position: relative; text-align: left; }
.tabs__panel ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 767px) {
  .tabs__tab { flex: 1 1 100%; padding: 12px 18px; }
}

/* --------------------------------------------------------------------------
   12. Video embed (facade — no YouTube script until clicked)
   -------------------------------------------------------------------------- */
.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-darker) center/cover no-repeat;
  cursor: pointer;
  border: 0;
  padding: 0;
  width: 100%;
  display: block;
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-embed__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .35);
  transition: background-color .2s var(--ease);
}
.video-embed:hover .video-embed__play { background: rgba(0, 0, 0, .2); }
.video-embed__play span {
  display: grid;
  place-items: center;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 10px 40px rgba(255, 0, 0, .45);
  transition: transform .2s var(--ease);
}
.video-embed:hover .video-embed__play span { transform: scale(1.08); }
.video-embed__play svg { width: 30px; height: 30px; fill: var(--white); margin-left: 5px; }

/* --------------------------------------------------------------------------
   13. Prose (legal + article body)
   -------------------------------------------------------------------------- */
.prose { max-width: 860px; }
.prose h2 {
  margin-top: 1.8em;
  padding-top: .3em;
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.9rem);
}
.prose h3 { margin-top: 1.5em; font-size: clamp(1.15rem, 1.02rem + .5vw, 1.45rem); }
.prose h4, .prose h5 { margin-top: 1.4em; color: var(--ink); }
.prose h5 { font-size: 1.05rem; font-weight: 700; }
.prose ul, .prose ol { margin: 0 0 1.15em; display: grid; gap: 10px; }
.prose li { padding-left: 4px; }
.prose > :first-child { margin-top: 0; }
.prose strong { color: var(--black); }
.prose__lead { font-size: 1.12rem; color: var(--ink-soft); }

.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: clamp(28px, 4vw, 64px); }
@media (max-width: 1024px) { .legal-layout { grid-template-columns: 1fr; } }

.toc {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  align-self: start;
  padding: 22px;
  background: var(--off-white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  font-size: 15px;
}
.toc h2 { margin: 0 0 12px; font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.toc ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.toc a { color: var(--ink-soft); }
.toc a:hover { color: var(--red); }
@media (max-width: 1024px) { .toc { position: static; } }

/* --------------------------------------------------------------------------
   14. Accordion (FAQs)
   -------------------------------------------------------------------------- */
.accordion { display: grid; gap: 12px; }
.accordion__item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.accordion__item[open] { border-color: var(--red); box-shadow: var(--shadow-sm); }
.accordion__item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  list-style: none;
}
.accordion__item summary::-webkit-details-marker { display: none; }
.accordion__item summary:hover { color: var(--red); }
.accordion__item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 12px; height: 12px;
  margin-top: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .22s var(--ease);
}
.accordion__item[open] summary::after { transform: rotate(-135deg); }
.accordion__body { padding: 0 22px 20px; color: var(--ink-soft); }
.accordion__body > :last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   15. Step blocks (User Guide)
   -------------------------------------------------------------------------- */
.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  padding-block: clamp(30px, 4vw, 54px);
  border-top: 1px solid var(--line-soft);
}
.step:first-of-type { border-top: 0; }
.step--reverse .step__media { order: -1; }
.step__num {
  display: inline-grid;
  place-items: center;
  width: 52px; height: 52px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}
.step__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.step__media--phones {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.step__media--phones img { box-shadow: var(--shadow-sm); }
.substep { margin-bottom: 20px; }
.substep h3 { margin-bottom: .35em; font-size: 1.2rem; }
.substep p { margin: 0; color: var(--ink-soft); }
@media (max-width: 767px) {
  .step { grid-template-columns: 1fr; }
  .step--reverse .step__media { order: 0; }
}

/* --------------------------------------------------------------------------
   16. Feature / info cards
   -------------------------------------------------------------------------- */
.info-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  height: 100%;
}
.info-card h3 { margin-bottom: .5em; font-size: 1.2rem; }
.info-card p:last-child, .info-card address:last-child { margin-bottom: 0; }
.info-card address { font-style: normal; color: var(--ink-soft); }

.callout {
  padding: 22px 26px;
  background: var(--off-white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}
.callout p:last-child { margin-bottom: 0; }
.callout--dark { background: var(--black); color: rgba(255,255,255,.85); border-color: #333; }
.callout--dark strong { color: var(--white); }

/* --------------------------------------------------------------------------
   17. Contact form
   -------------------------------------------------------------------------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 767px) { .form__row { grid-template-columns: 1fr; } }

.field { display: grid; gap: 6px; }
.field > label { font-size: 15px; font-weight: 600; color: var(--ink); }
.field .req { color: var(--red); }
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field input:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 0, 0, .12);
  outline: none;
}
.field textarea { resize: vertical; min-height: 170px; }
.field__error { min-height: 1.1em; font-size: 14px; color: var(--red); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--red); }

.form__hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form__status {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.form__status:empty { display: none; }
.form__status--ok   { background: #e8f6ec; color: #17692f; border: 1px solid #b6e0c2; }
.form__status--err  { background: #fdeaea; color: #a41414; border: 1px solid #f3bcbc; }

.btn[aria-busy="true"] { opacity: .7; pointer-events: none; }

/* --------------------------------------------------------------------------
   18. Footer
   Original: three device copies — collapsed here into one responsive block.
   -------------------------------------------------------------------------- */
.site-footer { background: var(--black); color: rgba(255, 255, 255, .82); }

.site-footer__hash {
  margin: 0;
  padding: clamp(30px, 4vw, 50px) 20px;
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(1.9rem, 1.2rem + 2.2vw, 2.8125rem);  /* 45px cap */
  font-weight: 600;
  color: var(--red-deep);
  letter-spacing: .04em;
}

.site-footer__main {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
  padding-bottom: 40px;
}
@media (max-width: 1024px) { .site-footer__main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px)  { .site-footer__main { grid-template-columns: 1fr; } }

.f-talk__hey {
  margin: 0;
  font-family: var(--font-body);
  font-size: 25px;
  font-weight: 600;
  color: var(--white);
}
.f-talk__lets {
  margin: -16px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.125rem);   /* 34px cap */
  font-weight: 700;
  color: var(--white);
}
.f-talk__sports {
  margin: -14px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 1.4rem + 4.2vw, 4.375rem);   /* 70px cap */
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}
/* Outlined text — solid fill is the fallback if text-stroke is unsupported */
@supports ((-webkit-text-stroke: 1px #fcfcfc) or (text-stroke: 1px #fcfcfc)) {
  .f-talk__sports {
    color: transparent;
    -webkit-text-stroke: 1px #fcfcfc;
    text-stroke: 1px #fcfcfc;
  }
}
.f-talk p { max-width: 420px; color: rgba(255, 255, 255, .78); }

.f-brand__logo { max-width: 220px; margin-bottom: 18px; }
.f-brand p { max-width: 420px; color: rgba(255, 255, 255, .78); }
.f-contact { margin: 0 0 18px; padding: 0; list-style: none; display: grid; gap: 10px; }
.f-contact li { display: flex; align-items: center; gap: 12px; }
.f-contact svg { width: 18px; height: 18px; fill: var(--red); flex: 0 0 auto; }
.f-contact a { color: rgba(255, 255, 255, .88); }
.f-contact a:hover { color: var(--red); }

.f-social { display: flex; gap: 12px; margin: 0; padding: 0; list-style: none; }
.f-social a {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  color: var(--white);
  transition: background-color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.f-social a:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.f-social svg { width: 18px; height: 18px; fill: currentColor; }

.f-figure { align-self: end; }
.f-figure img { max-width: 300px; }
@media (max-width: 1024px) { .f-figure { display: none; } }

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-block: 20px;
}
.site-footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.f-legal { display: flex; flex-wrap: wrap; gap: 6px 22px; margin: 0; padding: 0; list-style: none; }
.f-legal a { color: rgba(255, 255, 255, .78); font-size: 15px; }
.f-legal a:hover { color: var(--red); }
.f-copy { margin: 0; font-size: 18px; font-weight: 500; color: rgba(255, 255, 255, .7); }
@media (max-width: 767px) {
  .site-footer__bottom .container { justify-content: center; text-align: center; }
  .f-legal { justify-content: center; }
  .f-copy { font-size: 14px; }
}

/* --------------------------------------------------------------------------
   19. 404
   -------------------------------------------------------------------------- */
.err {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 60px) 0 80px;
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.err__code {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(5rem, 2rem + 14vw, 12rem);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--red);
  text-stroke: 2px var(--red);
}
.err h1 { color: var(--white); }
.err p { max-width: 520px; margin-inline: auto; color: rgba(255, 255, 255, .8); }
.err__links { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 26px; }

/* --------------------------------------------------------------------------
   20. Scroll reveal + motion preferences
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

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

/* --------------------------------------------------------------------------
   21. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .page-banner::after, .toc, .nav-burger { display: none !important; }
  body { color: #000; font-size: 12pt; }
  .page-banner { min-height: auto; padding: 0; background: none; }
  .page-banner h1 { color: #000; }
  a::after { content: " (" attr(href) ")"; font-size: 10pt; }
}
