*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cream:       #F3F2EE;
  --cream-dark:  #E8E5DC;
  --sand:        #C8C4B2;
  --deep:        #3D2B1F;
  --accent:      #5C8077;
  --accent-lt:   #9DBFB8;
  --accent-dk:   #2E4F48;
  --charcoal:    #201D18;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); font-weight: 300; background: var(--cream); color: var(--deep); overflow-x: hidden; padding-top: 68px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.15rem 3rem;
  background: rgba(243,242,238,0.94); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(92,128,119,0.12);
  transition: box-shadow 0.3s;
}
.nav-logo { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; letter-spacing: 0.05em; color: var(--deep); text-decoration: none; }
.nav-links { display: flex; gap: 2.25rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.74rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--deep); text-decoration: none; opacity: 0.65; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-dropdown { position: relative; display: flex; align-items: center; padding-bottom: 0; }
.nav-dropdown-menu { display: none; position: absolute; top: calc(100% + 0.75rem); left: 50%; transform: translateX(-50%); background: rgba(243,242,238,0.98); border: 1px solid rgba(92,128,119,0.18); min-width: 160px; padding: 0.5rem 0; z-index: 300; box-shadow: 0 8px 32px rgba(32,29,24,0.1); }
.nav-dropdown-menu a { display: block; padding: 0.55rem 1.1rem; font-size: 0.72rem; opacity: 0.62; white-space: nowrap; border-bottom: 1px solid rgba(92,128,119,0.08); }
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu::before { content: ''; position: absolute; top: -0.75rem; left: 0; right: 0; height: 0.75rem; }
.nav-dropdown > a { padding-bottom: 0; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-cta { font-size: 0.72rem !important; letter-spacing: 0.12em !important; color: var(--cream) !important; background: var(--accent); padding: 0.55rem 1.4rem; opacity: 1 !important; border: 1px solid var(--accent); transition: background 0.25s !important; }
.nav-cta:hover { background: var(--accent-dk) !important; border-color: var(--accent-dk) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 22px; height: 1px; background: var(--deep); display: block; }

/* ── SHARED UTILS ── */
.eyebrow { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem; display: block; }
.eyebrow-lt { color: var(--accent-lt); }
.h-serif { font-family: var(--serif); font-weight: 300; line-height: 1.2; }
.btn-dark { display: inline-block; font-size: 0.74rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--cream); background: var(--deep); border: 1px solid var(--deep); padding: 0.9rem 2.4rem; text-decoration: none; transition: all 0.3s; cursor: pointer; }
.btn-dark:hover { background: var(--accent); border-color: var(--accent); }
.btn-teal { display: inline-block; font-size: 0.74rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--cream); background: var(--accent); border: 1px solid var(--accent); padding: 0.9rem 2.4rem; text-decoration: none; transition: all 0.3s; cursor: pointer; }
.btn-teal:hover { background: var(--accent-dk); border-color: var(--accent-dk); }
.btn-outline { display: inline-block; font-size: 0.74rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--deep); background: transparent; border: 1px solid var(--deep); padding: 0.9rem 2.4rem; text-decoration: none; transition: all 0.3s; cursor: pointer; }
.btn-outline:hover { background: var(--deep); color: var(--cream); }
.btn-ghost { display: inline-block; font-size: 0.74rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--cream); background: transparent; border: 1px solid rgba(243,242,238,0.45); padding: 0.9rem 2.4rem; text-decoration: none; transition: all 0.3s; cursor: pointer; }
.btn-ghost:hover { background: rgba(243,242,238,0.1); border-color: var(--cream); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.85s ease, transform 0.85s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { position: relative; height: 58vh; min-height: 400px; display: flex; align-items: flex-end; padding: 0 3.5rem 3.5rem; overflow: hidden; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(32,29,24,0.68) 0%, rgba(92,128,119,0.1) 60%, transparent 100%); }
.page-hero-content { position: relative; z-index: 2; max-width: 780px; }
.page-hero-content h1 { font-family: var(--serif); font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 300; color: var(--cream); line-height: 1.15; margin-bottom: 1rem; }
.page-hero-content p { font-size: 0.98rem; color: rgba(243,242,238,0.78); line-height: 1.78; max-width: 560px; }

/* ── HOME ── */
.hero {
  position: relative; height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 3.5rem; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(32,29,24,0.72) 0%, rgba(92,128,119,0.18) 60%, rgba(32,29,24,0.4) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-eyebrow { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-lt); margin-bottom: 1.5rem; display: block; opacity: 0; animation: fadeUp 1s 0.2s ease forwards; }
