/* ==========================================================================
   Le Beauty Salon — design system
   Tokens ported 1:1 from the original build. Plain CSS, no framework.
   ========================================================================== */

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

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

img, picture, svg, iframe {
  display: block;
  max-width: 100%;
}

button, input, select, textarea { font: inherit; color: inherit; }

/* --- Tokens --------------------------------------------------------------- */
:root {
  /* Surface ladder: base -> elevated -> floating */
  --cream:        hsl(36 33% 94%);
  --cream-raised: hsl(36 30% 91%);
  --cream-sunk:   hsl(34 18% 88%);
  --dark:         hsl(25 18% 12%);
  --darker:       hsl(25 20% 8%);

  --ink:          hsl(25 20% 18%);
  --ink-soft:     hsl(25 12% 42%);
  --on-dark:      hsl(36 33% 94%);

  --gold:         hsl(38 55% 55%);
  --gold-soft:    hsl(35 40% 70%);
  --accent:       hsl(35 35% 48%);
  --accent-deep:  hsl(35 38% 38%);

  --line:         hsl(30 18% 82%);
  --line-dark:    hsl(36 33% 94% / 0.14);

  --radius:       0.25rem;

  /* Spacing scale — every gap in the site comes from here */
  --s-1: 0.5rem;
  --s-2: 0.75rem;
  --s-3: 1rem;
  --s-4: 1.5rem;
  --s-5: 2rem;
  --s-6: 3rem;
  --s-7: 4rem;
  --s-8: 5rem;
  --s-9: 7rem;
  --s-10: 9rem;

  --container: 1400px;
  --gutter: 1.5rem;

  /* Layered, colour-tinted shadows — never a flat grey box-shadow */
  --shadow-raised:
    0 1px 2px hsl(25 30% 18% / 0.04),
    0 4px 12px hsl(25 30% 18% / 0.05);
  --shadow-float:
    0 2px 4px hsl(25 30% 18% / 0.05),
    0 8px 24px hsl(25 30% 18% / 0.07),
    0 20px 48px hsl(25 30% 18% / 0.06);
  --shadow-gold:
    0 2px 8px hsl(38 55% 40% / 0.14),
    0 12px 32px hsl(38 55% 40% / 0.12);

  /* Spring-style easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 5rem;
}

@media (min-width: 768px) {
  :root { --gutter: 2rem; --nav-h: 6.25rem; }
}

/* --- Base ----------------------------------------------------------------- */
body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Lato", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* `clip`, not `hidden`: `hidden` makes body a scroll container, which kills
     position:sticky inside it (the price filter bar). `clip` still contains
     horizontal bleed. */
  overflow-x: clip;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.75rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2.125rem, 4.6vw, 3.75rem); }
h3 { font-size: clamp(1.5rem, 2.4vw, 1.875rem); }
h4 { font-size: 1.25rem; }

p { text-wrap: pretty; }

a { color: inherit; text-decoration: none; }

em { font-style: italic; }

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

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

.on-dark :focus-visible,
.sec--dark :focus-visible,
.hero :focus-visible { outline-color: var(--gold-soft); }

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

.container--narrow { max-width: 860px; }
.container--mid { max-width: 1120px; }

.sec {
  padding-block: var(--s-9);
  position: relative;
}

@media (min-width: 768px) {
  .sec { padding-block: var(--s-10); }
}

.sec--tight { padding-block: var(--s-8); }

.sec--dark {
  background: var(--dark);
  color: var(--on-dark);
}

.sec--darker {
  background: var(--darker);
  color: var(--on-dark);
}

.sec--raised { background: var(--cream-raised); }

/* Layered radial gradients + grain give the flat cream some depth */
.sec--texture::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 15% 0%, hsl(38 55% 55% / 0.07), transparent 70%),
    radial-gradient(50% 60% at 90% 100%, hsl(35 35% 48% / 0.06), transparent 70%);
}

.sec--dark.sec--texture::before,
.sec--darker.sec--texture::before {
  background:
    radial-gradient(55% 45% at 10% 0%, hsl(38 55% 55% / 0.12), transparent 70%),
    radial-gradient(45% 55% at 95% 90%, hsl(38 55% 55% / 0.08), transparent 70%);
}

.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

.sec > .container { position: relative; z-index: 1; }

/* --- Type helpers --------------------------------------------------------- */
.eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-3);
  font-weight: 700;
}

.sec--dark .eyebrow,
.sec--darker .eyebrow { color: var(--gold-soft); }

