/* Beauty on Taylors v2 — #FFD1DC pink palette */

:root {
  /* Surfaces — built around #FFD1DC */
  --cream:        #FFF0F5;   /* lightest pink base */
  --cream-2:      #FFE4E1;   /* soft blush */
  --cream-3:      #FFD1DC;   /* main pink */
  --paper:        #FFFFFF;
  --paper-warm:   #FFF8FA;

  /* Ink / type */
  --ink:          #1A0F15;   /* near-black, pink bias */
  --ink-soft:     #4D3540;
  --muted:        #8A6E76;
  --whisper:      #C0A0AA;

  /* Accents — #FFD1DC palette */
  --gold:         #FFC0CB;   /* medium pink */
  --gold-deep:    #C0547A;   /* dark rose (links, active, italic heads) */
  --gold-soft:    #FFD1DC;   /* main pink (decorative use) */
  --champagne:    #FFB6C1;   /* saturated pink */
  --nude:         #FFE4E1;   /* light blush */
  --blush:        #FFF0F5;   /* lightest */
  --blush-deep:   #FFB6C1;   /* medium pink */
  --rose:         #B03060;   /* deep rose */
  --sage:         #C08898;   /* dusty rose */

  /* Lines */
  --line:         #FFD1DC;
  --line-soft:    #FFE4E1;

  /* Shadows — pink-tinged */
  --shadow-xs:    0 2px 8px rgba(180, 60, 100, 0.07);
  --shadow:       0 8px 32px rgba(180, 60, 100, 0.10);
  --shadow-lg:    0 24px 60px rgba(180, 60, 100, 0.15);
  --shadow-xl:    0 40px 100px rgba(180, 60, 100, 0.20);

  /* Radii */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Layout */
  --maxw: 1200px;
  --maxw-narrow: 880px;
  --maxw-text: 720px;

  /* Type */
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono-sans: "Montserrat", "Inter", -apple-system, sans-serif;

  /* Motion */
  --ease-out:    cubic-bezier(.2, .8, .2, 1);
  --ease-soft:   cubic-bezier(.22, .61, .36, 1);
  --ease-spring: cubic-bezier(.5, 1.5, .5, 1);
  --t-fast: .18s;
  --t-base: .32s;
  --t-slow: .6s;

  /* Header */
  --nav-h: 78px;
}

* { box-sizing: border-box; }
*::selection { background: var(--gold-soft); color: var(--ink); }

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.12;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 500; }

h1 em, h2 em, h3 em { font-style: italic; color: var(--gold-deep); font-weight: 400; }

p { margin: 0 0 1em; color: var(--ink-soft); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--ink-soft); max-width: 56ch; line-height: 1.65; }

a { color: var(--gold-deep); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--ink); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 28px; }
.container-text { max-width: var(--maxw-text); margin: 0 auto; padding: 0 28px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--cream); padding: 12px 18px; z-index: 999;
  border-radius: var(--r-sm);
}
.skip-link:focus { left: 12px; top: 12px; }

/* ==========================================================
   HEADER
   ========================================================== */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background var(--t-base), backdrop-filter var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
.topbar::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--rose) 50%, transparent 100%);
  opacity: 0; transition: opacity var(--t-base);
  pointer-events: none;
}
.topbar.is-scrolled {
  background:
    linear-gradient(180deg, rgba(255, 209, 220, 0.92) 0%, rgba(255, 245, 247, 0.96) 100%);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--blush);
  box-shadow: 0 4px 18px rgba(180, 60, 100, 0.10);
}
.topbar.is-scrolled::after { opacity: .65; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; gap: 24px;
  min-height: var(--nav-h);
}
.logo {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--serif); color: var(--ink);
  transition: transform var(--t-base) var(--ease-out);
}
.logo:hover { transform: translateX(-2px); }
.logo-mark {
  width: 46px; height: 46px; border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, var(--gold-soft), var(--gold) 60%, var(--gold-deep));
  display: grid; place-items: center;
  color: var(--paper); font-weight: 600; font-size: 16px;
  font-family: var(--sans); letter-spacing: 1px;
  box-shadow: inset 0 1px 2px rgba(255,255,255,.4), 0 4px 14px rgba(180, 60, 100, .3);
  position: relative;
}
.logo-mark::after {
  content: ""; position: absolute; inset: -3px; border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: .4;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-size: 1.3rem; font-weight: 500; letter-spacing: .01em; }
.logo-text small {
  font-size: .68rem; color: var(--muted); letter-spacing: .22em;
  text-transform: uppercase; font-family: var(--sans); margin-top: 2px;
}

.nav-links { display: flex; gap: 30px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--ink); font-weight: 500; font-size: .92rem;
  position: relative; padding: 6px 2px;
  transition: color var(--t-fast);
}
.nav-links a::after {
  content: ""; position: absolute; bottom: -4px; left: 50%; right: 50%;
  height: 1px; background: var(--gold-deep);
  transition: left var(--t-base) var(--ease-out), right var(--t-base) var(--ease-out);
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a:hover::after, .nav-links a.is-active::after { left: 0; right: 0; }
.nav-links a.is-active { color: var(--gold-deep); }

.nav-cta {
  background: linear-gradient(135deg, var(--ink) 0%, #3A1828 100%);
  color: var(--cream) !important;
  padding: 12px 22px; border-radius: var(--r-pill);
  font-weight: 500; font-size: .88rem; letter-spacing: .01em;
  transition: all var(--t-base) var(--ease-out);
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 14px rgba(120, 40, 80, .22);
  border: 1px solid rgba(255, 192, 203, .25);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--rose) 100%);
  color: var(--paper) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(180, 60, 100, .45);
  border-color: transparent;
}

.menu-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
  color: var(--ink); border-radius: var(--r-sm);
}
.menu-toggle:hover { background: var(--cream-2); }

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 15px 28px; border-radius: var(--r-pill);
  font-weight: 500; font-size: .95rem; font-family: var(--sans);
  border: 1px solid transparent; cursor: pointer;
  transition: all var(--t-base) var(--ease-out);
  text-decoration: none; letter-spacing: .01em;
  position: relative; overflow: hidden;
}
.btn svg { transition: transform var(--t-base) var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--ink); color: var(--cream);
  box-shadow: 0 4px 12px rgba(40, 20, 35, .15);
}
.btn-primary:hover {
  background: var(--gold-deep); color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(180, 60, 100, .35);
}

.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink); color: var(--cream);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--paper);
  box-shadow: 0 6px 18px rgba(180, 60, 100, .3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(180, 60, 100, .45);
}

.btn-soft {
  background: var(--paper); color: var(--ink); border: 1px solid var(--line);
}
.btn-soft:hover { border-color: var(--gold); background: var(--cream); transform: translateY(-2px); }

