/*
Theme Name: InnerLifeWork
Theme URI: https://innerlifework.com
Description: Standalone WordPress theme for InnerLifeWork.com — trauma-informed therapy & inner work. Implements the ILW brand system: sage / dusty-rose / cream palette, Cormorant Garamond + Jost typography, soft pill buttons, gentle cards, and dark feature bands. No page-builder or parent-theme dependency.
Author: InnerLifeWork
Author URI: https://innerlifework.com
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: innerlifework
Tags: blog, business, portfolio, custom-menu, featured-images, full-width-template, threaded-comments, translation-ready
*/

/* =========================================================
   1. BRAND TOKENS
   ========================================================= */
:root {
  --ilw-sage:        #8BA888;
  --ilw-rose:        #D4A0A0;
  --ilw-taupe:       #B8A99A;
  --ilw-cream:       #F5F0E8;
  --ilw-gold:        #C9B37B;
  --ilw-dark:        #3D3530;
  --ilw-sage-light:  #b5cdb3;
  --ilw-cream-dark:  #ede7d9;
  --ilw-sage-dark:   #6a8a67;
  --ilw-white:       #ffffff;
  --ilw-teal:        #7AAFB0;
  --ilw-gold-accent: #D4A857;
  --ilw-mauve:       #C9A0B8;

  --ilw-font-serif:  "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --ilw-font-sans:   "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --ilw-container:   1060px;
  --ilw-radius-card: 18px;
  --ilw-radius-pill: 30px;
  --ilw-shadow-card: 0 4px 20px rgba(0,0,0,0.06);
  --ilw-shadow-hover:0 12px 32px rgba(0,0,0,0.10);
}

/* =========================================================
   2. RESET / BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--ilw-font-sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ilw-dark);
  background: var(--ilw-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--ilw-sage-dark); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--ilw-dark); }

h1, h2, h3 {
  font-family: var(--ilw-font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ilw-dark);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.4rem; }
h4, h5, h6 {
  font-family: var(--ilw-font-sans);
  font-weight: 600;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1.1em; }

::selection { background: var(--ilw-sage-light); color: var(--ilw-dark); }

/* =========================================================
   3. LAYOUT HELPERS
   ========================================================= */
.ilw-container {
  max-width: var(--ilw-container);
  margin-inline: auto;
  padding-inline: 2rem;
}

.ilw-section { padding: 80px 2rem; }
.ilw-section--cream { background: var(--ilw-cream); }
.ilw-section--white { background: var(--ilw-white); }

.ilw-eyebrow {
  display: inline-block;
  font-family: var(--ilw-font-sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ilw-sage);
  margin-bottom: 0.75rem;
}

.ilw-lead {
  max-width: 600px;
  font-size: 1.15rem;
  line-height: 1.6;
}
.ilw-center { text-align: center; }
.ilw-center .ilw-lead { margin-inline: auto; }

.screen-reader-text {
  position: absolute !important;
  clip: rect(1px,1px,1px,1px);
  width: 1px; height: 1px; overflow: hidden;
}

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ilw-dark); color: #fff;
  padding: 0.6rem 1rem; z-index: 1000; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* =========================================================
   4. BUTTONS
   ========================================================= */
.ilw-btn,
.wp-block-button__link,
button, input[type="submit"] {
  display: inline-block;
  font-family: var(--ilw-font-sans);
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--ilw-radius-pill);
  padding: 0.9rem 2.4rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid var(--ilw-sage);
  background: var(--ilw-sage);
  color: var(--ilw-white);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.ilw-btn:hover,
.wp-block-button__link:hover,
button:hover, input[type="submit"]:hover {
  background: var(--ilw-sage-dark);
  border-color: var(--ilw-sage-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--ilw-shadow-card);
}

