/* ==========================================================================
   Bliss Elora Spa — design system  "Plum & Pearl"
   (chosen from the style board, option 6)

   Deep plum ground, pearl text, dusty-rose accent.
   Playfair Display for display type (roman + italic), Manrope for body.
   Layout signature: ARCH-TOPPED imagery — a hammam/spa doorway silhouette —
   plus fully rounded pill buttons and soft 20px panels.

   Distinct from the rest of the portfolio (near-black brown + gold + Cormorant)
   and from the three earlier attempts on this site.
   ========================================================================== */

:root {
  /* --- Plum family (dark ground) --- */
  --plum-900: #150d18;   /* header, footer, deepest */
  --plum-800: #1d1220;   /* main dark ground */
  --plum-700: #2a1830;   /* panels on dark, text on rose */
  --plum-600: #3d2445;   /* gradient top, hover */
  --plum-line: #543a5c;

  /* --- Pearl family (light ground) --- */
  --pearl: #f6eef7;
  --pearl-2: #efe4f0;
  --pearl-3: #e4d5e6;
  --pearl-line: #dfd0e0;
  --white: #fffdff;

  /* --- Dusty rose accent --- */
  --rose: #d5a8b6;       /* accent on dark, button fill */
  --rose-2: #c08e9e;     /* button hover */
  --rose-ink: #8a4a5e;   /* accent text on pearl — 5.6:1 */
  --rose-soft: #f7e6ea;

  /* --- Text --- */
  --body: #574a5b;       /* on pearl — 7.0:1 */
  --body-dark: #b6a3bb;  /* on plum — 7.6:1 */
  --dim: #8b7a90;
  --dim-dark: #8a7690;
  --wa: #12894a;

  /* --- Type --- */
  --display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* --- Rhythm --- */
  --pad: clamp(1.15rem, 4vw, 2.4rem);
  --maxw: 1240px;
  --narrow: 730px;
  --r: 14px;             /* panels and image frames */
  --r-sm: 10px;
  --bar-h: 66px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.62;
  color: var(--body);
  background: var(--pearl);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 900px) { body { padding-bottom: var(--bar-h); } }

img, picture, video, iframe { max-width: 100%; }
img { height: auto; display: block; border: 0; }

a { color: var(--rose-ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--plum-700); }

:focus-visible { outline: 3px solid var(--rose-ink); outline-offset: 3px; border-radius: 6px; }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--plum-700);
  line-height: 1.14;
  letter-spacing: -.012em;
  margin: 0 0 .55em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.05rem, 4.6vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.15rem); }
h3 { font-size: clamp(1.15rem, 2.3vw, 1.38rem); font-weight: 500; }
h4 { font-size: 1.02rem; font-weight: 500; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--rose-ink); }
p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--plum-700); }

.skip { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--plum-900); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 var(--r-sm) 0; }
.skip:focus { left: 0; color: #fff; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.narrow { max-width: var(--narrow); }
.sect { padding-block: clamp(2.5rem, 5.2vw, 4rem); }
.sect--tight { padding-block: clamp(1.8rem, 3.6vw, 2.6rem); }

/* Alternating grounds so the page has rhythm. All three are defined. */
.sect--sand { background: var(--pearl-2); }
.sect--white { background: var(--white); }
.sect--ink {
  background: radial-gradient(120% 100% at 15% 0%, var(--plum-600) 0%, var(--plum-800) 62%);
  color: var(--body-dark);
}
.sect--ink h2, .sect--ink h3, .sect--ink h4 { color: var(--pearl); }
.sect--ink h2 em, .sect--ink h3 em { color: var(--rose); }
.sect--ink .lead { color: var(--body-dark); }
.sect--ink strong { color: var(--pearl); }
.sect--ink a:not(.btn) { color: var(--rose); }

/* Eyebrow: wide-tracked caps in rose, with a rule to its left */
.eyebrow {
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--sans); font-size: .68rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--rose-ink); margin-bottom: .7rem;
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--rose-ink); flex: none; }
.sect--ink .eyebrow::before { background: var(--rose); }
.sect--ink .eyebrow { color: var(--rose); }

