/* ===================================================================
   ALBA Wellbeing — Calm Luxury Wellness
   Cream / chocolate / bronze · editorial · warm · premium
   =================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Warm neutrals */
  --cream:        #F7F2EA;
  --cream-soft:   #FBF7F0;
  --cream-deep:   #EFE6D7;
  --sand:         #ECE3D3;
  --card:         #FFFCF7;

  /* Browns / bronze */
  --cocoa:        #3A2C20;
  --cocoa-soft:   #5A4636;
  --brown:        #6E523C;
  --bronze:       #A87B4E;
  --bronze-deep:  #8A6038;
  --taupe:        #7C6A53;  /* darkened from #9C8B77 → ~4.5:1 on cream (WCAG AA for small labels) */

  /* Gentle secondary accents — warm sand & bronze (used sparingly) */
  --sage:         #C8A56E;
  --sage-soft:    #EFE3CF;
  --sage-deep:    #8A6038;
  --gold:         #BE9E5E;

  /* Lines & shadows */
  --line:         rgba(56, 42, 30, 0.12);
  --line-soft:    rgba(56, 42, 30, 0.07);
  --shadow-sm:    0 2px 10px rgba(74, 54, 36, 0.06);
  --shadow-md:    0 18px 50px -20px rgba(74, 54, 36, 0.28);
  --shadow-lg:    0 40px 90px -40px rgba(74, 54, 36, 0.40);

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1180px;
  --radius:    28px;
  --radius-lg: 40px;
  --radius-sm: 16px;
  --header-h:  78px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 10px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--cocoa-soft);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.0625rem;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* subtle warm paper texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(168, 123, 78, 0.10), transparent 60%),
    radial-gradient(900px 600px at -10% 20%, rgba(216, 188, 151, 0.14), transparent 55%);
}

img, svg { display: block; max-width: 100%; }

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--cocoa);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; text-wrap: pretty; }

a { color: var(--bronze-deep); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--brown); }

ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  position: relative;
  z-index: 1;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--cocoa);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: 0 0 12px 0;
  z-index: 200;
}
.skip-link:focus { left: 0; color: var(--cream); }

/* ---------- Shared bits ---------- */
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--bronze-deep);
  margin: 0 0 1rem;
}
.center-eyebrow, .center .eyebrow { text-align: center; }
/* Brand tagline eyebrow — title case, not all-caps */
.hero-eyebrow {
  text-transform: none;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
}

.section { padding: clamp(72px, 11vw, 140px) 0; position: relative; }

.section-title {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
}

.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-intro {
  font-size: 1.12rem;
  color: var(--brown);
  margin-top: 0.6rem;
}

.lead {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-style: italic;
  color: var(--bronze-deep);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, background .3s ease, color .3s ease;
  text-align: center;
  line-height: 1;
}
.btn-sm { padding: 0.72rem 1.3rem; font-size: 0.88rem; }
.btn-block { width: 100%; padding-block: 1.15rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-deep) 100%);
  color: #FCF8F1;
  box-shadow: 0 14px 30px -12px rgba(138, 96, 56, 0.7);
}
.btn-primary:hover {
  color: #FCF8F1;
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -14px rgba(138, 96, 56, 0.8);
}

.btn-ghost {
  background: transparent;
  color: var(--cocoa);
  border-color: var(--line);
}
.btn-ghost:hover {
  color: var(--cocoa);
  border-color: var(--bronze);
  background: rgba(168, 123, 78, 0.06);
  transform: translateY(-2px);
}

/* Press + disabled states (apply to all buttons) */
.btn:active { transform: translateY(0) scale(0.985); }
.btn:disabled,
.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .35s ease, box-shadow .35s ease, height .35s ease;
  background: rgba(247, 242, 234, 0.6);
  backdrop-filter: saturate(140%) blur(6px);
  -webkit-backdrop-filter: saturate(140%) blur(6px);
}
.site-header.scrolled {
  background: rgba(247, 242, 234, 0.92);
  box-shadow: 0 1px 0 var(--line-soft), var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { display: inline-flex; align-items: center; color: var(--cocoa); }
.brand-text {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  line-height: 1;
  color: var(--cocoa);
}
.brand-text-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 600;
  margin-top: 3px;
}

