*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cream:       #FDF8F5;
  --white:       #FFFFFF;
  --teal:        #1A6B72;
  --teal-mid:    #2A8A94;
  --teal-lt:     #4AACB8;
  --magenta:     #8B3A62;
  --magenta-lt:  #C45A8A;
  --gold:        #C4883A;
  --gold-lt:     #E8A84A;
  --gold-pale:   #F5D080;
  --gold-glow:   rgba(196,136,58,0.18);
  --deep:        #0E1E2A;
  --text:        #1A2428;
  --text-mid:    #4A6068;
  --text-light:  #82A0A8;
  --linen:       #EDE6DF;
}

html { scroll-behavior: smooth; font-size: 18px; -webkit-text-size-adjust: 100%; }
body { font-family: 'Raleway', sans-serif; background: var(--cream); color: var(--text); font-weight: 400; font-size: 1rem; line-height: 1.7; overflow-x: hidden; }
section[id] { scroll-margin-top: 110px; }
@media (max-width: 900px) { section[id] { scroll-margin-top: 80px; } html { font-size: 17px; } }
@media (max-width: 480px) { html { font-size: 16px; } }
#offerings { position: relative; }

/* NOTE: We intentionally keep only the hero fade.
   All other section transitions use clean, hard lines now. */

/* NAV — name left, links + CTA justified across full width */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#nav.scrolled {
  background: rgba(253, 250, 245, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 40px;
  border-bottom: 1px solid rgba(196, 151, 58, 0.2);
}
.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--gold-lt);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  justify-self: start;
  white-space: nowrap;
}
.nav-name .nav-initial { font-size: 1.35em; }
#nav.scrolled .nav-name { color: var(--teal); text-shadow: none; }
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
}
#nav.scrolled .nav-links a { color: var(--text-mid); text-shadow: none; }
.nav-links a:hover { color: #ffffff; }
#nav.scrolled .nav-links a:hover { color: var(--teal); }
.nav-cta {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.25s;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(196, 136, 58, 0.4);
  justify-self: end;
}
#nav.scrolled .nav-cta {
  color: var(--teal);
  background: transparent;
  border-color: var(--gold);
  text-shadow: none;
  box-shadow: none;
}
.nav-cta:hover { background: var(--gold-lt); color: #ffffff; }
#nav.scrolled .nav-cta:hover { background: var(--gold-glow); color: var(--teal); }

.nav-toggle { display: none; background: none; border: none; padding: 10px; cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; min-width: 44px; min-height: 44px; align-items: center; }
.nav-toggle-bar { display: block; width: 22px; height: 2px; background: currentColor; color: var(--gold-lt); transition: transform 0.25s, opacity 0.25s; }
#nav.scrolled .nav-toggle-bar { color: var(--teal); }
#nav.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
#nav.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-menu { display: grid; grid-template-columns: 1fr auto; align-items: center; justify-self: stretch; width: 100%; gap: 24px; }
.nav-menu .nav-links { grid-column: 1; justify-self: center; }
.nav-menu .nav-cta { grid-column: 2; justify-self: end; flex-shrink: 0; }
.nav-menu .nav-close { display: none; }

@media (max-width: 900px) {
  #nav { grid-template-columns: 1fr; grid-template-rows: auto auto; padding: 6px 16px; gap: 0; }
  .nav-name { grid-column: 1; grid-row: 1; font-size: 0.95rem; padding: 2px 0; line-height: 1.25; }
  .nav-toggle {
    display: flex; grid-column: 1; grid-row: 2; justify-self: end;
    min-width: 40px; min-height: 40px; padding: 8px;
    align-items: center; justify-content: center;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background: rgba(14, 30, 42, 0.98); backdrop-filter: blur(12px);
    padding: max(24px, env(safe-area-inset-top)) 20px max(32px, env(safe-area-inset-bottom));
    opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
    z-index: 99;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }
  #nav.nav-open .nav-menu { opacity: 1; visibility: visible; z-index: 101; }
  .nav-menu .nav-close {
    display: block;
    align-self: flex-end;
    background: none; border: none;
    font-family: 'Raleway', sans-serif; font-size: 0.95rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold-lt); padding: 14px 16px; margin: -14px -16px 24px 0;
    cursor: pointer; min-height: 48px; min-width: 48px;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-menu .nav-close:hover { color: #fff; }
  .nav-menu .nav-links {
    grid-column: unset; justify-self: unset;
    display: flex; flex-direction: column; align-items: stretch;
    gap: 0; list-style: none; margin: 0; padding: 0; flex-shrink: 0;
    width: 100%; max-width: 320px;
  }
  .nav-menu .nav-links li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-menu .nav-links li:last-child { border-bottom: none; }
  .nav-menu .nav-links a {
    font-size: 1.1rem; letter-spacing: 0.08em; min-height: 56px;
    display: flex; align-items: center; justify-content: center; padding: 16px 20px;
    text-shadow: none; color: #ffffff; font-weight: 500; width: 100%; box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
  }
  #nav.nav-open .nav-menu .nav-links a { color: #ffffff; }
  #nav.nav-open .nav-menu .nav-links a:hover { color: var(--gold-lt); }
  .nav-menu .nav-cta {
    grid-column: unset; justify-self: unset;
    font-size: 0.95rem; padding: 18px 32px; min-height: 56px;
    align-items: center; justify-content: center; color: var(--teal); background: var(--gold);
    border-color: var(--gold); text-shadow: none; font-weight: 500; flex-shrink: 0; margin-top: 32px;
    width: 100%; max-width: 320px; box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
  }
}

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-start; overflow: hidden; }
.hero-img { position: absolute; inset: 0; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; transform: scale(1.05); animation: slowZoom 16s ease-out forwards; filter: brightness(1.35) contrast(1.05) saturate(1.15); }
@keyframes slowZoom { to { transform: scale(1); } }
.hero-fade {
  position: absolute;
  inset: 0;
  /* Left: darken busy rock/bridge behind type; then teal + vertical fade to cream */
  background:
    radial-gradient(ellipse 58% 95% at 0% 38%, rgba(14, 30, 42, 0.58) 0%, rgba(14, 30, 42, 0.22) 48%, transparent 72%),
    radial-gradient(ellipse 90% 70% at 0% 0%, rgba(26,107,114,0.2) 0%, transparent 50%),
    linear-gradient(
      to bottom,
      rgba(14,30,42,0.28) 0%,
      rgba(14,30,42,0.08) 28%,
      rgba(255,255,255,0.04) 45%,
      rgba(0,0,0,0.06) 65%,
      var(--cream) 100%
    );
}
.hero-content { position: relative; z-index: 2; padding: 232px 15% 112px 4%; max-width: 700px; }
@media (max-width: 900px) { .hero-content { padding: 182px 9% 84px 4.5%; } }
.hero-eyebrow { font-size: 0.75rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 8px; opacity: 0; animation: fadeUp 0.7s ease 0.4s forwards; display: flex; align-items: center; gap: 14px; }
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); opacity: 0.7; display: block; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 5.5vw, 6rem); font-weight: 400; line-height: 0.82; color: var(--white); margin-bottom: 32px; opacity: 0; animation: fadeUp 0.8s ease 0.6s forwards; }
.hero-title-line { display: block; }
.hero-title-line--1 { margin-left: 0; }
.hero-title-line--2 { margin-left: clamp(0.35rem, 3.5vw, 2rem); }
.hero-title-line--3 { margin-left: clamp(1rem, 9vw, 5rem); }
.hero-title em { font-style: italic; color: var(--gold-lt); text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45); }
.hero-sub { font-size: 1.05rem; line-height: 1.38; color: rgba(255,255,255,0.9); max-width: 440px; margin-bottom: 52px; opacity: 0; animation: fadeUp 0.8s ease 0.8s forwards; }
.hero .hero-eyebrow { color: var(--gold-lt); text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45); }
.hero .hero-eyebrow::before { background: var(--gold); opacity: 0.9; }