.lead { font-size: clamp(1.03rem, 1.9vw, 1.16rem); font-weight: 300; line-height: 1.72; color: var(--body); max-width: 58ch; }
.head { margin-bottom: clamp(1.4rem, 2.8vw, 2.1rem); }
.head--center { text-align: center; margin-inline: auto; max-width: 660px; }
.head--center .lead { margin-inline: auto; }

.head--center .eyebrow { justify-content: center; }

/* ---------- Buttons: full pills ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 50px; padding: .78rem 1.6rem;
  font-family: var(--sans); font-size: .92rem; font-weight: 700; letter-spacing: .005em;
  border: 1.5px solid transparent; border-radius: 999px;
  text-decoration: none; cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 17px; height: 17px; flex: none; }
.btn--accent { background: var(--rose); color: var(--plum-700); }
.btn--accent:hover { background: var(--rose-2); color: var(--plum-700); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: #0d6f3b; color: #fff; }
.btn--ink { background: var(--plum-700); color: var(--pearl); }
.btn--ink:hover { background: var(--plum-600); color: var(--pearl); }
.btn--line { background: transparent; color: var(--plum-700); border-color: var(--pearl-line); }
.btn--line:hover { background: var(--plum-700); color: var(--pearl); border-color: var(--plum-700); }
.btn--onDark { background: transparent; color: var(--pearl); border-color: var(--plum-line); }
.btn--onDark:hover { background: var(--pearl); color: var(--plum-700); border-color: var(--pearl); }
.btn--sm { min-height: 42px; padding: .48rem 1.1rem; font-size: .85rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .55rem; }

/* ---------- Top bar ---------- */
.topbar { background: var(--plum-900); color: var(--dim-dark); font-size: .765rem; }
.topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; flex-wrap: wrap; }
.topbar b { color: var(--rose); font-weight: 600; }
.topbar a { display: inline-flex; align-items: center; min-height: 40px; color: #e0d3e3; text-decoration: none; }
.topbar a:hover { color: #fff; }
@media (max-width: 700px) { .topbar__hide { display: none; } .topbar__in { justify-content: center; gap: 1.3rem; } }

/* ---------- Header ---------- */
.hdr { position: sticky; top: 0; z-index: 60; background: rgba(21, 13, 24, .95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--plum-line); }
.hdr__in { display: flex; align-items: center; gap: 1rem; min-height: 70px; }
.brand { display: flex; align-items: center; gap: .62rem; text-decoration: none; margin-right: auto; }
.brand img { width: 38px; height: 38px; border-radius: 50%; background: var(--plum-900); padding: 3px; }
.brand__txt { display: flex; flex-direction: column; line-height: 1.06; }
.brand__name { font-family: var(--display); font-weight: 500; font-size: 1.14rem; color: var(--pearl); letter-spacing: -.005em; }
.brand__sub { font-size: .6rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--rose); margin-top: 3px; }

.nav { display: none; }
@media (min-width: 1080px) {
  .nav { display: flex; align-items: center; gap: .1rem; }
  .nav a { position: relative; padding: .5rem .7rem; border-radius: 999px; font-size: .875rem; color: #ddcfe0; text-decoration: none; }
  .nav a:hover { background: var(--plum-600); color: #fff; }
  .nav a[aria-current] { color: var(--rose); }
  .nav__has { position: relative; }
  .nav__panel {
    position: absolute; top: calc(100% + .35rem); left: 0; min-width: 252px; padding: .45rem;
    background: var(--plum-700); border: 1px solid var(--plum-line); border-radius: var(--r-sm); display: none;
  }
  .nav__has:hover .nav__panel, .nav__has:focus-within .nav__panel { display: block; }
  .nav__panel a { display: block; padding: .55rem .7rem; }
}
.hdr__cta { display: none; }
@media (min-width: 620px) { .hdr__cta { display: inline-flex; } }

.burger { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 46px; height: 46px; padding: 0 11px; background: transparent; border: 1px solid var(--plum-line); border-radius: 999px; cursor: pointer; }
.burger span { display: block; height: 1.6px; background: var(--pearl); transition: transform .22s, opacity .18s; }
.burger[aria-expanded='true'] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }
@media (min-width: 1080px) { .burger { display: none; } }

/* Drawer */
.drawer { position: fixed; inset: 0; z-index: 90; background: var(--plum-800); color: var(--body-dark); padding: 1rem var(--pad) 2.4rem; overflow-y: auto; }
.drawer[hidden] { display: none; }
.drawer__top { display: flex; align-items: center; justify-content: space-between; min-height: 52px; margin-bottom: 1rem; }
.drawer__top span { font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--rose); }
.drawer__x { width: 46px; height: 46px; border: 1px solid var(--plum-line); border-radius: 999px; background: none; font-size: 1.4rem; line-height: 1; color: var(--pearl); cursor: pointer; }
.drawer nav { display: flex; flex-direction: column; border-top: 1px solid var(--plum-line); }
.drawer nav a {
  display: flex; align-items: center; min-height: 56px; padding: .5rem .1rem;
  font-family: var(--display); font-weight: 400; font-size: 1.28rem;
  color: var(--pearl); text-decoration: none; border-bottom: 1px solid var(--plum-line);
}
.drawer nav a[aria-current] { color: var(--rose); font-style: italic; }
.drawer__sub { padding-left: 1.1rem !important; font-family: var(--sans) !important; font-size: .95rem !important; color: var(--body-dark) !important; min-height: 48px !important; }
.drawer__foot { margin-top: 1.5rem; display: grid; gap: .55rem; }

/* ---------- Image frame ---------- */
.arch { border-radius: var(--r); overflow: hidden; background: var(--pearl-3); }
.arch img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(110% 90% at 12% 0%, var(--plum-600) 0%, var(--plum-800) 62%);
  color: var(--body-dark);
  overflow: hidden;
}
.hero__in { display: grid; gap: clamp(1.6rem, 3.2vw, 2.6rem); padding-block: clamp(2rem, 4vw, 3.2rem); align-items: center; }
@media (min-width: 940px) {
  .hero__in { grid-template-columns: 1.05fr .95fr; }
}
.hero__txt { display: flex; flex-direction: column; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: .5rem; align-self: flex-start;
  margin-bottom: 1.3rem; padding: .34rem .85rem .34rem .6rem;
  border: 1px solid var(--plum-line); border-radius: 999px; background: rgba(255, 255, 255, .04);
  font-size: .69rem; font-weight: 600; letter-spacing: .19em; text-transform: uppercase; color: #e4d7e7;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: #4bd88c; box-shadow: 0 0 0 3px rgba(75, 216, 140, .2); flex: none; }
.hero h1 { color: var(--pearl); margin-bottom: .55rem; }
.hero h1 em { color: var(--rose); }
.hero__sub { font-size: clamp(1.02rem, 1.9vw, 1.14rem); font-weight: 300; color: var(--body-dark); max-width: 46ch; margin-bottom: 1.6rem; }
.hero__chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.6rem; }
.chip { display: inline-flex; align-items: center; gap: .38rem; padding: .34rem .8rem; border: 1px solid var(--plum-line); border-radius: 999px; font-size: .78rem; color: #cfc0d3; }
.chip svg { width: 13px; height: 13px; color: var(--rose); }

/* The arch photo sits in the hero and bleeds into the section below it */
.hero__media .arch { aspect-ratio: 4 / 3.1; }
.hero--page .hero__media .arch { aspect-ratio: 4 / 2.6; }

/* ---------- Facts strip ---------- */
.facts { background: var(--plum-900); }
.facts__grid { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .facts__grid { grid-template-columns: repeat(4, 1fr); } }
.fact { padding: 1.35rem var(--pad); border-right: 1px solid var(--plum-line); border-bottom: 1px solid var(--plum-line); }
@media (min-width: 900px) { .fact { border-bottom: 0; } .fact:last-child { border-right: 0; } }
.fact__k { font-size: .64rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--rose); margin-bottom: .4rem; }
.fact__v { font-family: var(--display); font-size: 1.1rem; color: var(--pearl); line-height: 1.26; }
.fact__n { font-size: .81rem; color: var(--dim-dark); margin-top: .25rem; }