.nav-list { display: flex; align-items: center; gap: 2.1rem; }
.nav-list a {
  color: var(--cocoa-soft);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  position: relative;
  padding-block: 6px;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--bronze);
  transition: width .3s ease;
}
.nav-list a:hover, .nav-list a.active { color: var(--cocoa); }
.nav-list a:hover::after, .nav-list a.active::after { width: 100%; }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--cocoa);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--cream-soft);
  border-top: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
  padding: 1.5rem clamp(20px, 5vw, 48px) 2rem;
  z-index: 99;
  animation: menuIn .3s ease;
}
@keyframes menuIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 1.2rem; }
.mobile-menu a {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--cocoa);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu-cta { width: 100%; }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 120px) 0 clamp(70px, 10vw, 130px);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -20%; right: -10%;
  width: 70vw; height: 70vw;
  max-width: 820px; max-height: 820px;
  background: radial-gradient(circle, rgba(200, 162, 118, 0.30), transparent 65%);
  filter: blur(10px);
  z-index: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-title {
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin-bottom: 1.2rem;
  max-width: 16ch;
}
.hero-sub {
  font-size: 1.18rem;
  color: var(--brown);
  max-width: 46ch;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.4rem; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.8rem;
  font-size: 0.92rem;
  color: var(--cocoa-soft);
  font-weight: 500;
}
.hero-meta li { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-meta span { color: var(--bronze); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-chip {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cocoa);
  white-space: nowrap;
  animation: floaty 6s ease-in-out infinite;
}
.hero-chip-1 { top: 16%; left: -8%; }
.hero-chip-2 { bottom: 14%; right: -6%; animation-delay: -3s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===================================================================
   ABOUT
   =================================================================== */
.about { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%); }
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}
.portrait-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 18px;
  background: var(--card);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-soft);
}
.portrait-inner {
  border-radius: calc(var(--radius-lg) - 14px);
  overflow: hidden;
  background: radial-gradient(130% 120% at 30% 10%, #F4E8D4, #C9A981);
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: end center;
}
.portrait-inner svg { width: 70%; }
.portrait-caption {
  position: absolute;
  left: 50%; bottom: -16px;
  transform: translateX(-50%);
  background: var(--cocoa);
  color: var(--cream-soft);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  padding: 0.5rem 1.4rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.about-pull {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--cocoa);
  line-height: 1.4;
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  position: relative;
}
.about-pull::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 2px;
  background: var(--bronze);
  border-radius: 2px;
}

/* ===================================================================
   A PERSONAL NOTE
   =================================================================== */
.note { background: var(--cream-soft); }
.note-card {
  max-width: 820px;
  margin-inline: auto;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 72px);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.note-card::before {
  content: "\201C";
  position: absolute;
  top: -10px; right: 28px;
  font-family: var(--serif);
  font-size: 9rem;
  line-height: 1;
  color: rgba(168, 123, 78, 0.14);
  pointer-events: none;
}
.note-greeting {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  color: var(--cocoa);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.note-card p { color: var(--brown); font-size: 1.06rem; }
.note-em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--cocoa);
  line-height: 1.45;
  margin: 1.9rem 0;
  padding-top: 1.4rem;
  position: relative;
}
.note-em::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 2px;
  background: var(--bronze);
  border-radius: 2px;
}
.note-place {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  color: var(--bronze-deep);
  font-size: 1rem;
}
.note-place span { font-size: 1.15rem; }
.note-sign {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--cocoa);
  margin: 0.4rem 0 1.6rem;
}
.note-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ===================================================================
   PHILOSOPHY
   =================================================================== */
.philosophy { background: var(--cocoa); color: rgba(247,242,234,0.86); }
.philosophy::before { content:""; position:absolute; inset:0; background: radial-gradient(900px 500px at 80% -10%, rgba(168,123,78,0.22), transparent 60%); pointer-events:none; }
.philosophy .eyebrow { color: #D7B488; }
.philosophy .section-title { color: var(--cream-soft); }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.quote-card {
  margin: 0;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  padding: 2rem 1.6rem;
  backdrop-filter: blur(2px);
  transition: transform .4s ease, background .4s ease, border-color .4s ease;
}
.quote-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(215,180,136,0.45);
}
.quote-num {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #D7B488;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1rem;
}
.quote-card p {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--cream-soft);
  margin: 0;
}
.philosophy-statement {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}
.philosophy-statement p { font-size: 1.18rem; }
.philosophy-statement-em {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 1.95rem);
  line-height: 1.4;
  color: var(--cream-soft);
  margin-top: 0.6rem;
}

