/* =====================================================================
   Parati - Luxury Beauty Salon
   Premium responsive design system (Mobile First)
   ===================================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Palette - brighter, higher contrast on gold & rose */
  --white: #ffffff;
  --cream: #fff9f3;
  --cream-deep: #f7e8d8;
  --gold: #e0b13a;
  --gold-soft: #f2cf6e;
  --gold-deep: #7a5814;
  --pink: #fad6dc;
  --pink-deep: #f0b4be;
  --gray-900: #1a1715;
  --gray-700: #342f2a;
  --gray-500: #564f47;
  --gray-300: #aea69c;

  /* Semantic */
  --bg: var(--cream);
  --surface: var(--white);
  --ink: var(--gray-900);
  --muted: var(--gray-500);
  --accent: var(--gold);

  /* Text on dark surfaces (footer, bg-deep, hero overlays) */
  --on-dark: rgba(252, 248, 243, .94);
  --on-dark-soft: rgba(252, 248, 243, .84);
  --on-dark-muted: rgba(252, 248, 243, .72);
  --on-dark-accent: var(--gold-soft);

  /* Type scale - headings (4 sizes) + body (2 sizes only) */
  --fs-h1: clamp(2.55rem, 6.2vw, 4.75rem);   /* main / hero */
  --fs-h2: clamp(2.05rem, 4vw, 3.15rem);      /* section */
  --fs-h3: clamp(1.35rem, 2.2vw, 1.75rem);    /* card / block */
  --fs-h4: clamp(1.12rem, 1.6vw, 1.35rem);    /* small heading */
  --fs-body: clamp(1.02rem, 0.45vw + 0.94rem, 1.1rem);   /* body S */
  --fs-lead: clamp(1.14rem, 0.7vw + 1rem, 1.28rem);      /* body L */
  --fs-meta: .82rem;   /* labels, breadcrumbs, counts */
  --fs-caption: .9rem; /* secondary line under titles */
  --lh-body: 1.72;
  --lh-lead: 1.65;
  --lh-heading: 1.14;

  /* Unified block icons - Material Symbols, one size for feature / info / price / value */
  --ic-size: 52px;
  --ic-fs: 1.7rem;
  --ic-radius: 14px;
  --ic-size-sm: 28px;
  --ic-fs-sm: 1.1rem;
  --font-icon: "Material Symbols Outlined";

  /* Gradients - gold rich enough for white type; rose more vivid */
  --grad-gold: linear-gradient(135deg, #e8b94a 0%, #d49a24 42%, #a87212 100%);
  --grad-rose: linear-gradient(135deg, #fad6dc 0%, #f3bdc6 55%, #eeb0bb 100%);
  /* Hero veil: strong enough for white type on light photos (nav + title) */
  --grad-hero-veil: linear-gradient(
    180deg,
    rgba(18, 16, 14, .58) 0%,
    rgba(18, 16, 14, .48) 32%,
    rgba(18, 16, 14, .62) 62%,
    rgba(18, 16, 14, .84) 100%
  );
  --grad-media-veil: linear-gradient(180deg, rgba(18, 16, 14, .28) 0%, rgba(18, 16, 14, .86) 100%);
  --grad-cta-veil: linear-gradient(135deg, rgba(31, 28, 26, .80), rgba(122, 88, 20, .62));

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.64);
  --glass-bg-dark: rgba(26, 23, 21, 0.55);
  --glass-border: rgba(255, 255, 255, 0.7);
  --blur: saturate(175%) blur(16px);

  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(26, 23, 21, .08);
  --shadow-md: 0 14px 40px rgba(26, 23, 21, .12);
  --shadow-lg: 0 28px 68px rgba(26, 23, 21, .17);
  --shadow-gold: 0 14px 38px rgba(212, 154, 36, .42);

  /* Radius - only this scale (+ 50% circles, 2px hairlines) */
  --r-xs: 4px;
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 30px;
  --r-pill: 999px;

  /* Type */
  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-body: "Jost", "Segoe UI", system-ui, sans-serif;

  /* Spacing rhythm */
  --space-1: .35rem;
  --space-2: .6rem;
  --space-3: 1rem;
  --space-4: 1.4rem;
  --space-5: 1.75rem;
  --space-6: 2.4rem;
  --space-section: clamp(3.75rem, 7.5vw, 7.25rem);
  /* Same rhythm before footer as between any two sections */
  --space-to-footer: var(--space-section);
  --space-head: clamp(1.85rem, 4vw, 3rem);   /* section-head → content */
  --space-after: clamp(2rem, 4vw, 3rem);     /* grid → footer CTA in section */
  --space-block: clamp(1.25rem, 2.2vw, 1.85rem);
  /* Fluid inset: ~0.75rem @300px → 2.4rem @wide (no breakpoint jumps) */
  --pad-inline: clamp(0.75rem, 0.35rem + 3.2vw, 2.4rem);
  --pad-card: clamp(1.4rem, 2.8vw, 2.2rem);
  --pad-card-lg: clamp(1.6rem, 3.2vw, 2.6rem);
  --pad-band: clamp(2.4rem, 5.5vw, 4.75rem);
  --gap-grid: clamp(1.15rem, 2.2vw, 1.75rem);
  --gap-tight: .6rem;
  --gap-stack: 1rem;
  --gap-split: clamp(2rem, 5vw, 3.5rem);
  /* Media / photo blocks share one radius */
  --r-media: var(--r-lg);
  --container: 1240px;
  --site-max: 1980px;

  /* Motion - one family only: opacity + tiny scale (scroll appear / hover grow). */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-hover: cubic-bezier(.22, 1, .36, 1);
  --t-fast: .28s;
  --t: .6s;
  --t-hover: .6s;
  --reveal-dur: .6s;
  --reveal-from: .985;
  --hover-scale: 1.016;
}

/* Skip link - keyboard / accessibility */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 300;
  padding: .75rem 1.2rem;
  border-radius: var(--r-pill);
  background: var(--grad-gold);
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
  box-shadow: var(--shadow-gold);
  transition: top var(--t-fast);
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link:focus {
  top: 1rem;
  color: var(--white);
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

/* ---------- 2. Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(5.75rem + env(safe-area-inset-top, 0px));
  /* Letterbox outside the 1980 site frame */
  background: #d4cbc0;
}

#booking,
#advantages,
#contacts,
.article-block[id^="section-"],
.price-cat[id^="cat-"] {
  scroll-margin-top: calc(5.75rem + env(safe-area-inset-top, 0px));
}
.page-top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #d4cbc0;
  line-height: var(--lh-body);
  font-size: var(--fs-body);
  font-weight: 400;
  letter-spacing: .15px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Site frame: header / main / footer never exceed 1980px */
#site-header,
#main,
#site-footer {
  width: 100%;
  width: min(100%, var(--site-max));
  max-width: var(--site-max);
  position: relative;
  box-sizing: border-box;
}

/* Clip horizontal overflow on main only - footer chips must stay visible */
#main {
  overflow-x: hidden;
  overflow-x: clip;
  isolation: isolate;
  background: var(--bg);
  margin-inline: auto;
}

/* Last section keeps full equal padding-block (same as every other section) */
#main > section:last-child {
  padding-block: var(--space-section);
}

#site-header {
  background: transparent;
  overflow: visible;
}

#site-footer {
  background: #221f1c;
  overflow: visible;
}

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

/* ---------- 3. Typography ----------
   Headings: h1 (main) · h2 (section) · h3 (card) · h4 (small)
   Body text: ONLY 2 sizes - default p (S) and .lead / hero p (L)
*/
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--lh-heading);
  letter-spacing: .2px;
  color: var(--ink);
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); font-weight: 600; }

/* Body S - default description */
p {
  color: var(--gray-700);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
}

