/* =====================================================================
   Ms. Claudee Counselling — Global Design System
   Brand tokens + reusable global classes (Kintsugi direction)
   Loaded site-wide via the Blocksy child theme.
   ===================================================================== */

:root {
  /* ---- Primary colours ---- */
  --color-midnight: #17324D;
  --color-deep-blue: #214765;
  --color-kintsugi-gold: #C79A3B;
  --color-soft-gold: #D9B869;
  --color-warm-ivory: #F7F2E8;
  --color-cream: #FCFAF5;
  --color-charcoal: #24313D;

  /* ---- Supporting colours ---- */
  --color-clay: #B96E55;
  --color-soft-clay: #D9A58F;
  --color-sage: #879B87;
  --color-soft-sage: #DDE5DC;
  --color-mist-blue: #E8F0F4;
  --color-warm-grey: #7A7F83;
  --color-border: #DED8CD;
  --color-white: #FFFFFF;

  /* ---- Functional colours ---- */
  --color-success: #52765A;
  --color-warning: #A46F22;
  --color-error: #A54848;
  --color-info: #416B86;
  --color-focus: #C79A3B;

  /* ---- Typography families ---- */
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;

  /* ---- Type scale ---- */
  --font-size-xs: clamp(0.75rem, 0.72rem + 0.12vw, 0.82rem);
  --font-size-sm: clamp(0.875rem, 0.84rem + 0.14vw, 0.95rem);
  --font-size-body: clamp(1rem, 0.96rem + 0.18vw, 1.125rem);
  --font-size-lg: clamp(1.15rem, 1.08rem + 0.32vw, 1.35rem);
  --font-size-h4: clamp(1.3rem, 1.15rem + 0.65vw, 1.65rem);
  --font-size-h3: clamp(1.6rem, 1.3rem + 1vw, 2.1rem);
  --font-size-h2: clamp(2rem, 1.5rem + 1.8vw, 3.15rem);
  --font-size-h1: clamp(2.7rem, 1.8rem + 3vw, 5rem);
  --font-size-display: clamp(3.2rem, 2rem + 4.5vw, 6.5rem);

  /* ---- Spacing (8-point) ---- */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 8rem;
  --space-9: 10rem;

  /* ---- Layout ---- */
  --content-width: 760px;
  --wide-width: 1180px;
  --full-width: 1440px;
  --header-height: 82px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* ---- Shadows & borders ---- */
  --shadow-soft: 0 12px 36px rgba(23, 50, 77, 0.08);
  --shadow-card: 0 18px 50px rgba(23, 50, 77, 0.10);
  --shadow-hover: 0 22px 60px rgba(23, 50, 77, 0.14);
  --border-soft: 1px solid rgba(23, 50, 77, 0.12);
  --border-gold: 1px solid rgba(199, 154, 59, 0.45);

  /* Map brand tokens onto WordPress global layout variables */
  --wp--style--global--wide-size: var(--wide-width);
  --wp--style--global--content-size: var(--content-width);
  --wp--spacing--side: min(3vw, 20px);
}

/* =====================================================================
   Base typography
   ===================================================================== */
body.msc-brand,
.msc-brand {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: 1.7;
  color: var(--color-charcoal);
  background-color: var(--color-warm-ivory);
}

.msc-brand h1, .msc-brand h2, .msc-brand h3,
.msc-brand h4, .msc-brand h5, .msc-brand h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--color-midnight);
  font-weight: 600;
}
.msc-brand h1 { line-height: 1.05; }

.msc-brand p { max-width: 68ch; }

/* =====================================================================
   Section shells — full-width band with a centred inner column
   ===================================================================== */
