/*
  Therapy in Emotion — Stephanie Breen, Toronto.
  Spiritual psychotherapy, Reiki, yoga. "Aura" system: warm ivory ground, muted
  amethyst accent, sage + dusty rose support, one deep aubergine feature band.
  Premium, calm, mobile-first. No gold/brass. No em dashes.
*/
@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Mulish:wght@400;500;600;700&display=swap");

:root {
  --ivory: #f7f2ea;
  --cream: #fbf8f2;
  --oat: #efe6d8;
  --ink: #2e2630;
  --ink-soft: #5d5462;
  --ink-faint: #8b8290;
  --aubergine: #382740;
  --aubergine-deep: #281a30;
  --amethyst: #7c5e9a;
  --amethyst-deep: #5f4480;
  --amethyst-soft: #b6a0cd;
  --sage: #8a9e83;
  --sage-deep: #6f8568;
  --rose: #c98b86;
  --rose-soft: #e8cdc8;
  --line: rgba(46, 38, 48, 0.12);
  --line-soft: rgba(46, 38, 48, 0.07);
  --shadow: 0 18px 50px -28px rgba(40, 26, 48, 0.45);
  --wrap: 1140px;
  --r: 18px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Mulish", system-ui, sans-serif;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, .display {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.wrap { width: min(100% - 2.4rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(56px, 9vw, 116px) 0; position: relative; }
.eyebrow {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amethyst-deep);
}
.lede { font-size: clamp(1.08rem, 1rem + 0.5vw, 1.32rem); color: var(--ink-soft); line-height: 1.6; }
.accent { color: var(--amethyst-deep); }

/* ---- backgrounds rhythm ---- */
.section--cream { background: var(--cream); }
.section--oat { background: var(--oat); }
.section--ink {
  background: radial-gradient(120% 140% at 20% 0%, #4a3553 0%, var(--aubergine) 45%, var(--aubergine-deep) 100%);
  color: var(--cream);
}
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fbf6ff; }
.section--ink .eyebrow { color: var(--amethyst-soft); }
.section--ink .lede { color: rgba(251, 248, 242, 0.82); }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: "Mulish", sans-serif; font-weight: 700; font-size: 0.95rem;
  padding: 0.92em 1.6em; border-radius: 999px; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  border: 1px solid transparent; line-height: 1;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--primary { background: var(--amethyst-deep); color: #fff; box-shadow: 0 14px 30px -16px rgba(95, 68, 128, 0.8); }
.btn--primary:hover { transform: translateY(-2px); background: var(--amethyst); box-shadow: 0 20px 38px -16px rgba(95, 68, 128, 0.9); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--amethyst); color: var(--amethyst-deep); }
.hero .btn--ghost,
.page-hero .btn--ghost {
  color: #fbf6ff;
  background: rgba(40, 26, 48, 0.52);
  border-color: rgba(251, 246, 255, 0.68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px -14px rgba(0, 0, 0, 0.45);
}
.hero .btn--ghost:hover,
.page-hero .btn--ghost:hover {
  color: #fff;
  background: rgba(40, 26, 48, 0.68);
  border-color: rgba(251, 246, 255, 0.9);
}
.section--ink .btn--ghost { color: var(--cream); border-color: rgba(251, 248, 242, 0.35); }
.section--ink .btn--ghost:hover { border-color: var(--amethyst-soft); color: #fff; }
.btn:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--amethyst); outline-offset: 3px; }

/* Brand reset: the host app's globals.css paints text-selection, the catch-all
   focus ring, and the mobile tap highlight in Merto brass (#e3b878). Repaint all
   three in this site's aura palette so no Merto identity bleeds onto the page. */
::selection { background: var(--amethyst-soft); color: var(--aubergine-deep); }
:focus-visible { outline: 2px solid var(--amethyst); outline-offset: 3px; border-radius: 2px; }
/* element-level (not just html): globals.css re-paints brass directly on
   interactive elements under (pointer: coarse), which beats html inheritance. */
html, a, button, summary, label, select, input, textarea, [role="button"] { -webkit-tap-highlight-color: rgba(124, 94, 154, 0.18); }

