/* ==========================================================================
   Body Language by Mandz — design system
   Quiet-luxury aesthetic clinic: silk ivory, blush + peach, brand black.
   Palette taken from Amanda's business card (card.jpg).
   ========================================================================== */

:root {
  --brand: #2b2627;
  --brand-bright: #4a4243;
  --brand-deep: #201e1f;
  --brand-ink: #171415;
  --blush-tint: #f9e4e9;
  --blush: #f7dde8;
  --blush-soft: #fcf1f4;
  --peach: #f3c2b1;
  --peach-deep: #eab294;
  --bronze: #b3805f;
  --bronze-soft: #dcb99d;
  --bronze-pale: #f3e4d7;
  --ivory: #faf6f2;
  --cream: #f4ebe4;
  --paper: #fffdfb;
  --ink: #262223;
  --muted: #756a66;
  --line: rgba(32, 30, 31, 0.16);
  --line-soft: rgba(38, 34, 35, 0.08);

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;

  --radius-lg: 5px;
  --radius-md: 5px;
  --radius-pill: 5px;
  --shadow-soft: 0 18px 50px -18px rgba(51, 40, 36, 0.2);
  --shadow-card: 0 10px 34px -16px rgba(51, 40, 36, 0.16);
  --ease-lux: cubic-bezier(0.22, 0.8, 0.28, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 340;
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 520;
  line-height: 1.12;
  color: inherit;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; }

a { color: var(--brand); text-decoration: none; }

::selection { background: var(--peach); color: var(--brand-deep); }

.container {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
}

.section {
  padding-block: clamp(4.2rem, 9vw, 7.5rem);
}

.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }

/* --------------------------------------------------------------------------
   Shared typographic atoms
   -------------------------------------------------------------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: '';
  width: 2.4rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: '';
  width: 2.4rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.section-head { max-width: 46rem; margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.section-head--center { margin-inline: auto; text-align: center; }

/* variant for headlines that should stay on a single line on desktop */
.section-head--wide { max-width: none; }
.section-head--wide h2 { text-wrap: nowrap; }

@media (max-width: 900px) {
  .section-head--wide h2 { text-wrap: balance; }
}

.section-head h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.15rem);
  letter-spacing: -0.01em;
}

.section-head .lead { color: var(--muted); font-size: 1.06rem; margin-bottom: 0; }

.serif-italic { font-family: var(--font-display); font-style: italic; font-weight: 480; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 480;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.35s var(--ease-lux), box-shadow 0.35s var(--ease-lux),
    background-color 0.35s, color 0.35s, border-color 0.35s;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--brand);
  color: var(--ivory);
  box-shadow: 0 14px 30px -14px rgba(32, 30, 31, 0.55);
}
.btn-primary:hover { background: var(--brand-bright); color: var(--ivory); }

.btn-gold {
  background: var(--bronze);
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(179, 128, 95, 0.6);
}
.btn-gold:hover { background: #c08e6c; color: #fff; }

.btn-ghost {
  border-color: rgba(32, 30, 31, 0.35);
  color: var(--brand);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--brand); background: rgba(32, 30, 31, 0.05); color: var(--brand); }

.btn-light {
  background: var(--ivory);
  color: var(--brand-deep);
}
.btn-light:hover { background: #fff; color: var(--brand); }

.btn-ghost-light {
  border-color: rgba(250, 245, 239, 0.45);
  color: var(--ivory);
  background: transparent;
}
.btn-ghost-light:hover { border-color: var(--ivory); background: rgba(250, 245, 239, 0.08); color: var(--ivory); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  border-bottom: 1px solid transparent;
  transition: gap 0.3s var(--ease-lux), border-color 0.3s;
}
.text-link:hover { gap: 0.8rem; border-color: currentColor; }
.text-link::after { content: '→'; font-size: 1rem; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 60;
  transition: background-color 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 1.05rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--brand-deep);
  transition: color 0.4s;
}

.brand-mark {
  display: block;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 550;
  letter-spacing: 0.03em;
}

.brand-name small {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 450;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--bronze);
  transition: color 0.4s;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  margin-left: auto;
}