/* Body L - larger description (hero, lead, CTA) */
.lead,
.hero p,
.page-hero p,
.cta-band p,
.giftcard > div > p {
  font-size: var(--fs-lead);
  line-height: var(--lh-lead);
  font-weight: 400;
}
.lead { color: var(--gray-700); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1.5px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

.text-gold { color: var(--gold-deep); }
.serif-italic { font-family: var(--font-display); font-style: italic; }

/* ---------- 4. Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
}

section { padding-block: var(--space-section); }

/* Heroes own their vertical space - don't inherit section padding */
.hero,
.page-hero {
  padding-block: 0;
}

.section-head {
  max-width: 680px;
  margin: 0 auto var(--space-head);
  text-align: center;
}
/* section intro = Body S */
.section-head p {
  margin-top: .85rem;
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  max-width: 38rem;
  margin-inline: auto;
}

.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-rose { background: var(--grad-rose); }
.bg-deep {
  background: radial-gradient(120% 120% at 80% 0%, #3a3530 0%, #262220 60%, #1a1715 100%);
  color: var(--on-dark-soft);
}
.bg-deep h1,
.bg-deep h2,
.bg-deep h3 { color: var(--white); }
.bg-deep p,
.bg-deep .section-head p { color: var(--on-dark-soft); }
.bg-deep .eyebrow {
  color: var(--on-dark-accent);
}
.bg-deep .eyebrow::before {
  background: var(--gold-soft);
}
.bg-deep .stat small,
.bg-deep .stats-band small {
  color: var(--on-dark-muted);
}

/* ---------- 5. Buttons ---------- */
.btn {
  --btn-bg: var(--grad-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 2rem;
  border-radius: var(--r-pill);
  font-weight: 500;
  letter-spacing: .035em;
  font-size: .96rem;
  line-height: 1.2;
  color: var(--white);
  background: var(--btn-bg);
  box-shadow: var(--shadow-gold);
  border: 1.5px solid transparent;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(90, 55, 0, .22);
  transition: transform var(--t-hover) var(--ease-hover);
  transform: scale(1);
}
.btn:hover,
.btn:focus,
.btn:active {
  text-decoration: none;
  color: var(--white);
}
.btn:hover {
  transform: scale(var(--hover-scale));
}
.btn:active {
  transform: scale(1);
}
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(31, 28, 26, .2);
  box-shadow: none;
  filter: none;
  text-shadow: none;
}
.btn-ghost:hover,
.btn-ghost:focus,
.btn-ghost:active {
  color: var(--gold-deep);
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  background: rgba(212, 173, 82, .08);
  box-shadow: none;
  filter: none;
}
.btn-ghost:active {
  background: rgba(212, 173, 82, .14);
  box-shadow: none;
}

.btn-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  filter: none;
  text-shadow: none;
}
.btn-light:hover,
.btn-light:focus,
.btn-light:active {
  color: var(--ink);
  text-decoration: none;
}
.btn-light:hover {
  box-shadow: var(--shadow-lg);
  filter: none;
  background: #fffefb;
}
.btn-light:active {
  box-shadow: var(--shadow-sm);
  filter: none;
}

.btn-outline-light {
  background: rgba(26, 23, 21, .28);
  color: var(--white);
  border-color: rgba(255,255,255,.65);
  box-shadow: none;
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  filter: none;
  text-shadow: 0 1px 8px rgba(18, 16, 14, .35);
}
.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active {
  color: var(--white);
  text-decoration: none;
}
.btn-outline-light:hover {
  background: rgba(26, 23, 21, .42);
  border-color: rgba(255,255,255,.9);
  box-shadow: none;
  filter: none;
}
.btn-outline-light:active {
  background: rgba(26, 23, 21, .34);
  box-shadow: none;
  filter: none;
}

.btn-sm { padding: .65rem 1.3rem; font-size: .88rem; }

/* ---------- 5b. Unified icon / button / chip centering ---------- */
.gicon,
.ic,
.cert .badge {
  font-family: var(--font-icon), sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  user-select: none;
  speak: never;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
}
.gicon {
  display: inline-grid;
  place-items: center;
  line-height: 1;
  font-size: 1.35em;
  color: inherit;
}
.gicon.filled,
.stars .gicon {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}
.ic,
.cert .badge,
.faq-q .pm,
.step-card .step-no,
.article-no,
.price-cat-head .ic,
.socials-row a,
.team-card .socials a,
.to-top,
.lightbox .lb-close,
.lightbox .lb-nav {
  display: inline-grid;
  place-items: center;
  place-content: center;
  line-height: 1;
  text-align: center;
  box-sizing: border-box;
  flex-shrink: 0;
  font-style: normal;
}

.btn,
.nav-cta,
.service-card .price-tag,
.duration-pill,
.offer-card .ribbon,
.cat-nav a,
.tag,
.article-byline-tag,
.article-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  line-height: 1.2;
}

.choice {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

.nav-toggle {
  align-items: center;
  justify-content: center;
}

.gallery-item::after {
  display: grid;
  place-items: center;
  place-content: center;
  line-height: 1;
  text-align: center;
}

/* ---------- 6. Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0;
  /* Keep fixed children (mobile nav) viewport-relative - no transform/filter on header */
  left: 0;
  width: 100%;
  left: max(0px, calc((100% - min(100%, var(--site-max))) / 2));
  width: min(100%, var(--site-max));
  max-width: var(--site-max);
  box-sizing: border-box;
  z-index: 100;
  --hdr-pad: clamp(0.7rem, 0.45rem + 1.1vw, 1.1rem);
  transition: padding-block var(--t-fast) var(--ease);
  padding-block: var(--hdr-pad);
  padding-top: calc(var(--hdr-pad) + env(safe-area-inset-top, 0px));
  overflow: visible;
}
/* Glass on ::before so backdrop-filter does NOT trap position:fixed mobile drawer */
.site-header.scrolled::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  z-index: 0;
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(255,255,255,.4);
  pointer-events: none;
}
.site-header.scrolled {
  --hdr-pad: clamp(0.5rem, 0.35rem + 0.6vw, 0.65rem);
}
.site-header > .container.nav {
  position: relative;
  z-index: auto;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand .mark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--ink);
}
.brand .sub {
  font-size: .58rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 4px;
}
/* On hero (top, not scrolled) make brand light - every page has a dark hero banner */
.site-header:not(.scrolled) .brand .mark { color: var(--white); }
.site-header:not(.scrolled) .brand .sub { color: var(--gold-soft); }
.site-header:not(.scrolled) .nav-links > li > a { color: rgba(255,255,255,.92); }
.site-header:not(.scrolled) .nav-toggle span { background: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}
/* Admin «+» slots live in the DOM but must not create menu gaps for visitors */
.nav-links > li.adm-nav-slot,
.footer-links > .adm-nav-slot,
.footer-legal > .adm-nav-slot {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  overflow: hidden;
  pointer-events: none;
}
.nav-links > li > a {
  position: relative;
  font-size: .95rem;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--gray-700);
  padding-block: .4rem;
  transition: color var(--t-hover) var(--ease-hover);
  text-decoration: none;
}
.nav-links > li > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--t-hover) var(--ease-hover);
  pointer-events: none;
}
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { opacity: 1; }
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--gold-deep); }

/* CTA button in nav - no underline, keep button colors */
.nav-links > li > a.btn,
.nav-links > li > a.btn:hover,
.nav-links > li > a.btn:active,
.nav-links > li > a.btn.active {
  color: var(--white);
  text-decoration: none;
}
.nav-links > li > a.btn::after,
.nav-links > li > a.btn:hover::after,
.nav-links > li > a.btn.active::after {
  content: none;
  transform: none;
  display: none;
}
.site-header:not(.scrolled) .nav-links > li > a.btn {
  color: var(--white);
}

