/* ─────────────────────────────────────────────────────────
   SPALDING FITNESS — styles.css
   ───────────────────────────────────────────────────────── */

/* ── Variables ──────────────────────────────────────────── */
:root {
  --bg:          #0d0d0d;
  --bg-mid:      #141414;
  --bg-light:    #1a1a1a;
  --gold:        #D4AF37;
  --gold-light:  #E4C55A;
  --white:       #ffffff;
  --off-white:   #f4f4f4;
  --gray:        #aaaaaa;
  --text-dark:   #1a1a1a;

  --font-head:   'Oswald', sans-serif;
  --font-body:   'Open Sans', sans-serif;

  --radius:      4px;
  --transition:  0.25s ease;
  --max-width:   1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.gold { color: var(--gold); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--white);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-outline-gold {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ─────────────────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: transparent;
  transition: background var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.97);
  padding: 0.65rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.nav-inner {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

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

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* subtle gradient overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,13,13,1) 30%,
    rgba(13,13,13,0.6) 60%,
    rgba(13,13,13,0.1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 0;
  flex: 1;
}

.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 460px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 55%;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(15%) brightness(0.85);
}

/* ─────────────────────────────────────────────────────────
   STATS BAR
   ───────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-light);
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.8rem 3.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}

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

.stat i {
  font-size: 1.8rem;
  color: var(--gold);
}

.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}

.stat span {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────
   COACHING PROCESS
   ───────────────────────────────────────────────────────── */
.process {
  background: var(--white);
  padding: 5rem 0;
}

