/* =========================================================
   Curre Sport — main stylesheet
   Palette and motifs taken from the company profile:
   burnt orange on near-black, angled slash panels,
   two-tone headings, dot-grid accents.
   ========================================================= */

:root {
  --orange:        #F0662B;
  --orange-deep:   #D9531E;
  --orange-soft:   #FF8A50;
  --ink:           #0F0E0D;
  --coal:          #1B1815;
  --coal-2:        #242019;
  --paper:         #F7F2EC;
  --text:          #F3EEE8;
  --muted:         #A99F94;
  --line:          rgba(240, 102, 43, 0.28);
  --radius:        14px;
  --wrap:          1160px;
  --font-display:  "Roboto", "Helvetica Neue", Arial, sans-serif;
  --font-body:     "Roboto", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--orange-soft); text-decoration: none; }
a:hover { color: var(--orange); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 780px; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--orange); color: #fff; padding: 10px 18px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; color: #fff; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

/* ---------- Typography ---------- */

h1, h2, h3, h4, .brand-text {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.tone-orange { color: var(--orange); }
.tone-dark { color: var(--ink); }

.kicker {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(30px, 4.4vw, 46px);
  margin-bottom: 12px;
  text-wrap: balance;
}

.lead { font-size: 20px; font-weight: 500; margin-bottom: 18px; }
.muted { color: var(--muted); }

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: #fff;
  border-bottom: 1px solid rgba(15, 14, 13, 0.08);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 74px; gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { height: 42px; width: auto; display: block; }

.site-nav { display: flex; align-items: stretch; align-self: stretch; gap: 40px; }
.site-nav a {
  display: flex; align-items: center;
  color: var(--ink); font-size: 16px; font-weight: 400;
  padding: 0; position: relative;
}
.site-nav a::after {
  content: ""; position: absolute; left: -10px; right: -10px; bottom: 0;
  height: 5px; background: var(--orange); border-radius: 3px 3px 0 0;
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.25s ease;
}
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.site-nav a.active { color: var(--orange-deep); }

/* ---------- Mega menu ---------- */

.nav-dropdown { position: relative; display: flex; align-items: stretch; align-self: stretch; }

.nav-dropdown-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; padding: 0; position: relative;
  color: var(--ink); font-family: var(--font-body);
  font-size: 16px; font-weight: 400; cursor: pointer;
}
.nav-dropdown-trigger::after {
  content: ""; position: absolute; left: -10px; right: -10px; bottom: 0;
  height: 5px; background: var(--orange); border-radius: 3px 3px 0 0;
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.25s ease;
}
.nav-dropdown-trigger:hover::after, .nav-dropdown.open .nav-dropdown-trigger::after { transform: scaleX(1); }
.nav-dropdown.open .nav-dropdown-trigger,
.nav-dropdown-trigger.active { color: var(--orange-deep); }
.nav-dropdown-trigger.active::after { transform: scaleX(1); }

.nav-caret { width: 10px; height: 7px; stroke: currentColor; fill: none; stroke-width: 1.8; transition: transform 0.2s ease; }
.nav-dropdown.open .nav-caret { transform: rotate(180deg); }

.mega-menu {
  position: fixed; top: 74px; left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: min(1080px, 92vw);
  background: #fff; color: var(--ink);
  box-shadow: 0 30px 60px rgba(15, 14, 13, 0.28), 0 4px 16px rgba(15, 14, 13, 0.12);
  padding: 26px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 70;
}
.nav-dropdown.open .mega-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.mega-menu-item {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 3 / 4;
  color: #fff; text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 14, 13, 0.16);
}
.mega-menu-item img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mega-menu-item:hover img { transform: scale(1.07); }

.mega-menu-overlay {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 4px;
  min-height: 40%;
  padding: 16px 16px 18px;
  background: linear-gradient(180deg, rgba(15, 14, 13, 0) 0%, rgba(15, 14, 13, 0.55) 38%, rgba(15, 14, 13, 0.92) 100%);
}
.mega-menu-title {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 20px; letter-spacing: -0.02em; line-height: 1.15;
  color: #fff;
}

