/* ==========================================================================
   Artemis Hair & Beauty — Ringwood, Melbourne
   Style: Soft UI Evolution / editorial luxury
   Type:  Playfair Display + Inter
   ========================================================================== */

/* --------------------------------------------------------------- 1. Tokens */
:root {
  /* colour */
  --ink:          #2A0A1C;
  --ink-80:       rgba(42, 10, 28, .80);
  --plum:         #831843;
  --plum-soft:    #9D2C5C;
  --pink:         #EC4899;
  --pink-deep:    #DB2777;
  --pink-soft:    #F9A8D4;
  --lilac:        #8B5CF6;
  --lilac-soft:   #C4B5FD;
  --blush:        #FDF2F8;
  --ivory:        #FFFBFD;
  --muted:        #F1EEF5;
  --line:         #FBCFE8;
  --line-strong:  #F0A9CB;
  --white:        #FFFFFF;
  --gold:         #C9A227;

  --on-primary:   #FFFFFF;
  --body-text:    #5C4050;

  /* spacing (standard density: 16–64) */
  --space-2xs: 4px;
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  32px;
  --space-xl:  48px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* shape */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 40px;
  --r-pill: 999px;

  /* soft-UI shadows: softer than flat, clearer than neumorphism */
  --sh-1: 0 1px 2px rgba(131, 24, 67, .05), 0 2px 8px rgba(131, 24, 67, .05);
  --sh-2: 0 2px 6px rgba(131, 24, 67, .06), 0 12px 28px rgba(131, 24, 67, .08);
  --sh-3: 0 4px 12px rgba(131, 24, 67, .07), 0 26px 60px rgba(131, 24, 67, .13);
  --sh-glow: 0 10px 30px rgba(236, 72, 153, .28);

  /* motion */
  --e-out: cubic-bezier(.22, 1, .36, 1);
  --e-soft: cubic-bezier(.4, 0, .2, 1);
  --t-fast: 160ms var(--e-soft);
  --t-mid:  260ms var(--e-soft);
  --t-slow: 620ms var(--e-out);

  /* layout */
  --wrap: 1220px;
  --wrap-narrow: 840px;
  --header-h: 84px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--blush);
  color: var(--body-text);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
figure, blockquote, dl, dd { margin: 0; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--plum);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.015em;
  margin: 0 0 var(--space-sm);
}

h1 { font-size: clamp(2.65rem, 7vw, 5.1rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.35rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.06rem; font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 var(--space-sm); }
p:last-child { margin-bottom: 0; }

a { color: var(--pink-deep); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--plum); }

ul { margin: 0; padding: 0; list-style: none; }

strong { color: var(--plum); font-weight: 600; }

::selection { background: var(--pink-soft); color: var(--plum); }

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

/* --------------------------------------------------------- 3. Layout utils */
.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}
.wrap--narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); }

.section { padding-block: clamp(64px, 9vw, 128px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 88px); }
.section--ivory { background: var(--ivory); }
.section--muted { background: var(--muted); }
.section--ink { background: var(--ink); }
.section--ink h2, .section--ink h3 { color: var(--white); }
.section--ink p { color: rgba(255, 255, 255, .74); }

.center { text-align: center; }
.stack > * + * { margin-top: var(--space-sm); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: var(--space-sm);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}
.eyebrow--center::after {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}
.section--ink .eyebrow { color: var(--pink-soft); }

.lead {
  font-size: clamp(1.06rem, 1.6vw, 1.22rem);
  line-height: 1.7;
  color: var(--body-text);
  max-width: 60ch;
}
.section--ink .lead { color: rgba(255, 255, 255, .8); }
.center .lead { margin-inline: auto; }

.section-head { max-width: 640px; margin-bottom: var(--space-2xl); }
.section-head.center { margin-inline: auto; }

