/* =====================================================
   Next Opportunity — style.css
   Palette: Forest Green & Cream
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── VARIABLES ─────────────────────────────────────── */
:root {
  --green:        #2D5016;
  --green-mid:    #3D6B20;
  --green-light:  #5A8A35;
  --green-pale:   #C8DDB0;
  --cream:        #F7F3EB;
  --cream-dark:   #EDE5D0;
  --cream-card:   #FFFDF8;
  --bark:         #1C1C0E;
  --mid:          #5A6040;
  --border:       rgba(45,80,22,0.18);
  --shadow:       0 40px 80px rgba(30,50,10,0.10);
}

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--bark);
  overflow-x: hidden;
}

/* ── NAV ───────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 80px;
  background: rgba(247,243,235,0.93);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s;
}
nav.scrolled {
  height: 64px;
  background: rgba(247,243,235,0.99);
  box-shadow: 0 4px 30px rgba(30,50,10,0.08);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; letter-spacing: 0.05em;
  color: var(--bark); text-decoration: none; cursor: pointer;
}
.nav-logo span { color: var(--green); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--mid);
  text-decoration: none; transition: color 0.3s; cursor: pointer;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-cta {
  background: var(--green) !important; color: #fff !important;
  padding: 10px 24px !important; border-radius: 2px; font-weight: 500 !important;
}
.nav-cta:hover { background: var(--green-mid) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 1.5px; background: var(--bark); display: block; transition: all 0.3s; }

/* ── PAGES ─────────────────────────────────────────── */
.page { display: none; min-height: 100vh; padding-top: 80px; }
.page.active { display: block; }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 80px);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px 80px 80px; position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--green); margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 40px; height: 1px; background: var(--green);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 5vw, 80px); font-weight: 600;
  line-height: 1.05; color: var(--bark); margin-bottom: 32px;
}
.hero-title em { font-style: italic; color: var(--green); }
.hero-subtitle {
  font-size: 16px; line-height: 1.8; color: var(--mid);
  max-width: 420px; margin-bottom: 52px;
}
.hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.hero-right { position: relative; overflow: hidden; }
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, #d6e8bc 0%, #b8cfa0 100%); z-index: 0;
}
/* Lorraine's photo fills the right panel */
.hero-image-container {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: flex-end; justify-content: center;
}
.hero-image-container img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
/* Stat card — bottom-left of hero, inside the right panel */
.hero-stats {
  position: absolute;
  bottom: 40px;
  left: 32px;
  z-index: 4;
  background: var(--cream-card);
  padding: 24px 28px;
  box-shadow: 0 12px 40px rgba(30,50,10,0.18);
  border-left: 3px solid var(--green);
}
.hero-stats-num {
  font-family: 'Cormorant Garamond', serif; font-size: 44px;
  font-weight: 600; color: var(--bark); line-height: 1;
}
.hero-stats-label {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--mid); margin-top: 6px;
}
.hero-badge {
  position: absolute; top: 40px; right: 40px; z-index: 4;
  width: 110px; height: 110px; background: var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 14px;
  animation: rotateBadge 20s linear infinite;
}
@keyframes rotateBadge { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-badge-inner { animation: rotateBadge 20s linear infinite reverse; text-align: center; }
.hero-badge-inner p {
  font-size: 10px; font-weight: 500; letter-spacing: 0.07em;
  text-transform: uppercase; color: #fff; line-height: 1.5;
}
.hero-bg-text {
  position: absolute; bottom: 20px; right: 20px;
  font-family: 'Cormorant Garamond', serif; font-size: 180px;
  font-weight: 600; color: rgba(45,80,22,0.06); line-height: 1;
  pointer-events: none; z-index: 0;
}

/* ── BUTTONS ───────────────────────────────────────── */
.btn-primary {
  background: var(--green); color: #fff;
  padding: 16px 36px; font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.3s;
  position: relative; overflow: hidden;
  text-decoration: none; display: inline-block;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: var(--green-mid);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1); z-index: -1;
}
.btn-primary:hover { color: #fff; }
.btn-primary:hover::after { transform: translateX(0); }
.btn-outline {
  background: transparent; color: var(--bark);
  padding: 15px 36px; font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1.5px solid var(--bark); cursor: pointer; transition: all 0.3s;
  text-decoration: none; display: inline-block;
  font-family: 'DM Sans', sans-serif;
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }

/* ── MARQUEE ───────────────────────────────────────── */
.marquee-bar { background: var(--green); padding: 16px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: marquee 30s linear infinite; }
.marquee-track span { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.8); padding: 0 48px; }
.marquee-track span.dot { color: var(--green-pale); padding: 0; font-size: 18px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SHARED HELPERS ────────────────────────────────── */
.section-eyebrow { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green); margin-bottom: 20px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 3.5vw, 54px); font-weight: 600; line-height: 1.1; margin-bottom: 28px; color: var(--bark); }
.section-title em { font-style: italic; color: var(--green); }
.section-body { font-size: 15px; line-height: 1.9; color: var(--mid); margin-bottom: 20px; }