.hero h1 { font-family: var(--serif); font-size: clamp(3rem, 5.5vw, 5rem); font-weight: 300; line-height: 1.1; color: var(--cream); margin-bottom: 1.75rem; opacity: 0; animation: fadeUp 1s 0.4s ease forwards; }
.hero h1 em { font-style: italic; color: var(--accent-lt); }
.hero-sub { font-size: 1rem; line-height: 1.82; color: rgba(243,242,238,0.78); max-width: 480px; margin-bottom: 2.5rem; opacity: 0; animation: fadeUp 1s 0.6s ease forwards; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: fadeUp 1s 0.8s ease forwards; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; opacity: 0.4; }
.hero-scroll span { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream); }
.scroll-line { width: 1px; height: 48px; background: var(--cream); animation: scrollLine 2.2s ease-in-out infinite; }
@keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }

/* HOME: intro split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: center; }
.split-text { padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.split-text h2 { font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 2.9rem); font-weight: 300; margin-bottom: 1.75rem; line-height: 1.25; }
.split-text p { font-size: 0.97rem; line-height: 1.88; opacity: 0.72; margin-bottom: 1.1rem; }
.split-text p em { font-style: italic; color: var(--accent); opacity: 1; }
.split-img { position: relative; overflow: hidden; }
.split-img img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; display: block; transition: transform 0.6s ease; }
.split-img:hover img { transform: scale(1.03); }

/* HOME: quote */
.quote-band { padding: 5.5rem 3rem; text-align: center; background: var(--accent); }
.quote-band blockquote { font-family: var(--serif); font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 300; font-style: italic; color: var(--cream); max-width: 740px; margin: 0 auto; line-height: 1.55; }
.quote-band cite { display: block; margin-top: 1.75rem; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; font-style: normal; color: rgba(243,242,238,0.7); font-family: var(--sans); }

/* HOME: services */
.services-wrap { background: var(--cream-dark); padding: 7rem 3.5rem; }
.section-header { max-width: 1140px; margin: 0 auto 4rem; }
.section-header h2 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; max-width: 1140px; margin: 0 auto 3.5rem; }
.svc-card { background: var(--cream); padding: 3rem 2.5rem; transition: background 0.3s; cursor: pointer; position: relative; overflow: hidden; }
.svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover { background: var(--deep) !important; border-top-color: var(--accent-lt) !important; }
.svc-card:hover .svc-num { color: var(--accent-lt); }
.svc-card:hover .svc-title, .svc-card:hover .svc-desc, .svc-card:hover .svc-list { color: var(--cream); opacity: 1; }
.svc-num { font-size: 0.6rem; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 2rem; display: block; transition: color 0.3s; }
.svc-title { font-family: var(--serif); font-size: 1.55rem; font-weight: 300; color: var(--deep); margin-bottom: 1.1rem; line-height: 1.3; transition: color 0.3s; }
.svc-desc { font-size: 0.88rem; line-height: 1.8; color: var(--deep); opacity: 0.62; transition: color 0.3s, opacity 0.3s; margin-bottom: 1.25rem; }
.svc-list { list-style: none; color: var(--deep); opacity: 0.55; transition: color 0.3s, opacity 0.3s; }
.svc-list li { font-size: 0.83rem; line-height: 1.85; padding-left: 1rem; position: relative; }
.svc-list li::before { content: ''; position: absolute; left: 0; top: 0.68em; width: 5px; height: 1px; background: var(--accent); }
.svc-card:hover .svc-list li::before { background: var(--accent-lt); }

/* HOME: resources */
.resources-section { padding: 7rem 3.5rem; }
.resources-section h2 { font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 2.9rem); font-weight: 300; margin-bottom: 3rem; max-width: 1140px; margin-left: auto; margin-right: auto; }
.resources-section h2 .eyebrow { margin-bottom: 0.75rem; }
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; max-width: 1140px; margin: 0 auto; }
.freebie-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.paths-four { grid-template-columns: repeat(4, 1fr); }
.resource-card { background: var(--cream-dark); padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; text-decoration: none; color: var(--deep); transition: all 0.25s; border: 1px solid transparent; }
.resource-card:hover { background: var(--accent); color: var(--cream); }
.resource-card:hover .resource-num { color: var(--accent-lt); }
.resource-num { font-size: 0.6rem; letter-spacing: 0.18em; color: var(--accent); font-family: var(--sans); transition: color 0.25s; }
.resource-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 300; line-height: 1.35; }
.resource-arrow { font-size: 0.72rem; letter-spacing: 0.1em; opacity: 0.5; margin-top: auto; transition: opacity 0.25s; }
.resource-card:hover .resource-arrow { opacity: 0.85; }

