/* ===== VARIABLES ===== */
:root {
  --sage: #8A9A5B;
  --sage-dark: #7A8A4B;
  --sage-light: #E8EDD1;
  --sage-glow: #F2F4E8;
  --sage-text: #5D6B35;
  --sand: #F9F7F2;
  --earth: #3D3A35;
  --stone: #2D2A26;
  --border: #E8E4DB;
  --muted: #6B665F;
  --warm-muted: #8E8A82;
  --linen: #F4F1EA;
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--sand); color: var(--earth); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp 0.8s ease forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container.narrow { max-width: 900px; }
.center { text-align: center; }
.mt-40 { margin-top: 2.5rem; }
.bg-white { background: var(--white); }

/* ===== TYPOGRAPHY ===== */
.serif { font-family: var(--font-serif); }
.serif-italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
h1, h2, h3 { font-family: var(--font-serif); color: var(--stone); line-height: 1.1; }
.large { font-size: clamp(2.5rem, 6vw, 5rem); }
.uppercase { text-transform: uppercase; letter-spacing: 0.05em; }
.eyebrow { display: block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.75rem; font-family: var(--font-sans); }
.eyebrow.light { color: var(--warm-muted); }
blockquote { font-family: var(--font-serif); font-style: italic; font-size: 1.35rem; color: var(--stone); line-height: 1.4; border-left: 2px solid var(--sage); padding-left: 1.5rem; margin: 1.5rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1rem; }
.section-header p { color: var(--muted); font-size: 1.1rem; font-weight: 300; }

/* ===== DIVIDERS ===== */
.divider { width: 10rem; height: 1px; background: rgba(138,154,91,0.25); margin: 1.5rem auto 0; }
.divider.thick { height: 4px; background: var(--sage); width: 6rem; border-radius: 2px; margin: 1.5rem auto 0; }

/* ===== BUTTONS ===== */
.btn-primary { display: inline-block; background: var(--sage); color: white; padding: 1rem 2.5rem; border-radius: 999px; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.2s, transform 0.2s; font-family: var(--font-sans); border: none; cursor: pointer; }
.btn-primary:hover { background: var(--sage-dark); transform: scale(1.03); }
.link-underline { display: inline-block; border-bottom: 1px solid var(--sage); color: var(--sage); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; padding-bottom: 2px; transition: opacity 0.2s; }
.link-underline:hover { opacity: 0.7; }
.link-arrow { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--sage); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; margin-top: 0.5rem; }
.link-arrow:hover { color: white; }

/* ===== NAV ===== */
.nav { position: fixed; top: 0; width: 100%; z-index: 100; background: rgba(255,255,255,0.93); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; height: 5rem; display: flex; align-items: center; justify-content: space-between; }
.logo-link { display: flex; align-items: center; }
.logo-img { height: 3.5rem; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--sage); }
.nav-cta { background: var(--sage) !important; color: white !important; padding: 0.5rem 1.5rem; border-radius: 999px; }
.nav-cta:hover { background: var(--sage-dark) !important; }
.hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--stone); }
.mobile-menu { display: none; flex-direction: column; background: white; border-top: 1px solid var(--border); }
.mobile-menu a { padding: 1rem 2rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--border); }
.mobile-menu a:hover { color: var(--sage); }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; padding-top: 5rem; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(45,42,38,0.6) 0%, rgba(45,42,38,0.2) 70%, rgba(45,42,38,0.05) 100%); }
.hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; width: 100%; }
.hero-text { max-width: 700px; }

/* Bebas Neue bold display hero headline */
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(5rem, 13vw, 11rem);
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.hero h1 em.sage {
  color: #c8d98a;
  font-style: normal;
}

.hero-sub { font-size: 2rem; color: rgba(255,255,255,0.82); font-weight: 600; max-width: 34rem; line-height: 1.7; margin-bottom: 2.5rem; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem; }
.hero-note { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ===== STATS STRIP ===== */
.intro-strip { background: var(--stone); padding: 1.75rem 2rem; }
.intro-strip-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.intro-strip-item { display: flex; flex-direction: column; align-items: center; padding: 0.5rem 3rem; gap: 0.15rem; }
.strip-num { font-family: var(--font-serif); font-size: 1.4rem; color: white; }
.strip-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--warm-muted); font-weight: 600; }
.intro-strip-divider { width: 1px; height: 2rem; background: rgba(255,255,255,0.1); }

