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

:root {
  --cream: #ecebe4;
  --cream-card: #f6f4ed;
  --white: #ffffff;
  --dark-green: #2c3527;
  --mid-green: #3d4f35;
  --sage: #6e7d55;
  --sage-light: #8b9b6b;
  --text: #1a1a1a;
  --text-mid: #444;
  --text-light: #777;
  --border: rgba(0,0,0,0.08);
  --shadow-card: inset 3px 3px 47px 5px rgba(255,255,255,0.65);
  --radius: 18px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.15;
  font-weight: 500;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }

em { font-style: italic; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
}
.eyebrow-light { color: rgba(255,255,255,0.6); }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

/* ===== SECTION BACKGROUNDS ===== */
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-dark { background: var(--dark-green); color: white; }

section { padding: 100px 0; }

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 60px;
}
.section-sub {
  color: var(--text-mid);
  max-width: 560px;
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-arrow { font-size: 1em; }

.btn-dark {
  background: var(--dark-green);
  color: white;
  box-shadow: 0 4px 20px rgba(44,53,39,0.25);
}
.btn-dark:hover { background: var(--mid-green); box-shadow: 0 8px 30px rgba(44,53,39,0.35); }

.btn-light {
  background: rgba(110,125,85,0.12);
  color: var(--dark-green);
  border: 1.5px solid rgba(110,125,85,0.3);
}
.btn-light:hover { background: rgba(110,125,85,0.2); }

.btn-light-solid {
  background: var(--sage);
  color: white;
  box-shadow: 0 4px 20px rgba(110,125,85,0.3);
}
.btn-light-solid:hover { background: var(--sage-light); }

.btn-white {
  background: white;
  color: var(--dark-green);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 50px;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.nav.scrolled {
  background: rgba(246,244,237,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  padding: 0 50px;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dark-green);
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  opacity: 0.75;
  transition: opacity var(--transition);
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-email {
  font-size: 0.8rem;
  color: var(--text-mid);
  opacity: 0.7;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-green);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  background: rgba(246,244,237,0.98);
  backdrop-filter: blur(12px);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1rem;
  padding: 12px 0;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  display: block;
}
.nav-mobile a:last-child {
  border-bottom: none;
  margin-top: 8px;
  padding: 14px 0;
  text-align: center;
  color: white !important;
  opacity: 1;
}

/* ===== HERO ===== */
.hero {
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 50px 80px;
}
.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
}
.hero-headline {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  color: var(--dark-green);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.hero-avatars {
  display: flex;
}
.hero-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--cream);
  object-fit: cover;
  margin-left: -10px;
}
.hero-avatars img:first-child { margin-left: 0; }
.hero-social-proof span {
  font-size: 0.85rem;
  color: var(--text-mid);
}
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  width: 100%;
  max-width: 460px;
  height: 580px;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(44,53,39,0.15);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ===== SERVICES CAROUSEL ===== */
.services-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}
.services-carousel-track-outer {
  overflow: hidden;
  flex: 1;
}
.services-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-green);
  color: white;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background var(--transition), opacity var(--transition);
  opacity: 0.85;
}
.carousel-btn:hover { background: var(--mid-green); opacity: 1; }
.carousel-btn:disabled { opacity: 0.25; cursor: default; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage-light);
  opacity: 0.35;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  border: none;
}
.carousel-dot.active {
  opacity: 1;
  transform: scale(1.3);
  background: var(--dark-green);
}
.service-card {
  background: var(--cream-card);
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  padding: 40px 36px;
  flex: 0 0 calc((100% - 48px) / 3);
  transition: transform var(--transition), box-shadow var(--transition);
  animation-delay: var(--delay, 0ms);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 20px 40px rgba(0,0,0,0.08);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}
.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}
.service-card p { color: var(--text-mid); font-size: 0.95rem; }

/* ===== WHY WORK WITH WENDY ===== */
.why-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
}
.why-carousel-track-outer {
  overflow: hidden;
  flex: 1;
}
.why-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  flex: 0 0 calc((100% - 48px) / 3);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(44,53,39,0.08);
}
.why-icon {
  width: 52px;
  height: 52px;
  background: var(--cream-card);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-green);
  flex-shrink: 0;
}
.why-card h3 {
  font-size: 1.15rem;
  color: var(--dark-green);
  font-weight: 500;
}
.why-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.why-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.why-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 500;
}
.why-stat svg { color: var(--sage); flex-shrink: 0; }
.why-stat-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}
@media (max-width: 768px) {
  .why-card { flex: 0 0 calc((100% - 24px) / 2); }
  .why-stat-divider { display: none; }
  .why-stat { padding: 8px 16px; }
}
@media (max-width: 480px) {
  .why-card { flex: 0 0 100%; }
}