/* ===================================================================
   SERVICES
   =================================================================== */
.services { background: var(--cream-soft); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.4rem;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2.2rem 2rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bronze), transparent);
  opacity: 0;
  transition: opacity .4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(168,123,78,0.3);
}
.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #F5E9D6, #E7D2AE);
  color: var(--bronze-deep);
  margin-bottom: 1.4rem;
}
.service-icon svg { width: 32px; height: 32px; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 0.35rem; }
.service-tag {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--taupe);
  margin-bottom: 0.9rem;
}
.service-card > p:not(.service-tag) {
  color: var(--brown);
  font-size: 0.98rem;
  flex-grow: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--bronze-deep);
  margin-top: 0.6rem;
}
.service-link span { transition: transform .3s ease; }
.service-link:hover span { transform: translateX(4px); }

/* ===================================================================
   PRINCIPLES
   =================================================================== */
.principles {
  background:
    linear-gradient(180deg, var(--cream-soft) 0%, var(--cream-deep) 100%);
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.principle {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 1.6rem 1.4rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--cocoa);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  position: relative;
  transition: transform .35s ease, background .35s ease, color .35s ease, box-shadow .35s ease;
}
.principle::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bronze);
  position: absolute;
  top: 16px; left: 16px;
  opacity: 0.5;
  transition: opacity .35s ease;
}
.principle:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-deep) 100%);
  color: var(--cream-soft);
  box-shadow: var(--shadow-md);
}
.principle:hover::before { background: var(--cream-soft); opacity: 1; }

/* ===================================================================
   CONSULTATION
   =================================================================== */
.consultation { background: var(--cream-deep); }
.consultation-card {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 72px);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.consultation-em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--cocoa);
  line-height: 1.4;
  margin: 1.2rem 0 2rem;
}
.consultation-aside {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brown);
}
.consultation-orb {
  width: 100%;
  aspect-ratio: 1;
  max-width: 240px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: radial-gradient(120% 120% at 35% 25%, #FBF3E6, #D9BE97 60%, #B8966B);
  box-shadow: var(--shadow-md), inset 0 4px 18px rgba(255,255,255,0.5);
}

/* ===================================================================
   INTENTION
   =================================================================== */
.intention {
  background:
    radial-gradient(800px 500px at 50% 0%, rgba(168,123,78,0.10), transparent 60%),
    var(--cream-soft);
  text-align: center;
}
.intention-inner { max-width: 880px; margin-inline: auto; }
.intention-text {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.4;
  color: var(--cocoa-soft);
}
.intention-highlight {
  color: var(--cocoa);
  font-style: italic;
  font-weight: 500;
}

/* ===================================================================
   FINAL BRAND STATEMENT
   =================================================================== */
.brand-statement {
  background: var(--cocoa);
  color: var(--cream-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.brand-statement::before {
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(700px 400px at 20% 0%, rgba(168,123,78,0.25), transparent 60%),
    radial-gradient(700px 400px at 80% 100%, rgba(216,188,151,0.16), transparent 60%);
  pointer-events:none;
}
.brand-statement-inner { max-width: 760px; margin-inline: auto; position: relative; }
.brand-statement-logo {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--cream-soft);
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
}
.brand-statement-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: #E7CFAE;
  margin-bottom: 2.4rem;
  line-height: 1.4;
}
.brand-statement-lines {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.brand-statement-lines li {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  color: var(--cream-soft);
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.brand-statement-lines li:last-child { border-bottom: none; }

/* ===================================================================
   CONTACT
   =================================================================== */
.contact { background: var(--cream-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-points {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.6rem 0;
  font-weight: 500;
  color: var(--cocoa-soft);
}
.contact-points li { display: flex; align-items: center; gap: 0.7rem; }
.contact-points span { color: var(--bronze); }
.contact-reassure {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--brown);
}
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0.4rem 0 1.5rem;
  padding: 0.85rem 1.3rem 0.85rem 0.85rem;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.contact-phone:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(168, 123, 78, 0.32);
}
.contact-phone-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, #F5E9D6, #E7D2AE);
  color: var(--bronze-deep);
}
.contact-phone-icon svg { width: 22px; height: 22px; }
.contact-phone-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--taupe);
  font-weight: 600;
}
.contact-phone-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--cocoa);
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.contact-phone:hover .contact-phone-num { color: var(--bronze-deep); }