/* ===== PROCESS ===== */
.process-section { padding: 6rem 2rem; background: var(--linen); }
.process-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; }
.process-intro h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.process-intro > p { color: var(--muted); font-weight: 300; line-height: 1.7; margin-bottom: 1.5rem; }
.process-image { margin-top: 2.5rem; overflow: hidden; }
.process-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.6s; }
.process-image:hover img { transform: scale(1.03); }
.process-steps { display: flex; flex-direction: column; gap: 3.5rem; }
.step { display: flex; gap: 2rem; }
.step-num { font-family: var(--font-serif); font-size: 2.5rem; color: var(--sage); opacity: 0.3; font-style: italic; font-weight: 300; flex-shrink: 0; transition: opacity 0.3s; line-height: 1; }
.step:hover .step-num { opacity: 1; }
.step-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.5rem; }
.step-body h3 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.step-body p { color: var(--muted); font-weight: 300; line-height: 1.7; }

/* ===== SERVICES ===== */
.services-section { padding: 6rem 2rem; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.service-card { display: flex; flex-direction: column; padding: 2rem; border-radius: 2rem; border: 1px solid var(--border); background: var(--white); position: relative; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; cursor: pointer; }
.service-card:hover { box-shadow: 0 16px 50px rgba(0,0,0,0.08); transform: translateY(-3px); }
.service-card.popular { background: var(--sage-glow); border-color: #DDE2C6; }
.popular-badge { position: absolute; top: 1rem; right: 1.25rem; background: var(--sage); color: white; font-size: 0.55rem; font-weight: 700; padding: 0.25rem 0.5rem; border-radius: 4px; letter-spacing: 0.1em; text-transform: uppercase; }
.service-icon { font-size: 1.3rem; color: var(--sage); margin-bottom: 1.25rem; width: 2.75rem; height: 2.75rem; background: var(--linen); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; }
.service-card:hover .service-icon { background: var(--sage); color: white; }
.service-card h3 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--stone); margin-bottom: 0.5rem; transition: color 0.2s; }
.service-card:hover h3 { color: var(--sage); }
.service-tagline { font-size: 0.85rem; color: var(--warm-muted); font-style: italic; flex: 1; margin-bottom: 1.5rem; line-height: 1.5; }
.service-price { margin-top: auto; }
.price { display: block; font-family: var(--font-serif); font-size: 1.8rem; font-weight: 400; color: var(--stone); line-height: 1.1; }
.price.small-price { font-size: 1.2rem; }
.price-note { display: block; font-size: 0.6rem; color: var(--warm-muted); text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; margin-top: 0.3rem; }
.services-note { text-align: center; color: var(--muted); font-size: 0.85rem; font-style: italic; }

/* ===== ABOUT TEASER - single photo ===== */
.about-teaser { padding: 6rem 2rem; background: var(--sand); }
.about-teaser-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.about-teaser-image-single { overflow: hidden; }
.about-teaser-image-single img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; filter: grayscale(10%); transition: filter 0.5s; }
.about-teaser-image-single:hover img { filter: grayscale(0%); }
.about-teaser-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1.5rem; }
.about-teaser-text p { color: var(--muted); font-weight: 300; line-height: 1.8; font-size: 1.05rem; margin-bottom: 1.25rem; }

/* ===== APPROACH ===== */
.approach-section { padding: 6rem 2rem; background: var(--white); }
.approach-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.approach-text h2 { margin-bottom: 1.5rem; }
.approach-text > p { color: var(--muted); font-weight: 300; line-height: 1.7; font-size: 1.05rem; margin-bottom: 2.5rem; }
.approach-pillars { display: flex; flex-direction: column; gap: 2rem; }
.pillar { padding-left: 1.5rem; border-left: 1px solid rgba(138,154,91,0.35); }
.pillar h4 { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.5rem; }
.pillar p { font-size: 0.9rem; color: var(--muted); font-weight: 300; line-height: 1.6; }
.approach-images { display: flex; flex-direction: column; gap: 1rem; }
.approach-img-top { overflow: hidden; }
.approach-img-top img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.6s; }
.approach-img-top:hover img { transform: scale(1.03); }
.approach-img-bottom { overflow: hidden; width: 70%; margin-left: auto; border: 4px solid var(--white); box-shadow: 0 15px 50px rgba(0,0,0,0.1); margin-top: -3rem; }
.approach-img-bottom img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ===== IMAGE BREAK ===== */
.image-break { position: relative; height: 400px; overflow: hidden; }
.image-break img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.42); }
.image-break-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.image-break-overlay blockquote { border: none; padding: 0; font-size: clamp(1.2rem, 2.5vw, 1.75rem); color: white; text-align: center; max-width: 52rem; line-height: 1.5; }