/* ---------- Treatment cards: landscape, structured, left-aligned ---------- */
.arches { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
@media (min-width: 620px) { .arches { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .arches { grid-template-columns: repeat(3, 1fr); } }
.acard {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--pearl-line);
  border-radius: var(--r); overflow: hidden;
  transition: border-color .2s ease;
}
.acard:hover { border-color: var(--rose); }
.sect--ink .acard { background: var(--plum-700); border-color: var(--plum-line); }
.sect--ink .acard:hover { border-color: var(--rose); }
.acard__media { display: block; position: relative; aspect-ratio: 3 / 2; background: var(--pearl-3); overflow: hidden; }
.acard__media .arch { border-radius: 0; height: 100%; }
.acard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.acard:hover .acard__media img { transform: scale(1.04); }
.acard__body { padding: 1.1rem 1.2rem 1.25rem; display: flex; flex-direction: column; flex: 1; }
.acard__n {
  font-size: .62rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--rose-ink); margin-bottom: .35rem;
}
.sect--ink .acard__n { color: var(--rose); }
.acard h3 { margin-bottom: .4rem; }
.acard h3 a { color: inherit; text-decoration: none; }
.acard:hover h3 a { color: var(--rose-ink); }
.sect--ink .acard h3 { color: var(--pearl); }
.sect--ink .acard:hover h3 a { color: var(--rose); }
.acard p { font-size: .91rem; margin-bottom: 1rem; }
.sect--ink .acard p { color: var(--body-dark); }
.acard__foot { margin-top: auto; display: flex; flex-wrap: wrap; gap: .45rem; }

