/* Rebecca Slane Skin — production styles
   Palette: "Slate Blue & Mist". No border-radius anywhere (square corners). */

:root {
  --ink: #22282d;
  --slate: #2b3238;
  --slate-700: #39424a;
  --strong: #3c4750;
  --navlink: #4d575e;
  --body: #525c63;
  --accent: #7d8c95;
  --mist: #a7b6bf;
  --mist-hover: #b8c5cd;
  --muted: #838d94;
  --fine: #93a0a8;
  --muted-2: #9aa5ac;
  --on-dark: #aeb8be;
  --on-dark-2: #ccd4da;
  --on-dark-3: #dfe6ea;
  --page: #f3f5f6;
  --band: #e8ecee;
  --card: #f8fafb;
  --hair: #d3dade;
  --hair-2: #dde3e6;
  --light: #edf0f2;
  --nav-hero: #e3e9ec;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, -apple-system, sans-serif;
  --ease-reveal: cubic-bezier(.22, .8, .36, 1);
  --ease-curtain: cubic-bezier(.76, 0, .24, 1);
  --maxw: 1200px;
  --gutter: clamp(20px, 4vw, 32px);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
html { -webkit-text-size-adjust: 100%; }
/* Native hash-jump offset for the fixed nav (JS handles click-driven smooth scroll) */
#about, #treatments, #beauty, #pricing, #faq, #booking { scroll-margin-top: 80px; }
body { margin: 0; background: var(--page); font-family: var(--sans); color: var(--slate-700); }
img { max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: #6f6152; }
em { font-style: italic; }
h1, h2, h3 { margin: 0; }

/* ---------- Keyframes ---------- */
@keyframes kenburns { 0% { transform: scale(1.02) translateY(0); } 100% { transform: scale(1.12) translateY(-14px); } }
@keyframes fadedrop { from { opacity: 0; } to { opacity: 1; } }
@keyframes breathe { 0%, 100% { transform: scale(1); opacity: .5; } 50% { transform: scale(1.08); opacity: .85; } }
@keyframes tippulse { 0%, 100% { r: 3.2; } 50% { r: 4.4; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  text-transform: uppercase;
  cursor: pointer;
  transition: all .35s ease;
  border: 1px solid transparent;
  text-align: center;
}
.btn-primary { background: var(--mist); color: var(--slate); padding: 16px 28px; letter-spacing: .16em; font-size: 11px; font-weight: 400; }
.btn-primary:hover { background: var(--mist-hover); color: var(--slate); }
.btn-outline { border: 1px solid var(--slate); color: var(--slate); padding: 14px 30px; letter-spacing: .18em; font-size: 10.5px; }
.btn-outline:hover { background: var(--slate); color: var(--light); }
.btn-dark { background: var(--slate); color: var(--card); padding: 14px 20px; letter-spacing: .16em; font-size: 11px; font-weight: 500; transition: background .3s ease; }
.btn-dark:hover { background: var(--strong); color: var(--card); }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 200; background: var(--page);
  display: flex; align-items: center; justify-content: center;
  transition: transform 1s var(--ease-curtain);
}
.preloader img { width: 230px; height: auto; animation: fadedrop 1.2s .2s ease both; }
.preloader.hide { transform: translateY(-101%); }
.preloader.gone { display: none; }

/* ---------- Scroll spine (desktop only) ---------- */
.spine {
  position: fixed; left: 26px; top: 0; height: 100vh; width: 56px; z-index: 40;
  pointer-events: none; opacity: 0; transition: opacity 1s ease; display: none;
}
.spine.on { opacity: 1; }
.spine-tip { animation: tippulse 2.4s ease-in-out infinite; }

/* ---------- Mobile scroll progress ---------- */
.mprog { position: fixed; top: 0; left: 0; right: 0; height: 2.5px; z-index: 70; pointer-events: none; display: none; }
.mprog-fill {
  height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), var(--mist));
  transition: width .2s var(--ease-reveal); box-shadow: 0 0 8px rgba(167, 182, 191, .7);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .5s ease, border-color .5s ease;
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center;
  justify-content: space-between; gap: 12px; padding: 14px clamp(16px, 3vw, 32px);
}
.nav-brand { display: flex; align-items: center; gap: 16px; }
.nav-logo { height: clamp(54px, 12vw, 74px); width: auto; flex: none; }
.nav-sub {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--mist);
  font-weight: 300; border-left: 1px solid rgba(167, 182, 191, .35); padding-left: 16px;
  line-height: 1.6; transition: color .5s ease, border-color .5s ease;
}
.nav-menu { display: flex; align-items: center; gap: clamp(10px, 2.2vw, 28px); flex: none; }
.nav-link {
  color: var(--nav-hero); padding: 12px 2px; font-weight: 300; font-size: 13px;
  letter-spacing: .05em; transition: color .5s ease;
}
.nav-link:hover { color: var(--nav-hero); opacity: .75; }
.nav-cta {
  background: var(--mist); color: var(--slate); padding: 13px 22px; letter-spacing: .16em;
  text-transform: uppercase; font-size: 10.5px; transition: background .5s ease, color .5s ease;
}
.nav-burger { display: none; width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-burger span { width: 20px; height: 1.6px; background: var(--nav-hero); display: block; transition: background .5s ease, transform .4s ease, opacity .4s ease; }

.nav.scrolled { background: rgba(243, 245, 246, .92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom-color: var(--hair-2); }
.nav.scrolled .nav-sub { color: var(--muted); border-left-color: var(--hair); }
.nav.scrolled .nav-link { color: var(--navlink); }
.nav.scrolled .nav-link:hover { color: var(--slate); opacity: 1; }
.nav.scrolled .nav-cta { background: var(--slate); color: var(--light); }
.nav.scrolled .nav-burger span { background: var(--slate); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 55; background: rgba(243, 245, 246, .97);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  opacity: 0; visibility: hidden; transition: opacity .4s ease, visibility .4s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: var(--serif); font-weight: 500; font-size: 30px; color: var(--slate); padding: 12px 40px; text-align: center; }
.mobile-menu .book-now-mobile {
  margin-top: 20px; background: var(--slate); color: var(--light); padding: 16px 44px;
  letter-spacing: .18em; text-transform: uppercase; font-size: 12px; font-family: var(--sans);
}

/* ---------- Hero ---------- */
.hero { position: relative; height: 100svh; min-height: 600px; overflow: hidden; background: var(--slate); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; animation: kenburns 24s ease-out both; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(34, 40, 45, .78) 0%, rgba(34, 40, 45, .42) 55%, rgba(34, 40, 45, .12) 100%),
    linear-gradient(180deg, rgba(43, 50, 56, .2) 0%, rgba(43, 50, 56, .4) 70%, var(--slate) 100%);
}
.hero-inner {
  position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 84px var(--gutter) 24px;
  height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}
.hero-line { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease-reveal), transform .9s var(--ease-reveal); }
.hero-line.in { opacity: 1; transform: none; }
.hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(33px, 5.4vw, 70px); line-height: 1.08; color: var(--light); max-width: 780px; }
.hero-sub { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.2vw, 27px); color: var(--mist); margin-top: 16px; }
.hero-p { font-weight: 300; font-size: 16.5px; line-height: 1.7; color: var(--on-dark-2); max-width: 580px; margin-top: 20px; }
.hero-cta { display: flex; gap: 16px 18px; margin-top: 38px; align-items: center; flex-wrap: wrap; }
.hero-textlink { color: var(--nav-hero); font-weight: 300; font-size: 13px; letter-spacing: .08em; border-bottom: 1px solid rgba(232, 225, 213, .4); padding: 15px 4px 4px; }
.hero-textlink:hover { color: var(--nav-hero); }