/* HOME: newsletter */
.nl-section { background: var(--accent-dk); padding: 7rem 3.5rem; text-align: center; }
.nl-section h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; color: var(--cream); margin-bottom: 1.25rem; }
.nl-section p { color: rgba(243,242,238,0.72); font-size: 0.97rem; line-height: 1.75; margin-bottom: 2.5rem; }
.nl-form { display: flex; max-width: 420px; margin: 0 auto; }
.nl-form input { flex: 1; padding: 1rem 1.2rem; border: 1px solid rgba(243,242,238,0.35); border-right: none; background: rgba(243,242,238,0.08); color: var(--cream); font-family: var(--sans); font-size: 0.9rem; font-weight: 300; outline: none; }
.nl-form input::placeholder { color: rgba(243,242,238,0.45); }
.nl-form input:focus { border-color: var(--accent-lt); }
.nl-form button { padding: 1rem 1.6rem; background: var(--cream); border: 1px solid var(--cream); color: var(--accent-dk); font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 400; cursor: pointer; transition: all 0.25s; white-space: nowrap; }
.nl-form button:hover { background: var(--accent-lt); border-color: var(--accent-lt); color: var(--deep); }
.nl-msg { margin-top: 1rem; font-size: 0.82rem; color: var(--accent-lt); min-height: 1.4rem; }

/* HOME: instagram */
.insta-section { background: var(--cream-dark); padding: 6rem 3.5rem; text-align: center; }
.insta-section h2 { font-family: var(--serif); font-size: 1.9rem; font-weight: 300; margin-bottom: 2.5rem; }
.insta-section h2 em { font-style: italic; color: var(--accent); }
.insta-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 5px; max-width: 1140px; margin: 0 auto 2.5rem; }
.insta-tile { aspect-ratio: 1; overflow: hidden; position: relative; }
.insta-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.insta-tile:hover img { transform: scale(1.07); }
.insta-tile-overlay { position: absolute; inset: 0; background: rgba(46,79,72,0); transition: background 0.3s; display: flex; align-items: center; justify-content: center; }
.insta-tile:hover .insta-tile-overlay { background: rgba(46,79,72,0.35); }