.sec-head { max-width: 42rem; margin-bottom: var(--s-8); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head p { margin-top: var(--s-4); color: var(--ink-soft); }
.sec--dark .sec-head p,
.sec--darker .sec-head p { color: hsl(36 33% 94% / 0.62); }

.sec-head h2 em { color: var(--accent); }
.sec--dark .sec-head h2 em,
.sec--darker .sec-head h2 em { color: var(--gold-soft); }

.lede {
  font-size: 1.125rem;
  color: var(--ink-soft);
}

.rule {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-top: var(--s-6);
}

.rule::before {
  content: "";
  width: 3rem;
  height: 1px;
  background: var(--accent);
  flex: none;
}

.sec--dark .rule::before,
.sec--darker .rule::before { background: var(--gold-soft); }

.rule span {
  font-size: 0.6875rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.sec--dark .rule span,
.sec--darker .rule span { color: var(--gold-soft); }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  transition:
    transform 0.4s var(--ease),
    opacity 0.3s var(--ease-soft),
    background-color 0.35s var(--ease-soft),
    border-color 0.35s var(--ease-soft),
    color 0.35s var(--ease-soft),
    box-shadow 0.4s var(--ease);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: 0.08s; }

.btn--solid {
  background: var(--darker);
  color: var(--on-dark);
  box-shadow: var(--shadow-raised);
}
.btn--solid:hover { background: var(--dark); box-shadow: var(--shadow-float); }

.btn--gold {
  background: var(--gold-soft);
  color: var(--darker);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { background: var(--gold); color: var(--darker); }

.btn--accent {
  background: var(--accent);
  color: var(--on-dark);
  box-shadow: var(--shadow-raised);
}
.btn--accent:hover { background: var(--ink); box-shadow: var(--shadow-float); }

.btn--ghost {
  border-color: hsl(25 20% 18% / 0.24);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.btn--ghost-light {
  border-color: hsl(36 33% 94% / 0.4);
  color: var(--on-dark);
}
.btn--ghost-light:hover { background: hsl(36 33% 94% / 0.12); }

.btn--ghost-gold {
  border-color: hsl(35 40% 70% / 0.6);
  color: var(--gold-soft);
}
.btn--ghost-gold:hover { background: var(--gold-soft); color: var(--dark); }

.btn--sm { padding: 0.7rem 1.5rem; letter-spacing: 0.25em; }

.link-underline {
  display: inline-block;
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  padding-bottom: 0.3rem;
  border-bottom: 1px solid hsl(35 35% 48% / 0.4);
  transition: border-color 0.35s var(--ease-soft), color 0.35s var(--ease-soft), transform 0.4s var(--ease);
}
.link-underline:hover { border-bottom-color: var(--accent); transform: translateX(3px); }
.link-underline:active { transform: translateX(0); }

.sec--dark .link-underline,
.sec--darker .link-underline {
  color: var(--gold-soft);
  border-bottom-color: hsl(35 40% 70% / 0.4);
}
.sec--dark .link-underline:hover,
.sec--darker .link-underline:hover { border-bottom-color: var(--gold-soft); }

/* --- Header --------------------------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background-color 0.5s var(--ease-soft), border-color 0.5s var(--ease-soft), backdrop-filter 0.5s;
  border-bottom: 1px solid transparent;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* space-between spreads these anyway, so this gap only bites at the one
     width where the nav is widest relative to the bar (1024px). */
  gap: var(--s-3);
  /* The logo now sets the bar's height, so the padding is tighter than the
     old text-height bar needed — see --nav-h, which must track this. */
  padding-block: 0.6rem;
}

.header__brand {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s var(--ease-soft);
}
.header__brand:hover { opacity: 0.75; }

/* The logo is a square photo cropped to a circle — the mark and "BEAUTY
   SALON" both sit inside the inscribed circle, so nothing gets clipped.
   It carries the brand on its own; the name lives in the image's alt. */
.header__logo {
  flex: none;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  object-fit: cover;
}

/* Over the hero the beige circle carries itself; on the cream scrolled bar
   it needs a hairline to keep its edge. */
.header.is-solid .header__logo { box-shadow: 0 0 0 1px hsl(25 20% 18% / 0.12); }

@media (min-width: 768px) {
  .header__logo { width: 5rem; height: 5rem; }
}

.header__nav { display: none; }

@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: var(--s-5);
  }
}


.header__link {
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  white-space: nowrap;
  color: hsl(36 33% 94% / 0.82);
  position: relative;
  padding-block: 0.35rem;
  transition: color 0.35s var(--ease-soft);
}

.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.header__link:hover::after,
.header__link[aria-current="page"]::after { transform: scaleX(1); }
.header__link[aria-current="page"] { color: var(--gold-soft); }

