/* ===========================================================
   Shadow K9 — shared foundation
   Fonts, color palette, header, footer, buttons and base system
   =========================================================== */

@font-face { font-family: "Nunito"; src: url("fonts/nunito-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Nunito"; src: url("fonts/nunito-latin-600-normal.woff2") format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Nunito"; src: url("fonts/nunito-latin-700-normal.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Nunito"; src: url("fonts/nunito-latin-800-normal.woff2") format("woff2"); font-weight: 800; font-display: swap; }
@font-face { font-family: "Zain"; src: url("fonts/zain-latin-700-normal.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Zain"; src: url("fonts/zain-latin-800-normal.woff2") format("woff2"); font-weight: 800; font-display: swap; }
@font-face { font-family: "Zain"; src: url("fonts/zain-latin-900-normal.woff2") format("woff2"); font-weight: 900; font-display: swap; }

:root {
  --brand: #b91419;
  --brand-dark: #8f0f13;
  --brand-accent: #f0500a;
  --charcoal: #1f1f1f;
  --blush: #fdf8f5;
  --white: #ffffff;
  --gray: #8a8a8a;
  --border: #ece4df;
  --border-dark: rgba(253, 248, 245, 0.12);

  --font-display: "Zain", "Nunito", sans-serif;
  --font-sans: "Nunito", system-ui, -apple-system, sans-serif;

  --shadow-card: 0 1px 2px rgba(31, 31, 31, 0.04), 0 12px 28px -18px rgba(31, 31, 31, 0.22);
  --shadow-lift: 0 2px 6px rgba(31, 31, 31, 0.06), 0 26px 50px -26px rgba(31, 31, 31, 0.30);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--white);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0;
}

p { margin: 0; }

h1 { font-size: clamp(2.9rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2.1rem, 3.6vw, 3rem); }
h3 { font-size: 1.5rem; }

.container {
  width: min(100% - 2.5rem, 1180px);
  margin-inline: auto;
}

.section { padding: 5.5rem 0; }
.section-sm { padding: 3rem 0; }

.bg-blush { background-color: var(--blush); }
.bg-charcoal { background-color: var(--charcoal); color: var(--blush); }
.bg-brand { background-color: var(--brand); color: var(--white); }
.bg-white { background-color: var(--white); }

.muted { color: rgba(31, 31, 31, 0.7); }
.small { font-size: 0.875rem; }
.text-brand { color: var(--brand); }
.text-accent { color: var(--brand-accent); }

.lead {
  margin-top: 1.35rem;
  max-width: 40rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(31, 31, 31, 0.70);
}

.eyebrow {
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}

.grid { display: grid; gap: 1.25rem; }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.section-head h2 { margin-top: 0.55rem; max-width: 48rem; }

.section-head-note {
  max-width: 27rem;
  color: rgba(31, 31, 31, 0.64);
  line-height: 1.7;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background-color: var(--brand);
  color: var(--white);
  box-shadow: 0 14px 28px -16px var(--brand);
}

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

.btn-outline {
  border: 1.5px solid var(--border);
  background-color: var(--white);
  color: var(--charcoal);
}

.btn-outline:hover { border-color: var(--brand); color: var(--brand); }

.btn-onred { background-color: var(--white); color: var(--brand); }
.btn-onred:hover { background-color: var(--blush); }

.btn-sm { font-size: 0.875rem; padding: 0.65rem 1.3rem; }

.card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-card);
}

.icon { width: 1.25rem; height: 1.25rem; flex: none; }

/* ---------- header: unchanged ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.65rem; }

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1;
}

.nav { display: none; align-items: center; gap: 2rem; }

.nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(31, 31, 31, 0.75);
  transition: color 0.18s ease;
}

.nav a:hover, .nav a.active { color: var(--brand); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }

.header-phone { display: none; font-size: 0.875rem; font-weight: 700; }

.mobile-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.65rem 0;
  border-top: 1px solid var(--border);
}

.mobile-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(31, 31, 31, 0.75);
}

.mobile-nav a.active { color: var(--brand); }

/* ---------- footer: unchanged ---------- */

.site-footer { background-color: var(--charcoal); color: var(--blush); }

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 0;
}

.footer-about {
  margin-top: 1rem;
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(253, 248, 245, 0.65);
}

.footer-title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(253, 248, 245, 0.5);
}

.footer-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: rgba(253, 248, 245, 0.75);
}

.footer-list a { transition: color 0.18s ease; }
.footer-list a:hover { color: var(--brand-accent); }

.footer-list .dim {
  padding-top: 0.5rem;
  color: rgba(253, 248, 245, 0.55);
}

.footer-bottom { border-top: 1px solid var(--border-dark); }

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.25rem 0;
  font-size: 0.75rem;
  color: rgba(253, 248, 245, 0.5);
}

.footer-bottom-inner .links { display: flex; gap: 1.25rem; }
.footer-bottom-inner a:hover { color: var(--brand-accent); }
.footer-brand-accent { color: var(--brand-accent); }

/* ===========================================================
   ABOUT PAGE
   =========================================================== */

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