/* ---------- Cards (offers) ---------- */
.grid { display: grid; gap: clamp(1rem, 2.4vw, 1.7rem); }
.grid--2, .grid--3 { grid-template-columns: 1fr; }
@media (min-width: 660px) { .grid--2, .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
.card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--pearl-line); border-radius: var(--r); overflow: hidden; }
.sect--ink .card { background: var(--plum-700); border-color: var(--plum-line); }
.sect--ink .card p { color: var(--body-dark); }
.card__media { position: relative; aspect-ratio: 4 / 3; background: var(--pearl-3); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__media img { transform: scale(1.04); }
.card__tag { position: absolute; top: .85rem; left: .85rem; padding: .3rem .75rem; border-radius: 999px; background: rgba(21, 13, 24, .8); backdrop-filter: blur(4px); color: var(--rose); font-size: .64rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.card__body { padding: 1.3rem 1.4rem 1.45rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: .4rem; }
.card__body h3 a { color: inherit; text-decoration: none; }
.card__body h3 a:hover { color: var(--rose-ink); }
.card__body p { font-size: .93rem; }
.card__foot { margin-top: auto; padding-top: 1.05rem; display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.card__link { display: inline-flex; align-items: center; min-height: 42px; font-size: .875rem; font-weight: 700; color: var(--rose-ink); text-decoration: none; }
.card__link:hover { text-decoration: underline; }
.card__link::after { content: ' \2192'; padding-left: .3rem; }

/* ---------- Steps ---------- */
.steps { counter-reset: s; display: grid; gap: clamp(1.4rem, 3vw, 2.4rem); }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { counter-increment: s; }
.step::before {
  content: counter(s, decimal-leading-zero);
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; margin-bottom: .7rem;
  border-radius: 50%; border: 1px solid var(--rose-ink); color: var(--rose-ink);
  font-family: var(--display); font-size: .95rem;
}
.sect--ink .step::before { border-color: var(--rose); color: var(--rose); }
.step h3 { margin-bottom: .35rem; }
.step p { font-size: .93rem; }

/* ---------- Split ---------- */
.split { display: grid; gap: clamp(1.6rem, 3.5vw, 3.4rem); align-items: center; }
@media (min-width: 940px) { .split { grid-template-columns: 1fr 1fr; } .split--wide { grid-template-columns: 1.1fr 1fr; } }
.split__media { border-radius: var(--r); overflow: hidden; background: var(--pearl-3); }
.split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
@media (min-width: 940px) { .split--flip .split__media { order: 2; } }
/* arch variant for split images */
.split__media--arch img { aspect-ratio: 4 / 3.2; }

/* ---------- Features ---------- */
.feats { display: grid; gap: clamp(1.2rem, 2.6vw, 2rem) clamp(1.5rem, 3vw, 2.6rem); }
@media (min-width: 760px) { .feats { grid-template-columns: repeat(2, 1fr); } }
.feat { display: flex; gap: .95rem; }
.feat__ico { flex: none; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--rose-soft); color: var(--rose-ink); }
.sect--ink .feat__ico { background: rgba(213, 168, 182, .14); color: var(--rose); }
.feat__ico svg { width: 19px; height: 19px; }
.feat h3 { margin-bottom: .25rem; }
.feat p { font-size: .92rem; }

/* ---------- Nearby ---------- */
.near { background: var(--white); border: 1px solid var(--pearl-line); border-radius: var(--r); overflow: hidden; }
.sect--ink .near { background: var(--plum-700); border-color: var(--plum-line); }
.near__row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: .9rem 1.2rem; border-bottom: 1px solid var(--pearl-line); }
.sect--ink .near__row { border-color: var(--plum-line); }
.near__row:last-child { border-bottom: 0; }
.near__row b { font-family: var(--display); font-weight: 500; font-size: 1.02rem; color: var(--plum-700); }
.sect--ink .near__row b { color: var(--pearl); }
.near__row span { font-size: .84rem; color: var(--dim); text-align: right; }
.sect--ink .near__row span { color: var(--dim-dark); }

/* ---------- Map ---------- */
.map { border-radius: var(--r); overflow: hidden; border: 1px solid var(--pearl-line); background: var(--pearl-3); }
.sect--ink .map { border-color: var(--plum-line); }
.map iframe { display: block; width: 100%; height: 330px; border: 0; }
@media (min-width: 940px) { .map iframe { height: 100%; min-height: 420px; } }

/* ---------- Contact rows ---------- */
.crow { display: flex; gap: .95rem; padding: 1.1rem 0; border-bottom: 1px solid var(--pearl-line); }
.crow:first-child { border-top: 1px solid var(--pearl-line); }
.sect--ink .crow { border-color: var(--plum-line); }
.crow__ico { flex: none; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--rose-soft); color: var(--rose-ink); }
.sect--ink .crow__ico { background: rgba(213, 168, 182, .14); color: var(--rose); }
.crow__ico svg { width: 19px; height: 19px; }
.crow__k { font-size: .64rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--dim); margin-bottom: .2rem; }
.sect--ink .crow__k { color: var(--rose); }
.crow__v { font-family: var(--display); font-size: 1.1rem; color: var(--plum-700); }
.sect--ink .crow__v { color: var(--pearl); }
.crow__v a { color: inherit; text-decoration: none; }
.crow__v a:hover { color: var(--rose-ink); }
.sect--ink .crow__v a:hover { color: var(--rose); }