/* ABOUT YOU */
.about-you { background: var(--cream); padding: 100px 10%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; }
.about-you > * { position: relative; z-index: 1; }
.eyebrow { font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); display: block; opacity: 0.6; }
.about-you h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 2.5vw, 2.8rem); font-weight: 400; color: var(--text); line-height: 1.2; margin-bottom: 28px; }
.about-you h2 em { font-style: italic; color: var(--teal); }
.about-you p { font-size: 1rem; line-height: 1.9; color: var(--text-mid); margin-bottom: 18px; }
.closing-line { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--linen); font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; color: var(--magenta); line-height: 1.6; }
.aside-cards { display: flex; flex-direction: column; gap: 20px; }
.aside-card { position: relative; padding: 24px 28px; padding-left: 30px; background: var(--white); }
.aside-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, transparent 0%, var(--gold) 15%, var(--gold) 85%, transparent 100%); border-radius: 1px; }
.aside-card-label { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.aside-card p { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-style: italic; color: var(--text-mid); line-height: 1.65; }

/* ABOUT KARLIE */
.about-karlie { background: var(--cream); padding: 80px 10%; display: grid; grid-template-columns: 360px minmax(680px, 1fr); grid-template-rows: auto auto; gap: 72px; align-items: start; max-width: 1680px; margin: 0 auto; position: relative; overflow: hidden; }
.about-karlie::before { content: ''; position: absolute; top: 50%; left: -8%; width: 40%; height: 80%; background: radial-gradient(ellipse at center, rgba(196, 136, 58, 0.08) 0%, transparent 70%); pointer-events: none; transform: translateY(-50%); }
.karlie-photo-wrap { position: relative; width: 100%; max-width: 374px; justify-self: start; align-self: center; }
.karlie-photo-wrap::before { content: ''; position: absolute; inset: -20px; background: radial-gradient(ellipse at center, rgba(196, 136, 58, 0.15) 0%, rgba(26, 107, 114, 0.06) 40%, transparent 70%); border-radius: 50%; pointer-events: none; z-index: 0; }
.karlie-photo-wrap img { position: relative; z-index: 1; width: 100%; display: block; object-fit: cover; object-position: center 12%; filter: saturate(0.92); max-height: 442px; border-radius: 12px; box-shadow: 0 24px 48px rgba(14, 30, 42, 0.12), 0 0 0 1px rgba(196, 136, 58, 0.08); }
.karlie-photo-wrap::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px; background: linear-gradient(to bottom, transparent, var(--cream)); border-radius: 0 0 12px 12px; z-index: 1; pointer-events: none; }
.karlie-text { width: 100%; min-width: 0; min-height: 0; align-self: start; }
.karlie-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 2.2vw, 2.6rem); font-weight: 400; color: var(--text); line-height: 1.2; margin-bottom: 24px; }
.karlie-text h2 em { font-style: italic; color: var(--teal); }
.karlie-text p { font-size: 1rem; line-height: 1.9; color: var(--text-mid); margin-bottom: 16px; }
.karlie-text .purpose-line { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-style: italic; color: var(--teal); line-height: 1.7; margin-top: 8px; margin-bottom: 0; }
.credentials-wrap { grid-column: 1 / -1; display: flex; justify-content: center; padding-top: 8px; position: relative; z-index: 1; }
.credentials { position: relative; padding: 24px 36px; padding-left: 39px; background: rgba(196, 136, 58, 0.06); border-radius: 0 12px 12px 0; display: flex; flex-direction: column; gap: 10px; box-shadow: 0 4px 24px rgba(196, 136, 58, 0.06); max-width: 640px; align-items: center; }
.credentials::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, transparent 0%, var(--gold) 12%, var(--gold) 88%, transparent 100%); border-radius: 0 2px 2px 0; }
.cred { font-size: 0.92rem; color: var(--text-mid); display: flex; gap: 10px; align-items: baseline; line-height: 1.55; justify-content: center; }
.cred::before { content: '·'; color: var(--gold); font-size: 1.2rem; line-height: 1; flex-shrink: 0; }