/* ===== OBM vs VA ===== */
.obm-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.obm-left {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 20px;
}
.obm-left h2 { margin-bottom: 0; }
.obm-summary { color: var(--text-mid); }
.obm-right { flex: 1.5; min-width: 300px; }
.obm-table-wrap {
  background: var(--cream-card);
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  overflow: hidden;
}
.obm-table {
  width: 100%;
  border-collapse: collapse;
}
.obm-table th {
  background: var(--dark-green);
  color: white;
  padding: 16px 20px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.th-va, .th-obm {
  vertical-align: middle;
}
.th-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.th-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.obm-badge {
  display: inline-block;
  background: rgba(110,125,85,0.22);
  color: var(--sage);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: none;
  width: fit-content;
}
.obm-table td {
  padding: 16px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: var(--text-mid);
  vertical-align: middle;
}
.td-aspect {
  font-weight: 600;
  color: var(--text);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.aspect-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}
.aspect-icon {
  color: var(--sage);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.td-va { color: var(--text-light); }
.td-obm {
  background: rgba(44,53,39,0.04);
  border-left: 2px solid var(--sage);
}
.td-obm strong {
  color: var(--dark-green);
  font-weight: 700;
  font-size: 0.95rem;
}
.obm-table tr:last-child td { border-bottom: none; }
.obm-table tr:hover .td-obm { background: rgba(44,53,39,0.08); }
.obm-table tr:hover .td-aspect,
.obm-table tr:hover .td-va { background: rgba(236,235,228,0.5); }

/* ===== 90-DAY JOURNEY ===== */
.journey-inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.journey-sticky {
  flex: 1;
  min-width: 280px;
  position: sticky;
  top: 100px;
}
.journey-sticky-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.journey-sticky-inner p:not(.eyebrow) { color: var(--text-mid); }
.journey-phases {
  flex: 1.4;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.journey-phase {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.phase-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(44,53,39,0.15);
  line-height: 1;
  min-width: 60px;
  margin-top: -8px;
}
.phase-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phase-content h3 { font-size: 1.3rem; }
.phase-content p { color: var(--text-mid); font-size: 0.95rem; }
.phase-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.phase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.phase-img:hover img { transform: scale(1.04); }

/* ===== STATS ===== */
.stats-section { padding: 80px 0; }
.stats-card {
  background: var(--cream-card);
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 20px 24px;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--dark-green);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { font-size: 2rem; }
.stat-label {
  font-size: 0.82rem;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.stat-divider {
  width: 2px;
  height: 60px;
  background: white;
  flex-shrink: 0;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--cream-card);
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 20px 40px rgba(0,0,0,0.08);
}
.pricing-card--featured {
  background: var(--dark-green);
  color: white;
  border-color: rgba(255,255,255,0.15);
}
.pricing-card--featured .pricing-tag { color: rgba(255,255,255,0.6); }
.pricing-card--featured .pricing-desc { color: rgba(255,255,255,0.75); }
.pricing-card--featured .pricing-features li { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.1); }
.pricing-card--featured .pricing-features li::before { color: rgba(255,255,255,0.5); }
.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--sage-light);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.pricing-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
}
.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
}
.pricing-price span { font-size: 1rem; font-family: 'Inter', sans-serif; opacity: 0.6; }
.pricing-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.pricing-features li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  gap: 8px;
  align-items: center;
}
.pricing-features li::before {
  content: "✓";
  color: var(--sage);
  font-weight: 700;
  font-size: 0.8rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { overflow: hidden; }
.testimonials-section .container { margin-bottom: 48px; }
.marquee-wrapper {
  overflow: hidden;
  padding: 20px 0 40px;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.testimonial-card {
  background: var(--cream-card);
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  padding: 36px 32px;
  width: 380px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-stars {
  color: #c9a84c;
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
}
.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===== FAQ + QUOTE ===== */
.faq-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.quote-card {
  flex: 1;
  min-width: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 0.65;
  max-width: 420px;
}
.quote-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: translateY(-8%);
}
.quote-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,35,15,0.0) 0%, rgba(20,35,15,0.0) 55%, rgba(20,35,15,0.88) 74%, rgba(20,35,15,0.95) 100%);
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 36px;
  color: white;
  gap: 24px;
}
.quote-mark {
  display: none;
}
.quote-card-overlay blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.55;
  font-weight: 400;
}
.quote-attribution {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.quote-attribution img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.4);
}
.quote-attribution strong { display: block; font-size: 0.9rem; font-weight: 600; }
.quote-attribution span { font-size: 0.78rem; opacity: 0.7; }

.faq-list {
  flex: 1.3;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--mid-green); }