.contact-form {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { margin-bottom: 1.2rem; }
.field label, .session-type legend {
  display: block;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cocoa-soft);
  margin-bottom: 0.5rem;
  padding: 0;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--cocoa);
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: #8C7A62; opacity: 1; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--bronze);
  background: #FFFDF9;
  box-shadow: 0 0 0 4px rgba(168,123,78,0.16);
}
.field input.invalid,
.field select.invalid {
  border-color: #B5563C;
  box-shadow: 0 0 0 4px rgba(181,86,60,0.12);
}

.session-type { border: none; padding: 0; margin: 0 0 1.4rem; }
.radio-group { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.radio-pill {
  position: relative;
  cursor: pointer;
}
.radio-pill input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.radio-pill span {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cream-soft);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--cocoa-soft);
  transition: all .25s ease;
}
.radio-pill input:checked + span {
  background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-deep) 100%);
  color: #FBF7F0;
  border-color: transparent;
  box-shadow: 0 8px 18px -8px rgba(138,96,56,0.7);
}
.radio-pill input:focus-visible + span { outline: 2px solid var(--bronze); outline-offset: 2px; }

.form-status {
  margin: 1rem 0 0;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 1.4em;
}
.form-status.success { color: var(--bronze-deep); }
.form-status.error { color: #B5563C; }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
  background: var(--cream-deep);
  border-top: 1px solid var(--line-soft);
  padding: clamp(48px, 7vw, 76px) 0 28px;
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.3rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid var(--line-soft);
}
.footer-logo {
  width: min(330px, 74vw);
  height: auto;
  margin-bottom: 0.2rem;
}
.footer-tagline {
  margin: 0;
  font-size: 0.95rem;
  color: var(--brown);
  font-style: italic;
  font-family: var(--serif);
  letter-spacing: 0.02em;
}
.footer-phone {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--cocoa);
  letter-spacing: 0.02em;
}
.footer-phone:hover { color: var(--bronze-deep); }
.footer-place { margin: 0; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe); font-weight: 600; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 0.6rem 1.2rem; justify-content: center; }
.footer-nav a { color: var(--cocoa-soft); font-weight: 500; font-size: 0.95rem; padding: 0.5rem 0.4rem; border-radius: 8px; }
.footer-nav a:hover { color: var(--bronze-deep); }
.footer-base { padding-top: 1.6rem; text-align: center; }
.footer-base p { margin: 0; font-size: 0.85rem; color: var(--taupe); }

/* ===================================================================
   HERO FIGURE (brand artwork)
   =================================================================== */
.hero-visual { aspect-ratio: auto; }
.hero-figure-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6% 0;
}
.hero-halo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(260px, 34vw, 430px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 42% 36%, #FBF4E9 0%, #ECDCC1 46%, rgba(216,189,150,0) 72%);
  filter: blur(4px);
  z-index: 0;
}
.hero-figure {
  position: relative;
  z-index: 1;
  width: auto;
  height: clamp(360px, 44vw, 520px);
  max-width: 100%;
  filter: drop-shadow(0 26px 44px rgba(122, 92, 68, 0.26));
  animation: floaty 7s ease-in-out infinite;
}

/* ===================================================================
   ABOUT — credentials
   =================================================================== */
.credentials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: clamp(40px, 6vw, 64px);
}
.cred-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.cred-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--bronze-deep);
  margin-bottom: 0.5rem;
}
.cred-value {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--cocoa);
  line-height: 1.15;
  margin: 0 0 0.35rem;
}
.cred-note { font-size: 0.9rem; color: var(--brown); margin: 0; }