/* semantic list markup, laid out by the nav's own flex context */
.main-nav ul { display: contents; list-style: none; margin: 0; padding: 0; }
.main-nav li { display: contents; }

.main-nav a {
  font-size: 0.8rem;
  font-weight: 440;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(38, 34, 35, 0.82);
  padding-block: 0.4rem;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--brand);
  border-color: var(--bronze);
}

.header-cta { margin-left: 0.4rem; padding: 0.72rem 1.6rem; }

/* scrolled state */
.site-header.scrolled {
  background: rgba(250, 245, 239, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-soft), 0 12px 32px -24px rgba(24, 21, 22, 0.35);
}

.site-header.scrolled .brand { color: var(--brand-deep); }
.site-header.scrolled .brand-name small { color: var(--bronze); }
.site-header.scrolled .main-nav a { color: var(--ink); }
.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav a[aria-current="page"] { color: var(--brand); border-color: var(--brand); }

/* mobile toggle */
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(32, 30, 31, 0.35);
  border-radius: var(--radius-pill);
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: border-color 0.4s;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1.6px;
  background: var(--brand-deep);
  transform: translateX(-50%);
  transition: transform 0.35s var(--ease-lux), background 0.4s, top 0.35s;
}

.nav-toggle span { top: 50%; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.site-header.scrolled .nav-toggle { border-color: rgba(32, 30, 31, 0.4); }
.site-header.scrolled .nav-toggle span,
.site-header.scrolled .nav-toggle span::before,
.site-header.scrolled .nav-toggle span::after { background: var(--brand); }

/* open mobile menu sits on a charcoal overlay — flip header chrome to light,
   also when combined with .scrolled (hence the .site-header in the selector) */
body.nav-open .site-header {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.nav-open .site-header .brand { color: var(--ivory); }
body.nav-open .site-header .brand-name small { color: var(--bronze-soft); }
body.nav-open .site-header .nav-toggle { border-color: rgba(250, 245, 239, 0.4); }
body.nav-open .site-header .nav-toggle span { background: transparent; }
body.nav-open .site-header .nav-toggle span::before { top: 0; transform: translateX(-50%) rotate(45deg); }
body.nav-open .site-header .nav-toggle span::after { top: 0; transform: translateX(-50%) rotate(-45deg); }
body.nav-open .site-header .nav-toggle span::before,
body.nav-open .site-header .nav-toggle span::after { background: var(--ivory); }

@media (max-width: 920px) {
  .nav-toggle { display: block; }

  .main-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    background: linear-gradient(160deg, var(--brand-ink), var(--brand-deep));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease-out;
    will-change: opacity;
    z-index: -1;
  }

  .main-nav a { font-size: 1rem; color: var(--ivory) !important; }
  .main-nav .header-cta { margin: 0.6rem 0 0; }

  body.nav-open .main-nav { opacity: 1; pointer-events: auto; }
  body.nav-open { overflow: hidden; }
}

/* --------------------------------------------------------------------------
   Hero (home)
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: clamp(620px, 100svh, 920px);
  display: flex;
  align-items: center;
  color: var(--ink);
  background:
    radial-gradient(1100px 620px at 88% -12%, rgba(234, 178, 148, 0.55), transparent 62%),
    radial-gradient(900px 700px at -10% 112%, rgba(243, 194, 177, 0.8), transparent 62%),
    radial-gradient(760px 520px at 30% 8%, rgba(247, 221, 232, 0.75), transparent 65%),
    linear-gradient(158deg, #fdfaf7 0%, var(--ivory) 48%, #f6e7dd 100%);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(32, 30, 31, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.9fr;
  grid-template-areas:
    'intro figure'
    'rest  figure';
  align-items: center;
  column-gap: clamp(2.5rem, 6vw, 5rem);
  padding-block: clamp(7rem, 14vh, 9rem) clamp(3.5rem, 7vh, 5rem);
}

/* text column reads as one block: intro hugs the row boundary, rest continues it */
.hero-intro { grid-area: intro; align-self: end; }
.hero-rest { grid-area: rest; align-self: start; }

/* the visual headline is a styled <p>; the H1 is the keyword eyebrow above it */
.hero .hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 6.4vw, 5rem);
  font-weight: 480;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: inherit;
  margin: 0 0 1.2rem;
  text-wrap: balance;
}