.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;
}

.social-icons { display: flex; align-items: center; gap: 8px; list-style: none; }
.social-icons a {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(15, 14, 13, 0.18); color: var(--ink);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.social-icons svg { width: 16px; height: 16px; }
.social-icons a:hover {
  background: var(--orange); border-color: var(--orange); color: #fff;
  transform: translateY(-2px);
}

/* Homepage header: normal sticky flow, hero sits below it (not overlaid) */
body.has-hero-header .site-header {
  transition: box-shadow 0.3s ease;
}
body.has-hero-header .site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 3px; background: var(--ink); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero slider ---------- */

.hero-slider {
  position: relative;
  height: min(84vh, 780px);
  min-height: 480px;
  overflow: hidden;
  background: var(--ink);
}

.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.hero-slider-scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, rgba(15, 14, 13, 0) 0%, rgba(15, 14, 13, 0) 78%, rgba(15, 14, 13, 0.55) 100%);
}

.hero-slider-dots {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 8px;
}
.hero-slider-dots button {
  width: 46px; height: 6px; border-radius: 999px; padding: 0;
  background: rgba(255, 255, 255, 0.35); border: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}
.hero-slider-dots button:hover { background: rgba(255, 255, 255, 0.55); }
.hero-slider-dots button.active { background: var(--orange); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block; padding: 13px 28px; border-radius: 999px;
  font-weight: 600; font-size: 15px; border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}
.btn:active { transform: translateY(1px); }

.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-deep); color: #fff; }

.btn-ghost { border-color: rgba(255, 255, 255, 0.25); color: var(--text); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange-soft); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; color: #fff; }

/* ---------- Sections ---------- */

.section { padding: 52px 0; }
.section-panel {
  background: linear-gradient(180deg, var(--coal), var(--coal-2));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px; padding-bottom: 40px;
}

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 40px;
}
.section-head .section-title { margin-bottom: 0; }
.section-head-end { justify-content: flex-end; margin-bottom: 20px; }

/* ---------- Intro ---------- */

.intro-section {
  position: relative;
  background: #fff;
  overflow: hidden;
  padding: 32px 0;
}
.intro-section::before {
  content: "";
  position: absolute; top: -140px; right: -110px;
  width: 440px; height: 440px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 102, 43, 0.16), transparent 70%);
  pointer-events: none;
}
.intro-section::after {
  content: "";
  position: absolute; left: -30px; bottom: -50px;
  width: 130px; height: 130px;
  background-image: radial-gradient(var(--orange) 1.6px, transparent 1.6px);
  background-size: 15px 15px;
  opacity: 0.3;
  pointer-events: none;
}

.intro-block { position: relative; max-width: 920px; margin: 0 auto; text-align: center; }