/* ------------------------------------------------------------- 4. Buttons */
.btn {
  --btn-bg: var(--pink);
  --btn-fg: var(--on-primary);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 30px;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font: inherit;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--sh-glow);
  transition: transform var(--t-mid), box-shadow var(--t-mid), background var(--t-mid), color var(--t-mid);
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, var(--pink-deep), var(--lilac));
  opacity: 0;
  transition: opacity var(--t-mid);
}
.btn:hover { color: var(--white); transform: translateY(-2px); box-shadow: 0 16px 38px rgba(139, 92, 246, .34); }
.btn:hover::before { opacity: 1; }
.btn:active { transform: translateY(0) scale(.985); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--plum);
  box-shadow: none;
  border: 1.5px solid var(--line-strong);
}
.btn--ghost:hover { box-shadow: var(--sh-2); border-color: transparent; }

.btn--light {
  --btn-bg: var(--white);
  --btn-fg: var(--plum);
  box-shadow: var(--sh-2);
}

.btn--lg { min-height: 58px; padding: 0 38px; font-size: 1rem; }

.btn .ico { width: 18px; height: 18px; flex: none; transition: transform var(--t-mid); }
.btn:hover .ico--arrow { transform: translateX(4px); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}
.center .btn-row { justify-content: center; }

/* text link with animated underline */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--pink-deep);
  padding-block: 4px;
  position: relative;
}
.tlink::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-mid);
}
.tlink:hover::after { transform: scaleX(1); transform-origin: left; }
.tlink .ico { width: 16px; height: 16px; transition: transform var(--t-mid); }
.tlink:hover .ico { transform: translateX(4px); }

/* ------------------------------------------------------- 5. Scroll progress */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--pink), var(--lilac));
  z-index: 90;
  will-change: transform;
}

/* -------------------------------------------------------------- 6. Header */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  z-index: 80;
  transition: transform var(--t-slow), background var(--t-mid), height var(--t-mid), box-shadow var(--t-mid);
}
.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(253, 242, 248, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  opacity: 0;
  transition: opacity var(--t-mid), border-color var(--t-mid);
}
.header.is-stuck { height: 68px; box-shadow: var(--sh-1); }
.header.is-stuck::before { opacity: 1; border-bottom-color: var(--line); }
.header.is-hidden { transform: translateY(-100%); }

.header__inner {
  position: relative;
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--plum);
  line-height: 1.05;
}
.brand:hover { color: var(--pink-deep); }
.brand__mark { width: 38px; height: 38px; flex: none; transition: transform var(--t-slow); }
.brand:hover .brand__mark { transform: rotate(-14deg); }
.brand__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  letter-spacing: .02em;
  display: block;
}
.brand__sub {
  display: block;
  font-size: .58rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--pink-deep);
  font-weight: 600;
  margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  font-size: .93rem;
  font-weight: 500;
  color: var(--plum);
  border-radius: var(--r-pill);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 10px;
  height: 1.5px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-mid);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav a[aria-current="page"] { color: var(--pink-deep); }

.header__cta { display: flex; align-items: center; gap: var(--space-xs); }
.header__cta .btn { min-height: 46px; padding: 0 22px; font-size: .9rem; }

/* burger */
.burger {
  display: none;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-pill);
  cursor: pointer;
  color: var(--plum);
}
.burger span {
  display: block;
  position: relative;
  width: 18px; height: 1.6px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--t-mid), background var(--t-mid);
}
.burger span::before, .burger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px; height: 1.6px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--t-mid), top var(--t-mid);
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: var(--blush);
  padding: calc(var(--header-h) + 24px) 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  clip-path: circle(0% at calc(100% - 46px) 42px);
  transition: clip-path 620ms var(--e-out);
  visibility: hidden;
}
.drawer.is-open { clip-path: circle(150% at calc(100% - 46px) 42px); visibility: visible; }
.drawer__nav { display: flex; flex-direction: column; gap: 2px; }
.drawer__nav a {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 8vw, 2.6rem);
  color: var(--plum);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms var(--e-out), transform 420ms var(--e-out);
}
.drawer.is-open .drawer__nav a { opacity: 1; transform: none; }
.drawer__nav a span { font-family: 'Inter', sans-serif; font-size: .7rem; letter-spacing: .2em; color: var(--pink); }
.drawer__foot { display: grid; gap: 14px; }
.drawer__foot .btn { width: 100%; }
.drawer__meta { font-size: .9rem; }