.ilw-btn--ghost {
  background: transparent;
  color: var(--ilw-sage);
  border-color: var(--ilw-sage);
}
.ilw-btn--ghost:hover { background: var(--ilw-sage); color: #fff; }

.ilw-btn--white {
  background: #fff;
  color: var(--ilw-sage-dark);
  border-color: #fff;
}
.ilw-btn--white:hover { background: #fff; color: var(--ilw-sage-dark); box-shadow: 0 8px 24px rgba(0,0,0,.18); }

.ilw-btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.ilw-center .ilw-btn-row { justify-content: center; }

/* =========================================================
   5. HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--ilw-cream-dark);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--ilw-container);
  margin-inline: auto;
  padding: 0.9rem 2rem;
}
.site-branding a { text-decoration: none; }
.site-title {
  font-family: var(--ilw-font-serif);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--ilw-dark);
  margin: 0;
  line-height: 1;
}
.site-tagline {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ilw-sage); margin: 0;
}
.custom-logo { max-height: 48px; width: auto; }

.main-nav ul { list-style: none; display: flex; gap: 1.6rem; margin: 0; padding: 0; }
.main-nav a {
  font-family: var(--ilw-font-sans); font-weight: 500; font-size: 0.95rem;
  color: var(--ilw-dark); text-decoration: none;
}
.main-nav a:hover,
.main-nav .current-menu-item > a { color: var(--ilw-sage); }

.header-actions { display: flex; align-items: center; gap: 1rem; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent; border: none; padding: 0.4rem;
  font-size: 1.5rem; color: var(--ilw-dark); cursor: pointer;
}
.nav-toggle:hover { background: transparent; transform: none; box-shadow: none; color: var(--ilw-sage); }

/* =========================================================
   6. HERO
   ========================================================= */
.ilw-hero { padding: 110px 2rem; text-align: center; }
.ilw-hero--primary {
  background: linear-gradient(135deg, var(--ilw-sage) 0%, var(--ilw-sage-dark) 100%);
  color: #fff;
}
.ilw-hero--primary h1,
.ilw-hero--primary .ilw-eyebrow { color: #fff; }
.ilw-hero--primary .ilw-eyebrow { opacity: 0.9; }
.ilw-hero--interior { background: var(--ilw-cream); }
.ilw-hero h1 { max-width: 16ch; margin-inline: auto; }
.ilw-hero p { max-width: 560px; margin: 0 auto 1.75rem; }

/* =========================================================
   7. CARDS / GRID
   ========================================================= */
.ilw-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: var(--ilw-container); margin-inline: auto;
}
.ilw-grid--2 { grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); }

.ilw-card {
  background: #fff;
  border-radius: var(--ilw-radius-card);
  padding: 1.8rem;
  border-top: 3px solid var(--ilw-sage);
  box-shadow: var(--ilw-shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ilw-card:hover { transform: translateY(-4px); box-shadow: var(--ilw-shadow-hover); }
.ilw-card--cream { background: var(--ilw-cream); }
.ilw-card h3 { margin-top: 0; }
.ilw-card__icon { font-size: 1.8rem; margin-bottom: 0.6rem; display: block; }

/* Two-column feature (text + media) */
.ilw-split {
  display: grid; gap: 3rem; align-items: center;
  grid-template-columns: 1fr 1fr;
  max-width: var(--ilw-container); margin-inline: auto;
}
.ilw-split__media img,
.ilw-split__media .placeholder {
  border-radius: var(--ilw-radius-card);
}
.ilw-split .placeholder {
  background: var(--ilw-cream-dark);
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  color: var(--ilw-taupe); font-family: var(--ilw-font-serif); font-size: 1.2rem;
}

/* =========================================================
   8. DARK STAT BAND
   ========================================================= */
.ilw-dark { background: var(--ilw-dark); color: rgba(255,255,255,0.75); padding: 80px 2rem; }
.ilw-dark h2 { color: #fff; }
.ilw-stats {
  display: grid; gap: 2rem; text-align: center;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  max-width: var(--ilw-container); margin-inline: auto;
}
.ilw-stat__number {
  font-family: var(--ilw-font-serif); font-weight: 500;
  font-size: clamp(2.6rem, 5vw, 3.4rem); color: var(--ilw-gold); line-height: 1;
}
.ilw-stat__label {
  font-family: var(--ilw-font-sans); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
}

/* =========================================================
   9. POST / PAGE CONTENT
   ========================================================= */
.ilw-main { padding: 64px 0; }
.entry-header { margin-bottom: 1.5rem; }
.entry-meta { font-size: 0.85rem; color: var(--ilw-taupe); }
.entry-content { max-width: 720px; }
.entry-content img { border-radius: var(--ilw-radius-card); margin: 1.5rem 0; }
.entry-content blockquote {
  border-left: 3px solid var(--ilw-sage);
  margin: 1.5rem 0; padding: 0.5rem 0 0.5rem 1.5rem;
  font-family: var(--ilw-font-serif); font-size: 1.3rem; font-style: italic;
  color: var(--ilw-sage-dark);
}
.entry-content a { color: var(--ilw-sage-dark); }

.post-card {
  background: #fff; border-radius: var(--ilw-radius-card);
  box-shadow: var(--ilw-shadow-card); overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--ilw-shadow-hover); }
.post-card__body { padding: 1.4rem 1.6rem 1.8rem; }
.post-card__title { margin: 0 0 0.4rem; font-size: 1.3rem; }
.post-card__title a { text-decoration: none; color: var(--ilw-dark); }
.post-card__title a:hover { color: var(--ilw-sage); }

.pagination { margin-top: 2.5rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.pagination .page-numbers {
  padding: 0.5rem 0.9rem; border-radius: 8px; text-decoration: none;
  background: var(--ilw-cream); color: var(--ilw-dark);
}
.pagination .page-numbers.current { background: var(--ilw-sage); color: #fff; }

/* =========================================================
   10. FOOTER
   ========================================================= */
.site-footer { background: var(--ilw-dark); color: rgba(255,255,255,0.6); padding: 64px 2rem 2rem; }
.site-footer__grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 2fr 1fr 1.5fr;
  max-width: var(--ilw-container); margin-inline: auto;
}
.site-footer h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }
.site-footer a { color: var(--ilw-gold); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer__brand-title { font-family: var(--ilw-font-serif); font-size: 1.4rem; color: #fff; margin: 0 0 0.5rem; }
.site-footer__bottom {
  max-width: var(--ilw-container); margin: 2.5rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}

/* =========================================================
   11. MAILERLITE OVERRIDES (form id czqLgr)
   ========================================================= */
.ml-form-embedWrapper { background: transparent !important; font-family: var(--ilw-font-sans) !important; }
.ml-form-embedWrapper input[type="email"],
.ml-form-embedWrapper input[type="text"] {
  border-radius: var(--ilw-radius-pill) !important;
  border: 1.5px solid var(--ilw-taupe) !important;
  font-family: var(--ilw-font-sans) !important; padding: 0.8rem 1.2rem !important;
}
.ml-form-embedWrapper button.primary,
.ml-form-embedSubmit button {
  background: var(--ilw-sage) !important; border-radius: var(--ilw-radius-pill) !important;
  font-family: var(--ilw-font-sans) !important; font-weight: 600 !important; letter-spacing: 0.05em !important;
}
.ml-form-embedWrapper button.primary:hover { background: var(--ilw-sage-dark) !important; }

/* Inline newsletter fallback */
.ilw-newsletter form { display: flex; gap: 0.6rem; max-width: 460px; margin: 1.2rem auto 0; flex-wrap: wrap; }
.ilw-newsletter input[type="email"] {
  flex: 1 1 220px; border-radius: var(--ilw-radius-pill); border: 1.5px solid var(--ilw-taupe);
  padding: 0.85rem 1.2rem; font-family: var(--ilw-font-sans); font-size: 1rem; color: var(--ilw-dark);
}

/* =========================================================
   12. RESPONSIVE (375px / 768px)
   ========================================================= */
@media (max-width: 900px) {
  .ilw-split { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .ilw-grid--2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .ilw-section, .ilw-dark { padding: 48px 1.25rem; }
  .ilw-hero { padding: 72px 1.25rem; }
  .ilw-container, .site-header__inner { padding-inline: 1.25rem; }

  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--ilw-cream-dark);
    padding: 1rem 1.25rem;
  }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0.9rem; }
}

@media (max-width: 375px) {
  .ilw-btn, .wp-block-button__link { width: 100%; text-align: center; }
  .ilw-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   Inner Life Work — 2026 Product-Brand Design System
   Extracted from the ILW page designs (Homepage, About, Shop,
   For Therapists, Find a Therapist). Loads AFTER style.css.
   Theme version 1.1.0
   ===================================================================== */

/* ─── 1. TOKENS (2026 system — coexists with legacy --ilw-* tokens) ─── */
:root {
  --sage:       #8BA888;
  --sage-light: #b4ccb2;
  --sage-dark:  #6a8a67;
  --rose:       #D4A0A0;
  --rose-light: #ead0d0;
  --taupe:      #B8A99A;
  --cream:      #F5F0E8;
  --cream-dark: #ede6d8;
  --gold:       #C9B37B;
  --gold-light: #ddd0a8;
  --dark:       #3D3530;
  --mid:        #6B5E57;
  --light-mid:  #9a8880;
}

/* ─── 2. BASE ─── */
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ─── 3. BRAND ORB ─── */
.ilw-orb { position: relative; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.ilw-orb svg { position: relative; z-index: 2; width: 100%; height: 100%; display: block; }
.ilw-orb-halo { position: absolute; inset: -22%; border-radius: 50%; z-index: 1; filter: blur(3px);
  background: radial-gradient(circle, rgba(201,179,123,.6) 0%, rgba(201,179,123,.3) 38%, transparent 70%); }
.ilw-orb--nav { width: 34px; height: 34px; }
.ilw-orb--nav .ilw-orb-halo { inset: -12%; background: radial-gradient(circle, rgba(201,179,123,.45) 0%, transparent 62%); }
.ilw-orb--hero { width: 64px; height: 64px; margin-bottom: 1.6rem; }
.ilw-orb--hero .ilw-orb-halo { inset: -30%; background: radial-gradient(circle, rgba(201,179,123,.7) 0%, rgba(201,179,123,.35) 40%, transparent 72%); animation: ilw-breathe 4.5s ease-in-out infinite; }
@keyframes ilw-breathe { 0%,100% { opacity:.5; transform:scale(.85);} 50% { opacity:1; transform:scale(1.18);} }
.ilw-orb-ring { transform-box: fill-box; transform-origin: center; transform: rotate(-90deg); stroke-dasharray: 252; stroke-dashoffset: 252; animation: ilw-ring-spin 1.1s ease-out 0.15s forwards; }
@keyframes ilw-ring-spin { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .ilw-orb-halo { animation: none !important; opacity:.8; }
  .ilw-orb-ring { animation: none; stroke-dashoffset: 0; }
}

/* ─── 4. ANNOUNCEMENT BAR ─── */
.announcement {
  background: var(--dark);
  color: var(--gold-light);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ─── 5. TOP NAV ─── */
.ilw-topnav {
  background: rgba(245,240,232,0.97);
  border-bottom: 1px solid rgba(184,169,154,0.3);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.08em;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
}
.nav-logo:hover { color: var(--dark); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 0.15rem;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--sage-dark); }
.nav-links a.active { color: var(--dark); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.nav-links a.nav-cta {
  background: var(--sage) !important;
  color: white !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 2px;
  letter-spacing: 0.12em !important;
  border-bottom: none;
}
.nav-links a.nav-cta:hover { background: var(--sage-dark) !important; }

/* Mobile toggle (hooks into assets/nav.js: .nav-toggle + #primary-menu) */
.ilw-topnav .nav-toggle {
  display: none;
  background: transparent; border: none; padding: 0.4rem;
  font-size: 1.5rem; color: var(--dark); cursor: pointer;
  transform: none; box-shadow: none;
}
.ilw-topnav .nav-toggle:hover { background: transparent; color: var(--sage-dark); transform: none; box-shadow: none; }

@media (max-width: 960px) {
  .ilw-topnav { padding: 0 1.5rem; }
  .ilw-topnav .nav-toggle { display: block; }
  .ilw-topnav .nav-links {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--cream);
    border-bottom: 1px solid rgba(184,169,154,0.3);
    padding: 1.2rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
  }
  .ilw-topnav .nav-links.is-open { display: flex; }
}

/* ─── 6. SHARED EDITORIAL ELEMENTS ─── */
.section-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--gold); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1.4rem;
}
.section-title em { font-style: italic; color: var(--sage-dark); }

.body-text { font-size: 0.95rem; color: var(--mid); line-height: 1.95; margin-bottom: 1.2rem; }

/* Buttons */
.btn-primary {
  background: var(--sage); color: white; padding: 0.9rem 2.2rem;
  font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none;
  border: none; border-radius: 2px; text-align: center; cursor: pointer;
  transition: background 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--sage-dark); color: white; transform: none; box-shadow: none; }
.btn-outline {
  border: 1px solid rgba(245,240,232,0.2); color: rgba(245,240,232,0.6);
  padding: 0.9rem 2.2rem; font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 300;
  letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none;
  border-radius: 2px; text-align: center; display: inline-block; background: transparent;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: rgba(245,240,232,0.5); color: var(--cream); background: transparent; transform: none; box-shadow: none; }
.btn-ghost {
  color: rgba(245,240,232,0.7); font-size: 0.78rem; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.2s;
}
.btn-ghost:hover { color: var(--cream); }
.btn-ghost::after { content: '→'; }

/* ─── 7. INTERIOR PAGE HERO ─── */
.page-hero { background: var(--dark); padding: 7rem 6rem 6rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; right: -80px; top: -80px; width: 420px; height: 420px; border-radius: 50%; background: rgba(139,168,136,0.07); }
.page-hero::after { content: ''; position: absolute; left: 42%; bottom: -100px; width: 300px; height: 300px; border-radius: 50%; background: rgba(212,160,160,0.05); }
.page-hero-inner { max-width: 700px; position: relative; z-index: 2; }
.page-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.75rem;
  animation: ilw-fadeUp 0.6s ease both;
}
.page-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 300; color: var(--cream); line-height: 1.1; margin-bottom: 1.5rem;
  animation: ilw-fadeUp 0.6s 0.1s ease both;
}
.page-hero h1 em { font-style: italic; color: var(--rose); }
.page-hero-sub { font-size: 1rem; color: rgba(245,240,232,0.55); line-height: 1.85; max-width: 560px; animation: ilw-fadeUp 0.6s 0.2s ease both; }
.credential-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 2.5rem; animation: ilw-fadeUp 0.6s 0.3s ease both; }
.cred-pill {
  background: rgba(201,179,123,0.15); border: 1px solid rgba(201,179,123,0.3);
  color: var(--gold-light); padding: 0.35rem 1rem; font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase; border-radius: 20px;
}

