/* ============================================
   Rachel Helms — Dark Bold Brand System
   Modeled after colinandsamir.com/creator-startup
   ============================================ */

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

:root {
  /* Brand Colors */
  --velvet: #49325B;
  --porcelain: #D5C8C8;
  --linen: #FFFCF9;
  --clay: #C7AA98;
  --plum: #58525C;

  /* Dark theme colors */
  --dark-1: #1d1d1f;
  --dark-2: #2a2a2c;
  --dark-3: #313133;
  --dark-card: var(--plum);
  --light-1: #ffffff;
  --light-2: #f5f5f5;
  --light-3: #e8e8e8;

  /* Functional */
  --color-accent: var(--clay);
  --color-bg: var(--light-1);
  --border-radius: 0.5rem;
  --border-radius-lg: 1rem;

  /* Typography */
  --font-heading: 'Noto Serif Ethiopic Condensed', 'Georgia', serif;
  --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--dark-1);
  background-color: var(--light-1);
  overflow-x: hidden;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* On touch devices, disable :hover lift effects that feel sticky */
@media (hover: none) {
  .btn:hover,
  .btn-pill:hover,
  .product-card:hover,
  .hero-card:hover {
    transform: none;
    box-shadow: none;
  }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.1;
}

h1 { font-size: clamp(2.75rem, 5.5vw, 4.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); letter-spacing: -0.01em; }
h4 { font-size: 1.25rem; font-family: var(--font-body); font-weight: 700; }

.label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clay);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
}

/* Section Modes */
.section--light {
  background: var(--light-1);
  color: var(--dark-1);
}

.section--light-alt {
  background: var(--light-2);
  color: var(--dark-1);
}

.section--dark {
  background: var(--dark-1);
  color: var(--light-1);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--light-1);
}

.section--dark .label {
  color: var(--clay);
}

.section--purple {
  background: var(--velvet);
  color: var(--linen);
}

.section--purple h1,
.section--purple h2,
.section--purple h3 {
  color: var(--linen);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: 2px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn--dark {
  background: var(--dark-1);
  color: var(--light-1);
  border-color: var(--dark-1);
}

.btn--dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

.btn--light {
  background: var(--light-1);
  color: var(--dark-1);
  border-color: var(--light-1);
}

.btn--light:hover {
  background: var(--light-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,255,255,0.15);
}

.btn--accent {
  background: var(--clay);
  color: var(--light-1);
  border-color: var(--clay);
}

.btn--accent:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(199,170,152,0.3);
}

.btn--outline-light {
  background: transparent;
  color: var(--light-1);
  border-color: rgba(255,255,255,0.3);
}

.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 0.9375rem;
}

/* Arrow pill button (like C&S "Learn More") */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--light-1);
  color: var(--dark-1);
  border-radius: var(--border-radius-lg);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
}

.btn-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-pill__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--light-1);
  transition: transform 0.2s;
}

.btn-pill:hover .btn-pill__arrow {
  transform: translateX(3px);
}

/* Large hero variant */
.btn-pill__arrow--lg {
  width: 44px;
  height: 44px;
}

/* Hero card (big pill with stacked content) */
.hero-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--light-1);
  color: var(--dark-1);
  padding: 2rem 2.5rem;
  border-radius: var(--border-radius-lg);
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transition: all 0.25s ease;
  max-width: 380px;
  margin-top: var(--space-md);
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}

.hero-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--dark-1);
  text-align: left;
}

.hero-card__sub {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(29,29,31,0.6);
  text-align: left;
}

.hero-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark-1);
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .hero-card {
    max-width: 100%;
    padding: 1.5rem 2rem;
  }
}

/* ============================================
   HEADER (minimal logo)
   ============================================ */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
}

.header--on-dark {
  /* logo will be gold on dark bg */
}

.header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ============================================
   MINI NAV (small cute purple pill)
   ============================================ */
.mini-nav {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: var(--velvet);
  padding: 4px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(73, 50, 91, 0.28);
  margin-left: auto;
}

.mini-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.4375rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 252, 249, 0.78);
  border-radius: 100px;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.mini-nav a:hover,
.mini-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: var(--linen);
  outline: none;
}

.mini-nav a.is-active {
  background: var(--clay);
  color: var(--light-1);
}

@media (max-width: 768px) {
  .mini-nav {
    padding: 3px;
    /* margin-left: auto is inherited from base rule — keeps nav right-aligned
       even when it wraps to its own row below the logo */
  }
  .mini-nav a {
    padding: 0.375rem 0.6875rem;
    font-size: 0.6875rem;
  }
}

@media (max-width: 480px) {
  .mini-nav a {
    padding: 0.3125rem 0.5625rem;
    font-size: 0.625rem;
    letter-spacing: 0.03em;
  }
}