.hero .hero-title em {
  font-style: italic;
  color: var(--bronze);
}

h1.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  line-height: 1.7;
}

/* single keyword line only where it actually fits */
@media (min-width: 921px) {
  h1.eyebrow { text-wrap: nowrap; line-height: 1.4; }
}

.hero-lead {
  max-width: 33rem;
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 2.2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.8rem; }

.hero-trust {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(1.1rem, 2.6vw, 2.4rem);
  padding-top: 1.9rem;
  border-top: 1px solid rgba(32, 30, 31, 0.14);
}

.hero-trust div { min-width: 0; }

.hero-trust div span { white-space: nowrap; }

@media (max-width: 560px) {
  .hero-trust { flex-wrap: wrap; }
}

.hero-trust div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 540;
  color: var(--brand-deep);
}

.hero-trust div span {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-figure { position: relative; justify-self: center; grid-area: figure; }

.hero-figure .frame {
  width: min(410px, 78vw);
  aspect-ratio: 4 / 5.1;
  border-radius: 999px 999px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 90px -35px rgba(63, 48, 42, 0.4);
}

.hero-figure .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.hero-figure::before {
  content: '';
  position: absolute;
  inset: -1.2rem auto auto -1.2rem;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(179, 128, 95, 0.4);
  border-radius: 999px 999px var(--radius-lg) var(--radius-lg);
  pointer-events: none;
}

.hero-figure figcaption {
  position: absolute;
  bottom: 1.6rem;
  left: -2.4rem;
  background: rgba(255, 252, 250, 0.94);
  color: var(--brand-deep);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.4rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(6px);
}

.hero-figure figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 560;
}

.hero-figure figcaption span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
}