/* ---------- Trust strip ---------- */
.trust { background: var(--ink); color: var(--muted-2); }
.trust-inner { max-width: var(--maxw); margin: 0 auto; padding: 18px 16px; display: flex; justify-content: center; flex-wrap: nowrap; }
.trust-item {
  display: flex; align-items: center; gap: 6px; padding: 6px clamp(2px, 0.5vw, 12px);
  border-right: 1px solid rgba(154, 165, 172, .18); font-weight: 300;
  font-size: clamp(7px, 0.95vw, 11px); letter-spacing: .04em; text-transform: uppercase; white-space: nowrap;
}
.trust-item:last-child { border-right: none; }
.trust-item .dot { color: var(--mist); font-size: 9px; }

/* ---------- Shared section header ---------- */
.eyebrow { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--accent); font-weight: 300; }
.eyebrow.on-dark { color: var(--mist); }
.section-h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(32px, 4.5vw, 44px); line-height: 1.12; color: var(--slate); margin: 18px 0 16px; }
.section-h2 em { font-weight: 400; }
.section-intro { font-weight: 300; font-size: 15px; line-height: 1.8; color: var(--muted); margin: 0; }
.center-head { text-align: center; margin: 0 auto 70px; }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease-reveal), transform .9s var(--ease-reveal); }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- About ---------- */
.about {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(64px, 9vw, 110px) var(--gutter);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(36px, 6vw, 80px); align-items: center;
}
.about-photo { position: relative; }
.about-photo .frame { position: absolute; top: -24px; left: -24px; width: 100%; height: 100%; border: 1px solid var(--hair); }
.about-photo .pic { position: relative; overflow: hidden; }
.about-photo img { width: 100%; display: block; object-fit: cover; aspect-ratio: 4 / 4.7; }
.about-body p { font-weight: 300; font-size: 15.5px; line-height: 1.85; color: var(--body); margin: 0 0 18px; }
.about-body p:last-of-type { margin-bottom: 34px; }
.about-body strong { font-weight: 400; color: var(--strong); }
.about-body .section-h2 { margin: 18px 0 24px; }
.about-cta { text-align: center; }