/* ── FOOTER ── */
footer { background: var(--charcoal); color: var(--cream); padding: 4.5rem 3.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 4rem; max-width: 1140px; margin: 0 auto 3rem; }
.footer-logo-link { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; letter-spacing: 0.05em; color: var(--cream); display: block; margin-bottom: 1.25rem; text-decoration: none; }
.footer-brand p { font-size: 0.86rem; line-height: 1.8; opacity: 0.48; max-width: 270px; }
.footer-socials { display: flex; gap: 0.7rem; margin-top: 1.5rem; }
.social-pill { width: 34px; height: 34px; border: 1px solid rgba(243,242,238,0.2); display: flex; align-items: center; justify-content: center; color: var(--cream); text-decoration: none; font-size: 0.66rem; letter-spacing: 0.06em; transition: all 0.25s; }
.social-pill:hover { border-color: var(--accent); background: var(--accent); }
.footer-col h4 { font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 1.5rem; opacity: 0.38; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a { font-size: 0.86rem; color: var(--cream); text-decoration: none; opacity: 0.55; transition: opacity 0.2s; }
.footer-col ul a:hover { opacity: 1; }
.footer-bottom { max-width: 1140px; margin: 0 auto; border-top: 1px solid rgba(243,242,238,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.76rem; opacity: 0.3; }
.footer-email { font-size: 0.8rem; color: var(--accent-lt); opacity: 0.7; text-decoration: none; }

/* ── ABOUT PAGE ── */
.about-story { padding: 0; }
.about-story .inner { display: grid; grid-template-columns: 1fr 1fr; }
.about-text { padding: 5.5rem 4.5rem; display: flex; flex-direction: column; justify-content: center; }
.about-text h2 { font-family: var(--serif); font-size: clamp(1.9rem, 3vw, 2.7rem); font-weight: 300; margin-bottom: 2rem; line-height: 1.25; }
.about-text p { font-size: 0.96rem; line-height: 1.9; opacity: 0.72; margin-bottom: 1.2rem; }
.about-text p em { font-style: italic; color: var(--accent); opacity: 1; }
.about-img-col { position: relative; overflow: hidden; }
.about-img-col img { width: 100%; height: 100%; object-fit: cover; min-height: 620px; display: block; }
.about-img-col img.portrait { object-position: center 15%; }
.about-pullquote { background: var(--accent); padding: 5rem 3.5rem; text-align: center; }
.about-pullquote blockquote { font-family: var(--serif); font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-style: italic; font-weight: 300; color: var(--cream); max-width: 700px; margin: 0 auto; line-height: 1.55; }
.about-photos-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3px; }
.about-photos-row > div { overflow: hidden; height: 480px; }
.about-photos-row img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.about-photos-row > div:hover img { transform: scale(1.04); }
.certs-section { background: var(--cream-dark); padding: 6rem 3.5rem; }
.certs-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; max-width: 1140px; margin: 0 auto; }
.certs-inner h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 300; margin-bottom: 2.5rem; }
.cert-item { padding: 1.25rem 0; border-bottom: 1px solid var(--sand); }
.cert-item strong { display: block; font-weight: 400; font-size: 0.94rem; color: var(--accent-dk); margin-bottom: 0.25rem; }
.cert-item span { font-size: 0.87rem; opacity: 0.65; line-height: 1.65; }
.cert-img-stack { display: flex; flex-direction: column; gap: 1rem; }
.cert-img-stack img { width: 100%; object-fit: cover; display: block; }
.testimonial-band { background: var(--deep); padding: 5.5rem 3.5rem; text-align: center; }
.testimonial-band blockquote { font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2rem); font-style: italic; font-weight: 300; color: var(--cream); max-width: 700px; margin: 0 auto; line-height: 1.6; }
.testimonial-band cite { display: block; margin-top: 1.5rem; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; font-style: normal; color: var(--accent-lt); font-family: var(--sans); }

/* ── WORK WITH ME ── */
.wwm-intro { padding: 5.5rem 3.5rem; }
.wwm-intro .inner { max-width: 1140px; margin: 0 auto; }
.wwm-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-bottom: 5rem; }
.wwm-intro-grid h2 { font-family: var(--serif); font-size: clamp(1.9rem, 3vw, 2.7rem); font-weight: 300; margin-bottom: 1.5rem; line-height: 1.25; }
.wwm-intro-grid p { font-size: 0.97rem; line-height: 1.88; opacity: 0.72; margin-bottom: 1.1rem; }
.wwm-intro-img { overflow: hidden; }
.wwm-intro-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 10%; display: block; }
.paths-section { background: var(--cream-dark); padding: 6rem 3.5rem; }
.paths-section .inner { max-width: 1140px; margin: 0 auto; }
.paths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 3.5rem; }
.path-card { background: var(--cream); padding: 3rem; position: relative; }
.path-card .accent-line { width: 32px; height: 2px; background: var(--accent); margin-bottom: 1.5rem; }
.path-card h3 { font-family: var(--serif); font-size: 1.6rem; font-weight: 300; margin-bottom: 1.25rem; line-height: 1.3; }
.path-card .path-label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; display: block; }
.path-card p { font-size: 0.9rem; line-height: 1.82; opacity: 0.68; margin-bottom: 1.1rem; }
.path-card ul { list-style: none; }
.path-card ul li { font-size: 0.86rem; line-height: 1.85; opacity: 0.65; padding-left: 1rem; position: relative; }
.path-card ul li::before { content: ''; position: absolute; left: 0; top: 0.7em; width: 5px; height: 1px; background: var(--accent); }
.paths-four-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 1140px; margin: 0 auto; }
.path-four-card { padding: 2.5rem 2rem; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.path-four-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(32,29,24,0.1); }
.audience-split { display: grid; grid-template-columns: 1fr 1fr; }
.aud-split-card { position: relative; overflow: hidden; min-height: 520px; display: flex; align-items: flex-end; }
.aud-split-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.aud-split-card:hover img { transform: scale(1.04); }
.aud-split-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(32,29,24,0.78) 0%, rgba(32,29,24,0.1) 55%, transparent 100%); }
.aud-split-content { position: relative; z-index: 2; padding: 2.5rem; }
.aud-split-content .eyebrow { color: var(--accent-lt); margin-bottom: 0.5rem; }
.aud-split-content h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; color: var(--cream); margin-bottom: 0.75rem; }
.aud-split-content p { font-size: 0.88rem; color: rgba(243,242,238,0.72); line-height: 1.7; margin-bottom: 1.25rem; max-width: 340px; }
.aud-link { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-lt); text-decoration: none; border-bottom: 1px solid var(--accent-lt); padding-bottom: 2px; transition: color 0.2s; }
.aud-link:hover { color: var(--cream); border-color: var(--cream); }
.email-capture { background: var(--cream-dark); padding: 5.5rem 3.5rem; }
.email-capture .inner { max-width: 560px; margin: 0 auto; text-align: center; }
.email-capture h3 { font-family: var(--serif); font-size: 1.9rem; font-weight: 300; margin-bottom: 1rem; }
.email-capture p { font-size: 0.95rem; line-height: 1.78; opacity: 0.68; margin-bottom: 2rem; }
.email-form { display: flex; max-width: 400px; margin: 0 auto; }
.email-form input { flex: 1; padding: 0.9rem 1.1rem; border: 1px solid var(--sand); border-right: none; background: var(--cream); font-family: var(--sans); font-size: 0.9rem; font-weight: 300; outline: none; color: var(--deep); }
.email-form input:focus { border-color: var(--accent); }
.email-form button { padding: 0.9rem 1.5rem; background: var(--accent); border: 1px solid var(--accent); color: var(--cream); font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all 0.25s; white-space: nowrap; }
.email-form button:hover { background: var(--accent-dk); border-color: var(--accent-dk); }
.form-msg { margin-top: 1rem; font-size: 0.82rem; color: var(--accent); min-height: 1.4rem; }