/* ---------------------------------------------------------- 7. Ambient blobs */
.ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, #000 45%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 45%, transparent 100%);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}
.blob--1 { width: 34vw; height: 34vw; background: var(--pink-soft); top: -16vw; right: -12vw; opacity: .34; }
.blob--2 { width: 26vw; height: 26vw; background: var(--lilac-soft); bottom: -14vw; left: -12vw; opacity: .26; }
.blob--3 { width: 18vw; height: 18vw; background: #FDE68A; top: 8%; left: 52%; opacity: .13; }

/* ----------------------------------------------------------------- 8. Hero */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(28px, 6vw, 76px));
  padding-bottom: clamp(56px, 8vw, 104px);
  overflow: hidden;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__title { margin-bottom: var(--space-md); }
.hero__title em {
  font-style: italic;
  color: var(--pink-deep);
  position: relative;
}
.swash {
  display: inline-block;
  background: linear-gradient(100deg, var(--pink-deep) 0%, var(--lilac) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

/* per-character reveal */
.split-line { display: block; overflow: hidden; padding-bottom: .06em; }
.split-char {
  display: inline-block;
  transform: translateY(105%) rotate(4deg);
  opacity: 0;
  transition: transform 780ms var(--e-out), opacity 520ms var(--e-out);
}
.is-ready .split-char { transform: none; opacity: 1; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-bottom: var(--space-md);
  font-size: .88rem;
  font-weight: 500;
  color: var(--plum);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta .ico { width: 16px; height: 16px; color: var(--pink); }

.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-1);
  font-size: .86rem;
  color: var(--plum);
  margin-top: var(--space-lg);
}
.hero__rating b { font-weight: 700; }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 15px; height: 15px; }

/* hero collage */
.collage {
  position: relative;
  aspect-ratio: 4 / 4.35;
  min-height: 400px;
  padding-right: 8px;
}
.collage__item {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-3);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1000ms var(--e-out);
  will-change: transform;
}
.is-ready .collage__item { clip-path: inset(0 0 0 0); }
.collage__item img { width: 100%; height: 100%; object-fit: cover; }
.collage__item--a { top: 0; left: 0; width: 68%; aspect-ratio: 3 / 3.7; transition-delay: 120ms; }
.collage__item--b { bottom: 0; right: 0; width: 55%; aspect-ratio: 3 / 3.5; transition-delay: 320ms; border: 8px solid var(--blush); }
.collage__item--c { display: none; }

.collage__badge {
  position: absolute;
  left: 0; bottom: 12%;
  z-index: 3;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--sh-3);
  display: grid;
  gap: 2px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms var(--e-out) 760ms, transform 500ms var(--e-out) 760ms;
}
.is-ready .collage__badge { opacity: 1; transform: none; }
.collage__badge b {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--plum);
  line-height: 1;
  font-weight: 500;
}
.collage__badge small { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--pink-deep); font-weight: 600; }

.seal {
  position: absolute;
  top: 4%; right: 2%;
  width: 116px; height: 116px;
  z-index: 5;
  display: grid;
  place-items: center;
}
.seal svg.spin { width: 100%; height: 100%; animation: spin 26s linear infinite; }
.seal text { font-size: 11.2px; letter-spacing: .11em; fill: var(--plum); font-weight: 600; text-transform: uppercase; }
.seal__dot {
  position: absolute;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--pink);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--sh-glow);
}
.seal__dot svg { width: 21px; height: 21px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* --------------------------------------------------------- 9. Marquee band */
.marquee {
  position: relative;
  z-index: 1;
  background: var(--ink);
  color: var(--white);
  padding-block: 18px;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, .08);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: slide 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; flex: none; }