/* ---------- Why choose ---------- */
.why { background: var(--slate); padding: clamp(60px, 8vw, 100px) var(--gutter); }
.why-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(36px, 6vw, 70px); align-items: center; }
.why h2 { font-family: var(--serif); font-weight: 500; font-size: 38px; line-height: 1.15; color: var(--light); margin: 18px 0 22px; }
.why h2 em { font-weight: 400; }
.why p { font-weight: 300; font-size: 15px; line-height: 1.85; color: var(--on-dark); margin: 0 0 16px; }
.why p:last-child { margin-bottom: 0; }
.why-list { display: flex; flex-direction: column; }
.why-list .row { display: flex; align-items: center; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--slate-700); }
.why-list .row .dot { color: var(--mist); font-size: 10px; flex: none; }
.why-list .row span:last-child { font-weight: 300; font-size: 14.5px; color: var(--on-dark-3); }

/* ---------- Treatments ---------- */
.treatments { background: var(--band); padding: clamp(64px, 9vw, 110px) 0 clamp(56px, 7vw, 80px); }
.treatments-wrap, .beauty-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.treatments .center-head { max-width: 620px; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.t-card { background: var(--card); display: flex; flex-direction: column; transition: transform .5s var(--ease-reveal), box-shadow .5s; }
.t-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(43, 50, 56, .12); }
.t-card .imgwrap { overflow: hidden; aspect-ratio: 16 / 10; background: var(--hair); position: relative; }
.t-card .imgwrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.4s var(--ease-reveal); }
.t-card:hover .imgwrap img { transform: scale(1.06); }
.t-card .body { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.t-card .meta { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.t-card .cat { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); font-weight: 400; }
.t-card .dur { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 300; white-space: nowrap; }
.t-card h3 { font-family: var(--serif); font-weight: 500; font-size: 25px; color: var(--slate); line-height: 1.15; }
.t-card .desc { font-weight: 300; font-size: 14px; line-height: 1.75; color: var(--body); margin: 0; flex: 1; }
.t-card .foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--hair-2); padding-top: 16px; margin-top: 4px; }
.t-card .price { font-family: var(--serif); font-size: 21px; color: var(--slate); }
.footnote { font-weight: 300; font-size: 12px; color: var(--fine); text-align: center; margin: 40px 0 0; }

