/* ============================================================
   Aub and Bo — airy boutique treatment-room design system
   Palette: warm white / sage / soft taupe / deep bark
   ============================================================ */

:root {
  --warm-white: #FBF9F6;
  --white: #FFFFFF;
  --sage: #8A9B8E;       /* large accents / icons / backgrounds ONLY */
  --sage-dark: #5C6E60;  /* WCAG-AA small text on white */
  --taupe: #D8CFC4;
  --taupe-soft: #EDE7DF;
  --bark: #3E3831;

  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Raleway', Arial, sans-serif;

  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-soft: 0 18px 40px -22px rgba(62, 56, 49, 0.28);
  --shadow-tight: 0 8px 20px -12px rgba(62, 56, 49, 0.30);

  --dur: 450ms;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; overflow-x: clip; }
body {
  background: var(--warm-white);
  color: var(--bark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; color: var(--bark); margin: 0 0 0.5em; line-height: 1.18; }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ===== Accessibility ===== */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--bark);
  color: var(--warm-white);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
:focus-visible {
  outline: 2px solid var(--sage-dark);
  outline-offset: 3px;
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ===== Reveal-on-scroll (progressive enhancement) ===== */
html.js .reveal { opacity: 0; transform: translateY(16px); }
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
  }
}
html.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  min-height: 44px;
  padding: 0.85em 1.7em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  transform: translateY(0) scale(1);
}
@media (prefers-reduced-motion: no-preference) {
  .btn { transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background-color 180ms var(--ease); }
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn--primary { background: var(--bark); color: var(--warm-white); box-shadow: var(--shadow-tight); }
.btn--primary:hover { background: #2c2820; }

.btn--sage { background: var(--sage); color: #232922; box-shadow: var(--shadow-tight); }
.btn--sage:hover { background: #7a8c7e; }

.btn--ghost { background: transparent; border-color: var(--bark); color: var(--bark); }
.btn--ghost:hover { background: var(--bark); color: var(--warm-white); }

.btn--ghost-light { background: transparent; border-color: rgba(255,255,255,0.8); color: #fff; }
.btn--ghost-light:hover { background: rgba(255,255,255,0.14); }

.btn--light { background: var(--warm-white); color: var(--bark); }
.btn--light:hover { background: var(--white); }

.btn--lg { padding: 1em 2.1em; font-size: 1rem; }
.btn--block { width: 100%; }

/* ===== Topbar ===== */
.topbar { background: var(--bark); color: var(--taupe-soft); font-size: 0.8rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 38px; gap: 12px; }
.topbar a, .topbar span { min-height: 38px; display: inline-flex; align-items: center; }
.topbar a:hover { color: var(--taupe); }
.topbar__badge { display: none; }
@media (min-width: 640px) { .topbar__badge { display: inline-flex; } }
.topbar__badge a { display: inline-flex; align-items: center; gap: 6px; }
.topbar__badge svg { width: 14px; height: 14px; flex: 0 0 auto; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(251, 249, 246, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(62, 56, 49, 0.08);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 16px; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 1.6rem; color: var(--bark); }
.brand__sub { font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage-dark); margin-top: 3px; }

.nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(78vw, 320px);
  background: var(--warm-white);
  padding: 100px 28px 28px;
  transform: translateX(100%);
  box-shadow: -12px 0 40px rgba(62,56,49,0.15);
  z-index: 400;
}
@media (prefers-reduced-motion: no-preference) { .nav { transition: transform 320ms var(--ease); } }
.nav.is-open { transform: translateX(0); }
.nav a { display: flex; align-items: center; min-height: 44px; font-size: 1.05rem; font-weight: 600; border-bottom: 1px solid rgba(62,56,49,0.08); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--sage-dark); }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  z-index: 410;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--bark); }
@media (prefers-reduced-motion: no-preference) { .nav-toggle span { transition: transform 220ms var(--ease), opacity 220ms var(--ease); } }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-scrim { position: fixed; inset: 0; background: rgba(62,56,49,0.35); opacity: 0; pointer-events: none; z-index: 350; }
@media (prefers-reduced-motion: no-preference) { .nav-scrim { transition: opacity 260ms var(--ease); } }
.nav-scrim.is-open { opacity: 1; pointer-events: auto; }

.header__cta { display: none; }
@media (min-width: 960px) {
  .header__inner { gap: 32px; }
  .nav { position: static; flex-direction: row; height: auto; width: auto; background: transparent; padding: 0; box-shadow: none; transform: none; gap: 28px; }
  .nav a { min-height: auto; border-bottom: none; font-size: 0.92rem; }
  .nav-toggle, .nav-scrim { display: none; }
  .header__cta { display: inline-flex; }
}

/* ===== Botanical thin-line accents ===== */
.botanical { color: var(--sage); display: block; margin: 0 auto; opacity: 0.8; }
.botanical path { fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.botanical--center { text-align: center; }
.botanical--corner { position: absolute; pointer-events: none; opacity: 0.35; }

/* ===== Hero ===== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(62,56,49,0.18) 0%, rgba(62,56,49,0.52) 62%, rgba(62,56,49,0.86) 100%); }
.hero__content { position: relative; z-index: 1; color: var(--warm-white); padding-top: 150px; padding-bottom: 60px; text-align: center; margin: 0 auto; }
.hero .eyebrow { color: var(--taupe); }
.hero h1 { color: var(--white); font-size: clamp(2.3rem, 6vw, 3.6rem); max-width: 16ch; margin-left: auto; margin-right: auto; }
.hero h1 em { font-style: italic; color: var(--taupe); }
.hero__lede { color: var(--taupe-soft); max-width: 46ch; margin-left: auto; margin-right: auto; font-size: 1.08rem; }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin: 26px 0 30px; }
.hero__trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; font-size: 0.85rem; color: var(--taupe-soft); }
.hero__trust li { display: flex; align-items: center; gap: 6px; }
.hero__trust li span { color: var(--taupe); }
.hero__botanical { margin: 0 auto 14px; width: 140px; color: var(--taupe); opacity: 0.7; }

/* Base: fully visible (no-js / fallback) */
.hero--stagger > * { opacity: 1; transform: none; }
html.js .hero--stagger > * { opacity: 0; transform: translateY(16px); }
@media (prefers-reduced-motion: no-preference) {
  html.js .hero--stagger > * { animation: heroFade var(--dur) var(--ease) forwards; }
  html.js .hero--stagger > *:nth-child(1) { animation-delay: 60ms; }
  html.js .hero--stagger > *:nth-child(2) { animation-delay: 140ms; }
  html.js .hero--stagger > *:nth-child(3) { animation-delay: 220ms; }
  html.js .hero--stagger > *:nth-child(4) { animation-delay: 300ms; }
  html.js .hero--stagger > *:nth-child(5) { animation-delay: 380ms; }
  html.js .hero--stagger > *:nth-child(6) { animation-delay: 460ms; }
}
@media (prefers-reduced-motion: reduce) { html.js .hero--stagger > * { opacity: 1; transform: none; } }
@keyframes heroFade { to { opacity: 1; transform: translateY(0); } }

/* ===== Eyebrow / section headings ===== */
.eyebrow { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 0.9em; }
.eyebrow--center { text-align: center; }
.section__title { font-size: clamp(1.9rem, 4vw, 2.6rem); text-align: center; margin-bottom: 0.35em; }
.section__title--left { text-align: left; }
.section__lede { text-align: center; max-width: 60ch; margin: 0 auto 2.6em; color: #55504A; }

.section { padding: 88px 0; }
.section--alt { background: var(--taupe-soft); }
.section--taupe { background: var(--taupe); }
.section--dark { background: var(--bark); color: var(--taupe-soft); }
.section--dark .section__title, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .eyebrow { color: var(--taupe); }
.section--tight { padding: 56px 0; }

/* ===== Signature treatments trio ===== */
.grid--trio { display: grid; gap: 26px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .grid--trio { grid-template-columns: repeat(3, 1fr); } }
.service-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 30px; box-shadow: var(--shadow-soft); text-align: center; }
.service-card__icon { width: 56px; height: 56px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--taupe-soft); color: var(--sage-dark); }
.service-card h3 { font-size: 1.35rem; }
.service-card p { color: #55504A; font-size: 0.95rem; }
.service-card__price { font-family: var(--font-display); font-style: italic; color: var(--sage-dark); font-weight: 600; margin: 10px 0 4px; }
.service-card__link { display: inline-block; margin-top: 6px; font-size: 0.85rem; font-weight: 600; color: var(--sage-dark); border-bottom: 1px solid currentColor; }

/* ===== How To Book ===== */
.how-to-book { position: relative; }
.book-steps { display: grid; gap: 30px; grid-template-columns: 1fr; margin-top: 10px; counter-reset: step; }
@media (min-width: 780px) { .book-steps { grid-template-columns: repeat(3, 1fr); } }
.book-step { position: relative; text-align: center; padding: 8px 12px; }
.book-step__num {
  width: 52px; height: 52px; margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--sage);
  color: #232922;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-tight);
}
.book-step h3 { font-size: 1.15rem; margin-bottom: 0.35em; }
.book-step p { color: #55504A; font-size: 0.94rem; }
.book-steps__connector {
  display: none;
}
@media (min-width: 780px) {
  .book-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 26px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    border-top: 2px dashed var(--taupe);
  }
}
.book-callout-box {
  margin-top: 46px;
  background: var(--white);
  border: 1.5px solid var(--taupe);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.book-callout-box__eyebrow { color: var(--sage-dark); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; }
.book-callout-box h3 { font-size: 1.3rem; margin-bottom: 0.4em; }
.book-callout-box p { color: #55504A; max-width: 52ch; margin-left: auto; margin-right: auto; }
.book-callout-box__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 18px; }

/* Compact booking callout used on inner website pages */
.book-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  background: var(--white);
  border: 1.5px solid var(--taupe);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-soft);
  margin: 0 auto;
}
.book-callout__text { flex: 1 1 320px; }
.book-callout__text strong { display: block; font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 4px; color: var(--bark); }
.book-callout__text span { color: #55504A; font-size: 0.92rem; }
.book-callout__action { flex: 0 0 auto; }

/* ===== Circular crop accents ===== */
.crop-circle { border-radius: 50%; aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
.crop-frame { position: relative; max-width: 320px; margin: 0 auto; }
.crop-frame::after { content: ""; position: absolute; inset: -14px; border: 1.5px solid var(--sage); border-radius: 50%; opacity: 0.55; }

/* ===== Gallery band ===== */
.gallery { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--radius-md); aspect-ratio: 3 / 4; background: var(--taupe-soft); box-shadow: var(--shadow-tight); }
.gallery__item--wide { aspect-ratio: 4 / 3; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; }
@media (prefers-reduced-motion: no-preference) { .gallery__item img { transition: transform 420ms var(--ease); } }
.gallery__item:hover img, .gallery__item:focus-within img { transform: scale(1.03); }
.gallery__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 14px 10px;
  background: linear-gradient(0deg, rgba(62,56,49,0.78), rgba(62,56,49,0));
  color: var(--warm-white);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.03em;
  opacity: 0;
}
@media (prefers-reduced-motion: no-preference) { .gallery__caption { transition: opacity 240ms var(--ease); } }
.gallery__item:hover .gallery__caption, .gallery__item:focus-within .gallery__caption { opacity: 1; }
.gallery-cta { text-align: center; margin-top: 42px; }

