/* ============================================================
   Maison Claire — global styles
   Palette matched to the printed logo background (#fcf8f0)
   ============================================================ */
:root {
  --cream: #fcf8f0;          /* exact logo background */
  --cream-2: #f6efdf;
  --paper: #fffdf8;
  --ink: #3a2e1e;
  --ink-soft: #5a4a34;
  --ink-mute: #7a6a52;
  --gold: #b08a4a;
  --gold-deep: #8a6a35;
  --gold-soft: #d8bd8a;
  --gold-wash: rgba(176, 138, 74, 0.10);
  --line: rgba(138, 106, 53, 0.30);
  --line-soft: rgba(138, 106, 53, 0.14);

  /* deep navy (mockup direction) */
  --navy: #1f4062;
  --navy-deep: #16304a;
  --navy-soft: #35577a;
  --navy-ink: #21374d;

  --serif: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --display: "Cinzel", "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;

  --w: 1160px;
  --w-narrow: 780px;
  --pad: clamp(20px, 4vw, 44px);
  --radius: 14px;
  --shadow: 0 14px 40px rgba(58, 46, 30, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--gold-deep); text-decoration: none; }
h1, h2, h3, h4 { margin: 0; }
.container { max-width: var(--w); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.narrow { max-width: var(--w-narrow); }
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--gold); color: #fff; padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; border-radius: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn-primary { background: var(--navy); color: #f4ecdc; border: 1px solid var(--navy); }
.btn-primary:hover { background: var(--navy-deep); border-color: var(--navy-deep); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(31,64,98,0.28); }
.btn-ghost { background: transparent; color: var(--gold-deep); border: 1px solid var(--gold); }
.btn-ghost:hover { background: var(--gold-wash); }