@keyframes ilw-fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ─── 8. HOMEPAGE — HERO SPLIT ─── */
.ilw-hero-2026 {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero-left {
  background: var(--dark);
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 5rem 6rem 6rem;
  position: relative; z-index: 2;
}
.hero-left::after {
  content: ''; position: absolute; right: -40px; top: 0; bottom: 0; width: 80px;
  background: var(--dark); clip-path: polygon(0 0, 0 100%, 100% 100%); z-index: 3;
}
.hero-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem;
  animation: ilw-fadeUp 0.7s ease both;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 300; color: var(--cream); line-height: 1.12; margin-bottom: 1.8rem;
  animation: ilw-fadeUp 0.7s 0.15s ease both;
}
.hero-headline em { font-style: italic; color: var(--rose); }
.hero-subhead {
  font-size: 0.95rem; font-weight: 300; color: rgba(245,240,232,0.65);
  line-height: 1.9; max-width: 440px; margin-bottom: 2.8rem;
  animation: ilw-fadeUp 0.7s 0.3s ease both;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; animation: ilw-fadeUp 0.7s 0.45s ease both; }
.hero-credential {
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 1rem;
  animation: ilw-fadeUp 0.7s 0.6s ease both;
}
.credential-badge {
  background: rgba(201,179,123,0.15); border: 1px solid rgba(201,179,123,0.3);
  padding: 0.4rem 0.9rem; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light); border-radius: 20px; white-space: nowrap;
}
.credential-text { font-size: 0.78rem; color: rgba(245,240,232,0.45); line-height: 1.5; }
.hero-right {
  background: var(--cream-dark); position: relative;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-botanical {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(139,168,136,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 30% 80%, rgba(212,160,160,0.1) 0%, transparent 60%);
}
.hero-product-stack { position: relative; width: 340px; height: 400px; }
.stack-card {
  position: absolute; background: white; border-radius: 3px;
  box-shadow: 0 8px 40px rgba(61,53,48,0.12); padding: 2rem; width: 240px;
}
.stack-card:nth-child(1) { top: 0; left: 60px; border-top: 3px solid var(--sage); transform: rotate(-3deg); animation: ilw-fadeUp 0.6s 0.3s ease both; }
.stack-card:nth-child(2) { top: 80px; left: 20px; border-top: 3px solid var(--rose); transform: rotate(1.5deg); z-index: 2; animation: ilw-fadeUp 0.6s 0.5s ease both; }
.stack-card:nth-child(3) { top: 165px; left: 80px; border-top: 3px solid var(--gold); transform: rotate(-1deg); z-index: 3; animation: ilw-fadeUp 0.6s 0.7s ease both; }
.stack-card-label { font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--taupe); margin-bottom: 0.4rem; }
.stack-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500; color: var(--dark); line-height: 1.2; }
.stack-card-price { margin-top: 0.6rem; font-size: 0.78rem; color: var(--sage-dark); font-weight: 400; }
.hero-trust-strip {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 2rem; align-items: center; white-space: nowrap;
}
.trust-item {
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--taupe);
  display: flex; align-items: center; gap: 0.4rem;
}
.trust-item::before { content: '✦'; font-size: 0.45rem; color: var(--gold); }