/* Dropdown */
.has-drop { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 260px;
  max-width: calc(100vw - 2rem);
  max-width: min(320px, calc(100vw - 2rem));
  max-height: min(70vh, 440px);
  overflow-x: hidden;
  overflow-y: auto;
  /* Transparent hit-bridge so cursor can reach the panel without losing :hover */
  padding: 12px 0 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: grid;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  list-style: none;
  margin: 0;
  transition:
    opacity var(--t-hover) var(--ease-hover),
    transform var(--t-hover) var(--ease-hover),
    visibility 0s linear var(--t-hover);
  z-index: 90;
}
.dropdown::after {
  content: "";
  position: absolute;
  top: 12px; right: 0; bottom: 0; left: 0;
  inset: 12px 0 0;
  z-index: -1;
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  pointer-events: none;
}
.has-drop:hover .dropdown,
.has-drop:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
.dropdown li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.dropdown a {
  display: block;
  padding: .38rem .8rem;
  margin-inline: .4rem;
  border-radius: var(--r-sm);
  font-size: .86rem;
  line-height: 1.3;
  color: var(--gray-700);
  transition: background var(--t-hover) var(--ease-hover), color var(--t-hover) var(--ease-hover);
  position: relative;
  z-index: 1;
  white-space: normal;
}
.dropdown li:first-child a { margin-top: .35rem; }
.dropdown li:last-child a { margin-bottom: .35rem; }
.dropdown a:hover { background: rgba(212,173,82,.14); color: var(--gold-deep); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  z-index: 130;
  position: relative;
  flex: 0 0 auto;
  border-radius: var(--r-sm);
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
  pointer-events: none;
}

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
}
.hero-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.78) saturate(1.04);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: var(--grad-hero-veil);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  pointer-events: none;
}
/* Same .container rhythm as every other section block */
.hero > .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
  box-sizing: border-box;
  flex: 0 1 auto;
  align-self: center;
}
.hero-content {
  max-width: 760px;
  padding-top: 5rem;
  width: 100%;
  box-sizing: border-box;
}
/* Soft page-load entrance (CSS-only, no layout cost) */
@media (prefers-reduced-motion: no-preference) {
  .hero-content > *,
  .page-hero > .container > * {
    animation: pageEnter var(--reveal-dur) var(--ease-out) both;
  }
  .hero-content > *:nth-child(1),
  .page-hero > .container > *:nth-child(1) { animation-delay: .04s; }
  .hero-content > *:nth-child(2),
  .page-hero > .container > *:nth-child(2) { animation-delay: .12s; }
  .hero-content > *:nth-child(3),
  .page-hero > .container > *:nth-child(3) { animation-delay: .2s; }
  .hero-content > *:nth-child(4),
  .page-hero > .container > *:nth-child(4) { animation-delay: .28s; }
  .hero-content > *:nth-child(5),
  .page-hero > .container > *:nth-child(5) { animation-delay: .34s; }
  .hero-content > *:nth-child(n+6),
  .page-hero > .container > *:nth-child(n+6) { animation-delay: .38s; }
  .scroll-cue {
    animation: pageEnter .9s var(--ease-out) .45s both;
  }
}
@keyframes pageEnter {
  from {
    opacity: 0;
    transform: scale(var(--reveal-from));
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 28px rgba(18, 16, 14, .45);
}
.hero h1 .serif-italic { color: var(--gold-soft); }
.hero p {
  color: rgba(255, 255, 255, .94);
  max-width: 540px;
  text-shadow: 0 1px 16px rgba(18, 16, 14, .4);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-stack);
  margin-top: 2rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 4vw, 2.75rem);
  margin-top: 2.6rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.28);
}
.hero-meta .num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-soft);
  line-height: 1;
}
.hero-meta small {
  color: rgba(255,255,255,.82);
  font-size: .82rem;
  letter-spacing: .05em;
  text-shadow: 0 1px 10px rgba(18, 16, 14, .35);
}

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,.82);
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(18, 16, 14, .35);
}
.scroll-cue .dot {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: var(--ic-radius);
  position: relative;
}
.scroll-cue .dot::after {
  content: "";
  position: absolute;
  left: 50%; top: 8px;
  width: 3px; height: 7px;
  background: var(--gold-soft);
  border-radius: 2px;
  transform: translateX(-50%);
}

/* Page banner (inner pages) */
.page-hero {
  position: relative;
  min-height: clamp(42vh, 55vh, 60vh);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-top: 0;
  padding-bottom: clamp(2rem, 6vw, 5rem);
}
.page-hero.compact {
  min-height: 40vh;
}
.page-hero .hero-bg {
  animation: none;
  will-change: auto;
  transform: scale(1.04) translateZ(0);
  filter: brightness(.78) saturate(1.04);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: var(--grad-hero-veil);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  pointer-events: none;
}
.page-hero > .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
  box-sizing: border-box;
  align-self: center;
}
.page-hero h1 {
  color: var(--white);
  text-shadow: 0 2px 24px rgba(18, 16, 14, .42);
}
.page-hero p {
  color: rgba(255, 255, 255, .94);
  max-width: 560px;
  margin-top: .75rem;
  text-shadow: 0 1px 14px rgba(18, 16, 14, .38);
}
.breadcrumb {
  display: flex;
  gap: .5rem;
  font-size: var(--fs-meta);
  letter-spacing: .04em;
  color: rgba(255,255,255,.82);
  margin-bottom: 1rem;
  text-shadow: 0 1px 10px rgba(18, 16, 14, .35);
}
.breadcrumb a {
  transition: color var(--t-hover) var(--ease-hover);
}
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb span { color: var(--gold-soft); }

/* ---------- 8. Cards & grids ---------- */
.grid { display: grid; gap: var(--gap-grid); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

.card {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--pad-card);
  border: 1px solid rgba(31,28,26,.05);
}

/* Feature card */
.feature .ic {
  width: var(--ic-size);
  height: var(--ic-size);
  display: grid;
  place-items: center;
  border-radius: var(--ic-radius);
  background: var(--grad-rose);
  color: var(--gold-deep);
  margin-bottom: 1.3rem;
  font-size: var(--ic-fs);
  line-height: 1;
  border: 1px solid rgba(240, 180, 190, .5);
}
.feature:hover .ic { background: var(--grad-gold); color: var(--white); border-color: transparent; }
.feature h3 {
  font-size: var(--fs-h3);
  margin-bottom: .5rem;
}
.feature p { font-size: var(--fs-body); color: var(--gray-700); }

/* Service card */
.service-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--surface);
  display: flex;
  flex-direction: column;
}
.service-card .media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.service-card .media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.service-card .price-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  color: var(--ink);
  font-size: var(--fs-meta);
  font-weight: 500;
  padding: .4rem .9rem;
  border-radius: var(--r-pill);
  min-height: 2rem;
}
.service-card .svc-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  background: var(--grad-gold);
  color: var(--white);
  font-size: var(--fs-meta);
  font-weight: 500;
  letter-spacing: .03em;
  padding: .4rem .9rem;
  border-radius: var(--r-pill);
  min-height: 2rem;
  display: inline-flex;
  align-items: center;
  box-shadow: var(--shadow-gold);
}
.service-card .svc-badge:empty { display: none; }
.service-card .body { padding: var(--space-4); flex: 1; display: flex; flex-direction: column; }
.service-card .body h2,
.service-card .body h3 { font-size: var(--fs-h3); }
.service-card .body p {
  font-size: var(--fs-body);
  color: var(--gray-700);
  margin: .45rem 0 1.05rem;
  flex: 1;
}
.service-card .more {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-start;
  gap: .5rem;
  font-weight: 500;
  color: var(--gold-deep);
  font-size: var(--fs-caption);
  text-align: left;
}
.service-card .more svg { flex-shrink: 0; }

/* ---------- 9. Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-stack);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-media);
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gallery-item::after {
  content: "zoom_in";
  font-family: var(--font-icon), sans-serif;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  display: grid;
  place-items: center;
  place-content: center;
  font-size: 2rem;
  line-height: 1;
  color: var(--white);
  background: rgba(43,43,43,.35);
  opacity: 0;
  transition: opacity var(--t-hover) var(--ease-hover);
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item.tall { aspect-ratio: auto; grid-row: span 2; }

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  z-index: 200;
  background: rgba(20,18,16,.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: var(--r-media); box-shadow: var(--shadow-lg); touch-action: pan-y; user-select: none; -webkit-user-drag: none; }
.lightbox .lb-close {
  position: absolute;
  top: 24px; right: 28px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  color: var(--white);
}
.lightbox .lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  font-size: 2.4rem;
  color: rgba(255,255,255,.7);
  transition: color var(--t-hover) var(--ease-hover);
}
.lightbox .lb-prev { left: 10px; }
.lightbox .lb-next { right: 10px; }
.lightbox .lb-nav:hover { color: var(--white); }
.lightbox .gicon { font-size: 1.85rem; color: inherit; }
.socials-row a .gicon,
.team-card .socials a .gicon {
  font-size: 1.4rem;
}

/* ---------- 10. Testimonials ---------- */
.testi-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  scroll-snap-align: center;
  flex: 0 0 88%;
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: var(--pad-card-lg);
  box-shadow: var(--shadow-sm);
}
.testi-card .stars {
  color: var(--gold-deep);
  letter-spacing: 0;
  margin-bottom: 1rem;
  display: flex;
  gap: .15rem;
}
.testi-card .stars .gicon { font-size: 1.15rem; }
.testi-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--gray-900);
}
.testi-card .who { display: flex; align-items: center; gap: .9rem; margin-top: 1.5rem; }
.testi-card .who img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testi-card .who b {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-body);
}
.testi-card .who small {
  color: var(--muted);
  font-size: var(--fs-meta);
}

