:root {
  --mvp-black: #F2F2F0;
  --mvp-bone: #0A0A0A;
  --mvp-red: #C8102E;
  --mvp-charcoal: #E4E4E1;
  --mvp-steel: #8C8C8C;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--mvp-black);
  color: var(--mvp-bone);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.display { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.02em; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 8vw; }
section { padding: 100px 0; border-bottom: 1px solid #D6D6D3; }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mvp-red);
  margin-bottom: 18px;
}
h2.display { font-size: clamp(34px, 4vw, 52px); color: var(--mvp-bone); margin-bottom: 10px; }
.subhead { color: var(--mvp-steel); font-size: 15px; max-width: 560px; margin-bottom: 50px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 8vw;
  background: rgba(242,242,240,0.88);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #DADAD7;
}
.nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 0.06em; }
.nav-logo img { height: 84px; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--mvp-bone);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--mvp-red); }
.nav-links a.nav-highlight { color: var(--mvp-red); }
.nav-links a.nav-highlight:hover,
.nav-links a.nav-highlight:active,
.nav-links a.nav-highlight:focus { color: var(--mvp-bone); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px; padding: 8px; z-index: 110;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--mvp-bone); display: block; transition: transform 0.25s ease, opacity 0.2s ease; }
nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-cta {
  text-decoration: none; border: 1px solid var(--mvp-bone); padding: 10px 20px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--mvp-red); border-color: var(--mvp-red); }

/* HERO */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  padding: 140px 8vw 100px; position: relative; border-bottom: 1px solid #D6D6D3;
  background:
    linear-gradient(180deg, rgba(242,242,240,0.4) 0%, rgba(242,242,240,0.95) 75%),
    linear-gradient(120deg, #E4E4E1 0%, #F2F2F0 60%);
}
.hero .eyebrow { margin-bottom: 14px; }
.hero h1.display {
  font-size: clamp(52px, 10vw, 128px);
  line-height: 0.92;
  color: var(--mvp-bone);
}
.hero h1.display .accent { color: var(--mvp-red); }
.hero .tag { font-size: 17px; color: var(--mvp-steel); max-width: 480px; margin: 22px 0 36px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary, .btn-secondary {
  text-decoration: none; padding: 16px 30px; font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; display: inline-block; transition: all 0.2s;
}
.btn-primary { background: var(--mvp-red); color: var(--mvp-bone); border: none; cursor: pointer; font-family: 'Inter', sans-serif; }
.btn-primary:hover { background: #a30d26; }
.btn-secondary { border: 1px solid var(--mvp-steel); color: var(--mvp-bone); }
.btn-secondary:hover { border-color: var(--mvp-bone); }
.hero-stats { display: flex; gap: 48px; margin-top: 70px; flex-wrap: wrap; }
.hero-stat .num { font-family: 'Bebas Neue', sans-serif; font-size: 44px; color: var(--mvp-bone); }
.hero-stat .num span { color: var(--mvp-red); }
.hero-stat .label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mvp-steel); margin-top: 4px; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: start; }
.about-photo {
  aspect-ratio: 4/5; background: var(--mvp-charcoal); border: 1px solid #CFCFCC;
  position: relative; overflow: hidden; padding: 0;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--mvp-red); z-index: 6;
}
.about-copy p { color: var(--mvp-bone); font-size: 16px; margin-bottom: 20px; max-width: 560px; }

/* Brandon's competition PRs, styled to match the hero/results stat pattern */
.pr-row { display: flex; gap: 40px; flex-wrap: wrap; margin: 30px 0 6px; }
.pr-stat .num { font-family: 'Bebas Neue', sans-serif; font-size: 38px; color: var(--mvp-bone); }
.pr-stat .num span { color: var(--mvp-red); }
.pr-stat .label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mvp-steel); margin-top: 2px; }