/* ─── 9. HOMEPAGE — INTRO STRIP ─── */
.intro-strip {
  background: var(--sage); padding: 1.2rem 3rem;
  display: flex; justify-content: center; gap: 4rem; align-items: center; flex-wrap: wrap;
}
.intro-strip-item {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); display: flex; align-items: center; gap: 0.6rem;
}
.intro-strip-item .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.4); }

/* ─── 10. HOMEPAGE — ABOUT INTRO ─── */
.about-intro {
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
  padding: 6rem 6rem;
}
.about-image-block { position: relative; }
.about-image-placeholder {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--rose-light) 100%);
  border-radius: 3px; aspect-ratio: 4/5;
  display: flex; align-items: flex-end; padding: 2rem;
  position: relative; overflow: hidden;
}
.about-image-caption {
  background: rgba(61,53,48,0.7); backdrop-filter: blur(8px);
  padding: 1.2rem 1.5rem; border-radius: 2px; position: relative; z-index: 2;
}
.about-image-caption strong {
  display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  font-weight: 400; color: var(--cream); margin-bottom: 0.2rem;
}
.about-image-caption span { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light); }
.about-floating-badge {
  position: absolute; top: -1.5rem; right: -1.5rem;
  background: var(--dark); color: var(--cream);
  width: 90px; height: 90px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; text-align: center;
  line-height: 1.4; border: 2px solid var(--gold);
}
.about-content .section-body { max-width: 100%; margin-bottom: 1.5rem; }
.section-body { font-size: 0.95rem; color: var(--mid); line-height: 1.9; max-width: 560px; }
.modalities-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; margin-bottom: 2rem; }
.modality-tag {
  background: rgba(139,168,136,0.12); border: 1px solid rgba(139,168,136,0.3);
  color: var(--sage-dark); padding: 0.3rem 0.85rem; font-size: 0.72rem;
  letter-spacing: 0.08em; border-radius: 20px;
}

/* ─── 11. HOMEPAGE — PRODUCTS GRID ─── */
.products-section { background: white; padding: 6rem 6rem; }
.products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; gap: 2rem; flex-wrap: wrap; }
.products-header-left { max-width: 500px; }
.view-all-link {
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage-dark); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem; transition: gap 0.2s;
}
.view-all-link:hover { gap: 0.9rem; color: var(--sage-dark); }
.view-all-link::after { content: '→'; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.product-tile {
  background: var(--cream); border-radius: 3px; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative;
}
.product-tile:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(61,53,48,0.1); }
.product-tile-image { aspect-ratio: 3/4; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.product-tile:nth-child(1) .product-tile-image { background: linear-gradient(145deg, #c5d9c4, #e8d8d8); }
.product-tile:nth-child(2) .product-tile-image { background: linear-gradient(145deg, #d9c8c8, #c4d4c3); }
.product-tile:nth-child(3) .product-tile-image { background: linear-gradient(145deg, #e4dbc9, #c5d9c4); }
.product-tile:nth-child(4) .product-tile-image { background: linear-gradient(145deg, #c4d4c3, #e4dbc9); }
.product-tile-icon { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: rgba(61,53,48,0.15); font-style: italic; }
.product-tile-badge {
  position: absolute; top: 0.8rem; left: 0.8rem; background: white;
  padding: 0.25rem 0.7rem; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mid); border-radius: 20px;
}
.product-tile-body { padding: 1.2rem 1.4rem 1.5rem; }
.product-tile-category { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe); margin-bottom: 0.4rem; }
.product-tile-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500; color: var(--dark); line-height: 1.2; margin-bottom: 0.5rem; }
.product-tile-desc { font-size: 0.8rem; color: var(--light-mid); line-height: 1.6; margin-bottom: 1rem; }
.product-tile-footer { display: flex; justify-content: space-between; align-items: center; }
.product-price { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; color: var(--dark); }
.product-add-btn {
  background: var(--dark); color: var(--cream); border: none;
  padding: 0.45rem 1rem; font-family: 'Jost', sans-serif; font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
  border-radius: 2px; transition: background 0.2s; text-decoration: none; display: inline-block;
}
.product-add-btn:hover { background: var(--sage-dark); color: var(--cream); transform: none; box-shadow: none; }

/* Bundle tile */
.bundle-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 1.5rem; }
.bundle-tile {
  background: var(--dark); border-radius: 3px; padding: 2.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  position: relative; overflow: hidden;
}
.bundle-tile::before { content: ''; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px; border-radius: 50%; background: rgba(139,168,136,0.08); }
.bundle-tile::after { content: ''; position: absolute; right: 60px; bottom: -80px; width: 200px; height: 200px; border-radius: 50%; background: rgba(212,160,160,0.06); }
.bundle-content { position: relative; z-index: 2; }
.bundle-label {
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.6rem;
}
.bundle-label::before { content: '✦'; font-size: 0.4rem; }
.bundle-title { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 400; color: var(--cream); margin-bottom: 0.6rem; }
.bundle-desc { font-size: 0.82rem; color: rgba(245,240,232,0.55); line-height: 1.7; max-width: 360px; }
.bundle-cta-area { position: relative; z-index: 2; text-align: right; flex-shrink: 0; }
.bundle-pricing { margin-bottom: 1.2rem; }
.bundle-was { font-size: 0.78rem; color: rgba(245,240,232,0.35); text-decoration: line-through; margin-bottom: 0.2rem; }
.bundle-price { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 400; color: var(--cream); line-height: 1; }
.bundle-save { font-size: 0.7rem; letter-spacing: 0.12em; color: var(--gold-light); margin-top: 0.2rem; }
.btn-bundle {
  background: var(--sage); color: white; padding: 0.85rem 2rem;
  font-family: 'Jost', sans-serif; font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase; border: none; cursor: pointer;
  border-radius: 2px; transition: background 0.2s; text-decoration: none; display: inline-block;
}
.btn-bundle:hover { background: var(--sage-dark); color: white; transform: none; box-shadow: none; }

/* ─── 12. HOMEPAGE — CREDENTIALING SPLIT ─── */
.cred-section {
  background: var(--cream-dark);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
  overflow: hidden; padding: 0;
}
.cred-left { padding: 7rem 5rem 7rem 6rem; background: var(--cream-dark); }
.cred-right { background: var(--dark); padding: 7rem 5rem; display: flex; flex-direction: column; justify-content: center; }
.cred-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.cred-stat-box { padding: 1.5rem; border-radius: 2px; }
.cred-stat-box .num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; margin-bottom: 0.3rem; }
.cred-stat-box .lbl { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); line-height: 1.4; }
.cred-stat-box--sage { background: rgba(139,168,136,0.08); border: 1px solid rgba(139,168,136,0.2); }
.cred-stat-box--sage .num { color: var(--sage-dark); }
.cred-stat-box--rose { background: rgba(212,160,160,0.08); border: 1px solid rgba(212,160,160,0.2); }
.cred-stat-box--rose .num { color: var(--rose); }
.cred-stat-box--gold { background: rgba(201,179,123,0.08); border: 1px solid rgba(201,179,123,0.2); }
.cred-stat-box--gold .num { color: var(--gold); }
.cred-stat-box--taupe { background: rgba(184,169,154,0.08); border: 1px solid rgba(184,169,154,0.2); }
.cred-stat-box--taupe .num { color: var(--taupe); }
.cred-right .section-eyebrow { color: var(--gold); }
.cred-right .section-eyebrow::before { background: var(--gold); }
.cred-right .section-title { color: var(--cream); }
.cred-right .section-title em { color: var(--rose); }
.cred-right .section-body { color: rgba(245,240,232,0.55); }
.approach-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.9rem; }
.approach-item { display: flex; gap: 1rem; align-items: flex-start; }
.approach-icon {
  width: 28px; height: 28px; background: rgba(139,168,136,0.15);
  border: 1px solid rgba(139,168,136,0.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--sage-light); flex-shrink: 0; margin-top: 0.1rem;
}
.approach-text { font-size: 0.88rem; color: rgba(245,240,232,0.6); line-height: 1.6; }
.approach-text strong {
  display: block; font-weight: 400; color: rgba(245,240,232,0.85);
  font-size: 0.82rem; letter-spacing: 0.05em; margin-bottom: 0.15rem;
}

/* ─── 13. HOMEPAGE — PROMISE / PHILOSOPHY ─── */
.promise-section { background: var(--cream); text-align: center; padding: 6rem 6rem; }
.promise-inner { max-width: 700px; margin: 0 auto; }
.promise-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  font-weight: 300; font-style: italic; color: var(--dark); line-height: 1.5;
  margin-bottom: 1.5rem; position: relative; padding: 0 2rem;
}
.promise-quote::before, .promise-quote::after {
  font-family: 'Cormorant Garamond', serif; font-size: 5rem;
  color: rgba(139,168,136,0.15); position: absolute; line-height: 1;
}
.promise-quote::before { content: '“'; top: -0.5rem; left: -0.5rem; }
.promise-quote::after { content: '”'; bottom: -2rem; right: -0.5rem; }
.promise-attribution { font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--taupe); margin-bottom: 3rem; }
.promise-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; text-align: left; }
.pillar {
  padding: 2rem; background: white; border-radius: 3px;
  border-top: 3px solid var(--sage); box-shadow: 0 2px 16px rgba(61,53,48,0.05);
}
.pillar:nth-child(2) { border-top-color: var(--rose); }
.pillar:nth-child(3) { border-top-color: var(--gold); }
.pillar-icon {
  width: 46px; height: 46px; margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
  background: rgba(139,168,136,0.12); border: 1px solid rgba(139,168,136,0.28);
}
.pillar-icon svg { width: 24px; height: 24px; display: block; }
.pillar-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500; color: var(--dark); margin-bottom: 0.6rem; }
.pillar-text { font-size: 0.82rem; color: var(--light-mid); line-height: 1.7; }