.btn-lg { padding: 18px 34px; font-size: 1rem; }
.btn-sm { padding: 10px 18px; font-size: .85rem; }

/* ==========================================================
   COMMON BITS
   ========================================================== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .76rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600; margin-bottom: 22px;
  font-family: var(--mono-sans);
}
.eyebrow .dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 192, 203, .2);
}

.ornament {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  color: var(--gold); margin: 18px 0 26px;
  font-size: 1.2rem;
}
.ornament::before, .ornament::after {
  content: ""; height: 1px; width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider-orn { /* legacy alias */
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 24px 0; color: var(--gold);
}
.divider-orn::before, .divider-orn::after {
  content: ""; height: 1px; flex: 1; max-width: 80px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.tag {
  padding: 8px 16px; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-pill); font-size: .82rem; color: var(--ink-soft);
  font-weight: 500;
}

/* ==========================================================
   HERO (home)
   ========================================================== */
.hero {
  padding: 70px 0 110px;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(255, 193, 203, .35) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 90%, rgba(255, 209, 220, .45) 0%, transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 25% 35%, rgba(255, 192, 203, .07) 0%, transparent 8%),
                    radial-gradient(circle at 75% 75%, rgba(255, 192, 203, .05) 0%, transparent 6%);
  background-size: 240px 240px;
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.08fr 1fr; gap: 70px; align-items: center;
  position: relative; z-index: 1;
}
.hero h1 { margin-bottom: 26px; }
.hero-meta-pill {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--paper); padding: 11px 20px; border-radius: var(--r-pill);
  border: 1px solid var(--line); margin: 24px 0 4px;
  font-size: .9rem; box-shadow: var(--shadow-xs);
}
.hero-meta-pill .stars { color: var(--gold); letter-spacing: 2px; }
.hero-meta-pill strong { color: var(--ink); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line);
}
.hero-stat { text-align: left; padding-right: 16px; }
.hero-stat:not(:last-child) { border-right: 1px solid var(--line); padding-left: 0; }
.hero-stat:not(:first-child) { padding-left: 24px; }
.hero-stat-n {
  font-family: var(--sans); font-size: 2.1rem; color: var(--gold-deep);
  font-weight: 600; line-height: 1; margin-bottom: 6px;
  letter-spacing: -.01em;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.hero-stat-n small {
  color: inherit; font-family: var(--sans);
  font-weight: 600; font-size: 1em; font-style: normal;
}
.hero-stat-l {
  font-size: .78rem; color: var(--muted); text-transform: uppercase;
  letter-spacing: .15em; font-weight: 500;
}

/* Hero media */
.hero-media {
  position: relative; aspect-ratio: 4/5;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: rotate(.4deg);
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(40, 20, 35, .25) 100%);
  pointer-events: none;
}
.hero-media-frame {
  position: absolute; inset: 12px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: calc(var(--r-lg) - 8px);
  pointer-events: none; z-index: 2;
}

.hero-slideshow { position: absolute; inset: 0; }
.hs-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.4s var(--ease-soft), transform 8s ease;
  background-size: cover; background-position: center;
  transform: scale(1);
}
.hs-slide.is-active { opacity: 1; transform: scale(1.05); }
.hs-caption {
  position: absolute; left: 22px; right: 22px; bottom: 22px;
  background: rgba(40, 20, 35, 0.78); backdrop-filter: blur(10px);
  color: var(--cream); padding: 12px 16px;
  border-radius: var(--r-md); font-size: .88rem;
  font-family: var(--serif); font-style: italic;
  z-index: 3;
}

/* Floating ornaments around hero media */
.hero-ornament {
  position: absolute; pointer-events: none; opacity: .55;
  animation: float 8s ease-in-out infinite;
}
.hero-ornament.top-left {
  top: -30px; left: -30px; width: 100px; height: 100px;
  color: var(--gold);
}
.hero-ornament.bottom-right {
  bottom: -20px; right: -20px; width: 80px; height: 80px;
  color: var(--gold-soft); animation-delay: -3s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-12px) rotate(8deg); }
}

/* Trust strip */
.trust-strip {
  background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.trust-strip .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: .9rem; color: var(--ink-soft);
}
.trust-item svg { color: var(--gold-deep); flex-shrink: 0; }
.trust-item strong { color: var(--ink); font-weight: 600; }

/* ==========================================================
   SECTIONS
   ========================================================== */
.section { padding: 110px 0; position: relative; }
.section-tight { padding: 70px 0; }
.section-cream { background: var(--cream-2); }
.section-paper { background: var(--paper); }
.section-warm   { background: var(--paper-warm); }
.section-ink {
  background: linear-gradient(180deg, var(--ink) 0%, #281528 100%);
  color: var(--cream);
}
.section-ink h2, .section-ink h3 { color: var(--cream); }
.section-ink p { color: rgba(255, 245, 247, .78); }

.section-head {
  text-align: center; max-width: 720px; margin: 0 auto 64px;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head p { font-size: 1.1rem; line-height: 1.6; }
.section-head h2 { margin-bottom: 18px; }

/* ==========================================================
   SERVICES grid (used on home + about + others)
   ========================================================== */
.svc-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.svc-card {
  background: var(--paper); padding: 38px 32px;
  border-radius: var(--r-md); border: 1px solid var(--line);
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base),
              border-color var(--t-base);
  position: relative; overflow: hidden;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.svc-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--nude));
  transform: scaleX(0); transform-origin: left; transition: transform var(--t-slow) var(--ease-out);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-2), var(--cream-3));
  display: grid; place-items: center;
  margin-bottom: 24px; color: var(--gold-deep); font-size: 24px;
  transition: transform var(--t-base) var(--ease-spring);
}
.svc-card:hover .svc-icon { transform: scale(1.1) rotate(-5deg); }
.svc-card h3 { margin-bottom: 12px; font-family: var(--serif); font-weight: 500; }
.svc-card p { font-size: .95rem; color: var(--ink-soft); margin-bottom: 14px; }
.svc-card .price-tag {
  display: inline-block; padding: 5px 14px;
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--r-pill); font-size: .8rem; color: var(--ink-soft);
}

/* Service card with image */
.svc-card-img {
  background: var(--paper); border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--line);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base);
  display: flex; flex-direction: column;
}
.svc-card-img:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.svc-card-img .img {
  aspect-ratio: 4/3; overflow: hidden; position: relative;
  background: var(--cream-2);
}
.svc-card-img .img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow) var(--ease-soft);
}
.svc-card-img:hover .img img { transform: scale(1.06); }
.svc-card-img .body { padding: 26px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.svc-card-img h3 { font-family: var(--serif); margin-bottom: 8px; }
.svc-card-img .desc { color: var(--ink-soft); font-size: .94rem; margin-bottom: 18px; flex: 1; }
.svc-card-img .meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--line);
  font-size: .9rem;
}
.svc-card-img .price { font-family: var(--serif); color: var(--gold-deep); font-size: 1.15rem; }
.svc-card-img .dur { color: var(--muted); }