.process .section-title { color: var(--text-dark); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.process-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.process-icon {
  width: 72px;
  height: 72px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.process-icon i {
  font-size: 1.5rem;
  color: var(--gold);
}

.process-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.process-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────
   CTA BAND
   ───────────────────────────────────────────────────────── */
.cta-band {
  background: var(--bg-mid);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band p {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
}

/* ─────────────────────────────────────────────────────────
   SERVICES
   ───────────────────────────────────────────────────────── */
.services {
  background: var(--bg);
  padding: 5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-light);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 2rem 1.8rem;
  transition: border-color var(--transition), transform var(--transition);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.service-icon i {
  font-size: 1.1rem;
  color: var(--gold);
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  color: var(--white);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────────────────────── */
.testimonials {
  background: var(--white);
  padding: 5rem 0;
}

.testimonials .section-title { color: var(--text-dark); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-light);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.photo-block {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.photo-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(20%);
}

.photo-block .label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0.4rem;
  background: rgba(0,0,0,0.6);
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
}

.photo-placeholder {
  position: absolute;
  inset: 0;
  background: #111;
  border: 1px dashed rgba(201, 160, 32, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.photo-placeholder i {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.45;
}

.photo-placeholder span {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  opacity: 0.7;
}

.testimonial-body {
  padding: 1.8rem;
  color: var(--white);
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}

blockquote {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 1rem;
}

.reviewer-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.1rem;
}

.reviewer-title {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─────────────────────────────────────────────────────────
   APPLY SECTION
   ───────────────────────────────────────────────────────── */
.apply-section {
  background: var(--bg-mid);
  padding: 6rem 0;
  text-align: center;
  border-top: 3px solid var(--gold);
}

.apply-section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.apply-section p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
}

/* ─────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────── */
footer {
  background: #080808;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
}

footer p {
  font-size: 0.8rem;
  color: #555;
}

/* ─────────────────────────────────────────────────────────
   IS THIS YOU — white section
   ───────────────────────────────────────────────────────── */
.is-this-you {
  background: var(--white);
  padding: 5rem 0;
}

.is-this-you .section-title { color: var(--text-dark); }

.is-this-you .section-intro {
  text-align: center;
  color: #555;
  font-size: 1.05rem;
  max-width: 600px;
  margin: -1.5rem auto 3rem;
  line-height: 1.7;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2.5rem;
  max-width: 860px;
  margin: 0 auto 3rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.check-item i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.check-item p {
  font-size: 0.93rem;
  color: #333;
  line-height: 1.65;
  margin: 0;
}

.section-cta { text-align: center; }

/* ─────────────────────────────────────────────────────────
   THE PROBLEM — dark section
   ───────────────────────────────────────────────────────── */
.the-problem {
  background: var(--bg);
  padding: 5rem 0;
  text-align: center;
}

.the-problem .section-title { color: var(--white); }

.the-problem .lead-text {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 680px;
  margin: -1.5rem auto 3.5rem;
  line-height: 1.85;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.problem-card {
  background: var(--bg-light);
  border: 1px solid rgba(255,255,255,0.05);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 1.8rem 1.5rem;
}

.problem-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.problem-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────
   WHAT'S INCLUDED heading (services section)
   ───────────────────────────────────────────────────────── */
.services .section-title { color: var(--white); }

/* ─────────────────────────────────────────────────────────
   GUARANTEE — gold section
   ───────────────────────────────────────────────────────── */
.guarantee {
  background: var(--gold);
  padding: 5rem 0;
  text-align: center;
}

.guarantee-icon {
  font-size: 3.5rem;
  color: var(--bg);
  opacity: 0.75;
  margin-bottom: 1.5rem;
}

.guarantee .section-title { color: var(--bg); }

.guarantee .guarantee-body {
  font-size: 1.05rem;
  color: rgba(10,10,10,0.75);
  max-width: 640px;
  margin: -1rem auto 2.5rem;
  line-height: 1.85;
}

.btn-dark {
  background: var(--bg);
  color: var(--gold);
  border: 2px solid var(--bg);
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.btn-dark:hover {
  background: #222;
  border-color: #222;
}

/* ─────────────────────────────────────────────────────────
   ABOUT NICK — dark section
   ───────────────────────────────────────────────────────── */
.about-nick {
  background: var(--bg-mid);
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 4rem;
  align-items: center;
}

.photo-placeholder-rect {
  aspect-ratio: 3/4;
  background: var(--bg-light);
  border: 1px dashed rgba(212, 175, 55, 0.25);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.photo-placeholder-rect i {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.4;
}

.photo-placeholder-rect span {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  opacity: 0.6;
}

.about-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1;
}

.about-content h2 span { color: var(--gold); }

.about-content .about-role {
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.about-content p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 900px) {
  .process-grid,
  .services-grid,
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .stats-bar {
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 33%;
    justify-content: center;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 1.4rem 1rem;
  }

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

/* Mobile */
@media (max-width: 680px) {
  /* Nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-light);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: right 0.35s ease;
    z-index: 999;
    border-left: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links.open { right: 0; }

  .nav-links a { font-size: 1rem; color: var(--white); }

  .nav-cta { display: none; }

  .hamburger { display: flex; }

  /* Hero */
  .hero {
    padding-top: 90px;
    min-height: 100vh;
  }

  .hero::before {
    background: linear-gradient(
      to bottom,
      rgba(13,13,13,0.92) 0%,
      rgba(13,13,13,0.7) 55%,
      rgba(13,13,13,0.45) 100%
    );
  }

  .hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .hero-content {
    padding: 2.5rem 0 2rem;
  }

  .hero-heading { font-size: clamp(2.6rem, 12vw, 4.5rem); }

  /* Process, Services, Problem */
  .process-grid,
  .services-grid,
  .problem-grid {
    grid-template-columns: 1fr;
  }

  /* Stats */
  .stat { flex: 1 1 100%; }

  /* CTA band */
  .cta-band .container { flex-direction: column; text-align: center; }

  /* About Nick */
  .about-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────
   PAGE HERO (results.html + apply.html)
   ───────────────────────────────────────────────────────── */
.page-hero {
  background: var(--bg);
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ─────────────────────────────────────────────────────────
   RESULTS PAGE
   ───────────────────────────────────────────────────────── */
.results-section {
  background: var(--white);
  padding: 5rem 0;
}

.results-section .section-title { color: var(--text-dark); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.result-stat-bar {
  background: var(--bg-light);
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.results-cta {
  background: var(--bg);
  padding: 5rem 0;
  text-align: center;
  border-top: 3px solid var(--gold);
}

.results-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.results-cta p {
  color: var(--gray);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

/* ─────────────────────────────────────────────────────────
   APPLICATION FORM PAGE
   ───────────────────────────────────────────────────────── */
.form-section {
  background: var(--bg-mid);
  padding: 5rem 0;
}

.typeform-section {
  padding: 0;
}

.typeform-section iframe {
  display: block;
  width: 100%;
  height: 800px;
  border: none;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.55rem;
}

.form-group .field-hint {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin-left: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-light);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(170,170,170,0.45);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23aaa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: #1a1a1a;
  color: var(--white);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  padding: 0.75rem 1rem;
  background: var(--bg-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.radio-item:has(input:checked) {
  border-color: var(--gold);
  background: rgba(212,175,55,0.06);
}

.radio-item input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.radio-item span {
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.4;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 2.5rem 0;
}

.form-submit {
  margin-top: 2.5rem;
  text-align: center;
}

.form-submit .btn {
  padding: 0.9rem 3rem;
  font-size: 1rem;
}

.form-note {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 1rem;
  opacity: 0.7;
}

/* Success state */
.success-message {
  display: none;
  background: var(--bg-light);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 4rem 2.5rem;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.success-message.visible { display: block; }

.success-icon {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.success-message h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.success-message p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.success-message .insta-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.success-message .insta-link:hover {
  text-decoration: underline;
}

/* Responsive for form + results */
@media (max-width: 680px) {
  .results-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 8rem 0 3.5rem; }
}

/* ─────────────────────────────────────────────────────────
   ABOUT NICK — real photo
   ───────────────────────────────────────────────────────── */
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  display: block;
}

/* ─────────────────────────────────────────────────────────
   MEET THE TEAM — white section
   ───────────────────────────────────────────────────────── */
.team-section {
  background: var(--white);
  padding: 5rem 0;
}

.team-section .section-title { color: var(--text-dark); }

.team-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.team-photo-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}

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

.team-photo-wrap.team-photo-placeholder {
  background: #e8e8e8;
  border: 3px dashed rgba(212,175,55,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo-wrap.team-photo-placeholder i {
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.45;
}

.team-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.team-role {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.75;
}

/* ─────────────────────────────────────────────────────────
   SEE THE RESULTS — video + image section (index.html)
   ───────────────────────────────────────────────────────── */
.results-preview-section {
  background: var(--bg);
  padding: 5rem 0;
}

.results-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.results-preview-video {
  display: flex;
}

.results-preview-video video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 4px;
  object-fit: cover;
}

.results-preview-image img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 4px;
  object-fit: cover;
}

/* ─────────────────────────────────────────────────────────
   RESULTS PAGE — alternating media sections
   ───────────────────────────────────────────────────────── */
.results-media-dark {
  background: var(--bg);
  padding: 5rem 0;
}

.results-media-light {
  background: var(--white);
  padding: 5rem 0;
}

.results-media-dark video {
  width: 100%;
  max-width: 800px;
  max-height: 70vh;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
  object-fit: contain;
}

/* Results page — paired video + images layout */
.results-paired-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.results-paired-solo {
  max-width: 800px;
  margin: 0 auto;
}

.results-paired-video video {
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 70vh;
  display: block;
  border-radius: 4px;
  object-fit: contain;
  background: #000;
}

.results-paired-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.results-paired-images img {
  width: 100%;
  display: block;
  border-radius: 4px;
  object-fit: cover;
}

/* Media section labels */
.media-label {
  text-align: center;
  margin-bottom: 2rem;
}

.media-label-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.4);
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.media-label-heading {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

.media-label.media-label-dark .media-label-heading {
  color: var(--text-dark);
}

.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.transform-grid img {
  width: 100%;
  display: block;
  border-radius: 4px;
  object-fit: cover;
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE — new sections
   ───────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .team-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .team-cards { grid-template-columns: 1fr; }
  .results-preview-grid { grid-template-columns: 1fr; }
  .transform-grid { grid-template-columns: 1fr; }
  .results-paired-images { grid-template-columns: 1fr; }
}