/* ---------- 11. Price list ---------- */
.price-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--pad-card-lg);
  border: 1px solid rgba(43,43,43,.05);
}
.price-card .ph {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding-bottom: 1.1rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid rgba(43,43,43,.08);
}
.price-card .ph .ic {
  width: var(--ic-size);
  height: var(--ic-size);
  display: grid;
  place-items: center;
  border-radius: var(--ic-radius);
  background: var(--grad-rose);
  color: var(--gold-deep);
  font-size: var(--ic-fs);
  line-height: 1;
}
.price-card .ph h3 { font-size: var(--fs-h3); margin: 0; }
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: .65rem 0;
  transition: color var(--t-hover) var(--ease-hover);
  font-size: var(--fs-body);
}
.price-row:hover { color: var(--gold-deep); }
.price-row .name { color: var(--gray-700); min-width: 0; overflow-wrap: anywhere; }
.price-row .dots {
  flex: 1;
  border-bottom: 1px dotted var(--gray-300);
  transform: translateY(-4px);
  margin: 0 .4rem;
}
.price-row .val { font-weight: 600; color: var(--gold-deep); white-space: nowrap; }

.price-card.featured {
  background: var(--grad-gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
  text-shadow: 0 1px 1px rgba(90, 55, 0, .18);
}
.price-card.featured h3,
.price-card.featured .ph h3 { color: var(--white); }
.price-card.featured .ph { border-color: rgba(255,255,255,.3); }
.price-card.featured .ph .ic { background: rgba(255,255,255,.2); color: var(--white); }
.price-card.featured .name { color: rgba(255,255,255,.9); }
.price-card.featured .val { color: var(--white); }
.price-card.featured .dots { border-color: rgba(255,255,255,.4); }

/* ---------- 12. Team ---------- */
.team-card { text-align: center; }
.team-card .photo {
  position: relative;
  border-radius: var(--r-media);
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-sm);
}
.team-card .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.team-card .socials {
  position: absolute;
  top: auto; right: 0; bottom: 0; left: 0;
  inset: auto 0 0 0;
  display: flex;
  justify-content: center;
  gap: .6rem;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(43,43,43,.6), transparent);
  opacity: 0;
  transition: opacity var(--t-hover) var(--ease-hover);
}
.team-card:hover .socials { opacity: 1; }
.team-card .socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  color: var(--ink);
}
.team-card h3 { font-size: var(--fs-h3); }
.team-card .role {
  color: var(--gold-deep);
  font-size: var(--fs-caption);
  letter-spacing: .05em;
}

/* ---------- 13. Split / About ---------- */
.split {
  display: grid;
  gap: var(--gap-split);
  align-items: stretch;
  grid-template-columns: 1fr;
}
.split .media {
  border-radius: var(--r-media);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 0;
}
.split .media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.split.reverse .media { order: -1; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.stat .num { font-family: var(--font-display); font-size: 2.6rem; color: var(--gold-deep); line-height: 1; }
.stat small { color: var(--muted); }

.value-list { display: grid; gap: 1.2rem; margin-top: 1.5rem; }
.value-list li { display: flex; align-items: center; gap: 1rem; }
.value-list .ic {
  flex: 0 0 auto;
  width: var(--ic-size);
  height: var(--ic-size);
  border-radius: var(--ic-radius);
  background: var(--grad-rose);
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  font-size: var(--ic-fs);
  line-height: 1;
  border: 1px solid rgba(240, 180, 190, .5);
}
.value-list b {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  font-weight: 600;
}
.value-list p { font-size: var(--fs-body); color: var(--gray-700); }

/* Certificates */
.cert-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--gap-stack); }
.cert {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--gap-stack);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43,43,43,.05);
  color: var(--ink);
}
.cert .badge {
  width: var(--ic-size);
  height: var(--ic-size);
  border-radius: var(--ic-radius);
  background: var(--grad-gold);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: var(--ic-fs);
  line-height: 1;
  flex: 0 0 auto;
}
.cert b {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  font-weight: 600;
  color: var(--ink);
}
.cert small {
  color: var(--muted);
  display: block;
  font-size: var(--fs-meta);
}

/* Shared block heading (hours cards, benefits, etc.) */
.block-title {
  font-size: var(--fs-h3);
  margin: 0 0 1rem;
}
.svc-intro .block-title {
  margin-bottom: .4rem;
}

/* ---------- 14. Service detail ---------- */
.svc-intro { display: grid; grid-template-columns: 1fr; gap: var(--gap-split); align-items: start; }
.svc-gallery { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--gap-stack); }
.svc-gallery-item { margin: 0; }
.svc-gallery img,
.svc-gallery-item img { border-radius: var(--r-media); aspect-ratio: 1; object-fit: cover; box-shadow: var(--shadow-sm); width: 100%; height: 100%; display: block; }
.svc-gallery > *:first-child,
.svc-gallery img:first-child { grid-column: span 2; }
.svc-gallery > *:first-child img,
.svc-gallery img:first-child { aspect-ratio: 16/10; }

.check-list { display: grid; gap: .9rem; margin: 1.5rem 0; }
.check-list li { display: flex; align-items: center; gap: .8rem; }
.check-list .ic {
  flex: 0 0 auto;
  width: var(--ic-size-sm);
  height: var(--ic-size-sm);
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--white);
  display: inline-grid;
  place-items: center;
  place-content: center;
  font-size: var(--ic-fs-sm);
  line-height: 1;
}
.check-list li > span:last-child {
  font-size: var(--fs-body);
  color: var(--gray-700);
}

.svc-price-box {
  background: var(--grad-rose);
  border-radius: var(--r-lg);
  padding: var(--pad-card-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(240, 180, 190, .45);
}
.svc-price-box .big {
  font-family: var(--font-display);
  font-size: clamp(2rem, 10vw, 3rem);
  color: var(--gold-deep);
  line-height: 1;
  overflow-wrap: anywhere;
}
.svc-price-box small { color: var(--gray-700); font-weight: 500; }

.duration-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--cream-deep);
  padding: .5rem 1.1rem;
  border-radius: var(--r-pill);
  font-size: var(--fs-caption);
  color: var(--gray-700);
  line-height: 1.2;
  min-height: 2.2rem;
}

/* ---------- 15. FAQ (accordion) ---------- */
.faq {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: .75rem;
  overflow-anchor: none;
}
.faq-item {
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43,43,43,.08);
  overflow: hidden;
  overflow-anchor: none;
}
.faq-q {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 1.15rem 1.35rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: background .25s var(--ease-hover);
}
.faq-q:hover,
.faq-q:focus-visible {
  background: rgba(212, 173, 82, .08);
}
.faq-q .pm {
  flex: 0 0 auto;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: var(--grad-rose);
  color: var(--gold-deep);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform .35s var(--ease);
}
.faq-item.open .faq-q .pm {
  transform: rotate(45deg);
}
.faq-a {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height .42s var(--ease),
    opacity .28s ease;
}
.faq-item.open .faq-a {
  opacity: 1;
}
.faq-a p {
  margin: 0;
  padding: 0 1.35rem 1.25rem;
  color: var(--gray-700);
  font-size: var(--fs-body);
  line-height: 1.6;
}

/* ---------- 16. Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-split);
  align-items: stretch;
}
.info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(.55rem, 1.5vw, .85rem);
  padding: var(--pad-card);
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43,43,43,.05);
}
.info-card .ic {
  flex: 0 0 auto;
  width: var(--ic-size);
  height: var(--ic-size);
  border-radius: var(--ic-radius);
  background: var(--grad-gold);
  color: var(--white);
  font-size: var(--ic-fs);
  margin-bottom: .15rem;
}
.info-card b {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  font-weight: 600;
  line-height: 1.25;
}
.info-card-values {
  display: grid;
  gap: .4rem;
  width: 100%;
}
.info-card-values a,
.info-card-values span,
.info-card-values p {
  display: block;
  margin: 0;
  color: var(--gray-700);
  font-size: var(--fs-body);
  line-height: 1.45;
  word-break: break-word;
}
.info-card-values a {
  transition: color var(--t-hover) var(--ease-hover);
}
.info-card-values a:hover { color: var(--gold-deep); }

.form {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--pad-card-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(43,43,43,.05);
}
.field { margin-bottom: 1.2rem; }
.field > label,
.field-label {
  display: block;
  font-size: var(--fs-meta);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: .5rem;
}
.field > input,
.field > textarea,
.field > select {
  width: 100%;
  padding: .9rem 1.1rem;
  border: 1.5px solid rgba(43,43,43,.12);
  border-radius: var(--r-sm);
  background: var(--cream);
  color: var(--ink);
  transition: border-color var(--t-hover) var(--ease-hover), box-shadow var(--t-hover) var(--ease-hover), background var(--t-hover) var(--ease-hover);
}
.field > input:focus,
.field > textarea:focus,
.field > select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212,173,82,.16);
}
.field > textarea { resize: vertical; min-height: 130px; }
.form-hint {
  margin: -.2rem 0 .75rem;
  font-size: var(--fs-caption);
  color: var(--muted);
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.form-note { font-size: var(--fs-meta); color: var(--muted); margin-top: .8rem; }
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-radius: var(--r-sm);
  background: rgba(212,173,82,.14);
  color: var(--gold-deep);
  font-size: var(--fs-body);
}
.form-success.show { display: block; }
.form-error {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-radius: var(--r-sm);
  background: rgba(180, 60, 60, .08);
  color: #7a2e2e;
  font-size: var(--fs-body);
}
.form-error.show { display: block; }

.map-wrap {
  border-radius: var(--r-media);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  line-height: 0;
  background: var(--cream-deep);
}
/* Standalone map (contacts page section) */
.map-wrap iframe {
  width: 100%;
  height: clamp(300px, 42vw, 480px);
  border: 0;
  display: block;
}