.faq-q span:first-child { flex: 1; }
.faq-icon {
  flex-shrink: 0;
  color: var(--sage);
  transition: transform var(--transition);
}
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}
.faq-item.active .faq-a { max-height: 300px; }
.faq-a p {
  padding-bottom: 22px;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
}
.faq-cta {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* ===== CTA ===== */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,35,15,0.88) 0%, rgba(44,53,39,0.82) 100%);
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cta-inner h2 { color: white; font-size: clamp(2rem, 4vw, 3rem); }
.cta-inner p { color: rgba(255,255,255,0.78); font-size: 1.05rem; }
.cta-btns {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-email {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.cta-email:hover { color: white; }

/* ===== CERTIFICATE ===== */
.certificate-frame {
  display: flex;
  justify-content: center;
}
.certificate-img {
  width: 100%;
  max-width: 780px;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(44,53,39,0.12);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 60px 0 36px;
}
.footer-inner {
  display: flex;
  gap: 80px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer-brand {
  flex: 1.5;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dark-green);
}
.footer-brand p { font-size: 0.9rem; color: var(--text-mid); }
.footer-obm-logo { width: 100px; margin-top: 12px; mix-blend-mode: multiply; }
.footer-brand a { font-size: 0.85rem; color: var(--sage); }
.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 140px;
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.9rem;
  color: var(--text-mid);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--dark-green); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.07);
  font-size: 0.8rem;
  color: var(--text-light);
}
.footer-plain-link {
  color: inherit;
  text-decoration: none;
}
.footer-plain-link:hover {
  color: inherit;
  text-decoration: none;
}

/* ===== SCROLL REVEAL ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav { padding: 0 32px; }
  .journey-inner { gap: 48px; }
  .obm-inner { gap: 40px; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .container { padding: 0 24px; }
  .nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  /* Always show nav background on mobile so hamburger is visible */
  .nav {
    background: rgba(246,244,237,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
    padding: 0 24px;
  }
  /* Prevent horizontal overflow from carousels */
  body { overflow-x: hidden; }
  .services-carousel-wrapper { overflow: hidden; }
  .why-carousel-wrapper { overflow: hidden; }

  .hero { padding: 100px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { align-items: center; text-align: center; gap: 20px; order: 2; }
  .hero-btns { justify-content: center; }
  .hero-image { order: 1; }
  .hero-image img { max-width: 320px; height: 340px; }
  /* Centre the social proof row on mobile */
  .hero-social-proof { justify-content: center; flex-direction: column; align-items: center; gap: 8px; }

  .obm-inner { flex-direction: column; gap: 32px; }
  .obm-left { padding-top: 0; min-width: unset; text-align: center; align-items: center; }
  .obm-right { min-width: unset; width: 100%; }

  /* OBM table — force fit on mobile with fixed layout */
  .obm-table-wrap { overflow: hidden; }
  .obm-table { min-width: unset; width: 100%; table-layout: fixed; }
  .th-aspect, .td-aspect { width: 35%; }
  .th-va, .td-va { width: 32.5%; }
  .th-obm, .td-obm { width: 32.5%; }
  .obm-table th, .obm-table td { padding: 10px 8px; font-size: 0.78rem; word-break: break-word; hyphens: auto; }
  .td-obm strong { font-size: 0.78rem; }
  .aspect-icon { display: none; }
  .th-inner { white-space: normal; flex-wrap: wrap; gap: 4px; }
  .obm-badge { white-space: nowrap; font-size: 0.58rem; padding: 2px 5px; }
  .th-avatar { width: 24px; height: 24px; }

  .journey-inner { flex-direction: column; gap: 40px; }
  .journey-sticky { position: static; }
  /* Cap journey images so they don't dominate on mobile */
  .phase-img { max-height: 200px; }
  .phase-img img { max-height: 200px; }

  .stats-card { padding: 32px 20px; }
  .stat-divider { width: 80%; height: 1px; }
  .stats-card { flex-direction: column; }

  /* Why stats bar — less top margin on mobile */
  .why-stats { margin-top: 28px; }

  .faq-inner { flex-direction: column; gap: 32px; }
  /* Quote card — on mobile, un-overlay the text so face isn't covered */
  .quote-card { max-width: 100%; aspect-ratio: unset; height: auto; }
  .quote-card-img { position: relative; display: block; width: 100%; height: auto; object-fit: contain; }
  .quote-card-overlay {
    position: relative;
    background: var(--dark-green);
    padding: 28px 24px;
    gap: 12px;
  }
  .faq-list { min-width: unset; }

  .footer-inner { gap: 40px; }
  .footer-links { gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .pricing-grid { grid-template-columns: 1fr; }
  .service-card { flex: 0 0 calc((100% - 24px) / 2); }
  .services-carousel-wrapper { gap: 10px; }
  .carousel-btn { width: 36px; height: 36px; font-size: 0.95rem; }
}

@media (max-width: 480px) {
  section { padding: 48px 0; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.75rem; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { justify-content: center; }
  .cta-btns { flex-direction: column; }
  .faq-cta { flex-direction: column; }
  .faq-cta .btn { justify-content: center; }

  /* One service card at a time on small phones */
  .service-card { flex: 0 0 100%; }

  /* OBM table — force fit on small phones, no min-width */
  .obm-table { min-width: unset; }
}