/* Scrolled / solid state */
.header.is-solid {
  background: hsl(36 33% 94% / 0.95);
  backdrop-filter: blur(12px) saturate(140%);
  border-bottom-color: var(--line);
}
.header.is-solid .header__brand { color: var(--ink); }
.header.is-solid .header__link { color: hsl(25 20% 18% / 0.7); }
.header.is-solid .header__link:hover { color: var(--accent); }
.header.is-solid .header__link[aria-current="page"] { color: var(--accent); }
.header.is-solid .header__burger { color: var(--ink); }

.header__actions { display: flex; align-items: center; gap: var(--s-3); }

/* Instagram sits in the header only where the full nav is shown; below that
   the burger takes over and the link lives in the drawer instead. */
.header__social {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--on-dark);
  transition: color 0.35s var(--ease-soft), transform 0.3s var(--ease);
}
.header__social:hover { color: var(--gold-soft); transform: translateY(-1px); }
.header.is-solid .header__social { color: hsl(25 20% 18% / 0.7); }
.header.is-solid .header__social:hover { color: var(--accent); }

@media (min-width: 1024px) {
  .header__social { display: inline-flex; }
}

/* In the drawer, Instagram rides in the top row beside the close button —
   a full-width button down in the foot pushed nav links out of view on
   phone-height screens. */
.drawer__topactions {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.drawer__ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--on-dark);
  transition: color 0.35s var(--ease-soft), transform 0.3s var(--ease);
}
.drawer__ig:hover { color: var(--gold-soft); }
.drawer__ig:active { transform: scale(0.92); }

.header__burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-right: -0.6rem;
  background: none;
  border: 0;
  color: var(--on-dark);
  cursor: pointer;
  transition: color 0.5s var(--ease-soft), transform 0.3s var(--ease);
}
.header__burger:active { transform: scale(0.92); }

@media (min-width: 1024px) {
  .header__burger { display: none; }
  .header__cta { display: inline-flex; }
}

.header__cta { display: none; white-space: nowrap; }

@media (min-width: 480px) {
  .header__cta { display: inline-flex; }
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--darker);
  color: var(--on-dark);
  display: flex;
  flex-direction: column;
  padding: var(--s-4) var(--gutter) var(--s-7);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.35s var(--ease-soft), transform 0.45s var(--ease), visibility 0.35s;
}

.drawer.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  margin-bottom: var(--s-5);
}

.drawer__close {
  width: 2.75rem;
  height: 2.75rem;
  margin-right: -0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.drawer__close:hover { opacity: 0.7; }
.drawer__close:active { transform: scale(0.92); }

.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  flex: 1;
  overflow-y: auto;
}

.drawer__link {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  /* Body line-height (1.7) would push the 7th link past the fold on a 390x844. */
  line-height: 1.2;
  padding-block: 0.5rem;
  color: hsl(36 33% 94% / 0.85);
  transition: color 0.3s var(--ease-soft), transform 0.4s var(--ease);
}
.drawer__link:hover { color: var(--gold-soft); transform: translateX(6px); }
.drawer__link:active { transform: translateX(2px); }
.drawer__link[aria-current="page"] { color: var(--gold-soft); }

.drawer__foot {
  border-top: 1px solid var(--line-dark);
  padding-top: var(--s-5);
  margin-top: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

body.is-locked { overflow: hidden; }

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 640px;
  height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--darker);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}

/* Colour treatment + gradient overlay, per house rules */
.hero__tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, hsl(35 40% 55% / 0.28), hsl(25 30% 20% / 0.35));
  mix-blend-mode: multiply;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  /* Vertical scrim for the headline + a left vignette so the left-aligned
     copy keeps contrast over the bright window and bench. */
  background:
    linear-gradient(
      to right,
      hsl(25 20% 8% / 0.55) 0%,
      hsl(25 20% 8% / 0.18) 45%,
      hsl(25 20% 8% / 0) 72%
    ),
    linear-gradient(
      to bottom,
      hsl(25 20% 8% / 0.45) 0%,
      hsl(25 20% 8% / 0.26) 34%,
      hsl(25 20% 8% / 0.72) 74%,
      hsl(25 20% 8% / 0.94) 100%
    );
}

.hero__body {
  position: relative;
  z-index: 2;
  padding-bottom: var(--s-9);
  color: var(--on-dark);
}

@media (min-width: 768px) {
  .hero__body { padding-bottom: var(--s-10); }
}

.hero__eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: var(--s-4);
  font-weight: 700;
}

@media (min-width: 768px) {
  .hero__eyebrow { font-size: 0.8125rem; }
}