/* ===================================================================
   NOTE — service list & flexible line
   =================================================================== */
.note-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem 1.6rem;
  margin: 1.6rem 0;
}
.note-services li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--cocoa-soft);
  font-weight: 500;
}
.note-services li::before {
  content: "\2726";
  position: absolute;
  left: 0;
  color: var(--bronze);
}
.note-flex { font-size: 0.98rem; color: var(--brown); }

/* ===================================================================
   PHILOSOPHY additions
   =================================================================== */
.philosophy-intro { color: rgba(247, 242, 234, 0.78); }
.philosophy-belief {
  max-width: 880px;
  margin: 0 auto clamp(40px, 6vw, 60px);
  padding: clamp(24px, 4vw, 36px) 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.6vw, 2.5rem);
  line-height: 1.36;
  color: var(--cream-soft);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.philosophy-lead-in {
  text-align: center;
  color: #D7B488;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.6rem;
}

/* ===================================================================
   TRANSPARENT HAPPINESS
   =================================================================== */
.happiness { background: var(--cream-soft); }
.happiness-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.happiness-copy > p { font-size: 1.12rem; color: var(--brown); }
.happiness-close {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--cocoa);
  line-height: 1.45;
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  position: relative;
}
.happiness-close::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 2px;
  background: var(--bronze);
  border-radius: 2px;
}
.happiness-dims {
  background: linear-gradient(160deg, #FBF4E8 0%, #EFE0C6 100%);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 46px);
  box-shadow: var(--shadow-md);
}
.dims-label {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--bronze-deep);
  text-align: center;
  margin-bottom: 1.3rem;
}
.dims-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.dims-grid li {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--cocoa);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.dims-grid li:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--bronze), var(--bronze-deep));
  color: var(--cream-soft);
}

/* ===================================================================
   PRICING
   =================================================================== */
.pricing { background: var(--cream-deep); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2.1rem 1.9rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}
.price-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.price-card h3 { font-size: 1.35rem; margin-bottom: 0.9rem; }
.price-amount {
  font-family: var(--serif);
  font-size: 2.7rem;
  color: var(--bronze-deep);
  line-height: 1;
  margin: 0 0 0.5rem;
}
.price-amount span {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--taupe);
  font-weight: 500;
}
.price-amount-sm { font-size: 1.9rem; }
.price-note { font-size: 0.92rem; color: var(--brown); margin: 0; }
.price-card-feature {
  background: linear-gradient(150deg, #FBF4E8 0%, #EFE0C6 100%);
  border-color: rgba(168, 123, 78, 0.3);
}
.price-card-feature .btn { margin-top: 1.2rem; align-self: flex-start; }
.price-flex {
  text-align: center;
  max-width: 760px;
  margin: clamp(34px, 5vw, 50px) auto 0;
  color: var(--brown);
}

/* ===================================================================
   ASSURANCE (Important Information & Confidentiality)
   =================================================================== */
.assurance { background: var(--cream-soft); }
.assurance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.assurance-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow-sm);
}
.assurance-card h3 { font-size: 1.6rem; margin-bottom: 0.9rem; }
.assurance-card p { color: var(--brown); }
.assurance-link { text-align: center; margin: 2.2rem 0 0; }
.assurance-link a { font-weight: 600; font-size: 1.02rem; }
.assurance-link span { display: inline-block; transition: transform .3s ease; }
.assurance-link a:hover span { transform: translateX(5px); }

/* ===================================================================
   BRAND STATEMENT additions — Soul Print & tagline
   =================================================================== */
.soulprint {
  display: block;
  width: 44px;
  margin: 0 auto 1.5rem;
  color: #D9B88C;
  opacity: 0.92;
}
.brand-statement-tagline {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-weight: 600;
  color: #E7CFAE;
  margin-bottom: 1.6rem;
}

/* ===================================================================
   FORM disclaimer
   =================================================================== */
.form-disclaimer {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--taupe);
  text-align: center;
}

