/* ==========================================================================
   MAPEK Coaching — Stone & Brass Edition
   Premium institution-level typography, warm taupe palette,
   architectural spacing, refined detailing.
   ========================================================================== */

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

:root {
  /* ----- Color: warm stone base ----- */
  --stone-50:  #F6F1E7;   /* lightest paper */
  --stone-100: #EFE8D9;   /* card surface */
  --stone-200: #E8E0D0;   /* page background */
  --stone-300: #DDD2BE;   /* hairline / divider tint */
  --stone-400: #C8BBA1;   /* mid stone */
  --stone-500: #A99B82;   /* muted accent */

  /* ----- Color: ink ----- */
  --ink-900: #2A241D;     /* primary heading ink */
  --ink-800: #3A332A;     /* primary body */
  --ink-700: #4D4438;     /* secondary body */
  --ink-500: #7A6E5C;     /* eyebrow / muted */
  --ink-400: #948877;     /* subtlest text */

  /* ----- Color: warm metallics & accents ----- */
  --brass-600: #8A6F46;   /* deep brass — kept as secondary warmth */
  --brass-500: #A8886A;
  --brass-400: #C7A887;

  /* ----- Color: plum / lilac (primary accent system) ----- */
  --plum-700:  #432B5C;   /* deep aubergine */
  --plum-600:  #6E4B96;   /* primary accent: italic emphasis, eyebrow rules */
  --plum-500:  #8E73B8;   /* mid mauve-violet */
  --lilac-400: #B89BD1;   /* clear lilac */
  --lilac-300: #D6C2EC;   /* soft lilac wash */
  --lilac-200: #E5D6F3;   /* faintest lilac */
  --terracotta: #B36A4A;

  /* ----- Lines & shadows ----- */
  --line:        rgba(58, 51, 42, 0.10);
  --line-strong: rgba(58, 51, 42, 0.18);
  --line-hair:   rgba(58, 51, 42, 0.06);

  --shadow-xs: 0 1px 2px rgba(58, 51, 42, 0.04);
  --shadow-sm: 0 4px 12px rgba(58, 51, 42, 0.05), 0 1px 2px rgba(58, 51, 42, 0.04);
  --shadow-md: 0 12px 30px rgba(58, 51, 42, 0.07), 0 2px 6px rgba(58, 51, 42, 0.04);
  --shadow-lg: 0 24px 60px rgba(58, 51, 42, 0.10), 0 4px 12px rgba(58, 51, 42, 0.05);

  /* ----- Layout tokens ----- */
  --radius-sm: 6px;
  --radius:    14px;
  --radius-lg: 22px;
  --container: 1200px;
  --container-narrow: 840px;
}

/* ==========================================================================
   Base typography & layout
   ========================================================================== */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.page-body {
  margin: 0;
  color: var(--ink-800);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0.005em;
  background-color: var(--stone-200);
  background-image:
    /* large lilac pool upper-left */
    radial-gradient(ellipse 70% 60% at 5% -5%, rgba(184, 155, 209, 0.55), transparent 70%),
    /* secondary lilac sweep */
    radial-gradient(ellipse 65% 50% at 100% 12%, rgba(214, 194, 236, 0.55), transparent 70%),
    /* warm cream interlude */
    radial-gradient(ellipse 55% 45% at 50% 35%, rgba(245, 230, 205, 0.32), transparent 70%),
    /* lilac wash mid-bottom */
    radial-gradient(ellipse 75% 55% at 30% 85%, rgba(184, 155, 209, 0.40), transparent 70%),
    /* deeper plum vignette bottom */
    radial-gradient(ellipse 80% 50% at 50% 115%, rgba(67, 43, 92, 0.10), transparent 65%),
    linear-gradient(180deg, var(--stone-200) 0%, var(--stone-100) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Subtle paper grain — premium detail */
body.page-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(rgba(58, 51, 42, 0.06) 0.5px, transparent 0.5px),
    radial-gradient(rgba(107, 79, 112, 0.04) 0.6px, transparent 0.6px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
  opacity: 0.55;
  mix-blend-mode: multiply;
}

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

a { color: var(--plum-600); }

main, .site-header, .site-footer {
  position: relative;
  z-index: 1;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: var(--container-narrow);
  margin-left: auto;
  margin-right: auto;
}

.center { text-align: center; }

/* ==========================================================================
   Typography scale
   ========================================================================== */
h1, h2, h3, h4, p, blockquote, ul { margin-top: 0; }

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", "Cormorant", Georgia, serif;
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -0.018em;
  font-feature-settings: "liga", "dlig", "kern";
}

h1 {
  font-size: clamp(2.6rem, 5.8vw, 5rem);
  line-height: 1.02;
  margin: 18px 0 22px;
  font-weight: 500;
}

h2 {
  font-size: clamp(2.1rem, 3.8vw, 3.6rem);
  line-height: 1.06;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.85rem;
  line-height: 1.18;
  margin-bottom: 12px;
  font-weight: 500;
}

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--plum-600);
  font-weight: 500;
}