/* ─── 14. HOMEPAGE — EMAIL CAPTURE ─── */
.email-section {
  background: var(--sage); padding: 5rem 6rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.email-left .section-eyebrow { color: rgba(255,255,255,0.6); }
.email-left .section-eyebrow::before { background: rgba(255,255,255,0.4); }
.email-left .section-title { color: white; }
.email-left .section-title em { color: var(--cream); font-style: italic; }
.email-left .section-body { color: rgba(255,255,255,0.7); max-width: 100%; }
.email-form-area {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px; padding: 2.5rem;
}
.email-form-label {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 1.2rem; display: block;
}
.email-gift-note {
  display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.5rem;
  background: rgba(255,255,255,0.08); padding: 0.8rem 1rem; border-radius: 2px;
  border-left: 2px solid rgba(255,255,255,0.3);
}
.email-gift-icon { font-size: 1.2rem; }
.email-gift-text { font-size: 0.8rem; color: rgba(255,255,255,0.85); line-height: 1.4; }
.email-gift-text strong { display: block; font-weight: 400; font-size: 0.75rem; letter-spacing: 0.08em; }
.email-form-fine { font-size: 0.68rem; color: rgba(255,255,255,0.4); text-align: center; margin-top: 0.8rem; line-height: 1.5; }

/* MailerLite embed inside the sage email section */
.email-form-area .ml-embedded .ml-form-embedWrapper { background: transparent !important; border: none !important; box-shadow: none !important; padding: 0 !important; }
.email-form-area .ml-embedded .ml-form-embedBody { background: transparent !important; padding: 0 !important; }
.email-form-area .ml-embedded .ml-form-embedBody .ml-form-embedContent { display: none !important; }

/* ─── 15. INTERIOR — PULL QUOTE ─── */
.pull-quote-section { background: var(--sage); padding: 5rem 6rem; text-align: center; }
.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 300; font-style: italic; color: white; line-height: 1.55;
  max-width: 760px; margin: 0 auto 1.2rem; position: relative; padding: 0 2rem;
}
.pull-quote::before {
  content: '“'; font-size: 5rem; color: rgba(255,255,255,0.12);
  position: absolute; top: -1.5rem; left: -0.5rem;
  font-family: 'Cormorant Garamond', serif; line-height: 1;
}
.pull-quote-attr { font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.55); }

/* ─── 16. INTERIOR — ABOUT PAGE ─── */
.intro-split { display: grid; grid-template-columns: 1fr 1.1fr; min-height: 640px; }
.intro-image-col { background: var(--cream-dark); position: relative; overflow: hidden; display: flex; align-items: flex-end; }
.intro-image-fill { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(139,168,136,0.18) 0%, rgba(212,160,160,0.12) 60%, rgba(201,179,123,0.1) 100%); }
.intro-image-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.photo-note { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(61,53,48,0.75)); padding: 3rem 2.5rem 2rem; z-index: 3; }
.photo-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; color: var(--cream); margin-bottom: 0.2rem; }
.photo-title { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); }
.floating-lpc {
  position: absolute; top: 2.5rem; right: 2.5rem; width: 88px; height: 88px; border-radius: 50%;
  background: var(--dark); border: 2px solid var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 4;
  font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light);
  text-align: center; line-height: 1.5;
}
.floating-lpc strong { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; letter-spacing: 0; color: var(--gold); display: block; line-height: 1; margin-bottom: 0.2rem; }
.intro-content-col { padding: 6rem 5rem 6rem 5.5rem; display: flex; flex-direction: column; justify-content: center; }

