/* Beauty on Taylors — refined warm beige, gold, nude palette */

:root {
  /* Surfaces */
  --cream:        #FAF6F1;
  --cream-2:      #F4ECDF;
  --cream-3:      #EFE3D0;
  --paper:        #FFFFFF;
  --paper-warm:   #FCF8F2;

  /* Ink / type */
  --ink:          #2B2018;
  --ink-soft:     #5A4D44;
  --muted:        #8A7F74;
  --whisper:      #B8AC9F;

  /* Accents */
  --gold:         #C9A875;
  --gold-deep:    #A8864E;
  --gold-soft:    #E2C99A;
  --champagne:    #D9C29B;
  --nude:         #E8D5C4;
  --blush:        #F0DCCD;
  --blush-deep:   #D9B7A0;
  --rose:         #C99A8C;
  --sage:         #9CA88E;

  /* Lines */
  --line:         #EADBC4;
  --line-soft:    #F1E5D3;

  /* Shadows */
  --shadow-xs:    0 2px 8px rgba(75, 50, 30, 0.06);
  --shadow:       0 8px 32px rgba(75, 50, 30, 0.08);
  --shadow-lg:    0 24px 60px rgba(75, 50, 30, 0.14);
  --shadow-xl:    0 40px 100px rgba(75, 50, 30, 0.18);

  /* 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;

  /* 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: rgba(250, 246, 241, 0.85);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
.topbar.is-scrolled {
  background: rgba(250, 246, 241, 0.96);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-xs);
}
.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(168, 134, 78, .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: var(--ink); 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 12px rgba(43, 32, 24, .15);
}
.nav-cta:hover {
  background: var(--gold-deep); color: var(--paper) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(168, 134, 78, .35);
}

.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(43, 32, 24, .15);
}
.btn-primary:hover {
  background: var(--gold-deep); color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(168, 134, 78, .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(168, 134, 78, .3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(168, 134, 78, .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: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600; margin-bottom: 22px;
  font-family: var(--sans);
}
.eyebrow .dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 117, .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(217, 194, 155, .35) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 90%, rgba(232, 213, 196, .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(201, 168, 117, .07) 0%, transparent 8%),
                    radial-gradient(circle at 75% 75%, rgba(201, 168, 117, .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(--serif); font-size: 2.2rem; color: var(--ink);
  font-weight: 400; line-height: 1; margin-bottom: 6px;
}
.hero-stat-n small { color: var(--gold-deep); font-family: var(--serif); font-style: italic; }
.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(43, 32, 24, .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(43, 32, 24, 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%, #221912 100%);
  color: var(--cream);
}
.section-ink h2, .section-ink h3 { color: var(--cream); }
.section-ink p { color: rgba(250, 246, 241, .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(168, 134, 78, .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(43, 32, 24, .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(20, 14, 8, .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%, #3d2c1f 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(201, 168, 117, .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(232, 213, 196, .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(250, 246, 241, .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: 32px 0; border-bottom: 1px solid var(--line);
  align-items: start;
  transition: padding var(--t-base);
}
.service-row:hover { padding-left: 12px; }
.service-row:last-child { border-bottom: none; }
.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;
}

/* ==========================================================
   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(201, 168, 117, .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(201, 168, 117, .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 70% 100%, rgba(232, 213, 196, .35) 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: 200px; height: 200px;
  border-radius: 50%; opacity: .5; pointer-events: none;
  background: radial-gradient(circle, var(--gold-soft), transparent 70%);
}
.page-hero::before { top: -60px; left: 10%; }
.page-hero::after { bottom: -80px; right: 10%; 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%, #1d1410 100%);
  color: rgba(250, 246, 241, .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(250, 246, 241, .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(250, 246, 241, .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(250, 246, 241, .08);
  display: grid; place-items: center; padding: 0;
  border: 1px solid rgba(250, 246, 241, .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(250, 246, 241, .08);
  margin-top: 56px; padding-top: 28px; font-size: .82rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  color: rgba(250, 246, 241, .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; }
}