@media (max-width: 920px) {
  /* stacked: headline first, portrait right under it, then lead + CTAs + trust */
  .hero .container {
    grid-template-columns: 1fr;
    grid-template-areas: 'intro' 'figure' 'rest';
  }
  .hero-figure { margin-block: 1.2rem 2.8rem; }
  .hero-figure .frame { width: min(320px, 72vw); }
  /* stacked layout: keep the arch and caption symmetric so the portrait reads centred */
  .hero-figure::before { inset: -0.85rem; width: auto; height: auto; }
  .hero-figure figcaption {
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 1rem);
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   Marquee ribbon
   -------------------------------------------------------------------------- */

.marquee {
  background: var(--brand-deep);
  color: var(--ivory);
  overflow: hidden;
  padding-block: 0.85rem;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.marquee span {
  font-size: 0.76rem;
  font-weight: 480;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee span::after { content: '✦'; margin-left: 3rem; opacity: 0.7; }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   Page hero (inner pages)
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 85% -20%, rgba(234, 178, 148, 0.5), transparent 62%),
    radial-gradient(700px 460px at -5% 115%, rgba(247, 221, 232, 0.8), transparent 62%),
    linear-gradient(155deg, #fdfaf7, var(--ivory) 65%, #f6e7dd);
  padding-block: clamp(8.5rem, 17vh, 11rem) clamp(3.4rem, 7vh, 5rem);
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(32, 30, 31, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  margin-bottom: 0.4rem;
}

/* long hero titles that must hold a single line on desktop */
.page-hero h1.one-line {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

@media (min-width: 1100px) {
  .page-hero h1.one-line { text-wrap: nowrap; }
}

.page-hero .lead {
  max-width: none;
  color: var(--muted);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Philosophy split
   -------------------------------------------------------------------------- */

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-style: italic;
  font-weight: 480;
  line-height: 1.25;
  color: var(--brand-deep);
  border-left: 2px solid var(--bronze);
  padding-left: 1.6rem;
  margin: 0 0 1.4rem;
}

.philosophy-copy p { color: var(--muted); }

.banner-strip {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.banner-strip img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 860px) {
  .philosophy-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Program cards
   -------------------------------------------------------------------------- */

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
  gap: 1.4rem;
}

.program-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.9rem 1.9rem;
  transition: transform 0.45s var(--ease-lux), box-shadow 0.45s var(--ease-lux),
    border-color 0.45s;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(179, 128, 95, 0.4);
}

.program-card .index {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 480;
  font-style: italic;
  color: var(--bronze-soft);
  line-height: 1;
  margin-bottom: 1.1rem;
}

.program-card h3 { font-size: 1.5rem; margin-bottom: 0.35rem; }

.program-card .subtitle {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1rem;
}

.program-card p { color: var(--muted); font-size: 0.97rem; }

.program-card .goal {
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.92rem;
  color: var(--brand-deep);
}

.program-card .goal strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 550;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.3rem;
}

.included-list {
  list-style: none;
  margin: 0 0 1.3rem;
  padding: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.included-list li {
  padding: 0.42rem 0 0.42rem 1.5rem;
  position: relative;
  border-bottom: 1px dashed var(--line-soft);
}

.included-list li:last-child { border-bottom: 0; }

.included-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0.42rem;
  color: var(--bronze);
  font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   Service category cards & rows
   -------------------------------------------------------------------------- */

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 1.5rem;
}

/* single-row variant: every category in one line on desktop */
@media (min-width: 1100px) {
  .category-grid--row {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    grid-template-columns: none;
    gap: 0.75rem;
  }

  .category-grid--row .category-card {
    min-height: 330px;
  }

  .category-grid--row .category-card .card-body {
    padding: 1.1rem 0.85rem 0.95rem;
  }

  .category-grid--row .category-card h3 {
    font-size: 1.02rem;
    margin-bottom: 0.4rem;
  }

  .category-grid--row .category-card .tagline { display: none; }

  .category-grid--row .category-card .count {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--brand-deep);
  color: var(--ivory);
  min-height: 350px;
  isolation: isolate;
  transition: transform 0.45s var(--ease-lux), box-shadow 0.45s var(--ease-lux);
}

.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.8s var(--ease-lux);
}

.category-card:hover img { transform: scale(1.06); }

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(185deg, rgba(24, 21, 22, 0.08) 30%, rgba(24, 21, 22, 0.88) 88%);
}

.category-card--plain {
  background:
    radial-gradient(360px 220px at 90% -10%, rgba(179, 128, 95, 0.35), transparent 65%),
    linear-gradient(160deg, #3a3132, var(--brand-deep));
}

.category-card .card-body {
  margin-top: auto;
  padding: 1.7rem 1.7rem 1.6rem;
}

.category-card h3 { font-size: 1.6rem; margin-bottom: 0.3rem; color: var(--ivory); }

.category-card .tagline {
  color: rgba(250, 245, 239, 0.78);
  font-size: 0.93rem;
  margin-bottom: 0.9rem;
}

.category-card .count {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-soft);
}

/* service rows (category detail) */
.svc-list { display: grid; gap: 1.2rem; }

.svc-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem 2.4rem;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 1.9rem 2.1rem;
  transition: border-color 0.4s, box-shadow 0.4s var(--ease-lux);
}

.svc-row:hover { border-color: rgba(179, 128, 95, 0.45); box-shadow: var(--shadow-card); }

.svc-row h3 { font-size: 1.45rem; margin-bottom: 0.4rem; }
.svc-row .desc { color: var(--muted); font-size: 0.98rem; margin-bottom: 0.9rem; }

.svc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.svc-meta span strong {
  font-weight: 550;
  color: var(--brand-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
  display: block;
}

.svc-price {
  text-align: right;
  min-width: 12rem;
  align-self: start;
}

.svc-price .label {
  font-size: 0.66rem;
  font-weight: 550;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bronze);
}

.svc-price .amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 550;
  color: var(--brand-deep);
  line-height: 1.25;
}

.svc-price .note { display: block; font-size: 0.8rem; color: var(--muted); }

