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

:root {
  --bg: #FAFAF5;
  --bg-dark: #1A1A1A;
  --bg-cream: #F0EDE6;
  --bg-sage: #9BB08C;
  --card: #FFFFFF;
  --text: #1A1A1A;
  --text-light: #FAFAF5;
  --text-muted: #6B6B6B;
  --accent: #DEFF8C;
  --border: #E0DDD6;
  --border-dark: #333;
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4vw;
}

/* ── Typography ─────────────────────────────────────────────────── */
.text-accent { color: var(--accent); }
.text-sage { color: var(--bg-sage); }

.serif {
  font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
}

.section-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ── Nav ─────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: none;
  transition: background 0.3s, border-bottom 0.3s;
}

.nav.scrolled {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav.scrolled .nav-logo { color: var(--text); }
.nav.scrolled .nav-links a { color: var(--text); }
.nav.scrolled .nav-links a:hover { color: var(--bg-sage); }
.nav.scrolled .nav-cta { color: var(--text) !important; border-color: var(--text) !important; }
.nav.scrolled .nav-toggle span { background: var(--text); }

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

.nav-logo {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: white;
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color 0.3s;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.3px;
}

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

.nav-cta {
  background: transparent !important;
  color: white !important;
  padding: 10px 24px;
  border: 1px solid white !important;
  border-radius: 30px !important;
  font-weight: 400 !important;
  transition: all 0.3s !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 12px !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
  color: var(--bg-dark) !important;
  border-color: var(--accent) !important;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: white;
  transition: 0.2s;
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--bg-dark);
  color: var(--text-light);
  border-color: var(--bg-dark);
}

.btn-primary:hover {
  background: var(--accent);
  color: var(--bg-dark);
  border-color: var(--accent);
}

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

.btn-outline:hover {
  background: var(--bg-dark);
  color: var(--text-light);
}

.btn-full { width: 100%; }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 4vw 80px;
  max-width: 800px;
}

.hero-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--accent);
}

/* ── Intro Section ──────────────────────────────────────────────── */
.intro {
  padding: 80px 4vw;
  background: var(--bg-cream);
}

.intro-inner {
  max-width: 900px;
}

.intro-text {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 32px;
}

.intro-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--bg-sage);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--bg-sage);
  padding-bottom: 2px;
  transition: opacity 0.3s;
}

.intro-link:hover { opacity: 0.6; }

/* ── Services ────────────────────────────────────────────────────── */
.services {
  padding: 100px 4vw;
  background: var(--bg);
}

.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.services-heading .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.services-heading .section-sub {
  text-align: left;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.service-card {
  background: var(--bg);
  padding: 32px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
}

.service-card:hover {
  background: var(--bg-dark);
  color: var(--text-light);
}

.service-card h3 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
}

/* ── Feature Section ─────────────────────────────────────────────── */
.feature {
  background: #2A2A2A;
  color: var(--text-light);
  border-radius: var(--radius);
  margin: 0 4vw;
  overflow: hidden;
}

.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

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

.feature-text .section-title {
  color: var(--text-light);
  text-align: left;
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 24px;
}

.feature-text p {
  font-size: 16px;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 32px;
}

.feature-image {
  position: relative;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Press Logos ──────────────────────────────────────────────────── */
.press {
  background: var(--bg-sage);
  padding: 80px 4vw 100px;
  margin-top: 0;
  border-radius: 24px 24px 0 0;
  position: relative;
  z-index: 1;
  margin-top: -24px;
}

.press-label {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  font-style: italic;
  text-align: center;
  margin-bottom: 48px;
  color: white;
}

.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.press-logos span {
  font-size: 24px;
  font-weight: 700;
  color: white;
  opacity: 0.85;
  letter-spacing: 1px;
}

/* ── Testimonial ─────────────────────────────────────────────────── */
.testimonial {
  padding: 80px 4vw 100px;
  background: var(--bg-sage);
  text-align: center;
  position: relative;
}

.testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-cream);
  border-radius: 20px;
  padding: 80px 60px;
}

.testimonial-quote {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 32px;
  color: var(--text);
}