.about-copy .credentials { list-style: none; margin-top: 34px; display: flex; flex-direction: column; gap: 14px; }
.about-copy .credentials li { font-size: 14px; padding-left: 20px; position: relative; color: var(--mvp-steel); }
.about-copy .credentials li::before { content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 2px; background: var(--mvp-red); }
.about-copy .credentials strong { color: var(--mvp-bone); font-weight: 600; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #D6D6D3; border: 1px solid #D6D6D3; }
.service-card { background: var(--mvp-black); padding: 40px 32px; display: flex; flex-direction: column; }
.service-card .tag {
  align-self: flex-start; border: 1px solid #CCCCCC; padding: 5px 10px; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--mvp-steel); margin-bottom: 24px;
}
.service-card h3.display { font-size: 30px; color: var(--mvp-bone); margin-bottom: 12px; }
.service-card p { color: var(--mvp-steel); font-size: 14px; margin-bottom: 22px; flex-grow: 1; }
.service-card .price { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--mvp-red); margin-bottom: 6px; }
.service-card .price-note { font-size: 12px; color: var(--mvp-steel); margin-bottom: 22px; }
.service-card .service-link { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; text-decoration: none; color: var(--mvp-bone); border-bottom: 1px solid var(--mvp-red); padding-bottom: 4px; align-self: flex-start; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: #D6D6D3; border: 1px solid #D6D6D3; }
.gallery-tile {
  aspect-ratio: 1/1; background: var(--mvp-charcoal); display: flex; align-items: center; justify-content: center;
  color: var(--mvp-steel); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; text-align: center; padding: 16px;
  position: relative;
}
.gallery-tile::before {
  content: "+"; font-family: 'Bebas Neue', sans-serif; font-size: 34px; color: #C4C4C1;
  position: absolute; top: 14px; left: 16px;
}
.gallery-tile span { margin-top: 20px; }

/* VIDEO */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.video-tile { aspect-ratio: 9/16; background: var(--mvp-charcoal); border: 1px solid #CFCFCC; position: relative; overflow: hidden; }
.video-tile iframe, .video-tile video { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 20px; color: var(--mvp-steel); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; gap: 14px;
}
.video-play {
  width: 0; height: 0; border-top: 10px solid transparent; border-bottom: 10px solid transparent;
  border-left: 16px solid var(--mvp-red); margin-left: 4px;
}

/* RESULTS / PR BAND */
.results { background: var(--mvp-charcoal); border-bottom: 1px solid #D6D6D3; padding: 70px 0; }
.results .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
.result-stat { text-align: left; }
.result-stat .num { font-family: 'Bebas Neue', sans-serif; font-size: 56px; color: var(--mvp-bone); }
.result-stat .num span { color: var(--mvp-red); }
.result-stat .label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mvp-steel); margin-top: 6px; }

/* TESTIMONIALS — landscape cards: a byline (avatar + name/detail) on the
   left, quote on the right, stacked full-width rows. The byline itself is
   always a row (avatar left, text right); only the card's own direction
   flips to column on mobile, so the byline sits above the quote there
   without needing a separate mobile override. */
.testi-grid { display: flex; flex-direction: column; gap: 24px; }
.testi-card {
  background: var(--mvp-charcoal); border: 1px solid #CFCFCC; padding: 36px 40px;
  display: flex; flex-direction: row; align-items: flex-start; gap: 36px;
}
.testi-meta { flex: 0 0 190px; display: flex; flex-direction: row; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; background: #CFCFCC; border: 1px solid #C4C4C1; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.testi-avatar svg { width: 22px; height: 22px; fill: var(--mvp-steel); }
.testi-id { display: flex; flex-direction: column; gap: 4px; }
.testi-card .name { font-size: 14px; font-weight: 700; color: var(--mvp-bone); }
.testi-card .detail { font-size: 12px; color: var(--mvp-red); font-weight: 600; }
.testi-card .kg { font-family: 'Bebas Neue', sans-serif; font-size: 16px; color: var(--mvp-red); margin-top: 2px; }
.testi-body { flex: 1 1 auto; min-width: 0; }
.testi-card .quote { font-size: 15px; line-height: 1.6; color: var(--mvp-bone); margin: 0; }

/* PROCESS */
.process-list { display: flex; flex-direction: column; }
.process-item { display: flex; gap: 30px; padding: 30px 0; border-top: 1px solid #D6D6D3; align-items: baseline; }
.process-item:last-child { border-bottom: 1px solid #D6D6D3; }
.process-num { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--mvp-red); width: 70px; flex-shrink: 0; }
.process-item h4.display { font-size: 24px; color: var(--mvp-bone); margin-bottom: 6px; }
.process-item p { font-size: 14px; color: var(--mvp-steel); max-width: 520px; }

/* CONTACT */
.contact-section { border-bottom: none; padding-bottom: 130px; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; }
.contact-copy h2.display { font-size: clamp(38px, 5vw, 64px); margin-bottom: 24px; }
.contact-copy p { color: var(--mvp-steel); font-size: 16px; max-width: 480px; margin-bottom: 34px; }
.contact-channels { display: flex; flex-direction: column; gap: 16px; }
.channel-btn {
  display: flex; align-items: center; justify-content: space-between;
  text-decoration: none; border: 1px solid #CCCCCC; padding: 22px 26px;
  transition: all 0.2s; max-width: 420px;
}
.channel-btn:hover { border-color: var(--mvp-red); }
.channel-btn .cname { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--mvp-bone); }
.channel-btn .chandle { font-size: 13px; color: var(--mvp-steel); margin-top: 4px; }
.channel-btn .arrow { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--mvp-red); }

.or-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 34px 0 26px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mvp-steel); max-width: 420px;
}
.or-divider::before, .or-divider::after { content: ""; flex: 1 1 auto; height: 1px; background: #CCCCCC; }

.contact-form { display: flex; flex-direction: column; gap: 18px; max-width: 420px; }
.form-row label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mvp-steel); margin-bottom: 8px; }
.form-row input, .form-row textarea {
  width: 100%; background: var(--mvp-charcoal); border: 1px solid #CCCCCC; color: var(--mvp-bone);
  padding: 14px 16px; font-family: 'Inter', sans-serif; font-size: 14px; resize: vertical;
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--mvp-red); }
.hidden-field { position: absolute; left: -9999px; top: -9999px; }
.form-status {
  display: none; margin-top: 20px; padding: 16px 18px; max-width: 420px;
  font-size: 13px; line-height: 1.5; border-left: 3px solid var(--mvp-red); background: var(--mvp-charcoal);
  color: var(--mvp-bone);
}
.form-status.visible { display: block; }
.form-status.error { border-left-color: var(--mvp-steel); }