.section-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: clamp(5rem, 8vw, 9rem);
  padding-inline: var(--wp--spacing--side, min(3vw, 20px));
  background-color: var(--color-warm-ivory);
  position: relative;
}
.section-shell--dark { background-color: var(--color-midnight); color: var(--color-warm-ivory); }
.section-shell--dark h1, .section-shell--dark h2, .section-shell--dark h3 { color: var(--color-warm-ivory); }
.section-shell--cream { background-color: var(--color-cream); }
.section-shell--sage { background-color: var(--color-soft-sage); }
.section-shell--mist { background-color: var(--color-mist-blue); }

@media (max-width: 1024px) { .section-shell { padding-block: clamp(4rem, 7vw, 6rem); } }
@media (max-width: 768px)  { .section-shell { padding-block: 3.5rem; } }

.content-narrow { width: var(--content-width); max-width: 100%; margin-inline: auto; }
.content-wide   { width: var(--wide-width);   max-width: 100%; margin-inline: auto; }

/* =====================================================================
   Text primitives
   ===================================================================== */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-kintsugi-gold);
  margin: 0 0 var(--space-2);
}
.display-heading {
  font-family: var(--font-heading);
  font-size: var(--font-size-display);
  line-height: 1.05;
  color: var(--color-midnight);
  margin: 0 0 var(--space-3);
}
.section-heading {
  font-family: var(--font-heading);
  font-size: var(--font-size-h2);
  line-height: 1.15;
  color: var(--color-midnight);
  margin: 0 0 var(--space-3);
}
.body-large {
  font-size: var(--font-size-lg);
  line-height: 1.7;
  max-width: 68ch;
}

/* =====================================================================
   Buttons & links
   ===================================================================== */
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 220ms ease-out, color 220ms ease-out, border-color 220ms ease-out;
  min-height: 44px;
}
.button-primary {
  background-color: var(--color-midnight);
  color: var(--color-white);
  border: 1px solid var(--color-midnight);
}
.button-primary:hover,
.button-primary:focus-visible {
  background-color: var(--color-kintsugi-gold);
  color: var(--color-midnight);
  border-color: var(--color-kintsugi-gold);
}
.button-secondary {
  background-color: transparent;
  color: var(--color-midnight);
  border: 1px solid var(--color-midnight);
}
.button-secondary:hover,
.button-secondary:focus-visible {
  background-color: var(--color-midnight);
  color: var(--color-white);
}
.section-shell--dark .button-secondary {
  color: var(--color-warm-ivory);
  border-color: rgba(247, 242, 232, 0.5);
}
.section-shell--dark .button-secondary:hover {
  background-color: var(--color-warm-ivory);
  color: var(--color-midnight);
}
.text-link {
  color: var(--color-midnight);
  text-decoration: underline;
  text-decoration-color: var(--color-kintsugi-gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 200ms ease-out;
}
.text-link:hover,
.text-link:focus-visible { color: var(--color-kintsugi-gold); }

/* =====================================================================
   Cards
   ===================================================================== */
.card-soft {
  background-color: var(--color-cream);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: var(--space-4);
}
.card-bordered {
  background-color: var(--color-cream);
  border: var(--border-soft);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}
.service-card {
  background-color: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 36px);
  transition: transform 220ms ease-out, border-color 220ms ease-out, box-shadow 220ms ease-out;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-kintsugi-gold);
  box-shadow: var(--shadow-card);
}
.service-card h3, .service-card h4 { font-size: var(--font-size-h4); margin: var(--space-2) 0; }

.testimonial-card {
  background-color: var(--color-warm-ivory);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 40px);
  border: var(--border-soft);
}
.testimonial-card--sage { background-color: var(--color-soft-sage); }

/* =====================================================================
   FAQ accordion (native <details>)
   ===================================================================== */
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-3) 0;
}
.faq-item > summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-size: var(--font-size-h4);
  color: var(--color-midnight);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.6rem;
  color: var(--color-kintsugi-gold);
  transition: transform 250ms ease-out;
}
.faq-item[open] > summary::after { content: "\2212"; }
.faq-item .faq-answer { padding-top: var(--space-2); max-width: 68ch; }