.svc-price .svc-book {
  margin-top: 0.85rem;
  padding: 0.6rem 1.4rem;
  font-size: 0.72rem;
}

.chip-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.4rem 0 0.6rem; padding: 0; list-style: none; }

.chip-list li {
  font-size: 0.78rem;
  color: var(--brand-deep);
  background: var(--blush-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0.32rem 0.9rem;
}

@media (max-width: 700px) {
  .svc-row { grid-template-columns: 1fr; }
  .svc-price { text-align: left; }
}

/* --------------------------------------------------------------------------
   Service detail page
   -------------------------------------------------------------------------- */

.svc-detail-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (max-width: 880px) {
  .svc-detail-grid { grid-template-columns: 1fr; }
  .svc-side { order: -1; position: static; }
}

.svc-detail-sub { font-size: 1.6rem; margin-bottom: 1rem; }

.svc-body p { color: #4a4340; font-size: 1.05rem; }
.svc-body h2 { font-size: 1.6rem; margin: 2.1rem 0 0.7rem; }
.svc-body h3 { font-size: 1.2rem; margin: 1.6rem 0 0.45rem; }
.svc-body a { border-bottom: 1px solid rgba(179, 128, 95, 0.4); }
.svc-body a:hover { border-color: var(--bronze); }
.svc-body > p:first-child { font-size: 1.12rem; }

.chip-list--lg li { font-size: 0.88rem; padding: 0.5rem 1.1rem; }

.svc-facts { display: grid; gap: 0.9rem; margin: 2rem 0; }

.svc-facts div {
  border-left: 2px solid var(--bronze);
  padding-left: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.svc-facts strong {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}

.practitioner-card {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  background: var(--blush-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  margin-top: 2.4rem;
}

.practitioner-card img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.practitioner-card h3 { font-size: 1.35rem; margin-bottom: 0.25rem; }
.practitioner-card p { color: var(--muted); font-size: 0.93rem; margin-bottom: 0.5rem; }

@media (max-width: 560px) {
  .practitioner-card { flex-direction: column; align-items: flex-start; }
}

.faq-list { display: grid; gap: 0.7rem; }

/* homepage FAQ: constrained, centred column */
.faq-list--home { max-width: 52rem; margin-inline: auto; }
.faq-list--home .faq-item { background: var(--paper); }

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 2.8rem 1rem 1.3rem;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--brand-deep);
  position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary h3 { display: inline; font: inherit; margin: 0; color: inherit; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bronze);
  font-size: 1.15rem;
}

.faq-item[open] summary::after { content: '–'; }

.faq-item p { padding: 0 1.3rem 1.1rem; margin: 0; color: var(--muted); font-size: 0.94rem; }

@media (min-width: 881px) {
  .svc-side { position: sticky; top: 6.5rem; }
}

.svc-side-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.8rem;
  display: grid;
  gap: 0.7rem;
  text-align: center;
}

.svc-side-card .label {
  font-size: 0.66rem;
  font-weight: 550;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bronze);
}

.svc-side-card .amount {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 550;
  color: var(--brand-deep);
  line-height: 1.15;
}

.svc-side-card .note { font-size: 0.8rem; color: var(--muted); }
.svc-side-card .btn { width: 100%; }
.svc-side-note { font-size: 0.8rem; color: var(--muted); margin: 0.3rem 0 0; }
.svc-side-gallery { justify-self: center; margin-top: 0.4rem; font-size: 0.7rem; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr));
  gap: 1rem;
}

.related-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  transition: border-color 0.3s, transform 0.35s var(--ease-lux), box-shadow 0.35s var(--ease-lux);
}

.related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(179, 128, 95, 0.45);
  box-shadow: var(--shadow-card);
}

.related-card h3,
.related-card h4 { font-size: 1.15rem; font-weight: 520; margin-bottom: 0.2rem; color: var(--ink); }
.related-card span { font-size: 0.8rem; color: var(--bronze); }

/* all-treatments card grid on the services index */
.svc-group-head { font-size: 1.5rem; margin: 2.4rem 0 1rem; }
.svc-group-head a { color: inherit; }
.svc-group-head a:hover { color: var(--brand); }
.svc-index-grid { margin-bottom: 0.6rem; }

