/* ===== WINford Evolution & Coaching ===== */

:root {
  --black: #0b0b0c;
  --near-black: #131315;
  --charcoal: #1c1c1f;
  --line: #2a2a2e;
  --white: #f5f5f3;
  --dim: #a8a8ac;
  --red: #e0222a;
  --red-dim: #a5181f;
  --font-head: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

section[id], header[id] { scroll-margin-top: 84px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  letter-spacing: 0.5px;
  line-height: 1.05;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--dim);
  max-width: 620px;
  font-size: 1.05rem;
  margin-bottom: 48px;
}

.section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}

.section.alt { background: var(--near-black); }

/* ===== Buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover { background: var(--red-dim); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border-color: rgba(245,245,243,0.35);
  color: var(--white);
}
.btn-outline:hover { border-color: #fff; }

/* ===== Nav ===== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,11,12,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.logo span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dim);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta { display: flex; align-items: center; gap: 20px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); }

/* ===== Hero ===== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(11,11,12,0.35) 0%, rgba(11,11,12,0.55) 55%, var(--black) 100%), url('../images/hero.jpg');
  background-size: cover;
  background-position: center 20%;
}

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

.hero-tag {
  display: inline-block;
  border: 1px solid rgba(245,245,243,0.3);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 24px;
}
.hero-tag strong { color: var(--red); }

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  max-width: 900px;
}
.hero h1 em { font-style: normal; color: var(--red); }

.hero p {
  max-width: 560px;
  color: var(--dim);
  font-size: 1.15rem;
  margin: 22px 0 34px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.hero-stats div strong {
  font-family: var(--font-head);
  font-size: 2.2rem;
  display: block;
  color: var(--white);
}
.hero-stats div span {
  color: var(--dim);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== About ===== */

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }

.badges { display: flex; gap: 12px; margin: 28px 0; flex-wrap: wrap; }
.badge {
  border: 1px solid var(--line);
  background: var(--charcoal);
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--dim);
}
.badge strong { color: var(--white); display: block; font-size: 0.9rem; }

.about-text p { color: var(--dim); margin-bottom: 16px; }
.about-text p:first-of-type { color: var(--white); font-size: 1.15rem; }

/* ===== What We Do ===== */

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: var(--near-black);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--red); transform: translateY(-4px); }

.card .num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--red);
  display: block;
  margin-bottom: 18px;
}

.card h3 { font-size: 1.15rem; margin-bottom: 10px; letter-spacing: 0.5px; }
.card p { color: var(--dim); font-size: 0.92rem; }

/* ===== In-Person / Assessment ===== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split img { border-radius: 6px; width: 100%; aspect-ratio: 4/5; object-fit: cover; }

.check-list { list-style: none; margin-top: 24px; }
.check-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--dim);
  font-size: 0.95rem;
}
.check-list li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== Gallery (action shots) ===== */

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.gallery-strip a { display: block; overflow: hidden; border-radius: 4px; aspect-ratio: 3/4; }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-strip a:hover img { transform: scale(1.06); }

/* ===== Pricing ===== */

.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.tab-btn {
  background: var(--near-black);
  border: 1px solid var(--line);
  color: var(--dim);
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn.active { background: var(--red); border-color: var(--red); color: #fff; }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.price-card {
  background: var(--near-black);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.popular { border-color: var(--red); background: linear-gradient(180deg, rgba(224,34,42,0.08), transparent 40%); }
.price-card .tag {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 30px;
  text-transform: uppercase;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.price-card .price {
  font-family: var(--font-head);
  font-size: 2.6rem;
  color: var(--white);
  margin: 10px 0 4px;
}
.price-card .price small { font-family: var(--font-body); font-size: 0.9rem; color: var(--dim); font-weight: 400; }
.price-card .desc { color: var(--dim); font-size: 0.88rem; margin-bottom: 20px; min-height: 40px; }
.price-card ul { list-style: none; margin-bottom: 26px; flex-grow: 1; }
.price-card ul li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--dim);
  display: flex;
  gap: 10px;
}
.price-card ul li::before { content: '＋'; color: var(--red); }
.price-card .value {
  font-size: 0.78rem;
  color: var(--dim);
  margin-bottom: 14px;
}
.price-card .value s { opacity: 0.6; }
.price-card .value strong { color: var(--white); }

.price-note {
  margin-top: 40px;
  background: var(--near-black);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  padding: 20px 24px;
  border-radius: 4px;
  color: var(--dim);
  font-size: 0.9rem;
}
.price-note strong { color: var(--white); }

/* ===== Results ===== */

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.results-grid figure {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.results-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.results-grid figcaption {
  padding: 12px 16px;
  font-size: 0.8rem;
  color: var(--dim);
  background: var(--near-black);
}

.results-note {
  margin-top: 28px;
  color: var(--dim);
  font-size: 0.85rem;
  border-top: 1px dashed var(--line);
  padding-top: 20px;
}

/* ===== Why ===== */

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-item {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--near-black);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.why-item .mark {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--red);
  flex-shrink: 0;
}
.why-item p { color: var(--dim); font-size: 0.92rem; }
.why-item h4 { font-size: 1rem; margin-bottom: 6px; letter-spacing: 0.5px; }

.mission-line {
  text-align: center;
  margin-top: 56px;
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--white);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.mission-line span { color: var(--red); }

/* ===== FAQ ===== */

.faq-list { max-width: 800px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}
.faq-q .plus {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--red);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p { color: var(--dim); padding-bottom: 22px; max-width: 640px; font-size: 0.94rem; }

/* ===== Contact ===== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-item .ic {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--near-black);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-info-item h4 { font-size: 0.95rem; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-info-item p, .contact-info-item a { color: var(--dim); font-size: 0.95rem; }
.contact-info-item a:hover { color: var(--red); }

.social-row { display: flex; gap: 12px; margin-top: 8px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.social-row a:hover { background: var(--red); border-color: var(--red); }

.map-frame {
  margin-top: 30px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-frame iframe { width: 100%; height: 220px; border: 0; filter: grayscale(1) invert(0.9) contrast(0.85); }

form.contact-form {
  background: var(--near-black);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dim);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
}
.field textarea { resize: vertical; min-height: 100px; }
form.contact-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 0.8rem; color: var(--dim); margin-top: 14px; text-align: center; }

/* ===== Footer ===== */

.footer {
  padding: 60px 0 30px;
  text-align: center;
}
.footer .logo { justify-content: center; display: inline-flex; margin-bottom: 18px; }
.footer p { color: var(--dim); font-size: 0.85rem; }
.footer .social-row { justify-content: center; margin: 22px 0; }
.footer .hashtag { color: var(--red); font-weight: 700; letter-spacing: 1px; margin-top: 10px; display: block; }

/* ===== Responsive ===== */

@media (max-width: 900px) {
  .about-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .split .split-img-wrap { order: -1; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--near-black);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }
  .section { padding: 70px 0; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 60px; }
  .hero-stats { gap: 28px; }
}