/* ── AUDIENCE PAGES ── */
.aud-page { padding: 5.5rem 3.5rem; }
.aud-page .inner { max-width: 1000px; margin: 0 auto; }
.aud-intro { font-size: 1.05rem; line-height: 1.85; opacity: 0.72; margin-bottom: 3.5rem; max-width: 720px; }
.diff-block { background: var(--cream-dark); padding: 2.5rem 3rem; margin-bottom: 3.5rem; border-left: 3px solid var(--accent); }
.diff-block h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; margin-bottom: 1rem; }
.diff-block p { font-size: 0.92rem; line-height: 1.85; opacity: 0.7; }
.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; margin-bottom: 3.5rem; }
.two-cols h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; margin-bottom: 1.25rem; }
.two-cols ul { list-style: none; }
.two-cols ul li { font-size: 0.9rem; line-height: 1.9; opacity: 0.68; padding-left: 1rem; position: relative; }
.two-cols ul li::before { content: ''; position: absolute; left: 0; top: 0.7em; width: 5px; height: 1px; background: var(--accent); }
.session-flow { margin-bottom: 3.5rem; }
.session-flow h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; margin-bottom: 2rem; }
.session-flow p.note { font-size: 0.88rem; opacity: 0.6; margin-bottom: 2rem; }
.session-step { display: flex; gap: 1.5rem; margin-bottom: 1.75rem; align-items: flex-start; }
.step-dot { width: 30px; height: 30px; flex-shrink: 0; border: 1px solid var(--accent); display: flex; align-items: center; justify-content: center; font-size: 0.62rem; letter-spacing: 0.08em; color: var(--accent); }
.step-body h4 { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; margin-bottom: 0.3rem; }
.step-body p { font-size: 0.87rem; line-height: 1.75; opacity: 0.67; }
.aud-img-strip { width: 100%; height: 420px; object-fit: cover; object-position: center 30%; display: block; margin: 3.5rem 0; }
.aud-cta-dark { background: var(--deep); padding: 5.5rem 3.5rem; text-align: center; }
.aud-cta-dark h2 { font-family: var(--serif); font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 300; color: var(--cream); margin-bottom: 1.25rem; }
.aud-cta-dark p { color: rgba(243,242,238,0.68); font-size: 0.97rem; margin-bottom: 2.5rem; }

/* COUPLES */
.couple-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.couple-path { background: var(--cream-dark); padding: 3rem; }
.couple-path h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; margin-bottom: 1.25rem; line-height: 1.3; }
.couple-path p { font-size: 0.9rem; line-height: 1.82; opacity: 0.7; margin-bottom: 1rem; }
.couple-path ul { list-style: none; }
.couple-path ul li { font-size: 0.86rem; line-height: 1.85; opacity: 0.65; padding-left: 1rem; position: relative; }
.couple-path ul li::before { content: ''; position: absolute; left: 0; top: 0.68em; width: 5px; height: 1px; background: var(--accent); }

