/* SHAPE ZONE — design system from the Sept 2026 handoff (Reshaping ShapeZone).
   One breakpoint at 1080px: below it an app-like 520px column with a fixed bottom bar,
   above it an 1180px column with a full desktop header. Class prefix: sz- */
:root {
  --sz-bg-page: #EDE6DC; --sz-surface: #FBF6F0; --sz-card: #F3ECE1; --sz-card-alt: #F5EFE5; --sz-chip: #F1E9DD;
  --sz-ink: #1B2733; --sz-ink-deep: #0F1922; --sz-body: #4B5866; --sz-muted: #77848F; --sz-faint: #93A1AE; --sz-dim: #6C7B8A;
  --sz-gold: #B4884F; --sz-gold-light: #E4C79A; --sz-gold-deep: #C79A55; --sz-gold-border: #DCCDB6; --sz-gold-ink: #8C7248;
  --sz-fd: 'Bricolage Grotesque', 'Montserrat', sans-serif; --sz-fb: 'Plus Jakarta Sans', system-ui, sans-serif;
  --sz-px: 20px; --sz-sec: 34px; --sz-blockx: 12px; --sz-blockp: 16px; --sz-header-h: 57px;
}
@media (min-width: 1080px) { :root { --sz-px: 56px; --sz-sec: 72px; --sz-blockx: 32px; --sz-blockp: 44px; } }
html { scroll-behavior: smooth; }
@keyframes sz-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes sz-rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes sz-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
.sz-rise { animation: sz-rise .6s ease both; } .sz-rise--1 { animation-delay: .05s; } .sz-rise--2 { animation-delay: .12s; } .sz-rise--3 { animation-delay: .18s; }
@media (prefers-reduced-motion: reduce) { .sz-rise, .sz-dot, .sz-marq__t { animation: none !important; } }