/* Unveil curtain */
.unveil-overlay { position: absolute; inset: -1px; background: var(--band); z-index: 3; transition: transform 1.1s var(--ease-curtain); }
.unveil-overlay.open { transform: translateX(102%); }

/* ---------- Beauty ---------- */
.beauty { background: var(--band); padding: 0 0 clamp(64px, 9vw, 110px); }
.beauty-divider { max-width: 840px; margin: 0 auto clamp(48px, 6vw, 72px); border-top: 1px solid var(--hair); }
.beauty .center-head { max-width: 620px; margin-bottom: 50px; }
.beauty-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.b-card { background: var(--card); display: flex; flex-direction: column; transition: transform .5s var(--ease-reveal), box-shadow .5s; }
.b-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(43, 50, 56, .12); }
.b-card .imgwrap { overflow: hidden; aspect-ratio: 4 / 3; background: var(--hair); }
.b-card .imgwrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.b-card .foot { padding: 20px 22px 22px; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.b-card .name { font-family: var(--serif); font-weight: 500; font-size: 20px; color: var(--slate); line-height: 1.15; }
.b-card .price { font-weight: 300; font-size: 12.5px; letter-spacing: .06em; color: var(--muted); white-space: nowrap; }
.center-btn { text-align: center; margin-top: 40px; }

/* ---------- Courses ---------- */
.courses { max-width: var(--maxw); margin: 0 auto; padding: clamp(64px, 9vw, 110px) var(--gutter); }
.courses .center-head { max-width: 560px; }
.courses .center-head .section-h2 { margin-bottom: 12px; }
.courses .center-head .section-intro { line-height: 1.6; }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; align-items: stretch; }
.p-card { padding: 44px 38px; display: flex; flex-direction: column; gap: 6px; position: relative; background: var(--card); border: 1px solid var(--hair-2); }
.p-card.featured { background: var(--slate); border-color: var(--slate); }
.p-card .badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--mist); color: var(--slate); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; padding: 7px 18px; white-space: nowrap; }
.p-card h3 { font-family: var(--serif); font-weight: 500; font-size: 26px; color: var(--slate); line-height: 1.15; }
.p-card.featured h3 { color: var(--light); }
.p-card .dur { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 300; margin-bottom: 26px; }
.p-card.featured .dur { color: var(--muted-2); }
.p-card .tier { display: flex; justify-content: space-between; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--hair-2); }
.p-card.featured .tier { border-bottom-color: var(--slate-700); }
.p-card .tier .label { font-weight: 300; font-size: 14px; color: var(--muted); }
.p-card.featured .tier .label { color: var(--muted-2); }
.p-card .tier .amt-wrap { display: flex; align-items: baseline; gap: 10px; }
.p-card .tier .save { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.p-card .tier .amt { font-family: var(--serif); font-size: 24px; color: var(--slate); }
.p-card.featured .tier .amt { color: var(--light); }
.p-card .btn-wrap { margin-top: auto; padding-top: 32px; }
.p-card .book { display: block; text-align: center; padding: 15px 0; letter-spacing: .18em; text-transform: uppercase; font-size: 10.5px; font-family: var(--sans); transition: opacity .3s ease; border: 1px solid var(--slate); background: transparent; color: var(--slate); }
.p-card.featured .book { background: var(--mist); color: var(--slate); border-color: var(--mist); }
.p-card .book:hover { opacity: .85; }

/* ---------- ZO strip ---------- */
.zo { background: var(--band); border-top: 1px solid var(--hair-2); border-bottom: 1px solid var(--hair-2); }
.zo-inner { max-width: 1080px; margin: 0 auto; padding: clamp(40px, 5vw, 56px) var(--gutter); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px 32px; }
.zo-logo { width: 170px; height: 80px; flex: none; display: flex; align-items: center; justify-content: center; }
.zo-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.zo-text { max-width: 560px; flex: 1 1 380px; }
.zo-text .eyebrow { margin-bottom: 10px; }
.zo-text .headline { font-family: var(--serif); font-weight: 500; font-size: clamp(22px, 2.6vw, 28px); color: var(--slate); line-height: 1.25; }
.zo-text .headline em { font-weight: 400; }

/* ---------- Reviews ---------- */
.reviews { background: var(--slate); padding: clamp(70px, 9vw, 120px) var(--gutter); position: relative; overflow: hidden; }
.reviews .watermark { position: absolute; right: -80px; top: 50%; margin-top: -160px; width: 480px; opacity: .06; animation: breathe 9s ease-in-out infinite; pointer-events: none; }
.reviews-inner { max-width: 820px; margin: 0 auto; text-align: center; position: relative; }
.reviews .stars { color: var(--mist); font-size: 15px; letter-spacing: .4em; margin-bottom: 34px; }
.reviews .quote-box { min-height: 150px; display: flex; align-items: center; justify-content: center; }
.reviews blockquote { font-family: var(--serif); font-weight: 400; font-style: italic; font-size: clamp(24px, 3vw, 34px); line-height: 1.45; color: var(--light); margin: 0; transition: opacity .8s ease; }
.reviews .author { font-weight: 300; font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted-2); margin-top: 30px; transition: opacity .8s ease; }
.reviews .dots { display: flex; gap: 2px; justify-content: center; margin-top: 24px; }
.reviews .dots button { width: 36px; height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; background: none; border: none; padding: 0; }
.reviews .dots button span { width: 24px; height: 2px; background: var(--slate-700); transition: background .4s; display: block; }
.reviews .dots button.active span { background: var(--mist); }
.reviews .fade-out { opacity: 0; }