/* ==========================================================
   RITUAL TIMELINE
   ========================================================== */
.ritual {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  counter-reset: rit;
  margin-top: 32px;
}
.ritual-step {
  position: relative; padding: 32px 24px 28px;
  background: var(--paper); border-radius: var(--r-md);
  border: 1px solid var(--line);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.ritual-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ritual-step::before {
  counter-increment: rit;
  content: "0" counter(rit);
  position: absolute; top: -18px; left: 24px;
  font-family: var(--serif); font-size: 1.6rem;
  color: var(--paper); background: var(--gold-deep);
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(180, 60, 100, .35);
}
.ritual-step h3 { margin-top: 22px; margin-bottom: 8px; }
.ritual-step p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--paper); padding: 32px 30px;
  border-radius: var(--r-md); border: 1px solid var(--line);
  position: relative; overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-card::before {
  content: "“"; position: absolute; top: -10px; right: 18px;
  font-family: var(--serif); font-size: 7rem; color: var(--cream-2);
  line-height: 1; z-index: 0; font-weight: 600;
}
.testi-card > * { position: relative; z-index: 1; }
.testi-card .stars {
  color: var(--gold); font-size: .9rem; margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-card blockquote {
  margin: 0 0 18px; font-family: var(--serif); font-size: 1.12rem;
  line-height: 1.55; color: var(--ink); font-style: italic;
}
.testi-card .author { font-size: .85rem; color: var(--muted); font-weight: 500; }
.testi-card .author strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 2px; }

/* Featured big quote */
.testi-feature {
  max-width: 880px; margin: 0 auto;
  padding: 56px 48px; background: var(--paper);
  border-radius: var(--r-lg); border: 1px solid var(--line);
  text-align: center; position: relative; box-shadow: var(--shadow);
}
.testi-feature::before {
  content: "“"; position: absolute; top: 14px; left: 28px;
  font-family: var(--serif); font-size: 7rem; color: var(--gold-soft);
  line-height: 1;
}
.testi-feature .stars {
  color: var(--gold); font-size: 1rem; letter-spacing: 4px; margin-bottom: 22px;
}
.testi-feature blockquote {
  margin: 0 0 28px; font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 1.45; color: var(--ink); font-style: italic; font-weight: 400;
}
.testi-feature .author { color: var(--muted); font-size: .92rem; }
.testi-feature .author strong { color: var(--ink); display: block; font-size: 1.05rem; margin-bottom: 2px; }

/* ==========================================================
   GALLERY
   ========================================================== */
.gallery-filters {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap; margin: 0 0 40px;
}
.gallery-filter {
  padding: 10px 22px; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-pill); font-size: .85rem; color: var(--ink-soft);
  cursor: pointer; transition: all var(--t-base);
  font-family: var(--sans); font-weight: 500;
}
.gallery-filter:hover { border-color: var(--gold); color: var(--ink); }
.gallery-filter.is-active {
  background: var(--ink); color: var(--cream); border-color: var(--ink);
}

.gallery-masonry { columns: 3; column-gap: 18px; }
.gallery-masonry .g-item {
  break-inside: avoid; margin-bottom: 18px;
  border-radius: var(--r-md); overflow: hidden;
  display: block; position: relative; cursor: zoom-in;
  background: var(--cream-2);
  transition: transform var(--t-base) var(--ease-out);
}
.gallery-masonry .g-item:hover { transform: translateY(-3px); }
.gallery-masonry img {
  width: 100%; height: auto; display: block;
  transition: transform var(--t-slow) var(--ease-soft);
}
.gallery-masonry .g-item:hover img { transform: scale(1.06); }
.gallery-masonry .g-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(40, 20, 35, .35) 100%);
  opacity: 0; transition: opacity var(--t-base);
  pointer-events: none;
}
.gallery-masonry .g-item:hover::after { opacity: 1; }
.gallery-masonry .g-item .g-zoom {
  position: absolute; bottom: 14px; right: 14px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--ink);
  display: grid; place-items: center;
  opacity: 0; transform: translateY(6px); transition: all var(--t-base);
  pointer-events: none;
}
.gallery-masonry .g-item:hover .g-zoom { opacity: 1; transform: translateY(0); }
@media (max-width: 900px) { .gallery-masonry { columns: 2; } }
@media (max-width: 560px) { .gallery-masonry { columns: 1; } }

/* Gallery strip preview (home) */
.gallery-strip {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 14px; margin-top: 32px;
}
.gallery-strip .g-item {
  aspect-ratio: 1/1; border-radius: var(--r-sm); overflow: hidden;
  position: relative; transition: transform var(--t-base);
}
.gallery-strip .g-item:hover { transform: translateY(-3px); }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.gallery-strip .g-item:hover img { transform: scale(1.08); }
@media (max-width: 900px) { .gallery-strip { grid-template-columns: repeat(3, 1fr); } }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(25, 10, 20, .94); backdrop-filter: blur(10px);
  align-items: center; justify-content: center; padding: 40px;
  opacity: 0; transition: opacity var(--t-base);
}
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox img {
  max-width: 100%; max-height: 85vh; border-radius: var(--r-md);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next {
  position: absolute; background: rgba(255,255,255,.12); color: var(--cream);
  border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
  cursor: pointer; font-size: 20px;
  width: 48px; height: 48px;
  transition: background var(--t-fast), transform var(--t-fast);
  display: grid; place-items: center;
}
.lightbox .lb-close:hover,
.lightbox .lb-prev:hover,
.lightbox .lb-next:hover { background: rgba(255,255,255,.22); transform: scale(1.05); }
.lightbox .lb-close { top: 24px; right: 24px; }
.lightbox .lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-prev:hover, .lightbox .lb-next:hover { transform: translateY(-50%) scale(1.05); }
.lightbox .lb-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: var(--cream); font-size: .85rem; letter-spacing: .1em;
  background: rgba(0,0,0,.4); padding: 8px 16px; border-radius: var(--r-pill);
}
.lightbox .lb-caption {
  position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%);
  color: var(--cream); font-family: var(--serif); font-style: italic;
  font-size: 1rem; max-width: 600px; text-align: center; padding: 0 20px;
}