.testimonial-author {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.testimonial-cta {
  display: inline-block;
  padding: 14px 36px;
  background: var(--bg-dark);
  color: var(--text-light);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 30px;
  transition: all 0.3s;
}

.testimonial-cta:hover {
  background: var(--accent);
  color: var(--bg-dark);
}

/* ── Pricing ─────────────────────────────────────────────────────── */
.pricing {
  padding: 100px 4vw;
  background: var(--bg-cream);
}

.pricing .section-title { text-align: center; }
.pricing .section-sub { text-align: center; margin: 0 auto 60px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 48px 36px;
  position: relative;
}

.price-card-featured {
  border-color: var(--bg-dark);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dark);
  color: var(--text-light);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.price-tier {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.price-amount {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.price-amount span {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}

.price-features {
  list-style: none;
  margin-bottom: 36px;
}

.price-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.price-features li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.price-card-custom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  text-align: left;
}

.price-card-custom .price-tier { margin-bottom: 0; }

.custom-plan-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.price-card-custom .btn { white-space: nowrap; flex-shrink: 0; }

/* ── Marquee CTA ─────────────────────────────────────────────────── */
.marquee {
  padding: 40px 0;
  background: var(--bg);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-track {
  display: flex;
  animation: marquee-scroll 20s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-text {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 400;
  font-style: italic;
  white-space: nowrap;
  padding: 0 40px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

.marquee-text:hover { color: var(--bg-sage); }

.marquee-dot {
  font-style: normal;
  color: var(--bg-sage);
  padding: 0 20px;
}

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

/* ── Challenge / Free Audit ──────────────────────────────────────── */
.challenge {
  padding: 100px 4vw;
  background: var(--bg-dark);
  color: var(--text-light);
}

.challenge-inner {
  max-width: 640px;
  margin: 0 auto;
}

.challenge h2 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.challenge-sub {
  font-size: 16px;
  color: #999;
  line-height: 1.7;
  margin-bottom: 40px;
}

.challenge-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #999;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid #444;
  color: var(--text-light);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea { resize: vertical; }

.challenge-note {
  font-size: 13px;
  color: #666;
  text-align: center;
}

.challenge-success {
  text-align: center;
  padding: 40px 0;
}

.challenge-success h3 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 12px;
  color: var(--accent);
}

.challenge-success p {
  font-size: 16px;
  color: #999;
}

/* ── Footer ──────────────────────────────────────────────────────── */
.footer {
  padding: 80px 4vw 30px;
  background: var(--bg);
  color: var(--text);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .nav-logo {
  color: var(--text);
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 300px;
  color: var(--text-muted);
}

.footer-newsletter {
  max-width: 360px;
}

.footer-newsletter h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
}

.footer-newsletter p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--text);
  color: var(--text);
  font-size: 13px;
  font-family: inherit;
}

.footer-newsletter-form input::placeholder {
  color: var(--text-muted);
}

.footer-newsletter-form input:focus {
  outline: none;
  border-bottom-color: var(--bg-sage);
}

.footer-newsletter-form button {
  padding: 12px 28px;
  background: var(--bg-dark);
  color: var(--text-light);
  border: none;
  border-radius: 30px;
  font-size: 12px;
  font-family: inherit;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s;
}

.footer-newsletter-form button:hover {
  background: var(--accent);
  color: var(--bg-dark);
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-links h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--bg-sage); }

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-social a {
  color: var(--text);
  font-size: 14px;
  transition: color 0.3s;
}

.footer-social a:hover { color: var(--bg-sage); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 24px;
  transition: color 0.3s;
}

.footer-bottom a:hover { color: var(--text); }

/* ── Consultation Overlay ─────────────────────────────────────────── */
.consult-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.consult-box {
  background: var(--card);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.consult-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.consult-close:hover { color: var(--text); }

.consult-box h3 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 12px;
}

.consult-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.consult-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.consult-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.3s;
}

.consult-form input:focus {
  outline: none;
  border-color: var(--bg-dark);
}

.consult-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}

.consult-success { text-align: center; padding: 20px 0; }

.consult-success h3 { color: var(--bg-sage); }

.consult-success p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── How It Works ────────────────────────────────────────────────── */
.how-it-works {
  padding: 100px 4vw;
  background: var(--bg);
  border-radius: 24px 24px 0 0;
  position: relative;
  z-index: 2;
  margin-top: -24px;
}

.how-it-works .section-title { text-align: center; }
.how-it-works .section-sub { text-align: center; margin: 0 auto 60px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.step { text-align: center; }

.step-num {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  color: var(--bg-sage);
  margin-bottom: 16px;
}

.step h3 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 24px 4vw;
    gap: 16px;
    border-bottom: 1px solid #333;

  .nav.scrolled & {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
  }
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero-content { padding: 0 6vw 60px; }
  .hero-title { font-size: clamp(36px, 8vw, 56px); }

  .services-split { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }

  .feature { margin: 0; border-radius: 0; }
  .feature-inner { grid-template-columns: 1fr; }
  .feature-text { padding: 48px 32px; }
  .feature-image { min-height: 300px; }

  .pricing-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; }
  .footer-links { gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom a { margin-left: 0; margin-right: 16px; }

  .press-logos { gap: 24px; }
  .press-logos span { font-size: 16px; }

  .marquee-text { font-size: clamp(36px, 10vw, 60px); }

  .price-card-custom { flex-direction: column; text-align: center; }
}