.philosophy-section { padding: 7rem 6rem; background: var(--cream); display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.belief-list { display: flex; flex-direction: column; gap: 1.6rem; margin-top: 0.5rem; }
.belief-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.belief-number { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--gold); line-height: 1; width: 32px; flex-shrink: 0; margin-top: -0.2rem; }
.belief-text strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500; color: var(--dark); margin-bottom: 0.3rem; }
.belief-text p { font-size: 0.88rem; color: var(--mid); line-height: 1.7; }

.spec-section { background: var(--cream-dark); padding: 7rem 6rem; }
.spec-header--split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 4rem; align-items: end; }
.spec-header--center { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.spec-header--center .section-eyebrow { justify-content: center; }
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.spec-card {
  background: white; border-radius: 3px; padding: 2rem 1.8rem;
  border-top: 3px solid var(--sage); box-shadow: 0 2px 16px rgba(61,53,48,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}
.spec-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(61,53,48,0.09); }
.spec-card:nth-child(2) { border-top-color: var(--rose); }
.spec-card:nth-child(3) { border-top-color: var(--gold); }
.spec-card:nth-child(4) { border-top-color: var(--taupe); }
.spec-card:nth-child(5) { border-top-color: var(--sage-dark); }
.spec-card:nth-child(6) { border-top-color: var(--rose); }
.spec-icon { font-size: 1.4rem; margin-bottom: 0.8rem; }
.spec-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 500; color: var(--dark); margin-bottom: 0.5rem; line-height: 1.2; }
.spec-desc { font-size: 0.82rem; color: var(--light-mid); line-height: 1.7; }

.approach-section { background: var(--dark); padding: 7rem 6rem; }
.approach-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 4rem; align-items: end; }
.approach-header .section-eyebrow { color: var(--gold); }
.approach-header .section-eyebrow::before { background: var(--gold); }
.approach-header .section-title { color: var(--cream); }
.approach-header .section-title em { color: var(--rose); }
.approach-header .body-text { color: rgba(245,240,232,0.5); max-width: 100%; }
.approach-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.approach-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 3px; padding: 2rem; transition: background 0.25s; }
.approach-card:hover { background: rgba(255,255,255,0.07); }
.approach-badge {
  display: inline-block; background: rgba(139,168,136,0.15); border: 1px solid rgba(139,168,136,0.25);
  color: var(--sage-light); padding: 0.25rem 0.7rem; font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase; border-radius: 12px; margin-bottom: 0.8rem;
}
.approach-card:nth-child(2) .approach-badge { background: rgba(212,160,160,0.12); border-color: rgba(212,160,160,0.25); color: var(--rose-light); }
.approach-card:nth-child(3) .approach-badge { background: rgba(201,179,123,0.12); border-color: rgba(201,179,123,0.25); color: var(--gold-light); }
.approach-card:nth-child(4) .approach-badge { background: rgba(184,169,154,0.12); border-color: rgba(184,169,154,0.25); color: rgba(245,240,232,0.5); }
.approach-card:nth-child(5) .approach-badge { background: rgba(139,168,136,0.1); border-color: rgba(139,168,136,0.2); color: var(--sage-light); }
.approach-card:nth-child(6) .approach-badge { background: rgba(212,160,160,0.1); border-color: rgba(212,160,160,0.2); color: var(--rose-light); }
.approach-title-card { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; color: var(--cream); margin-bottom: 0.5rem; }
.approach-body { font-size: 0.85rem; color: rgba(245,240,232,0.45); line-height: 1.75; }

.holistic-section { padding: 7rem 6rem; background: var(--cream); display: grid; grid-template-columns: 1.1fr 1fr; gap: 6rem; align-items: center; }
.holistic-image { background: linear-gradient(145deg, #c5d9c4 0%, #ddd0a8 50%, #ead0d0 100%); border-radius: 3px; aspect-ratio: 4/5; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.holistic-image-inner { position: relative; z-index: 2; text-align: center; padding: 2rem; }
.holistic-image-icon { font-size: 3rem; margin-bottom: 0.8rem; display: block; opacity: 0.45; }
.holistic-image-note { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: rgba(61,53,48,0.35); }
.holistic-tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.8rem; margin-bottom: 2rem; }
.holistic-tag { background: rgba(139,168,136,0.1); border: 1px solid rgba(139,168,136,0.25); color: var(--sage-dark); padding: 0.3rem 0.85rem; font-size: 0.72rem; letter-spacing: 0.06em; border-radius: 20px; }
.holistic-link { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage-dark); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; }

/* ─── 17. INTERIOR — FOR WHO / WHY / HOW / NOTE ─── */
.for-who-section { background: white; padding: 7rem 6rem; }
.for-who-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.for-who-header .section-eyebrow { justify-content: center; }
.for-who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.for-who-wrap { max-width: 760px; margin: 0 auto; }
.for-who-card { padding: 2.2rem; background: var(--cream); border-radius: 3px; position: relative; }
.for-who-card::before { content: ''; position: absolute; top: 0; left: 2rem; right: 2rem; height: 2px; background: var(--gold); opacity: 0.4; }
.for-who-card--wide { padding: 2.5rem 3rem; }
.for-who-card--wide::before { left: 3rem; right: 3rem; }
.for-who-label { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--taupe); margin-bottom: 0.8rem; display: block; }
.for-who-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; color: var(--dark); margin-bottom: 0.8rem; line-height: 1.2; }
.for-who-list { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; margin: 0; padding: 0; }
.for-who-list--cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 2rem; }
.for-who-list li { font-size: 0.85rem; color: var(--mid); padding-left: 1rem; position: relative; line-height: 1.5; }
.for-who-list li::before { content: '–'; position: absolute; left: 0; color: var(--gold); }

.why-section { padding: 7rem 6rem; background: var(--cream); display: grid; grid-template-columns: 1fr 1.1fr; gap: 6rem; align-items: start; }

.how-section { padding: 7rem 6rem; background: var(--cream); }
.how-section--dusk { background: var(--cream-dark); }
.how-header { text-align: center; max-width: 620px; margin: 0 auto 4rem; }
.how-header .section-eyebrow { justify-content: center; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.how-card {
  background: white; border-radius: 3px; padding: 2.5rem 2rem;
  border-top: 3px solid var(--sage); box-shadow: 0 2px 16px rgba(61,53,48,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}
.how-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(61,53,48,0.09); }
.how-card:nth-child(2) { border-top-color: var(--rose); }
.how-card:nth-child(3) { border-top-color: var(--gold); }
.how-num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 1rem; }
.how-card:nth-child(2) .how-num { color: var(--rose); }
.how-card:nth-child(3) .how-num { color: var(--sage-dark); }
.how-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; color: var(--dark); margin-bottom: 0.7rem; }
.how-card-body { font-size: 0.86rem; color: var(--light-mid); line-height: 1.75; }
.how-card-body strong { color: var(--mid); font-weight: 400; }