/* ==========================================================
   CTA banner
   ========================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--ink) 0%, #4A1840 100%);
  color: var(--cream); padding: 80px 48px; border-radius: var(--r-lg);
  text-align: center; margin: 0 auto; max-width: 1100px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; top: -50%; right: -10%;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 192, 203, .3), transparent 70%);
  pointer-events: none;
}
.cta-banner::after {
  content: ""; position: absolute; bottom: -40%; left: -10%;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 209, 220, .15), transparent 70%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--cream); margin-bottom: 16px; }
.cta-banner p { color: rgba(255, 245, 247, .85); max-width: 560px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-banner .btn-ghost { color: var(--cream); border-color: var(--cream); }
.cta-banner .btn-ghost:hover { background: var(--cream); color: var(--ink); }

/* ==========================================================
   SERVICE LIST (services page)
   ========================================================== */
.svc-categories {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; margin: 0 0 50px;
  padding: 12px; background: var(--paper-warm);
  border-radius: var(--r-pill); border: 1px solid var(--line);
  position: sticky; top: calc(var(--nav-h) + 16px); z-index: 20;
  max-width: 800px; margin-left: auto; margin-right: auto;
}
.svc-cat {
  padding: 10px 22px; border-radius: var(--r-pill);
  font-size: .88rem; color: var(--ink-soft); cursor: pointer;
  background: transparent; border: none; font-family: var(--sans);
  transition: all var(--t-base); font-weight: 500;
}
.svc-cat:hover { color: var(--ink); }
.svc-cat.is-active {
  background: var(--ink); color: var(--cream); font-weight: 500;
}

.service-list { display: grid; gap: 0; max-width: 880px; margin: 0 auto; }
.service-row {
  display: grid; grid-template-columns: 1fr auto; gap: 32px;
  padding: 28px 18px; border-bottom: 1px solid var(--line);
  align-items: start;
  border-radius: var(--r-md);
  transition: padding var(--t-base), background var(--t-base);
}
.service-row:hover { padding-left: 26px; }
.service-row:last-child { border-bottom: none; }
.service-row:nth-of-type(even) {
  background: rgba(255, 209, 220, .35);
  border-bottom-color: transparent;
}
.service-row:nth-of-type(even):hover {
  background: rgba(255, 209, 220, .55);
}
.service-row h3 {
  font-family: var(--serif); font-size: 1.45rem; margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.service-row h3::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  opacity: 0; transform: scale(0); transition: all var(--t-base) var(--ease-spring);
}
.service-row:hover h3::before { opacity: 1; transform: scale(1); }
.service-row .desc { color: var(--ink-soft); font-size: .96rem; margin: 0; line-height: 1.6; }
.service-row .price {
  font-family: var(--serif); font-size: 1.4rem; color: var(--gold-deep);
  white-space: nowrap; text-align: right;
}
.service-row .price small {
  font-size: .78rem; color: var(--muted); font-family: var(--sans);
  display: block; margin-top: 4px; letter-spacing: .04em;
}

/* service-row thumbnail variant */
.service-row.has-thumb {
  grid-template-columns: 112px 1fr auto;
  gap: 28px;
}
.service-row .svc-thumb {
  width: 112px; height: 112px;
  border-radius: var(--r-md);
  object-fit: cover;
  box-shadow: var(--shadow-xs);
}
@media (max-width: 720px) {
  .service-row.has-thumb { grid-template-columns: 80px 1fr; }
  .service-row.has-thumb .price { grid-column: 2; }
  .service-row .svc-thumb { width: 80px; height: 80px; }
}

/* category hero image — wide showcase strip above price-grid */
.cat-hero {
  width: 100%;
  height: 280px;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: var(--shadow);
  position: relative;
}
.cat-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 720px) {
  .cat-hero { height: 200px; }
}

/* compact price list for long menus (waxing, men's wax, brows) */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  margin-top: 8px;
}
.price-grid .pg-row {
  display: grid; grid-template-columns: 1fr auto; gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px dotted var(--line);
  border-radius: var(--r-sm);
  align-items: baseline;
}
/* zebra: shade every second visual row (items 3-4, 7-8, 11-12, …) */
.price-grid .pg-row:nth-of-type(4n-1),
.price-grid .pg-row:nth-of-type(4n) {
  background: rgba(255, 209, 220, .32);
  border-bottom-color: transparent;
}
.price-grid .pg-name {
  font-family: var(--serif); font-size: 1.05rem; color: var(--ink);
}
.price-grid .pg-name small {
  font-family: var(--sans); font-size: .78rem;
  color: var(--muted); margin-left: 8px; letter-spacing: .04em;
}
.price-grid .pg-price {
  font-family: var(--serif); font-size: 1.1rem;
  color: var(--gold-deep); white-space: nowrap;
}
.menu-subhead {
  font-family: var(--serif); font-size: 1.15rem;
  color: var(--ink-soft);
  margin: 28px 0 4px;
  letter-spacing: .02em;
}
@media (max-width: 720px) {
  .price-grid { grid-template-columns: 1fr; gap: 0; }
}

/* ==========================================================
   SPLIT (image + text)
   ========================================================== */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px;
  align-items: center;
}
.split.split-reverse .split-img { order: 2; }
.split-img {
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-lg);
  position: relative;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-soft); }
.split-img:hover img { transform: scale(1.04); }
.split-img-frame {
  position: absolute; inset: 14px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: calc(var(--r-lg) - 8px);
  pointer-events: none; z-index: 2;
}

/* ==========================================================
   INFO CARDS / DETAILS
   ========================================================== */
.info-card {
  background: var(--paper); padding: 36px;
  border-radius: var(--r-md); border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}
.info-row {
  display: flex; gap: 18px; padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.info-row:first-child { padding-top: 0; }
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row .icn {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-2), var(--cream-3));
  display: grid; place-items: center;
  color: var(--gold-deep); font-size: 1.2rem;
}
.info-row .lbl {
  font-size: .75rem; color: var(--muted); letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 4px; font-weight: 600;
}
.info-row .val { color: var(--ink); font-weight: 500; line-height: 1.5; }
.info-row .val a { color: var(--ink); }
.info-row .val a:hover { color: var(--gold-deep); }

/* Hours table */
.hours-table { width: 100%; }
.hours-table tr { border-bottom: 1px solid var(--line-soft); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 15px 0; font-size: .95rem; }
.hours-table td:first-child { color: var(--ink-soft); font-weight: 500; }
.hours-table td:last-child { text-align: right; color: var(--ink); font-feature-settings: "tnum"; }
.hours-table tr.today {
  background: linear-gradient(90deg, rgba(255, 192, 203, .14), transparent);
  position: relative;
}
.hours-table tr.today td { color: var(--gold-deep); font-weight: 600; }
.hours-table tr.today td:first-child::before {
  content: "•"; color: var(--gold); margin-right: 8px; font-size: 1.4rem; vertical-align: middle;
}

/* ==========================================================
   BOOKING
   ========================================================== */
