:root {
  --black: #080808;
  --ink: #111111;
  --anthracite: #181818;
  --panel: #202020;
  --line: rgba(255, 255, 255, 0.13);
  --soft-line: rgba(17, 20, 24, 0.11);
  --white: #ffffff;
  --muted: #b8b8b8;
  --body: #555555;
  --red: #d71920;
  --red-dark: #a90f15;
  --surface: #f5f5f5;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.section-dark {
  color: var(--white);
  background: var(--black);
}

.section-light {
  color: var(--ink);
  background: var(--surface);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(8, 9, 9, 0.48);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(8, 9, 9, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.28);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.brand-mark img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 1px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
}

.brand-text strong {
  font-size: 1rem;
  font-weight: 900;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.55vw, 24px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-menu a {
  position: relative;
  padding: 10px 0;
  transition: color 0.2s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.nav-menu a:hover {
  color: var(--white);
}

.nav-menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.header-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 32px rgba(215, 25, 32, 0.26);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--red-dark);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  isolation: isolate;
  padding: 150px 0 82px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background: url("hero-bg.png") center / cover no-repeat;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.68) 43%, rgba(0, 0, 0, 0.36) 100%),
    linear-gradient(0deg, rgba(8, 9, 9, 0.92) 0%, rgba(8, 9, 9, 0.08) 42%);
}

.hero-content {
  max-width: 870px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 820px;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 950;
  text-transform: uppercase;
  line-height: 1;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4.25rem);
  font-weight: 950;
  text-transform: uppercase;
}

h3 {
  font-size: 1.1rem;
  font-weight: 900;
}

.hero-copy {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  padding: 0 22px;
  border: 1px solid transparent;
}

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

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  color: var(--white);
  background: var(--ink);
}

section:not(.hero) {
  padding: clamp(76px, 9vw, 128px) 0;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  align-items: center;
  gap: clamp(32px, 6vw, 78px);
}

.split-grid.reverse {
  grid-template-columns: minmax(330px, 0.88fr) minmax(0, 1fr);
}

.section-copy p:not(.section-kicker),
.section-heading p,
.instagram-panel p,
.cta-inner p,
.match p {
  color: var(--body);
  font-size: 1.02rem;
  line-height: 1.78;
}

.section-copy p:not(.section-kicker) {
  margin: 24px 0 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 860px;
  display: block;
}

.section-dark .section-heading p,
.section-dark .section-copy p:not(.section-kicker),
.section-dark .cta-inner p {
  color: rgba(255, 255, 255, 0.72);
}

.image-panel {
  position: relative;
  margin: 0;
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--anthracite);
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  pointer-events: none;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.image-panel:hover img {
  transform: scale(1.04);
}

.training,
.journey,
.gallery,
.cta {
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.08), transparent 35%),
    linear-gradient(180deg, #080808, #151515);
}

.cards-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.why-grid article,
.pillar-card,
.timeline article {
  border-radius: var(--radius);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.service-card {
  min-height: 232px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
}

.service-card:hover,
.pillar-card:hover,
.timeline article:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 25, 32, 0.58);
}

.service-card span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 950;
}

.service-card p,
.pillar-card p,
.timeline p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.age-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
  margin-top: 36px;
}

.age-track::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: var(--red);
}

.age-item {
  position: relative;
  min-height: 116px;
  padding: 14px 10px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
  text-align: center;
}