.header__logo img {
  height: 80px;
  width: auto;
  max-width: 100%;
}

@media (max-width: 768px) {
  .header {
    padding: var(--space-sm) 0;
  }
  .header__logo img {
    height: 56px;
  }
}

@media (max-width: 480px) {
  .header__logo img {
    height: 48px;
  }
}

/* ============================================
   SIDE BUTTON (floating CTA)
   ============================================ */
.side-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clay);
  color: var(--light-1);
  padding: 0.75rem 1.25rem;
  border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: -4px 4px 20px rgba(0,0,0,0.15);
}

.side-btn:hover {
  padding-right: 1.75rem;
  box-shadow: -4px 4px 30px rgba(0,0,0,0.25);
}

.side-btn svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.side-btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .side-btn { padding: 0.875rem; }
  .side-btn__text { display: none; }
  .side-btn:hover { padding-right: 1.25rem; }
}

/* ============================================
   HERO (light bg, big type)
   ============================================ */
.hero {
  padding: calc(var(--space-3xl) + 40px) 0 calc(var(--space-2xl) + 90px);
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: var(--space-md);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero__sub {
  font-size: 1.25rem;
  color: rgba(29,29,31,0.6);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  line-height: 1.6;
}

/* Jump In (bottom-right of hero) */
.hero .container {
  position: relative;
}

.hero__jump-in {
  position: absolute;
  top: -90px;
  right: -60px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  pointer-events: none;
  z-index: 5;
  transform: translate(50%, -20%);
}

.hero__jump-in-text {
  font-family: 'Caveat', cursive;
  font-size: 1.75rem;
  color: var(--clay);
  letter-spacing: 0.04em;
  margin-right: 0.5rem;
  position: relative;
  top: 53px;
}

.hero__jump-in-arrow {
  display: block;
  line-height: 0;
  pointer-events: auto;
  transition: transform 0.3s ease;
}

.hero__jump-in-arrow:hover {
  transform: translate(-4px, 4px);
}

.hero__jump-in-arrow svg {
  display: block;
}

@media (max-width: 768px) {
  .hero {
    /* Bottom padding tuned so (sub→first card) gap = 3rem (2× the h1→sub gap of 1.5rem):
       sub.mb (1rem) + hero.pb (4.5rem) + products-section.pt (2.5rem) - container.mt (5rem) = 3rem */
    padding: calc(var(--space-2xl) + 20px) 0 4.5rem;
  }
  .hero .label {
    display: none;
  }
  .hero__sub {
    /* On mobile, restyle the sub to look like a .label eyebrow (replaces the hidden label) */
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--clay);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
  }
  .hero__jump-in {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: calc(var(--space-xl) + 40px) 0 4.5rem;
  }
}

/* ============================================
   PRODUCT CARDS (dark cards like C&S)
   ============================================ */
.products-section {
  overflow: visible;
  padding-top: 0;
  padding-bottom: var(--space-lg);
  position: relative;
}

.products-section > .container {
  position: relative;
  z-index: 10;
  margin-top: -120px;
}

.products {
  display: grid;
  grid-template-columns: 0.94fr 1.12fr 0.94fr;
  align-items: center;
  gap: var(--space-md);
  position: relative;
  z-index: 10;
  margin-bottom: -140px;
}

.section--after-products {
  padding-top: calc(140px + var(--space-2xl));
}

/* Jump In label (right-aligned, handwritten style) */
.jump-in {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
  justify-content: flex-end;
  padding-right: 2rem;
}