.booking-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 56px;
}
.booking-step {
  text-align: center; padding: 30px 24px;
  background: var(--paper); border-radius: var(--r-md);
  border: 1px solid var(--line);
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative;
}
.booking-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.booking-step .num {
  font-family: var(--serif); font-style: italic; color: var(--gold-deep);
  font-size: 2rem; line-height: 1; margin-bottom: 12px;
}
.booking-step h3 { margin-bottom: 8px; font-size: 1.2rem; }
.booking-step p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

.booking-card {
  background: var(--paper); padding: 56px; border-radius: var(--r-lg);
  text-align: center; box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.booking-card h2 { margin-bottom: 12px; }
.booking-iframe {
  width: 100%; min-height: 680px; border: 0;
  border-radius: var(--r-md); background: var(--cream-2);
}
.booking-fallback {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px; margin-top: 36px;
}
.booking-fallback a {
  display: block; padding: 24px; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r-md);
  color: var(--ink); text-align: center; transition: all var(--t-base) var(--ease-out);
  position: relative; overflow: hidden;
}
.booking-fallback a::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-soft), transparent 40%);
  opacity: 0; transition: opacity var(--t-base);
}
.booking-fallback a:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }
.booking-fallback a:hover::before { opacity: .25; }
.booking-fallback a > * { position: relative; }
.booking-fallback strong {
  display: block; font-size: 1.05rem; font-family: var(--serif);
  font-weight: 500; margin-bottom: 6px;
}
.booking-fallback small { color: var(--muted); font-size: .85rem; line-height: 1.45; display: block; }
.booking-fallback .ch-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-2), var(--cream-3));
  display: inline-grid; place-items: center;
  color: var(--gold-deep); margin-bottom: 14px;
}

/* ==========================================================
   CONTACT form
   ========================================================== */
.contact-form { display: grid; gap: 18px; }
.contact-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: .8rem; color: var(--muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 14px 16px; border: 1px solid var(--line);
  border-radius: var(--r-sm); font-family: var(--sans);
  background: var(--paper); color: var(--ink); font-size: 1rem;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 192, 203, .15);
}
.contact-form textarea { resize: vertical; min-height: 140px; }

/* Map */
.map-embed {
  width: 100%; height: 420px; border: 0;
  border-radius: var(--r-md); filter: saturate(.9) hue-rotate(-5deg);
  border: 1px solid var(--line);
}

/* ==========================================================
   PAGE HERO
   ========================================================== */
.page-hero {
  padding: 90px 0 80px;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(255, 193, 203, .42) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 100%, rgba(255, 209, 220, .55) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before, .page-hero::after {
  content: ""; position: absolute; width: 260px; height: 260px;
  border-radius: 50%; opacity: .6; pointer-events: none;
  background: radial-gradient(circle, var(--gold-soft), transparent 70%);
  filter: blur(2px);
}
.page-hero::before { top: -90px; left: 6%; }
.page-hero::after { bottom: -100px; right: 6%; background: radial-gradient(circle, var(--blush), transparent 70%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 18px; }
.page-hero .lead { margin: 0 auto; }

/* ==========================================================
   ABOUT specific
   ========================================================== */
.quals {
  display: flex; gap: 28px; flex-wrap: wrap;
  justify-content: center; margin-top: 16px;
}
.qual {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 22px; background: var(--paper); border-radius: var(--r-pill);
  border: 1px solid var(--line); font-size: .88rem; color: var(--ink-soft);
  box-shadow: var(--shadow-xs);
}
.qual svg { color: var(--gold-deep); flex-shrink: 0; }
.qual strong { color: var(--ink); font-weight: 600; }

.pull-quote {
  max-width: 720px; margin: 0 auto;
  text-align: center; padding: 40px 24px;
  position: relative;
}
.pull-quote::before {
  content: "“"; display: block; font-family: var(--serif);
  font-size: 5rem; color: var(--gold); line-height: 1; margin-bottom: -10px;
}
.pull-quote p {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 1.45; color: var(--ink); margin-bottom: 18px;
}
.pull-quote cite {
  font-style: normal; color: var(--gold-deep); font-size: .85rem;
  text-transform: uppercase; letter-spacing: .2em; font-weight: 600;
}

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 36px 22px 0;
  font-family: var(--serif); font-size: 1.2rem; font-weight: 500;
  color: var(--ink); position: relative;
  transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-deep); }
.faq-item summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--cream-2); display: grid; place-items: center;
  color: var(--gold-deep); font-size: 1.3rem; line-height: 1; font-family: var(--sans);
  transition: transform var(--t-base) var(--ease-spring), background var(--t-fast);
}
.faq-item[open] summary::after {
  content: "−"; background: var(--gold); color: var(--paper); transform: translateY(-50%) rotate(180deg);
}
.faq-item .faq-body {
  padding: 0 0 22px; color: var(--ink-soft); font-size: .98rem; line-height: 1.7;
  max-width: 700px;
}

/* ==========================================================
   FOOTER
   ========================================================== */
footer.site-footer {
  background: linear-gradient(180deg, var(--ink) 0%, #260F20 100%);
  color: rgba(255, 245, 247, .7);
  padding: 80px 0 32px;
}
footer.site-footer .container {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px;
}
footer.site-footer h4 {
  color: var(--cream); font-family: var(--sans); font-size: .8rem;
  text-transform: uppercase; letter-spacing: .18em; font-weight: 600;
  margin-bottom: 20px;
}
footer.site-footer a {
  color: rgba(255, 245, 247, .68); display: block; padding: 6px 0;
  font-size: .92rem; transition: color var(--t-fast), padding-left var(--t-fast);
}
footer.site-footer a:hover { color: var(--gold-soft); padding-left: 4px; }
footer.site-footer p { color: rgba(255, 245, 247, .6); font-size: .92rem; line-height: 1.65; }
footer.site-footer .footer-brand {
  font-family: var(--serif); font-size: 1.5rem; color: var(--cream); margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
footer.site-footer .footer-brand .logo-mark { width: 38px; height: 38px; font-size: 14px; }
footer.site-footer .footer-social {
  display: flex; gap: 12px; margin-top: 16px;
}
footer.site-footer .footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255, 245, 247, .08);
  display: grid; place-items: center; padding: 0;
  border: 1px solid rgba(255, 245, 247, .12);
  transition: all var(--t-base);
}
footer.site-footer .footer-social a:hover {
  background: var(--gold); color: var(--ink); transform: translateY(-2px);
  border-color: var(--gold); padding-left: 0;
}
footer.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 245, 247, .08);
  margin-top: 56px; padding-top: 28px; font-size: .82rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  color: rgba(255, 245, 247, .5); grid-column: 1 / -1;
}