.note-band { background: var(--cream); padding: 3.5rem 6rem; }
.note-inner {
  max-width: 820px; margin: 0 auto;
  background: rgba(139,168,136,0.08); border: 1px solid rgba(139,168,136,0.2);
  border-left: 4px solid var(--sage); border-radius: 3px; padding: 2rem 2.5rem;
}
.note-inner h4 { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 0.7rem; }
.note-inner p { font-size: 0.88rem; color: var(--mid); line-height: 1.8; margin: 0; }
.note-inner--rose { background: rgba(212,160,160,0.08); border-color: rgba(212,160,160,0.25); border-left-color: var(--rose); }
.note-inner--rose h4 { color: var(--rose); }
.note-inner--rose p { font-style: italic; }

/* ─── 18. INTERIOR — CLOSING CTA ─── */
.closing-cta { background: var(--dark); padding: 6rem; display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center; }
.closing-cta .section-eyebrow { color: var(--gold); }
.closing-cta .section-eyebrow::before { background: var(--gold); }
.closing-cta .section-title { color: var(--cream); }
.closing-cta .section-title em { color: var(--rose); }
.closing-cta .body-text { color: rgba(245,240,232,0.5); max-width: 500px; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; flex-shrink: 0; }
.cta-buttons .btn-primary, .cta-buttons .btn-outline { display: block; }

/* ─── 19. SHOP PAGE — PRODUCT DETAIL CARDS ─── */
.shop-main { max-width: 900px; margin: 0 auto; padding: 4rem 2rem 6rem; }
.shop-product {
  background: white; border-radius: 2px; margin-bottom: 4rem;
  box-shadow: 0 2px 24px rgba(61,53,48,0.06); overflow: hidden;
  border-top: 4px solid var(--sage);
}
.shop-product:nth-child(2) { border-top-color: var(--rose); }
.shop-product:nth-child(3) { border-top-color: var(--gold); }
.shop-product:nth-child(4) { border-top-color: var(--taupe); }
.shop-product-header { padding: 2.5rem 3rem 2rem; border-bottom: 1px solid rgba(184,169,154,0.2); }
.shop-product-number { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.75rem; }
.shop-product:nth-child(2) .shop-product-number { color: var(--rose); }
.shop-product:nth-child(3) .shop-product-number { color: var(--gold); }
.shop-product:nth-child(4) .shop-product-number { color: var(--taupe); }
.shop-product-title { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 400; color: var(--dark); line-height: 1.2; margin-bottom: 0.4rem; }
.shop-product-subtitle { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--taupe); }
.shop-product-body { padding: 2.5rem 3rem; }
.shop-desc { font-size: 0.95rem; color: var(--dark); line-height: 1.85; }
.shop-desc p { margin-bottom: 0.8rem; }
.shop-block { margin-bottom: 2rem; }
.shop-block-label {
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--mid);
  margin-bottom: 0.6rem; padding-bottom: 0.4rem; border-bottom: 1px solid rgba(184,169,154,0.3); display: block;
}
.includes-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 2rem; margin: 0.5rem 0 0; padding: 0; }
.includes-list li { font-size: 0.88rem; color: var(--mid); padding-left: 1.2rem; position: relative; }
.includes-list li::before { content: '✦'; position: absolute; left: 0; font-size: 0.5rem; top: 0.4rem; color: var(--gold); }
.specs-row { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 0.5rem; }
.spec-chip {
  background: var(--cream); border: 1px solid rgba(184,169,154,0.4);
  padding: 0.3rem 0.9rem; border-radius: 20px; font-size: 0.78rem;
  color: var(--mid); letter-spacing: 0.05em;
}
.shop-product-footer {
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  padding-top: 1.5rem; border-top: 1px solid rgba(184,169,154,0.2);
}
.shop-price { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 500; color: var(--dark); }
.shop-price small { font-size: 0.7rem; font-family: 'Jost', sans-serif; letter-spacing: 0.15em; text-transform: uppercase; color: var(--taupe); display: block; }

/* ─── 20. FOOTER (2026, 4-column) ─── */
.ilw-footer { background: var(--dark); padding: 4rem 6rem 2.5rem; color: rgba(245,240,232,0.4); }
.ilw-footer .footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem;
  margin-bottom: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ilw-footer .footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: var(--cream); margin-bottom: 0.8rem; }
.ilw-footer .footer-tagline { font-size: 0.8rem; line-height: 1.7; margin-bottom: 1.2rem; color: rgba(245,240,232,0.4); }
.ilw-footer .footer-domain { font-size: 0.72rem; color: rgba(245,240,232,0.25); letter-spacing: 0.08em; }
.ilw-footer .footer-col-title { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.2rem; font-family: 'Jost', sans-serif; font-weight: 400; }
.ilw-footer .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin: 0; padding: 0; }
.ilw-footer .footer-links a { font-size: 0.82rem; color: rgba(245,240,232,0.4); text-decoration: none; transition: color 0.2s; }
.ilw-footer .footer-links a:hover { color: var(--cream); text-decoration: none; }
.ilw-footer .footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.7rem; letter-spacing: 0.08em; flex-wrap: wrap; gap: 0.6rem;
}
.ilw-footer .footer-bottom a { color: rgba(245,240,232,0.3); text-decoration: none; }

/* ─── 21. RESPONSIVE ─── */
@media (max-width: 1024px) {
  .page-hero, .why-section, .how-section, .for-who-section, .closing-cta,
  .note-band, .pull-quote-section, .spec-section, .approach-section,
  .philosophy-section, .holistic-section,
  .about-intro, .products-section, .promise-section, .email-section { padding-left: 2.5rem; padding-right: 2.5rem; }
  .closing-cta { grid-template-columns: 1fr; gap: 2.5rem; }
  .how-grid { grid-template-columns: repeat(3, 1fr); }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .why-section, .philosophy-section, .holistic-section { grid-template-columns: 1fr; gap: 3rem; }
  .approach-header, .spec-header--split { grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
  .approach-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; gap: 3.5rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .email-section { grid-template-columns: 1fr; gap: 3rem; }
  .cred-section { grid-template-columns: 1fr; }
  .cred-left, .cred-right { padding: 4.5rem 2.5rem; }
  .ilw-hero-2026 { grid-template-columns: 1fr; min-height: 0; }
  .hero-left { padding: 5rem 2.5rem; }
  .hero-left::after { display: none; }
  .hero-right { min-height: 520px; padding: 3rem 0; }
  .intro-split { grid-template-columns: 1fr; }
  .intro-image-col { min-height: 480px; }
  .intro-content-col { padding: 4.5rem 2.5rem; }
  .ilw-footer { padding: 4rem 2.5rem 2rem; }
  .ilw-footer .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .page-hero, .why-section, .how-section, .for-who-section, .closing-cta,
  .note-band, .pull-quote-section, .spec-section, .approach-section,
  .philosophy-section, .holistic-section,
  .about-intro, .products-section, .promise-section, .email-section { padding-left: 1.5rem; padding-right: 1.5rem; }
  .page-hero { padding-top: 5rem; padding-bottom: 4rem; }
  .how-grid, .spec-grid, .for-who-grid, .promise-pillars { grid-template-columns: 1fr; }
  .for-who-list--cols { grid-template-columns: 1fr; }
  .for-who-card--wide { padding: 2rem 1.5rem; }
  .for-who-card--wide::before { left: 1.5rem; right: 1.5rem; }
  .products-grid { grid-template-columns: 1fr; }
  .bundle-tile { flex-direction: column; align-items: flex-start; text-align: left; padding: 2rem 1.5rem; }
  .bundle-cta-area { text-align: left; }
  .intro-strip { gap: 1.2rem; padding: 1.2rem 1.5rem; }
  .shop-product-header, .shop-product-body { padding-left: 1.5rem; padding-right: 1.5rem; }
  .includes-list { grid-template-columns: 1fr; }
  .email-form-area { padding: 1.5rem; }
  .ilw-footer { padding: 3rem 1.5rem 1.5rem; }
  .ilw-footer .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .closing-cta { padding: 4rem 1.5rem; }
}


/* ─── 2026.1 POLISH — founder photo, spec icon chips, botanical bullets ─── */

/* Founder photo — homepage about block */
.about-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 16%; display: block;
}