/* ===================================================================
   SCROLL REVEAL
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: none; }

/* stagger children inside grids */
.service-grid .reveal.in-view,
.quote-grid .reveal.in-view,
.principles-grid .reveal.in-view { transition-delay: var(--d, 0s); }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin-inline: auto; order: -1; width: 78%; }
  .hero-title { max-width: 20ch; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { max-width: 380px; }
  .happiness-grid { grid-template-columns: 1fr; }
  .assurance-grid { grid-template-columns: 1fr; }
  .consultation-card { grid-template-columns: 1fr; text-align: left; }
  .consultation-aside { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* Collapse primary nav early — 7 items need room */
@media (max-width: 940px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 760px) {
  .form-row { grid-template-columns: 1fr; }
  /* keep the floating chips inside the hero edges on smaller screens */
  .hero-chip-1 { left: 1%; }
  .hero-chip-2 { right: 1%; }
  /* two tidy columns of values instead of one long list */
  .principles-grid { grid-template-columns: 1fr 1fr; }
  /* guard against any horizontal overflow on phones */
  .mobile-menu { max-height: calc(100dvh - var(--header-h)); overflow-y: auto; }
}

@media (max-width: 560px) {
  /* stack action buttons full-width so long labels never overflow */
  .hero-actions,
  .note-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn,
  .note-actions .btn { width: 100%; }
  .hero-chip-1 { left: 2%; top: 9%; }
  .hero-chip-2 { right: 2%; bottom: 11%; }
}

@media (max-width: 460px) {
  :root { --radius-lg: 28px; }
  .hero-chip { font-size: 0.9rem; padding: 0.5rem 0.85rem; }
  .service-card, .contact-form { padding-inline: 1.5rem; }
  .brand-text-sub { display: none; }
  .hero-title { font-size: clamp(2.05rem, 8.6vw, 2.6rem); }
  .section-title { font-size: clamp(1.85rem, 7.2vw, 2.4rem); }
  .principles-grid { gap: 0.7rem; }
}

/* ===================================================================
   LEGAL / DOCUMENT PAGE (consent.html)
   =================================================================== */
.doc-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--cocoa-soft);
}
.doc-back span { transition: transform .3s ease; display: inline-block; }
.doc-back:hover span { transform: translateX(-4px); }

.legal { background: var(--cream); padding-top: clamp(48px, 7vw, 84px); }
.legal-wrap { max-width: 840px; margin-inline: auto; }
.legal-head { text-align: center; margin-bottom: clamp(36px, 5vw, 56px); }
.legal-head h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); }
.legal-lead { font-size: 1.12rem; color: var(--brown); max-width: 60ch; margin-inline: auto; }

.legal-section {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.4rem;
}
.legal-section h2 { font-size: clamp(1.5rem, 3vw, 1.9rem); margin-bottom: 1rem; }
.legal-section p { color: var(--brown); }

.legal-list { counter-reset: item; display: flex; flex-direction: column; gap: 1rem; margin: 0.4rem 0 0; }
.legal-list li {
  position: relative;
  padding-left: 2.6rem;
  color: var(--cocoa-soft);
  line-height: 1.55;
}
.legal-list li::before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0; top: 0.1rem;
  width: 1.8rem; height: 1.8rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bronze), var(--bronze-deep));
  color: var(--cream-soft);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
}

.sign-grid { display: grid; gap: 1.6rem; margin-top: 2rem; }
.sign-field { display: flex; align-items: baseline; gap: 1rem; }
.sign-field > .sign-key { white-space: nowrap; font-weight: 600; color: var(--cocoa); min-width: 7.5rem; }
.sign-rule { flex: 1; border-bottom: 1.5px solid var(--line); height: 1.6rem; }

.doc-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: 2rem; }

