/* ============================================================
   DRIP FITNESS — STYLESHEET
   Colors: Burgundy #5F1F2B · Blush #EAC8E0 · Ember #D8442D
           Terra #BE7354 · Petal #EFDAD9
   Font: Outfit (Black 900, Bold 700, Regular 400)
   ============================================================ */

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

:root {
  --burgundy: #5F1F2B;
  --blush: #EAC8E0;
  --ember: #D8442D;
  --terra: #BE7354;
  --petal: #EFDAD9;
  --white: #ffffff;
  --dark: #1a0a0d;
  --mid: #6b3040;

  --font: 'Outfit', sans-serif;
  --radius: 16px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-weight: 900; line-height: 1.1; }
h1 { font-size: clamp(3rem, 8vw, 7rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.02em; margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
p  { line-height: 1.7; }

/* ── LAYOUT ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 6rem 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn:active { transform: translateY(0); }

.btn-sm  { padding: 0.55rem 1.25rem; font-size: 0.9rem; }
.btn-lg  { padding: 1rem 2.25rem; font-size: 1.05rem; }

.btn-ember { background: var(--ember); color: var(--white); }
.btn-ember:hover { background: #c03825; }

.btn-white { background: var(--white); color: var(--burgundy); }
.btn-white:hover { background: var(--petal); }

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(95, 31, 43, 0.1);
}

.nav-logo img {
  height: 68px;
  display: block;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--burgundy);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color var(--transition);
  line-height: 1;
}
.nav-links a:hover { color: var(--ember); }
.nav-links .btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 65px; left: 0; right: 0;
  background: var(--white);
  padding: 1.5rem 2rem 2rem;
  flex-direction: column;
  gap: 1.25rem;
  border-bottom: 1px solid var(--petal);
  z-index: 99;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  text-decoration: none;
  color: var(--burgundy);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  background: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(216, 68, 45, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(190, 115, 84, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-logo {
  height: 180px;
  width: auto;
  margin-bottom: 0.5rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3.5rem, 10vw, 8rem);
}

.hero-sub {
  color: var(--blush);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  max-width: 460px;
}

/* ── INTRO ── */
.intro {
  background: var(--petal);
}

.intro h2 {
  color: var(--burgundy);
  max-width: 700px;
  margin-bottom: 2rem;
}

.intro-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 640px;
  font-size: 1.1rem;
  color: var(--dark);
}

/* ── CLASSES ── */
.classes {
  background: var(--white);
}

.classes h2 { color: var(--burgundy); }

.class-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.class-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.class-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(95, 31, 43, 0.12);
}

.class-card-inner {
  padding: 2.25rem;
  height: 100%;
}

.class-strength { background: var(--burgundy); }
.class-strength .class-card-inner h3,
.class-strength .class-card-inner p,
.class-strength .class-heat { color: var(--petal); }

.class-sculpt { background: var(--blush); }
.class-sculpt .class-card-inner h3 { color: var(--burgundy); }
.class-sculpt .class-card-inner p,
.class-sculpt .class-heat { color: var(--mid); }

.class-step { background: var(--petal); }
.class-step .class-card-inner h3 { color: var(--burgundy); }
.class-step .class-card-inner p,
.class-step .class-heat { color: var(--mid); }

.class-define { background: var(--terra); }
.class-define .class-card-inner h3,
.class-define .class-card-inner p,
.class-define .class-heat { color: var(--white); }

.class-heat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.heat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.heat-full  { background: var(--ember); }
.heat-light { background: var(--terra); }
.heat-none  { background: rgba(255,255,255,0.4); border: 1px solid currentColor; }

/* ── HOW WE TRAIN ── */
.how-we-train {
  background: var(--burgundy);
  color: var(--white);
}

.how-we-train h2 { color: var(--white); }

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

.pillar {
  padding: 1.75rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}

.pillar h4 {
  color: var(--blush);
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.pillar p {
  color: rgba(255,255,255,0.8);
  font-size: 0.97rem;
}

/* ── HEAT SECTION ── */
.heat-section {
  background: var(--petal);
}

.heat-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.heat-text h2 { color: var(--burgundy); }
.heat-text p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: var(--dark);
}
.heat-text p:last-child { margin-bottom: 0; }

.heat-benefits {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
}

