*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  :root {
    --forest: #2d3d2e;
    --forest-light: #4a6350;
    --sage: #7a9b7c;
    --sage-light: #a8c4a2;
    --moss: #c8d9c0;
    --cream: #f8f5ef;
    --parchment: #f2ede4;
    --warm: #e8ddd0;
    --gold: #b8986a;
    --gold-light: #d4b98a;
    --ink: #1e2a1f;
    --text: #3a4a3c;
    --text-light: #6b7e6d;
    --white: #ffffff;
  }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
  }
  .cursor {
    position: fixed; width: 7px; height: 7px;
    background: var(--sage); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform 0.1s ease;
  }
  .cursor-ring {
    position: fixed; width: 30px; height: 30px;
    border: 1px solid var(--sage-light); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%,-50%);
    transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
    opacity: 0.5;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    display: flex; justify-content: space-between; align-items: center;
    padding: 26px 60px;
    transition: background 0.5s ease, padding 0.4s ease, box-shadow 0.4s ease;
  }
  nav.scrolled {
    background: rgba(248,245,239,0.96);
    backdrop-filter: blur(14px);
    padding: 16px 60px;
    box-shadow: 0 1px 0 rgba(122,155,124,0.15);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 400; letter-spacing: 0.1em;
    color: var(--white); text-decoration: none;
    transition: color 0.4s;
  }
  nav.scrolled .nav-logo { color: var(--ink); }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 300;
    transition: color 0.3s;
  }
  nav.scrolled .nav-links a { color: var(--text); }
  .nav-links a:hover, nav.scrolled .nav-links a:hover { color: var(--sage); }
  .nav-cta-btn {
    padding: 10px 24px;
    border: 1px solid rgba(255,255,255,0.5);
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: white; text-decoration: none; font-weight: 300;
    transition: all 0.3s;
  }
  nav.scrolled .nav-cta-btn { border-color: var(--sage); color: var(--forest); }
  .nav-cta-btn:hover { background: var(--sage); border-color: var(--sage); color: white; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh; position: relative;
    display: flex; align-items: center;
    overflow: hidden;
  }
  .hero-photo-bg {
    position: absolute; inset: 0;
    background-image: url('images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      105deg,
      rgba(20,35,22,0.72) 0%,
      rgba(20,35,22,0.55) 50%,
      rgba(20,35,22,0.3) 100%
    );
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto;
    padding: 160px 60px 100px;
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    gap: 80px; align-items: center; width: 100%;
  }
  .hero-left {}
  .hero-eyebrow {
    font-size: 10px; letter-spacing: 0.38em; text-transform: uppercase;
    color: var(--sage-light); font-weight: 300; margin-bottom: 24px;
    display: flex; align-items: center; gap: 14px;
    opacity: 0; animation: fadeUp 1s ease 0.3s forwards;
  }
  .hero-eyebrow::before { content:''; width:32px; height:1px; background:var(--sage-light); }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 6vw, 76px); font-weight: 300; line-height: 1.1;
    color: white; margin-bottom: 28px;
    opacity: 0; animation: fadeUp 1s ease 0.5s forwards;
  }
  .hero-title em { font-style: italic; color: var(--moss); }
  .hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2vw, 24px); font-style: italic; font-weight: 300;
    color: rgba(200,217,192,0.85); margin-bottom: 28px; line-height: 1.5;
    opacity: 0; animation: fadeUp 1s ease 0.65s forwards;
  }
  .hero-sub {
    font-size: 14px; line-height: 2; color: rgba(255,255,255,0.7);
    font-weight: 300; max-width: 480px; margin-bottom: 48px;
    opacity: 0; animation: fadeUp 1s ease 0.75s forwards;
  }
  .hero-actions {
    display: flex; flex-direction: column; gap: 14px; align-items: flex-start;
    opacity: 0; animation: fadeUp 1s ease 0.9s forwards;
  }
  .btn-hero-primary {
    display: inline-block; padding: 17px 44px;
    background: var(--sage); color: white;
    text-decoration: none; font-size: 10px; letter-spacing: 0.25em;
    text-transform: uppercase; font-weight: 400;
    transition: all 0.3s ease; border: 1px solid var(--sage);
    position: relative; overflow: hidden;
  }
  .btn-hero-primary::before {
    content:''; position:absolute; inset:0;
    background: var(--forest); transform:translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
  }
  .btn-hero-primary:hover::before { transform:translateX(0); }
  .btn-hero-primary span { position:relative; z-index:1; }
  .btn-hero-secondary {
    display: inline-block; padding: 14px 36px;
    border: 1px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.8);
    text-decoration: none; font-size: 10px; letter-spacing: 0.22em;
    text-transform: uppercase; font-weight: 300; transition: all 0.3s;
  }
  .btn-hero-secondary:hover { border-color: var(--moss); color: var(--moss); }

  /* Sound button */
  .sound-btn {
    position: absolute; bottom: 40px; right: 60px; z-index: 10;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3);
    color: white; padding: 10px 20px; font-family: 'Jost', sans-serif;
    font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
    font-weight: 300; cursor: none; display: flex; align-items: center; gap: 8px;
    transition: all 0.3s; backdrop-filter: blur(4px);
  }
  .sound-btn:hover { background: rgba(255,255,255,0.2); }
  .sound-icon { font-size: 14px; }

  /* Hero right — photo frame */
  .hero-right {
    display: flex; justify-content: flex-end; align-items: center;
    opacity: 0; animation: fadeIn 1.5s ease 0.7s forwards;
  }
  .hero-portrait {
    position: relative; width: 340px;
  }
  .hero-portrait img {
    width: 100%; height: 480px; object-fit: cover; object-position: center top;
    display: block;
    border: 1px solid rgba(200,217,192,0.3);
  }
  .portrait-corner { position:absolute; width:44px; height:44px; border-color: var(--moss); border-style:solid; }
  .portrait-corner.tl { top:-8px; left:-8px; border-width:1px 0 0 1px; }
  .portrait-corner.br { bottom:-8px; right:-8px; border-width:0 1px 1px 0; }
  .portrait-badge {
    position: absolute; bottom:-20px; left: -20px;
    background: var(--forest); border: 1px solid rgba(200,217,192,0.2);
    padding: 18px 22px;
  }
  .badge-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px; font-style: italic; color: var(--moss);
    line-height: 1.5; display: block;
  }
  .badge-sub { font-size: 9px; letter-spacing: 0.22em; color: var(--sage-light); text-transform: uppercase; font-weight: 300; margin-top: 4px; display: block; }

  /* scroll cue */
  .scroll-cue {
    position: absolute; bottom: 44px; left: 60px; z-index: 10;
    display: flex; align-items: center; gap: 12px;
    font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
    color: rgba(255,255,255,0.45); font-weight: 300;
  }
  .scroll-line { width: 40px; height: 1px; background: rgba(255,255,255,0.3); }

  @keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
  @keyframes fadeIn { from{opacity:0} to{opacity:1} }

  /* ── INTRO SECTION ── */
  .intro {
    padding: 120px 0; background: var(--parchment);
    position: relative; overflow: hidden;
  }
  .intro::before {
    content:''; position:absolute; top:0; left:0; right:0; height:3px;
    background: linear-gradient(90deg, transparent, var(--sage-light), transparent);
  }
  .intro-inner {
    max-width: 860px; margin: 0 auto; padding: 0 60px; text-align: center;
  }
  .leaf-divider { font-size: 18px; color: var(--sage); letter-spacing: 16px; margin-bottom: 48px; display: block; }
  .intro-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 52px); font-weight: 300; line-height: 1.3;
    color: var(--ink); margin-bottom: 40px;
  }
  .intro-title em { font-style: italic; color: var(--forest-light); }
  .intro-body {
    font-size: 16px; line-height: 2.1; color: var(--text-light); font-weight: 300;
    margin-bottom: 24px;
  }
  .intro-body strong { color: var(--forest); font-weight: 400; }
  .intro-stanzas { margin: 44px 0; }
  .intro-stanza {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2.5vw, 28px); font-weight: 300; font-style: italic;
    color: var(--forest); line-height: 1.8; margin-bottom: 8px;
  }
  .intro-closing {
    font-size: 15px; line-height: 2; color: var(--text-light); font-weight: 300;
    margin-top: 36px; margin-bottom: 48px; max-width: 640px; margin-left: auto; margin-right: auto;
  }

  /* ── WHAT I OFFER (modalities) ── */
  .modalities { padding: 120px 0; background: var(--cream); }
  .section-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
  .section-tag {
    font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--sage); font-weight: 300; margin-bottom: 16px;
    display: flex; align-items: center; gap: 14px;
  }
  .section-tag::before { content:''; width:28px; height:1px; background: var(--sage); }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4vw, 54px); font-weight: 300; line-height: 1.15; color: var(--ink);
  }
  .section-title em { font-style: italic; color: var(--forest-light); }
  .modalities-header {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 72px;
  }
  .modalities-desc { font-size: 14px; line-height: 1.95; color: var(--text-light); font-weight: 300; padding-top: 12px; }
  .modalities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--warm); }
  .modality-card {
    background: var(--cream); padding: 44px 32px;
    transition: background 0.4s, transform 0.3s;
    border-bottom: 2px solid transparent;
    cursor: pointer;
  }
  .modality-card:hover { background: white; border-bottom-color: var(--sage); }
  .modality-glyph { font-size: 28px; margin-bottom: 20px; display: block; }
  .modality-name {
    font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 400;
    color: var(--ink); margin-bottom: 12px; line-height: 1.2;
  }
  .modality-desc { font-size: 13px; line-height: 1.85; color: var(--text-light); font-weight: 300; }

  /* ── ABOUT ── */
  .about { padding: 140px 0; background: var(--forest); overflow: hidden; }
  .about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
  .about-image-wrap { position: relative; }
  .about-img {
    width: 100%; height: 560px; object-fit: cover; object-position: center top;
    display: block;
    filter: brightness(0.92) saturate(0.9);
  }
  .about-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(30,42,31,0.5) 100%);
  }
  .about-quote-float {
    position: absolute; bottom: -24px; right: -24px;
    background: var(--sage); padding: 28px 32px; max-width: 240px;
  }
  .about-quote-text {
    font-family: 'Cormorant Garamond', serif; font-size: 17px; font-style: italic;
    font-weight: 300; color: white; line-height: 1.6;
  }
  .about-text .section-tag { color: var(--sage-light); }
  .about-text .section-tag::before { background: var(--sage-light); }
  .about-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3.5vw, 50px); font-weight: 300; line-height: 1.2;
    color: var(--moss); margin-bottom: 28px;
  }
  .about-heading em { font-style: italic; color: var(--sage-light); }
  .about-body { font-size: 14px; line-height: 2; color: rgba(200,217,192,0.65); font-weight: 300; margin-bottom: 22px; }
  .about-certs {
    margin-top: 36px; display: flex; flex-wrap: wrap; gap: 10px;
  }
  .cert-pill {
    padding: 7px 18px; border: 1px solid rgba(122,155,124,0.4);
    font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--sage-light); font-weight: 300;
  }
  .about-location {
    margin-top: 28px; font-size: 12px; letter-spacing: 0.15em; color: rgba(200,217,192,0.45);
    text-transform: uppercase; font-weight: 300; display: flex; align-items: center; gap: 8px;
  }
  .about-location::before { content: '📍'; font-size: 12px; }

  /* ── IDEAL CLIENT ── */
  .ideal { padding: 100px 0; background: var(--parchment); }
  .ideal-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .ideal-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
  .ideal-item {
    padding: 22px 0; border-bottom: 1px solid var(--warm);
    display: flex; align-items: center; gap: 20px;
    font-size: 16px; color: var(--text); font-weight: 300;
    font-family: 'Cormorant Garamond', serif; font-style: italic;
  }
  .ideal-item::before { content: '✿'; color: var(--sage); font-size: 14px; font-style: normal; flex-shrink: 0; }

  /* ── SERVICES ── */
  .services { padding: 140px 0; background: var(--cream); }
  .services-header { text-align: center; margin-bottom: 80px; }
  .services-header .section-tag { justify-content: center; }
  .services-header .section-tag::before { display: none; }
  .services-availability {
    margin-top: 16px; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--sage); font-weight: 300;
  }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }
  .service-card {
    background: white; padding: 52px 40px;
    border-top: 2px solid var(--warm); transition: all 0.4s;
    position: relative;
  }
  .service-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--sage); transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
  }
  .service-card:hover { box-shadow: 0 20px 60px rgba(45,61,46,0.08); transform: translateY(-4px); }
  .service-card:hover::after { transform: scaleX(1); }
  .service-card.featured { background: var(--forest); border-top-color: var(--sage); }
  .svc-badge {
    font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--sage); font-weight: 400; margin-bottom: 18px; display: block;
  }
  .service-card.featured .svc-badge { color: var(--sage-light); }
  .svc-name {
    font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400;
    color: var(--ink); line-height: 1.2; margin-bottom: 14px;
  }
  .service-card.featured .svc-name { color: var(--moss); }
  .svc-desc { font-size: 13px; line-height: 1.85; color: var(--text-light); font-weight: 300; margin-bottom: 28px; }
  .service-card.featured .svc-desc { color: rgba(200,217,192,0.55); }
  .svc-price {
    font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300;
    color: var(--ink); margin-bottom: 6px; line-height: 1;
  }
  .service-card.featured .svc-price { color: var(--moss); }
  .svc-duration { font-size: 11px; color: var(--text-light); font-weight: 300; letter-spacing: 0.08em; margin-bottom: 32px; }
  .service-card.featured .svc-duration { color: rgba(200,217,192,0.4); }
  .btn-svc {
    display: inline-block; width: 100%; text-align: center; padding: 13px;
    font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
    text-decoration: none; border: 1px solid var(--sage); color: var(--forest);
    font-weight: 400; transition: all 0.3s;
  }
  .btn-svc:hover { background: var(--sage); color: white; }
  .btn-svc-light { border-color: var(--moss); color: var(--moss); }
  .btn-svc-light:hover { background: var(--moss); color: var(--forest); }
  .service-card.featured .btn-svc { background: var(--sage); color: white; border-color: var(--sage); }
  .service-card.featured .btn-svc:hover { background: var(--sage-light); }

  /* sliding scale note */
  .sliding-scale-note {
    background: var(--parchment); border-left: 3px solid var(--sage);
    padding: 28px 36px; margin-top: 20px;
    display: flex; gap: 20px; align-items: flex-start;
  }
  .sliding-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
  .sliding-text { font-size: 13px; line-height: 1.85; color: var(--text-light); font-weight: 300; }
  .sliding-text strong { color: var(--forest); font-weight: 400; }

  /* ── GROUP / RETREATS ── */
  .retreats { padding: 120px 0; background: var(--forest); }
  .retreats-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .retreats-text .section-tag { color: var(--sage-light); }
  .retreats-text .section-tag::before { background: var(--sage-light); }
  .retreats-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3.5vw, 50px); font-weight: 300; line-height: 1.2;
    color: var(--moss); margin-bottom: 24px;
  }
  .retreats-heading em { font-style: italic; color: var(--sage-light); }
  .retreats-body { font-size: 14px; line-height: 2; color: rgba(200,217,192,0.6); font-weight: 300; margin-bottom: 36px; }
  .retreats-types { list-style: none; display: flex; flex-direction: column; gap: 0; }
  .retreat-type {
    padding: 18px 0; border-bottom: 1px solid rgba(122,155,124,0.2);
    display: flex; gap: 18px; align-items: flex-start;
  }
  .retreat-dot { color: var(--sage-light); font-size: 12px; flex-shrink: 0; margin-top: 3px; }
  .retreat-name { font-size: 14px; color: var(--moss); font-weight: 300; letter-spacing: 0.06em; }
  .retreat-sub { font-size: 12px; color: rgba(200,217,192,0.45); font-weight: 300; margin-top: 3px; }
  .retreats-visual {
    position: relative; background: rgba(255,255,255,0.04);
    border: 1px solid rgba(122,155,124,0.2); padding: 52px 44px; text-align: center;
  }
  .retreats-visual-symbol {
    font-family: 'Cormorant Garamond', serif; font-size: 90px; font-weight: 300;
    font-style: italic; color: rgba(122,155,124,0.2); line-height: 1; margin-bottom: 24px;
  }
  .retreats-visual-text {
    font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300;
    font-style: italic; color: var(--moss); line-height: 1.6; margin-bottom: 36px;
  }

  /* ── PROCESS ── */
  .process { padding: 120px 0; background: var(--parchment); }
  .process-header { text-align: center; margin-bottom: 72px; }
  .process-header .section-tag { justify-content: center; }
  .process-header .section-tag::before { display: none; }
  .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--warm); }
  .process-step {
    background: var(--parchment); padding: 48px 32px;
    border-top: 2px solid transparent; transition: all 0.3s;
  }
  .process-step:hover { background: white; border-top-color: var(--sage); }
  .step-num {
    font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300;
    font-style: italic; color: rgba(122,155,124,0.6); line-height: 1; margin-bottom: 20px;
  }
  .step-name {
    font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400;
    color: var(--ink); margin-bottom: 12px;
  }
  .step-desc { font-size: 13px; line-height: 1.8; color: var(--text-light); font-weight: 300; }

  /* ── CTA ── */
  .cta-section {
    padding: 160px 0; text-align: center; position: relative; overflow: hidden;
    background: var(--cream);
  }
  .cta-bg-wash {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(122,155,124,0.1) 0%, transparent 70%);
  }
  .cta-inner { position: relative; z-index: 2; }
  .cta-leaf { font-size: 16px; color: var(--sage); letter-spacing: 16px; margin-bottom: 32px; display: block; }
  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5.5vw, 72px); font-weight: 300; line-height: 1.1;
    color: var(--ink); margin-bottom: 20px;
  }
  .cta-title em { font-style: italic; color: var(--forest-light); }
  .cta-sub {
    font-size: 15px; line-height: 1.85; color: var(--text-light); font-weight: 300;
    max-width: 460px; margin: 0 auto 52px;
  }
  .cta-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
  .btn-cta-primary {
    display: inline-block; padding: 18px 52px;
    background: var(--forest); color: white; text-decoration: none;
    font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
    font-weight: 400; transition: all 0.3s; border: 1px solid var(--forest);
    position: relative; overflow: hidden;
  }
  .btn-cta-primary::before {
    content:''; position:absolute; inset:0; background:var(--sage);
    transform:translateX(-100%); transition:transform 0.4s cubic-bezier(0.77,0,0.175,1);
  }
  .btn-cta-primary:hover::before { transform:translateX(0); }
  .btn-cta-primary span { position:relative; z-index:1; }
  .btn-cta-outline {
    display: inline-block; padding: 18px 52px;
    border: 1px solid rgba(74,99,80,0.35); color: var(--forest-light);
    text-decoration: none; font-size: 10px; letter-spacing: 0.25em;
    text-transform: uppercase; font-weight: 300; transition: all 0.3s;
  }
  .btn-cta-outline:hover { border-color: var(--sage); color: var(--sage); }

  /* ── CONTACT FORM ── */
  .contact-form-section { padding: 120px 0; background: var(--parchment); }
  .contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .contact-text { font-size: 15px; line-height: 1.9; color: var(--text-light); font-weight: 300; margin: 30px 0; }
  .contact-direct { margin-top: 40px; }
  .contact-email-link { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-style: italic; color: var(--sage); text-decoration: none; border-bottom: 1px solid rgba(122,155,124,0.3); transition: all 0.3s; }
  .contact-email-link:hover { color: var(--forest); border-bottom-color: var(--forest); }
  .contact-form-wrap { background: white; padding: 50px; box-shadow: 0 30px 60px rgba(0,0,0,0.03); }

  /* ── FOOTER ── */
  footer { background: var(--ink); padding: 80px 0 40px; }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px; margin-bottom: 60px; }
  .footer-brand {
    font-family: 'Cormorant Garamond', serif; font-size: 28px;
    font-weight: 300; color: var(--moss); margin-bottom: 8px;
  }
  .footer-domain { font-size: 11px; letter-spacing: 0.15em; color: var(--sage); font-weight: 300; margin-bottom: 16px; }
  .footer-tagline { font-size: 13px; line-height: 1.8; color: rgba(200,217,192,0.4); font-weight: 300; max-width: 280px; }
  .footer-social { display: flex; gap: 14px; margin-top: 28px; }
  .social-btn {
    width: 34px; height: 34px; border: 1px solid rgba(122,155,124,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; color: var(--sage-light); text-decoration: none;
    transition: all 0.3s; font-family: 'Cormorant Garamond', serif; font-style: italic;
  }
  .social-btn:hover { border-color: var(--sage); background: rgba(122,155,124,0.1); }
  .footer-col-title { font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--sage); font-weight: 400; margin-bottom: 24px; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-links a { font-size: 13px; color: rgba(200,217,192,0.4); text-decoration: none; font-weight: 300; letter-spacing: 0.04em; transition: color 0.3s; }
  .footer-links a:hover { color: var(--sage-light); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
  .footer-copy { font-size: 11px; color: rgba(200,217,192,0.2); font-weight: 300; letter-spacing: 0.08em; }
  .footer-legal { display: flex; gap: 24px; }
  .footer-legal a { font-size: 11px; color: rgba(200,217,192,0.2); text-decoration: none; font-weight: 300; transition: color 0.3s; }
  .footer-legal a:hover { color: var(--sage); }

  /* ── MODAL ── */
  .modal-overlay {
    position: fixed; inset: 0;
    background: rgba(20,35,22,0.85); backdrop-filter: blur(10px);
    z-index: 999; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.4s;
  }
  .modal-overlay.open { opacity: 1; pointer-events: all; }
  .modal {
    background: var(--cream); max-width: 900px; width: 92%; padding: 40px 20px 20px;
    position: relative; transform: translateY(30px); transition: transform 0.4s;
    max-height: 95vh; overflow-y: auto;
  }
  .modal-overlay.open .modal { transform: translateY(0); }
  .modal-close {
    position: absolute; top: 22px; right: 22px; background: none; border: none;
    font-size: 18px; color: var(--text-light); cursor: none; transition: color 0.3s;
  }
  .modal-close:hover { color: var(--sage); }
  .modal-tag { font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--sage); font-weight: 300; margin-bottom: 14px; }
  .modal-title { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 300; color: var(--ink); margin-bottom: 10px; }
  .modal-sub { font-size: 13px; color: var(--text-light); font-weight: 300; line-height: 1.7; margin-bottom: 36px; }
  .form-field { margin-bottom: 18px; }
  .form-label { display: block; font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-light); font-weight: 300; margin-bottom: 7px; }
  .form-input, .form-select, .form-textarea {
    width: 100%; padding: 13px 15px; border: 1px solid var(--warm);
    background: white; font-family: 'Jost', sans-serif; font-size: 14px;
    font-weight: 300; color: var(--ink); outline: none; transition: border-color 0.3s; appearance: none;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--sage); }
  .form-textarea { resize: vertical; min-height: 90px; }
  .form-submit {
    width: 100%; padding: 15px; background: var(--forest); color: white; border: none;
    font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: 0.25em;
    text-transform: uppercase; font-weight: 400; cursor: none; margin-top: 6px; transition: background 0.3s;
  }
  .form-submit:hover { background: var(--sage); }

  /* reveal */
  .reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* scrollbar */
  ::-webkit-scrollbar { width: 3px; }
  ::-webkit-scrollbar-track { background: var(--cream); }
  ::-webkit-scrollbar-thumb { background: var(--sage-light); }

  /* btn shared */
  .btn-green {
    display: inline-block; padding: 14px 36px;
    background: var(--sage); color: white; text-decoration: none;
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    font-weight: 400; transition: all 0.3s; border: 1px solid var(--sage);
  }
  .btn-green:hover { background: var(--forest); border-color: var(--forest); }

  /* responsive */
  @media(max-width:1024px){
    nav { padding: 22px 28px; }
    nav.scrolled { padding: 14px 28px; }
    .nav-links { display: none; }
    .hero-content { grid-template-columns: 1fr; padding: 120px 28px 80px; }
    .hero-right { display: flex; justify-content: center; margin-top: 40px; }
    .hero-portrait { width: 100%; max-width: 320px; margin: 0 auto; }
    .hero-portrait img { height: 420px; }
    .section-inner { padding: 0 28px; }
    .modalities-header { grid-template-columns: 1fr; }
    .modalities-grid { grid-template-columns: repeat(2, 1fr); }
    .about-inner { grid-template-columns: 1fr; }
    .about-image-wrap { display: block; margin-bottom: 50px; }
    .about-img { height: 450px; }
    .ideal-inner { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .retreats-inner { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .contact-form-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 14px; }
    .sound-btn, .scroll-cue { display: none; }
    .modal { padding: 36px 24px; }
  }

  @media(max-width:600px){
    .modalities-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
  }