.marquee span {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  padding-inline: 26px;
  white-space: nowrap;
  letter-spacing: .01em;
}
.marquee span:nth-child(even) { font-style: italic; color: var(--pink-soft); }
.marquee i {
  width: 6px; height: 6px;
  background: var(--pink);
  border-radius: 50%;
  flex: none;
}
@keyframes slide { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------- 10. Reveals */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--e-out), transform 700ms var(--e-out);
}
[data-reveal="fade"]  { transform: none; }
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal="clip"]  { opacity: 1; clip-path: inset(0 0 100% 0); transform: none; transition: clip-path 950ms var(--e-out); }
[data-reveal].is-in { opacity: 1; transform: none; clip-path: inset(0 0 0 0); }

/* ---------------------------------------------------------- 11. Card grids */
.grid { display: grid; gap: var(--space-md); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-lg);
  box-shadow: var(--sh-1);
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--lilac));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .95rem; }

.card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--blush), var(--muted));
  border: 1px solid var(--line);
  color: var(--pink-deep);
  margin-bottom: var(--space-sm);
  transition: transform var(--t-mid), background var(--t-mid), color var(--t-mid);
}
.card:hover .card__icon { transform: rotate(-8deg) scale(1.06); background: var(--pink); color: #fff; border-color: transparent; }
.card__icon svg { width: 24px; height: 24px; }

/* service tile with photo */
.tile {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 3 / 4;
  box-shadow: var(--sh-2);
  color: var(--white);
  isolation: isolate;
}
.tile img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1100ms var(--e-out), filter var(--t-slow);
}
.tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 10, 28, .94) 2%, rgba(42, 10, 28, .62) 34%, rgba(42, 10, 28, .18) 68%, rgba(42, 10, 28, .05) 100%);
  transition: opacity var(--t-slow);
}
.tile__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: var(--space-md);
}
.tile__body h3 { color: var(--white); font-size: 1.28rem; margin-bottom: 4px; }
.tile__body p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .78);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height var(--t-slow), opacity var(--t-slow), margin var(--t-slow);
}
.tile:hover img { transform: scale(1.1); }
.tile:hover .tile__body p { max-height: 90px; opacity: 1; margin-top: 6px; }
.tile__tag {
  position: absolute;
  top: var(--space-sm); left: var(--space-sm);
  z-index: 2;
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .28);
  padding: 6px 12px;
  border-radius: var(--r-pill);
}

/* ----------------------------------------------------- 12. Horizontal rail */
.rail {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-sm);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
  cursor: grab;
}
.rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.rail.is-dragging * { pointer-events: none; }
.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 999px; }
.rail::-webkit-scrollbar-track { background: var(--muted); border-radius: 999px; }
.rail > * { flex: 0 0 clamp(250px, 27vw, 320px); scroll-snap-align: start; }

.rail-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.rail-nav { display: flex; gap: 10px; }
.rail-nav button {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  background: var(--white);
  color: var(--plum);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--t-mid), color var(--t-mid), transform var(--t-mid), border-color var(--t-mid);
}
.rail-nav button:hover { background: var(--pink); color: #fff; border-color: transparent; transform: scale(1.06); }
.rail-nav button:disabled { opacity: .35; cursor: not-allowed; transform: none; background: var(--white); color: var(--plum); }
.rail-nav svg { width: 18px; height: 18px; }

/* ------------------------------------------------------------ 13. Split row */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.split--flip .split__media { order: 2; }
.split__media { position: relative; }
.split__media img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.split__media--stack { aspect-ratio: 4 / 4.2; }
.split__media--stack img { position: absolute; height: auto; }
.split__media--stack img:nth-of-type(1) { top: 0; left: 0; width: 70%; aspect-ratio: 3 / 3.5; }
.split__media--stack img:nth-of-type(2) { bottom: 0; right: 0; width: 52%; aspect-ratio: 3 / 3.2; border: 8px solid var(--ivory); }
.section--muted .split__media--stack img:nth-of-type(2) { border-color: var(--muted); }
.section--ivory .split__media--stack img:nth-of-type(2) { border-color: var(--ivory); }
.section:not(.section--ivory):not(.section--muted):not(.section--ink) .split__media--stack img:nth-of-type(2),
.pagehead .split__media--stack img:nth-of-type(2) { border-color: var(--blush); }

.frame-note {
  position: absolute;
  right: 0; top: 4%;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 16px 20px;
  box-shadow: var(--sh-3);
  max-width: 210px;
  font-size: .84rem;
  line-height: 1.5;
  border: 1px solid var(--line);
}
.frame-note b { display: block; font-family: 'Playfair Display', serif; font-size: 1.05rem; margin-bottom: 2px; }

/* ------------------------------------------------------------- 14. Numbers */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.stat { text-align: center; padding: var(--space-md) var(--space-sm); }
.stat b {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
  color: var(--plum);
  letter-spacing: -.02em;
}
.section--ink .stat b { color: var(--white); }
.stat span {
  display: block;
  margin-top: 10px;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pink-deep);
}
.section--ink .stat span { color: var(--pink-soft); }