/* ---------- Reviews ---------- */
.rev {
  display: grid; gap: 1.15rem; justify-items: center; text-align: center;
  padding: clamp(2rem, 5vw, 3.4rem);
  background: radial-gradient(120% 100% at 50% 0%, var(--plum-600) 0%, var(--plum-800) 65%);
  border-radius: var(--r);
}
.rev__stars { display: flex; gap: .22rem; color: var(--rose); }
.rev__stars svg { width: 18px; height: 18px; }
.rev__g { font-family: var(--display); font-style: italic; font-size: clamp(1.42rem, 3.4vw, 2rem); color: var(--pearl); margin: 0; }
.rev .lead { color: var(--body-dark); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--pearl-line); }
.sect--ink .faq { border-color: var(--plum-line); }
.faq details { border-bottom: 1px solid var(--pearl-line); }
.sect--ink .faq details { border-color: var(--plum-line); }
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.15rem;
  padding: 1.15rem .1rem; cursor: pointer; list-style: none;
  font-family: var(--display); font-size: clamp(1.04rem, 2.2vw, 1.18rem); color: var(--plum-700);
}
.sect--ink .faq summary { color: var(--pearl); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; flex: none; width: 26px; height: 26px; margin-top: .1rem; border-radius: 50%;
  border: 1px solid var(--rose-ink);
  background:
    linear-gradient(var(--rose-ink), var(--rose-ink)) center / 10px 1.5px no-repeat,
    linear-gradient(var(--rose-ink), var(--rose-ink)) center / 1.5px 10px no-repeat;
  transition: transform .25s ease;
}
.sect--ink .faq summary::after { border-color: var(--rose); background-image: linear-gradient(var(--rose), var(--rose)), linear-gradient(var(--rose), var(--rose)); }
.faq details[open] summary::after { transform: rotate(135deg); background-size: 10px 1.5px, 0 10px; }
.faq summary:hover { color: var(--rose-ink); }
.sect--ink .faq summary:hover { color: var(--rose); }
.faq__a { padding: 0 .1rem 1.3rem; font-size: .96rem; max-width: 70ch; }