p {
  margin: 0 0 18px;
  color: var(--ink-700);
  line-height: 1.75;
}

p:last-child { margin-bottom: 0; }

em { font-style: italic; }

/* ==========================================================================
   Eyebrows & pills
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin: 0 0 16px;
  position: relative;
}

.eyebrow::before { display: none; }

/* Centered eyebrow gets bookended rules */
.center .eyebrow {
  justify-content: center;
}

.center .eyebrow::after { display: none; }

/* tag/pill */
.pill, .card-tag {
  display: inline-flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(184, 155, 209, 0.18);
  border: 1px solid rgba(110, 75, 150, 0.36);
  color: var(--plum-700);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.card-tag {
  font-size: 0.68rem;
  padding: 6px 13px;
  margin-bottom: 18px;
}

/* ==========================================================================
   Header & navigation
   ========================================================================== */
.site-header {
  padding: 22px 0 0;
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    linear-gradient(180deg, rgba(232, 224, 208, 0.92) 0%, rgba(232, 224, 208, 0.70) 80%, transparent 100%);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink-900);
}

.logo-img {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-logo { width: 180px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-700);
  font-size: 0.93rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ink-900);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.site-nav a:not(.btn):hover { color: var(--ink-900); }
.site-nav a:not(.btn):hover::after { transform: scaleX(1); }
.site-nav a.active { color: var(--ink-900); }
.site-nav a.active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink-900);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform 0.3s ease;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
/* ==========================================================================
   Buttons
   ----------------------------------------------------------------------------
   Architecture:
     .btn              → base button (neutral default size)
     .btn-lg           → SIZE modifier: large hero/CTA
     .btn-nav          → SIZE modifier: compact navbar button
     .btn-primary      → COLOR modifier: filled plum
     .btn-secondary    → COLOR modifier: outlined plum
   Buttons get one size modifier and one color modifier.
   ========================================================================== */

/* ----- Base ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  min-width: 0;
  height: 46px;
  padding: 0 28px;
  margin: 0;
  border-radius: 999px;
  border: 1px solid transparent;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  vertical-align: middle;
  transition:
    transform 0.25s cubic-bezier(0.65, 0, 0.35, 1),
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

/* ----- Size modifiers ----- */
.btn.btn-lg {
  height: 56px;
  padding: 0 42px;
  font-size: 0.95rem;
}

.btn.btn-nav {
  height: 40px;
  padding: 0 22px;
  font-size: 0.85rem;
  letter-spacing: 0.015em;
  margin-left: 8px;
}

/* ----- Color modifiers ----- */
.btn.btn-primary,
a.btn.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--plum-600) 0%, var(--plum-700) 100%);
  border-color: var(--plum-700);
  box-shadow: var(--shadow-sm), 0 8px 22px rgba(110, 75, 150, 0.22);
}

.btn.btn-primary:hover,
a.btn.btn-primary:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md), 0 16px 36px rgba(110, 75, 150, 0.36);
  background: linear-gradient(135deg, #7B57A8 0%, var(--plum-600) 100%);
}

.btn.btn-secondary,
a.btn.btn-secondary {
  color: var(--plum-700);
  background: transparent;
  border-color: var(--plum-600);
}

.btn.btn-secondary:hover,
a.btn.btn-secondary:hover {
  background: var(--plum-600);
  color: #ffffff;
  border-color: var(--plum-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm), 0 8px 20px rgba(110, 75, 150, 0.20);
}