.heat-benefits h4 {
  color: var(--burgundy);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.heat-benefits ul {
  list-style: none;
  margin-bottom: 1.75rem;
}
.heat-benefits ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--petal);
  font-size: 0.97rem;
  color: var(--dark);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.heat-benefits ul li::before {
  content: '—';
  color: var(--terra);
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.heat-breakdown { margin-top: 0.5rem; }

.heat-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.93rem;
  color: var(--dark);
  border-bottom: 1px solid var(--petal);
}
.heat-row:last-child { border-bottom: none; }
.heat-row .heat-dot { flex-shrink: 0; }

/* ── PRICING ── */
.pricing {
  background: var(--white);
}
.pricing h2 { color: var(--burgundy); }

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2.5rem;
  /* Prevent grid children from overflowing their tracks */
  grid-template-rows: auto;
}

.pricing-layout > * { min-width: 0; }

.pricing-table {
  background: var(--petal);
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  min-width: 0;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid rgba(95, 31, 43, 0.1);
}
.price-row:last-of-type { border-bottom: none; }

.price-label { font-weight: 700; font-size: 1rem; color: var(--dark); }
.price-amount { font-weight: 900; font-size: 1.3rem; color: var(--burgundy); }
.price-period { font-size: 0.75rem; font-weight: 400; }

.price-row-founding {
  background: var(--burgundy);
  padding: 1.5rem 1.75rem;
}
.price-row-founding .price-label { color: var(--white); }
.price-row-founding .price-amount { color: var(--blush); font-size: 1.5rem; }

.founding-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.founding-badge::before {
  content: '★';
  color: var(--blush);
  font-size: 0.85rem;
}

.pricing-note {
  padding: 1rem 1.75rem;
  font-size: 0.85rem;
  color: var(--mid);
  background: rgba(95, 31, 43, 0.04);
  border-top: 1px solid rgba(95, 31, 43, 0.08);
}

.pricing-cta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.pricing-cta-headline {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 900;
  color: var(--burgundy);
  line-height: 1.2;
}

/* ── FOUNDING MEMBERS ── */
.founding {
  background: var(--burgundy);
}

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

.founding-text h2 { color: var(--white); margin-bottom: 1rem; }
.founding-text p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 0.75rem; }
.founding-fine { font-size: 0.9rem !important; color: var(--blush) !important; opacity: 0.85; }

.founding-form {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2.25rem;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.email-form label {
  color: var(--blush);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
}

.email-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.email-form input::placeholder { color: rgba(255,255,255,0.4); }
.email-form input:focus {
  border-color: var(--blush);
  background: rgba(255,255,255,0.15);
}

.email-form button { margin-top: 1rem; }

.form-success {
  display: none;
  color: var(--blush);
  font-weight: 700;
  text-align: center;
  padding: 1rem 0 0;
}

.founding-spots {
  margin-top: 1rem;
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── FAQ ── */
.faq {
  background: var(--petal);
}

.faq h2 { color: var(--burgundy); margin-bottom: 2.5rem; }

.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(95, 31, 43, 0.15);
}
.faq-item:first-child { border-top: 1px solid rgba(95, 31, 43, 0.15); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--burgundy);
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--ember); }

.faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--terra);
}
.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding-bottom: 1.4rem;
}
.faq-answer p { color: var(--dark); font-size: 1rem; }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  padding: 3.5rem 0;
}

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

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-center { text-align: center; }
.footer-tagline {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
}
.footer-location {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.footer-ig {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color var(--transition);
}
.footer-ig:hover { color: var(--blush); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .class-grid   { grid-template-columns: 1fr; }
  .pillars      { grid-template-columns: 1fr; }
  .heat-layout  { grid-template-columns: 1fr; gap: 2rem; }
  .pricing-layout { grid-template-columns: 1fr; gap: 2rem; }
  .founding-layout { grid-template-columns: 1fr; gap: 2.5rem; }

  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero-logo { height: 110px; }
}

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

  .footer-layout {
    flex-direction: column;
    text-align: center;
  }
  .footer-ig { justify-content: center; }

  .class-card-inner { padding: 1.75rem; }
  .founding-form { padding: 1.75rem; }

  .price-row { padding: 1rem 1.25rem; }
  .price-row-founding { padding: 1.25rem 1.25rem; }
  .pricing-note { padding: 0.75rem 1.25rem; }
  .price-amount { font-size: 1.15rem; }
  .price-row-founding .price-amount { font-size: 1.3rem; }
}