/* Georgia scaled to Cormorant's advance widths (measured: 10.45em vs 8.68em
   for the longest hero row). Without it the first row would blow past the
   gutter for the moment the webfont is still swapping in. */
@font-face {
  font-family: "Hero Fallback";
  src: local("Georgia"), local("Times New Roman");
  size-adjust: 83%;
}

.hero h1 {
  /* Two rows, always. Row one is nowrap and measures a constant 8.68em
     ("Et stille rum for " + the widest service word), so the type scale is
     capped at whatever keeps that row inside the gutters — the design's own
     scale is untouched from ~445px up, and only shrinks below that. */
  font-family: "Cormorant Garamond", "Hero Fallback", ui-serif, Georgia, serif;
  max-width: none;
  font-size: min(clamp(2.75rem, 7vw, 5.5rem), calc((100vw - 3rem) / 9));
  margin-bottom: var(--s-6);
  letter-spacing: -0.03em;
}

.hero h1 em { color: var(--gold-soft); }

/* Rotating service word. Every word shares one grid cell, so a swap changes
   only which one is visible — the headline never reflows. */
.hero__line {
  display: block;
  white-space: nowrap;
}

/* Sits at the end of row one, so the cell being as wide as the longest word
   ("head spa") costs nothing — the slack is trailing space on a left-aligned
   line, and the row never changes width as the word changes. */
.hero__rot {
  display: inline-grid;
  justify-items: start;
}

.hero__rot em {
  grid-area: 1 / 1;
  /* A two-word entry like "head spa" must never wrap — a second line would
     grow the shared cell and push the rest of the headline down. */
  white-space: nowrap;
  /* Waiting below the line, invisible; .is-active lifts it into place. */
  opacity: 0;
  transform: translateY(0.3em);
  transition: opacity 0.5s var(--ease-soft), transform 0.6s var(--ease);
}

.hero__rot em.is-active { opacity: 1; transform: none; }
.hero__rot em.is-out { opacity: 0; transform: translateY(-0.3em); }

@media (prefers-reduced-motion: reduce) {
  .hero__rot em,
  .hero__rot em.is-out { transform: none; transition: opacity 0.35s linear; }
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

@media (min-width: 480px) {
  .hero__actions { flex-direction: row; }
}

/* Compact page hero for interior pages */
.phero {
  position: relative;
  padding-top: calc(var(--nav-h) + var(--s-7));
  padding-bottom: var(--s-7);
  background: var(--dark);
  color: var(--on-dark);
  overflow: hidden;
}

.phero__media {
  position: absolute;
  inset: 0;
}

.phero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.phero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(25 20% 8% / 0.92), hsl(25 20% 8% / 0.55));
}

.phero__body { position: relative; z-index: 2; }
.phero h1 { font-size: clamp(2.5rem, 5.5vw, 4.25rem); letter-spacing: -0.02em; }
.phero .lede { color: hsl(36 33% 94% / 0.72); margin-top: var(--s-4); max-width: 46rem; }
.phero .eyebrow { color: var(--gold-soft); }

.phero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-5);
  margin-top: var(--s-5);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.phero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-6);
}

/* --- Breadcrumbs ---------------------------------------------------------- */
.crumbs {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(36 33% 94% / 0.55);
  margin-bottom: var(--s-4);
}

.crumbs ol {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.crumbs li + li::before { content: "/"; margin-right: 0.5rem; opacity: 0.5; }
.crumbs a { transition: color 0.3s var(--ease-soft); }
.crumbs a:hover { color: var(--gold-soft); }
.crumbs [aria-current] { color: hsl(36 33% 94% / 0.85); }

/* --- Split (image + text) ------------------------------------------------- */
.split {
  display: grid;
  gap: var(--s-7);
  align-items: center;
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
  .split--wide { gap: 6rem; }
  .split__media--last { order: 2; }
}

.split__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}

/* --- Image frame (overlay + colour treatment) ----------------------------- */
.frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-sunk);
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(25 20% 8% / 0.6), transparent 55%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-soft);
  pointer-events: none;
}

.frame--always::after { opacity: 1; }

/* --- Media switcher (about gallery) --------------------------------------- */
.switcher__stage {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-sunk);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-float);
}

.switcher__stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s var(--ease-soft);
}

.switcher__stage img.is-active { opacity: 1; }

.switcher__controls {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  margin-top: var(--s-3);
}