.svc-row h3 a { color: inherit; }
.svc-row h3 a:hover { color: var(--brand); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }

.svc-price .svc-more { margin-top: 0.7rem; font-size: 0.68rem; }

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.4rem;
}

.filter-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--brand-deep);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.filter-btn:hover { border-color: var(--brand); }

.filter-btn.active {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--ivory);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: 1.2rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: zoom-in;
  background: var(--cream);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-lux);
}

.gallery-card:hover img { transform: scale(1.05); }

.gallery-card .tag {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  max-width: calc(100% - 1.8rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: rgba(24, 21, 22, 0.72);
  color: var(--ivory);
  backdrop-filter: blur(4px);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.9rem;
}

.ba-panel {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: var(--blush-soft);
  padding: 0.6rem;
  box-shadow: var(--shadow-card);
}

.gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(200px, 52vw, 252px);
  gap: 0.6rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* swipe on mobile; all five fit on desktop */
}

@media (min-width: 1000px) {
  /* exactly five tiles fill the panel — no cut-off card */
  .gallery-strip { grid-auto-columns: calc((100% - 4 * 0.6rem) / 5); }
}

.gallery-strip::-webkit-scrollbar { display: none; }

.ba-item {
  margin: 0;
  scroll-snap-align: start;
  cursor: zoom-in;
}

.ba-item .ba-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream);
}

.ba-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-lux);
}

.ba-item:hover img { transform: scale(1.05); }

.ba-item figcaption {
  padding: 0.6rem 0.2rem 0.25rem;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.strip-controls {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  margin-bottom: 1.2rem;
}

.strip-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--brand-deep);
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease-lux);
}

.strip-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--ivory);
  transform: translateY(-2px);
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(23, 20, 21, 0.92);
  padding: 2rem;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: min(920px, 92vw);
  max-height: 86vh;
  border-radius: var(--radius-md);
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, 0.9);
}

.lightbox .close {
  position: absolute;
  top: 1.4rem;
  right: 1.8rem;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
}

.lightbox .close:hover { opacity: 1; }

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(250, 245, 239, 0.35);
  border-radius: var(--radius-pill);
  background: rgba(24, 21, 22, 0.55);
  color: var(--ivory);
  font-size: 1.15rem;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}

.lb-nav:hover { background: var(--brand); border-color: var(--brand); }
.lb-prev { left: 1.4rem; }
.lb-next { right: 1.4rem; }

@media (max-width: 640px) {
  .lb-prev { left: 0.5rem; }
  .lb-next { right: 0.5rem; }
}

.lightbox figcaption {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(250, 245, 239, 0.85);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 1.4rem;
}

.testimonial-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 2rem 1.9rem;
}

.testimonial-card .stars { color: var(--bronze); letter-spacing: 0.2em; margin-bottom: 0.9rem; }

.testimonial-card blockquote {
  margin: 0 0 1.2rem;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--brand-deep);
}

.testimonial-card .who { font-size: 0.85rem; color: var(--muted); }
.testimonial-card .who strong { color: var(--ink); font-weight: 500; }

/* --------------------------------------------------------------------------
   Journal
   -------------------------------------------------------------------------- */

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 1.5rem;
}

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.45s var(--ease-lux), box-shadow 0.45s var(--ease-lux);
}

.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }

.post-card .thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    radial-gradient(340px 200px at 85% -10%, rgba(179, 128, 95, 0.4), transparent 60%),
    linear-gradient(155deg, #3a3132, var(--brand-deep));
}

.post-card .thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card .body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; flex: 1; }

.post-card time {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.6rem;
}

.post-card h3 { font-size: 1.42rem; }
.post-card h3 a { color: inherit; }
.post-card h3 a:hover { color: var(--brand); }

.post-card .excerpt { color: var(--muted); font-size: 0.95rem; flex: 1; }

/* article */
.article {
  max-width: none;
}