/* ── ABOUT STRIP ───────────────────────────────────── */
.about-strip { padding: 120px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; background: var(--cream); }
.cert-badges { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; }
.cert-badge { background: var(--cream-dark); border: 1px solid var(--border); padding: 12px 20px; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bark); border-left: 3px solid var(--green); }
.about-right { position: relative; }
.about-image-card { background: linear-gradient(135deg, var(--cream-dark) 0%, #B8CFA0 100%); height: 500px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.about-image-card::before { content: '"'; font-family: 'Cormorant Garamond', serif; font-size: 400px; color: rgba(45,80,22,0.07); position: absolute; top: -60px; left: 20px; line-height: 1; }
.quote-card { position: relative; z-index: 2; text-align: center; padding: 40px; }
.quote-card blockquote { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-style: italic; line-height: 1.6; color: var(--bark); margin-bottom: 24px; }
.quote-card cite { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); font-style: normal; }
.stat-float { position: absolute; bottom: -20px; right: -20px; background: var(--green); color: #fff; padding: 24px 28px; text-align: center; }
.stat-float .num { font-family: 'Cormorant Garamond', serif; font-size: 42px; color: var(--green-pale); line-height: 1; display: block; }
.stat-float .lbl { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 6px; display: block; color: rgba(255,255,255,0.75); }

/* ── SERVICES DARK SECTION ─────────────────────────── */
.services-section { background: var(--bark); padding: 120px 80px; color: #fff; }
.services-header { text-align: center; margin-bottom: 80px; }
.services-header .section-title { color: #fff; }
.services-header .section-eyebrow { color: var(--green-pale); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card { background: #1E2A12; padding: 52px 40px; position: relative; overflow: hidden; cursor: pointer; transition: all 0.4s; border-top: 1px solid rgba(255,255,255,0.04); }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--green-pale); transform: scaleX(0); transform-origin: left; transition: transform 0.4s cubic-bezier(.4,0,.2,1); }
.service-card:hover { background: #253316; transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-num { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 600; color: rgba(90,138,53,0.25); line-height: 1; margin-bottom: 24px; }
.service-icon { width: 48px; height: 48px; background: rgba(45,80,22,0.4); border: 1px solid rgba(90,138,53,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 22px; }
.service-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.service-desc { font-size: 14px; line-height: 1.8; color: #8aab6a; margin-bottom: 28px; }
.service-link { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green-pale); display: flex; align-items: center; gap: 8px; text-decoration: none; transition: gap 0.3s; cursor: pointer; }
.service-link:hover { gap: 14px; }

/* ── PROCESS ───────────────────────────────────────── */
.process-section { padding: 120px 80px; background: var(--cream-dark); }
.process-header { text-align: center; margin-bottom: 80px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(90deg, var(--green), transparent 25%, var(--green) 50%, transparent 75%, var(--green)); z-index: 0; }
.step { padding: 0 24px; text-align: center; position: relative; z-index: 1; }
.step-num { width: 72px; height: 72px; background: var(--cream); border: 2px solid var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 32px; font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--green); }
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--bark); margin-bottom: 12px; }
.step-desc { font-size: 13px; line-height: 1.8; color: var(--mid); }

/* ── TESTIMONIALS ──────────────────────────────────── */
.testimonials-section { padding: 120px 80px; background: var(--cream); overflow: hidden; }
.testimonials-header { text-align: center; margin-bottom: 80px; }
.testimonials-track { display: flex; gap: 32px; animation: scrollT 40s linear infinite; width: max-content; }
.testimonials-track:hover { animation-play-state: paused; }
@keyframes scrollT { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.testimonial-card { width: 380px; flex-shrink: 0; background: var(--cream-card); padding: 44px 40px; border-top: 3px solid var(--green); box-shadow: 0 10px 40px rgba(30,50,10,0.06); }
.testimonial-stars { color: var(--green); font-size: 16px; letter-spacing: 4px; margin-bottom: 20px; }
.testimonial-text { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-style: italic; line-height: 1.7; color: var(--bark); margin-bottom: 28px; }
.testimonial-author { font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bark); }
.testimonial-role { font-size: 12px; color: var(--mid); margin-top: 4px; }

/* ── CTA SECTION ───────────────────────────────────── */
.cta-section { background: linear-gradient(135deg, var(--green) 0%, #1A3509 100%); padding: 120px 80px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: 'NO'; position: absolute; font-family: 'Cormorant Garamond', serif; font-size: 400px; font-weight: 600; color: rgba(200,221,176,0.05); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; line-height: 1; }
.cta-section .section-eyebrow { color: var(--green-pale); }
.cta-section .section-title { color: #fff; position: relative; z-index: 1; }
.cta-section p { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 520px; margin: 24px auto 52px; line-height: 1.8; position: relative; z-index: 1; }
.cta-section .btn-primary { background: #fff; color: var(--green); position: relative; z-index: 1; }
.cta-section .btn-primary::after { background: var(--green-pale); }
.cta-section .btn-primary:hover { color: var(--green); }

/* ── FOOTER ────────────────────────────────────────── */
footer { background: var(--bark); padding: 80px 80px 40px; color: rgba(255,255,255,0.55); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-top: 16px; max-width: 280px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: #fff; }
.footer-logo span { color: var(--green-pale); }
.footer-col h4 { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--green-pale); margin-bottom: 20px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: rgba(255,255,255,0.45); text-decoration: none; margin-bottom: 10px; transition: color 0.3s; cursor: pointer; }
.footer-col a:hover { color: var(--green-pale); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; }
.social-links { display: flex; gap: 16px; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; transition: all 0.3s; cursor: pointer; text-decoration: none; color: rgba(255,255,255,0.45); }
.social-link:hover { border-color: var(--green-pale); color: var(--green-pale); }

/* ── PAGE HERO (inner pages) ───────────────────────── */
.page-hero { padding: 100px 80px 80px; color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--green) 0%, #1A3509 100%); }
.page-hero::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 60px; background: var(--cream); clip-path: polygon(0 60px, 100% 0, 100% 60px); }
.page-hero-content { max-width: 680px; position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(48px, 5vw, 72px); font-weight: 600; line-height: 1.05; margin-bottom: 24px; }
.page-hero h1 em { font-style: italic; color: var(--green-pale); }
.page-hero p { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.70); }

/* ── SERVICES DETAIL ───────────────────────────────── */
.services-detail-grid { padding: 100px 80px; }
.service-detail-item { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding-bottom: 80px; border-bottom: 1px solid var(--border); margin-bottom: 80px; }
.service-detail-item:last-child { border-bottom: none; margin-bottom: 0; }
.service-detail-item.reverse { direction: rtl; }
.service-detail-item.reverse > * { direction: ltr; }
.service-detail-visual { background: linear-gradient(135deg, var(--cream-dark), #B8CFA0); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 100px; position: relative; overflow: hidden; }
.service-detail-visual::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 60%, rgba(45,80,22,0.12)); }
.service-detail-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 600; line-height: 1.1; margin-bottom: 20px; color: var(--bark); }
.service-detail-content p { font-size: 15px; line-height: 1.9; color: var(--mid); margin-bottom: 24px; }
.feature-list { list-style: none; margin-bottom: 36px; }
.feature-list li { font-size: 14px; color: var(--bark); padding: 10px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.feature-list li::before { content: '→'; color: var(--green); font-size: 16px; flex-shrink: 0; }

/* ── PRICING ───────────────────────────────────────── */
.pricing-section { padding: 100px 80px; background: var(--cream); }
.pricing-intro { text-align: center; max-width: 600px; margin: 0 auto 80px; }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.pricing-card { background: var(--cream-card); padding: 52px 40px; position: relative; border: 1px solid var(--border); transition: all 0.4s; }
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.pricing-card.featured { background: var(--green); color: #fff; transform: scale(1.04); border-color: var(--green); }
.pricing-card.featured:hover { transform: scale(1.04) translateY(-8px); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green-pale); color: var(--green); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; padding: 6px 20px; white-space: nowrap; }
.pricing-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; margin-bottom: 16px; color: inherit; }
.pricing-tier { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.pricing-card.featured .pricing-tier { color: var(--green-pale); }
.pricing-price { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 600; line-height: 1.1; margin-bottom: 8px; }
.pricing-period { font-size: 13px; color: var(--mid); margin-bottom: 36px; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.55); }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 32px; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.15); }
.pricing-features { list-style: none; margin-bottom: 40px; }
.pricing-features li { font-size: 14px; padding: 10px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.pricing-card.featured .pricing-features li { border-color: rgba(255,255,255,0.10); }
.pricing-features li .check { color: var(--green); font-weight: 700; }
.pricing-card.featured .pricing-features li .check { color: var(--green-pale); }
.pricing-muted { color: #bbb !important; }
.pricing-card.featured .pricing-muted { color: rgba(255,255,255,0.3) !important; }

/* ── CONTACT ───────────────────────────────────────── */
.contact-section { padding: 100px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; background: var(--cream); }
.contact-info h2 { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 600; line-height: 1.1; margin-bottom: 24px; }
.contact-info h2 em { font-style: italic; color: var(--green); }
.contact-info > p { font-size: 15px; line-height: 1.8; color: var(--mid); margin-bottom: 48px; }
.contact-detail { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 32px; }
.contact-detail-icon { width: 48px; height: 48px; background: var(--cream-dark); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-detail-text h4 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 6px; }
.contact-detail-text a, .contact-detail-text p { font-size: 16px; color: var(--bark); text-decoration: none; transition: color 0.3s; }
.contact-detail-text a:hover { color: var(--green); }
.contact-form { background: var(--cream-card); padding: 60px 52px; box-shadow: 0 20px 60px rgba(30,50,10,0.06); border-top: 3px solid var(--green); }
.contact-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600; margin-bottom: 40px; color: var(--bark); }
.form-group { margin-bottom: 28px; }
.form-group label { display: block; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid); margin-bottom: 10px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--cream); border: 1px solid var(--border); padding: 14px 18px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--bark); outline: none; transition: border-color 0.3s, background 0.3s; appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); background: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.success-msg { display: none; background: var(--cream-dark); border-left: 3px solid var(--green); padding: 16px 20px; font-size: 14px; color: var(--bark); margin-top: 20px; }

/* ── ABOUT INFO CARDS ──────────────────────────────── */
.info-section { padding: 100px 80px; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; }
.info-card { background: var(--cream-card); padding: 48px 40px; border-top: 3px solid var(--green); box-shadow: 0 4px 30px rgba(30,50,10,0.05); }
.info-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--bark); margin-bottom: 16px; }
.info-card p { font-size: 14px; line-height: 1.9; color: var(--mid); }

/* ── MOBILE MENU ───────────────────────────────────── */
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--cream); z-index: 200; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 600; color: var(--bark); text-decoration: none; cursor: pointer; transition: color 0.3s; }
.mobile-menu a:hover { color: var(--green); }
.mobile-close { position: absolute; top: 24px; right: 24px; font-size: 32px; cursor: pointer; color: var(--bark); background: none; border: none; line-height: 1; }

/* ── FADE UP ───────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero, .about-strip, .contact-section, .info-grid, .pricing-cards, .services-grid { grid-template-columns: 1fr; }
  .hero-right { min-height: 400px; }
  .hero-left { padding: 60px 32px; }
  .hero-stats { left: 20px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .service-detail-item { grid-template-columns: 1fr; }
  .service-detail-item.reverse { direction: ltr; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-8px); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  nav, .about-strip, .services-section, .process-section, .testimonials-section,
  .cta-section, .services-detail-grid, .pricing-section, .contact-section,
  .info-section, footer, .page-hero { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 600px) {
  .process-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .stat-float { right: 0; bottom: 0; }
}