.hours-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.hours-table { width: 100%; min-width: 0; border-collapse: collapse; }
.hours-table td { padding: .65rem 0; border-bottom: 1px solid rgba(43,43,43,.08); }
.hours-table td:last-child { text-align: right; font-weight: 500; color: var(--gold-deep); white-space: nowrap; padding-left: .75rem; }
.hours-table tr:last-child td { border-bottom: none; }

/* ---------- 17. CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: var(--pad-band);
  text-align: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
}
.cta-band::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: var(--grad-cta-veil);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band .eyebrow {
  color: var(--on-dark-accent);
}
.cta-band .eyebrow::before {
  background: var(--gold-soft);
}
.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--on-dark-accent);
}
.hero .eyebrow::before,
.page-hero .eyebrow::before {
  background: var(--gold-soft);
}
.cta-band h2 {
  color: var(--white);
  text-shadow: 0 2px 18px rgba(18, 16, 14, .35);
}
.cta-band p {
  color: rgba(255, 255, 255, .94);
  max-width: 520px;
  margin: .9rem auto 1.75rem;
  font-size: var(--fs-lead);
  line-height: var(--lh-lead);
  text-shadow: 0 1px 12px rgba(18, 16, 14, .3);
}

/* ---------- 18. Footer ---------- */
.site-footer {
  background: radial-gradient(120% 120% at 0% 0%, #35312c 0%, #221f1c 70%);
  color: var(--on-dark-soft);
  padding-top: var(--space-section);
  overflow: visible;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.6rem, 1rem + 2.5vw, 2.5rem);
  padding-bottom: clamp(2rem, 1.2rem + 2vw, 3rem);
}
.site-footer .brand .mark { color: var(--white); }
.site-footer .brand .sub { color: var(--on-dark-accent); }
.site-footer .footer-heading {
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-links { display: grid; gap: .4rem; justify-items: start; }
.footer-links a:not(.adm-chip) {
  display: inline-block;
  font-size: .92rem;
  line-height: 1.35;
  color: var(--on-dark-soft);
  transition: color var(--t-hover) var(--ease-hover);
}
.footer-links a:not(.adm-chip):hover { color: var(--on-dark-accent); }
.footer-meta {
  color: var(--on-dark-muted);
  font-size: var(--fs-caption);
}
.footer-hours {
  display: grid;
  gap: .35rem;
  margin-top: .15rem;
  padding-top: .55rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.footer-hours-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) auto;
  gap: .65rem 1rem;
  align-items: baseline;
  font-size: var(--fs-caption);
  line-height: 1.35;
}
.footer-hours-day {
  color: var(--on-dark-muted);
  min-width: 0;
}
.footer-hours-time {
  color: var(--on-dark);
  font-weight: 500;
  white-space: nowrap;
  text-align: right;
}
.footer-about p {
  margin: 1rem 0 1.4rem;
  font-size: var(--fs-body);
  color: var(--on-dark-soft);
}
.socials-row { display: flex; gap: .7rem; }
.socials-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.1);
  color: var(--on-dark);
  transition: background var(--t-hover) var(--ease-hover), color var(--t-hover) var(--ease-hover);
}
.socials-row a:hover { background: var(--grad-gold); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  align-items: center;
  text-align: center;
  font-size: var(--fs-caption);
  color: var(--on-dark-muted);
  position: relative;
  overflow: visible;
}
.footer-bottom a:not(.adm-chip) {
  color: var(--on-dark-soft);
  transition: color var(--t-hover) var(--ease-hover);
}
.footer-bottom a:not(.adm-chip):hover { color: var(--on-dark-accent); }
.footer-legal {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  overflow: visible;
}
.footer-legal a:not(.adm-chip) {
  color: var(--on-dark-soft);
  font-size: var(--fs-caption);
  transition: color var(--t-hover) var(--ease-hover);
}
.footer-legal a:not(.adm-chip):hover { color: var(--on-dark-accent); }

/* ---------- 19. Scroll appear + hover grow (one motion family) ---------- */
.reveal {
  opacity: 0;
  transform: scale(var(--reveal-from));
  transition:
    opacity var(--reveal-dur) var(--ease-out),
    transform var(--reveal-dur) var(--ease-out);
  transition-delay: 0s;
}
.reveal.in {
  opacity: 1;
  transform: scale(1);
}
.reveal.in.d1 { transition-delay: .04s; }
.reveal.in.d2 { transition-delay: .08s; }
.reveal.in.d3 { transition-delay: .12s; }
.reveal.in.d4 { transition-delay: .16s; }

@media (hover: hover) and (pointer: fine) {
  .card,
  .step-card,
  .service-card,
  .price-card,
  .info-card,
  .article-block,
  .offer-card,
  .team-card,
  .gallery-item,
  .cert,
  .price-cat,
  .testi-card,
  .choice,
  .cat-nav a,
  .socials-row a,
  .team-card .socials a {
    transform-origin: center center;
    transition:
      opacity var(--t-hover) var(--ease-hover),
      transform var(--t-hover) var(--ease-hover);
  }
  .card:not(.reveal),
  .step-card:not(.reveal),
  .service-card:not(.reveal),
  .price-card:not(.reveal),
  .info-card:not(.reveal),
  .article-block:not(.reveal),
  .offer-card:not(.reveal),
  .team-card:not(.reveal),
  .gallery-item:not(.reveal),
  .cert:not(.reveal),
  .price-cat:not(.reveal),
  .testi-card:not(.reveal),
  .choice:not(.reveal),
  .cat-nav a:not(.reveal),
  .socials-row a,
  .team-card .socials a {
    transform: scale(1);
  }
  .card:hover,
  .step-card:hover,
  .service-card:hover,
  .price-card:hover,
  .info-card:hover,
  .article-block:hover,
  .offer-card:hover,
  .team-card:hover,
  .gallery-item:hover,
  .cert:hover,
  .price-cat:hover,
  .testi-card:hover,
  .choice:hover,
  .cat-nav a:hover,
  .socials-row a:hover,
  .team-card .socials a:hover,
  .to-top.show:hover,
  .reveal.in.card:hover,
  .reveal.in.step-card:hover,
  .reveal.in.service-card:hover,
  .reveal.in.price-card:hover,
  .reveal.in.info-card:hover,
  .reveal.in.article-block:hover,
  .reveal.in.offer-card:hover,
  .reveal.in.team-card:hover,
  .reveal.in.cert:hover,
  .reveal.in.price-cat:hover,
  .reveal.in.testi-card:hover {
    transform: scale(var(--hover-scale));
  }
}

/* ---------- 20. Helpers ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: var(--space-3); }
.mt-2 { margin-top: var(--space-6); }
.mt-3 { margin-top: var(--space-after); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-3); }
.mb-block { margin-bottom: var(--space-5); }
.stack-lead { margin: var(--space-3) 0 var(--space-5); }
.stack-form-title { margin-bottom: var(--space-4); }
.stack-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-stack);
  align-items: center;
  margin-top: var(--space-4);
}
.btn-block { width: 100%; }
.gc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap-stack);
}
.muted-line {
  margin-top: var(--space-2);
  color: var(--muted);
}
.form-success-center {
  max-width: 520px;
  margin: var(--space-3) auto 0;
}
.divider-top { border-top: 1px solid rgba(43,43,43,.08); }
.fade-veil { background: linear-gradient(180deg, var(--cream), var(--white)); }

/* Back to top */
.to-top {
  position: fixed;
  right: max(16px, calc((100% - min(100%, var(--site-max))) / 2 + 16px));
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--white);
  display: grid; place-items: center;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transform: scale(.96);
  transition:
    opacity var(--t-hover) var(--ease-hover),
    transform var(--t-hover) var(--ease-hover),
    visibility 0s linear var(--t-hover),
    bottom var(--t-hover) var(--ease);
  z-index: 90;
}
.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: 0s;
}
.to-top .gicon { font-size: 1.7rem; color: inherit; }
body.cookie-banner-open .to-top,
body:has(.cookie-banner.show) .to-top {
  bottom: calc(110px + env(safe-area-inset-bottom, 0px));
}