/* ----- Inside the nav, prevent the underline animation on the button ----- */
.site-nav a.btn::after { display: none; }

/* ----- Arrow icon support ----- */
.btn .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn:hover .arrow { transform: translateX(3px); }

/* ==========================================================================
   Hero (home)
   ========================================================================== */
.hero {
  position: relative;
  padding: 56px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.hero-copy {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.hero-sub {
  font-size: 1.20rem;
  line-height: 1.6;
  color: var(--ink-700);
  max-width: 640px;
  margin: 0 auto 36px;
}

.hero-sub em {
  font-style: italic;
  color: var(--plum-600);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-actions .btn { min-width: 180px; }

.hero-note {
  margin-top: 28px;
  font-size: 0.92rem;
  color: var(--ink-500);
  letter-spacing: 0.01em;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

/* Hero ornament (architectural detail) */
.hero-ornament {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 8px auto 0;
  color: var(--plum-500);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero-ornament::before,
.hero-ornament::after {
  content: "";
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--plum-500), transparent);
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
  padding: 80px 0;
  position: relative;
}

.preview-section { padding-top: 36px; }

.inner-hero {
  position: relative;
  padding: 68px 0 24px;
}

.inner-title {
  margin-bottom: 18px;
}

.section-sub {
  color: var(--ink-700);
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.center .section-sub { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Services band (home)
   ========================================================================== */
.services-band {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--stone-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.services-band::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent 30%);
  z-index: 0;
}

.services-band article {
  position: relative;
  z-index: 1;
  padding: 38px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.3s ease;
}

.services-band article:nth-child(2n) { border-right: none; }
.services-band article:nth-last-child(-n+2) { border-bottom: none; }

.services-band article:hover {
  background: rgba(184, 155, 209, 0.10);
}

.services-band h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.services-band p {
  color: var(--ink-700);
  line-height: 1.65;
  font-size: 0.98rem;
  margin: 0;
}

/* ==========================================================================
   Cards (preview, services, contact)
   ========================================================================== */
.cards.three,
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.steps {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card,
.step {
  position: relative;
  padding: 36px 32px;
  background: var(--stone-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.32s cubic-bezier(0.65, 0, 0.35, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.card:hover,
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.card h3 {
  font-size: 1.65rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--ink-700);
  font-size: 0.99rem;
  line-height: 1.7;
}

.card .text-link {
  margin-top: 22px;
}

/* Step (numbered) cards */
.step span.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(184, 155, 209, 0.45), rgba(214, 194, 236, 0.30));
  border: 1px solid rgba(110, 75, 150, 0.45);
  color: var(--plum-700);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 14px rgba(110, 75, 150, 0.14);
}

.step h3 {
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--ink-700);
}

/* ==========================================================================
   Split layout (about)
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.split .card {
  padding: 42px 38px;
}

/* ==========================================================================
   Lists
   ========================================================================== */
.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.clean-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-700);
  line-height: 1.65;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, var(--plum-500), var(--plum-700));
  transform: rotate(45deg);
  border-radius: 1px;
  box-shadow: 0 1px 2px rgba(58, 51, 42, 0.18);
}

.clean-list.compact { gap: 10px; }
.clean-list.compact li { font-size: 0.96rem; }

/* ==========================================================================
   Blockquote (premium pull-quote)
   ========================================================================== */
blockquote {
  margin: 32px 0 0;
  padding: 22px 0 22px 26px;
  border-left: 2px solid var(--plum-500);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 1.4;
  font-style: italic;
  color: var(--ink-900);
  font-weight: 500;
  letter-spacing: -0.005em;
}

blockquote em {
  color: var(--plum-600);
}

blockquote::before {
  content: "";
  display: none;
}

/* ==========================================================================
   Text link (in-prose link with underline)
   ========================================================================== */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--ink-900);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-bottom: 1px solid var(--plum-500);
  padding-bottom: 3px;
  transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}

.text-link::after {
  content: "→";
  font-size: 1.05em;
  transition: transform 0.3s ease;
}

.text-link:hover {
  color: var(--plum-600);
  border-bottom-color: var(--plum-600);
}