/* ===== Pull quote ===== */
.pull-quote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.35rem, 3vw, 1.85rem); line-height: 1.4; color: var(--sage-dark); max-width: 28ch; }

/* ===== About Marie strip ===== */
.about-strip { display: grid; gap: 40px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 860px) { .about-strip { grid-template-columns: 0.8fr 1.2fr; } }
.about-strip__content p { color: #55504A; }
.about-strip__badge { display: inline-flex; align-items: center; gap: 8px; background: var(--taupe-soft); color: var(--sage-dark); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; padding: 8px 16px; border-radius: 999px; margin-bottom: 18px; text-transform: uppercase; }

/* ===== Reviews ===== */
.reviews { display: grid; gap: 22px; grid-template-columns: 1fr; margin-top: 10px; }
@media (min-width: 760px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
.review-card { background: var(--white); border-radius: var(--radius-md); padding: 30px 28px; box-shadow: var(--shadow-tight); }
.review-card__stars { color: var(--sage-dark); letter-spacing: 2px; margin-bottom: 12px; }
.review-card p { font-family: var(--font-display); font-style: italic; font-size: 1.12rem; color: var(--bark); }
.review-card__author { font-size: 0.85rem; font-weight: 700; color: var(--sage-dark); }
.review-card__author span { font-weight: 400; color: #7a746c; }
.review-card__note { display: block; margin-top: 10px; font-size: 0.72rem; font-weight: 700; color: #9c8a5b; text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== Instagram CTA band ===== */
.insta-band { text-align: center; }
.insta-band__handle { font-family: var(--font-display); font-style: italic; font-size: 1.6rem; color: var(--white); }
.insta-band__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 28px; }
.insta-band p.section__lede { color: var(--taupe-soft); }

/* ===== Contact methods (website only) ===== */
.contact-methods { display: grid; gap: 22px; grid-template-columns: 1fr; margin-top: 10px; }
@media (min-width: 760px) { .contact-methods { grid-template-columns: repeat(3, 1fr); } }
.contact-method { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius-lg); padding: 30px 26px; text-align: center; }
.contact-method__icon { width: 48px; height: 48px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.12); color: var(--taupe); }
.contact-method h3 { color: var(--white); font-size: 1.15rem; }
.contact-method p { color: var(--taupe-soft); font-size: 0.92rem; }
.studio-note { text-align: center; margin-top: 40px; color: var(--taupe-soft); font-size: 0.88rem; }

/* ===== Treatment menu list (website treatments page) ===== */
.menu-list { display: grid; gap: 16px; margin-top: 10px; }
.menu-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; background: var(--white); border-radius: var(--radius-md); padding: 20px 24px; box-shadow: var(--shadow-tight); }
.menu-row__name { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.menu-row__desc { color: #55504A; font-size: 0.9rem; margin-top: 2px; }
.menu-row__price { font-family: var(--font-display); font-style: italic; color: var(--sage-dark); font-weight: 600; white-space: nowrap; }
.menu-group + .menu-group { margin-top: 42px; }
.menu-note { text-align: center; margin-top: 30px; color: #7a746c; font-size: 0.88rem; }

/* ===== Page hero (website inner pages) ===== */
.page-hero { position: relative; min-height: 48vh; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(62,56,49,0.2) 0%, rgba(62,56,49,0.58) 70%, rgba(62,56,49,0.88) 100%); }
.page-hero__content { position: relative; z-index: 1; color: var(--warm-white); padding: 130px 0 44px; text-align: center; }
.page-hero h1 { color: var(--white); max-width: 20ch; margin: 0 auto 0.4em; }
.page-hero__lede { color: var(--taupe-soft); max-width: 52ch; margin: 0 auto; }
.page-hero .eyebrow { color: var(--taupe); }

/* ===== Photo placeholder tiles (used where no real client photo exists yet) ===== */
.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(155deg, var(--taupe-soft) 0%, var(--taupe) 100%);
  text-align: center;
  padding: 10px;
}
.photo-placeholder__icon { width: 28%; max-width: 52px; height: auto; color: var(--sage-dark); opacity: 0.55; }
.photo-placeholder__label { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--sage-dark); opacity: 0.8; }