/* ------------------------------------------------------------- 15. Process */
.process { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.process__sticky { position: sticky; top: calc(var(--header-h) + 32px); }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--line);
  opacity: .42;
  transition: opacity var(--t-slow);
}
.step:last-child { border-bottom: 0; }
.step.is-active { opacity: 1; }
.step__no {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--plum);
  transition: background var(--t-slow), color var(--t-slow), border-color var(--t-slow), transform var(--t-slow);
}
.step.is-active .step__no { background: var(--pink); color: #fff; border-color: transparent; transform: scale(1.06); }
.step h3 { font-size: 1.32rem; margin-bottom: 6px; }
.step p { font-size: .95rem; }

/* --------------------------------------------------------- 16. Testimonials */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-lg);
  box-shadow: var(--sh-1);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.quote:hover { transform: translateY(-5px); box-shadow: var(--sh-3); }
.quote blockquote {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--plum);
  font-style: italic;
}
.quote figcaption { margin-top: auto; display: flex; align-items: center; gap: 12px; font-size: .88rem; }
.quote__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--pink-soft), var(--lilac-soft));
  color: var(--plum);
  font-weight: 700;
  flex: none;
  font-size: .95rem;
}
.quote figcaption b { display: block; color: var(--plum); }
.quote figcaption small { color: var(--body-text); font-size: .78rem; }

/* --------------------------------------------------------- 17. Price tables */
.pricing { display: grid; gap: var(--space-xl); }
.price-group h3 {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--line);
}
.price-group h3 small {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink-deep);
  font-weight: 600;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-sm) var(--space-md);
  align-items: baseline;
  padding: 14px 12px;
  border-radius: var(--r-md);
  transition: background var(--t-fast), transform var(--t-fast);
}
.price-row:hover { background: var(--white); transform: translateX(4px); }
.price-row dt { font-weight: 600; color: var(--plum); }
.price-row dt small { display: block; font-weight: 400; color: var(--body-text); font-size: .87rem; margin-top: 2px; }
.price-row dd {
  margin: 0;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--pink-deep);
  white-space: nowrap;
}
.price-legend {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-md);
  padding: 0 12px 8px;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--body-text);
  opacity: .7;
}

.notice {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--pink);
  border-radius: var(--r-md);
  font-size: .92rem;
  box-shadow: var(--sh-1);
}
.notice svg { width: 20px; height: 20px; flex: none; color: var(--pink-deep); margin-top: 2px; }