/* Founder photo — About page intro column */
.intro-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 18%; display: block; z-index: 1;
}

/* Clinical specialization icons — sage chip + line art (matches .pillar-icon) */
.spec-icon {
  width: 46px; height: 46px; margin-bottom: 1rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(139,168,136,0.12); border: 1px solid rgba(139,168,136,0.28);
  font-size: 1.1rem;
}
.spec-icon svg { width: 24px; height: 24px; display: block; }

/* Who-this-is-for lists — gold botanical leaf bullets */
.for-who-list li { padding-left: 1.45rem; }
.for-who-list li::before {
  content: ''; top: 0.2em; width: 0.95em; height: 0.95em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23C9B37B' d='M13.6 2.2C8 2.6 4.6 5 3.4 8.6c-.8 2.4-.2 4.6 1 5.9.2-2.7 1.3-5.2 3.8-7.3-1.9 2.4-3 5-3.1 7.9 1.9.5 4.1 0 5.6-1.7 2.1-2.4 2.6-6.6 2.9-11.2z'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* Apothecary Garden botanical plate — About page */
.holistic-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}


/* ─── Resources dropdown ─── */
.nav-drop { position: relative; padding: 1.55rem 0; }
.nav-drop-toggle { background: none; border: none; cursor: pointer; font-family: inherit; font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid); padding: 0; transition: color 0.2s; }
.nav-drop:hover .nav-drop-toggle, .nav-drop:focus-within .nav-drop-toggle { color: var(--sage-dark); }
.nav-drop-caret { font-size: 0.6rem; }
.nav-drop-menu { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: var(--cream); border: 1px solid rgba(184,169,154,0.3); border-radius: 2px; box-shadow: 0 12px 28px rgba(61,53,48,0.10); padding: 0.6rem 0; margin: 0; list-style: none; min-width: 175px; z-index: 110; }
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { display: block; }
.nav-drop-menu li { margin: 0; }
.nav-drop-menu a { display: block; padding: 0.5rem 1.3rem; }
@media (max-width: 960px) {
  .nav-drop { padding: 0; }
  .nav-drop-toggle { pointer-events: none; color: var(--dark); }
  .nav-drop-menu { display: block; position: static; transform: none; background: transparent; border: none; box-shadow: none; padding: 0.6rem 0 0 1rem; min-width: 0; }
}

.ilw-topnav .nav-drop-toggle, .ilw-topnav .nav-drop-toggle:hover, .ilw-topnav .nav-drop-toggle:focus, .ilw-topnav .nav-drop-toggle:active { background: none; border: none; box-shadow: none; transform: none; padding: 0; }
.ilw-topnav .nav-drop-toggle:hover, .ilw-topnav .nav-drop-toggle:focus { color: var(--sage-dark); }


/* ─── Member pricing tier ─── */
.member-price { display: block; font-family: 'Jost', sans-serif; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage-dark); margin-top: 0.35rem; }
.member-price::before { content: "✦ "; color: var(--gold); }
.member-price--bundle { font-size: 0.75rem; margin-top: 0.5rem; }
.woocommerce .member-price { line-height: 1.4; }


/* ─── Booking flow: provider bios + returning members ─── */
.therapist-card { scroll-margin-top: 100px; }
.ilw-bio-link { display: inline-block; font-family: 'Jost', sans-serif; font-size: 0.8rem; letter-spacing: 0.06em; color: var(--sage-dark, #6a8a67); text-decoration: underline; text-underline-offset: 3px; margin-top: 0.3rem; }
.ilw-bio-link:hover { color: var(--dark, #3D3530); }
.ilw-your-provider-band { background: var(--cream, #F5F0E8); border: 1px solid rgba(139,168,136,.45); border-left: 3px solid var(--sage, #8BA888); border-radius: 4px; padding: 1rem 1.3rem; margin: 0 0 1.6rem; font-family: 'Jost', sans-serif; font-size: 0.95rem; color: var(--mid, #6B5E57); }
.ilw-your-provider-band strong { color: var(--dark, #3D3530); font-weight: 500; }
.ilw-your-provider-band a { color: var(--sage-dark, #6a8a67); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; margin-left: 0.35rem; }
.ilw-your-provider-band a:hover { color: var(--dark, #3D3530); }

/* ILW MEMBER BOOKING CSS START */
.ilw-member-booking-native {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.ilw-member-booking-router {
  margin: 0 0 1.5rem;
  padding: 1.25rem;
  border: 1px solid rgba(139, 168, 136, 0.35);
  border-radius: 14px;
  background: #fbf8f2;
}

.ilw-member-booking-router h6 {
  margin: 0 0 0.85rem;
  color: #3d3530;
}

.ilw-booking-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.ilw-booking-choice {
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 1px solid #b8a99a;
  border-radius: 12px;
  background: #fff;
  color: #3d3530;
  font: inherit;
  cursor: pointer;
}

.ilw-booking-choice:hover,
.ilw-booking-choice:focus-visible,
.ilw-booking-choice.is-selected {
  border-color: #6a8a67;
  box-shadow: 0 0 0 3px rgba(139, 168, 136, 0.2);
}

.ilw-booking-choice:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.ilw-booking-summary {
  margin: 0.85rem 0 0;
  color: #5d514b;
}

.ilw-booking-error {
  margin: 0.5rem 0 0;
  color: #8a3f3f;
}

.ilw-booking-error:empty {
  display: none;
}

.ilw-booking-optional {
  font-size: 0.82em;
  font-weight: 400;
  color: #6b5e57;
}

.ilw-booking-blocked {
  pointer-events: none !important;
  opacity: 0.55 !important;
}

@media (max-width: 600px) {
  .ilw-booking-choices { grid-template-columns: 1fr; }
  .ilw-member-booking-router { padding: 1rem; }
}
/* ILW MEMBER BOOKING CSS END */