.switcher__arrow {
  flex: none;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 1px solid hsl(35 35% 48% / 0.3);
  border-radius: var(--radius);
  color: var(--ink);
  cursor: pointer;
  transition: background-color 0.3s var(--ease-soft), opacity 0.3s, transform 0.3s var(--ease);
}
.switcher__arrow:hover:not(:disabled) { background: var(--cream-raised); transform: translateY(-1px); }
.switcher__arrow:active:not(:disabled) { transform: translateY(0) scale(0.95); }
.switcher__arrow:disabled { opacity: 0.3; cursor: not-allowed; }

.switcher__thumbs {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-2);
}

.switcher__thumb {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: 2px;
  overflow: hidden;
  opacity: 0.65;
  transition: opacity 0.3s var(--ease-soft), transform 0.35s var(--ease), box-shadow 0.3s;
  aspect-ratio: 1;
}

.switcher__thumb img { width: 100%; height: 100%; object-fit: cover; }
.switcher__thumb:hover { opacity: 1; transform: translateY(-2px); }
.switcher__thumb:active { transform: translateY(0); }
.switcher__thumb[aria-selected="true"] {
  opacity: 1;
  box-shadow: 0 0 0 2px var(--cream), 0 0 0 4px var(--accent);
}
.switcher__thumb[hidden] { display: none; }

/* --- Card grids ----------------------------------------------------------- */
/* auto-fit, not auto-fill: a 3-card "related" row should stretch to fill the
   width rather than leave a phantom 4th column. */
.grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr)); }
.grid--tight { gap: var(--s-3); }

/* Hairline grid — the 1px separator look from the original build */
.tile-grid {
  display: grid;
  gap: 1px;
  background: var(--line-dark);
  grid-template-columns: 1fr;
  border-radius: var(--radius);
  overflow: hidden;
}

/* Explicit column counts — auto-fill would land on 4 and leave the 9th
   category sitting next to a dead cell. */
@media (min-width: 640px) { .tile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tile-grid { grid-template-columns: repeat(3, 1fr); } }

.tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: var(--dark);
  color: var(--on-dark);
  padding: var(--s-6) var(--s-5);
  position: relative;
  isolation: isolate;
  transition: background-color 0.5s var(--ease-soft), transform 0.5s var(--ease);
}

@media (min-width: 768px) {
  .tile { padding: var(--s-7) var(--s-6); }
}

.tile:hover { background: var(--darker); }
.tile:active { transform: scale(0.995); }

.tile__num {
  font-size: 0.6875rem;
  letter-spacing: 0.35em;
  color: hsl(35 40% 70% / 0.55);
  margin-bottom: var(--s-4);
  font-weight: 700;
}

.tile h3 { margin-bottom: var(--s-3); }

.tile p {
  font-size: 0.9375rem;
  color: hsl(36 33% 94% / 0.62);
  margin-bottom: var(--s-5);
  flex: 1;
}

/* Light card on cream */
.card {
  display: flex;
  flex-direction: column;
  background: var(--cream-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s var(--ease-soft);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
  border-color: hsl(35 35% 48% / 0.35);
}
.card:active { transform: translateY(-1px); }

.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-sunk);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.card:hover .card__media img { transform: scale(1.05); }

.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(25 20% 8% / 0.45), transparent 60%);
}

.card__tag {
  position: absolute;
  z-index: 1;
  left: var(--s-3);
  bottom: var(--s-3);
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cream);
  background: hsl(25 20% 8% / 0.6);
  backdrop-filter: blur(6px);
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
}

.card__body {
  padding: var(--s-4) var(--s-4) var(--s-5);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--s-2);
}

.card__body h3 { font-size: 1.5rem; }

.card__body p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  flex: 1;
}

.card__foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-3);
  margin-top: var(--s-2);
}

.card__price {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
}

/* --- USP row -------------------------------------------------------------- */
.usps {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}

.usp { border-top: 1px solid var(--line); padding-top: var(--s-4); }
.usp h3 { font-size: 1.375rem; margin-bottom: var(--s-1); }
.usp p { font-size: 0.9375rem; color: var(--ink-soft); }

.sec--dark .usp,
.sec--darker .usp { border-top-color: var(--line-dark); }
.sec--dark .usp p,
.sec--darker .usp p { color: hsl(36 33% 94% / 0.62); }

/* --- Price list ----------------------------------------------------------- */
.prices { border-top: 1px solid var(--line); }

.sec--dark .prices,
.sec--darker .prices { border-top-color: var(--line-dark); }

.price {
  border-bottom: 1px solid var(--line);
  padding-block: var(--s-4);
}

.sec--dark .price,
.sec--darker .price { border-bottom-color: var(--line-dark); }

.price__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-4);
}

.price__name { font-weight: 700; font-size: 1rem; }