/* ==========================================================
   REVEAL ANIMATIONS
   ========================================================== */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .9s var(--ease-soft), transform .9s var(--ease-soft);
}
.reveal.in {
  opacity: 1; transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity .9s var(--ease-soft), transform .9s var(--ease-soft);
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .55s; }
.reveal-stagger.in > *:nth-child(n+7) { transition-delay: .65s; }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hs-slide.is-active { transform: scale(1); }
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 960px) {
  .section { padding: 80px 0; }
  .hero { padding: 50px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-media { aspect-ratio: 5/4; max-width: 520px; margin: 0 auto; }
  .split, .split.split-reverse { grid-template-columns: 1fr; gap: 40px; }
  .split.split-reverse .split-img { order: 0; }
  .ritual { grid-template-columns: repeat(2, 1fr); }
  .booking-steps { grid-template-columns: 1fr; }
  footer.site-footer .container { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  body { font-size: 15.5px; }
  .nav { padding: 14px 22px; min-height: 64px; }
  .menu-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column; padding: 24px;
    gap: 4px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; font-size: 1rem; }
  .nav-cta { display: none; }
  .section { padding: 64px 0; }
  .page-hero { padding: 60px 0; }
  .booking-card { padding: 30px 22px; }
  .service-row { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .service-row .price { text-align: left; font-size: 1.2rem; }
  .ritual { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
  .hero-stat:not(:last-child) { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
  .hero-stat:not(:first-child) { padding-left: 0; }
  .cta-banner { padding: 60px 28px; }
  .testi-feature { padding: 40px 24px; }
  .svc-categories { padding: 8px; gap: 6px; flex-wrap: wrap; }
  .svc-cat { padding: 8px 14px; font-size: .8rem; }
  footer.site-footer .container { grid-template-columns: 1fr; gap: 30px; }
  footer.site-footer .footer-bottom { flex-direction: column; text-align: center; }
}

/* ==========================================================
   V2 ADDITIONS — Conversion polish, drop caps, before/after,
   marquee, sticky mobile CTA, uniform gallery, micro-CTAs.
   ========================================================== */

/* Drop cap — first letter of a paragraph that uses .drop-cap */
.drop-cap p:first-of-type::first-letter,
p.drop-cap::first-letter {
  font-family: var(--serif);
  font-weight: 500;
  float: left;
  font-size: 4.6rem;
  line-height: .86;
  padding: 6px 14px 0 0;
  color: var(--gold-deep);
}

/* Service-row inline book micro-CTA */
.service-row .row-cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px;
  font-size: .82rem; font-family: var(--mono-sans);
  font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-deep);
  position: relative; padding-bottom: 4px;
}
.service-row .row-cta::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 1px; background: var(--gold-deep);
  transition: right var(--t-base) var(--ease-out);
}
.service-row .row-cta:hover { color: var(--ink); }
.service-row .row-cta:hover::after { right: 0; background: var(--ink); }
.service-row .row-cta svg { transition: transform var(--t-base); }
.service-row .row-cta:hover svg { transform: translateX(3px); }

/* Verified service tag (testimonials) */
.testi-card .verified-tag,
.testi-feature .verified-tag {
  display: inline-flex; align-items: center; gap: 6px;
  margin-left: 6px;
  font-family: var(--mono-sans); font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--sage);
}
.testi-card .verified-tag::before,
.testi-feature .verified-tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--sage);
}

/* ----------------------------------------------------------
   TESTIMONIAL MARQUEE — auto-scrolling horizontal strip
   ---------------------------------------------------------- */
.testi-marquee {
  position: relative; overflow: hidden;
  margin: 32px -28px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.testi-marquee-track {
  display: flex; gap: 22px; width: max-content;
  animation: marquee-scroll 80s linear infinite;
}
.testi-marquee:hover .testi-marquee-track { animation-play-state: paused; }
.testi-marquee .testi-card {
  flex: 0 0 360px; max-width: 360px;
  background: var(--paper);
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .testi-marquee-track { animation: none; flex-wrap: wrap; }
}

/* ----------------------------------------------------------
   BEFORE / AFTER SLIDER
   ---------------------------------------------------------- */
.ba-slider {
  position: relative; width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  background: var(--cream-2);
  user-select: none;
  touch-action: none;
}
.ba-slider .ba-before,
.ba-slider .ba-after {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.ba-slider .ba-after {
  clip-path: inset(0 0 0 50%);
  -webkit-clip-path: inset(0 0 0 50%);
  transition: clip-path .05s linear;
}
.ba-slider .ba-label {
  position: absolute; top: 18px;
  font-family: var(--mono-sans);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.92); color: var(--ink);
  box-shadow: var(--shadow-xs);
  pointer-events: none;
}
.ba-slider .ba-label.before { left: 18px; }
.ba-slider .ba-label.after  { right: 18px; }
.ba-slider .ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: rgba(255,255,255,.85);
  transform: translateX(-1px);
  cursor: ew-resize;
  box-shadow: 0 0 0 1px rgba(0,0,0,.06);
}
.ba-slider .ba-handle::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--gold);
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.ba-slider .ba-handle::after {
  content: "‹›"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--sans); font-weight: 700;
  color: var(--gold-deep); font-size: 22px; letter-spacing: -3px;
  pointer-events: none;
}

/* Section: "see the difference" wrap */
.ba-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 860px) {
  .ba-wrap { grid-template-columns: 1fr; gap: 32px; }
}

/* ----------------------------------------------------------
   STICKY MOBILE CTA
   ---------------------------------------------------------- */
.mobile-cta-bar {
  display: none;
}
@media (max-width: 720px) {
  .mobile-cta-bar {
    display: block;
    position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 40; padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 245, 247, 0.96);
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    border-top: 1px solid var(--line);
    transform: translateY(120%);
    transition: transform var(--t-base) var(--ease-out);
    box-shadow: 0 -8px 24px rgba(40, 20, 35, .08);
  }
  .mobile-cta-bar.is-visible { transform: translateY(0); }
  .mobile-cta-bar .btn {
    width: 100%; min-height: 52px; font-size: 1rem;
    padding: 14px 24px;
  }
  /* leave room above footer when CTA bar visible */
  body.has-sticky-cta { padding-bottom: 80px; }
}

/* ----------------------------------------------------------
   UNIFORM GALLERY GRID (4:5 portrait) — toggle via .gallery-uniform
   ---------------------------------------------------------- */