@media print {
  .site-header, .site-footer, .doc-actions, .skip-link, .hero-glow { display: none !important; }
  body::before { display: none; }
  body { background: #fff; color: #000; }
  .legal-section { box-shadow: none; border-color: #ccc; break-inside: avoid; }
  .legal { padding-top: 0; }
}

/* ===================================================================
   MULTI-PAGE + WARM COMPONENTS (2026-06 redesign)
   =================================================================== */

/* Background utilities */
.bg-sage { background: linear-gradient(180deg, var(--cream-soft) 0%, var(--sage-soft) 100%); }
.bg-sand { background: var(--sand); }
.bg-cream-deep { background: var(--cream-deep); }

/* Inner-page hero (About / service / contact pages) */
.page-hero {
  position: relative;
  padding: clamp(80px, 12vw, 150px) 0 clamp(48px, 7vw, 84px);
  background:
    radial-gradient(900px 460px at 78% -10%, rgba(200,162,118,0.22), transparent 62%),
    radial-gradient(700px 460px at 0% 110%, rgba(200,168,120,0.16), transparent 60%),
    var(--cream);
  overflow: hidden;
}
.page-hero-inner { max-width: 760px; }
.page-hero .eyebrow { margin-bottom: 1.1rem; }
.page-hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 1.06;
  margin-bottom: 1rem;
}
.page-hero .lead-sub {
  font-size: clamp(1.12rem, 2.2vw, 1.3rem);
  color: var(--brown);
  max-width: 54ch;
  margin-bottom: 1.8rem;
}
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* Breadcrumb-ish back link on inner pages */
.crumb { font-size: 0.86rem; color: var(--taupe); margin-bottom: 1rem; }
.crumb a { color: var(--bronze-deep); font-weight: 600; }

/* ---------- Trust / credibility cards ---------- */
.trust-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}
.trust-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
.trust-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.trust-ic {
  width: 58px; height: 58px;
  margin: 0 auto 1.1rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-soft), #E7D2AE);
  color: var(--sage-deep);
}
.trust-ic svg { width: 28px; height: 28px; }
.trust-card h3 { font-size: 1.45rem; margin-bottom: 0.35rem; }
.trust-card p { color: var(--brown); font-size: 0.96rem; margin: 0; }

/* ---------- How I Help ---------- */
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.help-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.help-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.help-tick {
  flex-shrink: 0;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bronze), var(--bronze-deep));
  color: #FBF7F0;
}
.help-tick svg { width: 20px; height: 20px; }
.help-item span { font-family: var(--serif); font-size: 1.3rem; color: var(--cocoa); line-height: 1.3; }

/* ---------- Process (3 steps) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2.4rem 1.9rem 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.step-num {
  width: 56px; height: 56px;
  margin: 0 auto 1.1rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #EFD9A8, var(--gold));
  color: #5A4326;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.step p { color: var(--brown); font-size: 0.98rem; margin: 0; }

/* ---------- Promise / "what you can expect" cards (honest stand-in for reviews) ---------- */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.promise-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.promise-stars { color: var(--gold); letter-spacing: 0.15em; font-size: 0.95rem; margin-bottom: 0.9rem; }
.promise-card p { font-family: var(--serif); font-size: 1.45rem; font-style: italic; color: var(--cocoa); line-height: 1.4; margin: 0 0 1rem; }
.promise-card cite { font-style: normal; font-weight: 600; font-size: 0.88rem; color: var(--taupe); letter-spacing: 0.04em; }
.promise-note { text-align: center; margin-top: 2rem; color: var(--brown); font-style: italic; font-family: var(--serif); font-size: 1.05rem; }

/* ---------- Final CTA band ---------- */
.cta-band {
  position: relative;
  background:
    radial-gradient(700px 380px at 20% 0%, rgba(168,123,78,0.30), transparent 60%),
    radial-gradient(700px 420px at 90% 100%, rgba(200,168,120,0.26), transparent 60%),
    var(--cocoa);
  color: var(--cream-soft);
  text-align: center;
  overflow: hidden;
}
.cta-band-inner { max-width: 680px; margin-inline: auto; position: relative; }
.cta-band h2 { color: var(--cream-soft); font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 1rem; }
.cta-band p { color: rgba(247,242,234,0.82); font-size: 1.15rem; margin-bottom: 2rem; }
.cta-band .btn-ghost { color: var(--cream-soft); border-color: rgba(255,255,255,0.3); }
.cta-band .btn-ghost:hover { color: var(--cream-soft); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.55); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* ---------- Service / inner page prose & lists ---------- */
.prose { max-width: 68ch; }
.prose p { font-size: 1.08rem; color: var(--cocoa-soft); }
.prose h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-top: 2.4rem; }
.prose h3 { font-size: 1.4rem; margin-top: 1.8rem; }