.jump-in__arrow {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.jump-in__text {
  font-family: 'Caveat', cursive;
  font-size: 1.75rem;
  color: var(--light-1);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  padding-bottom: 0.25rem;
}

.product-card-wrapper {
  position: relative;
  display: flex;
}

.product-card-wrapper > .product-card {
  flex: 1;
  width: 100%;
}

.product-card {
  background: var(--dark-card);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: var(--light-1);
  border: 1px solid var(--velvet);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.product-card--featured {
  border: 6px solid var(--velvet);
  box-shadow: 0 8px 24px rgba(73, 50, 91, 0.35);
}

.product-card--featured:hover {
  box-shadow: 0 16px 48px rgba(73, 50, 91, 0.5);
}

.product-card__graphic {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  background: var(--dark-card);
  position: relative;
  overflow: hidden;
}

.product-card__graphic-inner {
  text-align: center;
}

.product-card__graphic-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.05;
  color: var(--light-1);
}

.product-card__graphic-accent {
  color: var(--clay);
}

.product-card__body {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__desc {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-lg);
  flex: 1;
}

@media (max-width: 1024px) {
  .products {
    gap: var(--space-sm);
  }
  .product-card__body {
    padding: var(--space-sm) var(--space-md) var(--space-md);
  }
  .product-card__desc {
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
  }
}

@media (max-width: 768px) {
  /* Dark band is shorter than the card stack — top and bottom cards peek out symmetrically.
     Non-zero padding on the section breaks margin-collapse so the negative margin actually
     contracts the section's box instead of just shifting the next section up. */
  .products-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .products-section > .container {
    margin-top: -5rem;
  }
  .products {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -5rem;
    gap: var(--space-sm);
  }
  /* Horizontal row layout: thumbnail on the left, text on the right */
  .product-card {
    flex-direction: row;
    align-items: stretch;
  }
  .product-card__graphic {
    flex: 0 0 38%;
    aspect-ratio: 1 / 1;
    padding: 0;
  }
  .product-card__body {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    justify-content: center;
  }
  .product-card__desc {
    font-size: 0.9375rem;
    line-height: 1.45;
    margin-bottom: var(--space-sm);
    flex: 0 1 auto;
  }
  .product-card .btn-pill {
    align-self: flex-start;
  }
  .section--after-products {
    padding-top: calc(2.5rem + var(--space-2xl));
  }
}

/* ============================================
   ABOUT / WHY SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-grid__image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.about-grid__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-grid__placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--light-2) 0%, var(--porcelain) 100%);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--clay);
}

.about-grid__content h2 {
  margin-bottom: var(--space-md);
}

.about-grid__content p {
  color: rgba(29,29,31,0.6);
  font-size: 1.0625rem;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .about-grid {
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-grid__image img {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.testimonial-card {
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
}

/* Light mode testimonials */
.section--light .testimonial-card,
.section--light-alt .testimonial-card {
  background: var(--light-1);
  border: 1px solid var(--light-3);
}

/* Dark mode testimonials */
.section--dark .testimonial-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
}

.testimonial-card__stars {
  color: var(--clay);
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
  letter-spacing: 0.1em;
}

.testimonial-card__text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.section--dark .testimonial-card__text {
  color: rgba(255,255,255,0.8);
}

.testimonial-card__author {
  font-size: 0.875rem;
  font-weight: 700;
}

.testimonial-card__role {
  font-size: 0.8125rem;
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CTA BANNER (dark section with big text)
   ============================================ */
.cta-banner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner h2 {
  margin-bottom: var(--space-sm);
}

.cta-banner p {
  font-size: 1.125rem;
  opacity: 0.7;
  margin-bottom: var(--space-lg);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--light-3);
}

.section--dark .faq-item {
  border-bottom-color: rgba(255,255,255,0.1);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  color: inherit;
  text-align: left;
}

.faq-q__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--clay);
}

.faq-item.is-open .faq-q__icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a__inner {
  padding-bottom: var(--space-md);
  opacity: 0.7;
  line-height: 1.7;
  font-size: 1rem;
}

.faq-item.is-open .faq-a {
  max-height: 500px;
}

/* ============================================
   FOOTER (dark)
   ============================================ */
.footer {
  background: var(--plum);
  color: var(--light-1);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9375rem;
  margin-top: var(--space-sm);
  line-height: 1.7;
}

.footer__brand img {
  height: 72px;
  width: auto;
}

.footer__heading {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: var(--space-sm);
}

.footer__links a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.9375rem;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--light-1);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--light-1);
  transition: background 0.2s, transform 0.2s;
}

.footer__social a:hover {
  background: var(--clay);
  transform: scale(1.1);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

.footer__bottom a {
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}

.footer__bottom a:hover {
  color: var(--light-1);
}

@media (max-width: 1024px) {
  .footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-lg);
  }
  .footer__brand img {
    height: 56px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: var(--space-xl) 0 var(--space-md);
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .footer__brand {
    text-align: center;
  }
  .footer__social {
    justify-content: center;
  }
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

/* ============================================
   PLAYBOOK PAGE
   ============================================ */

/* Pain points (light cards on dark bg) */
.pain-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.pain-card {
  text-align: center;
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
}

.section--light .pain-card,
.section--light-alt .pain-card {
  background: var(--light-1);
  border: 1px solid var(--light-3);
}

.section--dark .pain-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
}

.pain-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--light-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  font-size: 1.5rem;
}

.pain-card h4 {
  margin-bottom: var(--space-xs);
}

.pain-card p {
  opacity: 0.6;
  font-size: 0.9375rem;
}

@media (max-width: 1024px) {
  .pain-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pain-cards { grid-template-columns: 1fr; }
}

/* Curriculum */
.curriculum-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--light-3);
  align-items: start;
}

.section--dark .curriculum-item {
  border-bottom-color: rgba(255,255,255,0.1);
}

.curriculum-item__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 500;
  color: var(--clay);
  line-height: 1;
}

.curriculum-item__body h3 {
  margin-bottom: var(--space-xs);
}