.gallery-uniform {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.gallery-uniform .g-item {
  aspect-ratio: 4/5; border-radius: var(--r-md); overflow: hidden;
  position: relative; cursor: zoom-in; background: var(--cream-2);
  display: block;
  transition: transform var(--t-base) var(--ease-out), filter var(--t-base);
}
.gallery-uniform .g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow) var(--ease-soft);
}
.gallery-uniform .g-item:hover { transform: translateY(-3px); }
.gallery-uniform .g-item:hover img { transform: scale(1.06); }
.gallery-uniform .g-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(40, 20, 35, .55) 100%);
  opacity: 0; transition: opacity var(--t-base);
  pointer-events: none;
}
.gallery-uniform .g-item:hover::after { opacity: 1; }
.gallery-uniform .g-item .g-zoom {
  position: absolute; bottom: 14px; right: 14px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.94); color: var(--ink);
  display: grid; place-items: center;
  opacity: 0; transform: translateY(6px); transition: all var(--t-base);
  pointer-events: none;
}
.gallery-uniform .g-item:hover .g-zoom { opacity: 1; transform: translateY(0); }
.gallery-uniform .g-item .g-tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--mono-sans); font-size: .62rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.92); color: var(--gold-deep);
  opacity: 0; transform: translateY(-4px); transition: all var(--t-base);
}
.gallery-uniform .g-item:hover .g-tag { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) { .gallery-uniform { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .gallery-uniform { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* Stagger filter transition for gallery items */
.gallery-uniform .g-item.is-out {
  opacity: 0; transform: scale(.96); pointer-events: none;
}
.gallery-uniform .g-item {
  transition: transform var(--t-base) var(--ease-out),
              opacity var(--t-base),
              filter var(--t-base);
}

/* ----------------------------------------------------------
   HERO ENHANCEMENTS
   ---------------------------------------------------------- */
.hero-media::after {
  /* darker bottom gradient for caption legibility */
  background: linear-gradient(180deg, transparent 50%, rgba(40, 20, 35, .42) 100%);
}

/* Touch target safety: ensure min 44px on key interactive bits on mobile */
@media (max-width: 720px) {
  .btn { min-height: 48px; }
  .nav-links a { min-height: 44px; display: flex; align-items: center; }
  .gallery-filter { min-height: 44px; }
  .svc-cat { min-height: 40px; }
}

/* Reveal-on-scroll: image clip-path mask variant */
.reveal-clip {
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s var(--ease-soft);
}
.reveal-clip.in {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
}

/* Conversion: highlight chip ("first visit" / "new") badge */
.badge-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: var(--r-pill);
  font-family: var(--mono-sans); font-size: .65rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-soft), var(--champagne));
  color: var(--ink); margin-left: 10px;
  vertical-align: middle;
}

/* Service category chip new look (matches eyebrow tone) */
.svc-cat { font-family: var(--mono-sans); letter-spacing: .08em; font-weight: 500; }
.gallery-filter { font-family: var(--mono-sans); letter-spacing: .1em; }

/* Hours-table polish: today row gold dot */
.hours-table tr.today td:last-child { font-weight: 700; }

/* Section ink — alt dark section style */
.section.section-ink { background: linear-gradient(180deg, #1F0F18 0%, #2E1528 100%); color: var(--cream); }

/* ==========================================================
   V3 — Logo integration, typography polish, premium motion
   ========================================================== */

/* Amsterdam One — signature script for the brand wordmark */
@font-face {
  font-family: 'Amsterdam One';
  src: url('../fonts/amsterdam-one.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Brand wordmark "Beauty on Taylors" — nav + footer.
   Amsterdam One's glyph ink spans ~2.55x the font size (huge swashes),
   so line-height must be >= 2.55 or the ink collides with neighbours.
   Negative margins on the motto pull it back to a natural visual gap. */
.logo-text strong {
  font-family: 'Amsterdam One', var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2.55;
  letter-spacing: .01em;
  display: block;
}
.logo-text small.motto { margin-top: -0.7em; }

footer.site-footer .footer-brand {
  font-family: 'Amsterdam One', var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 2.55;
}
footer.site-footer .footer-motto { margin-top: -0.6em; }

/* Footer wreath logo removed per request */
footer.site-footer .footer-brand .logo-mark { display: none; }

/* Brand wordmark + motto never wrap mid-text */
.logo-text strong,
.logo-text small.motto { white-space: nowrap; }

/* Switch nav to hamburger earlier — the script wordmark + larger
   wreath need more room, desktop nav gets cramped below ~1000px. */
@media (max-width: 1000px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column; padding: 24px;
    gap: 4px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; font-size: 1rem; }
  .nav-cta { display: none; }
}

/* Full wreath logo (wreath + script + motto) — her real logo.
   True-transparent PNG (white bg pre-stripped via Python), no blend mode. */
.logo-mark {
  width: 78px; height: 78px; border-radius: 0;
  background: url('../img/logo/logo-clean.png') center/contain no-repeat;
  color: transparent !important;
  font-size: 0 !important;
  box-shadow: none;
  transition: transform .5s var(--ease-out);
  flex: 0 0 auto;
}
.logo-mark::after { display: none; }
.logo:hover .logo-mark { transform: scale(1.05); }

/* Footer — dark background. Full logo as silhouette mask + cream tint.
   Stacked layout: logo on top, name below. */
footer.site-footer .footer-brand {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
footer.site-footer .footer-brand .logo-mark {
  width: 96px; height: 96px; border-radius: 0;
  background: var(--gold-soft);
  -webkit-mask: url('../img/logo/logo-mask.png') center/contain no-repeat;
          mask: url('../img/logo/logo-mask.png') center/contain no-repeat;
  box-shadow: none;
  padding: 0;
  font-size: 0 !important;
  color: transparent !important;
  transition: background .3s ease, transform .5s var(--ease-out);
}
footer.site-footer .footer-brand:hover .logo-mark {
  background: var(--cream);
  transform: scale(1.04);
}

/* Tighten gap before the footer-bottom divider line */
footer.site-footer .footer-bottom { margin-top: 32px; }

/* Footer address — one link, two lines, opens maps */
footer.site-footer a.footer-address {
  line-height: 1.5;
  padding: 6px 0;
}
footer.site-footer a.footer-address:hover { padding-left: 4px; }

/* Footer "by appointment" note under the address */
footer.site-footer .footer-note {
  display: block;
  font-size: .78rem;
  color: rgba(255, 245, 247, .42);
  letter-spacing: .02em;
  padding: 2px 0 6px;
}

/* "By appointment" note inside info-card address rows */
.info-card .val .appt-note {
  display: block;
  margin-top: 6px;
  font-family: var(--serif);
  font-style: italic;
  font-size: .96rem;
  color: var(--gold-deep);
  line-height: 1.4;
}

/* Portrait placeholder — used until Joanne's headshot is supplied */
.portrait-ph {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg, 18px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(217,194,155,.4) 0%, transparent 70%),
    linear-gradient(160deg, var(--cream-2) 0%, var(--cream-3, #E8DCCB) 100%);
  border: 1px dashed rgba(180, 60, 100, .45);
  color: var(--gold-deep);
}
.portrait-ph svg { opacity: .55; }
.portrait-ph .ph-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-deep);
}
.portrait-ph .ph-sub {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted, #6A5E4E);
}

/* Motto line — "Relax · Renew · Rebalance" — premium serif italic accent */
.motto, .logo-text small.motto, .footer-motto {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: none;
  color: var(--ink-soft);
  margin-top: 4px;
  display: inline-block;
}
.footer-motto {
  display: block; margin-top: 10px;
  color: var(--gold-soft);
  font-size: .95rem;
  letter-spacing: .25em;
}

/* Nav typography — darker, slightly heavier for legibility */
.nav-links a {
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--ink);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--gold-deep); }
.nav-cta {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: .02em;
  font-size: 1.02rem;
}

/* Gold shimmer — subtle, applied only to hero italic emphasis */
@keyframes botShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.hero h1 em,
.page-hero h1 em,
.cta-banner h2 em,
.section-head h2 em {
  font-style: italic;
  background: linear-gradient(100deg,
    var(--gold-deep) 0%,
    var(--gold) 30%,
    #F5C9B5 50%,
    var(--gold) 70%,
    var(--gold-deep) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: botShimmer 7s linear infinite;
  /* Italic descenders/ascenders extend past inline box; pad to prevent clip */
  padding: 0 .12em 0 .04em;
  margin: 0 -.04em;
}

/* Book Now CTA — pulse halo for soft attention */
@keyframes botCtaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,160,136,.45), 0 8px 22px -6px rgba(176,122,92,.4); }
  50%      { box-shadow: 0 0 0 10px rgba(212,160,136,0),  0 8px 22px -6px rgba(176,122,92,.55); }
}
.nav-cta {
  animation: botCtaPulse 3.4s ease-in-out infinite;
}