/* ---------- 21. Responsive ---------- */
@media (min-width: 600px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .testi-card { flex-basis: 60%; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 880px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse .media { order: 0; }
  .split .media {
    height: 100%;
  }
  .split .media img {
    height: 100%;
    min-height: clamp(280px, 28vw, 420px);
    aspect-ratio: auto;
  }
  .svc-intro { grid-template-columns: 1.2fr .8fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  /* Map fills full contact column height (index «Завітайте до нас») */
  .contact-grid > .map-wrap {
    position: relative;
    align-self: stretch;
    min-height: 420px;
    height: 100%;
  }
  .contact-grid > .map-wrap iframe {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
  }
  /* Booking form stretches with info column (contacts.php) */
  .contact-grid > .reveal:has(.form),
  .contact-grid > .reveal.d1:not(.map-wrap) {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
  }
  .contact-grid .form {
    flex: 1 1 auto;
    height: 100%;
    box-sizing: border-box;
  }
  .testi-card { flex-basis: 42%; }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .steps { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1100px) {
  .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; }
}

/* ---- Mobile nav drawer ---- */
@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .nav-cta.desktop { display: none; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 360px;
    max-width: 100%;
    width: min(86vw, 360px);
    margin: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: .4rem;
    padding: 6rem 1.35rem 2rem;
    padding-top: max(5.5rem, calc(4.5rem + env(safe-area-inset-top, 0px)));
    padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px));
    background: var(--cream);
    box-shadow: var(--shadow-lg);
    transform: translate3d(105%, 0, 0);
    transition: transform var(--t) var(--ease);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 120;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    visibility: hidden;
    pointer-events: none;
  }
  body.nav-open {
    overflow: hidden;
  }
  body.nav-open .nav-links {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links > li { width: 100%; }
  .nav-links > li > a { display: block; padding: .8rem 0; color: var(--gray-900) !important; font-size: 1.1rem; border-bottom: 1px solid rgba(43,43,43,.07); }
  .site-header:not(.scrolled) .nav-links > li > a { color: var(--gray-900) !important; }
  .nav-links > li > a.btn {
    display: inline-flex;
    padding: .65rem 1.3rem;
    color: var(--white) !important;
    border-bottom: none;
    text-align: center;
  }
  .site-header:not(.scrolled) .nav-links > li > a.btn { color: var(--white) !important; }
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: transparent;
    border: none;
    backdrop-filter: none;
    padding: 0 0 .5rem .8rem;
    display: none;
    max-height: none;
    overflow: visible;
    min-width: 0;
    max-width: none;
  }
  .dropdown::after { display: none; }
  .dropdown a {
    margin-inline: 0;
    padding: .45rem 0;
    font-size: .95rem;
  }
  .dropdown li:first-child a,
  .dropdown li:last-child a { margin-top: 0; margin-bottom: 0; }
  .dropdown a:first-child { margin-top: 0; }
  .dropdown a:last-child { margin-bottom: 0; }
  .has-drop.open .dropdown { display: grid; }
  .has-drop > a::after { content: " ⌄"; }
  .nav-links .btn { margin-top: 1rem; width: 100%; }
  .nav-overlay {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    inset: 0;
    background: rgba(20,18,16,.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t), visibility var(--t);
    z-index: 110;
    pointer-events: none;
  }
  body.nav-open .nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  body.nav-open .nav-toggle span { background: var(--ink) !important; }
  /* Keep burger above the drawer while open */
  body.nav-open .nav-toggle { z-index: 130; }
}

/* ---------- 22. Accessibility / motion budgets ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-content > *,
  .page-hero > .container > *,
  .scroll-cue {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
  .hero-bg { animation: none !important; }
}

/* Weak devices / battery-saver (class set by main.js) */
html.motion-lite {
  --t-fast: .18s;
  --t: .32s;
  --t-hover: .32s;
  --reveal-dur: .32s;
  --reveal-from: 1;
  --hover-scale: 1;
}
html.motion-lite .reveal {
  transition-duration: .32s;
}
html.motion-lite .reveal.in.d1,
html.motion-lite .reveal.in.d2,
html.motion-lite .reveal.in.d3,
html.motion-lite .reveal.in.d4 {
  transition-delay: 0s;
}
html.motion-lite .hero-content > *,
html.motion-lite .page-hero > .container > *,
html.motion-lite .scroll-cue {
  animation-duration: .32s !important;
  animation-delay: 0s !important;
}
html.motion-lite .site-header.scrolled::before,
html.motion-lite .cta-band::after,
html.motion-lite .hero::after,
html.motion-lite .page-hero::after {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

@media (max-width: 720px) {
  .hero::after,
  .page-hero::after {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: var(--r-xs); }

::selection { background: var(--gold-soft); color: var(--white); }

/* =====================================================================
   23. EXTENDED COMPONENTS (v2)
   ===================================================================== */

/* ---- Process / steps ---- */
.steps {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.1rem);
  grid-template-columns: 1fr;
  padding-top: 1.35rem;
}
.step-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--pad-card);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(31,28,26,.05);
}
.step-card .step-no {
  position: absolute;
  top: -22px;
  left: 1.8rem;
  width: var(--ic-size);
  height: var(--ic-size);
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: var(--ic-fs);
  line-height: 1;
  box-shadow: var(--shadow-gold);
}
.step-card h3 { font-size: var(--fs-h3); margin: .55rem 0 .45rem; }
.step-card p { font-size: var(--fs-body); color: var(--gray-700); }

/* ---- Special offers ---- */
.offer-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  padding: var(--pad-card-lg);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}
.offer-card .offer-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: brightness(.82) saturate(1.04);
}
.offer-card::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  z-index: -1;
  background: var(--grad-media-veil);
}
.offer-card .ribbon {
  position: absolute; top: 16px; right: 16px;
  background: var(--grad-gold);
  color: var(--white);
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  padding: .4rem .9rem; border-radius: var(--r-pill);
  box-shadow: var(--shadow-gold);
  text-shadow: 0 1px 1px rgba(90, 55, 0, .22);
  min-height: 2rem;
}
.offer-card h3 {
  color: var(--white);
  font-size: var(--fs-h3);
  text-shadow: 0 1px 14px rgba(18, 16, 14, .4);
}
.offer-card p {
  color: rgba(255, 255, 255, .94);
  font-size: var(--fs-body);
  margin: .4rem 0 1rem;
  text-shadow: 0 1px 10px rgba(18, 16, 14, .35);
}

/* ---- Gift card promo ---- */
.giftcard {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  padding: var(--pad-band);
  background: var(--grad-gold);
  color: var(--white);
  display: grid;
  gap: var(--gap-split);
  align-items: stretch;
  grid-template-columns: 1fr;
  box-shadow: var(--shadow-gold);
}
.giftcard h2 { color: var(--white); text-shadow: 0 1px 2px rgba(90, 55, 0, .2); }
.giftcard p { color: rgba(255, 255, 255, .96); margin: .85rem 0 1.4rem; text-shadow: 0 1px 1px rgba(90, 55, 0, .15); }
.giftcard .eyebrow {
  color: var(--white);
  justify-content: flex-start;
}
.giftcard .eyebrow::before {
  background: rgba(255, 255, 255, .85);
}
.giftcard .gc-visual {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: var(--r-media);
  backdrop-filter: var(--blur);
  padding: var(--space-5);
  aspect-ratio: 16/10;
  min-height: clamp(200px, 22vw, 280px);
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: var(--shadow-md);
}
.giftcard .gc-visual .gc-brand { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: .1em; }
.giftcard .gc-visual .gc-amount { font-family: var(--font-display); font-size: 2.4rem; }
.giftcard .gc-visual small { letter-spacing: .3em; text-transform: uppercase; font-size: .7rem; opacity: .85; }