.text-link:hover::after {
  transform: translateX(3px);
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-experience { padding-top: 36px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: stretch;
}

.contact-card {
  min-height: 100%;
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
}

.contact-primary {
  background:
    linear-gradient(135deg, rgba(184, 155, 209, 0.32), rgba(255, 255, 255, 0)) ,
    var(--stone-50);
  border-color: rgba(110, 75, 150, 0.32);
  box-shadow: var(--shadow-sm), 0 16px 40px rgba(110, 75, 150, 0.10);
}

.contact-card h3 {
  font-size: 2rem;
  margin: 6px 0 14px;
}

.contact-card p {
  max-width: 36rem;
}

.contact-actions {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-actions .btn { min-width: 200px; }

.micro-note {
  margin-top: 18px;
  font-size: 0.88rem;
  color: var(--ink-500);
  letter-spacing: 0.01em;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  margin-top: 60px;
  padding: 56px 0 40px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent 0%, rgba(184, 155, 209, 0.22) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-brand { margin-bottom: 18px; }

.footer-copy {
  color: var(--ink-700);
  font-size: 0.96rem;
  line-height: 1.7;
  max-width: 32rem;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--ink-700);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 2px;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: var(--ink-900);
}

.footer-links a:hover::after { transform: scaleX(1); }

.footer-sub {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--ink-500);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ==========================================================================
   Page-specific gentle tints (so each page has its own personality)
   ========================================================================== */
body.about-page {
  background-image:
    radial-gradient(ellipse 70% 55% at 95% -5%, rgba(184, 155, 209, 0.55), transparent 70%),
    radial-gradient(ellipse 55% 45% at 0% 25%, rgba(245, 230, 205, 0.30), transparent 65%),
    radial-gradient(ellipse 70% 55% at 50% 95%, rgba(214, 194, 236, 0.45), transparent 70%),
    radial-gradient(ellipse 80% 50% at 50% 115%, rgba(67, 43, 92, 0.10), transparent 65%),
    linear-gradient(180deg, var(--stone-200) 0%, var(--stone-100) 100%);
}

body.services-page {
  background-image:
    radial-gradient(ellipse 70% 55% at 0% -5%, rgba(184, 155, 209, 0.55), transparent 70%),
    radial-gradient(ellipse 60% 50% at 100% 22%, rgba(245, 230, 205, 0.34), transparent 65%),
    radial-gradient(ellipse 70% 55% at 70% 92%, rgba(214, 194, 236, 0.50), transparent 70%),
    radial-gradient(ellipse 80% 50% at 50% 115%, rgba(67, 43, 92, 0.10), transparent 65%),
    linear-gradient(180deg, var(--stone-200) 0%, var(--stone-100) 100%);
}

body.approach-page {
  background-image:
    radial-gradient(ellipse 65% 50% at 50% -5%, rgba(184, 155, 209, 0.58), transparent 70%),
    radial-gradient(ellipse 55% 60% at 0% 70%, rgba(245, 230, 205, 0.26), transparent 65%),
    radial-gradient(ellipse 60% 60% at 100% 80%, rgba(214, 194, 236, 0.50), transparent 70%),
    radial-gradient(ellipse 80% 50% at 50% 115%, rgba(67, 43, 92, 0.10), transparent 65%),
    linear-gradient(180deg, var(--stone-200) 0%, var(--stone-100) 100%);
}

body.contact-page {
  background-image:
    radial-gradient(ellipse 60% 60% at 100% -5%, rgba(184, 155, 209, 0.60), transparent 70%),
    radial-gradient(ellipse 55% 50% at 0% 50%, rgba(245, 230, 205, 0.30), transparent 65%),
    radial-gradient(ellipse 60% 55% at 55% 95%, rgba(214, 194, 236, 0.50), transparent 70%),
    radial-gradient(ellipse 80% 50% at 50% 115%, rgba(67, 43, 92, 0.10), transparent 65%),
    linear-gradient(180deg, var(--stone-200) 0%, var(--stone-100) 100%);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .section { padding: 64px 0; }
  .inner-hero { padding-top: 56px; }
  .hero { padding-top: 44px; }
}

@media (max-width: 880px) {
  :root { --container: 1180px; }
  .container { width: min(calc(100% - 32px), var(--container)); }

  .split,
  .steps,
  .cards.three,
  .services-band,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-links { justify-content: flex-start; }
  .services-band article {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .services-band article:last-child { border-bottom: none; }

  .hero { padding-top: 36px; }
  .inner-hero { padding-top: 40px; }
  .section { padding: 52px 0; }
  .site-footer { padding: 44px 0 32px; }

  .nav-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 16px;
    left: 16px;
    padding: 22px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--stone-50);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .site-nav.open { display: flex; }

  /* Inside the mobile drawer the nav button stretches; otherwise compact */
  .site-nav.open .btn-nav {
    margin-left: 0;
    width: 100%;
    height: 48px;
  }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; }

  .card, .step, .services-band article, .contact-card { padding: 28px 24px; }
  .split .card { padding: 32px 28px; }
  .logo-img { width: 180px; }
  .footer-logo { width: 150px; }
  .footer-links a { font-size: 0.95rem; }
}

@media (max-width: 480px) {
  body.page-body { font-size: 16px; }
  .container { width: calc(100% - 28px); }
  .nav-wrap { padding: 12px 4px; }
  .logo-img { width: 160px; }
  .hero { padding-top: 24px; padding-bottom: 8px; }
  .inner-hero { padding-top: 28px; padding-bottom: 8px; }
  .section { padding: 40px 0; }
  .hero-sub { font-size: 1.05rem; }
  blockquote { font-size: 1.3rem; padding-left: 20px; }
  .contact-actions .btn { min-width: 0; width: 100%; }
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s cubic-bezier(0.65, 0, 0.35, 1), transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cards.three .reveal:nth-child(2) { transition-delay: 80ms; }
.cards.three .reveal:nth-child(3) { transition-delay: 160ms; }
.steps .reveal:nth-child(2) { transition-delay: 80ms; }
.steps .reveal:nth-child(3) { transition-delay: 160ms; }
.steps .reveal:nth-child(4) { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.05ms !important; }
}

/* ==========================================================================
   Portrait treatments
   ========================================================================== */
.portrait-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-strong);
  background: var(--stone-100);
  isolation: isolate;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 60%, rgba(67, 43, 92, 0.10) 100%);
  z-index: 1;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portrait-frame.portrait-tall { aspect-ratio: 4 / 5; }