/* ── BOOK ── */
.book-intro { padding: 5.5rem 3.5rem; }
.book-intro .inner { max-width: 900px; margin: 0 auto; }
.book-lead { font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 300; line-height: 1.4; color: var(--deep); margin-bottom: 2.5rem; max-width: 680px; }
.book-body p { font-size: 1rem; line-height: 1.9; opacity: 0.7; margin-bottom: 1.25rem; max-width: 660px; }
.book-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; max-width: 900px; margin: 4rem 0; }
.book-card { background: var(--cream-dark); padding: 2.5rem 2rem; transition: background 0.3s; cursor: pointer; }
.book-card:hover { background: var(--accent); }
.book-card:hover h3, .book-card:hover p { color: var(--cream); }
.book-card:hover .book-meta { color: var(--accent-lt); opacity: 1; }
.book-card h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 300; margin-bottom: 0.75rem; transition: color 0.3s; }
.book-card p { font-size: 0.86rem; line-height: 1.75; opacity: 0.65; transition: color 0.3s; margin-bottom: 0.75rem; }
.book-meta { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--accent); opacity: 0.8; transition: color 0.3s; }
.book-featured { background: var(--deep); position: relative; }
.book-featured h3, .book-featured p { color: var(--cream); }
.book-featured .book-meta { color: var(--accent-lt); opacity: 1; }
.book-badge { display: inline-block; background: var(--accent); color: var(--cream); font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.25rem 0.7rem; margin-bottom: 1rem; }
.book-featured:hover { background: var(--accent-dk); }
.book-cta-strip { background: var(--accent); padding: 5.5rem 3.5rem; text-align: center; }
.book-cta-strip h2 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 2.9rem); font-weight: 300; color: var(--cream); margin-bottom: 1.25rem; }
.book-cta-strip p { color: rgba(243,242,238,0.75); margin-bottom: 2.5rem; }
.book-cta-strip .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 0 1.5rem; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .page-hero { padding: 0 1.5rem 2.5rem; }
  .split { grid-template-columns: 1fr !important; }
  .split-img { order: 1; width: 100%; }
  .split-img img { width: 100%; height: 400px; min-height: 400px; object-fit: cover; display: block; }
  .split-text { padding: 2.5rem 1.5rem; order: 2; }
  .quote-band { padding: 3.5rem 1.5rem; }
  .services-wrap { padding: 4rem 1.5rem; }
  .freebie-section { padding: 4rem 1.5rem !important; }
  .freebie-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .paths-four { grid-template-columns: 1fr; }
  .svc-card { padding: 2rem 1.5rem; }
  .about-story .inner { grid-template-columns: 1fr; }
  .about-text { padding: 3rem 1.5rem; }
  .about-img-col img { min-height: 350px; }
  .about-photos-row { grid-template-columns: 1fr; }
  .about-photos-row > div { height: 300px; }
  .certs-section { padding: 4rem 1.5rem; }
  .certs-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .wwm-intro { padding: 3.5rem 1.5rem; }
  .wwm-intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .paths-grid { grid-template-columns: 1fr; }
  .paths-four-grid { grid-template-columns: 1fr; gap: 1rem; }
  .audience-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .book-grid { grid-template-columns: 1fr; }
  .book-intro { padding: 3.5rem 1.5rem; }
  .resources-grid { grid-template-columns: 1fr; }
  .resources-section { padding: 4rem 1.5rem; }
  .speaker-gallery { grid-template-columns: 1fr 1fr !important; }
  .speaker-gallery > div:first-child { grid-column: 1 / -1; grid-row: auto; }
  .speaker-gallery img { height: 220px !important; }
  .two-cols { grid-template-columns: 1fr; gap: 2rem; }
  .couple-paths { grid-template-columns: 1fr; }
  .nl-section { padding: 4rem 1.5rem; }
  .nl-form { flex-direction: column; }
  .nl-form input { border-right: 1px solid rgba(243,242,238,0.35); border-bottom: none; }
  .insta-grid { grid-template-columns: repeat(2,1fr); }
  .aud-cta-dark { padding: 4rem 1.5rem; }
}