/* ===== CORE TENETS ===== */
.tenets-section { padding: 6rem 2rem; background: var(--linen); }
.tenets-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.tenet-card { background: var(--white); padding: 2.5rem; border: 1px solid var(--border); transition: box-shadow 0.2s; }
.tenet-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.tenet-icon { font-size: 1.4rem; margin-bottom: 1rem; line-height: 1; }
.tenet-card h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
.tenet-card p { color: var(--muted); font-weight: 300; line-height: 1.7; font-size: 0.95rem; }

/* ===== WHAT I BRING ===== */
.brings-section { padding: 6rem 2rem; background: var(--white); }
.brings-list { display: flex; flex-direction: column; gap: 3rem; }
.bring-item { display: flex; gap: 2rem; align-items: flex-start; }
.bring-icon { width: 3rem; height: 3rem; background: var(--linen); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--sage); flex-shrink: 0; transition: background 0.2s, color 0.2s; }
.bring-item:hover .bring-icon { background: var(--sage); color: white; }
.bring-item h3 { font-size: 1.15rem; margin-bottom: 0.4rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--border); }
.bring-item p { color: var(--muted); font-weight: 300; line-height: 1.7; font-size: 0.95rem; margin-top: 0.5rem; }

/* ===== PAY IT FORWARD ===== */
.pay-forward-section { padding: 6rem 2rem; background: var(--sand); }
.pay-forward-card { background: var(--white); border: 1px solid var(--border); padding: 3.5rem; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.pay-forward-header { display: flex; align-items: flex-start; gap: 1.5rem; margin-bottom: 1.25rem; }
.pay-forward-icon { font-size: 2rem; line-height: 1; flex-shrink: 0; margin-top: 0.25rem; }
.pay-forward-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-top: 0.25rem; }
.pay-forward-sub { color: var(--muted); font-weight: 300; line-height: 1.7; margin-bottom: 2.5rem; font-size: 1rem; }
.pay-forward-sub strong { color: var(--sage); font-weight: 600; }
.refer-form { display: flex; flex-direction: column; gap: 1.25rem; }
.refer-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.refer-form-divider { display: flex; align-items: center; gap: 1rem; margin: 0.5rem 0; }
.refer-form-divider::before, .refer-form-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.refer-form-divider span { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm-muted); white-space: nowrap; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); }
.form-group .optional { color: var(--warm-muted); font-weight: 400; text-transform: none; letter-spacing: 0; }
.form-group input, .form-group textarea { font-family: var(--font-sans); font-size: 0.95rem; font-weight: 300; color: var(--earth); background: var(--sand); border: 1px solid var(--border); padding: 0.75rem 1rem; outline: none; transition: border-color 0.2s; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--sage); }
.refer-submit { align-self: flex-start; margin-top: 0.5rem; }
.refer-status { font-size: 0.9rem; font-weight: 500; padding: 0.75rem 1rem; border-radius: 0.5rem; display: none; }
.refer-status.success { background: var(--sage-glow); color: var(--sage-text); border: 1px solid rgba(138,154,91,0.3); display: block; }
.refer-status.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; display: block; }