.curriculum-item__body p {
  opacity: 0.7;
  font-size: 0.9375rem;
}

.curriculum-item__body ul {
  margin-top: var(--space-sm);
}

.curriculum-item__body li {
  padding: 0.375rem 0 0.375rem 1.5rem;
  position: relative;
  opacity: 0.7;
  font-size: 0.9375rem;
}

.curriculum-item__body li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clay);
  font-weight: 700;
}

@media (max-width: 768px) {
  .curriculum-item { grid-template-columns: 1fr; }
  .curriculum-item__num { font-size: 2rem; }
}

/* Pricing box */
.pricing-box {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  background: var(--dark-2);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 640px;
  margin: 0 auto;
}

.pricing-box__price {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
  color: var(--light-1);
  margin: var(--space-sm) 0;
}

.pricing-box__detail {
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-sm);
}

.pricing-box__includes {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin: var(--space-md) 0 var(--space-lg);
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
}

.pricing-box__includes li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-box__includes li::before {
  content: '✓';
  color: var(--clay);
  font-weight: 700;
}

/* Qualifier (for / not for) */
.qualifier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.qualifier-col h3 {
  margin-bottom: var(--space-md);
}

.qualifier-col li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  font-size: 0.9375rem;
  opacity: 0.7;
}

.qualifier-col--yes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clay);
  font-weight: 700;
}

.qualifier-col--no li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.25);
  font-weight: 700;
}

@media (max-width: 768px) {
  .qualifier-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PLAYBOOK HERO (split layout)
   ============================================ */
.pb-hero {
  background-color: var(--dark-1);
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  padding: calc(var(--space-3xl) + 20px) 0 var(--space-2xl);
  overflow: hidden;
}

.pb-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* Left: media frame */
.pb-hero__media-frame {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 3px solid var(--clay);
  aspect-ratio: 4/3;
  background: var(--dark-2);
  position: relative;
}

.pb-hero__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--light-1);
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  cursor: pointer;
  transition: opacity 0.2s;
}

.pb-hero__placeholder svg {
  background: var(--clay);
  border-radius: 50%;
  padding: 12px;
  width: 48px;
  height: 48px;
}

.pb-hero__placeholder span {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
}

.pb-hero__placeholder:hover {
  opacity: 0.85;
}

/* Right: content */
.pb-hero__content {
  color: var(--light-1);
}

.pb-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 600;
  line-height: 1;
  margin-bottom: var(--space-md);
  color: var(--light-1);
}

.pb-hero__title-sub {
  display: block;
  font-size: 0.35em;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.25rem;
}

.pb-hero__title-accent {
  display: inline-block;
  background: var(--clay);
  color: var(--dark-1);
  padding: 0.05em 0.25em;
  margin-top: 0.1em;
}

.pb-hero__desc {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-lg);
  max-width: 460px;
}

.btn-pill--lg {
  padding: 0.875rem 2rem;
  font-size: 1.0625rem;
}

@media (max-width: 1024px) {
  .pb-hero__grid {
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .pb-hero {
    padding: calc(var(--space-2xl) + 20px) 0 var(--space-xl);
  }
  .pb-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-lg);
  }
  .pb-hero__content {
    order: -1;
  }
  .pb-hero__desc {
    margin-left: auto;
    margin-right: auto;
  }
  .pb-hero__title {
    font-size: 3rem;
  }
  .btn-pill--lg {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .pb-hero__title {
    font-size: 2.5rem;
  }
  .pb-hero__title-accent {
    padding: 0.05em 0.2em;
  }
  .btn-pill--lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-page-hero {
  padding-top: calc(var(--space-3xl) + 20px);
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-hero__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
}

.about-hero__lead {
  font-size: 1.1875rem;
  line-height: 1.6;
  color: rgba(29,29,31,0.7);
  margin-top: var(--space-md);
}

.about-story {
  max-width: 760px;
  margin: 0 auto;
}

.about-story h2 {
  margin-bottom: var(--space-md);
}

.about-story p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(29,29,31,0.75);
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.about-pillar {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--border-radius-lg);
  background: var(--light-1);
  border: 1px solid var(--light-3);
}

.about-pillar--yes {
  border-left: 4px solid var(--clay);
}

.about-pillar--no {
  border-left: 4px solid var(--plum);
  opacity: 0.85;
}

.about-pillar p {
  margin-bottom: 0;
  font-size: 1rem;
}

.about-story__closer {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--velvet);
  text-align: center;
  margin-top: var(--space-lg);
  font-style: italic;
}

@media (max-width: 1024px) {
  .about-hero__grid {
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .about-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-md);
  }
  .about-hero__image {
    max-width: 360px;
    margin: 0 auto;
  }
  .about-pillars {
    grid-template-columns: 1fr;
  }
  .about-story__closer {
    font-size: 1.25rem;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
