/**
 * Blanche Beauty — Design System v3
 * Direction: Intimacy. A private room, not a storefront.
 * Typography: Cormorant Infant (reading) + Cormorant (display) + Outfit (UI)
 * Palette: Warm ink, cream, gold, sage — no clinical whites
 */

/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  /* Colour */
  --ink:    #1E1711;
  --ink-2:  #3A2E27;
  --ink-3:  #6B5344;
  --warm:   #FAF7F2;
  --warm-2: #F2EDE6;
  --warm-3: #E8E0D6;
  --gold:   #A67C3A;
  --gold-2: #C9A55A;
  --sage:   #8BA89F;
  --sage-2: #5C8279;
  --off:    #FFFEFB;

  /* Typography */
  --fi: 'Cormorant Infant', Georgia, 'Times New Roman', serif;
  --fd: 'Cormorant', Georgia, 'Times New Roman', serif;
  --fb: 'Outfit', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Layout */
  --max-width: 1200px;
  --pad: 56px;
  --pad-sm: 24px;
  --radius: 0px;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--fb);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--warm);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* paper grain — the material surface */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.032;
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ═══════════════════════════════════════════
   ACCESSIBILITY
═══════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100px; left: 0;
  background: var(--ink); color: var(--warm);
  padding: 8px 16px; z-index: 9999; font-size: 13px;
}
.skip-link:focus { top: 0; }

/* ═══════════════════════════════════════════
   NAV — barely there, multiply blended
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 28px var(--pad);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  mix-blend-mode: multiply;
  transition: padding 0.5s ease;
}
.nav.compact { padding: 18px var(--pad); }

.nav-logo {
  font-family: var(--fd);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ink);
  line-height: 1;
}
.nav-logo sup {
  font-family: var(--fb);
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  vertical-align: super;
  color: var(--gold);
  margin-left: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-link {
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  transition: color 0.2s;
  position: relative;
}
.nav-link:hover,
.nav-link.active { color: var(--ink); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}
.nav-book {
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.nav-book:hover { opacity: 0.6; }

/* mobile toggle — two lines, not three */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  z-index: 510;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.open span:nth-child(2) { transform: rotate(-45deg) translate(4px, -4px); }

/* mobile nav overlay */
@media (max-width: 860px) {
  .nav { padding: 20px var(--pad-sm); mix-blend-mode: normal; background: rgba(250,247,242,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--warm-3); }
  .nav.compact { padding: 16px var(--pad-sm); }
  .nav-toggle { display: flex; }
  .nav-right {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--warm);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 505;
  }
  .nav-right.open { display: flex; }
  .nav-link { font-size: 13px; }
  .nav-book { font-size: 12px; }
}

/* ═══════════════════════════════════════════
   OPENING — full bleed, no hero box
═══════════════════════════════════════════ */
.opening {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--warm-2);
}
.opening-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
/* vignette — image breathes into cream */
.opening::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,  rgba(250,247,242,0.72) 0%, transparent 55%),
    linear-gradient(to top,    rgba(250,247,242,0.88) 0%, transparent 40%),
    linear-gradient(to bottom, rgba(250,247,242,0.45) 0%, transparent 30%);
  pointer-events: none;
}
.opening-text {
  position: absolute;
  bottom: 0; left: 0;
  padding: 0 0 72px var(--pad);
  z-index: 2;
  max-width: 600px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.1s ease 0.4s, transform 1.1s ease 0.4s;
}
.opening-text.in { opacity: 1; transform: none; }
.opening-location {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.opening-h1 {
  font-family: var(--fi);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.opening-h1 em { font-style: italic; color: var(--ink-2); }

.opening-aside {
  position: absolute;
  right: 52px; bottom: 72px;
  z-index: 2;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-3);
  opacity: 0;
  transition: opacity 1s ease 1.2s;
}
.opening-aside.in { opacity: 0.5; }

.opening-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--fb);
  font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-3);
  animation: blink 3s ease-in-out infinite;
}
.opening-scroll-bar {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--ink-3), transparent);
  animation: scrollbar 2.5s ease-in-out infinite;
}
@keyframes scrollbar {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; transform-origin: bottom; }
}
@keyframes blink {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.15; }
}

/* ═══════════════════════════════════════════
   INTRO — breath after the image
═══════════════════════════════════════════ */
.intro {
  padding: 96px var(--pad) 80px;
  max-width: 700px;
}
.intro-p {
  font-family: var(--fi);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}
.intro-p em { font-style: italic; color: var(--ink); }

/* ═══════════════════════════════════════════
   HAND STRIP
═══════════════════════════════════════════ */
.hand-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  height: clamp(400px, 48vw, 620px);
  gap: 3px;
}
.hand-strip-img {
  overflow: hidden;
  background: var(--warm-3);
  position: relative;
}
.hand-strip-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transition: transform 0.9s ease;
}
.hand-strip-img:hover img { transform: scale(1.04); }
.hand-strip-label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fb);
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250,247,242,0.75); opacity: 0;
  text-align: center; padding: 16px;
  pointer-events: none;
}
.hand-strip-img:hover .hand-strip-label { opacity: 1; transition: opacity 0.3s; }

/* ═══════════════════════════════════════════
   SERVICES — open list, not cards
═══════════════════════════════════════════ */
.services {
  padding: 112px var(--pad);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}
.services-label {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage-2);
  padding-top: 8px;
  position: sticky;
  top: 120px;
}
.svc-row {
  padding: 40px 0;
  border-bottom: 1px solid var(--warm-3);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 24px;
}
.svc-row:first-child { padding-top: 0; border-top: 1px solid var(--warm-3); }
.svc-row:hover .svc-name { color: var(--gold); }
.svc-num {
  font-family: var(--fi);
  font-size: 11px; font-style: italic; font-weight: 300;
  color: var(--sage); margin-bottom: 10px; letter-spacing: 0.06em;
}
.svc-name {
  font-family: var(--fi);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.svc-desc {
  font-family: var(--fb);
  font-size: 13px; font-weight: 300;
  line-height: 1.8; color: var(--ink-3); max-width: 480px;
}
.svc-right { text-align: right; flex-shrink: 0; }
.svc-from {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 4px;
}
.svc-price {
  font-family: var(--fi);
  font-size: 22px; font-weight: 300;
  color: var(--ink-2); margin-bottom: 12px;
}
.svc-book {
  display: inline-block;
  font-family: var(--fb);
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.svc-book:hover { opacity: 0.55; }

/* ═══════════════════════════════════════════
   PENSIONERS BANNER
═══════════════════════════════════════════ */
.pensioners {
  background: var(--ink);
  padding: 64px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.pen-tag {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 14px;
}
.pen-h {
  font-family: var(--fi);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 300; color: var(--warm);
  line-height: 1.2; margin-bottom: 10px; letter-spacing: -0.015em;
}
.pen-body {
  font-family: var(--fb);
  font-size: 13px; font-weight: 300;
  color: rgba(250,247,242,0.4); line-height: 1.7;
}
.pen-cta {
  font-family: var(--fb);
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-2);
  border: 1px solid rgba(201,165,90,0.35);
  padding: 14px 28px;
  white-space: nowrap; flex-shrink: 0;
  transition: border-color 0.2s, opacity 0.2s;
}
.pen-cta:hover { border-color: var(--gold-2); opacity: 0.75; }

/* ═══════════════════════════════════════════
   QUOTE SECTION — emotional heart
═══════════════════════════════════════════ */
.quote-section {
  padding: 120px var(--pad);
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
  background: var(--off);
}
.quote-mark {
  font-family: var(--fi);
  font-size: 72px; font-weight: 300;
  color: var(--gold); opacity: 0.3;
  line-height: 0.6; margin-bottom: 20px; display: block;
}
.quote-q {
  font-family: var(--fi);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 300; font-style: italic;
  line-height: 1.3; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 28px;
}
.quote-attr {
  font-family: var(--fb);
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
}
.quote-image {
  aspect-ratio: 3/4;
  background: var(--warm-2); overflow: hidden; position: relative;
}
.quote-image img { width: 100%; height: 100%; object-fit: cover; }
.quote-image-label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fb); font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3); opacity: 0.3;
  text-align: center; padding: 20px;
}