/* ------------------------------------------------------------- 18. Gallery */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: var(--space-xl);
}
.filters button {
  min-height: 44px;
  padding: 0 20px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line-strong);
  background: transparent;
  color: var(--plum);
  font: inherit;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t-mid), color var(--t-mid), border-color var(--t-mid), transform var(--t-mid);
}
.filters button:hover { transform: translateY(-2px); box-shadow: var(--sh-1); }
.filters button[aria-pressed="true"] { background: var(--pink); color: #fff; border-color: transparent; box-shadow: var(--sh-glow); }

.masonry { columns: 3; column-gap: var(--space-md); }
.shot {
  position: relative;
  break-inside: avoid;
  margin: 0 0 var(--space-md);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: zoom-in;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--muted);
  box-shadow: var(--sh-1);
  transition: opacity 400ms var(--e-out), transform 400ms var(--e-out), box-shadow var(--t-mid);
}
.shot img { width: 100%; transition: transform 900ms var(--e-out); }
.shot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 10, 28, .6), transparent 55%);
  opacity: 0;
  transition: opacity var(--t-mid);
}
.shot figcaption {
  position: absolute;
  left: 0; bottom: 0;
  z-index: 2;
  padding: var(--space-sm) var(--space-md);
  color: #fff;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .04em;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity var(--t-mid), transform var(--t-mid);
  text-align: left;
}
.shot:hover img { transform: scale(1.06); }
.shot:hover::after, .shot:hover figcaption { opacity: 1; }
.shot:hover figcaption { transform: none; }
.shot:hover { box-shadow: var(--sh-3); }
.shot.is-hidden { display: none; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(42, 10, 28, .93);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 5vh 5vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-mid), visibility var(--t-mid);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 84vh;
  border-radius: var(--r-md);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .5);
  transform: scale(.94);
  transition: transform 420ms var(--e-out);
}
.lightbox.is-open img { transform: none; }
.lightbox__cap { color: rgba(255, 255, 255, .8); margin-top: 14px; font-size: .9rem; text-align: center; }
.lightbox__btn {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--t-fast), transform var(--t-fast);
}
.lightbox__btn:hover { background: rgba(255, 255, 255, .24); transform: scale(1.06); }
.lightbox__btn svg { width: 20px; height: 20px; }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev { left: 16px; top: 50%; margin-top: -26px; }
.lightbox__next { right: 16px; top: 50%; margin-top: -26px; }

/* --------------------------------------------------- 19. Before / after */
.ba {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-3);
  aspect-ratio: 4/3;
  user-select: none;
  touch-action: none;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__after { clip-path: inset(0 0 0 50%); }
.ba__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(42, 10, 28, .18);
  cursor: ew-resize;
}
.ba__grip {
  position: absolute;
  top: 50%; left: 50%;
  width: 52px; height: 52px;
  margin: -26px 0 0 -26px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--sh-2);
  color: var(--plum);
}
.ba__grip svg { width: 22px; height: 22px; }
.ba__label {
  position: absolute;
  bottom: 16px;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  background: rgba(42, 10, 28, .55);
  backdrop-filter: blur(6px);
  padding: 7px 14px;
  border-radius: var(--r-pill);
}
.ba__label--l { left: 16px; }
.ba__label--r { right: 16px; }

/* ----------------------------------------------------------------- 20. FAQ */
.faq { display: grid; gap: 12px; }
.acc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow var(--t-mid), border-color var(--t-mid);
}
.acc.is-open { box-shadow: var(--sh-2); border-color: var(--line-strong); }
.acc__btn {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 16px var(--space-md);
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  color: var(--plum);
  text-align: left;
  cursor: pointer;
}
.acc__btn:hover { color: var(--pink-deep); }
.acc__ico {
  width: 30px; height: 30px;
  flex: none;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: grid;
  place-items: center;
  position: relative;
  transition: background var(--t-mid), border-color var(--t-mid), transform var(--t-mid);
}
.acc__ico::before, .acc__ico::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--t-mid), opacity var(--t-mid);
}
.acc__ico::before { width: 11px; height: 1.6px; }
.acc__ico::after  { width: 1.6px; height: 11px; }
.acc.is-open .acc__ico { background: var(--pink); color: #fff; border-color: transparent; transform: rotate(90deg); }
.acc.is-open .acc__ico::after { opacity: 0; }
.acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 380ms var(--e-out);
}
.acc.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__panel > div { overflow: hidden; }
.acc__panel p { padding: 0 var(--space-md) var(--space-md); font-size: .95rem; }