.faq-block { border-left: 2px solid var(--mvp-red); padding-left: 26px; }
.faq-item { margin-bottom: 26px; }
.faq-item .q { font-size: 14px; font-weight: 700; color: var(--mvp-bone); margin-bottom: 6px; }
.faq-item .a { font-size: 13px; color: var(--mvp-steel); }

footer {
  padding: 40px 8vw; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
footer .foot-logo img { height: 84px; display: block; }
footer .foot-meta { font-size: 12px; color: var(--mvp-steel); letter-spacing: 0.04em; }
footer .foot-links { display: flex; gap: 20px; }
footer .foot-links a { font-size: 12px; color: var(--mvp-steel); text-decoration: none; }
footer .foot-links a:hover { color: var(--mvp-red); }

@media (max-width: 860px) {
  nav { flex-wrap: wrap; }
  .nav-toggle { display: flex; order: 2; }

  .nav-links {
    order: 3; flex-basis: 100%; flex-direction: column; gap: 0;
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease;
  }
  nav.nav-open .nav-links { max-height: 400px; opacity: 1; padding-top: 16px; }
  .nav-links li { width: 100%; border-top: 1px solid #DADAD7; }
  .nav-links a { display: block; padding: 16px 4px; }

  .nav-cta {
    order: 4; flex-basis: 100%; text-align: center; box-sizing: border-box;
    max-height: 0; overflow: hidden; opacity: 0; border-width: 0; padding: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease;
  }
  nav.nav-open .nav-cta {
    max-height: 80px; opacity: 1; border: 1px solid var(--mvp-bone);
    padding: 14px 20px; margin: 16px 0 20px; display: block;
  }

  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  /* Services is still a 3-card grid — leaves an empty trailing cell in a
     2-column layout, so span the 3rd card full width instead of leaving a
     blank block. Testimonials no longer needs this: it's a stacked list. */
  .services-grid > :nth-child(3) { grid-column: 1 / -1; }
  .video-grid { grid-template-columns: 1fr; }
  .testi-card { flex-direction: column; gap: 8px; padding: 13px 24px; }
  .testi-meta { flex-basis: auto; }
  section { padding: 70px 0; }
  .hero { padding-top: 120px; }
}