.about-hero {
  background:
    radial-gradient(circle at 78% 35%, rgba(240, 80, 10, 0.055), transparent 26rem),
    var(--blush);
  padding: 5rem 0 5.75rem;
  overflow: hidden;
}

.about-hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-hero-copy { position: relative; z-index: 2; }

.about-hero h1 {
  max-width: 43rem;
  margin-top: 0.75rem;
  font-size: clamp(3.25rem, 6.7vw, 5.45rem);
}

.about-hero .lead strong {
  color: var(--charcoal);
  font-weight: 800;
}

.founder-role {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
  padding: 0.7rem 1rem 0.7rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow-card);
}

.founder-role-mark {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
}

.founder-role div {
  display: grid;
  line-height: 1.15;
}

.founder-role strong {
  font-size: 0.95rem;
}

.founder-role span:not(.founder-role-mark) {
  margin-top: 0.2rem;
  color: var(--gray);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-photo-wrap {
  position: relative;
  max-width: 600px;
  justify-self: end;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.02;
  border-radius: 1.7rem;
  box-shadow: var(--shadow-lift);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(31,31,31,0.28));
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-proof {
  position: absolute;
  left: -1.25rem;
  bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  max-width: 17rem;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  background: var(--white);
  color: var(--charcoal);
  box-shadow: var(--shadow-lift);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.proof-dot {
  width: 0.55rem;
  height: 0.55rem;
  flex: none;
  border-radius: 50%;
  background: var(--brand-accent);
}

/* ---------- founder intro ---------- */

.founder-intro {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.founder-intro-grid {
  display: grid;
  gap: 1.5rem;
}

.section-marker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--brand);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
}

.section-marker i {
  display: block;
  width: 3.5rem;
  height: 1px;
  background: var(--border);
}

.founder-intro-copy h2 {
  max-width: 46rem;
  margin-top: 0.6rem;
}

.founder-intro-body {
  max-width: 42rem;
  margin-top: 0.5rem;
}

.founder-intro-body p {
  color: rgba(31,31,31,0.70);
  line-height: 1.8;
}

.founder-intro-body p + p { margin-top: 1rem; }

/* ---------- credibility ---------- */

.credibility {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.credibility-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.75rem;
}

.credibility-card {
  position: relative;
  min-height: 18rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 1.35rem;
  background: var(--white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.credibility-card::after {
  content: "";
  position: absolute;
  width: 9rem;
  height: 9rem;
  right: -4.5rem;
  bottom: -4.5rem;
  border-radius: 50%;
  background: rgba(185,20,25,0.045);
}

.credibility-number {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: var(--brand-accent);
}

.credibility-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  background: var(--blush);
  color: var(--brand);
}

.credibility-icon .icon {
  width: 1.45rem;
  height: 1.45rem;
}

.credibility-card h3 {
  margin-top: 2.2rem;
  font-size: 1.45rem;
}

.credibility-card p {
  max-width: 19rem;
  margin-top: 0.65rem;
  color: rgba(31,31,31,0.66);
  line-height: 1.7;
  font-size: 0.92rem;
}

/* ---------- actor trust ---------- */

.trust-section {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}

.trust-grid {
  display: grid;
  gap: 3.25rem;
  align-items: center;
}

.trust-photo {
  position: relative;
  max-width: 470px;
  justify-self: center;
}

.trust-photo::before {
  content: "";
  position: absolute;
  width: 75%;
  height: 75%;
  left: -1.2rem;
  bottom: -1.2rem;
  border-radius: 1.4rem;
  background: var(--brand);
  opacity: 0.08;
  z-index: 0;
}

.trust-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  object-position: center;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lift);
}

.photo-label {
  position: absolute;
  z-index: 2;
  right: -1rem;
  bottom: 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: var(--brand);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: var(--shadow-card);
}

.trust-copy h2 {
  max-width: 39rem;
  margin-top: 0.6rem;
}

.trust-copy > p:not(.eyebrow) {
  max-width: 39rem;
  margin-top: 1.2rem;
  color: rgba(31,31,31,0.70);
  line-height: 1.8;
}

.trust-copy > p + p {
  margin-top: 0.8rem;
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.7rem;
  color: var(--charcoal);
  font-size: 0.9rem;
}

.trust-line span {
  width: 2.75rem;
  height: 2px;
  background: var(--brand);
}

/* ---------- trainer network ---------- */

.network-section {
  overflow: hidden;
}

.network-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.network-copy .eyebrow { color: var(--brand-accent); }

.network-copy h2 {
  max-width: 42rem;
  margin-top: 0.6rem;
  color: var(--white);
}

.network-copy > p:not(.eyebrow) {
  max-width: 39rem;
  margin-top: 1.2rem;
  color: rgba(253,248,245,0.68);
  line-height: 1.8;
}

.network-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
  max-width: 39rem;
}

.network-points div {
  padding-top: 0.9rem;
  border-top: 1px solid var(--border-dark);
}

.network-points span {
  color: var(--brand-accent);
  font-family: var(--font-display);
  font-weight: 900;
}

.network-points p {
  margin-top: 0.25rem;
  color: rgba(253,248,245,0.72);
  font-size: 0.76rem;
  line-height: 1.35;
}

