/* ============================================================
   JOEL JIMENEZ COACHING — DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600&display=swap');

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

html { scroll-behavior: smooth; }

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

button, input, select, textarea {
  font-family: inherit;
  border-radius: 0;
}

/* ---- TOKENS ---- */
:root {
  --white: #ffffff;
  --black: #0A0F1E;
  --gold: #345830;
  --gray-light: #FFFFFF;
  --gray-text: #444444;
  --gray-muted: #999999;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ---- BASE ---- */
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--black);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav.scrolled {
  background: var(--black);
  border-bottom-color: transparent;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-name {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--black);
  letter-spacing: 2px;
  transition: color 0.2s ease;
}

.nav.scrolled .nav-logo-name { color: var(--white); }

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 2px;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 4px;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--black);
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
}

.nav.scrolled .hamburger span { background: var(--white); }

.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); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0;
  width: 100%;
  background: var(--black);
  z-index: 999;
  padding: 32px 40px;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 36px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-primary:hover { background: #2A4526; color: var(--white); border-color: #2A4526; }

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--black); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--black); color: #2A4526; border-color: var(--black); }

/* ============================================================
   LABELS & UTILITIES
   ============================================================ */
.label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.gold-line {
  display: block;
  width: 80px; height: 2px;
  background: var(--gold);
  margin: 24px 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.img-placeholder {
  background: #BFDBFE;
  border: 1px dashed var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  min-height: 400px;
}

img.img-placeholder {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: #BFDBFE;
  border: none;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-animate {
  opacity: 0;
  transform: translateY(20px);
}

.hero-animate.loaded {
  animation: heroFadeUp 0.3s ease forwards;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-strip {
  background: #BFDBFE;
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marqueeScroll 22s linear infinite;
}

.marquee-track span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 16px;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #BFDBFE;
  padding: 80px 40px 0;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
}

.footer-logo-name {
  font-family: var(--font-head);
  font-size: 64px;
  color: #0A0F1E;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: #aaaaaa;
  letter-spacing: 1px;
  transition: color 0.15s;
}

.footer-links a:hover { color: #2A4526; }
.footer-links a strong { color: #0A0F1E; font-weight: 600; }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--gold);
  padding: 20px 0 40px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--gray-muted);
  letter-spacing: 1px;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 180px 40px 100px;
  background: var(--white);
}

.page-hero h1 {
  font-size: clamp(64px, 8vw, 100px);
  line-height: 0.9;
}

.page-hero-dark {
  background: #BFDBFE;
}

.page-hero-dark h1 { color: #0A0F1E; }
.page-hero-dark .label { color: var(--gold); }

/* ============================================================
   HOME — HERO
   ============================================================ */
.home-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  padding-top: 72px;
  background: var(--white);
}

.home-hero-left {
  padding: 80px 60px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-hero h1 {
  font-size: clamp(72px, 8.5vw, 120px);
  line-height: 0.92;
  color: var(--black);
  margin-bottom: 0;
}

.home-hero-sub {
  font-size: 18px;
  color: var(--gray-text);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.home-hero-right { position: relative; }

.home-hero-right .img-placeholder {
  height: 100%;
  min-height: 600px;
}

.hero-img-badge {
  position: absolute;
  bottom: 0; left: 0;
  background: #BFDBFE;
  padding: 16px 24px;
}

.hero-img-badge-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #0A0F1E;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-img-badge-title {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================================
   HOME — PAIN POINTS
   ============================================================ */
.pain-points {
  padding: 120px 40px;
  background: var(--white);
}

.pain-points .container > h2 {
  font-size: clamp(48px, 5.5vw, 72px);
  max-width: 900px;
  margin-bottom: 60px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #ebebeb;
  margin-bottom: 60px;
}

.pain-item {
  padding: 32px 36px;
  border-left: 3px solid var(--gold);
  border-bottom: 1px solid #ebebeb;
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.6;
}

.pain-statement {
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 40px;
  max-width: 700px;
}

/* ============================================================
   HOME — ABOUT STRIP
   ============================================================ */
.about-strip {
  background: #BFDBFE;
  display: grid;
  grid-template-columns: 40% 60%;
}

.about-strip-img .img-placeholder {
  height: 100%;
  min-height: 560px;
}

.about-strip-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-strip-content h2 {
  font-size: clamp(48px, 5vw, 72px);
  color: #0A0F1E;
  margin-bottom: 24px;
}

.about-strip-content p {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}

/* ============================================================
   HOME — SERVICES
   ============================================================ */
.services-section {
  background: var(--white);
  padding: 120px 40px;
}

.services-section > .container > h2 {
  font-size: clamp(48px, 5.5vw, 72px);
  margin-bottom: 60px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #222;
}

.service-card {
  background: #BFDBFE;
  padding: 48px 40px;
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.service-card h3 {
  font-size: 36px;
  color: #0A0F1E;
  line-height: 1;
}

.service-card p {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.6;
  flex: 1;
}

/* ============================================================
   HOME — QUOTE
   ============================================================ */
.quote-section {
  background: var(--white);
  padding: 120px 40px;
  text-align: center;
}

.quote-mark {
  font-family: var(--font-head);
  font-size: 160px;
  color: var(--gold);
  line-height: 0.7;
  display: block;
  margin-bottom: 16px;
}

.quote-text {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 60px);
  color: var(--black);
  max-width: 900px;
  margin: 0 auto 24px;
  line-height: 1;
}

.quote-attr {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 2px;
  font-weight: 500;
}

/* ============================================================
   HOME — FINAL CTA
   ============================================================ */
.final-cta {
  background: #BFDBFE;
  padding: 120px 40px;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(52px, 7vw, 80px);
  color: #0A0F1E;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 18px;
  color: var(--gray-text);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.final-cta-email {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  color: var(--gray-muted);
  letter-spacing: 1px;
}

/* ============================================================
   ABOUT PAGE — MAIN
   ============================================================ */
.about-main {
  background: var(--white);
  padding: 80px 40px 120px;
}

.about-two-col {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.about-two-col .img-placeholder {
  min-height: 620px;
  position: sticky;
  top: 100px;
}

.about-content h2 {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 32px;
}

.about-content p {
  font-size: 16px;
  color: #333333;
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 580px;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  border: 1px solid var(--gold);
  padding: 10px 20px;
  margin-top: 16px;
}

/* ============================================================
   VALUES
   ============================================================ */
.values-section {
  background: #BFDBFE;
  padding: 120px 40px;
}

.values-section .label { margin-bottom: 16px; }

.values-section h2 {
  font-size: clamp(48px, 5vw, 72px);
  color: #0A0F1E;
  margin-bottom: 60px;
  max-width: 1400px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1400px;
  background: #333;
}

.value-card {
  background: var(--white);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-num {
  font-family: var(--font-head);
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
}

.value-card h3 { font-size: 22px; color: var(--black); }
.value-card p { font-size: 14px; color: var(--gray-text); line-height: 1.6; }

/* ============================================================
   WORK WITH ME
   ============================================================ */
.dreambuilder-section {
  background: var(--white);
  padding: 120px 40px;
}

.dreambuilder-section .container {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 80px;
  align-items: center;
}

.dreambuilder-section h2 {
  font-size: clamp(40px, 5vw, 60px);
  margin-bottom: 24px;
}

.dreambuilder-section p {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 540px;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.5;
}

.checklist li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.apply-note {
  display: block;
  font-size: 12px;
  color: var(--gray-muted);
  letter-spacing: 1px;
  margin-top: 12px;
}

.workshop-strip {
  background: #BFDBFE;
  padding: 120px 40px;
}

.workshop-strip .container {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 80px;
  align-items: center;
}

.workshop-strip h2 {
  font-size: clamp(40px, 5vw, 60px);
  color: #0A0F1E;
  margin-bottom: 24px;
}

.workshop-strip p {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 540px;
}

.vip-section {
  background: var(--white);
  padding: 120px 40px;
  text-align: center;
}

.vip-section h2 {
  font-size: clamp(48px, 6vw, 72px);
  margin-bottom: 24px;
}

.vip-section p {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ============================================================
   VISION WORKSHOP PAGE
   ============================================================ */
.workshop-hero {
  min-height: 100vh;
  background: #BFDBFE;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  flex-direction: column;
}

.workshop-hero h1 {
  font-size: clamp(64px, 10vw, 120px);
  color: #0A0F1E;
  margin-bottom: 20px;
}

.workshop-hero p {
  font-size: 20px;
  color: var(--gray-text);
  margin-bottom: 40px;
  max-width: 500px;
}

.workshop-hero-note {
  font-size: 12px;
  color: var(--gray-muted);
  letter-spacing: 1px;
  margin-top: 16px;
}

.outcomes-section {
  background: var(--white);
  padding: 120px 40px;
}

.outcomes-section h2 {
  font-size: clamp(48px, 5.5vw, 72px);
  margin-bottom: 60px;
}

.outcome-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #222;
}

.outcome-card {
  background: #BFDBFE;
  padding: 48px 40px;
  border-top: 3px solid var(--gold);
}

.outcome-num {
  font-family: var(--font-head);
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.outcome-card h3 { font-size: 24px; color: #0A0F1E; }

.who-its-for {
  background: #BFDBFE;
  padding: 120px 40px;
}

.who-its-for h2 {
  font-size: clamp(48px, 6vw, 72px);
  color: #0A0F1E;
  margin-bottom: 48px;
}

.who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.who-list li {
  font-size: 18px;
  color: #0A0F1E;
  line-height: 1.5;
  padding-left: 28px;
  position: relative;
}

.who-list li::before {
  content: '—';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.workshop-cta {
  background: var(--gold);
  padding: 120px 40px;
  text-align: center;
}

.workshop-cta h2 {
  font-size: clamp(48px, 6vw, 72px);
  color: var(--black);
  margin-bottom: 40px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  background: var(--white);
  padding: 60px 40px 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-card {
  border: 1px solid #e0e0e0;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-card-value {
  font-size: 16px;
  color: var(--black);
  font-weight: 500;
}

.contact-note {
  font-size: 13px;
  color: var(--gray-muted);
  letter-spacing: 1px;
  margin-top: 24px;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #e0e0e0;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--black); }

.form-group textarea { resize: vertical; min-height: 140px; }

/* ============================================================
   CLIENT LOGIN
   ============================================================ */
.client-hero {
  min-height: 60vh;
  background: #BFDBFE;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
}

.client-hero-inner { max-width: 1400px; margin: 0 auto; }

.client-hero h1 {
  font-size: clamp(52px, 7vw, 80px);
  color: #0A0F1E;
  margin-bottom: 16px;
}

.resources-section {
  background: var(--white);
  padding: 100px 40px;
}

.resource-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1000px;
  margin: 60px auto 0;
  background: #222;
}

.resource-card {
  background: #BFDBFE;
  padding: 48px 40px;
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resource-card h3 { font-size: 28px; color: #0A0F1E; }
.resource-card p { font-size: 15px; color: var(--gray-text); line-height: 1.6; flex: 1; }

.resource-note {
  font-size: 13px;
  color: var(--gray-muted);
  letter-spacing: 1px;
  max-width: 1000px;
  margin: 40px auto 0;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--white);
  padding: 100px 40px;
  text-align: center;
}

.cta-strip h2 {
  font-size: clamp(40px, 5vw, 60px);
  margin-bottom: 36px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 12px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .home-hero { grid-template-columns: 1fr; }
  .home-hero-right { display: none; }

  .about-strip { grid-template-columns: 1fr; }
  .about-strip-img { display: none; }

  .dreambuilder-section .container,
  .workshop-strip .container { grid-template-columns: 1fr; }
  .dreambuilder-section .img-placeholder,
  .workshop-strip .img-placeholder { min-height: 300px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-inner { padding: 0 24px; }

  .page-hero { padding: 140px 24px 80px; }
  .home-hero-left { padding: 60px 24px; }

  .pain-points,
  .services-section,
  .quote-section,
  .final-cta,
  .about-main,
  .values-section,
  .dreambuilder-section,
  .workshop-strip,
  .vip-section,
  .outcomes-section,
  .who-its-for,
  .workshop-cta,
  .contact-section,
  .resources-section,
  .cta-strip { padding-left: 24px; padding-right: 24px; }

  .footer { padding-left: 24px; padding-right: 24px; }

  .pain-grid { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .outcome-cards { grid-template-columns: 1fr; }
  .resource-cards { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-two-col { grid-template-columns: 1fr; }
  .about-two-col .img-placeholder { position: static; min-height: 300px; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-logo-name { font-size: 48px; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .about-strip-content { padding: 60px 24px; }
}