/* ===== Hero / page-hero media placeholder (no client photo for this slot yet) ===== */
.hero__media--placeholder, .page-hero__media--placeholder {
  background: linear-gradient(165deg, #4E5E51 0%, var(--bark) 55%, #241F1A 100%);
  overflow: hidden;
}
.hero__media--placeholder::before, .page-hero__media--placeholder::before {
  content: "Aub & Bo";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(5rem, 20vw, 13rem);
  color: rgba(251, 249, 246, 0.06);
  white-space: nowrap;
  pointer-events: none;
}
.media-placeholder-leaf { position: absolute; color: var(--taupe); opacity: 0.4; pointer-events: none; }
.media-placeholder-leaf path { fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.media-placeholder-leaf--1 { width: 280px; bottom: -46px; left: -46px; transform: rotate(-10deg); }
.media-placeholder-leaf--2 { width: 230px; top: -18px; right: -46px; transform: rotate(16deg) scaleX(-1); }
@media (min-width: 760px) {
  .media-placeholder-leaf--1 { width: 420px; bottom: -60px; left: -60px; }
  .media-placeholder-leaf--2 { width: 340px; top: -24px; right: -60px; }
}

/* ===== Footer ===== */
.footer { background: var(--bark); color: var(--taupe-soft); padding: 48px 0 28px; }
.footer__inner { display: flex; flex-direction: column; gap: 18px; align-items: center; text-align: center; }
.footer__brand { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--white); }
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; font-size: 0.88rem; }
.footer__links a:hover { color: var(--taupe); }
.footer small { color: #a89f92; font-size: 0.78rem; }

/* ===== Mobile FAB group ===== */
.fab-group { position: fixed; right: 16px; bottom: 16px; display: flex; flex-direction: column; gap: 10px; z-index: 300; }
@media (min-width: 960px) { .fab-group { display: none; } }
.fab { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-soft); }
@media (prefers-reduced-motion: no-preference) { .fab { transition: transform 180ms var(--ease); } }
.fab:active { transform: scale(0.94); }
.fab--book { background: var(--bark); color: var(--warm-white); }
.fab--insta { background: var(--sage); color: #232922; }
.fab svg { width: 22px; height: 22px; }

/* ===== Utility ===== */
.stack-sm > * + * { margin-top: 10px; }
.text-center { text-align: center; }