/* ---------- Header / Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(252, 248, 240, 0.90);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: var(--w);
  margin: 0 auto;
  padding: 10px var(--pad);
  display: flex; align-items: center; gap: 22px;
}
.nav-brand { display: flex; align-items: center; flex: 0 0 auto; }
.nav-brand img { height: 78px; width: auto; }
.nav-links {
  display: flex; gap: 26px; align-items: center;
  margin-left: auto;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav-links a { color: var(--ink-soft); padding: 6px 0; border-bottom: 1.5px solid transparent; transition: color .2s ease, border-color .2s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-deep); border-bottom-color: var(--gold-soft); }
.nav-cta {
  font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #f4ecdc !important; background: var(--navy);
  padding: 10px 18px; border-radius: 999px; border-bottom: 0 !important;
  transition: background .25s ease;
}
.nav-cta:hover { background: var(--navy-deep); }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; margin-left: auto; }
.nav-toggle span { display: block; width: 24px; height: 1.6px; background: var(--gold-deep); margin: 5px 0; border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; overflow: hidden; text-align: center;
  background: var(--cream); /* solid = logo PNG blends invisibly */
  padding: clamp(46px, 8vw, 92px) var(--pad) 0;
}
.hero-inner { max-width: 860px; margin: 0 auto; padding-bottom: clamp(120px, 18vw, 210px); position: relative; z-index: 2; }
.hero-logo { width: clamp(300px, 62vw, 620px); margin: 0 auto clamp(18px, 3vw, 30px); }
.hero-logo img { width: 100%; height: auto; }
.hero-crest { width: clamp(200px, 34vw, 320px); margin: 0 auto clamp(10px, 2vw, 18px); }
.hero-crest img { width: 100%; height: auto; }
.divider { display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--gold); margin: 6px auto 24px; width: min(340px, 66%); }
.divider span { flex: 1; height: 1px; background: var(--line); }
.divider i { font-style: normal; font-size: 12px; }
.divider.center { margin-top: 28px; }
.hero-title {
  font-family: var(--serif); font-weight: 500;
  color: var(--navy-ink);
  font-size: clamp(30px, 5.2vw, 52px);
  letter-spacing: 0.01em; line-height: 1.15; margin: 6px 0 20px;
}
.hero-text { font-size: clamp(18px, 2.2vw, 22px); color: var(--ink-soft); margin: 0 auto 30px; max-width: 620px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-mountains { position: absolute; left: 0; right: 0; bottom: 0; height: clamp(150px, 20vw, 240px); pointer-events: none; z-index: 1; }
.hero-mountains svg { width: 100%; height: 100%; }

/* ---------- Page photo hero (subpages) ---------- */
/* Heights scale with WIDTH and stay capped, so wide panoramas are shown wide
   and short instead of being cropped and blown up to fill a tall box.
   min-height (not height) means the section still grows if text needs room. */
.page-photo-hero {
  background-size: cover; background-position: center;
  min-height: clamp(300px, 28vw, 430px);
  display: flex; align-items: center; text-align: center;
  border-bottom: 3px solid var(--gold-soft);
  padding: clamp(44px, 5vw, 72px) 0;
  position: relative; overflow: hidden;
}
.page-photo-hero > .container { position: relative; z-index: 2; }
.pph-eyebrow { font-family: var(--sans); letter-spacing: 0.36em; text-transform: uppercase; font-size: 12px; color: #ecd9b3; margin: 0 0 16px; }
.pph-title { font-family: var(--serif); font-weight: 500; color: #fdfaf3; font-size: clamp(34px, 5.6vw, 62px); line-height: 1.1; letter-spacing: 0.01em; margin: 0 auto; max-width: 24ch; text-shadow: 0 2px 22px rgba(14,24,38,0.4); }
.pph-lead { color: #eef2f6; font-size: clamp(17px, 2vw, 21px); max-width: 620px; margin: 20px auto 0; line-height: 1.6; text-shadow: 0 1px 14px rgba(14,24,38,0.45); }
.page-photo-hero .btn-primary { background: var(--gold); border-color: var(--gold); color: #23364d; font-weight: 600; }
.page-photo-hero .btn-primary:hover { background: #c9a86a; border-color: #c9a86a; }

/* ---------- Page hero (subpages) ---------- */
.page-hero { text-align: center; background: var(--cream); padding: clamp(54px, 8vw, 96px) var(--pad) clamp(30px, 5vw, 54px); border-bottom: 1px solid var(--line-soft); }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(34px, 6vw, 60px); letter-spacing: 0.01em; color: var(--ink); line-height: 1.12; }
.page-hero p { max-width: 640px; margin: 18px auto 0; color: var(--ink-soft); font-size: clamp(18px, 2.2vw, 21px); }

/* ---------- Section head ---------- */
.section-head { display: flex; align-items: center; gap: 22px; justify-content: center; margin: 0 auto 42px; max-width: 640px; }
.section-head.left { justify-content: flex-start; max-width: none; }
.section-head .rule { flex: 1; height: 1px; background: var(--line); max-width: 120px; }
.eyebrow { font-family: var(--sans); color: var(--gold-deep); letter-spacing: 0.4em; text-transform: uppercase; font-size: 12px; margin: 0; }

/* ---------- Generic section ---------- */
section { position: relative; }
.pad { padding: clamp(70px, 10vw, 116px) 0; }
.pad-sm { padding: clamp(50px, 7vw, 84px) 0; }
.tint { background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.center { text-align: center; }

/* ---------- Services grid ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 4vw, 52px); }
.service { text-align: center; display: flex; flex-direction: column; align-items: center; }
.service-icon {
  width: 96px; height: 96px; margin: 0 auto 22px; border-radius: 999px;
  background: linear-gradient(160deg, #d3b276, #b28f4f 72%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18), 0 8px 20px rgba(138, 106, 53, 0.20);
  display: grid; place-items: center; color: #fff;
}
.service-icon svg { width: 54%; height: 54%; }
.service h3 { font-family: var(--serif); font-weight: 600; font-size: 21px; color: var(--ink); margin: 0 0 12px; line-height: 1.3; }
.service p { color: var(--ink-soft); font-size: 17px; max-width: 300px; margin: 0 auto 16px; }
.service .more { font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); border-bottom: 1px solid var(--gold-soft); padding-bottom: 3px; margin-top: auto; }
.service .more:hover { color: var(--ink); }

.motto { margin: clamp(46px, 7vw, 72px) auto 0; font-family: var(--serif); font-style: italic; color: var(--gold-deep); font-size: clamp(21px, 2.6vw, 27px); text-align: center; }

/* ---------- Services diamond ---------- */
.service-diamond {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  align-items: center;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
  column-gap: clamp(16px, 3vw, 40px);
  row-gap: clamp(20px, 3vw, 30px);
}
.service-diamond .service { max-width: 300px; }
.service-diamond .s-top    { grid-column: 2; grid-row: 1; }
.service-diamond .s-left   { grid-column: 1; grid-row: 2; }
.service-diamond .s-right  { grid-column: 3; grid-row: 2; }
.service-diamond .s-bottom { grid-column: 2; grid-row: 3; }
.diamond-center {
  grid-column: 2; grid-row: 2;
  font-family: var(--serif); font-style: italic;
  color: var(--gold-deep); text-align: center;
  font-size: clamp(19px, 2.2vw, 25px); line-height: 1.5;
}
.diamond-center em { font-style: italic; }

/* ---------- Approach lead ---------- */
.approach-lead { max-width: 640px; margin: -14px auto clamp(40px, 5vw, 56px); text-align: center; color: var(--ink-soft); font-size: clamp(18px, 2vw, 21px); }

/* ---------- Prose / article ---------- */
.prose { max-width: var(--w-narrow); margin: 0 auto; }
.prose h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 3.8vw, 38px); color: var(--ink); margin: 40px 0 16px; line-height: 1.2; }
.prose h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(21px, 2.6vw, 26px); color: var(--ink); margin: 30px 0 10px; }
.prose p { color: var(--ink-soft); font-size: clamp(17px, 1.9vw, 19px); margin: 0 0 18px; }
.prose ul { color: var(--ink-soft); font-size: clamp(17px, 1.9vw, 19px); padding-left: 22px; margin: 0 0 20px; }
.prose li { margin-bottom: 10px; }
.prose li::marker { color: var(--gold); }
.lead { font-size: clamp(19px, 2.2vw, 22px) !important; color: var(--ink) !important; }

/* ---------- Feature split (image/text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.split .media { border-radius: var(--radius); background: linear-gradient(160deg, #efe4cb, #e3d2ab); box-shadow: var(--shadow); min-height: 320px; display: grid; place-items: center; padding: 40px; }
.split .media .crest-mark { width: 60%; opacity: 0.9; }

/* ---------- Approach steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 4vw, 44px); text-align: left; }
.step { padding: 32px 28px; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line); }
.step-num { font-family: var(--display); color: var(--gold); letter-spacing: 0.2em; font-size: 13px; display: block; margin-bottom: 10px; }
.step h3 { font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--ink); margin: 0 0 8px; }
.step p { color: var(--ink-soft); font-size: 16.5px; margin: 0; }

/* ---------- Cards (service detail links / faq) ---------- */
.link-cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.link-card { display: block; padding: 30px 28px; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.link-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold); }
.link-card h3 { font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--ink); margin: 0 0 8px; }
.link-card p { color: var(--ink-soft); font-size: 16.5px; margin: 0; }
.link-card .arrow { font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); margin-top: 14px; display: inline-block; }