/* =====================================================================
   Quote & CTA panel
   ===================================================================== */
.quote-block {
  font-family: var(--font-heading);
  font-size: var(--font-size-h3);
  line-height: 1.3;
  color: var(--color-deep-blue);
  max-width: 20ch;
}
.section-shell--dark .quote-block { color: var(--color-soft-gold); }

.cta-panel {
  background-color: var(--color-midnight);
  color: var(--color-warm-ivory);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  max-width: var(--wide-width);
  margin-inline: auto;
  text-align: center;
}
.cta-panel h2 { color: var(--color-warm-ivory); }

/* =====================================================================
   Kintsugi divider — fine, organic gold line
   ===================================================================== */
.kintsugi-line {
  width: 100%;
  max-width: 240px;
  height: 2px;
  border: 0;
  margin: var(--space-4) 0;
  background: linear-gradient(90deg,
      transparent 0%,
      var(--color-soft-gold) 25%,
      var(--color-kintsugi-gold) 50%,
      var(--color-soft-gold) 75%,
      transparent 100%);
}

/* =====================================================================
   Accessibility — respect reduced motion
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Visible focus states everywhere */
.msc-brand a:focus-visible,
.msc-brand button:focus-visible,
.button-primary:focus-visible,
.button-secondary:focus-visible,
.faq-item > summary:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

/* =====================================================================
   Home & page layout utilities + Kintsugi brand refinements
   (kept in the theme so rendering never depends on Greenshift CSS gen)
   ===================================================================== */

/* Full-width band with a centred inner column */
.wp-section {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding-inline: var(--wp--spacing--side, min(3vw, 20px));
  padding-block: clamp(5rem, 8vw, 9rem);
  margin: 0; position: relative;
  background-color: var(--color-warm-ivory);
}
.wp-content-wrap { width: var(--wide-width); max-width: 100%; }
@media (max-width: 1024px) { .wp-section { padding-block: clamp(4rem, 7vw, 6rem); } }
@media (max-width: 768px)  { .wp-section { padding-block: 3.5rem; } }

/* Band colour variants */
.msch-band--dark { background-color: var(--color-midnight); color: var(--color-warm-ivory); }
.msch-band--dark h1, .msch-band--dark h2, .msch-band--dark h3 { color: var(--color-warm-ivory); }
.msch-band--dark p { color: rgba(247,242,232,0.86); }
.msch-band--cream { background-color: var(--color-cream); }
.msch-band--sage  { background-color: var(--color-soft-sage); }
.msch-band--mist  { background-color: var(--color-mist-blue); }

/* Hero */
.msch-hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.msch-hero__media {
  position: relative; width: 100%; aspect-ratio: 4/5;
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(155deg, var(--color-mist-blue), var(--color-soft-sage) 60%, var(--color-soft-clay));
  box-shadow: var(--shadow-card);
  display: flex; align-items: flex-end; justify-content: center;
}
.msch-hero__media::after { content: ""; position: absolute; inset: 12px; border: var(--border-gold); border-radius: calc(var(--radius-lg) - 8px); pointer-events: none; }
.msch-media-label { position: relative; z-index: 1; margin: 0 0 var(--space-3); font-size: var(--font-size-sm); color: rgba(23,50,77,0.55); font-style: italic; }
.msch-cluster { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-4); align-items: center; }
.msch-cluster--center { justify-content: center; }
.msch-micro { font-size: var(--font-size-sm); color: var(--color-warm-grey); margin-top: var(--space-2); }

/* Reassurance strip */
.msch-reassure { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-5); width: 100%; }
.msch-reassure__item { text-align: center; }
.msch-reassure__item h3 { font-size: var(--font-size-h4); margin: var(--space-2) 0 var(--space-1); }
.msch-reassure__item p { margin-inline: auto; }
.msch-icon { width: 46px; height: 46px; margin: 0 auto var(--space-2); color: var(--color-kintsugi-gold); }
.msch-icon svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* Two-column story */
.msch-story { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }

/* Card grids */
.msch-cards4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-3); width: 100%; margin-top: var(--space-5); }
.msch-cards3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-3); width: 100%; margin-top: var(--space-5); }
.msch-cards2 { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--space-3) var(--space-6); width: 100%; margin-top: var(--space-4); }
.service-card p { margin-block: var(--space-2); }

/* About */
.msch-about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.msch-about__media {
  position: relative; width: 100%; aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, var(--color-soft-clay), var(--color-mist-blue));
  box-shadow: var(--shadow-soft); display: flex; align-items: flex-end; justify-content: center;
}
.msch-about__media::after { content: ""; position: absolute; inset: 12px; border: var(--border-gold); border-radius: calc(var(--radius-lg) - 8px); pointer-events: none; }

/* Bulleted lists */
.msch-list { list-style: none; margin: var(--space-3) 0 0; padding: 0; }
.msch-list li { position: relative; padding-left: 1.75rem; margin-bottom: var(--space-2); max-width: 60ch; }
.msch-list li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 9px; height: 9px; border-radius: 999px; background: var(--color-kintsugi-gold); }

/* Steps */
.msch-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-3); width: 100%; margin-top: var(--space-5); position: relative; }
.msch-step { padding: var(--space-3); position: relative; z-index: 1; }
.msch-step__num {
  display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
  border-radius: 999px; border: var(--border-gold); background: var(--color-warm-ivory);
  color: var(--color-kintsugi-gold); font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: var(--space-2);
}
.msch-step h3 { font-size: var(--font-size-h4); margin: 0 0 var(--space-1); }
@media (min-width: 901px) {
  .msch-steps::before { content: ""; position: absolute; top: calc(var(--space-3) + 23px); left: 12%; right: 12%; height: 1px;
    background: repeating-linear-gradient(90deg, rgba(199,154,59,0.5) 0 8px, transparent 8px 16px); z-index: 0; }
}

/* Fees */
.msch-fees { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-3); width: 100%; margin: var(--space-5) 0 var(--space-4); }
.msch-fee { text-align: center; padding: var(--space-4) var(--space-3); }
.msch-fee h3 { font-size: var(--font-size-h4); margin: 0; }
.msch-fee__price { font-family: var(--font-heading); font-size: var(--font-size-h2); color: var(--color-kintsugi-gold); line-height: 1; margin: var(--space-2) 0 var(--space-1); }
.msch-fee__from { font-size: var(--font-size-sm); color: var(--color-warm-grey); margin: 0; }

/* Testimonials + articles */
.testimonial-card .quote-block { max-width: none; }
.testimonial-card .quote-block::before {
  content: "\201C"; font-family: var(--font-heading); font-size: 3rem; line-height: 0.6;
  color: var(--color-kintsugi-gold); display: block; margin-bottom: 0.1em;
}
.msch-articles { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-4); width: 100%; margin-top: var(--space-5); }
.msch-article h3 { font-size: var(--font-size-h4); margin: var(--space-2) 0; }
.msch-article__media { width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-md); background: linear-gradient(160deg, var(--color-mist-blue), var(--color-soft-sage)); }

/* Centred headings / leads / notes */
.msch-lead { max-width: 720px; margin: 0 auto var(--space-3); text-align: center; }
.msch-note { max-width: 68ch; margin: var(--space-4) auto 0; text-align: center; font-size: var(--font-size-sm); color: var(--color-warm-grey); }
.msch-center { text-align: center; }

/* CTA panel copy centred */
.cta-panel .body-large { margin-inline: auto; }
.cta-panel .eyebrow, .msch-eyebrow-center { justify-content: center; }