.article p { color: #4a4340; font-size: 1.07rem; }
.article h2 { font-size: 1.75rem; margin: 2.4rem 0 0.8rem; }
.article h3 { font-size: 1.25rem; margin: 1.8rem 0 0.5rem; }
.article a { border-bottom: 1px solid rgba(179, 128, 95, 0.4); }
.article a:hover { border-color: var(--bronze); }

.article .meta {
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   About page
   -------------------------------------------------------------------------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.about-portrait {
  position: sticky;
  top: 7rem;
}

.about-portrait .frame {
  border-radius: 999px 999px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-portrait .frame img { width: 100%; object-fit: cover; }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { position: static; max-width: 320px; margin-inline: auto; }
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 1rem;
}

.cred-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 1.05rem 1.3rem;
  font-size: 0.94rem;
  color: var(--brand-deep);
}

.cred-card::before {
  content: '✦';
  color: var(--bronze);
  font-size: 0.9rem;
}

/* timeline */
.timeline {
  position: relative;
  margin: 0;
  padding: 0 0 0 1.9rem;
  list-style: none;
  border-left: 1px solid var(--line);
}

.timeline li { position: relative; padding-bottom: 1.9rem; }
.timeline li:last-child { padding-bottom: 0; }

.timeline li::before {
  content: '';
  position: absolute;
  left: calc(-1.9rem - 5px);
  top: 0.5rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bronze);
  box-shadow: 0 0 0 4px var(--ivory), 0 0 0 5px var(--bronze-soft);
}

.timeline .when {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 560;
  font-style: italic;
  color: var(--brand);
}

.timeline p { color: var(--muted); margin-bottom: 0; font-size: 0.98rem; }

/* --------------------------------------------------------------------------
   CTA band, newsletter
   -------------------------------------------------------------------------- */

.cta-band {
  position: relative;
  color: var(--ivory);
  background:
    radial-gradient(800px 400px at 15% -20%, rgba(179, 128, 95, 0.35), transparent 60%),
    linear-gradient(150deg, var(--brand-ink), var(--brand-deep) 60%, #3a3132);
  border-radius: var(--radius-lg);
  padding: clamp(2.8rem, 6vw, 4.5rem);
  text-align: center;
  overflow: hidden;
}

.cta-band h2 { font-size: clamp(2rem, 4.4vw, 3rem); }

.cta-band p {
  max-width: 36rem;
  margin-inline: auto;
  color: rgba(250, 245, 239, 0.8);
}

.cta-band .actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.9rem;
}

.newsletter {
  background: var(--blush-soft);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.newsletter-inner h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-bottom: 0.3rem; }
.newsletter-inner p { color: var(--muted); margin: 0; }

.newsletter-form {
  display: flex;
  gap: 0.6rem;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.4rem 0.4rem 1.4rem;
  box-shadow: var(--shadow-card);
}

.newsletter-form input[type='email'] {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  min-width: 0;
}

@media (max-width: 780px) {
  .newsletter-inner { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 3.6rem);
  align-items: start;
}

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

.form-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.7rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-card);
}

.form-card h2 { font-size: 1.9rem; margin-bottom: 0.3rem; }
.form-card > p { color: var(--muted); font-size: 0.97rem; }

.field { margin-bottom: 1.15rem; }

.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 520;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 0.45rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  padding: 0.85rem 1.1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.field textarea { resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(32, 30, 31, 0.08);
}

.field .errors {
  color: #a3502e;
  font-size: 0.84rem;
  margin-top: 0.35rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.info-card {
  background: var(--brand-deep);
  color: var(--ivory);
  border-radius: var(--radius-lg);
  padding: clamp(1.7rem, 4vw, 2.4rem);
}

.info-card h3 { color: var(--ivory); font-size: 1.6rem; }

.info-card dl { margin: 0; }

.info-card dt {
  font-size: 0.68rem;
  font-weight: 550;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  margin-top: 1.3rem;
}

.info-card dd {
  margin: 0.25rem 0 0;
  color: rgba(250, 245, 239, 0.88);
}

.info-card a { color: var(--ivory); border-bottom: 1px solid rgba(250, 245, 239, 0.35); }
.info-card a:hover { border-color: var(--ivory); }

.info-card .actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }

/* buttons inside the dark card must keep their own colors and borders,
   not the card's text-link underline styling */
.info-card .actions a { border-bottom-color: transparent; }
.info-card .actions .btn-light { color: var(--brand-deep); }
.info-card .actions .btn-light:hover { color: var(--brand); }
.info-card .actions .btn-gold { color: #fff; }
.info-card .actions .btn-ghost-light { color: var(--ivory); border-color: rgba(250, 245, 239, 0.45); }
.info-card .actions .btn-ghost-light:hover { border-color: var(--ivory); }

/* on phones: stack the card buttons full-width so none ever clips */
@media (max-width: 560px) {
  .info-card .actions { display: grid; grid-template-columns: 1fr; }
  .info-card .actions .btn { width: 100%; }
}

/* messages */
.flash-stack {
  position: fixed;
  top: 5.6rem;
  right: 1.4rem;
  z-index: 80;
  display: grid;
  gap: 0.6rem;
  max-width: min(380px, calc(100vw - 2.8rem));
}

.flash {
  background: var(--brand-deep);
  color: var(--ivory);
  border-left: 3px solid var(--bronze);
  border-radius: var(--radius-md);
  padding: 0.95rem 1.2rem;
  font-size: 0.92rem;
  box-shadow: var(--shadow-soft);
  animation: flash-in 0.5s var(--ease-lux);
}

.flash.error { border-left-color: #dd9a72; }

@keyframes flash-in {
  from { opacity: 0; transform: translateY(-8px); }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--brand-ink);
  color: rgba(250, 245, 239, 0.78);
  padding: clamp(3.4rem, 7vw, 5.2rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 2.4rem;
  padding-bottom: 2.8rem;
  border-bottom: 1px solid rgba(250, 245, 239, 0.12);
}

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

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.site-footer .brand { margin-bottom: 1rem; color: var(--ivory); }
.site-footer .brand-name small { color: var(--bronze-soft); }

.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 550;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  margin-bottom: 1.1rem;
}

.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }

.site-footer ul a {
  color: rgba(250, 245, 239, 0.78);
  font-size: 0.95rem;
  transition: color 0.3s;
}

.site-footer ul a:hover { color: var(--bronze-soft); }

.footer-note { font-size: 0.95rem; max-width: 26rem; }

.social-row { display: flex; gap: 0.7rem; margin-top: 1.2rem; }

.social-row a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(250, 245, 239, 0.25);
  border-radius: var(--radius-pill);
  color: rgba(250, 245, 239, 0.85);
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease-lux);
}

.social-row a:hover { border-color: var(--bronze-soft); color: var(--bronze-soft); transform: translateY(-2px); }

.social-row svg { width: 17px; height: 17px; fill: currentColor; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  padding-top: 1.8rem;
  font-size: 0.82rem;
  color: rgba(250, 245, 239, 0.5);
}

/* --------------------------------------------------------------------------
   WhatsApp floating button
   -------------------------------------------------------------------------- */

.whatsapp-fab {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 70;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-pill);
  background: #22c05a;
  color: #fff;
  box-shadow: 0 16px 40px -12px rgba(34, 192, 90, 0.65);
  transition: transform 0.35s var(--ease-lux), box-shadow 0.35s;
}

.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.05);
  color: #fff;
  box-shadow: 0 20px 46px -12px rgba(34, 192, 90, 0.75);
}

.whatsapp-fab svg { width: 26px; height: 26px; fill: currentColor; }

/* --------------------------------------------------------------------------
   Scroll reveals
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease-lux), transform 0.9s var(--ease-lux);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.in-view { opacity: 1; transform: none; }

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

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */

.bg-paper { background: var(--paper); }
.bg-cream { background: var(--cream); }
.bg-blush { background: var(--blush-soft); }
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand);
  color: var(--ivory);
  padding: 0.7rem 1.2rem;
  z-index: 100;
}

.skip-link:focus { left: 0; }