/* ---------- shell ---------- */
body.sz-body { margin: 0; background: var(--sz-bg-page); }
.sz-page { min-height: 100vh; background: radial-gradient(120% 60% at 50% 0%, #F6EFE4 0%, #EDE6DC 55%, #E5DCD0 100%); display: flex; justify-content: center; }
.sz-shell { width: 100%; max-width: 520px; background: var(--sz-surface); box-shadow: 0 0 90px rgba(31,42,55,.16); position: relative; overflow: clip; padding-bottom: 96px; font-family: var(--sz-fb); color: var(--sz-ink); -webkit-font-smoothing: antialiased; }
@media (min-width: 1080px) { .sz-shell { max-width: 1180px; padding-bottom: 0; } }
.sz-shell a { color: inherit; text-decoration: none; }
.sz-shell * { box-sizing: border-box; }

/* ---------- buttons ---------- */
.sz-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 12px; font-weight: 700; font-size: 13.5px; white-space: nowrap; cursor: pointer; border: 0; font-family: inherit; transition: background .18s ease, transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.sz-btn--dark { background: var(--sz-ink); color: var(--sz-surface) !important; padding: 12px 20px; }
.sz-btn--dark:hover { background: var(--sz-ink-deep); }
.sz-btn--line { background: var(--sz-surface); color: var(--sz-ink) !important; border: 1.5px solid var(--sz-gold-border); padding: 10px 16px; }
.sz-btn--line:hover { background: #F3E7D3; border-color: var(--sz-gold-deep); }
.sz-btn--gold { background: var(--sz-gold-light); color: #22303D !important; padding: 13px 20px; border-radius: 13px; font-size: 14px; }
.sz-btn--gold:hover { background: #F0D9B4; }
.sz-btn--lg { padding: 17px 20px; border-radius: 16px; font-size: 16px; box-shadow: 0 12px 26px rgba(27,39,51,.26); }
.sz-btn--lg:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(27,39,51,.32); }
.sz-btn--lgline { padding: 16px 20px; border-radius: 16px; font-size: 15.5px; }
.sz-btn--md { padding: 12px 18px; font-size: 14px; }
.sz-btn--onGold { background: rgba(34,48,61,.12); color: #22303D !important; padding: 12px 18px; font-size: 14px; }
.sz-btn--onGold:hover { background: rgba(34,48,61,.2); }
.sz-btn--ghost { background: rgba(255,255,255,.09); color: var(--sz-surface) !important; padding: 14px; border-radius: 14px; font-weight: 600; font-size: 14px; }
.sz-btn--ghost:hover { background: rgba(255,255,255,.16); }
.sz-btn--onDark { background: rgba(255,255,255,.09); color: var(--sz-gold-light) !important; padding: 11px 16px; font-size: 13.5px; }
.sz-btn--onDark:hover { background: rgba(228,199,154,.18); color: var(--sz-surface) !important; }
.sz-arrow { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; background: var(--sz-ink); color: var(--sz-surface); display: inline-flex; align-items: center; justify-content: center; font-size: 14px; }
.sz-arrow--s { width: 26px; height: 26px; font-size: 12px; }

/* ---------- header ---------- */
.sz-hdr { position: sticky; top: 0; z-index: 40; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); background: rgba(251,246,240,.86); border-bottom: 1px solid rgba(31,42,55,.08); display: flex; align-items: center; justify-content: space-between; padding: 10px var(--sz-px); }
.sz-brand { display: flex; align-items: center; gap: 9px; }
.sz-brand img { width: 34px; height: 34px; object-fit: cover; border-radius: 10px; display: block; }
.sz-brand span { font-family: var(--sz-fd); font-weight: 700; font-size: 15px; letter-spacing: .14em; white-space: nowrap; }
.sz-nav { display: none; align-items: center; gap: 24px; }
@media (min-width: 1080px) { .sz-nav { display: flex; } }
.sz-nav > a, .sz-dd > a { font-size: 14px; font-weight: 600; color: var(--sz-body); white-space: nowrap; }
.sz-nav > a:hover, .sz-dd > a:hover, .sz-nav > a.is-here, .sz-hdr.is-dd .sz-dd > a { color: var(--sz-gold); }
.sz-mob { display: flex; align-items: center; gap: 8px; }
@media (min-width: 1080px) { .sz-mob { display: none; } }
.sz-ico { width: 38px; height: 38px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 16px; border: 0; cursor: pointer; font-family: inherit; }
.sz-ico--chip { background: var(--sz-chip); color: var(--sz-ink); }
.sz-ico--dark { background: var(--sz-ink); color: var(--sz-surface); font-size: 15px; }
.sz-back { display: flex; align-items: center; gap: 7px; padding: 9px 14px; border-radius: 12px; background: var(--sz-chip); font-size: 13px; font-weight: 600; }
/* treatments dropdown */
.sz-ddp { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--sz-surface); border-bottom: 1px solid rgba(31,42,55,.1); box-shadow: 0 24px 44px rgba(31,42,55,.14); padding: 28px var(--sz-px) 32px; grid-template-columns: repeat(4, 1fr); gap: 28px; animation: sz-rise .22s ease both; }
.sz-hdr.is-dd .sz-ddp { display: grid; }
.sz-ddp__h { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.sz-ddp__h b { font-size: 11px; font-weight: 700; letter-spacing: .14em; color: var(--sz-gold-ink); }
.sz-zico { width: 26px; height: 26px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; flex: 0 0 auto; }
.sz-ddp__l { display: flex; flex-direction: column; gap: 2px; }
.sz-ddp__l a { padding: 8px 10px; margin-left: -10px; border-radius: 9px; font-size: 13.5px; font-weight: 500; color: var(--sz-body); }
.sz-ddp__l a:hover { background: var(--sz-chip); color: var(--sz-ink); }
/* mobile nav sheet */
.sz-sheet { display: none; position: sticky; top: var(--sz-header-h); z-index: 39; background: var(--sz-ink); }
.sz-sheet.is-open { display: block; }
.sz-sheet__q { padding: 14px 16px 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sz-sheet__q a { color: var(--sz-surface); padding: 12px 14px; border-radius: 12px; background: rgba(255,255,255,.08); font-weight: 600; font-size: 14px; }
.sz-sheet__z { padding: 2px 16px 20px; display: flex; flex-direction: column; gap: 16px; }
.sz-sheet__zh { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.sz-sheet__zh b { font-size: 10.5px; font-weight: 700; letter-spacing: .14em; color: var(--sz-gold-light); }
.sz-sheet__l { display: flex; flex-direction: column; }
.sz-sheet__l a { padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 14px; font-weight: 500; color: #C2CDD8; }
.sz-sheet__l a:hover { color: var(--sz-gold-light); }

/* ---------- type & sections ---------- */
.sz-sec { padding: var(--sz-sec) var(--sz-px) 8px; scroll-margin-top: calc(var(--sz-header-h) + 12px); }
.sz-sec--flush { padding-left: 0; padding-right: 0; }
.sz-sec--flush > .sz-in { padding: 0 var(--sz-px); }
.sz-eye { font-size: 11.5px; font-weight: 700; letter-spacing: .18em; color: var(--sz-gold); }
.sz-eye--on { color: var(--sz-gold-light); }
.sz-h1 { font-family: var(--sz-fd); font-weight: 800; font-size: 44px; line-height: 1.02; letter-spacing: -.03em; color: var(--sz-ink); margin: 18px 0 0; text-wrap: pretty; }
@media (min-width: 1080px) { .sz-h1 { font-size: 62px; } }
.sz-h1 em { font-style: normal; background: linear-gradient(96deg, #C79A55, #E4B872 55%, #B4884F); -webkit-background-clip: text; background-clip: text; color: transparent; }
.sz-h2 { font-family: var(--sz-fd); font-weight: 700; font-size: 29px; line-height: 1.08; letter-spacing: -.025em; color: var(--sz-ink); margin: 9px 0 8px; text-wrap: pretty; }
@media (min-width: 1080px) { .sz-h2 { font-size: 40px; } }
.sz-h2--on { color: var(--sz-surface); }
.sz-h2--gold { color: #22303D; }
.sz-lead { font-size: 15.5px; line-height: 1.6; color: var(--sz-body); margin: 14px 0 0; max-width: 38ch; text-wrap: pretty; }
.sz-p { font-size: 14.5px; line-height: 1.6; color: var(--sz-body); margin: 0 0 12px; text-wrap: pretty; }
.sz-p--l { font-size: 15px; line-height: 1.65; margin: 0; }
.sz-p--on { color: #A9B6C2; font-size: 14px; line-height: 1.55; }
.sz-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
@media (min-width: 1080px) { .sz-ctas--row { flex-direction: row; } .sz-ctas--row > * { flex: 1; } }

/* ---------- hero ---------- */
.sz-hero { position: relative; padding: 26px var(--sz-px); background: linear-gradient(170deg, #FBF6F0 0%, #F7EDE6 48%, #FBF6F0 100%); overflow: hidden; }
@media (min-width: 1080px) { .sz-hero { padding: 56px var(--sz-px); } }
.sz-blur { position: absolute; border-radius: 50%; pointer-events: none; }
.sz-blur--coral { top: -90px; right: -70px; width: 230px; height: 230px; background: radial-gradient(circle at 30% 30%, #F6C9BC, #F0A992); opacity: .42; filter: blur(6px); }
.sz-blur--teal { top: 120px; left: -90px; width: 210px; height: 210px; background: radial-gradient(circle at 40% 40%, #B9E4E2, #7CC9C5); opacity: .36; filter: blur(8px); }
.sz-hero__g { position: relative; display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1080px) { .sz-hero__g { grid-template-columns: 1.05fr .95fr; } }
.sz-pill { position: relative; display: inline-flex; align-items: center; gap: 8px; background: var(--sz-ink); color: #F2E3C8; padding: 7px 14px; border-radius: 99px; font-size: 12px; font-weight: 600; letter-spacing: .04em; }
.sz-dot { width: 7px; height: 7px; border-radius: 50%; background: #7ED9A6; animation: sz-pulse 2s ease-in-out infinite; flex: 0 0 auto; }
.sz-rating { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding: 12px 14px; background: rgba(255,255,255,.7); border: 1px solid rgba(31,42,55,.07); border-radius: 14px; font-size: 12.5px; color: var(--sz-body); line-height: 1.35; }
.sz-stars { color: var(--sz-gold-deep); font-size: 14px; letter-spacing: .08em; white-space: nowrap; }
.sz-rating strong { color: var(--sz-ink); }
.sz-hero__ph { display: none; position: relative; }
@media (min-width: 1080px) { .sz-hero__ph { display: block; } }
.sz-hero__ph img { width: 100%; height: 520px; object-fit: cover; border-radius: 28px; box-shadow: 0 26px 60px rgba(31,42,55,.22); display: block; }
.sz-hero__ov { position: absolute; bottom: 20px; left: 20px; right: 20px; padding: 16px 18px; border-radius: 18px; background: rgba(251,246,240,.94); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.sz-hero__ov b { font-family: var(--sz-fd); font-weight: 700; font-size: 16px; display: block; }
.sz-hero__ov small { font-size: 12.5px; color: #5C6975; display: block; margin-top: 2px; }

/* ---------- marquee ---------- */
.sz-marq { background: var(--sz-ink); overflow: hidden; padding: 11px 0; }
.sz-marq__t { display: flex; width: max-content; animation: sz-marquee 26s linear infinite; }
.sz-marq__t > div { display: flex; gap: 26px; padding-right: 26px; font-size: 12px; font-weight: 600; letter-spacing: .14em; color: var(--sz-gold-light); white-space: nowrap; }
.sz-marq__t i { font-style: normal; color: #5A6B7C; }

/* ---------- zones & cards ---------- */
.sz-zone { padding: 20px var(--sz-px) 4px; }
.sz-zone__h { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.sz-zone__ico { width: 34px; height: 34px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex: 0 0 auto; }
.sz-zone__n { font-family: var(--sz-fd); font-weight: 700; font-size: 18px; letter-spacing: -.01em; }
.sz-zone__b { font-size: 12px; color: var(--sz-muted); }
.sz-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (min-width: 1080px) { .sz-cards { grid-template-columns: repeat(4, 1fr); } }
.sz-cards--3 { grid-template-columns: 1fr; }
@media (min-width: 1080px) { .sz-cards--3 { grid-template-columns: repeat(3, 1fr); } }
.sz-card { display: flex; flex-direction: column; justify-content: space-between; gap: 10px; min-height: 150px; padding: 14px; border-radius: 18px; border: 1px solid rgba(31,42,55,.06); transition: transform .2s ease, box-shadow .2s ease; }
.sz-card:hover { transform: translateY(-3px); box-shadow: 0 14px 26px rgba(31,42,55,.13); }
.sz-card__n { font-family: var(--sz-fd); font-weight: 700; font-size: 15px; line-height: 1.2; letter-spacing: -.01em; }
.sz-card__d { font-size: 12px; line-height: 1.45; color: #56646F; margin-top: 6px; text-wrap: pretty; }
.sz-card__f { display: flex; align-items: center; justify-content: space-between; font-size: 13px; font-weight: 700; }

/* ---------- dark / gold blocks ---------- */
.sz-block { margin: var(--sz-sec) var(--sz-blockx) 0; padding: var(--sz-blockp); background: var(--sz-ink); border-radius: 26px; scroll-margin-top: calc(var(--sz-header-h) + 12px); color: var(--sz-surface); }
.sz-block--gold { background: linear-gradient(120deg, #C79A55, #E4B872); color: #22303D; }
.sz-block--gold2 { background: linear-gradient(125deg, #C79A55 0%, #E4B872 60%, #D9A961 100%); color: #22303D; }
.sz-block--tint { color: var(--sz-ink); }

/* ---------- price tabs & rows ---------- */
.sz-tabs { display: flex; gap: 8px; overflow-x: auto; padding: 0 16px 14px; margin: 0 -16px; scrollbar-width: none; }
.sz-tabs::-webkit-scrollbar { display: none; }
.sz-tab { flex: 0 0 auto; padding: 10px 16px; border-radius: 99px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); color: #C2CDD8; font-family: inherit; font-weight: 600; font-size: 13.5px; cursor: pointer; white-space: nowrap; transition: background .18s ease; }
.sz-tab.is-on { background: var(--sz-gold-light); color: var(--sz-ink); border-color: var(--sz-gold-light); }
.sz-prow { display: grid; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 1080px) { .sz-prow { grid-template-columns: 1fr 1fr; gap: 0 28px; } }
.sz-pr { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 12px; border-radius: 14px; border-bottom: 1px solid rgba(255,255,255,.08); transition: background .18s ease; color: var(--sz-surface); }
.sz-pr:hover { background: rgba(255,255,255,.07); }
.sz-pr__n { font-size: 14.5px; font-weight: 600; line-height: 1.3; }
.sz-pr__d { font-size: 12px; color: var(--sz-faint); margin-top: 3px; }
.sz-pr__r { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.sz-pr__p { font-family: var(--sz-fd); font-weight: 700; font-size: 16px; color: var(--sz-gold-light); white-space: nowrap; }
.sz-pr__a { font-size: 12px; color: var(--sz-dim); }
.sz-gcard { margin-top: 18px; padding: 16px; border-radius: 16px; background: linear-gradient(120deg, #C79A55, #E4B872); color: #22303D; }
.sz-gcard b { font-family: var(--sz-fd); font-weight: 700; font-size: 17px; display: block; }
.sz-gcard p { font-size: 13.5px; line-height: 1.5; margin: 5px 0 0; color: #3A4855; }
.sz-gcard__b { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }

/* ---------- carousels ---------- */
.sz-rail { display: flex; gap: 12px; overflow-x: auto; padding: 0 var(--sz-px) 6px; scrollbar-width: none; }
.sz-rail::-webkit-scrollbar { display: none; }
.sz-rail > * { flex: 0 0 78%; }
@media (min-width: 1080px) { .sz-rail > * { flex: 0 0 300px; } }
.sz-shot { border-radius: 20px; overflow: hidden; border: 1px solid rgba(31,42,55,.1); background: var(--sz-chip); }
.sz-shot__im { height: 220px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.sz-shot__im img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sz-shot__c { padding: 12px 14px; }
.sz-shot__c b { font-weight: 700; font-size: 14px; display: block; }
.sz-shot__c span { font-size: 12px; color: var(--sz-muted); margin-top: 3px; display: block; }
.sz-rev { padding: 18px; border-radius: 20px; background: var(--sz-card); border: 1px solid rgba(31,42,55,.07); display: flex; flex-direction: column; gap: 10px; flex-basis: 80% !important; }
@media (min-width: 1080px) { .sz-rev { flex-basis: 320px !important; } }
.sz-rev p { margin: 0; font-size: 14.5px; line-height: 1.6; color: #33404C; text-wrap: pretty; }
.sz-rev small { font-size: 12.5px; font-weight: 600; color: var(--sz-muted); margin-top: auto; }
.sz-rev .sz-stars { font-size: 13px; }

/* ---------- studio ---------- */
.sz-studio { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.sz-studio img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 16px; display: block; }
/* the shopfront: a squarer tile so the whole height of the photo shows, not a letterboxed strip */
.sz-studio img.is-wide { grid-column: 1 / -1; aspect-ratio: 4 / 3; border-radius: 18px; }
@media (min-width: 1080px) {
  .sz-studio { grid-template-columns: repeat(4, 1fr); grid-auto-flow: dense; }
  .sz-studio img.is-wide { grid-column: span 2; grid-row: span 2; }
}
.sz-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
.sz-stat { padding: 14px 12px; border-radius: 16px; text-align: center; }
.sz-stat b { font-family: var(--sz-fd); font-weight: 800; font-size: 22px; display: block; }
.sz-stat span { font-size: 11.5px; color: #5C6975; line-height: 1.3; margin-top: 2px; display: block; }

/* ---------- FAQ ---------- */
.sz-faqs { display: grid; grid-template-columns: 1fr; gap: 8px 24px; align-items: start; }
@media (min-width: 1080px) { .sz-faqs { grid-template-columns: 1fr 1fr; } }
.sz-faq { border-radius: 16px; background: var(--sz-card); border: 1px solid rgba(31,42,55,.07); overflow: hidden; }
.sz-faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 16px; background: transparent; border: 0; cursor: pointer; text-align: left; font-family: inherit; font-size: 14.5px; font-weight: 600; color: var(--sz-ink); }
.sz-faq__i { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: var(--sz-ink); color: var(--sz-surface); display: flex; align-items: center; justify-content: center; font-size: 13px; }
.sz-faq__a { display: none; margin: 0; padding: 0 16px 16px; font-size: 14px; line-height: 1.62; color: var(--sz-body); text-wrap: pretty; }
.sz-faq.is-open .sz-faq__a { display: block; }

/* ---------- visit ---------- */
.sz-visit__addr { display: block; font-size: 15px; line-height: 1.5; color: #D3DCE4; margin: 0 0 16px; }
.sz-visit__addr:hover { color: var(--sz-gold-light); }
.sz-visit__g { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
@media (min-width: 1080px) { .sz-visit__g { grid-template-columns: 1fr 1fr; } }
.sz-map { display: block; height: 150px; border-radius: 18px; background-image: repeating-linear-gradient(135deg, #26323E 0 12px, #2C3946 12px 24px); border: 1px solid rgba(255,255,255,.1); position: relative; color: #9FB0BE !important; }
@media (min-width: 1080px) { .sz-map { height: 330px; } }
.sz-map:hover { border-color: var(--sz-gold-deep); }
.sz-map { overflow: hidden; }
.sz-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.sz-map__load { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); padding: 11px 18px; border-radius: 99px; background: var(--sz-gold); color: #1B2733; font-weight: 700; font-size: 13px; border: 0; cursor: pointer; font-family: inherit; }
.sz-map__load:hover { background: var(--sz-gold-light); }
.sz-map.is-on .sz-map__load { display: none; }
.sz-map__open { position: absolute; right: 10px; bottom: 10px; padding: 7px 12px; border-radius: 99px; background: rgba(27,39,51,.88); color: #F6EEDC !important; font-size: 12px; font-weight: 600; }
.sz-map__open:hover { background: var(--sz-ink); }
.sz-ph { width: 17px; height: 17px; flex: 0 0 auto; }
.sz-hours { display: flex; flex-direction: column; gap: 14px; margin-top: 18px; }
.sz-hours div { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.1); }
.sz-hours span:first-child { font-size: 13px; color: var(--sz-faint); }
.sz-hours span:last-child { font-size: 14px; font-weight: 600; color: var(--sz-surface); }
.sz-hours .is-closed span:last-child { color: var(--sz-faint); }
.sz-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }

/* ---------- footer ---------- */
.sz-foot { margin-top: var(--sz-sec); background: var(--sz-ink); padding: var(--sz-blockp) var(--sz-px) 26px; position: relative; overflow: hidden; color: var(--sz-surface); }
.sz-foot__glow { position: absolute; top: -120px; right: -90px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, rgba(228,199,154,.28), rgba(228,199,154,0) 70%); }
.sz-foot__g { position: relative; display: grid; grid-template-columns: 1fr; gap: 30px; align-items: start; }
@media (min-width: 1080px) { .sz-foot__g { grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; } }
.sz-foot__logo { width: 200px; height: auto; display: block; }
@media (min-width: 1080px) { .sz-foot__logo { width: 240px; } }
.sz-foot__tag { font-size: 13px; color: var(--sz-faint); margin-top: 16px; letter-spacing: .02em; }
.sz-foot__h { font-size: 10.5px; font-weight: 700; letter-spacing: .18em; color: var(--sz-gold-light); padding-bottom: 12px; border-bottom: 1px solid rgba(228,199,154,.28); }
.sz-foot__addr { display: block; font-size: 14.5px; line-height: 1.5; color: #D3DCE4; margin-top: 14px; }
.sz-foot__tel { display: block; font-family: var(--sz-fd); font-weight: 700; font-size: 18px; color: var(--sz-surface); margin-top: 14px; letter-spacing: -.01em; }
.sz-foot__mail { display: block; font-size: 13.5px; color: var(--sz-faint); margin-top: 8px; }
.sz-foot a:hover { color: var(--sz-gold-light); }
.sz-foot__hrs div { display: flex; justify-content: space-between; gap: 14px; margin-top: 9px; }
.sz-foot__hrs div:first-of-type { margin-top: 14px; }
.sz-foot__hrs div.is-closed { padding-top: 9px; border-top: 1px solid rgba(255,255,255,.08); }
.sz-foot__hrs span:first-child { font-size: 13.5px; color: var(--sz-faint); white-space: nowrap; }
.sz-foot__hrs span:last-child { font-size: 14px; font-weight: 700; color: var(--sz-surface); white-space: nowrap; }
.sz-foot__hrs .is-closed span:last-child { color: var(--sz-dim); font-weight: 600; }
.sz-foot__soc { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.sz-foot__soc a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; border-radius: 13px; background: rgba(255,255,255,.07); color: #D3DCE4; font-size: 14px; font-weight: 600; }
.sz-foot__soc a:hover { background: rgba(228,199,154,.16); color: var(--sz-surface); }
.sz-foot__soc i { font-style: normal; font-size: 12px; color: var(--sz-gold-light); }
.sz-foot__area { position: relative; margin-top: 34px; padding: 16px 18px; border-radius: 16px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); }
.sz-foot__area b { font-size: 10.5px; font-weight: 700; letter-spacing: .18em; color: #8697A6; display: block; }
.sz-foot__area p { font-size: 14px; line-height: 1.55; color: #C2CDD8; margin: 7px 0 0; text-wrap: pretty; }
.sz-foot__legal { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; margin-top: 26px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12.5px; color: var(--sz-dim); }
.sz-foot__legal div { display: flex; flex-wrap: wrap; gap: 20px; }
.sz-foot__legal a { color: var(--sz-faint); }

/* ---------- fixed bottom bar (phones) ---------- */
.sz-bar { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%); z-index: 50; width: 100%; max-width: 520px; padding: 10px 14px 14px; background: linear-gradient(to top, rgba(251,246,240,.98) 62%, rgba(251,246,240,0)); display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
@media (min-width: 1080px) { .sz-bar { display: none; } }
.sz-bar a { display: flex; align-items: center; justify-content: center; gap: 7px; padding: 15px 10px; border-radius: 15px; font-weight: 700; font-size: 14px; }
.sz-bar__line { background: var(--sz-surface); border: 1.5px solid var(--sz-gold-border); color: var(--sz-ink) !important; }
.sz-bar__line:hover { background: #F3E7D3; }
.sz-bar__dark { background: var(--sz-ink); color: var(--sz-surface) !important; box-shadow: 0 10px 22px rgba(27,39,51,.28); }
.sz-bar__dark:hover { background: var(--sz-ink-deep); }

/* ---------- legacy pages inside the new shell (until they are converted) ---------- */
.sz-shell main { display: block; }

/* ---------- quick bookings (customer magnets) ---------- */
.sz-mags { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 640px) { .sz-mags { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .sz-mags { grid-template-columns: repeat(4, 1fr); } }
.sz-mag { display: flex; flex-direction: column; justify-content: space-between; gap: 14px; min-height: 170px; padding: 16px; border-radius: 18px; border: 1px solid rgba(31,42,55,.06); }
.sz-mag__f { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.sz-mag__f > span:first-child { font-size: 13px; font-weight: 700; }
.sz-mag__b { display: flex; align-items: center; gap: 12px; }
.sz-mag__more { font-size: 12.5px; font-weight: 600; color: var(--sz-gold-ink); }
.sz-mag__more:hover { color: var(--sz-gold); }

/* ---------- price groups (shared by /prices and zone pages) ---------- */
.szp-groups { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 20px; align-items: start; }
@media (min-width: 1080px) { .szp-groups { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
.szp-group { padding: 20px 20px 14px; border-radius: 20px; background: var(--sz-card-alt); border: 1px solid rgba(31,42,55,.06); }
.szp-group__n { font-family: var(--sz-fd); font-weight: 700; font-size: 18px; letter-spacing: -.01em; padding-bottom: 12px; border-bottom: 1.5px solid rgba(180,136,79,.35); }
.szp-row { display: flex; align-items: baseline; gap: 12px; padding: 11px 10px; margin: 0 -10px; border-radius: 10px; border-bottom: 1px solid rgba(31,42,55,.07); color: var(--sz-ink); }
.szp-row--h { font-size: 13px; font-weight: 700; letter-spacing: .1em; color: var(--sz-gold-ink); }
.szp-row--pk { background: rgba(228,199,154,.28); }
.szp-row--pk .szp-row__n { font-weight: 600; }
.szp-row__n { flex: 1; min-width: 0; font-size: 14.5px; line-height: 1.4; color: #33404C; font-weight: 500; }
.szp-row__r { flex: 0 0 auto; display: flex; align-items: baseline; gap: 8px; }
.szp-pill { padding: 4px 9px; border-radius: 99px; background: var(--sz-gold-light); color: #3F3315; font-size: 11px; font-weight: 700; white-space: nowrap; }
.szp-row__p { font-family: var(--sz-fd); font-weight: 700; font-size: 15.5px; white-space: nowrap; }
.szp-note { font-size: 12px; line-height: 1.5; color: #8A8477; font-style: italic; margin-top: 12px; text-wrap: pretty; }

/* ---------- shared: numbered steps, first-visit cards, packages, journal, article prose, closing CTA ---------- */
.sz-steps { display: flex; flex-direction: column; gap: 10px; }
.sz-steps--2 { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 1080px) { .sz-steps--2 { grid-template-columns: 1fr 1fr; } }
.sz-step { display: flex; gap: 14px; padding: 16px 18px; border-radius: 18px; background: var(--sz-card); border: 1px solid rgba(31,42,55,.07); align-items: flex-start; }
.sz-step i { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: var(--sz-ink); color: var(--sz-gold-light); display: flex; align-items: center; justify-content: center; font-family: var(--sz-fd); font-weight: 700; font-size: 14px; font-style: normal; }
.sz-step b { font-family: var(--sz-fd); font-weight: 700; font-size: 15.5px; display: block; line-height: 1.3; }
.sz-step p { font-size: 13.5px; line-height: 1.55; color: #56646F; margin: 4px 0 0; text-wrap: pretty; }
.szp-fcards { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 1080px) { .szp-fcards { grid-template-columns: repeat(3, 1fr); } }
.szp-fcard { display: flex; flex-direction: column; gap: 10px; padding: 18px 18px 16px; border-radius: 18px; background: var(--sz-surface); border: 1px solid rgba(34,48,61,.1); transition: transform .18s ease, box-shadow .18s ease; color: var(--sz-ink); }
.szp-fcard:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(34,48,61,.2); }
.szp-fcard__t { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.szp-cat { font-size: 10.5px; font-weight: 700; letter-spacing: .14em; color: #A3937A; }
.szp-save { padding: 4px 9px; border-radius: 99px; background: var(--sz-ink); color: var(--sz-gold-light); font-size: 10.5px; font-weight: 700; letter-spacing: .06em; white-space: nowrap; }
.szp-fcard__n { font-family: var(--sz-fd); font-weight: 700; font-size: 16.5px; line-height: 1.2; }
.szp-fcard__p { display: flex; align-items: baseline; gap: 10px; margin-top: auto; }
.szp-fcard__p b { font-family: var(--sz-fd); font-weight: 800; font-size: 30px; letter-spacing: -.02em; }
.szp-fcard__p s { font-size: 14px; color: #8C939A; }
.szp-fcard__l { font-size: 12px; color: var(--sz-muted); }
.szt-packs { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 1080px) { .szt-packs { grid-template-columns: repeat(3, 1fr); } }
.szt-pack { display: flex; flex-direction: column; gap: 12px; padding: 22px 20px; border-radius: 20px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); color: var(--sz-surface); }
.szt-pack__t { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: .14em; color: var(--sz-faint); }
.szt-pack__b { padding: 4px 10px; border-radius: 99px; background: var(--sz-ink); color: var(--sz-gold-light); font-size: 10.5px; font-weight: 700; letter-spacing: .08em; }
.szt-pack__n { font-family: var(--sz-fd); font-weight: 700; font-size: 19px; line-height: 1.2; }
.szt-pack__d { font-size: 13px; line-height: 1.5; color: #A9B6C2; margin-top: 6px; }
.szt-pack__p { font-family: var(--sz-fd); font-weight: 800; font-size: 34px; letter-spacing: -.02em; color: var(--sz-gold-light); margin-top: auto; }
.szt-pack > a { display: flex; align-items: center; justify-content: center; padding: 14px; border-radius: 13px; background: rgba(255,255,255,.12); color: var(--sz-surface); font-weight: 700; font-size: 14px; }
.szt-pack--best { background: var(--sz-gold-light); border-color: var(--sz-gold-light); color: #22303D; }
.szt-pack--best .szt-pack__t { color: #7A6435; } .szt-pack--best .szt-pack__d { color: #4A5765; } .szt-pack--best .szt-pack__p { color: #22303D; }
.szt-pack--best > a { background: var(--sz-ink); color: var(--sz-surface); }
.szt-rows { display: flex; flex-direction: column; margin-top: auto; }
.szt-rows div { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 14px; }
.szt-rows b { font-family: var(--sz-fd); font-weight: 800; font-size: 22px; letter-spacing: -.02em; color: var(--sz-gold-light); }
.szt-pack--best .szt-rows div { border-color: rgba(34,48,61,.15); } .szt-pack--best .szt-rows b { color: #22303D; }
.szt-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.szt-two { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: start; }
@media (min-width: 1080px) { .szt-two { grid-template-columns: 1.1fr .9fr; } }
.sz-cta2 { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
.sz-cta2 h2 { margin: 0 0 8px; } .sz-cta2 p { font-size: 15px; line-height: 1.6; color: #3A4855; margin: 0; }
.sz-cta2__b { display: flex; flex-direction: column; gap: 10px; }
.sz-call { background: rgba(255,255,255,.55); color: #22303D !important; padding: 16px 22px; border-radius: 15px; font-size: 15px; }
.sz-call:hover { background: rgba(255,255,255,.8); }
@media (min-width: 1080px) { .sz-cta2 { grid-template-columns: 1.1fr .9fr; } }
.sz-jgrid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 1080px) { .sz-jgrid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
.sz-jcard { display: flex; flex-direction: column; border-radius: 20px; overflow: hidden; background: var(--sz-card); border: 1px solid rgba(31,42,55,.07); transition: transform .2s ease, box-shadow .2s ease; }
.sz-jcard:hover { transform: translateY(-3px); box-shadow: 0 14px 26px rgba(31,42,55,.13); }
.sz-jcard img { width: 100%; height: 200px; object-fit: cover; display: block; }
.sz-jcard__b { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.sz-jcard h2 { font-family: var(--sz-fd); font-weight: 700; font-size: 18px; line-height: 1.2; margin: 0; letter-spacing: -.01em; }
.sz-jcard p { font-size: 13.5px; line-height: 1.55; color: #56646F; margin: 0; text-wrap: pretty; }
.sz-jcard__f { display: flex; align-items: center; justify-content: space-between; margin-top: auto; font-size: 13px; font-weight: 700; padding-top: 8px; }
.sz-artimg { width: 100%; height: 260px; object-fit: cover; border-radius: 22px; display: block; }
@media (min-width: 1080px) { .sz-artimg { height: 480px; border-radius: 28px; } }
.sz-kp { margin: 0; padding-left: 18px; font-size: 14.5px; line-height: 1.6; color: var(--sz-body); }
.sz-kp li { margin: 4px 0; }
.sz-prose { max-width: 68ch; }
.sz-prose h2 { font-family: var(--sz-fd); font-weight: 700; font-size: 24px; line-height: 1.15; letter-spacing: -.02em; margin: 34px 0 10px; }
@media (min-width: 1080px) { .sz-prose h2 { font-size: 30px; } }
.sz-prose p { font-size: 15.5px; line-height: 1.7; color: var(--sz-body); margin: 0 0 14px; text-wrap: pretty; }

/* ---------- legacy legal pages (terms, cancellations): re-skin their old inline styles without touching the text ---------- */
.sz-shell .policy-hero { background: linear-gradient(170deg, #FBF6F0 0%, #F7EDE6 48%, #FBF6F0 100%); color: var(--sz-ink); padding: 34px var(--sz-px) 26px; text-align: left; margin-bottom: 0; }
.sz-shell .policy-hero h1 { font-family: var(--sz-fd); font-weight: 800; font-size: 38px; line-height: 1.03; letter-spacing: -.03em; color: var(--sz-ink); text-shadow: none; margin: 0 0 12px; }
.sz-shell .policy-hero p { font-family: var(--sz-fb); font-size: 15.5px; line-height: 1.6; color: var(--sz-body); margin: 0; max-width: 60ch; opacity: 1; }
.sz-shell .policy-container { max-width: none; padding: 0 var(--sz-px) 40px; }
.sz-shell .policy-content { background: transparent; box-shadow: none; border-radius: 0; padding: 8px 0 0; max-width: 72ch; }
.sz-shell .policy-content h2 { font-family: var(--sz-fd); font-weight: 700; font-size: 26px; line-height: 1.15; letter-spacing: -.02em; color: var(--sz-ink); border-bottom: 1.5px solid rgba(180,136,79,.35); padding-bottom: 8px; margin: 34px 0 12px; }
.sz-shell .policy-content h3 { font-family: var(--sz-fd); font-weight: 700; font-size: 18px; color: var(--sz-ink); margin: 22px 0 8px; }
.sz-shell .policy-content p, .sz-shell .policy-content li { font-family: var(--sz-fb); font-size: 15px; line-height: 1.7; color: var(--sz-body); }
.sz-shell .policy-content a { color: var(--sz-gold); }
@media (min-width: 1080px) { .sz-shell .policy-hero h1 { font-size: 54px; } }

/* ---------- hover glow: a soft gold light blooms in the centre of a card, under its content ---------- */
.sz-card, .sz-mag, .szt-pair, .szp-fcard, .szp-pcard { position: relative; overflow: hidden; isolation: isolate; }
.sz-card > *, .sz-mag > *, .szt-pair > *, .szp-fcard > *, .szp-pcard > * { position: relative; z-index: 1; }
.sz-card::after, .sz-mag::after, .szt-pair::after, .szp-fcard::after, .szp-pcard::after { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0; transform: scale(.85); transition: opacity .28s ease, transform .35s ease; background: radial-gradient(72% 64% at 50% 50%, rgba(255,255,255,.62), rgba(255,255,255,0) 74%); }
.sz-card:hover::after, .sz-mag:hover::after, .szt-pair:hover::after, .szp-fcard:hover::after, .szp-pcard:hover::after { opacity: 1; transform: scale(1); }
.szp-pcard::after { background: radial-gradient(72% 64% at 50% 50%, rgba(255,255,255,.14), rgba(255,255,255,0) 74%); }
.szp-pcard--gold::after { background: radial-gradient(72% 64% at 50% 50%, rgba(255,255,255,.5), rgba(255,255,255,0) 74%); }
@media (prefers-reduced-motion: reduce) { .sz-card::after, .sz-mag::after, .szt-pair::after, .szp-fcard::after, .szp-pcard::after { transition: none; } }

/* WhatsApp CTAs — the glyph carries the brand green; the buttons keep the normal outline style */
.sz-wa { width: 18px; height: 18px; flex: 0 0 auto; }
.sz-foot__wa { display: inline-flex; align-items: center; gap: 7px; margin-top: 6px; }
.sz-hero__ov .sz-wa { display: none; }

/* Footer "Get directions" — sits under the VISIT column, opens Google Maps routing */
.sz-pin { width: 16px; height: 16px; flex: 0 0 auto; }
.sz-foot__dir { margin-top: 16px; }