/* Kintsugi refinements */
.eyebrow { display: inline-flex; align-items: center; gap: 0.75em; }
.eyebrow::before { content: ""; width: 2rem; height: 1px; background: var(--color-kintsugi-gold); flex: none; }
.kintsugi-svg { display: block; width: min(300px, 80%); height: auto; margin: var(--space-3) 0; color: var(--color-kintsugi-gold); }
.kintsugi-svg--center { margin-inline: auto; }
.kintsugi-svg path { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; }
.kintsugi-svg .kintsugi-branch { stroke-width: 1; opacity: 0.6; }
.service-card { position: relative; overflow: hidden; }
.service-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-kintsugi-gold), transparent); transform: scaleX(0); transform-origin: center; transition: transform 320ms ease-out; }
.service-card:hover::before { transform: scaleX(1); }

/* Hero entrance (safe, load-triggered) */
@media (prefers-reduced-motion: no-preference) {
  .msch-hero__copy > * { animation: mscFadeUp 700ms ease-out both; }
  .msch-hero__copy > *:nth-child(2){animation-delay:80ms;} .msch-hero__copy > *:nth-child(3){animation-delay:160ms;}
  .msch-hero__copy > *:nth-child(4){animation-delay:240ms;} .msch-hero__copy > *:nth-child(5){animation-delay:320ms;}
}
@keyframes mscFadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* Responsive */
@media (max-width: 900px) {
  .msch-hero, .msch-story, .msch-about { grid-template-columns: 1fr; }
  .msch-hero__media, .msch-about__media { aspect-ratio: 16/10; order: -1; }
  .msch-cards4, .msch-fees, .msch-steps { grid-template-columns: repeat(2,1fr); }
  .msch-cards3, .msch-articles, .msch-reassure, .msch-cards2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .msch-cards4, .msch-fees, .msch-steps { grid-template-columns: 1fr; }
}

/* Dark-band button + panel refinements */
.msch-band--dark .button-primary,
.cta-panel .button-primary {
  background-color: var(--color-kintsugi-gold);
  border-color: var(--color-kintsugi-gold);
  color: var(--color-midnight);
}
.msch-band--dark .button-primary:hover,
.msch-band--dark .button-primary:focus-visible,
.cta-panel .button-primary:hover,
.cta-panel .button-primary:focus-visible {
  background-color: var(--color-warm-ivory);
  border-color: var(--color-warm-ivory);
  color: var(--color-midnight);
}
.msch-band--dark .cta-panel {
  background-color: var(--color-deep-blue);
  border: var(--border-gold);
}

/* =====================================================================
   Header — warm ivory, brand pill CTA, sticky blur
   ===================================================================== */
.ct-header [data-row] {
  background-color: rgba(247, 242, 232, 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 50, 77, 0.10);
}
.ct-header .ct-menu-link,
.ct-header .ct-label {
  font-family: var(--font-body);
  color: var(--color-midnight);
  font-weight: 500;
}
.ct-header .ct-menu-link:hover,
.ct-header .current-menu-item > .ct-menu-link {
  color: var(--color-kintsugi-gold);
}
.ct-header .ct-button,
.ct-header [data-id="button"] .ct-button {
  background-color: var(--color-midnight) !important;
  color: var(--color-white) !important;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  padding: 12px 22px;
  transition: background-color 220ms ease-out, color 220ms ease-out;
}
.ct-header .ct-button:hover,
.ct-header [data-id="button"] .ct-button:hover {
  background-color: var(--color-kintsugi-gold) !important;
  color: var(--color-midnight) !important;
}
.ct-header .ct-icon, .ct-header .ct-toggle { color: var(--color-midnight); }
.ct-panel-inner, .ct-panel-content { background-color: var(--color-warm-ivory); }
#offcanvas .ct-menu-link { color: var(--color-midnight); font-family: var(--font-body); }

/* =====================================================================
   Footer — midnight band, gold accents, 4 columns
   ===================================================================== */