.price__amount {
  white-space: nowrap;
  color: var(--accent);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.sec--dark .price__amount,
.sec--darker .price__amount { color: var(--gold-soft); }

.price__desc {
  margin-top: 0.35rem;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  max-width: 60ch;
}

.sec--dark .price__desc,
.sec--darker .price__desc { color: hsl(36 33% 94% / 0.62); }

/* --- Price selector (priser) ---------------------------------------------- */
.pfilter {
  position: sticky;
  top: var(--nav-h);
  z-index: 40;
  background: hsl(36 33% 94% / 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 hsl(36 33% 94% / 0.6), var(--shadow-raised);
}

@supports (backdrop-filter: blur(12px)) {
  .pfilter { background: hsl(36 33% 94% / 0.78); backdrop-filter: blur(14px) saturate(1.4); }
}

.pfilter__inner { padding-block: var(--s-2); }

.pfilter__row {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--s-2);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  /* Without this the first chip snaps flush to the viewport edge, ignoring the gutter. */
  scroll-padding-inline: var(--gutter);
  scrollbar-width: none;
  /* Bleed to the gutter edges so the strip reads as scrollable on mobile. */
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  padding-block: 0.25rem;
}

.pfilter__row::-webkit-scrollbar { display: none; }

.pchip {
  flex: none;
  scroll-snap-align: start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.4s var(--ease),
    background-color 0.3s var(--ease-soft),
    color 0.3s var(--ease-soft),
    border-color 0.3s var(--ease-soft),
    box-shadow 0.4s var(--ease);
}

.pchip__n {
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: var(--cream-sunk);
  color: var(--ink-soft);
  transition: background-color 0.3s var(--ease-soft), color 0.3s var(--ease-soft);
}

.pchip:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--ink);
  box-shadow: var(--shadow-raised);
}

.pchip:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.pchip:active { transform: translateY(0); transition-duration: 0.08s; }

.pchip[aria-pressed="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-dark);
  box-shadow: var(--shadow-gold);
}

.pchip[aria-pressed="true"] .pchip__n {
  background: hsl(36 33% 94% / 0.22);
  color: var(--on-dark);
}

.pchip--all[aria-pressed="true"] {
  background: var(--darker);
  border-color: var(--darker);
  box-shadow: var(--shadow-float);
}

.pbar {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--line);
}

.pcount {
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.preset {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  background: none;
  border: 0;
  border-bottom: 1px solid transparent;
  padding: 0;
  cursor: pointer;
  color: var(--accent);
}

.preset[hidden] { display: none; }

.pcount b { color: var(--ink); font-weight: 700; font-variant-numeric: tabular-nums; }

.pgroups {
  display: flex;
  flex-direction: column;
  gap: var(--s-8);
}

.pgroup {
  scroll-margin-top: calc(var(--nav-h) + var(--pfilter-h, 5rem) + var(--s-4));
  animation: pgroup-in 0.5s var(--ease) both;
}

.pgroup[hidden] { display: none; }

@keyframes pgroup-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .pgroup { animation: none; }
}

.pgroup__head { max-width: 42rem; margin-bottom: var(--s-5); }
.pgroup__head h2 { margin-top: var(--s-2); }
.pgroup__head p { margin-top: var(--s-3); color: var(--ink-soft); }

.pgroup__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  margin-top: var(--s-5);
}

.pempty { color: var(--ink-soft); }
.pempty[hidden] { display: none; }

@media (min-width: 900px) {
  .pfilter__row {
    flex-wrap: wrap;
    overflow-x: visible;
    margin-inline: 0;
    padding-inline: 0;
  }
}

/* --- Prose (article body) ------------------------------------------------- */
.prose { max-width: 68ch; }
.prose h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-top: var(--s-7); margin-bottom: var(--s-3); }
.prose h2:first-child { margin-top: 0; }
.prose p + p { margin-top: var(--s-3); }
.prose p { color: var(--ink); }

/* --- FAQ ------------------------------------------------------------------ */
.faq { border-top: 1px solid var(--line); }

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s-4);
  padding-block: var(--s-4);
  cursor: pointer;
  list-style: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.375rem;
  line-height: 1.3;
  transition: color 0.3s var(--ease-soft);
}

.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--accent); }

.faq__icon {
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.35rem;
  position: relative;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  left: 50%;
  top: 50%;
  transition: transform 0.4s var(--ease), opacity 0.3s;
}

.faq__icon::before { width: 1rem; height: 1px; transform: translate(-50%, -50%); }
.faq__icon::after { width: 1px; height: 1rem; transform: translate(-50%, -50%); }