/* ═══════════════════════════════════════════
   FOUNDER — the private room
═══════════════════════════════════════════ */
.founder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.founder-image {
  background: var(--warm-3);
  position: relative; overflow: hidden; min-height: 520px;
}
.founder-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.founder-image-label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--fb); font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3); opacity: 0.3;
  gap: 8px;
}
.founder-text {
  padding: 80px 64px;
  background: var(--warm);
  display: flex; flex-direction: column; justify-content: center;
}
.founder-tag {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
}
.founder-letter {
  font-family: var(--fi);
  font-size: 17px; font-weight: 300;
  line-height: 1.9; color: var(--ink-2); margin-bottom: 20px;
}
.founder-letter em { font-style: italic; color: var(--ink); }
.founder-pull {
  font-family: var(--fi);
  font-size: 21px; font-style: italic; font-weight: 300;
  line-height: 1.55; color: var(--ink);
  padding-left: 22px; border-left: 1.5px solid var(--gold);
  margin: 36px 0;
}
.founder-sig {
  font-family: var(--fi);
  font-size: 26px; font-style: italic; font-weight: 300;
  color: var(--ink-3); margin-top: 36px; margin-bottom: 4px;
}
.founder-sig-role {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); opacity: 0.5;
}
.founder-more {
  display: inline-block; margin-top: 32px;
  font-family: var(--fb);
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3);
  border-bottom: 1px solid var(--warm-3); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.founder-more:hover { color: var(--ink); border-color: var(--ink-3); }

/* ═══════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════ */
.reviews {
  padding: 96px var(--pad);
  background: var(--warm-2);
}
.reviews-label {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage-2); margin-bottom: 56px;
  display: flex; align-items: center; gap: 16px;
}
.reviews-label::after { content: ''; flex: 1; height: 1px; background: var(--warm-3); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.review-stars {
  color: var(--gold); font-size: 10px; letter-spacing: 5px;
  margin-bottom: 18px; opacity: 0.7;
}
.review-text {
  font-family: var(--fi);
  font-size: 18px; font-style: italic; font-weight: 300;
  line-height: 1.65; color: var(--ink-2); margin-bottom: 20px;
}
.review-name {
  font-family: var(--fb);
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3);
}
.review-source {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sage); margin-top: 2px;
}

/* ═══════════════════════════════════════════
   LOCATION
═══════════════════════════════════════════ */
.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.loc-map {
  min-height: 420px;
  background: var(--warm-3); overflow: hidden;
}
.loc-map iframe {
  width: 100%; height: 100%; border: none;
  filter: saturate(0.4) contrast(0.9) brightness(1.05);
}
.loc-text {
  background: var(--ink);
  padding: 72px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.loc-label {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 24px;
}
.loc-h {
  font-family: var(--fi);
  font-size: 32px; font-weight: 300;
  color: var(--warm); letter-spacing: -0.02em; margin-bottom: 32px;
}
.loc-detail {
  font-family: var(--fb);
  font-size: 13px; font-weight: 300;
  line-height: 2; color: rgba(250,247,242,0.45); margin-bottom: 36px;
}
.loc-detail strong {
  display: block;
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(250,247,242,0.35);
  margin-top: 20px; margin-bottom: 4px;
}
.loc-detail strong:first-child { margin-top: 0; }
.loc-wa {
  color: var(--gold-2);
  border-bottom: 1px solid rgba(201,165,90,0.3);
  transition: border-color 0.2s;
}
.loc-wa:hover { border-color: var(--gold-2); }
.loc-cta {
  display: inline-block;
  font-family: var(--fb);
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--warm);
  border-bottom: 1px solid rgba(250,247,242,0.25); padding-bottom: 2px;
  transition: border-color 0.2s;
}
.loc-cta:hover { border-color: rgba(250,247,242,0.7); }

/* ═══════════════════════════════════════════
   CLOSING CTA — quiet, confident
═══════════════════════════════════════════ */
.closing {
  background: var(--warm);
  padding: 140px var(--pad);
  text-align: center;
}
.closing-small {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage-2); margin-bottom: 28px;
}
.closing-h {
  font-family: var(--fi);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 300; font-style: italic;
  line-height: 1.08; letter-spacing: -0.03em;
  color: var(--ink); margin-bottom: 20px;
}
.closing-h em { font-style: normal; color: var(--gold); }
.closing-sub {
  font-family: var(--fb);
  font-size: 14px; font-weight: 300;
  line-height: 1.75; color: var(--ink-3);
  max-width: 400px; margin: 0 auto 48px;
}
.closing-actions {
  display: flex; align-items: center; justify-content: center; gap: 36px;
}
.closing-book {
  font-family: var(--fb);
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); background: transparent;
  border: 1px solid var(--ink); padding: 16px 40px;
  transition: background 0.3s, color 0.3s;
}
.closing-book:hover { background: var(--ink); color: var(--warm); }
.closing-wa {
  font-family: var(--fb);
  font-size: 11px; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3);
  border-bottom: 1px solid var(--warm-3); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.closing-wa:hover { color: var(--ink); border-color: var(--ink-3); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--ink);
  padding: 52px var(--pad) 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 52px; padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  font-family: var(--fd);
  font-size: 18px; font-weight: 400;
  letter-spacing: 0.06em; color: var(--warm);
  display: block; margin-bottom: 10px;
}
.footer-logo em { font-style: normal; color: var(--gold); }
.footer-tagline {
  font-family: var(--fb);
  font-size: 12px; font-weight: 300;
  line-height: 1.7; color: rgba(250,247,242,0.28);
}
.footer-col-head {
  font-family: var(--fb);
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(250,247,242,0.35); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-family: var(--fb);
  font-size: 12px; font-weight: 300;
  color: rgba(250,247,242,0.28); transition: color 0.2s;
}
.footer-col a:hover { color: rgba(250,247,242,0.75); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--fb);
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.08em; color: rgba(250,247,242,0.18);
}

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════ */
.fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade.in { opacity: 1; transform: none; }
.fade-d1 { transition-delay: 0.1s; }
.fade-d2 { transition-delay: 0.2s; }
.fade-d3 { transition-delay: 0.32s; }

/* ═══════════════════════════════════════════
   MOBILE — below 860px
═══════════════════════════════════════════ */
@media (max-width: 860px) {
  :root { --pad: var(--pad-sm); }

  .opening-text { padding: 0 0 56px var(--pad-sm); }
  .opening-aside { display: none; }
  .opening-h1 { font-size: clamp(40px, 12vw, 64px); }

  .intro { padding: 64px var(--pad-sm) 56px; }

  .hand-strip { grid-template-columns: 1fr 1fr; height: 52vw; }
  .hand-strip-img:last-child { display: none; }

  .services { padding: 72px var(--pad-sm); grid-template-columns: 1fr; gap: 0; }
  .services-label { position: static; margin-bottom: 40px; }
  .svc-row { grid-template-columns: 1fr; }
  .svc-right { text-align: left; margin-top: 16px; }

  .pensioners { flex-direction: column; padding: 48px var(--pad-sm); }

  .quote-section { grid-template-columns: 1fr; padding: 80px var(--pad-sm); gap: 48px; }
  .quote-image { aspect-ratio: 4/3; }

  .founder { grid-template-columns: 1fr; }
  .founder-image { min-height: 60vw; }
  .founder-text { padding: 56px var(--pad-sm); }

  .reviews { padding: 72px var(--pad-sm); }
  .reviews-grid { grid-template-columns: 1fr; gap: 40px; }

  .location { grid-template-columns: 1fr; }
  .loc-map { min-height: 280px; }
  .loc-text { padding: 52px var(--pad-sm); }

  .closing { padding: 96px var(--pad-sm); }
  .closing-actions { flex-direction: column; gap: 24px; }

  .footer { padding: 48px var(--pad-sm) 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* ═══════════════════════════════════════════
   PAGE HEADER — inner pages
═══════════════════════════════════════════ */
.page-header {
  padding: 140px var(--pad) 72px;
  background: var(--warm);
  position: relative;
}
.page-header-tag {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.page-header-h1 {
  font-family: var(--fi);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 700px;
  margin-bottom: 24px;
}
.page-header-h1 em { font-style: italic; color: var(--ink-2); }
.page-header-body {
  font-family: var(--fi);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-3);
  max-width: 540px;
}

/* ═══════════════════════════════════════════
   CERT BANNER — GlamPro credential strip
═══════════════════════════════════════════ */
.cert-banner {
  background: var(--ink-2);
  padding: 20px var(--pad);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cert-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.cert-text {
  font-family: var(--fb);
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250,247,242,0.55);
}
.cert-text strong {
  color: var(--gold-2);
  font-weight: 400;
}
.cert-divider {
  width: 1px; height: 20px;
  background: rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════════
   SERVICE SECTIONS — full price lists
═══════════════════════════════════════════ */
.svc-section {
  padding: 80px var(--pad);
  border-bottom: 1px solid var(--warm-3);
}
.svc-section:last-of-type { border-bottom: none; }
.svc-section.alt { background: var(--warm-2); }

.svc-section-header {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  margin-bottom: 56px;
  align-items: start;
}
.svc-section-label {
  position: sticky;
  top: 90px;
}
.svc-section-tag {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage-2);
  margin-bottom: 14px;
}
.svc-section-name {
  font-family: var(--fi);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.svc-section-intro {
  font-family: var(--fb);
  font-size: 13px; font-weight: 300;
  line-height: 1.8;
  color: var(--ink-3);
}
.svc-section-intro a {
  color: var(--gold);
  border-bottom: 1px solid rgba(166,124,58,0.3);
  transition: border-color 0.2s;
}
.svc-section-intro a:hover { border-color: var(--gold); }

/* right side — the actual price list */
.svc-section-right {}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--warm-3);
}
.price-row:first-child { border-top: 1px solid var(--warm-3); }

.price-row-name {
  font-family: var(--fi);
  font-size: 20px; font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.price-row-desc {
  font-family: var(--fb);
  font-size: 12px; font-weight: 300;
  color: var(--ink-3);
  line-height: 1.7;
  max-width: 440px;
}
.price-right {
  text-align: right;
  flex-shrink: 0;
}
.price-from {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 2px;
}
.price-amount {
  font-family: var(--fi);
  font-size: 24px; font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.price-note {
  font-family: var(--fb);
  font-size: 10px; font-weight: 300;
  color: var(--sage-2);
  letter-spacing: 0.06em;
  margin-top: 2px;
  text-align: right;
}

/* add-on rows — indented, smaller */
.price-row.addon {
  padding: 14px 0 14px 20px;
  border-left: 1.5px solid var(--warm-3);
  border-bottom: none;
  margin: 0;
}
.price-row.addon .price-row-name {
  font-size: 16px;
  color: var(--ink-2);
}
.price-row.addon .price-amount { font-size: 18px; }

/* ═══════════════════════════════════════════
   REMOVAL POLICY BLOCK
═══════════════════════════════════════════ */
.removal-policy {
  background: var(--off);
  padding: 56px var(--pad);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
  border-top: 1px solid var(--warm-3);
}
.removal-policy-label {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage-2);
  padding-top: 4px;
  position: sticky;
  top: 90px;
}
.removal-policy-body {}
.removal-policy-h {
  font-family: var(--fi);
  font-size: 26px; font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.removal-policy-p {
  font-family: var(--fb);
  font-size: 14px; font-weight: 300;
  line-height: 1.85;
  color: var(--ink-3);
  margin-bottom: 20px;
  max-width: 520px;
}
.removal-policy-p strong { color: var(--ink); font-weight: 400; }
.removal-conditions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.removal-condition {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--fb);
  font-size: 13px; font-weight: 300;
  color: var(--ink-3);
  line-height: 1.6;
}
.removal-condition-num {
  font-family: var(--fi);
  font-size: 13px; font-style: italic;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
  min-width: 16px;
}

/* ═══════════════════════════════════════════
   GLAMPRO EXPLAINER
═══════════════════════════════════════════ */
.glampro-block {
  background: var(--ink);
  padding: 80px var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.glampro-left {}
.glampro-tag {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.glampro-h {
  font-family: var(--fi);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 300;
  color: rgba(250,247,242,0.9);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.glampro-body {
  font-family: var(--fb);
  font-size: 14px; font-weight: 300;
  line-height: 1.85;
  color: rgba(250,247,242,0.45);
  margin-bottom: 16px;
}
.glampro-body strong { color: rgba(250,247,242,0.72); font-weight: 400; }
.glampro-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.glampro-fact {
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border-left: 1.5px solid var(--gold);
}
.glampro-fact-label {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}
.glampro-fact-val {
  font-family: var(--fi);
  font-size: 18px; font-weight: 300;
  color: rgba(250,247,242,0.8);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════
   SERVICES PAGE CLOSING CTA
═══════════════════════════════════════════ */
.svc-cta {
  padding: 100px var(--pad);
  background: var(--warm);
  text-align: center;
}
.svc-cta-tag {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage-2); margin-bottom: 24px;
}
.svc-cta-h {
  font-family: var(--fi);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300; font-style: italic;
  line-height: 1.1; letter-spacing: -0.025em;
  color: var(--ink); margin-bottom: 16px;
}
.svc-cta-h em { font-style: normal; color: var(--gold); }
.svc-cta-sub {
  font-family: var(--fb);
  font-size: 14px; font-weight: 300;
  line-height: 1.75; color: var(--ink-3);
  max-width: 380px; margin: 0 auto 40px;
}
.svc-cta-actions {
  display: flex; align-items: center; justify-content: center; gap: 32px;
}

/* ═══════════════════════════════════════════
   MOBILE — services page additions
═══════════════════════════════════════════ */
@media (max-width: 860px) {
  .page-header { padding: 120px var(--pad-sm) 56px; }
  .cert-banner { padding: 16px var(--pad-sm); gap: 16px; }
  .cert-divider { display: none; }
  .svc-section { padding: 60px var(--pad-sm); }
  .svc-section-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
  .svc-section-label { position: static; }
  .price-row { grid-template-columns: 1fr; }
  .price-right { text-align: left; margin-top: 8px; }
  .price-row.addon { padding-left: 14px; }
  .removal-policy { grid-template-columns: 1fr; padding: 48px var(--pad-sm); gap: 24px; }
  .removal-policy-label { position: static; }
  .glampro-block { grid-template-columns: 1fr; padding: 60px var(--pad-sm); gap: 40px; }
  .svc-cta { padding: 72px var(--pad-sm); }
  .svc-cta-actions { flex-direction: column; gap: 20px; }
}

/* ═══════════════════════════════════════════
   SERVICE LANDING PAGE — shared components
   Used by: gel-nails.php, lash-extensions.php, makeup.php
═══════════════════════════════════════════ */

/* full-bleed visual opening — photography first */
.slp-hero {
  position: relative;
  width: 100%;
  height: 72vh;
  min-height: 480px;
  max-height: 680px;
  overflow: hidden;
  background: var(--warm-3);
}
.slp-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.slp-hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(30,23,17,0.55) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(250,247,242,0.35) 0%, transparent 25%);
  pointer-events: none;
}
.slp-hero-caption {
  position: absolute;
  bottom: 32px; left: var(--pad);
  z-index: 2;
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250,247,242,0.55);
}
.slp-hero-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fb);
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); opacity: 0.3;
  text-align: center; padding: 20px;
}

/* promise block — what this service does for you */
.slp-promise {
  padding: 80px var(--pad) 72px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: end;
  border-bottom: 1px solid var(--warm-3);
}
.slp-promise-left {}
.slp-promise-tag {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.slp-promise-h {
  font-family: var(--fi);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 300; line-height: 1.08;
  letter-spacing: -0.025em; color: var(--ink);
  margin-bottom: 24px;
}
.slp-promise-h em { font-style: italic; color: var(--ink-2); }
.slp-promise-body {
  font-family: var(--fi);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 300; line-height: 1.7;
  color: var(--ink-3);
  max-width: 540px;
}
.slp-promise-right {}
.slp-cred {
  background: var(--warm-2);
  padding: 24px 28px;
  border-left: 1.5px solid var(--gold);
}
.slp-cred-label {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage-2); margin-bottom: 8px;
}
.slp-cred-body {
  font-family: var(--fb);
  font-size: 13px; font-weight: 300;
  line-height: 1.75; color: var(--ink-3);
}
.slp-cred-body strong { color: var(--ink); font-weight: 400; }

/* gallery strip — 4 images, asymmetric */
.slp-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  height: clamp(240px, 32vw, 440px);
  gap: 3px;
  background: var(--warm-3);
}
.slp-gallery-img {
  overflow: hidden;
  background: var(--warm-3);
  position: relative;
}
.slp-gallery-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.slp-gallery-img:hover img { transform: scale(1.05); }
.slp-gallery-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fb);
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3); opacity: 0.28;
  text-align: center; padding: 12px;
}

/* embedded review — single, selected */
.slp-review {
  padding: 88px var(--pad);
  background: var(--off);
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: center;
}
.slp-review-text {}
.slp-review-stars {
  color: var(--gold);
  font-size: 11px; letter-spacing: 6px;
  margin-bottom: 20px; opacity: 0.7;
}
.slp-review-q {
  font-family: var(--fi);
  font-size: clamp(22px, 3.2vw, 38px);
  font-weight: 300; font-style: italic;
  line-height: 1.4; letter-spacing: -0.015em;
  color: var(--ink); margin-bottom: 24px;
}
.slp-review-attr {
  font-family: var(--fb);
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
}
.slp-review-aside {
  display: flex; flex-direction: column; gap: 12px;
}
.slp-review-stat {
  padding: 16px 20px;
  background: var(--warm-2);
}
.slp-review-stat-num {
  font-family: var(--fi);
  font-size: 28px; font-weight: 300;
  color: var(--ink); line-height: 1;
  margin-bottom: 4px;
}
.slp-review-stat-label {
  font-family: var(--fb);
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3);
}

/* pricing — after trust established */
.slp-pricing {
  padding: 80px var(--pad);
  background: var(--warm);
}
.slp-pricing-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--warm-3);
}
.slp-pricing-tag {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage-2); margin-bottom: 14px;
}
.slp-pricing-h {
  font-family: var(--fi);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 300; letter-spacing: -0.02em;
  color: var(--ink); line-height: 1.1;
}
.slp-pricing-note {
  font-family: var(--fb);
  font-size: 13px; font-weight: 300;
  line-height: 1.8; color: var(--ink-3);
  align-self: end;
}

.slp-price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--warm-3);
}
.slp-price-row:last-child { border-bottom: none; }
.slp-price-name {
  font-family: var(--fi);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 300; color: var(--ink);
  letter-spacing: -0.01em; margin-bottom: 6px;
  line-height: 1.15;
}
.slp-price-desc {
  font-family: var(--fb);
  font-size: 13px; font-weight: 300;
  line-height: 1.75; color: var(--ink-3);
  max-width: 500px;
}
.slp-price-right { text-align: right; flex-shrink: 0; }
.slp-price-from {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 3px;
}
.slp-price-amount {
  font-family: var(--fi);
  font-size: 28px; font-weight: 300;
  color: var(--ink); line-height: 1;
  white-space: nowrap;
}
.slp-price-sub {
  font-family: var(--fb);
  font-size: 10px; font-weight: 300;
  color: var(--sage-2); letter-spacing: 0.06em;
  margin-top: 3px;
}
.slp-book-inline {
  display: inline-block; margin-top: 12px;
  font-family: var(--fb);
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold); padding-bottom: 1px;
  transition: opacity 0.2s;
}
.slp-book-inline:hover { opacity: 0.55; }

/* what to expect */
.slp-expect {
  padding: 80px var(--pad);
  background: var(--warm-2);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: start;
}
.slp-expect-label {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage-2);
  position: sticky; top: 90px;
  padding-top: 4px;
}
.slp-expect-steps {}
.slp-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--warm-3);
  align-items: start;
}
.slp-step:first-child { padding-top: 0; }
.slp-step:last-child { border-bottom: none; }
.slp-step-num {
  font-family: var(--fi);
  font-size: 14px; font-style: italic;
  font-weight: 300; color: var(--gold);
  padding-top: 6px;
}
.slp-step-name {
  font-family: var(--fi);
  font-size: 22px; font-weight: 300;
  color: var(--ink); letter-spacing: -0.01em;
  margin-bottom: 8px; line-height: 1.2;
}
.slp-step-body {
  font-family: var(--fb);
  font-size: 13px; font-weight: 300;
  line-height: 1.8; color: var(--ink-3);
}

/* removal policy : inline on nails page */
.slp-removal {
  padding: 56px var(--pad);
  background: var(--warm-3);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: start;
}
.slp-removal-label {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage-2); padding-top: 4px;
}
.slp-removal-body {}
.slp-removal-h {
  font-family: var(--fi);
  font-size: 22px; font-weight: 300;
  color: var(--ink); letter-spacing: -0.01em;
  margin-bottom: 16px; line-height: 1.2;
}
.slp-removal-p {
  font-family: var(--fb);
  font-size: 13px; font-weight: 300;
  line-height: 1.85; color: var(--ink-3);
  max-width: 520px; margin-bottom: 16px;
}
.slp-removal-p strong { color: var(--ink); font-weight: 400; }
.slp-removal-items {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 16px;
}
.slp-removal-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--fb);
  font-size: 13px; font-weight: 300;
  color: var(--ink-3); line-height: 1.6;
}
.slp-removal-num {
  font-family: var(--fi);
  font-size: 13px; font-style: italic;
  color: var(--gold); flex-shrink: 0;
  min-width: 18px; padding-top: 1px;
}

/* pensioners on service pages : compact */
.slp-pensioners {
  background: var(--ink);
  padding: 48px var(--pad);
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
}

/* closing CTA */
.slp-cta {
  padding: 100px var(--pad);
  background: var(--warm);
  text-align: center;
}
.slp-cta-tag {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage-2); margin-bottom: 24px;
}
.slp-cta-h {
  font-family: var(--fi);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300; font-style: italic;
  line-height: 1.1; letter-spacing: -0.025em;
  color: var(--ink); margin-bottom: 16px;
}
.slp-cta-h em { font-style: normal; color: var(--gold); }
.slp-cta-sub {
  font-family: var(--fb);
  font-size: 14px; font-weight: 300;
  line-height: 1.75; color: var(--ink-3);
  max-width: 380px; margin: 0 auto 40px;
}
.slp-cta-actions {
  display: flex; align-items: center;
  justify-content: center; gap: 32px;
}

/* sticky mobile book bar */
.slp-mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--warm-3);
  padding: 10px 20px;
  z-index: 400;
  align-items: center; justify-content: space-between;
  gap: 12px;
}
.slp-mobile-bar-label {
  font-family: var(--fb);
  font-size: 12px; font-weight: 400; color: var(--ink);
}
.slp-mobile-bar-sub {
  font-size: 11px; font-weight: 300; color: var(--ink-3);
}
.slp-mobile-bar-book {
  background: var(--ink); color: var(--warm);
  padding: 11px 24px; white-space: nowrap;
  font-family: var(--fb);
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   SERVICE LANDING MOBILE
═══════════════════════════════════════════ */
@media (max-width: 860px) {
  .slp-hero { height: 56vw; min-height: 320px; }
  .slp-hero-caption { left: var(--pad-sm); bottom: 20px; }
  .slp-promise { grid-template-columns: 1fr; padding: 56px var(--pad-sm); gap: 32px; }
  .slp-gallery { grid-template-columns: 1fr 1fr; height: 56vw; }
  .slp-gallery-img:nth-child(3),
  .slp-gallery-img:nth-child(4) { display: none; }
  .slp-review { grid-template-columns: 1fr; padding: 64px var(--pad-sm); gap: 32px; }
  .slp-review-aside { flex-direction: row; }
  .slp-review-stat { flex: 1; }
  .slp-pricing { padding: 60px var(--pad-sm); }
  .slp-pricing-header { grid-template-columns: 1fr; gap: 16px; }
  .slp-price-row { grid-template-columns: 1fr; gap: 10px; }
  .slp-price-right { text-align: left; }
  .slp-expect { grid-template-columns: 1fr; padding: 60px var(--pad-sm); gap: 24px; }
  .slp-expect-label { position: static; }
  .slp-removal { grid-template-columns: 1fr; padding: 48px var(--pad-sm); gap: 20px; }
  .slp-pensioners { flex-direction: column; padding: 40px var(--pad-sm); }
  .slp-cta { padding: 72px var(--pad-sm); }
  .slp-cta-actions { flex-direction: column; gap: 20px; }
  .slp-mobile-bar { display: flex; }
  body { padding-bottom: 68px; }
}

/* ═══════════════════════════════════════════
   GALLERY PAGE
═══════════════════════════════════════════ */
.gallery-header {
  padding: 140px var(--pad) 64px;
  background: var(--warm);
}
.gallery-header-tag {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.gallery-header-h1 {
  font-family: var(--fi);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 300; line-height: 1.06;
  letter-spacing: -0.03em; color: var(--ink);
  margin-bottom: 20px;
}
.gallery-header-h1 em { font-style: italic; color: var(--ink-2); }
.gallery-header-body {
  font-family: var(--fi);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300; line-height: 1.65;
  color: var(--ink-3); max-width: 480px;
}

.gallery-filter {
  padding: 0 var(--pad) 48px;
  display: flex; align-items: center; gap: 4px;
  border-bottom: 1px solid var(--warm-3);
}
.gallery-filter-btn {
  font-family: var(--fb);
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3);
  padding: 8px 18px;
  border: 1px solid transparent;
  background: none;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.gallery-filter-btn:hover { color: var(--ink); }
.gallery-filter-btn.active {
  color: var(--ink);
  border-color: var(--warm-3);
}

.gallery-grid {
  padding: 48px var(--pad) 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.gallery-item {
  overflow: hidden;
  background: var(--warm-3);
  position: relative;
  aspect-ratio: 4/5;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(30,23,17,0);
  display: flex; align-items: flex-end;
  padding: 20px;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(30,23,17,0.35); }
.gallery-item-label {
  font-family: var(--fb);
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250,247,242,0);
  transition: color 0.3s;
}
.gallery-item:hover .gallery-item-label { color: rgba(250,247,242,0.8); }
.gallery-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fb);
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3); opacity: 0.25;
  text-align: center; padding: 16px;
}
.gallery-item.wide { grid-column: span 2; aspect-ratio: 8/5; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 4/10; }

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.about-opening {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}
.about-image {
  background: var(--warm-3);
  position: relative; overflow: hidden;
  min-height: 520px;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.about-image-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--fb); font-size: 9px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); opacity: 0.28; gap: 8px;
}
.about-intro {
  padding: 120px 72px 80px 64px;
  background: var(--warm);
  display: flex; flex-direction: column; justify-content: center;
}
.about-intro-tag {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.about-intro-h1 {
  font-family: var(--fi);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -0.025em; color: var(--ink);
  margin-bottom: 32px;
}
.about-intro-h1 em { font-style: italic; color: var(--ink-2); }
.about-intro-body {
  font-family: var(--fi);
  font-size: 17px; font-weight: 300;
  line-height: 1.85; color: var(--ink-3);
  margin-bottom: 20px;
}
.about-intro-body em { font-style: italic; color: var(--ink); }

.about-story {
  padding: 96px var(--pad);
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
  background: var(--warm-2);
}
.about-story-aside {
  position: sticky; top: 100px;
}
.about-story-aside-img {
  width: 100%; aspect-ratio: 3/4;
  background: var(--warm-3); overflow: hidden;
  position: relative; margin-bottom: 20px;
}
.about-story-aside-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.about-story-aside-caption {
  font-family: var(--fb);
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); line-height: 1.65;
}
.about-story-body {}
.about-story-tag {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage-2); margin-bottom: 32px;
}
.about-story-p {
  font-family: var(--fi);
  font-size: 17px; font-weight: 300;
  line-height: 1.9; color: var(--ink-2);
  margin-bottom: 24px;
}
.about-story-p em { font-style: italic; color: var(--ink); }
.about-pull {
  font-family: var(--fi);
  font-size: 22px; font-style: italic;
  font-weight: 300; line-height: 1.5;
  color: var(--ink); border-left: 1.5px solid var(--gold);
  padding-left: 24px; margin: 40px 0;
}
.about-sig {
  font-family: var(--fi);
  font-size: 26px; font-style: italic;
  font-weight: 300; color: var(--ink-3);
  margin-top: 40px; margin-bottom: 4px;
}
.about-sig-role {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); opacity: 0.5;
}

.about-credentials {
  padding: 80px var(--pad);
  background: var(--ink);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: start;
}
.about-cred-label {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage);
  position: sticky; top: 100px;
  padding-top: 4px;
}
.about-cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-cred-item {
  padding: 20px 22px;
  background: rgba(255,255,255,0.04);
  border-left: 1.5px solid var(--gold);
}
.about-cred-label-small {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 6px;
}
.about-cred-val {
  font-family: var(--fi);
  font-size: 16px; font-weight: 300;
  color: rgba(250,247,242,0.8); line-height: 1.4;
}

.about-reviews {
  padding: 80px var(--pad);
  background: var(--warm-2);
}
.about-reviews-tag {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage-2); margin-bottom: 48px;
  display: flex; align-items: center; gap: 16px;
}
.about-reviews-tag::after { content: ''; flex: 1; height: 1px; background: var(--warm-3); }

/* ═══════════════════════════════════════════
   FIND US PAGE
═══════════════════════════════════════════ */
.findus-map-full {
  width: 100%; height: 56vh; min-height: 360px;
  background: var(--warm-3); overflow: hidden;
}
.findus-map-full iframe {
  width: 100%; height: 100%; border: none;
  filter: saturate(0.4) contrast(0.9) brightness(1.05);
}
.findus-body {
  padding: 80px var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--bo);
  border-top: 1px solid var(--warm-3);
}
.findus-col {
  background: var(--warm);
  padding: 48px 40px;
}
.findus-col-tag {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.findus-col-h {
  font-family: var(--fi);
  font-size: 24px; font-weight: 300;
  color: var(--ink); letter-spacing: -0.01em;
  margin-bottom: 20px; line-height: 1.2;
}
.findus-col-body {
  font-family: var(--fb);
  font-size: 13px; font-weight: 300;
  line-height: 2; color: var(--ink-3);
}
.findus-col-body strong {
  display: block; font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); margin-top: 20px; margin-bottom: 4px;
}
.findus-col-body strong:first-child { margin-top: 0; }
.findus-wa {
  color: var(--gold);
  border-bottom: 1px solid rgba(166,124,58,0.3);
  transition: border-color 0.2s;
}
.findus-wa:hover { border-color: var(--gold); }
.findus-directions {
  display: inline-block; margin-top: 24px;
  font-family: var(--fb);
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); border: 1px solid var(--ink);
  padding: 12px 24px;
  transition: background 0.2s, color 0.2s;
}
.findus-directions:hover { background: var(--ink); color: var(--warm); }

.findus-hours {
  padding: 0 var(--pad) 80px;
  background: var(--warm);
}
.findus-hours-inner {
  max-width: 560px;
  padding-top: 48px;
  border-top: 1px solid var(--warm-3);
}
.findus-hours-tag {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage-2); margin-bottom: 24px;
}
.findus-hour-row {
  display: flex; justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--warm-3);
  font-family: var(--fb);
  font-size: 14px; font-weight: 300;
  color: var(--ink-3);
}
.findus-hour-row:last-child { border-bottom: none; }
.findus-hour-day { color: var(--ink); font-weight: 400; }
.findus-hour-closed { color: var(--ink-3); opacity: 0.45; font-style: italic; }

/* ═══════════════════════════════════════════
   BLOG INDEX PAGE
═══════════════════════════════════════════ */
.blog-header {
  padding: 140px var(--pad) 72px;
  background: var(--warm);
}
.blog-header-tag {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.blog-header-h1 {
  font-family: var(--fi);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300; line-height: 1.06;
  letter-spacing: -0.03em; color: var(--ink);
  margin-bottom: 16px;
}
.blog-header-h1 em { font-style: italic; color: var(--ink-2); }
.blog-header-body {
  font-family: var(--fi);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300; line-height: 1.65;
  color: var(--ink-3); max-width: 480px;
}

.blog-grid {
  padding: 0 var(--pad) 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bo);
  border-top: 1px solid var(--warm-3);
}
.blog-card {
  background: var(--warm);
  padding: 40px 36px;
  display: flex; flex-direction: column;
  transition: background 0.3s;
}
.blog-card:hover { background: var(--warm-2); }
.blog-card.featured {
  grid-column: span 2;
  background: var(--warm-2);
}
.blog-card-tag {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage-2); margin-bottom: 12px;
}
.blog-card-title {
  font-family: var(--fi);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300; line-height: 1.2;
  letter-spacing: -0.015em; color: var(--ink);
  margin-bottom: 14px; flex: 1;
}
.blog-card.featured .blog-card-title {
  font-size: clamp(24px, 3vw, 36px);
}
.blog-card-excerpt {
  font-family: var(--fb);
  font-size: 13px; font-weight: 300;
  line-height: 1.75; color: var(--ink-3);
  margin-bottom: 20px;
}
.blog-card-meta {
  font-family: var(--fb);
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3); opacity: 0.5;
  margin-bottom: 16px;
}
.blog-card-read {
  font-family: var(--fb);
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold); padding-bottom: 1px;
  display: inline-block;
  transition: opacity 0.2s;
  align-self: flex-start;
}
.blog-card-read:hover { opacity: 0.55; }
.blog-card-img {
  width: 100%; aspect-ratio: 16/9;
  background: var(--warm-3); overflow: hidden;
  margin-bottom: 24px; position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fb); font-size: 9px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3); opacity: 0.25;
}

/* ═══════════════════════════════════════════
   MOBILE — new pages
═══════════════════════════════════════════ */
@media (max-width: 860px) {
  .gallery-header { padding: 120px var(--pad-sm) 48px; }
  .gallery-filter { padding: 0 var(--pad-sm) 32px; flex-wrap: wrap; }
  .gallery-grid { padding: 32px var(--pad-sm) 72px; grid-template-columns: repeat(2,1fr); }
  .gallery-item.wide { grid-column: span 2; aspect-ratio: 4/3; }
  .gallery-item.tall { grid-row: auto; aspect-ratio: 4/5; }

  .about-opening { grid-template-columns: 1fr; }
  .about-image { min-height: 60vw; }
  .about-intro { padding: 64px var(--pad-sm); }
  .about-story { grid-template-columns: 1fr; padding: 64px var(--pad-sm); gap: 40px; }
  .about-story-aside { position: static; }
  .about-story-aside-img { aspect-ratio: 3/2; }
  .about-credentials { grid-template-columns: 1fr; padding: 56px var(--pad-sm); gap: 28px; }
  .about-cred-label { position: static; }
  .about-cred-grid { grid-template-columns: 1fr; }
  .about-reviews { padding: 64px var(--pad-sm); }

  .findus-body { grid-template-columns: 1fr; }
  .findus-col { padding: 40px var(--pad-sm); }
  .findus-hours { padding: 0 var(--pad-sm) 64px; }

  .blog-header { padding: 120px var(--pad-sm) 48px; }
  .blog-grid { padding: 0 0 72px; grid-template-columns: 1fr; }
  .blog-card.featured { grid-column: span 1; }
  .blog-card { padding: 32px var(--pad-sm); }
}

/* ═══════════════════════════════════════════
   FOOTER ADDITIONS
═══════════════════════════════════════════ */
.footer-wa-btn {
  display: inline-block;
  font-family: var(--fb);
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-2);
  border: 1px solid rgba(201,165,90,0.3);
  padding: 11px 20px;
  transition: border-color 0.2s, opacity 0.2s;
}
.footer-wa-btn:hover { border-color: var(--gold-2); opacity: 0.75; }

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 300;
  width: 48px; height: 48px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
}
@media (max-width: 860px) {
  .wa-float { bottom: 80px; right: 16px; width: 44px; height: 44px; }
  /* push above mobile booking bar when present */
  body:has(.slp-mobile-bar) .wa-float { bottom: 76px; }
}

/* ═══════════════════════════════════════════
   BLOG POST TEMPLATE
═══════════════════════════════════════════ */

/* post hero */
.post-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  max-height: 560px;
  overflow: hidden;
  background: var(--warm-3);
}
.post-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.post-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,23,17,0.5) 0%, transparent 50%);
  pointer-events: none;
}
.post-hero-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fb); font-size: 9px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); opacity: 0.28;
}

/* post header */
.post-header {
  padding: 64px var(--pad) 48px;
  max-width: 760px;
  border-bottom: 1px solid var(--warm-3);
}
.post-header-cat {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.post-header-h1 {
  font-family: var(--fi);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -0.025em; color: var(--ink);
  margin-bottom: 24px;
}
.post-header-h1 em { font-style: italic; color: var(--ink-2); }
.post-header-intro {
  font-family: var(--fi);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 300; line-height: 1.65;
  color: var(--ink-3); margin-bottom: 24px;
  max-width: 600px;
}
.post-header-meta {
  font-family: var(--fb);
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); opacity: 0.5;
  display: flex; align-items: center; gap: 16px;
}
.post-header-meta-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--ink-3); opacity: 0.4;
}

/* post body layout */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 72px;
  padding: 64px var(--pad) 96px;
  align-items: start;
}
.post-body {}
.post-aside {
  position: sticky;
  top: 100px;
}

/* post body typography */
.post-p {
  font-family: var(--fi);
  font-size: 18px; font-weight: 300;
  line-height: 1.85; color: var(--ink-2);
  margin-bottom: 28px;
}
.post-p em { font-style: italic; color: var(--ink); }
.post-p strong { font-weight: 400; color: var(--ink); }

.post-h2 {
  font-family: var(--fi);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 300; line-height: 1.2;
  letter-spacing: -0.015em; color: var(--ink);
  margin-top: 52px; margin-bottom: 20px;
}
.post-h2:first-child { margin-top: 0; }

.post-h3 {
  font-family: var(--fb);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); margin-top: 36px; margin-bottom: 12px;
}

.post-pull {
  font-family: var(--fi);
  font-size: 22px; font-style: italic;
  font-weight: 300; line-height: 1.5;
  color: var(--ink); border-left: 1.5px solid var(--gold);
  padding-left: 24px; margin: 44px 0;
}

.post-rule {
  width: 36px; height: 1.5px;
  background: var(--gold); margin: 44px 0;
}

/* numbered list within posts */
.post-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 28px;
}
.post-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  font-family: var(--fi);
  font-size: 18px; font-weight: 300;
  line-height: 1.7; color: var(--ink-2);
}
.post-list-num {
  font-family: var(--fi);
  font-size: 13px; font-style: italic;
  color: var(--gold); padding-top: 4px;
}
.post-list li strong { font-weight: 400; color: var(--ink); }

/* aside components */
.post-aside-box {
  background: var(--warm-2);
  padding: 24px 26px;
  margin-bottom: 16px;
}
.post-aside-label {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage-2); margin-bottom: 12px;
}
.post-aside-body {
  font-family: var(--fb);
  font-size: 12px; font-weight: 300;
  line-height: 1.75; color: var(--ink-3);
}
.post-aside-body strong { color: var(--ink); font-weight: 400; }
.post-aside-cta {
  display: block; margin-top: 14px;
  font-family: var(--fb);
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold); padding-bottom: 1px;
  display: inline-block;
  transition: opacity 0.2s;
}
.post-aside-cta:hover { opacity: 0.55; }

/* related posts */
.post-related {
  padding: 72px var(--pad) 96px;
  background: var(--warm-2);
  border-top: 1px solid var(--warm-3);
}
.post-related-label {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage-2); margin-bottom: 40px;
  display: flex; align-items: center; gap: 16px;
}
.post-related-label::after { content: ''; flex: 1; height: 1px; background: var(--warm-3); }
.post-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--bo);
}
.post-related-card {
  background: var(--warm);
  padding: 28px 28px;
  display: flex; flex-direction: column;
  transition: background 0.3s;
}
.post-related-card:hover { background: var(--warm-2); }
.post-related-cat {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sage-2); margin-bottom: 10px;
}
.post-related-title {
  font-family: var(--fi);
  font-size: 20px; font-weight: 300;
  color: var(--ink); line-height: 1.2;
  letter-spacing: -0.01em; margin-bottom: 12px; flex: 1;
}
.post-related-read {
  font-family: var(--fb);
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px; display: inline-block;
  align-self: flex-start;
  transition: opacity 0.2s;
}
.post-related-read:hover { opacity: 0.55; }

/* mobile */
@media (max-width: 860px) {
  .post-header { padding: 48px var(--pad-sm) 36px; }
  .post-layout { grid-template-columns: 1fr; padding: 48px var(--pad-sm) 72px; gap: 40px; }
  .post-aside { position: static; }
  .post-related { padding: 56px var(--pad-sm) 72px; }
  .post-related-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   BLOG POST PAGE
═══════════════════════════════════════════ */
.post-hero {
  position: relative;
  width: 100%;
  height: 56vh; min-height: 380px; max-height: 560px;
  overflow: hidden;
  background: var(--warm-3);
}
.post-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.post-hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,    rgba(250,247,242,0.92) 0%, transparent 45%),
    linear-gradient(to bottom, rgba(250,247,242,0.4)  0%, transparent 30%);
  pointer-events: none;
}
.post-hero-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fb); font-size: 9px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); opacity: 0.28;
}

.post-header {
  padding: 48px var(--pad) 56px;
  max-width: 760px;
  position: relative; z-index: 2;
}
.post-header-meta {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
  font-family: var(--fb);
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sage-2);
}
.post-header-meta-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--warm-3); flex-shrink: 0;
}
.post-header-h1 {
  font-family: var(--fi);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -0.025em; color: var(--ink);
  margin-bottom: 20px;
}
.post-header-h1 em { font-style: italic; color: var(--ink-2); }
.post-header-intro {
  font-family: var(--fi);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 300; line-height: 1.65;
  color: var(--ink-3);
}

.post-body {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 64px;
  padding: 0 var(--pad) 96px;
  align-items: start;
}
.post-content {}
.post-content h2 {
  font-family: var(--fi);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 300; line-height: 1.2;
  letter-spacing: -0.015em; color: var(--ink);
  margin: 48px 0 16px;
}
.post-content h2:first-child { margin-top: 0; }
.post-content h3 {
  font-family: var(--fi);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 300; line-height: 1.25;
  color: var(--ink); margin: 32px 0 12px;
}
.post-content p {
  font-family: var(--fb);
  font-size: 15px; font-weight: 300;
  line-height: 1.9; color: var(--ink-3);
  margin-bottom: 20px;
}
.post-content p strong { color: var(--ink); font-weight: 400; }
.post-content ul, .post-content ol {
  margin: 0 0 20px 0; padding: 0;
  list-style: none;
}
.post-content li {
  font-family: var(--fb);
  font-size: 15px; font-weight: 300;
  line-height: 1.8; color: var(--ink-3);
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid var(--warm-3);
  position: relative;
}
.post-content li::before {
  content: '';
  position: absolute; left: 0; top: 18px;
  width: 6px; height: 1px; background: var(--gold);
}
.post-content blockquote {
  font-family: var(--fi);
  font-size: 21px; font-style: italic; font-weight: 300;
  line-height: 1.55; color: var(--ink);
  border-left: 1.5px solid var(--gold);
  padding-left: 24px; margin: 36px 0;
}
.post-content a {
  color: var(--gold);
  border-bottom: 1px solid rgba(166,124,58,0.3);
  transition: border-color 0.2s;
}
.post-content a:hover { border-color: var(--gold); }
.post-content .note {
  background: var(--warm-2);
  border-left: 1.5px solid var(--sage);
  padding: 16px 20px; margin: 24px 0;
  font-family: var(--fb); font-size: 13px; font-weight: 300;
  line-height: 1.75; color: var(--ink-3);
}
.post-content .note strong { color: var(--ink); font-weight: 400; }

.post-sidebar {
  position: sticky; top: 100px;
  display: flex; flex-direction: column; gap: 24px;
}
.post-sidebar-card {
  background: var(--warm-2);
  padding: 24px;
}
.post-sidebar-label {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage-2); margin-bottom: 14px;
}
.post-sidebar-body {
  font-family: var(--fb);
  font-size: 13px; font-weight: 300;
  line-height: 1.75; color: var(--ink-3);
  margin-bottom: 16px;
}
.post-sidebar-body strong { color: var(--ink); font-weight: 400; }
.post-sidebar-cta {
  display: inline-block;
  font-family: var(--fb);
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); border: 1px solid var(--ink);
  padding: 11px 20px; width: 100%; text-align: center;
  transition: background 0.2s, color 0.2s;
}
.post-sidebar-cta:hover { background: var(--ink); color: var(--warm); }

.post-related {
  padding: 72px var(--pad) 80px;
  background: var(--warm-2);
  border-top: 1px solid var(--warm-3);
}
.post-related-label {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage-2); margin-bottom: 40px;
  display: flex; align-items: center; gap: 16px;
}
.post-related-label::after { content: ''; flex: 1; height: 1px; background: var(--warm-3); }
.post-related-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: var(--bo); border: 1px solid var(--bo);
}
.post-related-card {
  background: var(--warm);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: background 0.3s;
}
.post-related-card:hover { background: var(--warm-2); }
.post-related-cat {
  font-family: var(--fb);
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sage-2); margin-bottom: 10px;
}
.post-related-title {
  font-family: var(--fi);
  font-size: 20px; font-weight: 300;
  line-height: 1.2; letter-spacing: -0.01em;
  color: var(--ink); flex: 1; margin-bottom: 16px;
}
.post-related-read {
  font-family: var(--fb);
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold); padding-bottom: 1px;
  display: inline-block; align-self: flex-start;
  transition: opacity 0.2s;
}
.post-related-read:hover { opacity: 0.55; }

/* ═ MOBILE ═ */
@media (max-width: 860px) {
  .post-header { padding: 32px var(--pad-sm) 48px; }
  .post-body { grid-template-columns: 1fr; padding: 0 var(--pad-sm) 72px; gap: 40px; }
  .post-sidebar { position: static; }
  .post-related { padding: 56px var(--pad-sm) 64px; }
  .post-related-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   BOOKING PAGE
═══════════════════════════════════════════ */
.booking-wrap {
  min-height: 100vh;
  padding-top: 68px;
  background: var(--warm);
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: start;
  gap: 0;
}

/* ── LEFT: FORM PANELS ── */
.booking-main {
  padding: 56px 56px 96px;
  border-right: 1px solid var(--warm-3);
}
.booking-step {
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--warm-3);
}
.booking-step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.booking-step-head {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 32px;
}
.booking-step-num {
  font-family: var(--fi);
  font-size: 13px; font-style: italic;
  color: var(--gold); flex-shrink: 0;
}
.booking-step-title {
  font-family: var(--fi);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 300; line-height: 1.15;
  letter-spacing: -0.015em; color: var(--ink);
}
.booking-step-sub {
  font-family: var(--fb);
  font-size: 13px; font-weight: 300;
  line-height: 1.7; color: var(--ink-3);
  margin-top: 6px;
}

/* person tabs */
.person-tabs {
  display: flex; gap: 4px; margin-bottom: 32px; flex-wrap: wrap;
}
.person-tab {
  font-family: var(--fb);
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 9px 20px;
  background: var(--warm-2);
  color: var(--ink-3);
  border: 1px solid var(--warm-3);
  cursor: pointer; transition: all 0.2s;
}
.person-tab.active { background: var(--ink); color: var(--warm); border-color: var(--ink); }
.person-tab:hover:not(.active) { border-color: var(--ink-3); color: var(--ink); }

/* people count */
.people-count {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 24px; width: fit-content;
  border: 1px solid var(--warm-3);
}
.people-btn {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fb); font-size: 18px; font-weight: 300;
  color: var(--ink); cursor: pointer;
  background: var(--warm-2);
  border: none; transition: background 0.2s;
  user-select: none;
}
.people-btn:hover { background: var(--warm-3); }
.people-num {
  width: 56px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fi); font-size: 22px; font-weight: 300;
  color: var(--ink);
}
.person-name-input {
  display: flex; gap: 8px; margin-bottom: 8px; align-items: center;
}
.person-name-label {
  font-family: var(--fb); font-size: 10px; font-weight: 300;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); min-width: 64px;
}
.person-name-field {
  flex: 1; max-width: 240px;
  font-family: var(--fb); font-size: 14px; font-weight: 300;
  color: var(--ink); background: var(--warm-2);
  border: 1px solid var(--warm-3); padding: 9px 14px;
  outline: none; transition: border-color 0.2s;
}
.person-name-field:focus { border-color: var(--gold); }

/* service category tabs */
.cat-tabs {
  display: flex; gap: 4px; margin-bottom: 24px; flex-wrap: wrap;
}
.cat-tab {
  font-family: var(--fb);
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 16px;
  border: 1px solid var(--warm-3);
  color: var(--ink-3); cursor: pointer;
  background: var(--warm-2); transition: all 0.2s;
}
.cat-tab.active { background: var(--warm); color: var(--ink); border-color: var(--ink-3); }
.cat-tab:hover:not(.active) { color: var(--ink); }

/* service cards */
.service-picker {
  display: flex; flex-direction: column; gap: 2px;
}
.service-picker-row {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--warm-3);
  cursor: pointer; transition: background 0.2s, border-color 0.2s;
  background: var(--warm);
  position: relative;
}
.service-picker-row:hover { background: var(--warm-2); border-color: var(--warm-3); }
.service-picker-row.selected {
  background: var(--gp);
  border-color: var(--gold);
}
.service-picker-check {
  width: 48px; height: 100%; min-height: 60px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-picker-box {
  width: 18px; height: 18px;
  border: 1.5px solid var(--warm-3);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.service-picker-row.selected .service-picker-box {
  background: var(--gold); border-color: var(--gold);
}
.service-picker-tick {
  width: 10px; height: 7px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px,-1px);
  display: none;
}
.service-picker-row.selected .service-picker-tick { display: block; }
.service-picker-info { flex: 1; padding: 14px 0; }
.service-picker-name {
  font-family: var(--fi);
  font-size: 17px; font-weight: 300;
  color: var(--ink); line-height: 1.2; margin-bottom: 3px;
}
.service-picker-desc {
  font-family: var(--fb);
  font-size: 12px; font-weight: 300;
  color: var(--ink-3); line-height: 1.5;
}
.service-picker-note {
  font-size: 10px; color: var(--sage-2);
  letter-spacing: 0.06em; margin-top: 2px;
}
.service-picker-price {
  padding: 0 20px; flex-shrink: 0; text-align: right;
}
.service-picker-amount {
  font-family: var(--fi);
  font-size: 20px; font-weight: 300; color: var(--ink);
}
.service-picker-badge {
  position: absolute; top: 8px; right: 56px;
  font-family: var(--fb); font-size: 8px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 2px 6px; background: var(--gp);
}

/* date and time */
.date-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.booking-field-label {
  font-family: var(--fb); font-size: 10px; font-weight: 300;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 8px; display: block;
}
.booking-input {
  width: 100%;
  font-family: var(--fb); font-size: 14px; font-weight: 300;
  color: var(--ink); background: var(--warm-2);
  border: 1px solid var(--warm-3); padding: 12px 16px;
  outline: none; transition: border-color 0.2s;
  appearance: none;
}
.booking-input:focus { border-color: var(--gold); }
.booking-input-wrap { position: relative; }
.booking-input-wrap select.booking-input {
  cursor: pointer;
  padding-right: 36px;
}

/* contact details */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.contact-field-full { grid-column: 1 / -1; }
.booking-textarea {
  width: 100%;
  font-family: var(--fb); font-size: 14px; font-weight: 300;
  color: var(--ink); background: var(--warm-2);
  border: 1px solid var(--warm-3); padding: 12px 16px;
  outline: none; transition: border-color 0.2s;
  resize: vertical; min-height: 80px;
}
.booking-textarea:focus { border-color: var(--gold); }

/* deposit policy */
.deposit-note {
  background: var(--warm-2);
  border-left: 1.5px solid var(--sage);
  padding: 14px 18px; margin-top: 24px;
  font-family: var(--fb); font-size: 13px; font-weight: 300;
  line-height: 1.7; color: var(--ink-3);
}
.deposit-note strong { color: var(--ink); font-weight: 400; }

/* submit */
.booking-submit {
  display: block; width: 100%; margin-top: 32px;
  font-family: var(--fb); font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--warm); background: var(--ink);
  border: none; padding: 18px 32px; cursor: pointer;
  transition: background 0.2s;
}
.booking-submit:hover { background: var(--ink-2); }
.booking-submit:disabled { opacity: 0.45; cursor: not-allowed; }

/* ── RIGHT: SUMMARY PANEL ── */
.booking-summary {
  position: sticky; top: 68px;
  background: var(--warm-2);
  padding: 48px 36px;
  min-height: calc(100vh - 68px);
  border-left: 1px solid var(--warm-3);
}
.summary-title {
  font-family: var(--fb); font-size: 9px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage-2); margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.summary-title::after { content: ''; flex: 1; height: 1px; background: var(--warm-3); }
.summary-empty {
  font-family: var(--fi); font-size: 16px; font-style: italic;
  font-weight: 300; color: var(--ink-3); line-height: 1.65;
  opacity: 0.6;
}
.summary-person { margin-bottom: 24px; }
.summary-person-name {
  font-family: var(--fb); font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 8px;
}
.summary-service-row {
  display: flex; justify-content: space-between;
  align-items: baseline; gap: 12px;
  padding: 6px 0; border-bottom: 1px solid var(--warm-3);
}
.summary-service-name {
  font-family: var(--fb); font-size: 12px; font-weight: 300;
  color: var(--ink-3); line-height: 1.4; flex: 1;
}
.summary-service-price {
  font-family: var(--fi); font-size: 15px; font-weight: 300;
  color: var(--ink); white-space: nowrap; flex-shrink: 0;
}
.summary-person-subtotal {
  display: flex; justify-content: space-between;
  padding: 8px 0 0;
  font-family: var(--fb); font-size: 11px; font-weight: 400;
  color: var(--ink-3);
}
.summary-divider {
  height: 1px; background: var(--warm-3); margin: 20px 0;
}
.summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 8px;
}
.summary-total-label {
  font-family: var(--fb); font-size: 10px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink);
}
.summary-total-amount {
  font-family: var(--fi); font-size: 28px; font-weight: 300; color: var(--ink);
}
.summary-duration {
  font-family: var(--fb); font-size: 11px; font-weight: 300;
  color: var(--ink-3); margin-top: 8px; text-align: right;
}
.summary-wa-note {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid var(--warm-3);
  font-family: var(--fb); font-size: 12px; font-weight: 300;
  line-height: 1.65; color: var(--ink-3);
}
.summary-wa-link {
  color: var(--gold);
  border-bottom: 1px solid rgba(166,124,58,0.3);
  transition: border-color 0.2s;
}
.summary-wa-link:hover { border-color: var(--gold); }

/* ── SUCCESS STATE ── */
.booking-success {
  padding: 120px var(--pad);
  text-align: center;
  min-height: 60vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.booking-success-icon {
  width: 56px; height: 56px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  color: var(--gold);
}
.booking-success-h {
  font-family: var(--fi);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300; font-style: italic;
  letter-spacing: -0.02em; color: var(--ink); margin-bottom: 16px;
}
.booking-success-body {
  font-family: var(--fb); font-size: 15px; font-weight: 300;
  line-height: 1.75; color: var(--ink-3);
  max-width: 420px; margin: 0 auto 36px;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .booking-wrap { grid-template-columns: 1fr; }
  .booking-main { padding: 40px var(--pad-sm) 72px; border-right: none; }
  .booking-summary {
    position: static; min-height: auto;
    padding: 32px var(--pad-sm);
    border-left: none; border-top: 2px solid var(--warm-3);
    order: -1;
  }
  .date-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-field-full { grid-column: auto; }
}

/* ═══════════════════════════════════════════
   WHY SECTION
═══════════════════════════════════════════ */
.why {
  background: var(--mp);
  padding: 100px var(--pad);
}
.why-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.why-eyebrow {
  font-family: var(--fb);
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--md);
  margin-bottom: 20px;
}
.why-rule {
  width: 28px; height: 1.5px;
  background: var(--go);
  margin: 0 auto 28px;
}
.why-h2 {
  font-family: var(--fd);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 300; line-height: 1.18;
  letter-spacing: -0.02em; color: var(--tx);
  margin-bottom: 28px;
}
.why-body {
  font-family: var(--fb);
  font-size: 15px; font-weight: 300;
  line-height: 1.85; color: var(--ts);
  margin-bottom: 40px;
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--tx);
  border: 1px solid var(--tx);
  padding: 13px 28px;
  font-family: var(--fb);
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--tx); color: var(--warm); }

@media (max-width: 860px) {
  .why { padding: 72px var(--pad-sm); }
}