/* ------------------------------------------------------------- 21. Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 72px); align-items: start; }

.info-list { display: grid; gap: 2px; }
.info-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-sm);
  align-items: start;
  padding: var(--space-sm) 12px;
  border-radius: var(--r-md);
  transition: background var(--t-fast);
}
.info-item:hover { background: var(--white); }
.info-item__ico {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--pink-deep);
}
.info-item__ico svg { width: 19px; height: 19px; }
.info-item b { display: block; color: var(--plum); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 2px; }
.info-item a, .info-item span { color: var(--body-text); font-size: 1rem; }
.info-item a:hover { color: var(--pink-deep); }

.hours { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours th, .hours td { padding: 11px 0; text-align: left; border-bottom: 1px dashed var(--line); }
.hours th { font-weight: 600; color: var(--plum); }
.hours td { text-align: right; color: var(--body-text); }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours tr.is-today th, .hours tr.is-today td { color: var(--pink-deep); font-weight: 600; }

.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--sh-2);
  display: grid;
  gap: var(--space-sm);
}
.field { display: grid; gap: 6px; }
.field label { font-size: .84rem; font-weight: 600; color: var(--plum); }
.field label .req { color: var(--pink-deep); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--ivory);
  font: inherit;
  font-size: .97rem;
  color: var(--plum);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23831843' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 42px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, .14);
}
.field .hint { font-size: .8rem; color: var(--body-text); }
.field .err { font-size: .82rem; color: #C0164B; font-weight: 500; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #E11D48; background: #FFF5F7; }
.field.has-error .err { display: block; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.form__note { font-size: .84rem; color: var(--body-text); }
.form__ok {
  display: none;
  gap: 12px;
  align-items: flex-start;
  padding: var(--space-md);
  border-radius: var(--r-md);
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #14532D;
  font-size: .93rem;
}
.form__ok.is-shown { display: flex; }
.form__ok svg { width: 20px; height: 20px; flex: none; color: #16A34A; }

.map-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-2);
  border: 1px solid var(--line);
  background: var(--muted);
  aspect-ratio: 16/9;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ------------------------------------------------------------- 22. CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: clamp(40px, 7vw, 88px);
  text-align: center;
  color: #fff;
  isolation: isolate;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 140%;
  background: radial-gradient(ellipse at 30% 20%, rgba(236, 72, 153, .5), transparent 55%),
              radial-gradient(ellipse at 78% 70%, rgba(139, 92, 246, .45), transparent 55%);
  z-index: -1;
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(-3%, -2%, 0) scale(1); }
  to   { transform: translate3d(4%, 3%, 0) scale(1.12); }
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .78); margin-inline: auto; }

/* --------------------------------------------------------------- 23. Footer */
.footer { background: var(--ink); color: rgba(255, 255, 255, .66); padding-block: var(--space-3xl) var(--space-lg); font-size: .93rem; }
.footer a { color: rgba(255, 255, 255, .78); }
.footer a:hover { color: var(--pink-soft); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-xl) var(--space-md);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer .brand { color: #fff; }
.footer .brand:hover { color: var(--pink-soft); }
.footer h4 { color: #fff; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: var(--space-sm); }
.footer__links { display: grid; gap: 9px; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  font-size: .84rem;
}
.social { display: flex; gap: 10px; margin-top: var(--space-md); }
.social a {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  display: grid;
  place-items: center;
  transition: background var(--t-mid), transform var(--t-mid), border-color var(--t-mid);
}
.social a:hover { background: var(--pink); border-color: transparent; transform: translateY(-3px); color: #fff; }
.social svg { width: 19px; height: 19px; }

/* ------------------------------------------------------------ 24. Page head */
.pagehead {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(40px, 7vw, 84px));
  padding-bottom: clamp(40px, 6vw, 76px);
  overflow: hidden;
}
.pagehead__inner { position: relative; z-index: 1; max-width: 720px; }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: .8rem; color: var(--body-text); margin-bottom: var(--space-sm); }
.crumbs a { color: var(--pink-deep); }
.crumbs svg { width: 13px; height: 13px; opacity: .6; }

/* --------------------------------------------------- 25. Cursor + curtain */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 26px; height: 26px;
  border: 1.5px solid var(--pink-deep);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99;
  transform: translate3d(-100px, -100px, 0);
  transition: width 220ms var(--e-out), height 220ms var(--e-out), background 220ms var(--e-out), border-color 220ms var(--e-out), opacity 220ms;
  will-change: transform;
  mix-blend-mode: multiply;
}
.cursor.is-hover { width: 58px; height: 58px; background: rgba(236, 72, 153, .16); border-color: transparent; }
.cursor.is-down  { transform-origin: center; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

.curtain {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: var(--ink);
  transform: translateY(100%);
  pointer-events: none;
  display: grid;
  place-items: center;
}
.curtain.is-out { animation: curtainOut 620ms var(--e-out) forwards; }
.curtain.is-in  { animation: curtainIn  700ms var(--e-out) forwards; }
@keyframes curtainOut { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes curtainIn  { from { transform: translateY(0); }    to { transform: translateY(-100%); } }
.curtain__mark { width: 64px; height: 64px; opacity: .85; }

/* preloader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--blush);
  display: grid;
  place-items: center;
  transition: opacity 520ms var(--e-out), visibility 520ms;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__word {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 6vw, 3rem);
  letter-spacing: .3em;
  color: var(--plum);
  text-indent: .3em;
}
.loader__word span {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  animation: loadIn 620ms var(--e-out) forwards;
}
@keyframes loadIn { to { opacity: 1; transform: none; } }
.loader__bar {
  width: 180px; height: 2px;
  background: var(--line);
  margin: 20px auto 0;
  overflow: hidden;
  border-radius: 2px;
}
.loader__bar i { display: block; height: 100%; width: 100%; background: var(--pink); transform: translateX(-100%); animation: barIn 900ms var(--e-out) 260ms forwards; }
@keyframes barIn { to { transform: translateX(0); } }

/* to-top */
.totop {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 0;
  background: var(--plum);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 70;
  box-shadow: var(--sh-2);
  opacity: 0;
  transform: translateY(14px) scale(.85);
  pointer-events: none;
  transition: opacity var(--t-mid), transform var(--t-mid), background var(--t-mid);
}
.totop.is-shown { opacity: 1; transform: none; pointer-events: auto; }
.totop:hover { background: var(--pink); }
.totop svg { width: 20px; height: 20px; }

/* ------------------------------------------------------------ 26. Responsive */
@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 2; }
}