/* ---- Brands strip ---- */
.brands {
  display: flex; flex-wrap: wrap;
  gap: 1.6rem 3rem;
  justify-content: center; align-items: center;
}
.brands span {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: .08em;
  color: var(--gray-500);
  transition: color var(--t-hover) var(--ease-hover);
}
.brands span:hover { color: var(--gold-deep); }

/* ---- Newsletter ---- */
.newsletter {
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: var(--pad-band);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.newsletter-form,
.newsletter-actions {
  display: flex;
  gap: var(--gap-stack);
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  max-width: 520px;
  margin: 1.4rem auto 0;
}
.newsletter-form input {
  flex: 1 1 240px;
  min-height: clamp(2.75rem, 6vw, 3.15rem);
  padding: .95rem 1.2rem;
  border: 1.5px solid rgba(43,43,43,.12);
  border-radius: var(--r-pill);
  background: var(--white);
  box-sizing: border-box;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.newsletter-form .btn,
.newsletter-actions .btn {
  min-height: clamp(2.75rem, 6vw, 3.15rem);
  box-sizing: border-box;
}
.newsletter-form input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(212,173,82,.16); }

/* ---- Stats band ---- */
.stats-band { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; text-align: center; }
.stats-band .num { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--on-dark-accent); line-height: 1; }
.stats-band small { color: var(--on-dark-muted); letter-spacing: .04em; }

/* ---- Blog ---- */
.blog-card .body .blog-meta {
  display: flex;
  gap: .8rem;
  align-items: center;
  font-size: var(--fs-meta);
  color: var(--muted);
  margin-bottom: .6rem;
  letter-spacing: .03em;
}
.blog-card .body .blog-meta .tag { color: var(--gold-deep); font-weight: 500; }
.blog-card .body h2,
.blog-card .body h3 { font-size: var(--fs-h3); }
.blog-card .body p {
  font-size: var(--fs-body);
  color: var(--gray-700);
}

/* Article page */
.page-hero.article-hero {
  min-height: clamp(52vh, 58vh, 66vh);
  align-items: center;
  padding-bottom: clamp(5rem, 11vw, 8rem);
}
.page-hero.article-hero h1 {
  max-width: 920px;
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  line-height: 1.12;
}
.page-hero.article-hero p { max-width: 640px; }

.article-hero .article-hero-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .45rem .75rem;
  align-items: center;
  padding: .5rem 1rem;
  margin: 0 0 1.15rem;
  border-radius: var(--r-pill);
  background: var(--glass-bg-dark);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255,255,255,.16);
  font-size: .82rem;
  color: rgba(250,246,240,.88);
  letter-spacing: .05em;
}
.article-hero .article-hero-meta .tag {
  color: var(--gold-soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.article-hero .article-hero-meta .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(250,246,240,.45);
  flex-shrink: 0;
}

.article-body-section { padding-top: var(--space-section); }
.article-layout {
  display: grid;
  gap: var(--gap-split);
  grid-template-columns: 1fr;
  align-items: start;
}

.article-sidebar { display: grid; gap: 1.25rem; }
.article-byline { padding: var(--pad-card) !important; }
.article-byline .eyebrow { margin-bottom: .65rem; }
.article-byline-date {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0 0 .85rem;
}
.article-byline-tag {
  margin-top: .85rem;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}

.article-toc { padding: var(--pad-card) !important; }
.article-toc .eyebrow { margin-bottom: .85rem; }
.article-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .35rem;
}
.article-toc a {
  display: block;
  padding: .55rem .65rem;
  border-radius: var(--r-sm);
  font-size: .92rem;
  color: var(--gray-700);
  line-height: 1.35;
  transition: background var(--t-fast), color var(--t-fast);
}
.article-toc a:hover {
  background: rgba(212,173,82,.12);
  color: var(--gold-deep);
}

.article-main { min-width: 0; }
.article-lead {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.32rem, 2.6vw, 1.72rem);
  font-style: italic;
  line-height: var(--lh-lead);
  color: var(--ink);
  margin: 0 0 2rem;
  padding: .25rem 0;
  border: none;
  quotes: none;
}
.article-lead::before {
  content: "\201C";
  position: absolute;
  top: -.35rem;
  left: -.15rem;
  font-size: clamp(2.8rem, 6vw, 4rem);
  line-height: 1;
  color: var(--gold-soft);
  opacity: .4;
  font-family: var(--font-display);
  font-style: normal;
}
.article-divider {
  width: 72px;
  height: 3px;
  background: var(--grad-gold);
  border-radius: var(--r-pill);
  margin: 0 0 2.4rem;
  box-shadow: var(--shadow-gold);
}

.article-block {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.35rem;
  align-items: start;
  padding: var(--pad-card);
  margin-bottom: 1.25rem;
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(31,28,26,.05);
  scroll-margin-top: 100px;
}
.article-block:target {
  border-color: rgba(212,173,82,.4);
  box-shadow: var(--shadow-md), 0 0 0 3px rgba(212,173,82,.14);
}
.article-no {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  box-shadow: var(--shadow-gold);
}
.article-block-body h2 {
  font-size: clamp(1.22rem, 2.2vw, 1.55rem);
  margin: 0 0 .55rem;
  line-height: var(--lh-heading);
}
.article-block-body p {
  margin: 0;
  font-size: var(--fs-body);
  color: var(--gray-700);
  line-height: var(--lh-body);
}

.article-tips {
  margin-top: 2rem;
  padding: var(--pad-card) !important;
  background: var(--grad-rose) !important;
  border: 1px solid rgba(240, 180, 190, .55) !important;
}
.article-tips .eyebrow { margin-bottom: 1rem; }
.article-tips .check-list { margin: 0; }

.article-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-top: 2.25rem;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--r-lg);
  background: var(--cream-deep);
  border: 1px solid rgba(31,28,26,.06);
}
.article-action-text {
  display: grid;
  gap: .2rem;
}
.article-action-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
}
.article-action-text span {
  font-size: .88rem;
  color: var(--muted);
  letter-spacing: .03em;
}

.article-related { margin-top: .4rem; }
.article-back {
  margin: 2.5rem 0 0;
  text-align: center;
}
.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.55rem;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(31,28,26,.12);
  color: var(--gray-700);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .03em;
  transition: border-color var(--t-hover) var(--ease-hover), color var(--t-hover) var(--ease-hover), background var(--t-hover) var(--ease-hover);
}
.article-back-link:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  background: rgba(212,173,82,.08);
}

@media (min-width: 992px) {
  .article-layout {
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 4rem);
  }
  .article-sidebar {
    position: sticky;
    top: 96px;
  }
}

/* ---- Cookie consent ---- */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%) translateY(180%);
  width: 980px;
  max-width: calc(100% - 24px);
  width: min(980px, calc(100% - 24px));
  box-sizing: border-box;
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3) var(--space-4);
  display: flex; align-items: center; gap: 1rem 1.4rem; flex-wrap: wrap;
  z-index: 160;
  transition: transform .5s var(--ease);
}
.cookie-banner.show { transform: translateX(-50%) translateY(0); }
.cookie-banner p { font-size: var(--fs-caption); flex: 1 1 220px; margin: 0; min-width: 0; overflow-wrap: anywhere; }
.cookie-banner a { color: var(--gold-deep); text-decoration: underline; }
.cookie-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.cookie-actions .btn { flex: 1 1 auto; min-width: 7.5rem; }

/* ---- Legal / article prose ---- */
.legal-wrap { max-width: 840px; margin-inline: auto; }
.legal-meta { color: var(--muted); font-size: var(--fs-caption); margin-bottom: 2rem; }
.legal-toc {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43,43,43,.05);
  margin-bottom: 2.4rem;
}
.legal-toc h2 { font-size: 1.1rem; margin-bottom: .8rem; }
.legal-toc ol { padding-left: 1.2rem; display: grid; gap: .4rem; color: var(--gray-700); }
.legal-toc a {
  transition: color var(--t-hover) var(--ease-hover);
}
.legal-toc a:hover { color: var(--gold-deep); }
.legal-wrap h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 2.4rem 0 .8rem; }
.legal-wrap h3 { font-size: 1.2rem; margin: 1.6rem 0 .5rem; }
.legal-wrap p { margin-bottom: 1rem; }
.legal-wrap ul, .legal-wrap ol.list { list-style: disc; padding-left: 1.4rem; display: grid; gap: .5rem; margin: 0 0 1.2rem; }
.legal-wrap ul li, .legal-wrap ol.list li { color: var(--gray-700); }
.legal-wrap a.inline { color: var(--gold-deep); text-decoration: underline; }