/* ---------- Gallery: alternating arches and rounded frames ---------- */
.gal { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(.7rem, 1.6vw, 1.1rem); }
@media (min-width: 780px) { .gal { grid-template-columns: repeat(3, 1fr); } }
.gal figure { margin: 0; overflow: hidden; background: var(--pearl-3); border-radius: var(--r); }

.gal img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .55s ease; }
.gal figure:hover img { transform: scale(1.05); }

/* ---------- Prose ---------- */
.prose > p { font-size: 1.04rem; }
.prose h2 { margin-top: 2.5rem; font-size: clamp(1.4rem, 2.8vw, 1.85rem); }
.prose h2:first-child { margin-top: 0; }

/* ---------- Aside ---------- */
.aside {
  padding: 1.6rem;
  background: radial-gradient(120% 100% at 20% 0%, var(--plum-600) 0%, var(--plum-800) 66%);
  border-radius: var(--r); color: var(--body-dark);
}
.aside h3 { color: var(--pearl); margin-bottom: 1rem; }
.aside__list { list-style: none; margin: 0 0 1.4rem; padding: 0; }
.aside__list li { padding: .65rem 0; font-size: .92rem; border-bottom: 1px solid var(--plum-line); }
.aside__list li:last-child { border-bottom: 0; }
.aside__list li strong { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--rose); margin-bottom: .14rem; }