.ct-footer [data-row="middle"] {
  background-color: var(--color-midnight);
  color: rgba(247, 242, 232, 0.85);
  padding-block: var(--space-6);
}
.ct-footer [data-row="middle"] .widget-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-h4);
  color: var(--color-warm-ivory);
  margin-bottom: var(--space-2);
  padding-bottom: var(--space-1);
  position: relative;
}
.ct-footer [data-row="middle"] .widget-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 2rem; height: 1px;
  background: var(--color-kintsugi-gold);
}
.ct-footer [data-row="middle"] a {
  color: var(--color-soft-gold);
  text-decoration: none;
  transition: color 200ms ease-out;
}
.ct-footer [data-row="middle"] a:hover { color: var(--color-white); }
.ct-footer [data-row="middle"] ul { list-style: none; margin: 0; padding: 0; }
.ct-footer [data-row="middle"] ul li { margin-bottom: 0.6em; }
.ct-footer [data-row="middle"] p { color: rgba(247, 242, 232, 0.85); font-size: var(--font-size-sm); line-height: 1.7; }
.msc-footer-logo img {
  width: 110px; height: auto;
  border-radius: var(--radius-md);
}
.msc-footer-logo { margin-bottom: var(--space-2); }
.ct-footer [data-row="bottom"] {
  background-color: #10253B;
  border-top: 1px solid rgba(199, 154, 59, 0.35);
  color: rgba(247, 242, 232, 0.65);
  text-align: center;
}
.ct-footer [data-row="bottom"] p {
  font-size: var(--font-size-xs);
  color: rgba(247, 242, 232, 0.65);
  max-width: 90ch;
  margin: 0.5em auto;
}
.ct-footer [data-row="bottom"] a { color: var(--color-soft-gold); }
.ct-footer [data-row="bottom"] a:hover { color: var(--color-white); }
.msc-emergency {
  font-style: italic;
  opacity: 0.9;
  padding-top: var(--space-2);
}

/* Kintsugi bowl image in the story section */
.msch-story__img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-md);
  border: var(--border-gold);
  box-shadow: var(--shadow-card);
  margin-top: var(--space-3);
  display: block;
}

/* Footer background enforcement (beats Blocksy row backgrounds) */
.ct-footer,
.ct-footer [data-row="middle"] {
  background-color: var(--color-midnight) !important;
  background-image: none !important;
}
.ct-footer [data-row="bottom"] {
  background-color: #10253B !important;
  background-image: none !important;
}
.ct-footer .widget-title {
  font-family: var(--font-heading);
  color: var(--color-warm-ivory);
}
.ct-footer [data-row="bottom"] .widget-title { font-size: var(--font-size-sm); letter-spacing: 0.08em; text-transform: uppercase; color: rgba(247,242,232,0.6); }

/* Media frames: fill the frame and keep faces (upper part) in view */
.msch-hero__media, .msch-about__media { align-items: stretch; justify-content: stretch; }
.msch-hero__media img,
.msch-about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  margin: 0;
}

/* Mobile header: same warm ivory as desktop */
.ct-header [data-row],
.ct-header [data-device="mobile"] [data-row] {
  background-color: rgba(247, 242, 232, 0.96) !important;
  background-image: none !important;
}
.ct-header .ct-icon,
.ct-header svg,
.ct-header .ct-toggle svg {
  color: var(--color-midnight);
  fill: currentColor;
}

/* Timeline (About page) */
.msch-timeline { margin-top: var(--space-3); }
.msch-tl-item {
  position: relative;
  padding: 0 0 var(--space-3) var(--space-4);
  border-left: 1px solid rgba(199, 154, 59, 0.45);
}
.msch-tl-item::before {
  content: "";
  position: absolute;
  left: -6px; top: 6px;
  width: 11px; height: 11px;
  border-radius: 999px;
  background: var(--color-kintsugi-gold);
}
.msch-tl-item:last-child { padding-bottom: 0; }
.msch-tl-when {
  font-size: var(--font-size-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-kintsugi-gold);
  margin: 0 0 4px;
}
.msch-tl-item h3 { font-size: var(--font-size-h4); margin: 0 0 var(--space-1); }
.msch-tl-where { display: block; font-family: var(--font-body); font-size: var(--font-size-sm); color: var(--color-warm-grey); font-weight: 400; margin-top: 2px; }
.msch-tl-item p { margin: 0; max-width: 55ch; }