.portrait-frame.portrait-square { aspect-ratio: 1 / 1; }
.portrait-frame.portrait-wide { aspect-ratio: 5 / 4; }

/* Decorative brass corner detail on tall portrait */
.portrait-frame.portrait-accent::before {
  content: "";
  position: absolute;
  top: -14px;
  right: -14px;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(110, 75, 150, 0.45);
  border-radius: var(--radius-sm);
  z-index: 2;
  background: linear-gradient(135deg, rgba(184, 155, 209, 0.12), transparent 60%);
  backdrop-filter: blur(2px);
}

/* About page — hero with portrait */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.about-hero-grid .hero-copy { max-width: 560px; text-align: left; margin: 0; }
.about-hero-grid .eyebrow { margin-left: 0; }

.about-hero-grid .portrait-frame { max-width: 460px; margin-left: auto; }

/* About page — circular portrait small accent */
.portrait-circle {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid var(--stone-50);
  box-shadow: 0 6px 18px rgba(58, 51, 42, 0.12);
  flex-shrink: 0;
  background: var(--stone-200);
}

.portrait-circle img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* About page — secondary lifestyle band */
.lifestyle-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
  margin-top: 24px;
}

.lifestyle-band .portrait-frame { max-width: 540px; }

.lifestyle-band .lifestyle-copy {
  padding: 0 8px;
}

.lifestyle-band h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-section {
  padding-top: 16px;
  padding-bottom: 56px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 12px;
}

.testimonial-card {
  position: relative;
  padding: 48px 44px 40px;
  background: var(--stone-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.32s cubic-bezier(0.65, 0, 0.35, 1), box-shadow 0.32s ease, border-color 0.32s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.testimonial-mark {
  position: absolute;
  top: 18px;
  left: 32px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 5.5rem;
  line-height: 1;
  color: rgba(110, 75, 150, 0.18);
  user-select: none;
  pointer-events: none;
}

.testimonial-card p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--ink-900);
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0 0 22px;
  position: relative;
  z-index: 1;
}