/* ---------- Note ---------- */
.note { display: flex; gap: .8rem; align-items: flex-start; padding: 1.05rem 1.2rem; background: var(--rose-soft); border: 1px solid #ecd2d9; border-radius: var(--r-sm); font-size: .92rem; color: #6d3444; }
.note svg { flex: none; width: 18px; height: 18px; margin-top: .2rem; color: var(--rose-ink); }
.note a { color: #6d3444; font-weight: 700; }

/* ---------- Pills ---------- */
.pills { display: flex; flex-wrap: wrap; gap: .45rem; }
.pill { display: inline-flex; align-items: center; min-height: 42px; padding: .45rem 1.1rem; background: var(--white); border: 1px solid var(--pearl-line); border-radius: 999px; font-size: .875rem; color: var(--plum-700); text-decoration: none; }
.pill:hover { background: var(--plum-700); color: var(--pearl); border-color: var(--plum-700); }
.sect--ink .pill { background: transparent; border-color: var(--plum-line); color: var(--pearl); }
.sect--ink .pill:hover { background: var(--rose); color: var(--plum-700); border-color: var(--rose); }

/* ---------- Final CTA band ---------- */
.band {
  background: radial-gradient(110% 120% at 80% 0%, var(--plum-600) 0%, var(--plum-800) 60%);
  color: var(--body-dark);
}
.band__in { display: grid; gap: 1.8rem; padding-block: clamp(2.8rem, 6.5vw, 4.6rem); }
@media (min-width: 900px) { .band__in { grid-template-columns: 1.2fr 1fr; align-items: center; gap: 3rem; } }
.band h2 { color: var(--pearl); margin-bottom: .45rem; }
.band h2 em { color: var(--rose); }
.band p { color: var(--body-dark); max-width: 48ch; }
@media (min-width: 900px) { .band .btn-row { justify-content: flex-end; } }

/* ---------- Footer ---------- */
.ftr { background: var(--plum-900); color: var(--dim-dark); padding-block: clamp(2.8rem, 6vw, 4rem) 0; font-size: .9rem; }
.ftr__grid { display: grid; gap: 2.1rem; }
@media (min-width: 820px) { .ftr__grid { grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 2.6rem; } }
.ftr h4 { font-family: var(--sans); font-size: .64rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--rose); margin-bottom: 1rem; }
.ftr ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .05rem; }
.ftr ul a { display: inline-flex; align-items: center; min-height: 42px; }
.ftr a { color: #cbbcd0; text-decoration: none; }
.ftr a:hover { color: #fff; text-decoration: underline; }
.ftr__brand { display: flex; align-items: center; gap: .62rem; margin-bottom: 1rem; text-decoration: none; }
.ftr__brand img { width: 40px; height: 40px; }
.ftr__brand span { font-family: var(--display); font-weight: 500; font-size: 1.18rem; color: var(--pearl); }
.ftr__bot { margin-top: clamp(2.2rem, 4vw, 3rem); padding-block: 1.3rem; border-top: 1px solid var(--plum-line); display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; justify-content: space-between; font-size: .8rem; color: #7d6b83; }

/* ---------- Persistent mobile action bar ---------- */
.actionbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: rgba(21, 13, 24, .97); backdrop-filter: blur(12px);
  border-top: 1px solid var(--plum-line);
  padding-bottom: env(safe-area-inset-bottom);
}
.actionbar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  min-height: var(--bar-h); padding: .4rem .3rem;
  color: #efe4f0; text-decoration: none;
  font-size: .71rem; font-weight: 700; letter-spacing: .05em;
  border-right: 1px solid var(--plum-line);
}
.actionbar a:last-child { border-right: 0; }
.actionbar a:active { background: rgba(255, 255, 255, .07); }
.actionbar svg { width: 20px; height: 20px; }
.actionbar .ab-call svg { color: var(--rose); }
.actionbar .ab-wa svg { color: #46d883; }
.actionbar .ab-dir svg { color: #b39ce8; }
@media (min-width: 901px) { .actionbar { display: none; } }

/* ---------- Utilities ---------- */
.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.mt-2 { margin-top: 1.3rem; }
.mt-3 { margin-top: 2.1rem; }
.center { text-align: center; }

/* ---------- Suitability lists ---------- */
.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li {
  position: relative; padding: .6rem 0 .6rem 1.9rem;
  border-bottom: 1px solid var(--pearl-line); font-size: .95rem;
}
.ticks li:last-child { border-bottom: 0; }
.ticks li::before {
  content: ''; position: absolute; left: .1rem; top: 1.05rem;
  width: 9px; height: 5px; border-left: 1.8px solid var(--rose-ink); border-bottom: 1.8px solid var(--rose-ink);
  transform: rotate(-45deg);
}
.ticks--alt li::before {
  width: 10px; height: 10px; top: .95rem; transform: none;
  border: 0; border-radius: 50%; background: none;
  box-shadow: inset 0 0 0 1.8px var(--rose-ink);
}
.sect--ink .ticks li { border-color: var(--plum-line); }
.sect--ink .ticks li::before { border-color: var(--rose); box-shadow: inset 0 0 0 1.8px var(--rose); }

/* ---------- Steps stacked in a column (service pages) ---------- */
.steps--stack { grid-template-columns: 1fr !important; gap: 1.1rem; }
.steps--stack .step { display: grid; grid-template-columns: auto 1fr; gap: .2rem 1rem; align-items: start; }
.steps--stack .step::before { grid-row: span 2; margin-bottom: 0; }
.steps--stack .step h3 { margin-bottom: .2rem; }

/* ---------- Aside list on service pages ---------- */
.aside__list li strong { color: var(--rose); }

/* ---------- Gallery rail: one slidable row ---------- */
.rail-wrap { position: relative; }
.rail {
  list-style: none; margin: 0; padding: 0 0 .4rem;
  display: grid; grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: clamp(.6rem, 1.4vw, .9rem);
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--pearl-3) transparent;
}
@media (min-width: 900px) { .rail { grid-auto-columns: minmax(300px, 1fr); } }
.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-thumb { background: var(--pearl-3); border-radius: 999px; }
.rail li { scroll-snap-align: start; }
.rail img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--r); background: var(--pearl-3);
}
.rail-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 42px; height: 42px; border-radius: 50%; cursor: pointer;
  background: var(--white); border: 1px solid var(--pearl-line); color: var(--plum-700);
  font-size: 1.35rem; line-height: 1; display: none; place-items: center;
}
.rail-btn:hover { background: var(--plum-700); color: var(--pearl); border-color: var(--plum-700); }
.rail-btn--prev { left: -10px; }
.rail-btn--next { right: -10px; }
@media (min-width: 900px) { .rail-btn { display: grid; } }
.rail-btn[hidden] { display: none !important; }