/* Framed inline photos (About) */
.msch-photo {
  width: 100%;
  border-radius: var(--radius-md);
  border: var(--border-gold);
  box-shadow: var(--shadow-soft);
  margin-top: var(--space-4);
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center 25%;
}
.msch-photo--wide { aspect-ratio: 21/9; object-position: center; }

/* Fee cards (Pricing page) */
.msch-feecard h3 { font-size: var(--font-size-h4); margin: 0 0 2px; }
.msch-feecard > .msch-fee__from { margin-bottom: var(--space-3); }
.msch-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-2);
  padding: 0.65em 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: var(--font-size-sm);
}
.msch-price-row:last-of-type { border-bottom: 0; }
.msch-price-row strong {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-kintsugi-gold);
  white-space: nowrap;
}


/* Homepage article cards: featured images */
.msch-article__media { overflow: hidden; }
.msch-article__media img { width: 100%; height: 100%; object-fit: cover; display: block; }


/* ---- Floating WhatsApp widget ---- */
.msch-wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.msch-wa-float__label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-midnight);
  background: var(--color-cream);
  border: var(--border-gold);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1rem;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.msch-wa-float:hover .msch-wa-float__label,
.msch-wa-float:focus-visible .msch-wa-float__label {
  opacity: 1;
  transform: translateX(0);
}
.msch-wa-float__btn {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--color-midnight);
  border: 1.5px solid var(--color-kintsugi-gold);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(23, 50, 77, 0.28);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.msch-wa-float__btn::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(199, 154, 59, 0.55);
  animation: msch-wa-pulse 3.2s ease-out infinite;
  pointer-events: none;
}
.msch-wa-float__btn svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: none;
  stroke: var(--color-soft-gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.25s ease;
}
.msch-wa-float:hover .msch-wa-float__btn,
.msch-wa-float:focus-visible .msch-wa-float__btn {
  background: var(--color-kintsugi-gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(23, 50, 77, 0.32);
}
.msch-wa-float:hover .msch-wa-float__btn svg,
.msch-wa-float:focus-visible .msch-wa-float__btn svg {
  stroke: var(--color-midnight);
}
@keyframes msch-wa-pulse {
  0% { transform: scale(0.82); opacity: 0.8; }
  70% { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .msch-wa-float__btn::after { animation: none; opacity: 0; }
  .msch-wa-float__label, .msch-wa-float__btn, .msch-wa-float__btn svg { transition: none; }
}
@media (max-width: 689px) {
  .msch-wa-float { right: 1rem; bottom: 1rem; }
  .msch-wa-float__label { display: none; }
  .msch-wa-float__btn { width: 3.25rem; height: 3.25rem; }
}


/* Blog archive cards: readable type on the midnight panel */
.entry-card.card-content .entry-title,
.entry-card.card-content .entry-title a {
  color: var(--color-warm-ivory) !important;
}
.entry-card.card-content .entry-title a:hover {
  color: var(--color-soft-gold) !important;
}
.entry-card.card-content .entry-meta,
.entry-card.card-content .entry-meta a,
.entry-card.card-content .entry-excerpt {
  color: rgba(247, 242, 232, 0.78) !important;
}
.entry-card.card-content .entry-meta a:hover,
.entry-card.card-content .entry-button {
  color: var(--color-soft-gold) !important;
}

.entry-card.card-content .entry-meta a {
  color: var(--color-soft-gold) !important;
}
.entry-card.card-content .entry-meta a:hover {
  color: var(--color-warm-ivory) !important;
}
