/* ==========================================================================
   Vitali Coach - Main Styles
   ========================================================================== */

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #D41E2C;
  --red-dark: #A01520;
  --black: #0d0d0d;
  --white: #ffffff;
  --gray: #f5f5f5;
  --muted: #666;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
}

.nav-logo {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--black);
  text-transform: uppercase;
}

.nav-logo span {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 20px;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
}

/* ==========================================================================
   Ticker
   ========================================================================== */
.ticker {
  background: var(--red);
  color: var(--white);
  padding: 14px 0;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 64px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.75;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 64px;
  max-width: 740px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.eyebrow-line {
  width: 40px;
  height: 3px;
  background: var(--red);
}

.eyebrow-text {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.hero-headline {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-headline .accent {
  color: var(--red);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-red {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 16px 36px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

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

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 15px 32px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

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

/* ==========================================================================
   Stats Strip
   ========================================================================== */
.stats-strip {
  background: var(--black);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-cell:last-child {
  border-right: none;
}

.stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.about-image-col {
  position: relative;
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-text-col {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.label-line {
  width: 32px;
  height: 3px;
  background: var(--red);
  flex-shrink: 0;
}

.label-text {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
}

.section-headline {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--black);
  margin-bottom: 28px;
}

.about-body {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.cert-list {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

.cert-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  flex-shrink: 0;
}

/* ==========================================================================
   Quote Section
   ========================================================================== */
.quote-section {
  background: var(--white);
  padding: 100px 64px;
  text-align: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.big-quote {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--black);
  max-width: 900px;
  margin: 0 auto 24px;
}

.big-quote span {
  color: var(--red);
}

.quote-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==========================================================================
   Programs Section
   ========================================================================== */
.programs {
  background: var(--gray);
  padding: 80px 64px;
}

.programs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #ddd;
}

.program-card {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  cursor: pointer;
}

.program-card:hover {
  background: var(--black);
}

.program-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.program-card:hover::after {
  transform: scaleX(1);
}

.program-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 16px;
}

.program-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
  transition: color 0.25s;
  line-height: 1;
}

.program-card:hover .program-name {
  color: var(--white);
}

.program-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  transition: color 0.25s;
}

.program-card:hover .program-desc {
  color: rgba(255,255,255,0.55);
}

/* ==========================================================================
   Audience Section
   ========================================================================== */
.audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.audience-dark {
  background: var(--black);
  padding: 80px 64px;
}

.audience-light {
  background: var(--red);
  padding: 80px 64px;
}

.audience-headline {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 52px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
  margin-bottom: 40px;
}

.aud-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aud-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.aud-item:last-child {
  border-bottom: none;
}

.aud-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}

.aud-content strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.5px;
}

.aud-content span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
  background: var(--white);
  padding: 100px 64px;
  text-align: center;
}

.contact-headline {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--black);
  margin-bottom: 16px;
}

.contact-headline span {
  color: var(--red);
}

.contact-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto 48px;
}

.contact-item {
  background: var(--gray);
  padding: 24px;
  text-align: center;
}

.contact-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-val {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background: var(--black);
  padding: 32px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--white);
  text-transform: uppercase;
}

.footer-logo span {
  color: var(--red);
}

.footer-text {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
}

/* ==========================================================================
   Mobile Responsive (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
    height: 56px;
  }

  .nav-links {
    display: none;
  }

  .ticker {
    font-size: 14px;
    padding: 10px 0;
    margin-top: 56px;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-content {
    padding: 40px 20px;
  }

  .hero-headline {
    font-size: 48px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-cell {
    padding: 20px 16px;
  }

  .stat-num {
    font-size: 36px;
  }

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

  .about-image-col {
    height: 300px;
  }

  .about-text-col {
    padding: 40px 20px;
  }

  .section-headline {
    font-size: 36px;
  }

  .quote-section {
    padding: 60px 20px;
  }

  .big-quote {
    font-size: 28px;
  }

  .programs {
    padding: 40px 20px;
  }

  .programs-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

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

  .program-card {
    padding: 28px 20px;
  }

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

  .audience-dark,
  .audience-light {
    padding: 40px 20px;
  }

  .audience-headline {
    font-size: 36px;
  }

  .contact-section {
    padding: 60px 20px;
  }

  .contact-headline {
    font-size: 40px;
  }

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

  footer {
    padding: 24px 20px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