/* OFFERINGS */
.offerings-intro { background: var(--teal); padding: 80px 10%; text-align: center; position: relative; overflow: hidden; }
.offerings-intro::before { content: none; }
.offerings-intro h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 2.8vw, 3rem); color: var(--white); margin-bottom: 16px; position: relative; }
.offerings-intro h2 em { font-style: italic; color: var(--gold-lt); }
.offerings-intro p { font-size: 1rem; line-height: 1.85; color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto; position: relative; }
.offerings-intro > * { position: relative; z-index: 1; }
.gold-rule { width: 48px; height: 1px; background: var(--gold); margin: 0 auto 24px; opacity: 0.7; }
.offerings-tracks { display: grid; grid-template-columns: 1fr 1fr; position: relative; }
.track-therapy { background: var(--cream); padding: 72px 8%; position: relative; z-index: 1; }
.track-soul { background: var(--teal); padding: 72px 8%; position: relative; overflow: hidden; z-index: 1; }
.track-soul::before { content: none; }
.track-tag { display: inline-block; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; padding: 6px 14px; margin-bottom: 18px; border: 1px solid; }
.track-tag.therapy { color: var(--teal); border-color: var(--teal-lt); background: rgba(27,94,123,0.06); }
.track-tag.soul { color: var(--gold-lt); border-color: rgba(196,151,58,0.5); background: rgba(196,151,58,0.08); }
.track-title { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2vw, 2.2rem); font-weight: 400; line-height: 1.2; margin-bottom: 14px; }
.track-therapy .track-title { color: var(--text); }
.track-soul .track-title { color: var(--white); }
.track-therapy .track-title em { font-style: italic; color: var(--teal); }
.track-soul .track-title em { font-style: italic; color: var(--gold-lt); }
.track-desc { font-size: 1rem; line-height: 1.85; margin-bottom: 40px; }
.track-therapy .track-desc { color: var(--text-mid); }
.track-soul .track-desc { color: rgba(255,255,255,0.62); }
.service-item { padding: 20px 0; border-top: 1px solid; }
.track-therapy .service-item { border-color: var(--linen); }
.track-soul .service-item { border-color: rgba(255,255,255,0.1); }
.service-item:last-of-type { border-bottom: 1px solid; }
.track-therapy .service-item:last-of-type { border-color: var(--linen); }
.track-soul .service-item:last-of-type { border-color: rgba(255,255,255,0.1); }
.track-note { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--linen); font-size: 1rem; line-height: 1.8; color: var(--text-mid); font-style: italic; }
.service-name { font-family: 'Playfair Display', serif; font-size: 1.08rem; margin-bottom: 8px; }
.track-therapy .service-name { color: var(--text); }
.track-soul .service-name { color: var(--white); }
.service-desc { font-size: 0.92rem; line-height: 1.75; }
.service-desc p { margin: 0 0 1em; }
.service-desc p:last-child { margin-bottom: 0; }
.track-therapy .service-desc { color: var(--text-light); }
.track-soul .service-desc { color: rgba(255,255,255,0.55); }
.service-invite { margin-top: 14px; font-size: 0.9rem; line-height: 1.7; color: var(--text-mid); }
.service-invite a { color: var(--teal); text-decoration: none; border-bottom: 1px solid var(--teal-lt); transition: color 0.2s, border-color 0.2s; }
.service-invite a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.soul-disclaimer { position: relative; margin-top: 32px; padding: 18px 20px; padding-left: 22px; font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.5); font-style: italic; }
.soul-disclaimer::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, transparent 0%, rgba(196,151,58,0.5) 15%, rgba(196,151,58,0.5) 85%, transparent 100%); }