/* ---------- Gallery ---------- */
.gallery { max-width: var(--maxw); margin: 0 auto; padding: clamp(64px, 9vw, 110px) var(--gutter); }
.gallery .center-head { max-width: 600px; margin-bottom: 60px; }
.gallery .section-intro { line-height: 1.8; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.gallery-grid .cell { overflow: hidden; aspect-ratio: 4 / 3; background: #eaeef0; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- FAQ ---------- */
.faq { background: var(--band); padding: clamp(64px, 9vw, 110px) var(--gutter); }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq .center-head { margin-bottom: 60px; }
.faq .center-head .section-h2 { margin-bottom: 0; }
.faq-group { margin-bottom: 44px; }
.faq-group > h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; color: var(--slate); margin: 0 0 8px; }
.faq-item { border-bottom: 1px solid var(--hair); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 0; cursor: pointer; width: 100%; background: none; border: none; text-align: left; font-family: var(--sans); }
.faq-q .q-text { font-weight: 400; font-size: 15px; color: var(--strong); }
.faq-q .q-icon { font-family: var(--serif); font-size: 22px; color: var(--accent); flex: none; transition: transform .4s; }
.faq-item.open .faq-q .q-icon { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; opacity: 0; transition: max-height .5s var(--ease-reveal), opacity .5s; }
.faq-item.open .faq-a { max-height: 560px; opacity: 1; }
.faq-a p { font-weight: 300; font-size: 14.5px; line-height: 1.8; color: var(--body); margin: 0 0 22px; max-width: 640px; }
.faq-disclaimer { font-weight: 300; font-size: 12px; line-height: 1.7; color: var(--fine); margin: 10px 0 0; text-align: center; }

/* ---------- Booking ---------- */
.booking { max-width: var(--maxw); margin: 0 auto; padding: clamp(64px, 9vw, 110px) var(--gutter) 120px; }
.booking .center-head { max-width: 560px; margin-bottom: 64px; }
.booking .center-head .section-intro { color: var(--body); font-size: 15.5px; line-height: 1.8; }
.booking-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(32px, 5vw, 60px); align-items: start; }
.contact-col { display: flex; flex-direction: column; gap: 26px; }
.contact-block { border-left: 1px solid var(--mist); padding-left: 22px; }
.contact-block .label { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--accent); font-weight: 300; margin-bottom: 6px; }
.contact-block .phone { font-family: var(--serif); font-size: 26px; color: var(--slate); display: inline-flex; align-items: center; min-height: 44px; }
.contact-block .val { font-weight: 300; font-size: 15px; display: inline-flex; align-items: center; min-height: 44px; }
.contact-block .val.ig { gap: 8px; }
.contact-block .addr { font-weight: 300; font-size: 15px; line-height: 1.7; color: var(--strong); }
.contact-block .tbc { color: var(--fine); font-size: 11px; font-weight: 300; }
.contact-block .directions { font-weight: 300; font-size: 12.5px; letter-spacing: .08em; display: inline-flex; align-items: center; min-height: 44px; border-bottom: 1px solid #ccd4d9; }
.book-panel { background: var(--slate); padding: clamp(34px, 5vw, 52px); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.book-panel img { width: 150px; height: auto; }
.book-panel .title { font-family: var(--serif); font-weight: 500; font-size: 26px; color: var(--light); line-height: 1.25; }
.book-panel p { font-weight: 300; font-size: 14.5px; line-height: 1.8; color: var(--on-dark); margin: 0; max-width: 380px; }
.book-panel .hint { font-weight: 300; font-size: 12px; color: #7f8a91; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); padding: 48px 32px; text-align: center; }
.footer img { width: 130px; height: auto; display: block; margin: 0 auto; }
.footer .tagline { font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: #7f8a91; font-weight: 300; margin-top: 8px; }
.footer .areas { font-weight: 300; font-size: 12px; color: #5f6a72; margin-top: 20px; }
.footer .ig { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; }
.footer .ig a { font-weight: 300; font-size: 12px; color: #7f8a91; display: inline-flex; align-items: center; min-height: 44px; }

/* ---------- Mobile action bar ---------- */
.action-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; display: none; box-shadow: 0 -8px 24px rgba(43, 50, 56, .2); font-family: var(--sans); }
.action-bar a { padding: 17px 0 calc(17px + env(safe-area-inset-bottom)); letter-spacing: .2em; text-transform: uppercase; font-size: 12px; text-align: center; display: block; }
.action-bar .call { width: 34%; background: var(--ink); color: var(--mist); font-weight: 400; }
.action-bar .book { flex: 1; background: var(--mist); color: var(--slate); font-weight: 500; }

/* ---------- Film grain (desktop only) ---------- */
.grain {
  position: fixed; inset: 0; z-index: 90; pointer-events: none; opacity: .04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='140' height='140' filter='url(%23n)'/></svg>");
  display: none;
}

/* ---------- Desktop-only elements ---------- */
@media (min-width: 1385px) { .spine { display: block; } }
@media (min-width: 760px) { .grain { display: block; } }

/* ---------- Mobile (<760px) ---------- */
@media (max-width: 759px) {
  .nav-link { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .mprog { display: block; }
  .action-bar { display: flex; }
  .hero-inner { padding-top: 118px; padding-bottom: 110px; }
  .footer { padding-bottom: calc(116px + env(safe-area-inset-bottom)); }
  .trust-inner { flex-direction: column; align-items: center; }
  .trust-item { border-right: none; white-space: normal; text-align: center; justify-content: center; padding: 7px 0; font-size: 11px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg, .reviews .watermark { animation: none; }
  .hero-line, [data-reveal] { opacity: 1; transform: none; transition: none; }
  .preloader { display: none; }
}