.testimonial-card p.testimonial-body {
  font-family: "Inter", sans-serif;
  font-size: 1.02rem;
  font-style: normal;
  line-height: 1.7;
  color: var(--ink-700);
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 16px;
}

.testimonial-card p.testimonial-body + p.testimonial-body { margin-top: 0; }

.testimonial-attribution {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Inter", sans-serif;
}

.attribution-mark { display: none; }

.attribution-name {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-500);
}

/* Pull quote (single, large, centered) */
.pull-quote-section {
  padding: 64px 0 48px;
}

.pull-quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}

.pull-quote-mark {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--plum-500);
  opacity: 0.55;
  margin-bottom: 14px;
}

.pull-quote blockquote {
  border-left: none;
  padding: 0;
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2.05rem);
  line-height: 1.4;
  color: var(--ink-900);
  font-weight: 500;
}

.pull-quote .attribution {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.pull-quote .attribution::before,
.pull-quote .attribution::after { display: none; }

/* ==========================================================================
   Section heading (used above testimonials)
   ========================================================================== */
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin-bottom: 12px;
}

.section-heading .section-sub {
  margin-top: 6px;
}

/* ==========================================================================
   Responsive (portraits & testimonials)
   ========================================================================== */
@media (max-width: 880px) {
  .about-hero-grid,
  .lifestyle-band,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-hero-grid .hero-copy { text-align: center; max-width: 100%; }
  .about-hero-grid .eyebrow { justify-content: center; }
  .about-hero-grid .eyebrow::after { display: none; }
  .about-hero-grid .portrait-frame { margin: 0 auto; max-width: 380px; }
  .lifestyle-band .portrait-frame { margin: 0 auto; max-width: 480px; }
  .lifestyle-band .lifestyle-copy { text-align: center; }

  .testimonial-card { padding: 38px 28px 32px; }
  .testimonial-mark { left: 22px; font-size: 4.5rem; }
  .testimonial-card p { font-size: 1.18rem; }

  .pull-quote-section { padding: 48px 0 36px; }
  .pull-quote-mark { font-size: 4rem; }
}

@media (max-width: 480px) {
  .testimonial-card p.testimonial-body { font-size: 0.98rem; }
  .pull-quote .attribution { font-size: 0.76rem; letter-spacing: 0.18em; }
}

/* ==========================================================================
   Triptych — three-photo editorial gallery (About page)
   ========================================================================== */
.portrait-triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: end;
  margin-top: 8px;
}

.portrait-triptych figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.portrait-triptych .portrait-frame {
  aspect-ratio: 4 / 5;
}

/* Center photo sits slightly larger / lower for editorial rhythm */
.portrait-triptych figure:nth-child(1) { transform: translateY(28px); }
.portrait-triptych figure:nth-child(3) { transform: translateY(14px); }
.portrait-triptych figure:nth-child(2) .portrait-frame {
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg), 0 24px 60px rgba(110, 75, 150, 0.16);
  border-color: rgba(110, 75, 150, 0.28);
}

.portrait-triptych figcaption {
  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-500);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.portrait-triptych figcaption::before,
.portrait-triptych figcaption::after {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--plum-500);
}