.feature-list { display: flex; flex-direction: column; gap: 0.8rem; margin: 1.4rem 0; }
.feature-list li { position: relative; padding-left: 2rem; color: var(--cocoa-soft); font-size: 1.05rem; }
.feature-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.45em;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--sage), var(--sage-deep));
}

/* Two-column content + aside (service pages) */
.split {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.aside-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.aside-card h3 { font-size: 1.35rem; margin-bottom: 0.8rem; }
.aside-card .ac-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.6rem 0; border-bottom: 1px solid var(--line-soft); font-size: 0.96rem; }
.aside-card .ac-row:last-of-type { border-bottom: none; }
.aside-card .ac-row span:first-child { color: var(--brown); }
.aside-card .ac-row span:last-child { font-weight: 600; color: var(--cocoa); }
.aside-card .btn { width: 100%; margin-top: 1.1rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.6rem;
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--cocoa);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.6rem;
  color: var(--bronze-deep);
  transition: transform .3s ease;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 1rem 0 0; color: var(--brown); }

/* Decorative inner-page figure */
.inline-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: radial-gradient(130% 120% at 30% 10%, #F4E8D4, #C9A981);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
  display: grid; place-items: end center;
}
.inline-figure img { width: 72%; }

/* Responsive for the new components */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .aside-card { position: static; top: auto; }
}
@media (max-width: 560px) {
  .page-hero-actions,
  .cta-actions { flex-direction: column; align-items: stretch; }
  .page-hero-actions .btn,
  .cta-actions .btn { width: 100%; }
}

/* ---------- Language switcher (compact dropdown, far right) ---------- */
.header-inner .header-cta { order: 4; }
.header-inner .lang-menu  { order: 5; }
.header-inner .nav-toggle { order: 6; }

.lang-menu { position: relative; flex-shrink: 0; }
.lang-menu summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--cocoa-soft);
  padding: 0.46rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  transition: border-color .25s ease, color .25s ease, background .25s ease;
}
.lang-menu summary::-webkit-details-marker { display: none; }
.lang-menu summary:hover { color: var(--cocoa); border-color: var(--bronze); }
.lang-menu .chev { width: 10px; height: 10px; transition: transform .3s ease; opacity: 0.7; }
.lang-menu[open] summary { color: var(--cocoa); border-color: var(--bronze); }
.lang-menu[open] .chev { transform: rotate(180deg); }

.lang-pop {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 6px;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: langIn .2s ease;
}
@keyframes langIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.lang-pop a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cocoa-soft);
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  white-space: nowrap;
}
.lang-pop a:hover { background: rgba(168, 123, 78, 0.1); color: var(--cocoa); }
.lang-pop a.active { color: var(--bronze-deep); font-weight: 700; }
.lang-pop a.active::after { content: "✓"; margin-left: 1rem; }

/* ---------- Sticky mobile call / book bar ---------- */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: none;
  gap: 0.6rem;
  padding: 0.6rem 0.8rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
  background: rgba(251, 247, 240, 0.9);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-top: 1px solid var(--line-soft);
  box-shadow: 0 -8px 28px -14px rgba(74, 54, 36, 0.4);
}
.mobile-cta-bar .btn { padding-block: 0.9rem; }
.mobile-cta-bar .mcb-call {
  flex: 0 0 auto;
  width: 54px;
  padding-inline: 0;
}
.mobile-cta-bar .mcb-call svg { width: 22px; height: 22px; }
.mobile-cta-bar .mcb-book { flex: 1; }

@media (max-width: 760px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 78px; }
}

/* ---------- Tighter, comfier mobile spacing ---------- */
@media (max-width: 600px) {
  .section { padding-block: clamp(54px, 13vw, 84px); }
  .page-hero { padding-top: clamp(46px, 13vw, 92px); padding-bottom: clamp(34px, 8vw, 56px); }
  .hero { padding-top: 24px; }
  .hero-figure { height: clamp(290px, 58vw, 380px); }
  .section-head { margin-bottom: clamp(30px, 7vw, 48px); }
  .lead { font-size: 1.4rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-chip { animation: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