.network-photo {
  margin: 0;
}

.network-photo img {
  width: 100%;
  border-radius: 1.4rem;
  box-shadow: 0 24px 55px -28px rgba(0,0,0,0.65);
}

.network-photo figcaption {
  margin-top: 0.75rem;
  color: rgba(253,248,245,0.45);
  font-size: 0.75rem;
}

/* ---------- events ---------- */

.experience-section {
  padding-top: 6.25rem;
}

.experience-head { margin-bottom: 2.75rem; }

.experience-layout {
  display: grid;
  gap: 1rem;
}

.experience-main,
.experience-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 1.35rem;
  background: var(--charcoal);
}

.experience-main img {
  width: 100%;
  height: 100%;
  min-height: 30rem;
  object-fit: cover;
}

.experience-main::after,
.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(31,31,31,0.72));
  pointer-events: none;
}

.experience-main figcaption {
  position: absolute;
  z-index: 2;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.35rem;
  display: grid;
  gap: 0.25rem;
  color: var(--white);
}

.experience-main figcaption strong {
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1;
}

.experience-main figcaption span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.76);
}

.experience-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.experience-card img {
  width: 100%;
  height: 100%;
  min-height: 19rem;
  object-fit: cover;
}

.experience-card figcaption {
  position: absolute;
  z-index: 2;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
}

/* ---------- recognition ---------- */

.recognition-section {
  border-top: 1px solid var(--border);
}

.recognition-grid {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

.recognition-copy h2 {
  max-width: 39rem;
  margin-top: 0.6rem;
}

.recognition-copy > p:not(.eyebrow) {
  max-width: 37rem;
  margin-top: 1.2rem;
  color: rgba(31,31,31,0.70);
  line-height: 1.8;
}

.recognition-copy .btn {
  margin-top: 1.75rem;
}

.recognition-image {
  position: relative;
  max-width: 550px;
  justify-self: center;
}

.recognition-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lift);
}

.recognition-badge {
  position: absolute;
  left: -1.2rem;
  bottom: 1.4rem;
  display: grid;
  gap: 0.1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 0.9rem;
  background: var(--white);
  box-shadow: var(--shadow-lift);
}

.recognition-badge span {
  color: var(--gray);
  font-size: 0.72rem;
  font-weight: 700;
}

.recognition-badge strong {
  color: var(--charcoal);
  font-size: 0.85rem;
}

/* ---------- closing ---------- */

.closing-section {
  padding: 6.5rem 0 7rem;
  text-align: center;
}

.closing-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.closing-inner h2 {
  max-width: 58rem;
  margin-top: 0.6rem;
  font-size: clamp(2.45rem, 5vw, 4rem);
}

.closing-inner > p:not(.eyebrow) {
  max-width: 36rem;
  margin-top: 1.1rem;
  color: rgba(31,31,31,0.66);
  line-height: 1.7;
}

.closing-inner .btn { margin-top: 1.7rem; }

/* ---------- responsive ---------- */

@media (min-width: 640px) {
  .footer-bottom-inner { flex-direction: row; }

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

  .experience-main img {
    min-height: 34rem;
  }
}

@media (min-width: 768px) {
  .nav { display: flex; }
  .mobile-nav { display: none; }

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

  .about-hero-grid {
    grid-template-columns: 1.03fr 0.97fr;
  }

  .founder-intro-grid {
    grid-template-columns: 5rem minmax(0, 1.25fr) minmax(0, 0.9fr);
    align-items: start;
    column-gap: 2rem;
  }

  .section-marker {
    padding-top: 0.55rem;
  }

  .founder-intro-body {
    margin-top: 0.55rem;
  }

  .trust-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  .network-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .experience-layout {
    grid-template-columns: 1.55fr 0.85fr;
  }

  .experience-side {
    grid-template-columns: 1fr;
  }

  .experience-card img {
    min-height: 0;
    height: 100%;
  }

  .recognition-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  }
}

@media (min-width: 1024px) {
  .header-phone { display: block; }

  .about-hero {
    padding-top: 6rem;
    padding-bottom: 6.5rem;
  }

  .about-hero-grid {
    gap: 5rem;
  }

  .hero-proof {
    left: -2rem;
  }

  .credibility-card {
    padding: 2.2rem;
  }

  .trust-grid {
    gap: 5.5rem;
  }

  .network-grid {
    gap: 5.5rem;
  }

  .experience-main img {
    min-height: 40rem;
  }

  .recognition-grid {
    gap: 6rem;
  }
}

@media (max-width: 639px) {
  .section { padding: 4rem 0; }

  .about-hero {
    padding: 3.5rem 0 4.5rem;
  }

  .about-hero h1 {
    font-size: clamp(2.85rem, 14vw, 4rem);
  }

  .hero-proof {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: none;
  }

  .network-points {
    grid-template-columns: 1fr;
  }

  .experience-side {
    grid-template-columns: 1fr;
  }

  .experience-card img {
    min-height: 23rem;
  }

  .recognition-badge {
    left: 0.75rem;
    bottom: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}