.age-item span {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  border: 3px solid var(--red);
  font-size: 1rem;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.age-item small {
  color: var(--body);
  font-weight: 900;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.pillars .container {
  width: min(calc(100% - 40px), 1240px);
}

.pillar-card {
  min-width: 0;
  min-height: 260px;
  height: 100%;
  padding: clamp(30px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
}

.pillar-card span {
  color: var(--white);
  font-size: clamp(30px, 3vw, 52px);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.match .section-copy {
  min-width: 0;
}

.match h2 {
  max-width: 760px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.95;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-grid article {
  min-height: 158px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--soft-line);
  box-shadow: 0 18px 42px rgba(17, 20, 24, 0.06);
}

.why-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 25, 32, 0.55);
}

.why-grid p {
  margin: 18px 0 0;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.38;
}

.line-icon {
  width: 36px;
  height: 36px;
  display: inline-block;
  border: 2px solid var(--red);
  border-radius: 50%;
  position: relative;
}

.line-icon::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 7px;
  left: 9px;
  top: 10px;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.timeline article {
  position: relative;
  min-height: 210px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
}

.timeline span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-weight: 950;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  aspect-ratio: 1.18 / 1;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: contrast(1.06) saturate(1.04);
}

.instagram-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(28px, 5vw, 48px);
  background: var(--white);
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  box-shadow: 0 22px 52px rgba(17, 20, 24, 0.08);
}

.instagram-panel h2,
.cta-inner h2 {
  max-width: 780px;
}

.cta-inner {
  text-align: center;
  display: grid;
  justify-items: center;
}

.cta-inner p {
  max-width: 680px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  font-style: normal;
}

.contact-list a,
.contact-list p {
  margin: 0;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  font-weight: 900;
}

.contact-list span {
  color: var(--body);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.contact-list .address-lines,
.footer-contact .address-lines {
  color: inherit;
  font-size: inherit;
  font-weight: 900;
  line-height: 1.55;
  text-transform: none;
}

.contact-list .address-lines {
  text-align: right;
}

.footer-contact .address-lines {
  color: var(--muted);
  font-weight: 400;
}

.site-footer {
  color: var(--white);
  background: #070808;
  padding: 48px 0 96px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
  padding: 6px;
}

.footer-brand strong {
  font-size: 1.1rem;
  text-transform: uppercase;
}

.footer-brand p,
.footer-contact span {
  color: var(--muted);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.76);
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--red);
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-height: min(84vh, 840px);
  width: min(100%, 1100px);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.mobile-actions {
  display: none;
}

@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

  .nav-menu {
    gap: 14px;
    font-size: 0.84rem;
  }

  .service-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .age-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .age-track::before {
    display: none;
  }

  .timeline,
  .pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline::before {
    display: none;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .header-inner {
    min-height: 72px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 82px;
    max-height: calc(100vh - 98px);
    overflow-y: auto;
    padding: 16px;
    display: grid;
    gap: 2px;
    background: rgba(8, 9, 9, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 14px 12px;
    border-radius: 6px;
  }

  .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.07);
  }

  .nav-menu a::after {
    display: none;
  }

  .hero {
    min-height: 82vh;
    padding: 128px 0 62px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.58)),
      linear-gradient(0deg, rgba(8, 9, 9, 0.92), rgba(8, 9, 9, 0.08));
  }

  .split-grid,
  .split-grid.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .image-panel {
    min-height: 330px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .instagram-panel {
    display: grid;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 72px;
  }

  .brand-text {
    display: none;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.8rem);
  }

  .match h2 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .hero-actions,
  .cta-inner .hero-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
    min-height: 50px;
  }

  .service-grid,
  .why-grid,
  .pillars-grid,
  .timeline,
  .age-track,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .why-grid article,
  .timeline article {
    min-height: auto;
  }

  .age-item {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: var(--white);
    border: 1px solid var(--soft-line);
    border-radius: var(--radius);
  }

  .age-item span {
    width: 58px;
    height: 58px;
    font-size: 0.9rem;
  }

  .contact-list a,
  .contact-list p {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-list .address-lines {
    text-align: left;
  }

  .site-footer {
    padding-bottom: 116px;
  }

  .mobile-actions {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1500;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 8px;
    background: rgba(8, 9, 9, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
  }

  .mobile-actions a {
    min-height: 46px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    font-weight: 900;
  }

  .mobile-actions a:first-child {
    color: var(--white);
    background: var(--red);
  }
}

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