/* ---------- NAV ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 60; transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; padding: 1.05rem 0; }
.nav.is-stuck { background: rgba(247, 242, 234, 0.86); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line-soft); }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 10px;
  padding: 0.25rem 0.4rem 0.25rem 0.2rem;
  margin: -0.25rem -0.4rem -0.25rem -0.2rem;
}
.brand-mark {
  width: 36px;
  height: 36px;
  flex: none;
  transition: transform 0.32s var(--ease), filter 0.32s var(--ease);
}
.brand-word {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 1.12rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  transition: color 0.25s var(--ease);
}
.brand-word b {
  font-weight: 600;
  color: var(--amethyst-deep);
  transition: color 0.25s var(--ease);
}
.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  transform: translateY(-2px) scale(1.05);
  filter: brightness(1.08);
}
.brand:hover .brand-word,
.brand:focus-visible .brand-word { color: var(--aubergine); }
.brand:hover .brand-word b,
.brand:focus-visible .brand-word b { color: var(--amethyst); }
.brand:focus-visible { outline: 2px solid var(--amethyst); outline-offset: 4px; }
.nav.is-light .brand-word { color: #fbf6ff; }
.nav.is-light .brand-word b { color: var(--amethyst-soft); }
.nav.is-light .brand:hover .brand-mark,
.nav.is-light .brand:focus-visible .brand-mark { filter: brightness(1.15); }
.nav.is-light .brand:hover .brand-word,
.nav.is-light .brand:focus-visible .brand-word { color: #fff; }
.nav.is-light .brand:hover .brand-word b,
.nav.is-light .brand:focus-visible .brand-word b { color: var(--rose-soft); }
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a { font-weight: 600; font-size: 0.95rem; color: var(--ink-soft); transition: color 0.2s var(--ease); position: relative; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav.is-light .nav-links a { color: rgba(251, 248, 242, 0.82); }
.nav.is-light .nav-links a:hover, .nav.is-light .nav-links a[aria-current="page"] { color: #fff; }
.nav-links a:not(.nav-cta)[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--amethyst); border-radius: 2px; }
.nav-cta { margin-left: -1.05rem; padding: 0.62em 1.25em; border-radius: 999px; border: 1px solid transparent; background: var(--amethyst-deep); color: #fff !important; transition: transform 0.2s var(--ease), background 0.2s var(--ease); }
.nav-cta:hover { transform: translateY(-1px); background: var(--amethyst); }
.nav.is-light .nav-cta { background: rgba(251, 246, 255, 0.16); border: 1px solid rgba(251, 246, 255, 0.3); backdrop-filter: blur(4px); }
.nav.is-light .nav-cta:hover { background: rgba(251, 246, 255, 0.26); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: background 0.3s; }
.nav.is-light .nav-toggle span { background: #fbf6ff; }

/* nav dropdown (Offerings).
   The trigger is a real link: clicking it navigates to /offerings. The submenu is a
   subtle hover/focus affordance for jumping straight to a sub-service. The enlarged
   hit area + invisible bridge keep the hover continuous across the trigger->menu gap
   (also force-opened by script.js via .is-open while the pointer is over either). */
.nav-drop { position: relative; display: inline-flex; }
.nav-drop-trigger { display: inline-flex; align-items: center; gap: 0.32rem; cursor: pointer; padding: 0.7rem 0; margin: -0.7rem 0; }
.nav-drop-trigger .caret { width: 0.7em; height: 0.7em; transition: transform 0.2s var(--ease); }
.nav-drop:hover .nav-drop-trigger .caret, .nav-drop:focus-within .nav-drop-trigger .caret, .nav-drop.is-open .nav-drop-trigger .caret { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(2px);
  min-width: 246px; background: rgba(247, 242, 234, 0.97); backdrop-filter: blur(16px);
  border: 1px solid var(--line-soft); border-radius: 14px; box-shadow: var(--shadow);
  padding: 0.5rem; display: grid; gap: 0.1rem; z-index: 80;
  opacity: 0; visibility: hidden; transition: opacity 0.18s var(--ease), transform 0.18s var(--ease);
}
/* invisible bridge spanning the trigger->menu gap so hover never drops into a dead zone */
.nav-drop-menu::before { content: ""; position: absolute; left: -10px; right: -10px; top: -18px; height: 20px; }
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu, .nav-drop.is-open .nav-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(8px); }
.nav-drop-menu a { padding: 0.62rem 0.9rem; border-radius: 9px; font-size: 0.92rem; font-weight: 600; color: var(--ink-soft); transition: background 0.15s, color 0.15s; }
.nav-drop-menu a:hover { background: rgba(124, 94, 154, 0.1); color: var(--amethyst-deep); }
.nav-drop-menu .nav-drop-all { border-top: 1px solid var(--line-soft); margin-top: 0.2rem; color: var(--amethyst-deep); }
.nav.is-light .nav-drop-menu a { color: var(--ink-soft); }
.nav.is-light .nav-drop-menu a:hover, .nav.is-light .nav-drop-menu .nav-drop-all { color: var(--amethyst-deep); }