/* Motto divider — section break with gold dots + words */
.motto-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: .28em;
  color: var(--gold-deep);
  text-transform: lowercase;
  padding: 40px 0;
}
.motto-divider span { white-space: nowrap; }
.motto-divider::before, .motto-divider::after,
.motto-divider .sep {
  content: ""; height: 1px; flex: 1; max-width: 80px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.motto-divider .dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
  flex: 0 0 5px;
}

/* Subtle hero ambient — slow drifting gold radial behind content */
.hero { position: relative; }
.hero::after {
  content: ""; position: absolute; inset: -10%; pointer-events: none; z-index: 0;
  background:
    radial-gradient(35% 30% at 20% 20%, rgba(247,218,201,.18) 0%, transparent 60%),
    radial-gradient(30% 25% at 80% 75%, rgba(212,160,136,.14) 0%, transparent 65%);
  animation: botHeroDrift 22s ease-in-out infinite alternate;
}
@keyframes botHeroDrift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-2%,1%,0) scale(1.05); }
}
.hero > * { position: relative; z-index: 1; }

/* Button gold hover shimmer */
.btn-gold, .btn-primary {
  position: relative; overflow: hidden;
}
.btn-gold::before, .btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg,
    transparent 30%,
    rgba(255,236,222,.45) 50%,
    transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s ease;
  pointer-events: none;
}
.btn-gold:hover::before, .btn-primary:hover::before {
  transform: translateX(100%);
}

/* Mobile nav: wreath stays multiply but smaller */
@media (max-width: 720px) {
  .logo-mark { width: 64px; height: 64px; }
  .motto-divider { font-size: .9rem; letter-spacing: .2em; gap: 12px; padding: 32px 0; }
  .motto-divider::before, .motto-divider::after,
  .motto-divider .sep { max-width: 30px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero h1 em, .page-hero h1 em, .cta-banner h2 em, .section-head h2 em,
  .nav-cta, .hero::after {
    animation: none !important;
  }
}

/* ----------------------------------------------------------
   Numerals — Cormorant's old-style figures render "1" like "I".
   Force lining figures everywhere serif numbers appear.
   ---------------------------------------------------------- */
.service-row .price,
.svc-card-img .price,
.rating-summary .big,
.booking-step .num,
.ritual-step::before,
.hero-stat-n,
.hero-meta-pill {
  font-feature-settings: "lnum" 1, "tnum" 1;
}
/* Booking step numbers + price use sans digits — cleanest, no ambiguity */
.booking-step .num { font-family: var(--sans); font-weight: 700; font-style: normal; }
.service-row .price, .svc-card-img .price { font-feature-settings: "lnum" 1; }

/* ----------------------------------------------------------
   ABOUT — brand logo lockup
   ---------------------------------------------------------- */
.brand-lockup {
  text-align: center;
  margin: 0 auto 8px;
  max-width: 360px;
}
.brand-lockup img {
  width: 100%; height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 14px 30px rgba(180, 60, 100, .12));
}
@media (max-width: 720px) {
  .brand-lockup { max-width: 260px; }
}

/* ----------------------------------------------------------
   ABOUT — themed portrait frame
   A double gold frame with corner ticks, suits the wreath brand.
   ---------------------------------------------------------- */
.split-img:has(.portrait-ph) {
  box-shadow: none;
  background: transparent;
  padding: 14px;
  position: relative;
}
.split-img:has(.portrait-ph)::before {
  content: ""; position: absolute; inset: 0;
  border: 1px solid var(--gold);
  border-radius: var(--r-lg);
  pointer-events: none;
}
.split-img:has(.portrait-ph) .portrait-ph {
  box-shadow: var(--shadow);
}
/* corner ticks */
.split-img:has(.portrait-ph)::after {
  content: ""; position: absolute;
  top: 4px; left: 4px; right: 4px; bottom: 4px;
  border-radius: calc(var(--r-lg) - 6px);
  background:
    linear-gradient(var(--gold-deep), var(--gold-deep)) top left / 22px 1px no-repeat,
    linear-gradient(var(--gold-deep), var(--gold-deep)) top left / 1px 22px no-repeat,
    linear-gradient(var(--gold-deep), var(--gold-deep)) top right / 22px 1px no-repeat,
    linear-gradient(var(--gold-deep), var(--gold-deep)) top right / 1px 22px no-repeat,
    linear-gradient(var(--gold-deep), var(--gold-deep)) bottom left / 22px 1px no-repeat,
    linear-gradient(var(--gold-deep), var(--gold-deep)) bottom left / 1px 22px no-repeat,
    linear-gradient(var(--gold-deep), var(--gold-deep)) bottom right / 22px 1px no-repeat,
    linear-gradient(var(--gold-deep), var(--gold-deep)) bottom right / 1px 22px no-repeat;
  pointer-events: none;
}
.split-img:has(.portrait-ph) .split-img-frame { display: none; }