/* ---------- Footer: brief ---------- */
.ftr { padding-block: clamp(2rem, 4vw, 2.8rem) 0; font-size: .875rem; }
.ftr__grid { gap: 1.4rem; }
@media (min-width: 820px) { .ftr__grid { grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 2rem; } }
.ftr__blurb { font-size: .84rem; margin: 0; max-width: 34ch; }
.ftr h4 { margin-bottom: .5rem; }
.ftr ul { gap: 0; }
.ftr ul a { min-height: 34px; }
.ftr__plain { padding: .2rem 0; line-height: 1.5; }
.ftr__brand { margin-bottom: .6rem; }
.ftr__brand img { width: 32px; height: 32px; }
.ftr__brand span { font-size: 1.05rem; }
.ftr__bot { margin-top: 1.4rem; padding-block: .9rem; font-size: .75rem; }
@media (max-width: 819px) {
  .ftr__grid { grid-template-columns: 1fr 1fr; gap: 1.2rem 1.4rem; }
  .ftr__grid > div:first-child { grid-column: 1 / -1; }
  .ftr ul a { min-height: 32px; }
  .ftr h4 { font-size: .6rem; }
}

/* ---------- Breadcrumbs ---------- */
.crumbs { background: var(--plum-900); border-bottom: 1px solid var(--plum-line); font-size: .78rem; }
.crumbs ol { list-style: none; margin: 0; padding: .55rem 0; display: flex; flex-wrap: wrap; gap: .1rem .5rem; align-items: center; }
.crumbs li { display: flex; align-items: center; gap: .5rem; color: var(--dim-dark); }
.crumbs li + li::before { content: '/'; color: var(--plum-line); }
.crumbs a { color: #cbbcd0; text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs li[aria-current] { color: var(--rose); }