.nav-overlay { position: fixed; inset: 0; z-index: 70; background: var(--aubergine-deep); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease); }
.nav-overlay[data-open="true"] { opacity: 1; pointer-events: auto; }
.nav-overlay nav { display: flex; flex-direction: column; gap: 0.35rem; width: min(74vw, 320px); }
.nav-overlay a { font-family: "Fraunces", serif; font-size: clamp(1.9rem, 9vw, 2.5rem); line-height: 1.05; color: #fbf6ff; padding: 0.5rem 0; display: flex; align-items: baseline; gap: 1.1rem; }
.nav-overlay a .idx { font-family: "Mulish", sans-serif; font-size: 0.78rem; font-weight: 700; color: var(--amethyst-soft); letter-spacing: 0.12em; width: 2.2ch; flex-shrink: 0; text-align: right; }
.nav-overlay .overlay-sub { display: grid; gap: 0.05rem; margin: 0.1rem 0 0.2rem calc(2.2ch + 1.1rem); }
.nav-overlay .overlay-sub a { font-family: "Mulish", sans-serif; font-size: 1.04rem; font-weight: 600; color: var(--amethyst-soft); padding: 0.34rem 0; display: block; }
.nav-overlay .overlay-sub a:hover { color: #fff; }
.nav-overlay .overlay-cta { margin-top: 1.5rem; justify-content: center; gap: 0; font-family: "Mulish", sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: 0.01em; color: #fff; background: var(--amethyst-deep); border: 1px solid var(--amethyst); border-radius: 999px; padding: 0.9em 1.5em; transition: background 0.25s var(--ease); }
.nav-overlay .overlay-cta:hover { background: var(--amethyst); }
/* Close sits in the SAME box as the hamburger (.nav-toggle): 36x28, anchored to the
   nav's top padding + wrap gutter, glyph centered. Keeps open/close visually fixed. */
.nav-overlay-close { position: absolute; top: 1.3rem; right: 1.2rem; width: 36px; height: 28px; display: flex; align-items: center; justify-content: center; background: none; border: 0; color: #fbf6ff; font-size: 2.1rem; line-height: 1; cursor: pointer; }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; isolation: isolate; }
.hero-bg {
  position: absolute; inset: 0; z-index: -3;
  background:
    radial-gradient(90% 80% at 78% 18%, rgba(182, 160, 205, 0.35), transparent 60%),
    radial-gradient(80% 70% at 12% 92%, rgba(201, 139, 134, 0.28), transparent 55%),
    linear-gradient(155deg, var(--aubergine-deep) 0%, #4a3358 38%, #6f5688 62%, #5a4570 100%);
}
.hero-grain { position: absolute; inset: 0; z-index: -1; opacity: 0.45; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E"); }
.hero-inner { padding-top: 8rem; padding-bottom: 4rem; position: relative; z-index: 2; }
.hero-inner > * {
  opacity: 0;
  animation: hero-copy-in 0.9s var(--ease) forwards;
}
.hero-inner .hero-eyebrow { animation-delay: 0.08s; }
.hero-inner h1 { animation-delay: 0.16s; }
.hero-inner .hero-tag { animation-delay: 0.24s; }
.hero-inner .hero-pillars { animation-delay: 0.32s; }
.hero-inner .hero-cta { animation-delay: 0.4s; }
@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { color: var(--amethyst-soft); margin-bottom: 1.3rem; display: block; }
.hero h1 { font-size: clamp(2.6rem, 1.6rem + 6.4vw, 5.2rem); color: #fff; font-weight: 500; max-width: 16ch; }
.hero h1 em { font-style: italic; color: var(--rose-soft); }
.hero-tag { margin-top: 1.5rem; max-width: 44ch; font-size: clamp(1.1rem, 1rem + 0.6vw, 1.4rem); color: rgba(251, 248, 242, 0.9); font-family: "Fraunces", serif; font-style: italic; font-weight: 400; line-height: 1.5; }
.hero-pillars { margin-top: 1.7rem; display: flex; flex-wrap: wrap; gap: 0.6rem 0.7rem; }
.hero-pillars span { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; color: #fbf6ff; background: rgba(251, 246, 255, 0.12); border: 1px solid rgba(251, 246, 255, 0.22); padding: 0.5em 1em; border-radius: 999px; backdrop-filter: blur(4px); }
.hero-cta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }
.scroll-hint { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(251, 248, 242, 0.7); }

/* Hero ambient: dedicated home photo (lavender, Unsplash) + aubergine scrim. */
@keyframes hero-photo-in {
  from { opacity: 0; transform: scaleX(-1) scale(1.04); }
  to { opacity: 1; transform: scaleX(-1) scale(1); }
}
.hero-figure {
  position: absolute; inset: 0; z-index: -2;
  overflow: hidden; pointer-events: none;
}
.hero-figure img {
  position: absolute; inset: -8% 0; width: 100%; height: 116%;
  object-fit: cover; object-position: 28% 28%;
  transform: scaleX(-1);
  opacity: 0;
  animation: hero-photo-in 1.4s var(--ease) 0.15s forwards;
  filter: saturate(0.88) brightness(0.76) contrast(1.04);
}
.hero-figure::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(
      102deg,
      var(--aubergine-deep) 0%,
      rgba(40, 26, 48, 0.95) 26%,
      rgba(56, 39, 64, 0.82) 40%,
      rgba(74, 51, 88, 0.55) 52%,
      rgba(95, 68, 128, 0.2) 62%,
      transparent 80%
    ),
    linear-gradient(180deg, rgba(40, 26, 48, 0.4) 0%, transparent 28%, transparent 72%, rgba(40, 26, 48, 0.45) 100%);
}

/* breathe ring — frames the lavender stems (mid-right, not the lens flare) */
.breathe {
  position: absolute; z-index: 0;
  left: 70%;
  top: 50%;
  width: min(24vw, 280px);
  aspect-ratio: 1;
  translate: -50% -50%;
  pointer-events: none;
  opacity: 0;
  animation: hero-breathe-in 1.1s var(--ease) 0.55s forwards;
}
.hero .breathe { z-index: 0; }
@keyframes hero-breathe-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.breathe span { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(251, 246, 255, 0.4); animation: breathe 7s var(--ease) infinite; }
.breathe span:nth-child(2) { inset: 12%; border-color: rgba(232, 205, 200, 0.45); animation-delay: 0.5s; }
.breathe span:nth-child(3) { inset: 24%; border-color: rgba(182, 160, 205, 0.55); animation-delay: 1s; }
.breathe span:nth-child(4) { inset: 36%; border-color: rgba(251, 246, 255, 0.3); animation-delay: 1.5s; }
@keyframes breathe { 0%, 100% { transform: scale(0.86); opacity: 0.5; } 50% { transform: scale(1.04); opacity: 1; } }

/* ---------- intro / lead band ---------- */
.lead-band { text-align: center; }
.lead-band .eyebrow { display: block; margin-bottom: 1.2rem; }
.lead-band h2 { font-size: clamp(1.7rem, 1.2rem + 2.6vw, 2.9rem); max-width: 22ch; margin: 0 auto 1.2rem; font-weight: 400; }
.lead-band p { max-width: 56ch; margin: 0 auto; }

/* ---------- pillars ---------- */
.pillars-head { max-width: 40ch; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.pillars-head h2 { font-size: clamp(1.9rem, 1.3rem + 3vw, 3.1rem); font-weight: 400; margin-top: 0.7rem; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2vw, 1.8rem); }
.pillar-grid--duo { grid-template-columns: repeat(2, 1fr); }
.pillar { background: var(--cream); border: 1px solid var(--line-soft); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); display: flex; flex-direction: column; }
.pillar:hover { transform: translateY(-6px); box-shadow: 0 28px 60px -30px rgba(40, 26, 48, 0.5); }
.pillar-img { aspect-ratio: 4 / 3.4; overflow: hidden; }
.pillar-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.pillar:hover .pillar-img img { transform: scale(1.05); }
.pillar-body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.pillar-body h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.pillar-body .role { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage-deep); margin-bottom: 0.7rem; }
.pillar-body p { color: var(--ink-soft); font-size: 0.98rem; flex: 1; }
.pillar-body .more { margin-top: 1.1rem; font-weight: 700; font-size: 0.9rem; color: var(--amethyst-deep); }

/* ---------- approach (ink feature band) ---------- */
.approach-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.approach-copy h2 { font-size: clamp(1.9rem, 1.3rem + 3vw, 3rem); font-weight: 400; margin: 0.8rem 0 1.3rem; }
.approach-copy p + p { margin-top: 1rem; }
.approach-triad { display: flex; flex-direction: column; gap: 1rem; }
.triad-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem 1.3rem; border-radius: 14px; background: rgba(251, 246, 255, 0.07); border: 1px solid rgba(251, 246, 255, 0.12); }
.triad-item .n { font-family: "Fraunces", serif; font-size: 1.5rem; color: var(--amethyst-soft); line-height: 1; }
.triad-item h4 { font-family: "Mulish", sans-serif; font-weight: 700; font-size: 1.02rem; color: #fbf6ff; margin-bottom: 0.25rem; }
.triad-item p { font-size: 0.92rem; color: rgba(251, 248, 242, 0.78); }
.triad-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

/* ---------- about teaser ---------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-portrait { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.about-portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 15%; }
.about-portrait::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(46, 38, 48, 0.08); border-radius: var(--r); }
.about-copy h2 { font-size: clamp(1.8rem, 1.2rem + 2.8vw, 2.8rem); font-weight: 400; margin: 0.7rem 0 1.2rem; }
.about-copy p + p { margin-top: 0.9rem; }
.about-copy .signature { margin-top: 1.5rem; font-family: "Fraunces", serif; font-style: italic; font-size: 1.2rem; color: var(--amethyst-deep); }

/* ---------- glimpses gallery (scrapbook strip) ---------- */
.glimpses-head { text-align: center; max-width: 32ch; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.glimpses-head h2 { font-size: clamp(1.8rem, 1.2rem + 2.8vw, 2.8rem); font-weight: 400; margin-top: 0.6rem; }
.glimpses { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.8rem, 1.6vw, 1.3rem); align-items: start; }
.glimpses figure { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.glimpses figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.glimpses figure:hover img { transform: scale(1.06); }
.glimpses figure:nth-child(1) { aspect-ratio: 4 / 5.4; }
.glimpses figure:nth-child(2) { aspect-ratio: 4 / 4.5; margin-top: clamp(1rem, 3vw, 2.4rem); }
.glimpses figure:nth-child(3) { aspect-ratio: 4 / 5.4; }
.glimpses figure:nth-child(4) { aspect-ratio: 4 / 4.5; margin-top: clamp(1rem, 3vw, 2.4rem); }

/* ---------- quote ---------- */
.quote { text-align: center; }
.quote blockquote { font-family: "Fraunces", serif; font-style: italic; font-weight: 400; font-size: clamp(1.5rem, 1rem + 2.4vw, 2.5rem); line-height: 1.4; max-width: 24ch; margin: 0 auto; color: #fbf6ff; }
.quote .mark { color: var(--amethyst-soft); }

/* ---------- FAQ ---------- */
.faq-head { max-width: 30ch; margin-bottom: 2rem; }
.faq-head h2 { font-size: clamp(1.8rem, 1.2rem + 2.8vw, 2.8rem); font-weight: 400; margin-top: 0.6rem; }
.faq { display: grid; gap: 0.7rem; max-width: 820px; }
.faq details { background: var(--cream); border: 1px solid var(--line-soft); border-radius: 14px; padding: 0.3rem 1.4rem; transition: border-color 0.2s; }
.faq details[open] { border-color: rgba(124, 94, 154, 0.3); }
.faq summary { font-family: "Fraunces", serif; font-size: 1.15rem; font-weight: 500; padding: 1.05rem 2rem 1.05rem 0; cursor: pointer; list-style: none; position: relative; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; translate: 0 -50%; font-size: 1.5rem; color: var(--amethyst); transition: transform 0.25s var(--ease); font-family: "Mulish", sans-serif; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .ans { padding: 0 0 1.2rem; color: var(--ink-soft); }
.faq .ans a { color: var(--amethyst-deep); border-bottom: 1px solid var(--amethyst-soft); }

/* ---------- contact CTA band ---------- */
.cta-band { text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { font-size: clamp(2rem, 1.3rem + 3.4vw, 3.4rem); font-weight: 400; max-width: 18ch; margin: 0.8rem auto 1rem; }
.cta-band p { max-width: 46ch; margin: 0 auto 2rem; }
.cta-meta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.6rem 2rem; justify-content: center; font-size: 0.92rem; color: rgba(251, 248, 242, 0.78); }
.cta-meta a { color: #fbf6ff; border-bottom: 1px solid rgba(182, 160, 205, 0.5); }
.cta-band .pending { margin-top: 1rem; font-size: 0.78rem; color: rgba(251, 248, 242, 0.5); font-style: italic; }

/* ---------- contact page form ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.form { display: grid; gap: 1.1rem; }
.form label { display: block; font-weight: 700; font-size: 0.86rem; margin-bottom: 0.4rem; color: var(--ink); }
.field { width: 100%; font-family: inherit; font-size: 1rem; padding: 0.85em 1em; border: 1px solid var(--line); border-radius: 12px; background: var(--cream); color: var(--ink); transition: border-color 0.2s; }
.field:focus { outline: none; border-color: var(--amethyst); }
textarea.field { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--ink-faint); }
.field--error { border-color: #c5503e; background: rgba(197, 80, 62, 0.06); }
.field--error:focus { border-color: #d9745f; }
.field-err { display: block; margin-top: 0.4rem; font-size: 0.78rem; color: #c5503e; }
.field-err:empty { display: none; }
select.field { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235d5462' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1em center; padding-right: 2.6em; }
.info-card { background: var(--cream); border: 1px solid var(--line-soft); border-radius: var(--r); padding: 1.8rem; box-shadow: var(--shadow); }
.info-card h3 { font-size: 1.3rem; margin-bottom: 1.2rem; }
.info-row { display: flex; flex-direction: column; gap: 0.15rem; padding: 0.8rem 0; border-top: 1px solid var(--line-soft); }
.info-row:first-of-type { border-top: 0; }
.info-row .k { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; }
.info-row a, .info-row span:last-child { color: var(--ink); }
.info-row a:hover { color: var(--amethyst-deep); }

/* ---------- generic content blocks (about / offerings) ---------- */
.prose { max-width: 68ch; }
.prose p + p { margin-top: 1rem; }
.prose h2 { font-size: clamp(1.7rem, 1.2rem + 2.4vw, 2.6rem); font-weight: 400; margin: 0 0 1rem; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.story-grid.flip .story-figure { order: -1; }
.story-figure { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.story-figure img { width: 100%; aspect-ratio: 4 / 3.2; object-fit: cover; }
.section-head { margin-bottom: clamp(2rem, 4vw, 3rem); max-width: 44ch; }
.section-head h2 { font-size: clamp(1.9rem, 1.3rem + 3vw, 3rem); font-weight: 400; margin-top: 0.6rem; }

/* offering blocks */
.offer { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.8rem, 4vw, 3.4rem); align-items: center; padding: clamp(2rem, 5vw, 3.4rem) 0; border-top: 1px solid var(--line); }
.offer:first-of-type { border-top: 0; }
.offer.flip .offer-figure { order: -1; }
.offer-figure { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.offer-figure img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.offer h3 { font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.1rem); font-weight: 400; margin-bottom: 0.7rem; }
.offer .role { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage-deep); margin-bottom: 0.7rem; display: block; }
.offer p + p { margin-top: 0.8rem; }
.offer .tags { margin-top: 1.1rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.offer .tags span { font-size: 0.8rem; font-weight: 600; color: var(--amethyst-deep); background: rgba(124, 94, 154, 0.1); padding: 0.4em 0.9em; border-radius: 999px; }

/* service page: breadcrumbs, helps checklist, step flow */
.page-hero .crumbs { font-size: 0.78rem; letter-spacing: 0.03em; color: rgba(251, 248, 242, 0.7); margin-bottom: 0.9rem; }
.page-hero .crumbs a { color: rgba(251, 248, 242, 0.85); border-bottom: 1px solid rgba(182, 160, 205, 0.45); }
.page-hero .crumbs a:hover { color: #fff; }
.page-hero .crumbs span { color: var(--amethyst-soft); }
.check-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem 2.4rem; max-width: 860px; }
.check-list li { display: flex; gap: 0.8rem; align-items: flex-start; font-weight: 600; color: var(--ink); }
.check-list li::before {
  content: ""; flex: 0 0 auto; width: 1.5rem; height: 1.5rem; margin-top: 0.05rem; border-radius: 50%;
  background: rgba(124, 94, 154, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235f4480' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 0.82rem no-repeat;
}
.flow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

/* note / disclaimer */
.soft-note { font-size: 0.86rem; color: var(--ink-faint); max-width: 60ch; border-left: 2px solid var(--sage); padding-left: 1rem; }

/* ---------- footer ---------- */
.footer { background: var(--aubergine-deep); color: rgba(251, 248, 242, 0.78); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer .cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2rem; }
.footer .brand-word { color: #fbf6ff; }
.footer .brand-word b { color: var(--amethyst-soft); }
.footer p { font-size: 0.92rem; max-width: 38ch; margin-top: 0.9rem; }
.footer h4 { font-family: "Mulish", sans-serif; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amethyst-soft); margin-bottom: 1rem; }
.footer ul { list-style: none; display: grid; gap: 0.55rem; }
.footer ul a { font-size: 0.94rem; color: rgba(251, 248, 242, 0.78); transition: color 0.2s; }
.footer ul a:hover { color: #fff; }
.footer .legal { margin-top: 2.6rem; padding-top: 1.5rem; border-top: 1px solid rgba(251, 246, 255, 0.12); display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; justify-content: space-between; font-size: 0.82rem; color: rgba(251, 248, 242, 0.55); }
.footer .legal a { color: rgba(251, 248, 242, 0.7); }

/* ---------- floating UI: scroll-to-top + mobile bar ---------- */
.to-top {
  position: fixed; right: clamp(1rem, 3vw, 1.6rem); bottom: clamp(1rem, 3vw, 1.6rem); z-index: 55;
  width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%;
  background: var(--amethyst-deep); color: #fff; border: 1px solid rgba(251, 246, 255, 0.2);
  box-shadow: 0 14px 30px -14px rgba(95, 68, 128, 0.75);
  opacity: 0; transform: translateY(12px) scale(0.92); pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.25s var(--ease);
}
.to-top.is-shown { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--amethyst); transform: translateY(-3px); }
.to-top svg { width: 20px; height: 20px; }

.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 54; display: none; gap: 0.6rem;
  padding: 0.7rem clamp(0.8rem, 4vw, 1.1rem) calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(40, 26, 48, 0.9); backdrop-filter: blur(16px);
  border-top: 1px solid rgba(251, 246, 255, 0.14);
  transform: translateY(115%); transition: transform 0.35s var(--ease);
}
.mobile-bar.is-shown { transform: none; }
.mobile-bar a {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: "Mulish", sans-serif; font-weight: 700; font-size: 0.92rem;
  padding: 0.9em 1em; border-radius: 999px; transition: background 0.25s var(--ease);
}
.mobile-bar .mb-call { flex: 0 0 auto; width: 54px; padding: 0.9em 0; background: rgba(251, 246, 255, 0.12); border: 1px solid rgba(251, 246, 255, 0.26); color: #fff; }
.mobile-bar .mb-call:hover { background: rgba(251, 246, 255, 0.2); }
.mobile-bar .mb-cta { flex: 1; background: var(--amethyst-deep); color: #fff; border: 1px solid var(--amethyst); }
.mobile-bar .mb-cta:hover { background: var(--amethyst); }
.mobile-bar svg { width: 18px; height: 18px; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { position: relative; isolation: isolate; padding: clamp(8.5rem, 14vh, 12rem) 0 clamp(2.5rem, 5vw, 4rem); background: radial-gradient(100% 120% at 80% 0%, #4a3358 0%, var(--aubergine) 50%, var(--aubergine-deep) 100%); color: var(--cream); overflow: hidden; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.3rem, 1.6rem + 4vw, 3.8rem); color: #fff; font-weight: 500; max-width: 18ch; }
.page-hero .lede { color: rgba(251, 248, 242, 0.85); max-width: 56ch; margin-top: 1.2rem; }
.page-hero .eyebrow { color: var(--amethyst-soft); margin-bottom: 1rem; display: block; }
.page-hero .hero-grain { z-index: 1; opacity: 0.4; }
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.42; }
.page-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(40, 26, 48, 0.5) 0%, rgba(40, 26, 48, 0.68) 52%, var(--aubergine-deep) 100%); }

/* ---------- ambient image band (glass card on photo) ---------- */
.ambient-band { position: relative; isolation: isolate; min-height: clamp(340px, 48vh, 500px); display: grid; place-items: center; text-align: center; overflow: hidden; padding: clamp(3rem, 8vw, 6rem) 0; }
.ambient-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.ambient-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(120% 100% at 50% 50%, rgba(247, 242, 234, 0.12), rgba(46, 38, 48, 0.32)); }
.ambient-band .quote-card { background: rgba(247, 242, 234, 0.88); backdrop-filter: blur(7px); border: 1px solid rgba(251, 246, 255, 0.5); padding: clamp(1.7rem, 4vw, 2.8rem) clamp(1.6rem, 5vw, 3.2rem); border-radius: var(--r); box-shadow: 0 24px 60px -30px rgba(40, 26, 48, 0.6); max-width: 34ch; margin-inline: auto; }
.ambient-band .quote-card .eyebrow { display: block; margin-bottom: 0.9rem; }
.ambient-band .quote-card p { font-family: "Fraunces", serif; font-style: italic; font-weight: 400; font-size: clamp(1.35rem, 1rem + 1.8vw, 2.05rem); line-height: 1.4; color: var(--ink); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal[data-dir="left"] { transform: translateX(-28px); }
.reveal[data-dir="right"] { transform: translateX(28px); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }

/* ---------- responsive ---------- */
@media (max-width: 1200px) {
  .breathe { left: 68%; top: 51%; width: min(28vw, 260px); }
}
@media (max-width: 920px) {
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .approach-grid, .about-grid, .story-grid, .offer, .contact-grid, .triad-3 { grid-template-columns: 1fr; }
  .story-grid.flip .story-figure, .offer.flip .offer-figure { order: 0; }
  .about-portrait { max-width: 420px; }
  .flow-grid { grid-template-columns: repeat(2, 1fr); }
  /* full-width single-column reveals must not translate sideways (would overflow) */
  .reveal[data-dir="left"], .reveal[data-dir="right"] { transform: translateY(24px); }
  .reveal[data-dir="left"].is-visible, .reveal[data-dir="right"].is-visible { transform: none; }

  /* Hero tablet: keep copy left, rings in upper-right (off the headline) */
  .hero h1 { max-width: 13ch; font-size: clamp(2.35rem, 1.2rem + 4.8vw, 3.75rem); }
  .hero-figure img { object-position: 38% 32%; }
  .breathe {
    left: auto;
    right: -6%;
    top: clamp(5.5rem, 12vh, 7.5rem);
    width: min(30vw, 210px);
    translate: 0 0;
    opacity: 0.4;
  }
}
@media (max-width: 860px) {
  /* Home hero only — .hero-cta is reused in page-hero + cta-band sections */
  .hero .hero-cta {
    flex-direction: column;
    align-items: stretch;
    width: fit-content;
    max-width: 100%;
    gap: 0.65rem;
  }
  .hero .hero-cta .btn { width: 100%; justify-content: center; }
}
@media (max-width: 520px) {
  .flow-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-img { aspect-ratio: 16 / 9; }
  .pillar-body { padding: 1.3rem 1.3rem 1.45rem; }
  .pillar-body h3 { font-size: 1.28rem; }
  .footer .cols { grid-template-columns: 1fr; gap: 2.2rem; }
  .mobile-bar { display: flex; }
  .to-top { width: 42px; height: 42px; bottom: calc(4.9rem + env(safe-area-inset-bottom)); right: 1rem; }
  body { padding-bottom: 4.4rem; }
  .glimpses { grid-template-columns: 1fr 1fr; }
  .glimpses figure { aspect-ratio: 1 / 1 !important; margin-top: 0 !important; }

  /* Hero phone: sit the copy a touch above centre and let generous, fluid spacing
     between each line carry the height, so it reads open and unhurried instead of
     bunched. Photo breathes above; nav clearance kept by the top padding floor. */
  .hero { align-items: center; min-height: 100svh; min-height: 100dvh; }
  .hero-inner {
    padding-top: clamp(6rem, 16svh, 9rem);
    padding-bottom: clamp(4rem, 12svh, 7rem);
    padding-inline: clamp(1.35rem, 6vw, 2rem);
    width: 100%;
  }
  /* All hero type scales FLUIDLY across 320-720px via clamp(vw) instead of fixed
     rem + a 380px patch, so the copy grows/shrinks smoothly with the screen. */
  .hero .hero-eyebrow {
    font-size: clamp(0.5rem, 0.42rem + 0.5vw, 0.66rem);
    letter-spacing: 0.12em;
    line-height: 1.5;
    margin-bottom: clamp(1rem, 4.5vw, 1.7rem);
    max-width: 30ch;
  }
  .hero h1 {
    font-size: clamp(1.9rem, 1.1rem + 4.2vw, 3rem);
    max-width: 13ch;
    line-height: 1.24;
    letter-spacing: -0.01em;
  }
  .hero-tag {
    margin-top: clamp(1.3rem, 5vw, 2rem);
    font-size: clamp(0.98rem, 0.9rem + 0.5vw, 1.2rem);
    max-width: 36ch;
    line-height: 1.5;
  }
  .hero-pillars {
    margin-top: clamp(1.6rem, 6vw, 2.4rem);
    gap: 0.5rem 0.55rem;
  }
  .hero-pillars span {
    font-size: clamp(0.68rem, 0.6rem + 0.4vw, 0.82rem);
    padding: 0.45em 0.9em;
  }
  .hero .hero-cta {
    margin-top: clamp(2rem, 7vw, 3rem);
    gap: 0.55rem;
  }
  .hero .hero-cta .btn {
    font-size: 0.88rem;
    padding: 0.82em 1.25em;
  }
  .hero-figure img {
    inset: 0;
    height: 100%;
    object-position: 50% 30%;
    filter: saturate(0.96) brightness(0.82) contrast(1.04);
  }
  /* fade top (for the copy) AND bottom (back to aubergine) so the hero never ends on
     a flat dead photo zone and the lavender field dissolves into the page. */
  .hero-figure::after {
    background:
      linear-gradient(
        180deg,
        var(--aubergine-deep) 0%,
        rgba(40, 26, 48, 0.92) 20%,
        rgba(40, 26, 48, 0.64) 36%,
        rgba(56, 39, 64, 0.3) 52%,
        rgba(56, 39, 64, 0.34) 66%,
        rgba(40, 26, 48, 0.72) 85%,
        var(--aubergine-deep) 100%
      ),
      linear-gradient(100deg, rgba(40, 26, 48, 0.7) 0%, rgba(40, 26, 48, 0.3) 46%, transparent 78%);
  }
  .breathe {
    display: block;
    left: auto;
    right: -12%;
    top: clamp(4.8rem, 10svh, 5.8rem);
    width: min(42vw, 148px);
    translate: 0 0;
    opacity: 0.34;
  }
  .scroll-hint { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-figure img { opacity: 1; transform: scaleX(-1); }
  .hero-inner > * { opacity: 1; transform: none; }
  .breathe { opacity: 1; }
  @media (max-width: 720px) {
    .breathe { opacity: 0.34; }
  }
}