/* ---- Contact form when-choices ---- */
.choice-grid { display: flex; flex-wrap: wrap; gap: .6rem; }
.choice {
  position: relative;
  padding: .7rem 1.15rem;
  border: 1.5px solid rgba(43,43,43,.14);
  border-radius: var(--r-pill);
  background: var(--cream);
  color: var(--gray-700);
  font-size: var(--fs-caption);
  line-height: 1.25;
  cursor: pointer;
  min-height: 2.6rem;
  transition: background var(--t-hover) var(--ease-hover), color var(--t-hover) var(--ease-hover), border-color var(--t-hover) var(--ease-hover), box-shadow var(--t-hover) var(--ease-hover);
}
.choice input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}
.choice:hover { border-color: var(--gold); color: var(--gold-deep); }
.choice.selected,
.choice:has(input:checked) {
  background: var(--grad-gold);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
  text-shadow: 0 1px 1px rgba(90, 55, 0, .22);
}
.choice:focus-within {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ---- Price list (categorised, text-left / price-right) ---- */
.cat-nav { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; max-width: 900px; margin: 0 auto 2.4rem; }
.cat-nav a {
  padding: .5rem 1.1rem;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(43,43,43,.12);
  background: var(--surface);
  font-size: var(--fs-caption);
  color: var(--gray-700);
  min-height: 2.2rem;
  transition: background var(--t-hover) var(--ease-hover), color var(--t-hover) var(--ease-hover), border-color var(--t-hover) var(--ease-hover), box-shadow var(--t-hover) var(--ease-hover);
}
.cat-nav a:hover { background: var(--grad-gold); color: var(--white); border-color: transparent; box-shadow: var(--shadow-gold); }

.price-list { display: grid; gap: var(--gap-grid); max-width: 900px; margin-inline: auto; }
.price-cat {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--pad-card-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43,43,43,.05);
  scroll-margin-top: 100px;
}
.price-cat-head { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 2px solid var(--gold-soft); }
.price-cat-head .ic {
  width: var(--ic-size);
  height: var(--ic-size);
  flex: 0 0 auto;
  border-radius: var(--ic-radius);
  background: var(--grad-gold);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: var(--ic-fs);
  line-height: 1;
  box-shadow: var(--shadow-gold);
}
.price-cat-head h3 { font-size: var(--fs-h3); margin: 0; }
.price-cat-head h3 a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-hover) var(--ease-hover);
}
.price-cat-head h3 a:hover { color: var(--gold-deep); }
.price-cat-go {
  margin: -.35rem 0 1rem;
  font-size: var(--fs-body);
}
.price-cat-go a {
  color: var(--gold-deep);
  font-weight: 500;
  text-decoration: none;
}
.price-cat-go a:hover { text-decoration: underline; }
.price-cat-head .count {
  margin-left: auto;
  font-size: var(--fs-meta);
  color: var(--muted);
  white-space: nowrap;
}

.pl-row {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.2rem;
  padding: .85rem .8rem;
  margin: 0 -.8rem;
  border-radius: var(--r-sm);
  border-bottom: 1px solid rgba(43,43,43,.07);
  transition: background var(--t-hover) var(--ease-hover);
}
.price-cat .pl-row:last-child { border-bottom: none; }
.pl-row:hover { background: var(--cream); }
.pl-text { min-width: 0; }
.pl-name { display: block; font-weight: 500; color: var(--ink); overflow-wrap: anywhere; word-break: break-word; }
.pl-desc {
  display: block;
  font-size: var(--fs-meta);
  color: var(--muted);
  margin-top: .15rem;
  line-height: 1.45;
}
.pl-price {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  color: var(--gold-deep);
  white-space: nowrap;
  padding-top: .05rem;
}

/* ---- Footer legal row (styles in .site-footer block) ---- */

@media (min-width: 720px) {
  .giftcard { grid-template-columns: 1.2fr .8fr; }
  .giftcard .gc-visual {
    height: 100%;
    aspect-ratio: auto;
  }
}
@media (min-width: 880px) {
  .stats-band { grid-template-columns: repeat(4, 1fr); }
}

/* =====================================================================
   24. NARROW VIEWPORTS (300–480) + SAFE AREAS
   Adaptive polish only - tokens / brand language unchanged
   ===================================================================== */
@media (max-width: 600px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }
  .svc-gallery {
    gap: var(--gap-stack);
  }
  .map-wrap iframe {
    height: clamp(260px, 55vh, 420px);
  }
  .lightbox .lb-nav {
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }
  .lightbox .lb-prev { left: 4px; }
  .lightbox .lb-next { right: 4px; }
  .stats-band {
    gap: 1.4rem .75rem;
  }
  .hero-content {
    padding-top: 4.5rem;
  }
  .scroll-cue {
    display: none;
  }
}

@media (max-width: 480px) {
  :root {
    --fs-h1: clamp(2.05rem, 9.2vw, 2.55rem);
    --fs-h2: clamp(1.7rem, 7vw, 2.05rem);
    --fs-h3: clamp(1.22rem, 5vw, 1.45rem);
    --space-section: clamp(2.75rem, 10vw, 3.75rem);
    --ic-size: 46px;
  }

  .eyebrow {
    letter-spacing: .16em;
    max-width: 100%;
    flex-wrap: wrap;
    gap: .4rem;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 56px);
  }
  .brand .mark {
    font-size: clamp(1.35rem, 6vw, 1.55rem);
  }
  .brand .sub {
    letter-spacing: .28em;
    font-size: .52rem;
  }

  .cta-band,
  .price-cat,
  .card,
  .form,
  .giftcard,
  .offer-card,
  .newsletter,
  .testi-card,
  .info-card {
    padding-inline: clamp(1.05rem, 4vw, 1.45rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: var(--gap-stack);
  }
  .hero-actions .btn,
  .hero-actions .btn-outline-light {
    width: 100%;
    justify-content: center;
  }

  .cta-band {
    padding-block: clamp(1.85rem, 8vw, 2.5rem);
  }

  .step-card {
    padding: var(--space-5) var(--space-4) var(--space-4);
  }

  .gallery-item.tall { grid-row: auto; }

  .hero-meta {
    gap: .75rem;
  }

  .hero-meta .num {
    font-size: clamp(1.55rem, 7vw, 1.85rem);
  }

  .btn {
    max-width: 100%;
  }

  .pl-row {
    gap: .65rem;
    padding-inline: .55rem;
  }

  .pl-price {
    font-size: clamp(1rem, 4.5vw, 1.2rem);
  }

  .field > input,
  .field > textarea,
  .field > select {
    font-size: 16px; /* iOS: avoid auto-zoom on focus */
    max-width: 100%;
    box-sizing: border-box;
  }

  .choice-grid {
    gap: .55rem;
  }

  .footer-bottom {
    gap: .85rem;
    text-align: center;
  }

  .choice {
    flex: 1 1 auto;
    text-align: center;
    justify-content: center;
  }

  .cookie-banner {
    width: calc(100% - 16px);
    max-width: calc(100% - 16px);
    padding: .9rem;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }
  .cookie-banner p {
    flex: 1 1 100%;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-actions .btn {
    flex: 1 1 calc(50% - .4rem);
    min-width: 0;
  }

  .to-top {
    width: 44px;
    height: 44px;
    right: max(12px, calc((100% - min(100%, var(--site-max))) / 2 + 12px));
  }

  .offer-card {
    padding: var(--pad-card);
    min-height: 200px;
  }
}

@media (max-width: 360px) {
  :root {
    --fs-h1: clamp(1.9rem, 9.5vw, 2.2rem);
    --fs-h2: clamp(1.55rem, 7.5vw, 1.85rem);
    --fs-lead: clamp(1.05rem, 3.5vw, 1.14rem);
    --fs-body: clamp(.98rem, 3.2vw, 1.05rem);
  }

  .nav-links {
    width: 360px;
    width: min(94vw, 360px);
    padding-inline: 1.05rem;
  }

  .hero-meta {
    flex-direction: column;
    gap: .85rem;
  }

  .brand .sub {
    letter-spacing: .2em;
  }

  .pl-row {
    flex-direction: column;
    align-items: flex-start;
    gap: .25rem;
  }
  .pl-price {
    padding-top: 0;
  }

  .price-row {
    flex-wrap: wrap;
    gap: .35rem .75rem;
  }
  .price-row .dots {
    display: none;
  }
}

@media (max-width: 320px) {
  .nav {
    gap: .5rem;
  }
  .brand .mark {
    font-size: 1.25rem;
  }
}