/* ---------- FAQ ---------- */
.faq { max-width: var(--w-narrow); margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line-soft); padding: 6px 0; }
.faq summary { list-style: none; cursor: pointer; padding: 20px 40px 20px 4px; position: relative; font-family: var(--serif); font-weight: 600; font-size: clamp(19px, 2.2vw, 22px); color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); color: var(--gold); font-family: var(--sans); font-size: 22px; transition: transform .25s ease; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { color: var(--ink-soft); font-size: 17.5px; margin: 0 4px 20px; }

/* ---------- Quote band ---------- */
.quote { text-align: center; background: radial-gradient(760px 260px at 50% 100%, rgba(214,189,138,0.22), transparent 70%), linear-gradient(180deg, var(--paper), var(--cream)); }
.quote blockquote { max-width: 800px; margin: 0 auto; font-family: var(--serif); font-style: italic; font-size: clamp(22px, 3.2vw, 32px); line-height: 1.4; color: var(--ink); padding: 0 20px; }
.quote .mark { font-family: var(--display); color: var(--gold); font-size: clamp(56px, 9vw, 84px); line-height: 0.2; display: block; margin-bottom: 16px; }
.quote cite { display: block; margin-top: 22px; font-family: var(--sans); font-style: normal; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; background: linear-gradient(180deg, #3a5c7e 0%, #2c4a68 100%); }
.cta-band h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 4.6vw, 44px); color: #f4ecdc; margin: 0 0 14px; }
.cta-band p { color: #c7d5e2; font-size: clamp(17px, 2vw, 20px); margin: 0 auto 28px; max-width: 560px; }
.cta-band .btn-ghost { color: #ecd9a8; border-color: var(--gold-soft); }
.cta-band .btn-ghost:hover { background: rgba(216,189,138,0.12); }

/* ---------- Contact cards ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(18px, 2.5vw, 26px); max-width: 760px; margin: 0 auto; }
.contact-card { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 34px 24px; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); color: var(--ink); text-align: center; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.contact-card:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: var(--shadow); }
.contact-icon { width: 46px; height: 46px; border-radius: 999px; background: linear-gradient(160deg, #d3b276, #b28f4f 72%); color: #fff; display: grid; place-items: center; margin-bottom: 6px; }
.contact-icon svg { width: 22px; height: 22px; }
.contact-label { font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-deep); }
.contact-value { font-family: var(--serif); font-size: clamp(18px, 2.2vw, 22px); color: var(--ink); }
.contact-note { text-align: center; color: var(--ink-mute); font-style: italic; margin: 30px auto 0; max-width: 520px; }

/* ---------- Footer ---------- */
.foot { background: var(--navy-deep); color: #cfdce8; padding: clamp(52px, 7vw, 72px) 0 40px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.foot-brand-block img { height: 58px; width: auto; opacity: 0.95; margin-bottom: 16px; }
.foot p { margin: 0 0 10px; }
.foot-tag { font-family: var(--sans); letter-spacing: 0.16em; text-transform: uppercase; font-size: 10.5px; color: #cbb98a; }
.foot-desc { color: #c9bb96; font-size: 16px; max-width: 320px; }
.foot h4 { font-family: var(--sans); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: #d8c59a; margin: 4px 0 16px; }
.foot-col a, .foot-col span { display: block; color: #d8ccab; font-size: 16px; margin-bottom: 10px; }
.foot-col a:hover { color: #f5e7c4; }
.foot-bottom { border-top: 1px solid rgba(230,217,184,0.16); margin-top: 40px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.foot-bottom p { font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.06em; color: #a89771; margin: 0; }
.foot-bottom .heal { letter-spacing: 0.2em; text-transform: uppercase; color: #cbb98a; }

/* ---------- Photo hero ---------- */
.photo-hero {
  background-size: cover; background-position: center right;
  min-height: clamp(400px, 42vw, 640px);
  display: flex; align-items: center;
  border-bottom: 3px solid var(--gold-soft);
  padding: clamp(40px, 5vw, 68px) 0;
  position: relative; overflow: hidden;
}
/* Journey heroes carry the widest panoramas, so keep them shorter still. */
.photo-hero.journey-hero { min-height: clamp(320px, 29vw, 450px); }
.photo-hero-inner { width: 100%; position: relative; z-index: 2; }

/* Interactive fluid: subtle glow behind the hero, promoted full-screen for the intro */
.fluid-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 1; pointer-events: none; mix-blend-mode: screen;
  opacity: 0; transition: opacity 1.3s ease; display: block;
}
.fluid-behind .fluid-canvas { opacity: 0.3; }
.fluid-intro { overflow: hidden; }
.fluid-intro .fluid-canvas {
  position: fixed; inset: 0; width: 100vw; height: 100vh;
  z-index: 9995; opacity: 0.62; transition: none;
}
.fluid-splash {
  position: fixed; inset: 0; z-index: 9990; pointer-events: none;
  background: radial-gradient(120% 120% at 50% 42%, #1b3654 0%, #12233a 68%, #0c1728 100%);
  opacity: 1; transition: opacity 1.35s ease;
}
.fluid-splash.fade { opacity: 0; }

/* Minimal wave loader shown during the home intro (above the fluid glow) */
.splash-load {
  position: fixed; inset: 0; z-index: 10000; pointer-events: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
  opacity: 0; transition: opacity 0.9s ease;
}
.splash-load.in { opacity: 1; }
.splash-load.fade { opacity: 0; }
.splash-word {
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.42em;
  font-size: 15px; color: #efe4c9; padding-left: 0.42em;
}
.splash-wave { width: 200px; height: 30px; overflow: hidden; opacity: 0.95; }
.splash-wave .wave-move { animation: waveShift 2.6s linear infinite; }
@keyframes waveShift { from { transform: translateX(0); } to { transform: translateX(-240px); } }
@media (prefers-reduced-motion: reduce) { .splash-wave .wave-move { animation: none !important; } }
@media (prefers-reduced-motion: reduce) { .fluid-canvas, .fluid-splash { display: none !important; } }
.ph-eyebrow { font-family: var(--sans); letter-spacing: 0.34em; text-transform: uppercase; font-size: 12px; color: #e9d9b3; margin: 0 0 14px; }
.ph-title { font-family: var(--serif); font-weight: 500; color: #fdfaf3; font-size: clamp(42px, 7vw, 82px); line-height: 1.02; letter-spacing: 0.01em; margin: 0 0 22px; }
.ph-lead { color: #eef2f6; font-size: clamp(17px, 2vw, 21px); max-width: 500px; margin: 0 0 30px; line-height: 1.6; text-shadow: 0 1px 12px rgba(16,28,42,0.4); }
.photo-hero .btn-primary { background: var(--gold); border-color: var(--gold); color: #23364d; font-weight: 600; }
.photo-hero .btn-primary:hover { background: #c9a86a; border-color: #c9a86a; }

/* ---------- Prompts row ---------- */
.prompts { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(16px, 2.4vw, 30px); }
.prompt { text-align: center; }
.prompt-ic { color: var(--gold); display: block; width: 52px; height: 52px; margin: 0 auto 14px; }
.prompt-ic svg { width: 100%; height: 100%; }
.prompt p { font-family: var(--serif); font-size: clamp(15px, 1.5vw, 17px); color: var(--navy-ink); margin: 0; line-height: 1.4; }

/* ---------- Feature band (photo + card) ---------- */
.feature-band { background-size: cover; background-position: center; padding: clamp(70px, 11vw, 140px) 0; }
.feature-inner { display: flex; }
.feature-card { max-width: 480px; }
.feature-card h2 { font-family: var(--serif); font-weight: 500; color: #fff; font-size: clamp(28px, 4.4vw, 44px); line-height: 1.12; margin: 8px 0 18px; }
.feature-card p { color: #e8eef4; font-size: clamp(16px, 1.9vw, 19px); margin: 0 0 26px; }
.btn-ghost.light { color: #f0e6cf; border-color: rgba(233,217,179,0.6); }
.btn-ghost.light:hover { background: rgba(233,217,179,0.14); }

/* ---------- Split approach ---------- */
.split-approach { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.split-approach .eyebrow { margin-bottom: 12px; }
.approach-title { font-family: var(--serif); font-weight: 500; color: var(--navy-ink); font-size: clamp(26px, 3.6vw, 40px); line-height: 1.15; margin: 0 0 20px; }
.split-approach p { color: var(--ink-soft); font-size: clamp(16px, 1.9vw, 19px); margin: 0 0 16px; }
.signature { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--gold-deep) !important; margin-top: 8px !important; }
.credentials { font-family: var(--sans); font-size: 11.5px !important; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute) !important; line-height: 1.9 !important; margin-top: 2px !important; }
.modalities { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.modality { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 26px 18px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.modality-ic { width: 58px; height: 58px; border-radius: 999px; background: linear-gradient(160deg, var(--navy-soft), var(--navy)); color: #fff; display: grid; place-items: center; }
.modality-ic svg { width: 55%; height: 55%; }
.modality span { font-family: var(--serif); font-weight: 600; font-size: 16px; color: var(--navy-ink); letter-spacing: 0.02em; }

/* ---------- Testimonial ---------- */
.testimonial-sec { background: var(--cream); }
.testimonial-sec .mark { font-family: var(--display); color: var(--gold); font-size: clamp(56px, 9vw, 82px); line-height: 0.2; display: block; margin-bottom: 10px; }
.testimonial { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.7vw, 28px); line-height: 1.45; color: var(--navy-ink); margin: 0 auto; max-width: 760px; }
.testimonial-sec cite { display: block; margin-top: 24px; font-family: var(--sans); font-style: normal; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep); }

/* ---------- Intro lede / statements ---------- */
.intro-lede { text-align: center; }
.intro-lede p { color: var(--ink-soft); font-size: clamp(17px, 2vw, 20px); margin: 0 0 18px; }
.intro-lede .lead { color: var(--navy-ink) !important; font-size: clamp(19px, 2.3vw, 23px) !important; }
.statement { font-family: var(--serif); font-style: italic; color: var(--gold-deep) !important;
  font-size: clamp(21px, 2.8vw, 28px) !important; margin: 30px 0 10px !important; text-align: center; }
.statement-sub { font-family: var(--serif); color: var(--navy-ink) !important;
  font-size: clamp(18px, 2.1vw, 21px) !important; margin: 0 !important; }
.not-only { display: flex; flex-direction: column; gap: 8px; margin: 26px 0; }
.not-only span { color: var(--ink-soft); font-size: clamp(16.5px, 1.9vw, 19px); }
.disclaimer-note { margin: 34px auto 0; max-width: 620px; text-align: center;
  font-family: var(--sans); font-size: 12px; line-height: 1.7; color: var(--ink-mute); letter-spacing: 0.02em; }

/* ---------- Journeys list ---------- */
.journey-list { display: flex; flex-direction: column; gap: 18px; }
.journey-row { display: flex; align-items: center; gap: 24px; padding: 16px 22px 16px 16px; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.journey-row:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--gold); }
.jr-img { flex: 0 0 132px; height: 96px; border-radius: 10px; background-size: cover; background-position: center; }
.jr-text { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.jr-num { font-family: var(--sans); font-size: 11px; letter-spacing: 0.26em; color: var(--gold-deep); }
.jr-name { font-family: var(--serif); font-weight: 600; font-size: clamp(20px, 2.4vw, 25px); color: var(--navy-ink); letter-spacing: 0.03em; }
.jr-meta { font-family: var(--sans); font-size: 12px; letter-spacing: 0.1em; color: var(--navy-soft); text-transform: uppercase; }
.jr-tag { color: var(--ink-soft); font-size: 16px; font-style: italic; }
.jr-arrow { color: var(--gold); font-size: 24px; flex: 0 0 auto; transition: transform .3s ease; }
.journey-row:hover .jr-arrow { transform: translateX(5px); }

/* ---------- Journey detail ---------- */
.ph-meta { font-family: var(--sans); font-size: 12.5px; letter-spacing: 0.2em; text-transform: uppercase; color: #ecd9a8; margin: 0 0 16px; }
.journey-prose { text-align: center; }
.journey-prose p { text-align: center; }
.word-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 14px; margin: 26px auto 30px; max-width: 620px; }
.word-list span { font-family: var(--serif); font-size: 17px; color: var(--navy-ink); background: var(--cream-2); border: 1px solid var(--line-soft); border-radius: 999px; padding: 7px 16px; }
.price-panel { max-width: 560px; margin: 0 auto; padding: 38px 30px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.price-meta { font-family: var(--sans); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy); margin: 0 0 22px; }
.price-panel .disclaimer-note { margin-top: 26px; }

/* ---------- Approach tags + flow ---------- */
.tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px; max-width: 760px; margin: 0 auto; }
.tag { font-family: var(--serif); font-size: 16.5px; color: var(--navy-ink); background: var(--paper); border: 1px solid var(--line-soft); border-radius: 999px; padding: 8px 18px; }
.tags-note { margin: 34px auto 0; max-width: 560px; color: var(--ink-soft); font-size: clamp(16.5px, 1.9vw, 19px); }
.tags-note em { color: var(--gold-deep); }
.flow { list-style: none; counter-reset: f; padding: 0; max-width: 620px; margin: 30px auto 0; text-align: left; }
.flow li { counter-increment: f; position: relative; padding: 14px 0 14px 54px; border-bottom: 1px solid var(--line-soft); color: var(--navy-ink); font-size: clamp(16.5px, 1.9vw, 19px); }
.flow li:last-child { border-bottom: 0; }
.flow li::before { content: counter(f, decimal-leading-zero); position: absolute; left: 0; top: 16px; font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em; color: var(--gold); }

/* ---------- Forms ---------- */
.mc-form { max-width: 720px; margin: 0 auto; }
.trap { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 0 22px; }
.fgroup { margin-bottom: 26px; }
.flabel { display: block; font-family: var(--serif); font-weight: 600; font-size: 17.5px; color: var(--navy-ink); margin-bottom: 8px; }
.fhint { display: block; font-family: var(--serif); font-style: italic; font-size: 15.5px; color: var(--ink-mute); margin: -4px 0 10px; }
.mc-form input[type=text], .mc-form input[type=email], .mc-form input[type=tel], .mc-form textarea {
  width: 100%; font-family: var(--serif); font-size: 17px; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: 10px;
  padding: 13px 15px; transition: border-color .2s ease, box-shadow .2s ease;
}
.mc-form input:focus, .mc-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-wash); }
.mc-form textarea { resize: vertical; line-height: 1.6; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; }
.check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; padding: 6px 0; }
.check input { margin: 4px 0 0; accent-color: var(--navy); flex: 0 0 auto; width: 16px; height: 16px; }
.check span { font-family: var(--serif); font-size: 16.5px; color: var(--ink-soft); }
.check:hover span { color: var(--navy-ink); }
.form-section { display: flex; align-items: center; gap: 16px; margin: 44px 0 24px; }
.form-section::before, .form-section::after { content: ""; height: 1px; background: var(--line-soft); flex: 1; }
.form-section span { font-family: var(--sans); font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-deep); white-space: nowrap; }
.mc-form > .form-section:first-of-type { margin-top: 8px; }
.form-note { font-family: var(--serif); font-style: italic; font-size: clamp(16.5px, 1.9vw, 18.5px); color: var(--navy-ink); background: var(--cream-2); border-left: 3px solid var(--gold-soft); border-radius: 8px; padding: 16px 20px; margin: 0 0 26px; }
.checks.tight { grid-template-columns: repeat(3, auto); justify-content: start; gap: 8px 28px; }
.apply-meta { font-family: var(--sans) !important; font-size: 13px !important; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy) !important; margin: 14px auto 0 !important; }
.apply-reassure { margin-top: 16px !important; color: var(--ink-mute) !important; }
.fsubmit { text-align: center; margin-top: 34px; }
.fsubmit .btn { cursor: pointer; font-size: 12.5px; }
.form-status { display: none; margin: 26px auto 0; max-width: 620px; padding: 20px 22px;
  background: var(--cream-2); border: 1px solid var(--gold-soft); border-radius: var(--radius);
  font-family: var(--serif); font-size: 17px; color: var(--navy-ink); text-align: center; }
.form-status.show { display: block; }
.fallback-box { width: 100%; margin-top: 14px; min-height: 180px; font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 12.5px; border: 1px solid var(--line-soft); border-radius: 8px; padding: 12px; background: #fff; }

/* ---------- Approach modalities ---------- */
.apmods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.apmod { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; padding: 26px 14px; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); }
.apmod-ic { width: 54px; height: 54px; border-radius: 999px; background: linear-gradient(160deg, var(--navy-soft), var(--navy)); color: #fff; display: grid; place-items: center; }
.apmod-ic svg { width: 55%; height: 55%; }
.apmod span:last-child { font-family: var(--serif); font-weight: 600; font-size: 15.5px; color: var(--navy-ink); }
.center-prose { text-align: center; }
.center-prose h2 { text-align: center; }
.steps.five { grid-template-columns: repeat(5, 1fr); }

/* ---------- Body Mind Spirit band ---------- */
.bms {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  background-size: cover; background-position: center 55%;
  padding: clamp(64px, 9vw, 110px) 0;
  border-top: 1px solid rgba(216,189,138,0.25);
  border-bottom: 1px solid rgba(216,189,138,0.25);
}
.bms-line { font-family: var(--display); letter-spacing: 0.26em; text-transform: uppercase; color: #ecd9a8; font-size: clamp(13px, 2.2vw, 21px); margin: 0; text-align: center; }

/* ---------- Photo bands & gallery ---------- */
.photo-band {
  background-size: cover; background-position: center;
  min-height: clamp(190px, 26vw, 320px);
  display: flex; align-items: center;
  background-attachment: scroll;
}
.photo-band.tall { min-height: clamp(260px, 34vw, 440px); }
.band-line {
  font-family: var(--serif); font-style: italic; color: #fdfaf3;
  font-size: clamp(22px, 3.4vw, 36px); margin: 0; text-align: center; width: 100%;
  text-shadow: 0 2px 18px rgba(16,28,42,0.55); letter-spacing: 0.02em;
}
.gallery3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 24px); max-width: 1000px; margin: 0 auto; }
.gallery3 img { width: 100%; height: clamp(240px, 30vw, 400px); object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Kind words ---------- */
.kind-words { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.6vw, 30px); max-width: 1020px; margin: 0 auto; align-items: start; }
.kw-card { margin: 0; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: clamp(24px, 3vw, 36px); }
.kw-card .mark { font-family: var(--display); color: var(--gold); font-size: 44px; line-height: 0.4; display: block; margin-bottom: 14px; }
.kw-card blockquote { margin: 0 0 16px; font-family: var(--serif); font-style: italic; font-size: clamp(16.5px, 1.8vw, 18.5px); line-height: 1.6; color: var(--navy-ink); }
.kw-card figcaption { font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); }
.split-about.med .about-photo { order: 2; }

/* ---------- About split ---------- */
.split-about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.about-photo img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.split-about .eyebrow { margin-bottom: 10px; }

.contact-grid.three { grid-template-columns: repeat(3, 1fr); max-width: 900px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .prompts { grid-template-columns: repeat(3, 1fr); row-gap: 34px; }
  .apmods { grid-template-columns: repeat(2, 1fr); }
  .steps.five { grid-template-columns: 1fr 1fr; }
  .split-about { grid-template-columns: 1fr; }
  .about-photo { max-width: 440px; margin: 0 auto; }
  .contact-grid.three { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .checks { grid-template-columns: 1fr; }
  .checks.tight { grid-template-columns: 1fr; }
  .jr-img { flex: 0 0 96px; height: 76px; }
  .kind-words { grid-template-columns: 1fr; }
  .gallery3 { grid-template-columns: 1fr; }
  .gallery3 img { height: 260px; }
  .split-about.med .about-photo { order: 0; }
  .apmods { grid-template-columns: repeat(2, 1fr); }
  .steps.five { grid-template-columns: 1fr 1fr; }
  .split-about { grid-template-columns: 1fr; }
  .about-photo { max-width: 440px; margin: 0 auto; }
  .contact-grid.three { grid-template-columns: 1fr; }
  .split-approach { grid-template-columns: 1fr; }
  .photo-hero { background-position: center; }
  .service-grid { grid-template-columns: 1fr; gap: 46px; }
  .service-diamond { grid-template-columns: 1fr; grid-template-rows: none; row-gap: 46px; }
  .service-diamond .service, .service-diamond .diamond-center { grid-column: 1 !important; grid-row: auto !important; }
  .service-diamond .diamond-center { order: 9; margin-top: 6px; }
  .steps { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split .media { min-height: 220px; order: -1; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .foot-brand-block { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  body { font-size: 17px; }
  .nav-cta { display: none; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--paper); border-bottom: 1px solid var(--line-soft);
    padding: 6px var(--pad) 16px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
  .nav-toggle { display: inline-block; }
  .link-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .section-head .rule { max-width: 40px; }
  .foot-top { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* ---- Subtle motion (all gated by body.motion; MOTION flag in build.py) ---- */
.motion .will-reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,.7,.28,1); }
.motion .will-reveal.revealed { opacity: 1; transform: none; }

/* gentle hover lifts on cards + photos */
.motion .prompt, .motion .journey-row, .motion .modality, .motion .contact-card {
  transition: transform .5s cubic-bezier(.22,.7,.28,1), box-shadow .5s ease;
}
.motion .prompt:hover, .motion .journey-row:hover, .motion .modality:hover, .motion .contact-card:hover {
  transform: translateY(-4px);
}
.motion .about-photo img, .motion .gallery3 img { transition: transform .7s cubic-bezier(.22,.7,.28,1); }
.motion .about-photo img:hover, .motion .gallery3 img:hover { transform: scale(1.035); }

/* buttons: a touch of lift */
.motion .btn { transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease; }
.motion .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(30,54,82,0.26); }

@media (prefers-reduced-motion: reduce) {
  .motion .will-reveal { opacity: 1 !important; transform: none !important; }
}

/* ---- Sent confirmation (replaces the form on a successful send) ---- */
.form-sent {
  max-width: 640px;
  margin: clamp(20px, 4vw, 48px) auto;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(42px, 6vw, 72px) clamp(24px, 5vw, 56px);
  animation: formSentIn .6s cubic-bezier(.2, .75, .25, 1.02) both;
}
.form-sent-mark { display: block; width: 62px; height: 62px; margin: 0 auto 24px; color: var(--gold); }
.form-sent-mark svg { width: 100%; height: 100%; }
.form-sent-title {
  font-family: var(--serif); font-weight: 500; color: var(--navy-ink);
  font-size: clamp(30px, 4.4vw, 44px); line-height: 1.15; margin: 0 0 14px;
}
.form-sent-text {
  color: var(--ink-soft); font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65; margin: 0 auto 30px; max-width: 46ch;
}
@keyframes formSentIn {
  from { opacity: 0; transform: translateY(16px) scale(.985); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { .form-sent { animation: none; } }