.intro-heading {
  position: relative;
  display: inline-block;
  font-family: var(--font-display); font-weight: 700;
  color: var(--orange);
  font-size: clamp(24px, 2.8vw, 30px);
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.intro-lead {
  color: var(--ink); font-size: clamp(20px, 2.4vw, 25px); font-weight: 600;
  line-height: 1.55; margin-bottom: 26px;
}
.intro-block p { color: var(--ink); font-size: clamp(17px, 1.6vw, 20px); line-height: 1.75; margin-bottom: 18px; }
.intro-block p:last-of-type { margin-bottom: 0; }

.intro-hashtag { color: var(--orange); font-weight: 700; }

.intro-columns {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px;
  text-align: left;
}
.intro-columns::before {
  content: "";
  position: absolute; top: 2px; bottom: 2px; left: 50%;
  width: 1px; background: rgba(15, 14, 13, 0.14);
}
.intro-columns p {
  text-align: justify; margin-bottom: 0;
  font-size: 14.5px; line-height: 1.65;
}
.intro-columns-lg p { font-size: 14.5px; line-height: 1.65; }

/* ---------- Service pillars ---------- */

.pillar-index {
  font-family: var(--font-display); font-weight: 700;
  color: var(--orange); font-size: 15px; letter-spacing: 0.1em;
}

.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.pillar {
  display: flex; flex-direction: column; gap: 18px;
  padding: 32px 28px 0;
  color: var(--text); text-decoration: none;
}
.pillar:not(:first-child) { border-left: 1px solid rgba(255, 255, 255, 0.08); }

.pillar h3 {
  display: flex; align-items: flex-start;
  min-height: 2.6em;
  font-size: 19px; line-height: 1.3; letter-spacing: 0.01em;
  color: var(--text);
}

.pillar-photo {
  display: block; aspect-ratio: 4 / 3; overflow: hidden;
  background: var(--coal);
}
.pillar-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pillar:hover .pillar-photo img { transform: scale(1.06); }

.pillar p { color: var(--muted); font-size: 15px; line-height: 1.7; text-align: justify; flex: 1; margin-bottom: 24px; }

.pillar-link {
  display: inline-grid; place-items: center; align-self: flex-start;
  width: 38px; height: 38px; margin-bottom: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.25); border-radius: 8px;
  color: var(--text);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.pillar-link svg { width: 16px; height: 16px; }
.pillar:hover .pillar-link {
  background: var(--orange); border-color: var(--orange); color: #fff;
  transform: translateX(3px);
}

.services-section {
  background: var(--orange);
  padding: 28px 0;
}
.services-section .wrap { max-width: 1500px; }
.services-section .pillars { border-top: 0; margin-top: 14px; }
.services-section .pillar-index { display: none; }
.services-section .pillar { position: relative; gap: 12px; padding: 0 20px 0; border-left: 0; }
.services-section .pillar:not(:first-child)::before {
  content: ""; position: absolute; left: 0; top: -22px; bottom: -8px;
  width: 1px; background: rgba(255, 255, 255, 0.85);
}
.services-section .pillar h3 {
  color: #fff; min-height: 0; align-items: center;
  font-size: clamp(14px, 1.4vw, 25px); font-weight: 600;
  white-space: nowrap; overflow: hidden;
}
.services-section .pillar-photo { aspect-ratio: 3 / 2; background: var(--ink); }
.services-section .pillar p { color: #fff; font-size: 15px; line-height: 1.4; margin-bottom: 16px; }
.services-section .pillar-link { border-color: rgba(255, 255, 255, 0.6); color: #fff; margin-bottom: 0; }
.services-section .pillar:hover .pillar-link {
  background: var(--ink); border-color: var(--ink); color: #fff;
}

/* ---------- Split / mission ---------- */

.split {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center;
}
.split-copy p { color: var(--muted); margin-bottom: 26px; }

.mission-card {
  background: linear-gradient(150deg, var(--orange), var(--orange-deep));
  color: #fff; border-radius: 20px 20px 20px 4px;
  padding: 40px 36px;
  box-shadow: 0 24px 60px rgba(240, 102, 43, 0.25);
}
.mission-card h3 { font-size: 24px; margin-bottom: 14px; }
.mission-card p { font-size: 17px; line-height: 1.7; text-align: justify; }

/* ---------- About strip ---------- */

.about-strip { background: #fff; padding-top: 12px; padding-bottom: 12px; }
.partners-section { padding-top: 8px; padding-bottom: 24px; }
.partners-section .kicker { margin-bottom: 4px; }
.about-strip .split { gap: 32px; }
.about-strip h2 { color: var(--orange); font-weight: 600; }
.about-strip .split-copy p { color: #4a4139; text-align: justify; }

.about-photo {
  display: block; aspect-ratio: 4 / 5; max-width: 520px; overflow: hidden;
  background: var(--coal);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vision-card {
  border: 1.5px solid var(--orange); border-radius: 20px 20px 20px 4px;
  padding: 40px 36px;
}
.vision-card h3 { font-size: 24px; margin-bottom: 14px; color: var(--orange); }
.vision-card p { color: var(--text); line-height: 1.7; text-align: justify; }

/* ---------- Values ---------- */

.section-light { background: #fff; }
.section-light .section-title { color: var(--ink); }
.section-light .narrow { color: #4a4139; }
.section-light .service-copy p:not(.kicker) { color: #4a4139; }

.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; margin-top: 24px;
  background: rgba(15, 14, 13, 0.08);
  border: 1px solid rgba(15, 14, 13, 0.08);
}

.value-card {
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
  padding: 44px 30px 36px;
  background: #fff;
  overflow: hidden;
  transition: background 0.35s ease;
}
.value-card::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 0; height: 3px; background: var(--ink);
  transition: width 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.value-card:hover::before { width: 100%; }
.value-card:hover {
  background: linear-gradient(150deg, var(--orange), var(--orange-deep));
}
.value-card:hover .value-icon { color: #fff; }
.value-card:hover h3 { color: #fff; }
.value-card:hover p { color: rgba(15, 14, 13, 0.82); }
.value-card:hover .value-card-number { color: rgba(255, 255, 255, 0.16); }

.value-card-number {
  position: absolute; top: -6px; right: 18px;
  font-family: var(--font-display); font-weight: 900; font-size: 68px;
  line-height: 1; color: rgba(15, 14, 13, 0.05);
  pointer-events: none; user-select: none;
  transition: color 0.35s ease;
}

.value-icon {
  display: inline-flex; color: var(--orange); margin-bottom: 2px;
  transition: color 0.35s ease;
}
.value-icon svg { width: 32px; height: 32px; }

.value-card h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 17.5px;
  color: var(--ink); position: relative;
  transition: color 0.35s ease;
}
.value-card p { color: #4a4139; font-size: 15px; line-height: 1.7; text-align: left; position: relative; transition: color 0.35s ease; }

/* ---------- Athletes ---------- */

.athlete-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.athlete-card {
  background: var(--coal); border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.athlete-card:hover { transform: translateY(-4px); border-color: var(--line); }

.athlete-photo {
  aspect-ratio: 1 / 1; display: grid; place-items: center;
  background:
    radial-gradient(120px 120px at 70% 20%, rgba(240, 102, 43, 0.35), transparent 70%),
    linear-gradient(160deg, var(--coal-2), var(--ink));
}
.athlete-photo img { width: 100%; height: 100%; object-fit: cover; }
.athlete-initials {
  font-family: var(--font-display); font-weight: 700;
  font-size: 56px; color: rgba(240, 102, 43, 0.75);
}
.athlete-meta { padding: 18px 20px 20px; }
.athlete-meta h3 { font-size: 18px; margin-bottom: 4px; }
.athlete-title {
  color: var(--orange-soft); font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
}

.athlete-profiles { display: grid; gap: 24px; }
.athlete-profile {
  display: grid; grid-template-columns: 220px 1fr; gap: 30px;
  background: var(--coal); border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius); padding: 26px; align-items: center;
}
.athlete-photo.large { border-radius: 12px; overflow: hidden; }
.athlete-body h2 { font-size: 26px; margin-bottom: 6px; }
.athlete-body p { color: var(--muted); line-height: 1.7; text-align: justify; }
.athlete-body .athlete-title { display: block; margin-bottom: 12px; }

/* ---------- Events ---------- */

.event-years {
  display: inline-block; color: var(--orange);
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  letter-spacing: 0.04em;
}

.section-tight { padding: 0; background: var(--paper); }

.event-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  width: 100vw;
  padding: 0 16px 16px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.event-tile {
  position: relative; display: block;
  aspect-ratio: 4 / 3.6;
  overflow: hidden;
  background: var(--coal);
}
.event-tile img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.event-tile::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, var(--orange) 0%, transparent 55%);
  mix-blend-mode: multiply;
  opacity: 0.35;
  transition: opacity 0.3s ease;
}
.event-tile:hover img, .event-tile:focus-visible img { transform: scale(1.08); }

.event-tile-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  gap: 6px; padding: 22px;
  background: linear-gradient(0deg, rgba(10, 9, 8, 0.92) 0%, rgba(10, 9, 8, 0.15) 65%, transparent 100%);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.event-tile:hover .event-tile-overlay,
.event-tile:focus-visible .event-tile-overlay {
  opacity: 1; transform: none;
}
.event-tile-title {
  color: #fff; font-family: var(--font-display); font-weight: 700;
  font-size: 17px; line-height: 1.3;
}
.event-tile-years {
  color: var(--orange-soft); font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
}
.event-tile:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

/* ---------- Clients ---------- */

.client-strip {
  list-style: none; display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0; margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.client-item {
  display: grid; place-items: center;
  padding: 10px 0; min-height: 140px;
}
.client-item:not(:nth-child(6n + 1)) { border-left: 1px solid rgba(255, 255, 255, 0.08); }
.client-item:nth-child(n + 7) {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.client-item span { color: var(--muted); font-weight: 600; font-size: 14.5px; }
.client-item img {
  max-width: 100%; max-height: 130px; width: auto;
  filter: grayscale(1) brightness(1.6); opacity: 0.75;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.client-item:hover img { filter: grayscale(0) brightness(1); opacity: 1; transform: scale(1.05); }

.section-light .client-strip { border-top-color: rgba(15, 14, 13, 0.1); }
.section-light .client-item:not(:nth-child(6n + 1)) { border-left-color: rgba(15, 14, 13, 0.1); }
.section-light .client-item:nth-child(n + 7) { border-top-color: rgba(15, 14, 13, 0.1); }
.section-light .client-item img { filter: grayscale(1) brightness(1); opacity: 0.65; }
.section-light .client-item:hover img { filter: grayscale(0) brightness(1); opacity: 1; }

/* ---------- Service rows ---------- */

.service-row {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: start;
}
.service-row-wide { grid-template-columns: 1fr; }
.event-body-section { padding-bottom: 20px; }
.service-row-wide .section-title { font-size: 26px; margin-bottom: 10px; }
.service-row-wide .service-copy p:not(.kicker) { font-size: 14.5px; line-height: 1.65; margin-bottom: 12px; }
.service-copy p:not(.kicker) { color: var(--muted); line-height: 1.7; text-align: justify; margin-bottom: 16px; }
.service-copy .pillar-index { display: block; margin-bottom: 10px; }
.service-copy .kicker { font-size: 15px; }
.service-points {
  background: linear-gradient(150deg, var(--orange), var(--orange-deep));
  border: 0;
  border-radius: var(--radius); padding: 30px 28px; position: sticky; top: 100px;
}
.service-points h3 { font-size: 16px; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.12em; }

.check-list { list-style: none; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 30px; color: #fff; font-size: 15.5px; line-height: 1.55; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 5px;
  width: 16px; height: 16px; border-radius: 4px;
  background: var(--ink);
  clip-path: polygon(14% 44%, 0 62%, 40% 100%, 100% 16%, 84% 0, 40% 66%);
}
.check-list-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 48px; margin-top: 36px; }

.service-index { display: block; margin-bottom: 22px; }

.service-nav {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px;
}
.service-nav-link { display: flex; flex-direction: column; gap: 4px; max-width: 260px; }
.service-nav-next { text-align: right; margin-left: auto; align-items: flex-end; }
.service-nav-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange);
}
.service-nav-title { color: var(--text); font-size: 15.5px; font-weight: 600; }
.service-nav-link:hover .service-nav-title { color: var(--orange-soft); }
.service-nav-all {
  color: var(--muted); font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap;
}

/* ---------- Service gallery slider ---------- */

.gallery-slider { position: relative; }
.gallery-track {
  display: flex; gap: 0; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 88%; scroll-snap-align: start;
  aspect-ratio: 4 / 3; overflow: hidden; background: var(--coal);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(1); transition: filter 0.4s ease, transform 0.5s ease;
}
.gallery-item:hover img { filter: grayscale(0); transform: scale(1.04); }
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(15, 14, 13, 0.55); color: #fff;
  display: grid; place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.gallery-arrow:hover { background: var(--orange); }
.gallery-arrow svg { width: 20px; height: 20px; }
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }
.gallery-dots {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 8px;
}
.gallery-dots button {
  width: 36px; height: 5px; border-radius: 999px; padding: 0;
  background: rgba(255, 255, 255, 0.35); border: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}
.gallery-dots button:hover { background: rgba(255, 255, 255, 0.55); }
.gallery-dots button.active { background: var(--orange); }

@media (min-width: 640px) {
  .gallery-item { flex-basis: 48%; }
}

/* ---------- Logo marquee (continuous looping client logos) ---------- */

.logo-marquee { position: relative; overflow: hidden; }
.logo-marquee-track { display: flex; width: max-content; will-change: transform; }
.logo-marquee .gallery-item {
  flex: 0 0 auto; width: 220px; height: 200px;
  display: grid; place-items: center; background: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 24px;
}
.logo-marquee .gallery-item img {
  width: auto; max-width: 100%; height: auto; max-height: 130px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.6); opacity: 0.75;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.logo-marquee .gallery-item:hover img {
  filter: grayscale(0) brightness(1); opacity: 1; transform: scale(1.05);
}
.logo-marquee .gallery-item span { color: var(--muted); font-weight: 600; font-size: 14.5px; }
@media (min-width: 640px) {
  .logo-marquee .gallery-item { width: 260px; height: 240px; }
}

.values-section { padding-top: 24px; padding-bottom: 24px; }
.clients-section { padding: 16px 0 44px; }
.clients-section .logo-marquee .gallery-item { height: 140px; }
@media (min-width: 640px) {
  .clients-section .logo-marquee .gallery-item { height: 160px; }
}
.section-light .logo-marquee .gallery-item { border-right-color: rgba(15, 14, 13, 0.1); }
.section-light .logo-marquee .gallery-item img { filter: grayscale(1) brightness(1); opacity: 0.65; }
.section-light .logo-marquee .gallery-item:hover img { filter: grayscale(0) brightness(1); opacity: 1; }
.section-light .gallery-arrow { background: rgba(15, 14, 13, 0.08); color: var(--ink); }
.section-light .gallery-arrow:hover { background: var(--orange); color: #fff; }

/* ---------- Homepage video ---------- */

.video-section .section-title { text-align: center; margin-bottom: 32px; }
.video-section { background: #fff; padding-top: 24px; padding-bottom: 24px; }
.video-frame {
  background: #fff; border-radius: 50px 0 50px 0; overflow: hidden;
  display: flex; justify-content: center;
}
.video-player {
  display: block; width: 100%; aspect-ratio: 21 / 9;
  object-fit: cover; object-position: center;
}
.gallery-item:only-child { flex-basis: 100%; }
.gallery-section { padding: 0; }
.service-nav-all:hover { color: var(--orange-soft); }

/* ---------- Page hero ---------- */

.page-title { font-size: clamp(36px, 5.6vw, 62px); font-weight: 700; }

.page-hero-image {
  position: relative;
  height: min(80vh, 720px); min-height: 440px;
  overflow: hidden;
  background-color: var(--ink);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-hero-image-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(15, 14, 13, 0) 0%, rgba(15, 14, 13, 0) 60%, rgba(15, 14, 13, 0.4) 100%);
}
.page-hero-image-inner { position: absolute; left: 0; right: 0; bottom: 64px; z-index: 2; }

/* ---------- CTA band ---------- */

.cta-band {
  padding: 48px 0 80px;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
  background: linear-gradient(120deg, var(--orange), var(--orange-deep));
  border-radius: 20px 20px 20px 4px;
  padding: 48px 40px;
}
.cta-inner h2 { color: #fff; font-size: clamp(26px, 3.6vw, 40px); }
.cta-band .tone-dark { color: var(--ink); }

/* ---------- Contact ---------- */

.contact-info-bar {
  background: linear-gradient(120deg, var(--orange), var(--orange-deep));
  padding: 32px 0;
}
.contact-info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.contact-info-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  text-align: center; color: #fff;
}
.contact-info-icon {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px; margin-bottom: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.5); border-radius: 50%;
  color: #fff;
}
.contact-info-icon svg { width: 22px; height: 22px; }
.contact-info-label {
  font-size: 16px; font-weight: 900; letter-spacing: 0.14em;
  text-transform: uppercase; color: #fff;
}
.contact-info-item a, .contact-info-item span:not(.contact-info-label) {
  color: #fff; font-size: 14.5px; font-weight: 400; line-height: 1.4;
}
.contact-info-item a:hover { color: var(--ink); }

.contact-form-wrap {
  background: #fff; border: 1px solid rgba(15, 14, 13, 0.08);
  box-shadow: 0 24px 60px -30px rgba(15, 14, 13, 0.35);
  border-radius: var(--radius); padding: 40px;
}
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; color: var(--ink); }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 13px 16px;
  background: var(--paper); color: var(--ink);
  border: 1px solid rgba(15, 14, 13, 0.14); border-radius: 10px;
  font-family: var(--font-body); font-size: 15.5px;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240, 102, 43, 0.18);
}
.hp-field { position: absolute; left: -9999px; }

.contact-map {
  height: 460px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.contact-map iframe { width: 100%; height: 100%; display: block; }

.notice { border-radius: 12px; padding: 22px 24px; margin-bottom: 22px; }
.notice ul { margin-left: 18px; }
.notice-success { background: rgba(46, 160, 90, 0.12); border: 1px solid rgba(46, 160, 90, 0.5); }
.notice-success h2 { font-size: 22px; margin-bottom: 8px; }
.notice-error { background: rgba(220, 70, 50, 0.12); border: 1px solid rgba(220, 70, 50, 0.5); }

/* ---------- Footer ---------- */

.site-footer {
  background:
    linear-gradient(rgba(10, 9, 8, 0.65), rgba(10, 9, 8, 0.65)),
    url('../img/footer.png') center / cover no-repeat,
    #0A0908;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 0 0; font-size: 15px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { height: 68px; width: auto; display: block; }
.footer-tag { color: var(--muted); margin-top: 14px; font-style: italic; }
.footer-col h4 {
  font-size: 16px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: grid; gap: 2px; }
.footer-col a { color: #fff; line-height: 1.3; }
.footer-col a:hover { color: var(--orange-soft); }
.footer-contact li { color: #fff; }
.footer-city { color: var(--orange-soft) !important; font-weight: 600; }
.footer-base {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 22px; padding-bottom: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted); font-size: 13.5px;
}

/* ---------- Reveal animation ---------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .pillar, .athlete-card, .btn { transition: none; }
  .hero-slide { transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .split, .mv-grid, .service-row { grid-template-columns: 1fr; gap: 32px; }
  .contact-info-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-points { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
  .athlete-profile { grid-template-columns: 1fr; }
  .athlete-photo.large { max-width: 260px; }
  .client-strip { grid-template-columns: repeat(3, 1fr); }
  .client-item { border-left: 0 !important; border-top: 0 !important; }
  .client-item:not(:nth-child(3n + 1)) { border-left: 1px solid rgba(255, 255, 255, 0.08) !important; }
  .client-item:nth-child(n + 4) { border-top: 1px solid rgba(255, 255, 255, 0.08) !important; }
  .section-light .client-item:not(:nth-child(3n + 1)) { border-left-color: rgba(15, 14, 13, 0.1) !important; }
  .section-light .client-item:nth-child(n + 4) { border-top-color: rgba(15, 14, 13, 0.1) !important; }
  .event-gallery { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .pillar:nth-child(2n+1) { border-left: 0; }
  .pillar:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
  }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .nav-toggle { display: flex; }
  .social-icons { display: none; }
  .site-nav {
    position: fixed; top: 74px; left: 0; right: auto;
    width: 68%; max-width: 320px; height: calc(100vh - 74px);
    background: #fff; border-right: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; flex-wrap: nowrap;
    padding: 22px 20px 28px; gap: 4px;
    max-height: none; overflow-y: auto;
    box-shadow: 16px 0 36px rgba(15, 14, 13, 0.18);
    transform: translateX(-100%); transition: transform 0.3s ease;
    z-index: 56;
  }
  .site-nav.open { transform: none; }
  .site-nav > a {
    width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line);
  }
  .nav-dropdown { width: 100%; flex-direction: column; align-items: stretch; border-bottom: 1px solid var(--line); }
  .nav-dropdown-trigger { width: 100%; justify-content: space-between; padding: 12px 0; }
  .nav-backdrop {
    display: block; position: fixed; inset: 0; z-index: 55;
    background: rgba(10, 9, 8, 0.5);
    opacity: 0; visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  .nav-backdrop.open { opacity: 1; visibility: visible; }
  .mega-menu {
    position: static; transform: none; width: 100%;
    box-shadow: none; border: 0;
    padding: 0; margin: 0;
    max-height: 0; opacity: 0; visibility: hidden; overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.3s ease, margin 0.3s ease;
  }
  .nav-dropdown.open .mega-menu {
    max-height: 1400px; opacity: 1; visibility: visible;
    padding: 12px 0 16px; margin: 0;
    transform: none;
  }
  .mega-menu-inner { grid-template-columns: 1fr; gap: 10px; }
  .mega-menu-item { aspect-ratio: 16 / 9; }
  .hero-slider { height: 60vh; min-height: 380px; }
  .hero-slider-dots button { width: 34px; height: 5px; }
  .section { padding: 40px 0; }
  .footer-grid {
    grid-template-columns: auto auto;
    justify-content: center;
    grid-template-areas:
      "brand   brand"
      "explore social"
      "contact contact";
    row-gap: 32px; column-gap: 64px;
  }
  .footer-grid .footer-col:nth-child(1) { grid-area: brand; text-align: center; margin-bottom: 0; }
  .footer-grid .footer-col:nth-child(1) .footer-logo { margin: 0 auto; }
  .footer-grid .footer-col:nth-child(2) { grid-area: explore; text-align: left; }
  .footer-grid .footer-col:nth-child(3) { grid-area: social; text-align: left; }
  .footer-grid .footer-col:nth-child(4) { grid-area: contact; text-align: left; }
  .footer-grid .footer-col h4 { margin-bottom: 18px; }
  .footer-grid .footer-col ul { gap: 14px; }
  .client-strip { grid-template-columns: repeat(2, 1fr); }
  .client-item { border-left: 0 !important; border-top: 0 !important; }
  .client-item:nth-child(2n) { border-left: 1px solid rgba(255, 255, 255, 0.08) !important; }
  .client-item:nth-child(n + 3) { border-top: 1px solid rgba(255, 255, 255, 0.08) !important; }
  .section-light .client-item:nth-child(2n) { border-left-color: rgba(15, 14, 13, 0.1) !important; }
  .section-light .client-item:nth-child(n + 3) { border-top-color: rgba(15, 14, 13, 0.1) !important; }
  .intro-columns { grid-template-columns: 1fr; gap: 24px; }
  .intro-columns::before { display: none; }
  .intro-columns p:last-child { padding-top: 24px; border-top: 1px solid rgba(15, 14, 13, 0.14); }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-left: 0 !important; }
  .pillar:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
  }
  .values-grid { grid-template-columns: 1fr; }
  .check-list-grid { grid-template-columns: 1fr; }
  .event-gallery { grid-template-columns: 1fr; }
  .service-nav { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .service-nav-link, .service-nav-next { max-width: none; margin-left: 0; align-items: center; text-align: center; }
}