/* WORK WITH ME */
.work-with-me { background: var(--white); padding: 88px 10% 72px; max-width: 1100px; margin: 0 auto; }
.wwm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.wwm-begin { min-width: 0; }
.wwm-begin .eyebrow { margin-bottom: 8px; }
.work-with-me h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2vw, 2.4rem); color: var(--text); margin-bottom: 14px; line-height: 1.25; }
.work-with-me h2 em { font-style: italic; color: var(--teal); }
.wwm-intro { font-size: 0.98rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 26px; }
.wwm-step { padding: 20px 0; }
.wwm-step .step-title { margin-bottom: 6px; }
.wwm-step .step-desc { margin-bottom: 0; }
.wwm-journey { display: flex; flex-direction: column; gap: 24px; }
.wwm-path { position: relative; padding: 22px 24px 22px 28px; background: var(--cream); border: 1px solid var(--linen); border-radius: 10px; }
.wwm-path::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, transparent 0%, var(--gold) 12%, var(--gold) 88%, transparent 100%); border-radius: 10px 0 0 10px; }
.path-label { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--teal); margin-bottom: 10px; }
.path-desc { font-size: 0.92rem; line-height: 1.7; color: var(--text-mid); }
.step-title { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--text); }
.step-desc { font-size: 0.9rem; line-height: 1.7; color: var(--text-light); }
.contact-section { padding: 44px 0 0; margin-top: 44px; border-top: 1px solid var(--linen); }
#contact-info { scroll-margin-top: 38vh; }
@media (max-width: 900px) { #contact-info { scroll-margin-top: 28vh; } }
.contact-section-label { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2vw, 2.4rem); font-weight: 400; font-style: italic; color: var(--teal); margin-bottom: 24px; line-height: 1.25; }
.contact-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 40px; max-width: 900px; margin: 0 auto; text-align: left; }
.contact-item { min-width: 0; }
.contact-item-label { display: block; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 6px; }
.contact-item-value { font-size: 0.95rem; color: var(--text); text-decoration: none; transition: color 0.2s; line-height: 1.5; word-break: break-word; }
.contact-item-value:hover { color: var(--teal); }
.contact-address { display: inline-block; line-height: 1.5; }
.contact-social { font-size: 0.9rem; color: var(--text); }
.contact-social a { color: var(--text); text-decoration: none; transition: color 0.2s; }
.contact-social a:hover { color: var(--teal); }
.contact-social-sep { color: var(--text-mid); margin: 0 0.35em; font-weight: 300; }
@media (max-width: 720px) { .contact-strip { grid-template-columns: 1fr 1fr; gap: 24px 32px; } }
@media (max-width: 420px) { .contact-strip { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .wwm-grid { grid-template-columns: 1fr; gap: 40px; } }

@media (max-width: 900px) {
  .offerings-tracks { grid-template-columns: 1fr; }
  .track-therapy, .track-soul { padding: 56px 6% 56px; }
  .journal { grid-template-columns: 1fr; min-height: auto; align-items: stretch; overflow: visible; }
  .journal-content { padding: 40px 20px 48px; order: 1; justify-content: flex-start; max-width: 100%; overflow: visible; min-height: 0; }
  .journal-content::before, .journal-content::after { display: none; }
  .j-title { font-size: 1.6rem; line-height: 1.3; }
  .j-title br { display: none; }
  .j-desc { max-width: 100%; margin-bottom: 20px; }
  .j-perks { margin-bottom: 24px; }
  .j-form { max-width: 100%; width: 100%; display: block !important; }
  .j-form .row-form { width: 100%; max-width: 100%; display: block !important; }
  .j-form form.ml-block-form { width: 100%; max-width: 100%; display: flex !important; flex-direction: column; gap: 10px; }
  .j-form .ml-block-form { width: 100%; max-width: 100%; display: flex !important; flex-direction: column; gap: 10px; }
  .j-form input, .j-form button { width: 100%; box-sizing: border-box; min-width: 0; }
  .journal-image { order: 2; padding: 24px 20px 40px; min-height: 0; display: flex; align-items: center; justify-content: center; overflow: visible; }
  .journal-book { transform: none; display: block; }
  .journal-book-cover { width: min(280px, 85%); min-height: 0; aspect-ratio: 3 / 4; transform: none; }
  .journal-cover-card { padding: 12px 14px; }
  .journal-cover-title { font-size: 1rem; }
  .journal-cover-sub { font-size: 0.7rem; }
  .footer-top { flex-direction: column; align-items: center; text-align: center; gap: 28px; padding-bottom: 28px; }
  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .footer-contact { text-align: center; align-items: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
  .footer-disclaimer { text-align: center; }
  .work-with-me { padding: 56px 6% 48px; }
  .about-you { grid-template-columns: 1fr; gap: 48px; padding: 56px 6%; }
  .about-karlie { padding: 56px 6%; gap: 48px; }
  .offerings-intro { padding: 56px 6%; }
  footer { padding: 40px 6% 28px; }
  .nav-cta { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .hero-content { padding: 172px 9% 64px 4.5%; }
  .footer-nav a { padding: 12px 16px; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; -webkit-tap-highlight-color: transparent; }
  .contact-item-value { padding: 8px 0; min-height: 44px; display: inline-flex; align-items: center; -webkit-tap-highlight-color: transparent; }
  .service-invite a { padding: 4px 0; margin: 0 -2px; }
}

/* Extra small screens */
@media (max-width: 480px) {
  .hero-content { padding: 146px 9% 52px 4.5%; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-title-line--2 { margin-left: clamp(0.2rem, 2.5vw, 1rem); }
  .hero-title-line--3 { margin-left: clamp(0.55rem, 6vw, 2.5rem); }
  .track-therapy, .track-soul { padding: 40px 5% 40px; }
  .offerings-intro { padding: 48px 5%; }
  .work-with-me { padding: 40px 5% 36px; }
  .contact-strip { gap: 20px 24px; }
  .footer-nav { gap: 12px; }
  .j-form input, .j-form button { font-size: 16px; min-height: 48px; }
}

/* JOURNAL */
.journal { display: grid; grid-template-columns: 1fr 1fr; min-height: 65vh; position: relative; background: var(--teal); }
.journal-stacked { display: flex; flex-direction: column; align-items: center; text-align: center; grid-template-columns: unset; min-height: auto; padding: 64px 6% 80px; }
.journal-stacked .j-eyebrow { justify-content: center; margin-bottom: 20px; }
.journal-stacked .journal-image-link { display: block; text-decoration: none; color: inherit; margin-bottom: 28px; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.journal-stacked .journal-image-link:hover .journal-book-cover { transform: rotateY(-6deg) rotateX(2deg) scale(1.02); }
.journal-stacked .journal-image-link:focus-visible { outline: 2px solid var(--gold-lt); outline-offset: 8px; border-radius: 4px; }
.journal-stacked .journal-content { padding: 0; max-width: 520px; order: 3; }
.journal-stacked .j-eyebrow { order: 0; }
.journal-stacked .journal-image-link { order: 1; }
.journal-stacked .journal-image-link .journal-image { order: unset; }
#journal-form { scroll-margin-top: 100px; }
.journal-image {
  position: relative;
  overflow: visible;
  z-index: 1;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.journal-book {
  perspective: 1200px;
  transform-style: preserve-3d;
}
.journal-book-cover {
  position: relative;
  width: min(380px, 90%);
  max-width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 400px;
  border-radius: 4px 12px 12px 4px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow:
    0 4px 6px rgba(0,0,0,0.1),
    0 25px 50px rgba(0,0,0,0.35),
    4px 0 12px rgba(0,0,0,0.15),
    -2px 0 8px rgba(0,0,0,0.08);
  transform: rotateY(-8deg) rotateX(2deg);
  background: var(--deep);
}
.journal-book-cover::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 12px;
  background: linear-gradient(to right, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  z-index: 2;
  border-radius: 4px 0 0 4px;
  pointer-events: none;
}
.journal-book-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(1.05) saturate(0.95);
}
.journal-cover-card {
  position: absolute;
  left: 10%;
  bottom: 10%;
  max-width: 78%;
  padding: 14px 18px;
  background: rgba(253,248,245,0.96);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}
.journal-cover-eyebrow {
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.journal-cover-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 4px;
}
.journal-cover-title em {
  font-style: italic;
  color: var(--teal);
}
.journal-cover-sub {
  font-size: 0.75rem;
  color: var(--text-mid);
}
.journal-content { background: var(--teal); padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; z-index: 1; }
.journal-content::before { content: none; }
.journal-content::after { content: none; }
.j-eyebrow { font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 22px; display: flex; align-items: center; gap: 10px; position: relative; }
.j-eyebrow::before { content: '✦'; font-size: 0.6rem; }
.j-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 2.6vw, 2.8rem); color: var(--white); line-height: 1.15; margin-bottom: 8px; position: relative; }
.j-title em { font-style: italic; color: var(--gold-lt); }
.j-sub { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-style: italic; color: rgba(196,151,58,0.8); margin-bottom: 24px; position: relative; }
.j-desc { font-size: 0.98rem; line-height: 1.85; color: rgba(255,255,255,0.72); margin-bottom: 28px; max-width: 360px; position: relative; }
.j-perks { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 9px; position: relative; }
.j-perks li { font-size: 0.92rem; color: rgba(255,255,255,0.7); display: flex; gap: 10px; align-items: baseline; }
.j-perks li::before { content: '—'; color: var(--gold); font-family: 'Playfair Display', serif; flex-shrink: 0; }
.j-form { display: flex; flex-direction: column; gap: 10px; max-width: 360px; position: relative; }
.j-form .ml-block-form { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 100%; }
.j-form input { font-family: 'Raleway', sans-serif; font-size: 16px; font-weight: 400; color: var(--white); background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-bottom-color: rgba(196,151,58,0.5); padding: 14px 18px; outline: none; transition: all 0.2s; width: 100%; box-sizing: border-box; }
.j-form input::placeholder { color: rgba(255,255,255,0.35); }
.j-form input:focus { background: rgba(255,255,255,0.1); border-bottom-color: var(--gold-lt); }
.j-form button { font-family: 'Raleway', sans-serif; font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); background: var(--gold); border: none; padding: 14px 30px; cursor: pointer; transition: all 0.25s; align-self: flex-start; box-shadow: 0 4px 20px rgba(196,151,58,0.3); width: 100%; box-sizing: border-box; }
.j-form button:hover { background: var(--gold-lt); transform: translateY(-1px); }
.j-privacy { margin-top: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.4); position: relative; }
.j-success { font-size: 0.98rem; color: rgba(255,255,255,0.9); margin: 0 0 8px 0; position: relative; }

/* FOOTER */
footer { background: var(--deep); padding: 52px 10% 36px; position: relative; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 36px; border-bottom: 1px solid rgba(196,151,58,0.12); margin-bottom: 24px; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: rgba(255,255,255,0.75); }
.footer-nav { display: flex; justify-content: flex-end; gap: 44px; margin-left: auto; padding-right: 48px; }
.footer-nav a { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold-lt); }
.footer-contact { display: flex; flex-direction: column; gap: 6px; text-align: right; }
.footer-contact a { font-size: 0.9rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.footer-disclaimer { font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.35); max-width: 660px; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); white-space: nowrap; flex-shrink: 0; }

/* Prevent background scroll when mobile menu is open */
body.nav-menu-open { overflow: hidden; }

/* MOBILE JOURNAL — strong overrides so section and form display correctly */
@media (max-width: 900px) {
  #journal .journal-content { overflow: visible !important; height: auto !important; min-height: 0 !important; }
  #journal .journal-content > * { visibility: visible !important; }
  #journal .j-form { display: block !important; visibility: visible !important; }
  #journal .j-form .row-form { display: block !important; visibility: visible !important; }
  #journal .j-form .ml-block-form { display: flex !important; flex-direction: column !important; }
  #journal .journal-image { display: flex !important; overflow: visible !important; visibility: visible !important; min-height: 260px !important; }
  #journal .journal-book { display: block !important; visibility: visible !important; }
  #journal .journal-book-cover { display: block !important; visibility: visible !important; }
  #journal .journal-book-cover img { display: block !important; visibility: visible !important; }
}

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }

