/*
  The Salon by Maria Clara — design system
  ----------------------------------------
  Brand assets: real client vectors (wordmark, circular badge, "togetherness"
  rings) extracted from her existing site. Do NOT replace with typeset text.

  Font note: brand guide specifies "Lorenza" (headers) / "Lamore" (body) — paid
  faces we don't have files for. Substituting Cormorant Garamond (high-contrast
  elegant serif, closest to the Lorenza wordmark proportions) for display and
  Jost (geometric humanist sans) for UI/body. Swap here if real files arrive.
*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --linen: #F5F3F2;
  --linen-warm: #EFEAE4;
  --ebony: #020202;
  --colada: #2B2327;
  --sunflower: #DBA263;
  --copper: #9F481D;
  --marigold: #B0732C;
  --butter: #F4CE8F;
  --malbec: #480E19;
  --evergreen: #18240B;
  --line: rgba(43,35,39,.14);
  --line-light: rgba(245,243,242,.24);

  --display: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1280px;
  --gutter: clamp(20px, 5vw, 72px);
  --section-y: clamp(72px, 11vh, 150px);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Brand marks ----------
   Rendered as CSS masks so one SVG file recolors instantly via background-color
   (the header wordmark inverts white -> ink on scroll with no flash or swap). */
.brand-wordmark, .brand-badge, .brand-rings {
  display: block;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
  background-color: currentColor;
}
.brand-wordmark {
  -webkit-mask-image: url('/assets/img/brand-wordmark.svg');
  mask-image: url('/assets/img/brand-wordmark.svg');
  aspect-ratio: 203.8 / 26.91;
}
.brand-badge {
  -webkit-mask-image: url('/assets/img/brand-badge.svg');
  mask-image: url('/assets/img/brand-badge.svg');
  aspect-ratio: 755.05 / 846.13;
}
.brand-rings {
  -webkit-mask-image: url('/assets/img/brand-rings.svg');
  mask-image: url('/assets/img/brand-rings.svg');
  aspect-ratio: 166.86 / 286.24;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--linen);
  color: var(--colada);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.wrap { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); width: 100%; }
.wrap--narrow { max-width: 940px; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 300; color: var(--ebony); margin: 0; line-height: 1.08; letter-spacing: -.01em; }
h1 { font-size: clamp(44px, 7vw, 92px); }
h2 { font-size: clamp(32px, 4.6vw, 60px); }
h3 { font-size: clamp(21px, 2vw, 27px); }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

/* The signature move on her brand: small, wide-tracked caps */
.kicker {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--copper);
  display: block;
}
.kicker--light { color: var(--butter); }
.kicker--muted { color: rgba(43,35,39,.5); }

.lede { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.7; font-weight: 300; }
.serif-lede {
  font-family: var(--display);
  font-size: clamp(20px, 2.05vw, 27px);
  line-height: 1.45;
  font-weight: 300;
  color: var(--ebony);
}
.measure { max-width: 62ch; }
.center { text-align: center; }
.center .measure, .measure.center { margin-inline: auto; }

.rule { width: 1px; height: 56px; background: var(--line); margin: 0 auto; border: none; }
.rule--light { background: var(--line-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: .28em; text-transform: uppercase;
  padding: 18px 40px; border: 1px solid currentColor; background: transparent;
  cursor: pointer; position: relative; overflow: hidden;
  transition: color .45s var(--ease), border-color .45s var(--ease);
}
/* wipe-fill hover, reads more couture than a flat color swap */
.btn::after {
  content: ""; position: absolute; inset: 0; background: currentColor;
  transform: scaleX(0); transform-origin: right center;
  transition: transform .45s var(--ease); z-index: 0;
}
.btn > * , .btn { position: relative; }
.btn span { position: relative; z-index: 1; }
.btn:hover::after { transform: scaleX(1); transform-origin: left center; }

.btn--dark { color: var(--ebony); }
.btn--dark:hover { color: var(--linen); }
.btn--light { color: var(--linen); }
.btn--light:hover { color: var(--ebony); }
.btn--copper { color: var(--copper); }
.btn--copper:hover { color: var(--linen); }
.btn--solid {
  background: var(--copper); border-color: var(--copper); color: var(--linen);
}
.btn--solid::after { background: var(--ebony); }
.btn--solid:hover { color: var(--linen); border-color: var(--ebony); }
.btn--sm { padding: 13px 26px; letter-spacing: .22em; }
.btn--block { display: flex; width: 100%; }

/* ---------- Header ---------- */
.promo-banner {
  background: var(--malbec); color: var(--butter); text-align: center;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; padding: 11px 20px;
  display: none; position: relative; z-index: 60;
}
.promo-banner.is-active { display: block; }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .5s var(--ease), border-color .5s var(--ease), padding .5s var(--ease);
  border-bottom: 1px solid transparent;
  padding: 12px 0;
}
body.has-promo .site-header { top: 41px; }
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.site-header .brand-wordmark { width: clamp(150px, 15vw, 205px); }
/* Over the hero photo the wordmark is white; once the header solidifies it inverts to ink */
.site-header .brand-wordmark { background-color: var(--linen); transition: background-color .5s var(--ease); }

.site-header nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); }
.site-header nav a {
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--linen);
  position: relative; padding: 4px 0; transition: color .5s var(--ease), opacity .3s;
  white-space: nowrap;
}
.site-header nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.site-header nav a:hover::after, .site-header nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.site-header nav a.is-active { color: var(--butter); }

/* Solid state after scroll */
.site-header.is-solid {
  background: var(--linen); border-bottom-color: var(--line); padding: 6px 0;
}
.site-header.is-solid .brand-wordmark { background-color: var(--ebony); }
.site-header.is-solid nav a { color: var(--colada); }
.site-header.is-solid nav a.is-active { color: var(--copper); }

.nav-book { border: 1px solid currentColor; padding: 11px 22px; }
.site-header nav a.nav-book::after { display: none; }
.nav-book:hover { background: var(--linen); color: var(--ebony) !important; }
.site-header.is-solid .nav-book { background: var(--copper); border-color: var(--copper); color: var(--linen) !important; }
.site-header.is-solid .nav-book:hover { background: var(--ebony); border-color: var(--ebony); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle i { display: block; width: 26px; height: 1px; background: var(--linen); margin: 6px 0; transition: background .5s var(--ease), transform .4s var(--ease), opacity .3s; }
.site-header.is-solid .nav-toggle i { background: var(--ebony); }
.nav-toggle.is-open i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open i:nth-child(2) { opacity: 0; }
.nav-toggle.is-open i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; background: var(--ebony); z-index: 45;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  opacity: 0; pointer-events: none; transition: opacity .45s var(--ease);
}
.mobile-nav.is-open { opacity: 1; pointer-events: auto; }
.mobile-nav a {
  font-family: var(--display); font-size: 32px; color: var(--linen); padding: 10px 0;
}
.mobile-nav a.mn-book { font-family: var(--sans); font-size: 11px; letter-spacing: .28em; text-transform: uppercase; border: 1px solid var(--linen); padding: 16px 36px; margin-top: 22px; }

@media (max-width: 900px) {
  .site-header nav { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 88svh; display: grid; place-items: center;
  background: var(--ebony) center/cover no-repeat; overflow: hidden; text-align: center;
}
/* Only enough gradient to hold the header + copy legible — the photo stays the hero */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2,2,2,.46) 0%, rgba(2,2,2,0) 24%),
    linear-gradient(0deg, rgba(2,2,2,.72) 0%, rgba(2,2,2,.30) 34%, rgba(2,2,2,0) 62%);
}
.hero .hero-inner { position: relative; z-index: 2; padding: 130px var(--gutter) 90px; width: 100%; }
.hero-badge {
  width: clamp(150px, 17vw, 232px); margin: 0 auto clamp(26px, 4vh, 48px);
  animation: fadeUp 1.5s var(--ease) both;
}
.hero-badge { background-color: var(--linen); }
.hero h1 {
  color: var(--linen); font-family: var(--sans); font-weight: 300;
  font-size: clamp(13px, 1.5vw, 17px); letter-spacing: .42em; text-transform: uppercase;
  line-height: 1.9; margin-bottom: 26px;
  animation: fadeUp 1.5s .18s var(--ease) both;
}
.hero .hero-sub {
  color: rgba(245,243,242,.86); max-width: 500px; margin: 0 auto 40px;
  font-size: 15px; line-height: 1.85;
  animation: fadeUp 1.5s .32s var(--ease) both;
}
.hero .hero-cta { animation: fadeUp 1.5s .46s var(--ease) both; }

.scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: rgba(245,243,242,.6);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint::after { content: ""; width: 1px; height: 42px; background: rgba(245,243,242,.4); animation: drop 2.4s var(--ease) infinite; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes drop { 0%,100% { transform: scaleY(.3); transform-origin: top; opacity: .3; } 50% { transform: scaleY(1); transform-origin: top; opacity: 1; } }

/* Interior page header */
.page-head {
  position: relative; min-height: 62svh; display: grid; place-items: center; text-align: center;
  background: var(--colada) center/cover no-repeat; overflow: hidden;
}
.page-head::before { content: ""; position: absolute; inset: 0; background: rgba(2,2,2,.5); }
.page-head .ph-inner { position: relative; z-index: 2; padding: 140px var(--gutter) 70px; }
.page-head h1 { color: var(--linen); margin-top: 16px; }
.page-head .lede { color: rgba(245,243,242,.84); margin: 22px auto 0; max-width: 560px; }

/* ---------- Sections ---------- */
.section { padding-block: var(--section-y); }
.section--flush-top { padding-top: 0; }
.section--dark { background: var(--ebony); color: rgba(245,243,242,.8); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--linen); }
.section--warm { background: var(--linen-warm); }
.section--white { background: #fff; }

.section-head { margin-bottom: clamp(40px, 6vh, 76px); }
.section-head .kicker { margin-bottom: 18px; }
.section-head.center { text-align: center; }
.section-head.center .measure { margin-inline: auto; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-badge, .hero h1, .hero .hero-sub, .hero .hero-cta { animation: none; }
  .scroll-hint::after { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Creed / statement block ---------- */
.creed-block { text-align: center; }
.creed-block .brand-rings { width: 46px; margin: 0 auto 30px; }
.creed-block .brand-rings { background-color: var(--copper); }

/* ---------- Editorial split ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 90px); align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.split-media.is-tall img { aspect-ratio: 3/4; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--reverse .split-media { order: 0; } }

/* ---------- Values / 3-up ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 60px); }
.value .num {
  font-family: var(--display); font-size: 15px; color: var(--copper);
  letter-spacing: .2em; display: block; margin-bottom: 20px;
  padding-bottom: 16px; border-bottom: 1px solid var(--line);
}
.section--dark .value .num { color: var(--sunflower); border-bottom-color: var(--line-light); }
.value h3 { margin-bottom: 14px; }
@media (max-width: 780px) { .values { grid-template-columns: 1fr; } }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; } }

.stylist { position: relative; }
.stylist .shot { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--linen-warm); }
.stylist .shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.stylist:hover .shot img { transform: scale(1.045); }
.stylist .shot .initial {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--display); font-size: 76px; color: var(--sunflower);
  background: linear-gradient(150deg, var(--linen-warm), #e3d6c6);
}
/* Booking CTA slides up over the photo on hover; always visible on touch */
.stylist .shot .book-over {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px;
  background: linear-gradient(0deg, rgba(2,2,2,.82), rgba(2,2,2,0));
  transform: translateY(101%); transition: transform .5s var(--ease);
}
.stylist:hover .shot .book-over, .stylist:focus-within .shot .book-over { transform: none; }
.stylist .meta { padding-top: 20px; }
.stylist .meta h3 { margin-bottom: 4px; }
.stylist .meta .role { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--copper); }
.stylist .meta .bio { font-size: 14px; margin-top: 12px; color: rgba(43,35,39,.72); }
@media (hover: none) {
  .stylist .shot .book-over { transform: none; }
}

/* ---------- Services ---------- */
.svc-cat { margin-bottom: clamp(46px, 7vh, 84px); }
.svc-cat:last-child { margin-bottom: 0; }
.svc-cat-head { display: flex; align-items: baseline; gap: 20px; margin-bottom: 10px; }
.svc-cat-head h2 { font-size: clamp(28px, 3.4vw, 44px); }
.svc-cat-head .count { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: rgba(43,35,39,.42); }
.svc-row {
  display: grid; grid-template-columns: 1fr auto; gap: 16px 30px; align-items: baseline;
  padding: 22px 0; border-top: 1px solid var(--line);
}
.svc-row .nm { font-family: var(--display); font-size: clamp(19px, 1.8vw, 24px); color: var(--ebony); }
.svc-row .ds { font-size: 14px; color: rgba(43,35,39,.66); margin-top: 5px; max-width: 54ch; }
.svc-row .pr { text-align: right; white-space: nowrap; }
.svc-row .pr .amt { font-family: var(--display); font-size: 20px; color: var(--copper); }
.svc-row .pr .dur { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: rgba(43,35,39,.45); margin-top: 3px; }
@media (max-width: 560px) {
  .svc-row { grid-template-columns: 1fr; }
  .svc-row .pr { text-align: left; }
}

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 8px; }
.gallery .g { overflow: hidden; background: var(--linen-warm); }
.gallery .g img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.gallery .g:hover img { transform: scale(1.05); }
/* editorial rhythm: alternating spans instead of a flat uniform grid */
.gallery .g:nth-child(6n+1) { grid-column: span 7; aspect-ratio: 16/11; }
.gallery .g:nth-child(6n+2) { grid-column: span 5; aspect-ratio: 4/5; }
.gallery .g:nth-child(6n+3) { grid-column: span 4; aspect-ratio: 1; }
.gallery .g:nth-child(6n+4) { grid-column: span 4; aspect-ratio: 1; }
.gallery .g:nth-child(6n+5) { grid-column: span 4; aspect-ratio: 1; }
.gallery .g:nth-child(6n+6) { grid-column: span 12; aspect-ratio: 21/8; }
@media (max-width: 700px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .gallery .g:nth-child(n) { grid-column: span 1; aspect-ratio: 1; }
  .gallery .g:nth-child(6n+1) { grid-column: span 2; aspect-ratio: 16/11; }
}

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; padding: 26px 0; border-block: 1px solid var(--line-light); background: var(--ebony); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: slide 38s linear infinite; }
.marquee span {
  font-family: var(--display); font-size: clamp(22px, 2.6vw, 34px); color: rgba(245,243,242,.62);
  display: flex; align-items: center; gap: 60px; white-space: nowrap;
}
.marquee span::after { content: "·"; color: var(--copper); }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 56px); }
.quote-card .qm { font-family: var(--display); font-size: 46px; color: var(--copper); line-height: .6; display: block; margin-bottom: 20px; }
.quote-card .qt { font-family: var(--display); font-size: clamp(19px, 1.7vw, 23px); line-height: 1.5; color: var(--ebony); font-style: italic; }
.quote-card .qn { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--copper); margin-top: 20px; }
@media (max-width: 820px) { .quotes { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }

/* ---------- Info strip ---------- */
.info-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); }
.info-strip .cell { background: var(--linen); padding: clamp(28px, 4vw, 48px); text-align: center; }
.info-strip .cell .kicker { margin-bottom: 14px; }
.info-strip .cell .v { font-family: var(--display); font-size: clamp(18px, 1.6vw, 22px); color: var(--ebony); line-height: 1.45; }
.info-strip .cell a.v:hover { color: var(--copper); }
@media (max-width: 780px) { .info-strip { grid-template-columns: 1fr; } }

/* ---------- Book list (per-stylist links) ---------- */
.book-list { display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.book-list a {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: var(--linen); padding: 22px 4px; transition: background .4s var(--ease), padding .4s var(--ease);
}
.book-list a:hover { background: #fff; padding-inline: 18px 18px; }
.book-list .who { font-family: var(--display); font-size: 22px; color: var(--ebony); }
.book-list .who small { font-family: var(--sans); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--copper); display: block; margin-top: 3px; }
.book-list .go { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--copper); white-space: nowrap; }

/* ---------- Full-bleed CTA band ---------- */
.cta-band {
  position: relative; padding-block: clamp(90px, 15vh, 190px); text-align: center;
  background: var(--colada) center/cover no-repeat; overflow: hidden;
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: rgba(2,2,2,.66); }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2 { color: var(--linen); }
.cta-band .lede { color: rgba(245,243,242,.82); margin: 20px auto 36px; max-width: 520px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ebony); color: rgba(245,243,242,.62); padding-top: clamp(64px, 9vh, 110px); }
.site-footer .f-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: clamp(30px, 5vw, 70px); padding-bottom: 60px; }
.site-footer .brand-wordmark { width: 200px; margin-bottom: 22px; }
.site-footer .brand-wordmark { background-color: var(--linen); }
.site-footer h4 { font-family: var(--sans); font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--sunflower); margin-bottom: 20px; }
.site-footer p { font-size: 14px; line-height: 1.85; }
.site-footer a:hover { color: var(--butter); }
.site-footer .socials { display: flex; gap: 24px; margin-top: 18px; }
.site-footer .socials a { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; }
.site-footer .f-bottom {
  border-top: 1px solid rgba(245,243,242,.12); padding: 24px 0 30px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: rgba(245,243,242,.36);
}
@media (max-width: 820px) { .site-footer .f-top { grid-template-columns: 1fr; } }

/* ---------- Mobile sticky book bar ---------- */
/* Thumb-zone bar: Call + Book. 48px min targets, safe-area padded so the iOS
   home indicator / Android gesture bar never sits on top of the buttons. */
.mobile-book {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 44; display: none;
  grid-template-columns: 1fr 1.6fr;
  transform: translateY(110%); transition: transform .5s var(--ease);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: var(--ebony);
  box-shadow: 0 -10px 30px rgba(2,2,2,.18);
}
.mobile-book.is-up { transform: none; }
.mobile-book a {
  min-height: 54px; display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
}
.mobile-book .mb-call { background: var(--ebony); color: var(--linen); }
.mobile-book .mb-book { background: var(--copper); color: var(--linen); }
.mobile-book .mb-book:active { background: var(--marigold); }
@media (max-width: 900px) { .mobile-book { display: grid; } }

.skeleton { color: rgba(43,35,39,.4); font-size: 13px; letter-spacing: .1em; padding: 20px 0; }

/* ---------- Info stack (Visit page) ---------- */
.info-stack { border-top: 1px solid var(--line); }
.info-stack .row {
  display: grid; grid-template-columns: 110px 1fr; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--line); align-items: baseline;
}
.info-stack .lbl { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: rgba(43,35,39,.5); }
.info-stack .val { font-family: var(--display); font-size: clamp(17px, 1.5vw, 21px); color: var(--ebony); line-height: 1.45; }
.info-stack a.val:hover, .info-stack .val a:hover { color: var(--copper); }
@media (max-width: 520px) { .info-stack .row { grid-template-columns: 1fr; gap: 4px; } }