.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq__a {
  padding-bottom: var(--s-4);
  color: var(--ink-soft);
  max-width: 68ch;
}

/* --- Gallery -------------------------------------------------------------- */
.gallery {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: repeat(2, 1fr);
}

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

.gallery__item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
  background: var(--cream-sunk);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(25 20% 8% / 0.85), transparent 55%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-soft);
}

.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after,
.gallery__item:focus-visible::after { opacity: 1; }

.gallery__label {
  position: absolute;
  z-index: 1;
  left: var(--s-3);
  right: var(--s-3);
  bottom: var(--s-3);
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.45s var(--ease-soft), transform 0.5s var(--ease);
}

.gallery__item:hover .gallery__label,
.gallery__item:focus-visible .gallery__label { opacity: 1; transform: translateY(0); }

/* --- Reviews -------------------------------------------------------------- */
.stars { display: inline-flex; gap: 0.2rem; color: var(--gold); }
.stars svg { width: 1rem; height: 1rem; fill: currentColor; }
.stars--lg svg { width: 1.25rem; height: 1.25rem; }
.stars--sm svg { width: 0.8125rem; height: 0.8125rem; }

.review {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s-5);
  background: var(--cream);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

@media (min-width: 768px) { .review { padding: var(--s-6); } }

.review:hover { transform: translateY(-3px); box-shadow: var(--shadow-float); }

.review__head {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
}

.review__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  flex: none;
}

.review__name { font-weight: 700; font-size: 0.9375rem; line-height: 1.3; }
.review__meta { font-size: 0.8125rem; color: var(--ink-soft); }

.review blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1875rem;
  font-style: italic;
  line-height: 1.55;
  color: hsl(25 20% 18% / 0.85);
  margin-top: var(--s-3);
  flex: 1;
}

.rating-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  transition: opacity 0.3s var(--ease-soft), transform 0.4s var(--ease);
}
.rating-link:hover { opacity: 0.75; transform: translateY(-1px); }
.rating-link:active { transform: translateY(0); }
.rating-link span {
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* --- Trust badge (hero social proof) -------------------------------------- */
.trust {
  display: inline-flex;
  align-items: center;
  /* hero__actions is a stretch column on mobile — the badge must hug its text
     instead of reading as a third button. */
  align-self: flex-start;
  margin-top: var(--s-1);
  gap: 0.75rem;
  padding: 0.5rem 1.15rem 0.5rem 0.5rem;
  border-radius: 999px;
  border: 1px solid hsl(36 33% 94% / 0.2);
  background: hsl(25 20% 8% / 0.34);
  box-shadow:
    inset 0 1px 0 hsl(36 33% 94% / 0.12),
    0 2px 8px hsl(25 30% 6% / 0.28),
    0 12px 32px hsl(25 30% 6% / 0.22);
  transition:
    transform 0.4s var(--ease),
    background-color 0.35s var(--ease-soft),
    border-color 0.35s var(--ease-soft),
    box-shadow 0.4s var(--ease);
}

@supports (backdrop-filter: blur(10px)) {
  .trust { background: hsl(25 20% 8% / 0.22); backdrop-filter: blur(12px) saturate(1.3); }
}

.trust__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 50%;
  background: var(--cream);
  box-shadow:
    0 1px 2px hsl(25 30% 6% / 0.25),
    0 4px 10px hsl(25 30% 6% / 0.2);
  transition: transform 0.45s var(--ease);
}

.trust__mark svg { width: 1.0625rem; height: 1.0625rem; }

.trust__body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.25;
}

.trust__top { display: inline-flex; align-items: center; gap: 0.45rem; }

.trust__top .stars { color: var(--gold-soft); }

.trust__score {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--on-dark);
  font-variant-numeric: tabular-nums;
}

.trust__meta {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: hsl(36 33% 94% / 0.72);
  white-space: nowrap;
}

.trust__meta b { color: var(--gold-soft); font-variant-numeric: tabular-nums; }

.trust:hover {
  transform: translateY(-2px);
  border-color: hsl(38 55% 70% / 0.5);
  background: hsl(25 20% 8% / 0.42);
  box-shadow:
    inset 0 1px 0 hsl(36 33% 94% / 0.16),
    0 4px 12px hsl(25 30% 6% / 0.3),
    0 18px 44px hsl(25 30% 6% / 0.28);
}

.trust:hover .trust__mark { transform: scale(1.06); }

.trust:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

.trust:active { transform: translateY(0); transition-duration: 0.08s; }

@media (prefers-reduced-motion: reduce) {
  .trust, .trust__mark { transition: none; }
}