/* Centered "grounded in real life" moment */
.grounded-note {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.grounded-note h3 {
  font-size: 2.1rem;
  margin-bottom: 14px;
}

.grounded-note p {
  color: var(--ink-700);
  font-size: 1.08rem;
  line-height: 1.75;
}

/* Responsive */
@media (max-width: 880px) {
  .portrait-triptych {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .portrait-triptych figure:nth-child(1),
  .portrait-triptych figure:nth-child(3) { transform: none; }
  .portrait-triptych figure { max-width: 380px; margin-left: auto; margin-right: auto; }
}

/* ==========================================================================
   About hero — wide single photo band (cinematic, environmental)
   ========================================================================== */
/* Story-card feature image — oval-cropped, floated, text wraps along curve */
.card-feature-image {
  float: left;
  width: 210px;
  aspect-ratio: 3 / 4;
  margin: 8px 30px 16px 0;
  border-radius: 50%;
  overflow: hidden;
  background: var(--stone-50);
  border: 4px solid var(--stone-50);
  box-shadow:
    0 0 0 1px rgba(110, 75, 150, 0.45),
    0 12px 28px rgba(58, 51, 42, 0.12),
    0 2px 6px rgba(58, 51, 42, 0.06);
  shape-outside: ellipse(50% 50%);
  shape-margin: 14px;
}

.card-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  display: block;
}

@media (max-width: 880px) {
  .card-feature-image {
    float: none;
    width: 220px;
    margin: 0 auto 24px;
    shape-outside: none;
  }
}

/* ==========================================================================
   Contact page — circular portrait accent on primary card
   ========================================================================== */
/* Contact card portrait — floated oval, text wraps along curve */
.contact-content {
  position: relative;
}

.contact-content::after {
  content: "";
  display: block;
  clear: both;
}

.contact-portrait {
  float: left;
  width: 150px;
  aspect-ratio: 3 / 4;
  margin: 6px 26px 14px 0;
  border-radius: 50%;
  overflow: hidden;
  background: var(--stone-50);
  border: 3px solid var(--stone-50);
  box-shadow:
    0 0 0 1px rgba(110, 75, 150, 0.42),
    0 10px 22px rgba(58, 51, 42, 0.12);
  shape-outside: ellipse(50% 50%);
  shape-margin: 12px;
}

.contact-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

@media (max-width: 880px) {
  .contact-portrait {
    float: none;
    width: 130px;
    margin: 0 auto 18px;
    shape-outside: none;
  }
}


/* About story card — refined blockquote (no left rule, decorative inline open quote) */
.split .card blockquote {
  border-left: none;
  padding: 18px 0 6px 0;
  margin-top: 26px;
  font-size: 1.5rem;
  line-height: 1.45;
}

.split .card blockquote::before {
  content: "\201C";
  display: inline;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 2.4em;
  line-height: 0;
  vertical-align: -0.22em;
  color: var(--plum-500);
  opacity: 0.55;
  margin-right: 0.04em;
  pointer-events: none;
  user-select: none;
}

/* ==========================================================================
   Cheetah-print texture — barely-opaque organic spots behind hero sections
   Uses an external SVG tile in /assets, no opacity multiplier so we can
   tune transparency directly in the SVG fills.
   ========================================================================== */
.hero,
.inner-hero {
  position: relative;
  isolation: isolate;
}

.hero::before,
.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image: url("assets/leopard-print.png");
  background-repeat: repeat;
  background-size: 240px auto;
  background-position: center top;
  opacity: 0.08;
  mix-blend-mode: multiply;
  mask-image: linear-gradient(180deg, black 0%, black 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, black 0%, black 65%, transparent 100%);
}


/* 4-card service grid (2x2 desktop, 1 column mobile) */
.cards.four {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

@media (max-width: 880px) {
  .cards.four {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   Service pills (home page — preview-section top row)
   ========================================================================== */
.service-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 40px;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border: 1px solid rgba(110, 75, 150, 0.42);
  border-radius: 999px;
  color: var(--plum-700);
  background: rgba(255, 255, 255, 0.55);
  font-family: "Inter", sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.22s cubic-bezier(0.65, 0, 0.35, 1), background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-pill:hover {
  background: var(--plum-600);
  color: #ffffff;
  border-color: var(--plum-600);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(110, 75, 150, 0.20);
}

@media (max-width: 480px) {
  .service-pills { gap: 8px; margin-bottom: 28px; }
  .service-pill { padding: 8px 16px; font-size: 0.78rem; }
}

/* ==========================================================================
   Credentials strip (footer) — Credly badges
   ========================================================================== */
.credentials-strip {
  padding: 28px 0 8px;
  border-top: 1px solid var(--line);
  margin-top: 36px;
  text-align: center;
}

.credentials-strip .eyebrow {
  margin: 0 auto 18px;
  display: inline-flex;
  justify-content: center;
}

.credentials-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 auto;
  max-width: 1100px;
}

.credentials-grid > div {
  flex: 0 0 auto;
}

@media (max-width: 880px) {
  .credentials-strip { padding-top: 22px; margin-top: 28px; }
  .credentials-grid { gap: 10px; }
}