@media (max-width: 900px) {
  :root { --header-h: 74px; }
  .nav, .header__cta .btn--ghost { display: none; }
  .burger { display: inline-flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .collage { max-width: 520px; margin-inline: auto; }
  .split, .process, .contact-grid { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
  .process__sticky { position: static; }
  .grid--3, .quotes { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split__media--stack { aspect-ratio: 4/4.2; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap, .wrap--narrow, .header__inner { width: min(100% - 2rem, var(--wrap)); }
  .grid--2, .grid--3, .grid--4, .quotes { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .rail > * { flex-basis: 78vw; }
  .frame-note { right: 0; top: 2%; max-width: 160px; padding: 12px 14px; font-size: .78rem; }
  .spin { width: 92px; height: 92px; }
  .rail-head { flex-direction: column; align-items: flex-start; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
  .btn { width: 100%; }
  .btn-row .btn { width: auto; flex: 1 1 200px; }
}

/* -------------------------------------------------------- 27. Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .split-char { opacity: 1 !important; transform: none !important; }
  .collage__item { clip-path: none !important; }
  .collage__badge { opacity: 1 !important; transform: none !important; }
  .cursor { display: none; }
  .marquee__track { animation: none; }
  .loader { display: none; }
}

/* -------------------------------------------------------------- 28. Print */
@media print {
  .header, .footer, .totop, .cursor, .curtain, .loader, .marquee, .progress { display: none !important; }
  body { background: #fff; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