/* Sits beside the CTAs on desktop, under them on narrow screens. */
@media (min-width: 480px) {
  .trust { margin-top: 0; margin-left: var(--s-2); }
}

/* --- Contact -------------------------------------------------------------- */
.info { display: flex; flex-direction: column; gap: var(--s-6); }

@media (min-width: 900px) {
  .info { border-left: 1px solid var(--line-dark); padding-left: var(--s-7); }
}

.info__item { display: flex; gap: var(--s-3); }

.info__icon {
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.35rem;
  color: var(--gold-soft);
}

.info__icon svg { width: 100%; height: 100%; }

.info__label {
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: hsl(35 40% 70% / 0.72);
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.info__value { color: hsl(36 33% 94% / 0.9); }
.info__value a { transition: color 0.3s var(--ease-soft); }
.info__value a:hover { color: var(--gold-soft); }

.map {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: var(--radius);
  margin-top: var(--s-3);
  filter: grayscale(0.25) contrast(1.05);
}

/* --- Footer --------------------------------------------------------------- */
.footer {
  background: var(--darker);
  color: var(--on-dark);
  border-top: 1px solid var(--line-dark);
  padding-block: var(--s-7) var(--s-5);
}

.footer__grid {
  display: grid;
  gap: var(--s-6);
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s-7); }
}

.footer__brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.375rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}

.footer__about {
  font-size: 0.9375rem;
  color: hsl(36 33% 94% / 0.55);
  max-width: 34ch;
}

.footer__title {
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: var(--s-3);
  font-weight: 700;
}

.footer__list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }

.footer__list a,
.footer__list span {
  font-size: 0.9375rem;
  color: hsl(36 33% 94% / 0.62);
  transition: color 0.3s var(--ease-soft);
}

.footer__list a:hover { color: var(--gold-soft); }

.footer__social { display: flex; gap: var(--s-3); margin-top: var(--s-4); }

.footer__social a {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: hsl(36 33% 94% / 0.62);
  transition: color 0.3s var(--ease-soft), border-color 0.3s var(--ease-soft), transform 0.4s var(--ease);
}

.footer__social a:hover { color: var(--gold-soft); border-color: hsl(35 40% 70% / 0.5); transform: translateY(-2px); }
.footer__social a:active { transform: translateY(0); }
.footer__social svg { width: 1rem; height: 1rem; }

.footer__base {
  margin-top: var(--s-7);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  justify-content: space-between;
  font-size: 0.625rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: hsl(36 33% 94% / 0.35);
}

/* --- Sticky mobile booking bar -------------------------------------------- */
.bookbar {
  position: fixed;
  z-index: 50;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 1px;
  background: var(--line-dark);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}

.bookbar.is-visible { transform: translateY(0); }

@media (min-width: 768px) { .bookbar { display: none; } }

.bookbar a {
  flex: 1;
  padding: 1rem 0.5rem;
  text-align: center;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--darker);
  color: var(--on-dark);
  transition: background-color 0.3s var(--ease-soft);
}

.bookbar a:last-child { background: var(--gold-soft); color: var(--darker); }
.bookbar a:active { background: var(--dark); }
.bookbar a:last-child:active { background: var(--gold); }

/* --- Reveal on scroll ----------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-soft), transform 0.9s var(--ease);
}

.reveal.is-in { opacity: 1; transform: none; }

/* Sideways reveals only where the split is actually side-by-side. Below that
   the offset would push content past the viewport and create h-scroll. */
@media (min-width: 900px) {
  .reveal[data-reveal="left"] { transform: translateX(-32px); }
  .reveal[data-reveal="right"] { transform: translateX(32px); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .review:hover { transform: none; }
  .frame img, .card__media img, .gallery__item img { transition: none; }
}

/* --- Utilities ------------------------------------------------------------ */
.stack > * + * { margin-top: var(--s-3); }
.mt-4 { margin-top: var(--s-4); }
.mt-6 { margin-top: var(--s-6); }
.mt-7 { margin-top: var(--s-7); }
.center { text-align: center; }
.actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.actions--center { justify-content: center; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  top: -100px;
  left: var(--gutter);
  z-index: 100;
  background: var(--darker);
  color: var(--on-dark);
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: top 0.3s var(--ease);
}

.skip:focus { top: 1rem; }

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-5);
}

.tag {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  transition: background-color 0.3s var(--ease-soft), color 0.3s var(--ease-soft), border-color 0.3s var(--ease-soft), transform 0.4s var(--ease);
}

.tag:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); transform: translateY(-2px); }
.tag:active { transform: translateY(0); }
.tag[aria-current="true"] { background: var(--accent); color: var(--cream); border-color: var(--accent); }