/* ===== MEET BANNER ===== */
.meet-section { padding: 4rem 2rem; background: var(--linen); }
.meet-inner { max-width: 1200px; margin: 0 auto; background: var(--stone); border-radius: 1rem; padding: 2.5rem 3rem; display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.meet-left { display: flex; align-items: center; gap: 2rem; }
.meet-photo { width: 5rem; height: 5rem; border-radius: 50%; border: 2px solid var(--sage); overflow: hidden; flex-shrink: 0; }
.meet-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.meet-text h3 { color: white; font-size: 1.5rem; margin-bottom: 0.4rem; }
.meet-text p { color: var(--warm-muted); font-size: 0.85rem; font-weight: 300; max-width: 26rem; }
.meet-text .link-underline { color: var(--sage); border-color: var(--sage); }
.meet-right { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.meet-stat { text-align: right; }
.stat-title { color: white; font-weight: 600; font-size: 1.1rem; }
.stat-sub { color: var(--warm-muted); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; }

/* ===== CONTACT ===== */
.contact-section { padding: 6rem 2rem; background: var(--white); }
.calendly-wrapper { border-radius: 0.5rem; overflow: hidden; border: 1px solid var(--border); }
.contact-alt { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.contact-card { background: var(--linen); padding: 2rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.contact-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(45,42,38,0.3); }
.contact-link { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 500; color: var(--stone); border-bottom: 1px solid rgba(138,154,91,0.5); transition: color 0.2s; word-break: break-all; }
.contact-link:hover { color: var(--sage); }

/* ===== FOOTER - icons left, no logo ===== */
.footer { background: var(--stone); padding: 2.5rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer-left { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-icons { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-icon-link { display: flex; align-items: center; gap: 0.75rem; color: var(--warm-muted); font-size: 0.8rem; font-weight: 400; transition: color 0.2s; }
.footer-icon-link svg { flex-shrink: 0; }
.footer-icon-link:hover { color: white; }
.footer-right { text-align: right; }
.footer-copy { font-size: 0.65rem; color: rgba(142,138,130,0.6); letter-spacing: 0.05em; }

/* ===== PAGE HERO ===== */
.page-hero { padding: 8rem 2rem 4rem; background: var(--sand); }
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); margin-top: 0.5rem; }
.page-hero.bg-white { background: var(--white); }

/* ===== ABOUT PAGE - single photo ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; padding: 4rem 0 2rem; }
.about-photo-col { position: relative; }
.about-photo-wrap { overflow: hidden; }
.about-photo-main { width: 85%; aspect-ratio: 3/4; object-fit: cover; object-position: top; filter: grayscale(10%); transition: filter 0.5s; }
.about-photo-wrap:hover .about-photo-main { filter: grayscale(0%); }
.about-text h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 2rem; }
.about-text p { color: var(--muted); font-weight: 300; line-height: 1.8; font-size: 1.05rem; margin-bottom: 1.25rem; }
.about-text blockquote { font-size: 1.35rem; margin-top: 2rem; }

/* ===== TESTIMONIALS ===== */
.case-study-section { padding: 4rem 2rem 6rem; }
.case-study-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.06); }
.case-study-top { display: grid; grid-template-columns: 1fr 1fr; }
.case-study-story { padding: 3.5rem; border-right: 1px solid var(--border); }
.case-study-story h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1.5rem; }
.case-study-story p { color: var(--muted); font-weight: 300; line-height: 1.8; margin-bottom: 1rem; }
.case-study-story blockquote { font-size: 1.2rem; }
.case-study-stats { background: var(--linen); padding: 3.5rem; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 1.5rem 0 2rem; }
.stat-block .stat-num { display: block; font-family: var(--font-serif); font-size: 2rem; color: var(--stone); }
.stat-block .stat-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--warm-muted); font-weight: 600; }
.case-list { display: flex; flex-direction: column; gap: 0.75rem; }
.case-list li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.9rem; color: var(--muted); font-weight: 300; line-height: 1.5; }
.case-list li::before { content: "✓"; color: var(--sage); font-weight: 700; flex-shrink: 0; }
.case-study-bottom { background: var(--stone); padding: 3.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.case-bottom-col p { color: var(--warm-muted); font-weight: 300; line-height: 1.7; margin-bottom: 1rem; font-size: 0.95rem; }
.light-quote { font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; color: rgba(249,247,242,0.85); line-height: 1.5; border-left: 2px solid var(--sage); padding-left: 1.25rem; margin-bottom: 1.25rem; }
.founding-note { text-align: center; padding: 3rem; background: rgba(255,255,255,0.5); border: 1px solid var(--border); margin-top: 3rem; }
.founding-bar { width: 3rem; height: 3px; background: var(--sage); border-radius: 2px; margin: 0 auto 1.5rem; }
.founding-quote { font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; color: var(--stone); max-width: 36rem; margin: 0 auto 1rem; line-height: 1.4; }
.founding-cta { display: inline-block; margin-top: 0.5rem; }
.founding-cta .eyebrow { margin-bottom: 0; transition: opacity 0.2s; }
.founding-cta:hover .eyebrow { opacity: 0.7; }

/* ===== SERVICE DETAIL ===== */
.service-hero { padding: 8rem 2rem 5rem; background: var(--linen); }
.service-hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); margin: 0.5rem 0; }
.service-hero-tagline { font-size: 1.3rem; color: var(--muted); font-style: italic; font-weight: 300; margin-bottom: 2rem; font-family: var(--font-serif); }
.price-block { background: rgba(255,255,255,0.8); padding: 1.5rem 2rem; border: 1px solid var(--border); display: inline-block; margin-top: 1.5rem; }
.price-big { display: block; font-size: 2.5rem; font-weight: 400; color: var(--stone); line-height: 1.1; font-family: var(--font-serif); }
.price-sessions { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--sage); font-weight: 700; margin-top: 0.4rem; }
.back-link { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage); margin-bottom: 2rem; transition: opacity 0.2s; }
.back-link:hover { opacity: 0.7; }
.service-detail { padding: 3rem 2rem 6rem; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; background: var(--white); padding: 4rem; border: 1px solid var(--border); box-shadow: 0 10px 40px rgba(0,0,0,0.05); margin-bottom: 2rem; }
.service-summary { font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; color: var(--stone); line-height: 1.3; margin: 1rem 0 1.5rem; }
.best-for-box { background: var(--sand); padding: 2rem; margin-top: 1.5rem; }
.best-for-box h4 { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.75rem; }
.best-for-box p { color: var(--muted); font-weight: 300; line-height: 1.7; font-size: 0.95rem; }
.note-box { background: var(--sage-glow); border: 1px solid rgba(138,154,91,0.2); padding: 1.25rem 1.5rem; margin-bottom: 1.5rem; }
.note-box p { font-family: var(--font-serif); font-style: italic; color: var(--sage-text); font-size: 1rem; }
.features-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.features-list li { display: flex; gap: 1rem; align-items: flex-start; color: var(--stone); font-weight: 300; font-size: 0.95rem; line-height: 1.5; }
.features-list li::before { content: "✓"; color: var(--sage); font-weight: 700; flex-shrink: 0; }
.service-cta-bar { background: var(--stone); padding: 3rem 4rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.service-cta-bar h3 { color: white; font-size: 2rem; margin-bottom: 0.5rem; }
.service-cta-bar p { color: var(--warm-muted); font-weight: 300; }

/* ===== TESTIMONIAL PULL QUOTE ===== */
.testimonial-pull {
  background: var(--sage-light);
  padding: 3.5rem 4rem;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}
.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 8rem;
  color: black;
  opacity: 0.15;
  line-height: 0.6;
  position: absolute;
  top: 2rem;
  left: 2.5rem;
  pointer-events: none;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: black;
  line-height: 1.7;
  border: none;
  padding: 0;
  margin: 0 0 2rem 0;
  position: relative;
  z-index: 1;
}
.testimonial-attr {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 1.25rem;
}
.testimonial-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: black;
}
.testimonial-context {
  font-size: 0.7rem;
  color: black);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero { min-height: 75vh; }
  .hero h1 { font-size: clamp(4rem, 16vw, 8rem); }
  .about-teaser-grid { grid-template-columns: 1fr; gap: 3rem; }
  .process-grid { grid-template-columns: 1fr; gap: 3rem; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-img-bottom { margin-top: 0; }
  .image-break { height: 300px; }
  .tenets-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 0 0; }
  .about-photo-main { width: 70%; }
  .case-study-top { grid-template-columns: 1fr; }
  .case-study-story { border-right: none; border-bottom: 1px solid var(--border); }
  .case-study-bottom { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .meet-inner { flex-direction: column; align-items: flex-start; }
  .meet-right { width: 100%; justify-content: space-between; }
  .contact-alt { grid-template-columns: 1fr; }
  .service-cta-bar { flex-direction: column; align-items: flex-start; padding: 2rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .intro-strip-inner { gap: 0; }
  .intro-strip-item { padding: 0.5rem 1.5rem; }
  .refer-form-row { grid-template-columns: 1fr; }
  .pay-forward-card { padding: 2rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-right { text-align: left; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 3.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-detail-grid { padding: 2rem; }
  .case-study-story, .case-study-stats, .case-study-bottom { padding: 2rem; }
  .stats-row { grid-template-columns: 1fr; }
  .intro-strip-divider { display: none; }
  .image-break { height: 240px; }
  .image-break-overlay blockquote { font-size: 1.1rem; }
}
