/* =========================================================
   Kreative Beauty — ivory, gold & black
   Matched to the pricing-poster branding: warm cream ground,
   black tier blocks, gold framing and accents. Elegant.
   ========================================================= */

:root {
  --paper: #fffdf7;        /* cards, lightest */
  --cream: #f5efe2;        /* main background, warm ivory */
  --cream-2: #efe6d4;      /* deeper beige */
  --champagne: #f1e8d6;    /* warm section background */
  --black: #1a1613;        /* headings, tier blocks, dark accents */
  --black-soft: #2a231e;
  --ink: #2e2620;          /* body text */
  --ink-soft: #6c5d4d;     /* muted text */
  --gold: #c5a35f;         /* gold accents, frames, icons */
  --gold-deep: #a9863f;
  --gold-text: #765a25;    /* gold as text — WCAG AA (>=4.5:1) on cream + warm-cream bands */
  --gold-soft: #e4cd96;
  --rose: #cf9aa1;         /* soft rose (hearts only) */
  --line: #e6dcc6;         /* warm hairline */
  --line-soft: #efe7d7;
  --line-gold: rgba(197,163,95,0.55);

  --script: "Great Vibes", cursive;
  --serif: "Cormorant Garamond", "Georgia", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 5px 16px rgba(42, 33, 24, 0.07);
  --shadow-md: 0 16px 38px rgba(42, 33, 24, 0.13);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: var(--gold-text); text-decoration: none; }
a:hover { color: var(--black); }

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--black);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.005em;
  margin: 0 0 0.5em;
}
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; }

.container { width: 92%; max-width: var(--max); margin: 0 auto; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin: 0 0 0.7em;
}

.heart { color: var(--gold-deep); }

/* Buttons ---------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9em 1.7em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .2s ease, color .2s ease, filter .2s ease;
  cursor: pointer;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  color: var(--black);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--black);
}
.btn-dark {
  background: var(--black);
  color: var(--cream);
}
.btn-dark:hover { background: var(--black-soft); color: var(--cream); }
.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--cream); }
.btn-lg { font-size: 0.95rem; padding: 1.05em 2.1em; }

/* Header ----------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(22, 18, 15, 0.94);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-gold);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.8rem 0;
}
.brand { display: flex; align-items: center; gap: 0.7rem; flex: 0 0 auto; }
.brand-mark { width: 44px; height: 44px; border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--script);
  font-size: 1.5rem;
  color: var(--gold-soft);
  line-height: 1;
}
.brand-wordmark {
  height: 1.6rem;
  width: auto;
  display: block;
  filter: brightness(1.05);
}
.brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9b78d;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px; height: 42px;
  padding: 10px 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  margin-left: auto;
  border-radius: 8px;
}
.nav-toggle:hover { background: rgba(255,255,255,0.08); }
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.nav { margin-left: auto; display: flex; gap: 1.15rem; }
.nav a {
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.nav a:hover { color: var(--gold-soft); }
.nav a:hover::after { transform: scaleX(1); }
.header-cta { flex: 0 0 auto; }

/* Hero ------------------------------------------------------- */
.hero {
  position: relative;
  text-align: center;
  background:
    radial-gradient(820px 520px at 18% 26%, var(--champagne) 0%, transparent 62%),
    var(--cream);
  padding: 4rem 0 4.5rem;
  overflow: hidden;
}

/* Homepage full-bleed photo hero --------------------------- */
.hero-full {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: left;
  padding: 4rem 0;
}
.hero-full::before, .hero-full::after { display: none; }
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: brightness(1.12) saturate(0.98) contrast(1.04);
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(140% 120% at 50% 43%,
      rgba(20,17,13,0.66) 0%,
      rgba(20,17,13,0.54) 34%,
      rgba(20,17,13,0.38) 64%,
      rgba(20,17,13,0.26) 100%),
    linear-gradient(to bottom,
      rgba(20,17,13,0.20) 0%,
      rgba(20,17,13,0.08) 40%,
      rgba(20,17,13,0.42) 100%);
}
.hero-full .hero-inner { position: relative; z-index: 2; }
.hero-full .hero-text {
  max-width: 660px;
  text-align: center;
  padding: 0;
}
.hero-full .hero-logo { width: clamp(180px, 19vw, 240px); margin: 0 auto 0.2rem; }
.hero-full .hero-permanent { padding-left: 0.42em; margin: 0.5rem 0 0.5rem; }
.hero-full .lede { margin: 0 auto 1.5rem; max-width: 54ch; font-size: 1.08rem; }
.hero-full .hero-ctas { justify-content: center; }

/* Centered editorial hero, set over the photo */
.hero-full .hero-text.hero-center {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.2rem;
}
.hero-center .hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(250, 244, 232, 0.95);
  margin: 0 0 1.1rem;
  padding-left: 0.34em;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.65);
}
.hero-center .hero-wordmark {
  margin: 0 0 0.9rem;
  line-height: 0;
}
.hero-center .hero-wordmark img {
  width: clamp(280px, 40vw, 430px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6)) drop-shadow(0 5px 26px rgba(0, 0, 0, 0.4));
}
.hero-center .hero-line {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.96);
  max-width: 40ch;
  margin: 0 auto 2rem;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.6);
}
.hero-center .hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.05rem;
}
.hero-center .hero-link {
  color: #fdfaf3;
  font-family: var(--sans);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 3px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.hero-center .hero-link:hover {
  color: var(--gold-soft);
  border-bottom-color: var(--gold-soft);
}

@media (max-width: 760px) {
  .hero-full { text-align: center; min-height: 78vh; }
  .hero-full .hero-text { max-width: 420px; margin: 0 auto; padding: 2rem 1.6rem 2.2rem; }
  .hero-full .hero-ctas { justify-content: center; }
  .hero-full .hero-text.hero-center { max-width: 100%; padding: 0 0.4rem; }
  .hero-center .hero-wordmark img { width: clamp(240px, 72vw, 340px); }
  .hero-center .hero-line { font-size: 1.18rem; }
  .hero-veil {
    background:
      radial-gradient(150% 80% at 50% 45%,
        rgba(18,14,11,0.66) 0%,
        rgba(18,14,11,0.56) 45%,
        rgba(18,14,11,0.5) 100%),
      linear-gradient(to bottom,
        rgba(18,14,11,0.3) 0%,
        rgba(18,14,11,0.2) 40%,
        rgba(18,14,11,0.55) 100%);
  }
}

/* Homepage collage / mosaic hero --------------------------- */
.hero-mosaic {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 4rem 0;
}
.hero-mosaic::before, .hero-mosaic::after { display: none; }
.hero-collage {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.hero-collage img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 78% at 50% 50%,
      rgba(247,240,228,0.90) 0%,
      rgba(245,239,226,0.62) 48%,
      rgba(238,230,212,0.30) 100%);
}
.hero-mosaic .hero-inner { position: relative; z-index: 2; max-width: 640px; }
.hero-mosaic .hero-logo { width: clamp(220px, 26vw, 320px); margin: 0 auto 0.3rem; }
.hero-mosaic .hero-permanent { margin: 0.7rem 0 0.5rem; }
.hero-mosaic .lede { margin: 0 auto 1.8rem; max-width: 44ch; }
.hero-mosaic .hero-ctas { justify-content: center; }
@media (max-width: 760px) {
  .hero-collage { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 1fr); }
  .hero-scrim {
    background:
      radial-gradient(ellipse 90% 60% at 50% 50%,
        rgba(247,240,228,0.92) 0%,
        rgba(245,239,226,0.72) 55%,
        rgba(238,230,212,0.42) 100%);
  }
}

/* Homepage split hero -------------------------------------- */
.hero-split { text-align: left; }
.hero-split::before, .hero-split::after { display: none; }
.hero-split .hero-inner {
  max-width: var(--max);
  display: grid;
  grid-template-columns: 1.05fr 0.9fr;
  gap: 3.4rem;
  align-items: center;
}
.hero-split .hero-logo { width: clamp(210px, 22vw, 300px); margin: 0 0 0.2rem; }
.hero-split .hero-permanent { padding-left: 0; margin: 0.7rem 0 0.5rem; }
.hero-split .lede { margin: 0 0 1.8rem; max-width: 46ch; }
.hero-split .hero-ctas { justify-content: flex-start; }
.hero-figure img {
  width: 100%;
  height: clamp(380px, 46vh, 480px);
  object-fit: cover;
  object-position: center 35%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-md);
}
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 30s infinite;
  will-change: opacity;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }
.hero-slide:nth-child(4) { animation-delay: 15s; }
.hero-slide:nth-child(5) { animation-delay: 20s; }
.hero-slide:nth-child(6) { animation-delay: 25s; }
.hero-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(135% 125% at 50% 44%, rgba(247,240,228,0.82) 0%, rgba(245,239,226,0.64) 55%, rgba(231,221,199,0.76) 100%);
}
@keyframes heroFade {
  0%   { opacity: 0; }
  3%   { opacity: 1; }
  14%  { opacity: 1; }
  18%  { opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; }
  .hero-slide:first-child { opacity: 1; }
}
/* gold double frame (poster motif) */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid var(--line-gold);
  pointer-events: none;
  z-index: 1;
}
.hero::before { inset: clamp(12px, 1.8vw, 22px); }
.hero::after  { inset: clamp(17px, 2.4vw, 29px); opacity: 0.6; }
.hero-inner { position: relative; z-index: 2; max-width: 760px; }
.hero-logo {
  width: clamp(240px, 42vw, 360px);
  height: auto;
  margin: 0 auto 0.4rem;
}
.hero-permanent {
  font-family: var(--sans);
  font-size: clamp(0.95rem, 2.4vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--black);
  margin: 0.8rem 0 0.5rem;
  padding-left: 0.42em;
}
.hero-tag {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 1.6rem;
}
.lede {
  font-size: 1.16rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 auto 1.8rem;
}
.hero-ctas {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}
.breadcrumb {
  margin: 0 0 1rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--gold-text); }
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  color: var(--black);
  margin: 0.1rem 0 0.2rem;
}
.chain { display: none; }

/* Sections --------------------------------------------------- */
.section { padding: 5rem 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; }

/* The Studio ------------------------------------------------- */
.section-studio { background: var(--champagne); }
.studio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.studio-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.studio-grid img { width: 100%; height: 320px; object-fit: cover; display: block; }

/* About / Meet Shannon --------------------------------------- */
.section-about { background: var(--paper); }
.section-results { background: var(--paper); }
.results-gallery {
  columns: 3 290px;
  column-gap: 1.1rem;
  max-width: 1000px;
  margin: 2.2rem auto 0;
}
.results-gallery figure {
  break-inside: avoid;
  margin: 0 0 1.1rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.results-gallery img { width: 100%; height: auto; display: block; }
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.2rem;
  align-items: center;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-md);
}
.about-copy .btn { margin-top: 0.6rem; }

/* How it works ----------------------------------------------- */
.section-how { background: var(--paper); }
.section-pieces { background: var(--champagne); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.step {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.6rem;
  text-align: center;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.step-icon { display: block; color: var(--gold-text); margin-bottom: 0.55rem; line-height: 1; }
.step-icon svg { width: 30px; height: 30px; }
.step h3 { font-size: 1.2rem; margin-bottom: 0.4em; }
.step p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }

/* Collections & pricing -------------------------------------- */
.section-collections { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.collections-banner {
  margin: 0 auto 2.2rem;
  max-width: 760px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.collections-banner img { width: 100%; height: auto; display: block; }
.collections-banner figcaption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding: 0.6rem 1rem;
  background: var(--paper);
}
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.tier {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.tier:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tier-head {
  background: var(--black);
  color: var(--cream);
  text-align: center;
  padding: 1.3rem 1rem 1.1rem;
  border-bottom: 2px solid var(--gold);
}
.tier-name {
  display: block;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.tier-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 0.15rem;
}
.tier-table { width: 100%; border-collapse: collapse; }
.tier-table th {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: left;
  padding: 0.9rem 1.4rem 0.7rem;
  border-bottom: 1px solid var(--line);
}
.tier-table th:last-child { text-align: right; }
.tier-table td {
  padding: 0.85rem 1.4rem;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
}
.tier-table tr:last-child td { border-bottom: 0; }
.tier-table tbody tr:nth-child(even) { background: var(--cream); }
.sz {
  display: block;
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--black);
  line-height: 1.1;
}
.rng { display: block; font-size: 0.78rem; color: var(--ink-soft); }
.price {
  text-align: right;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-text);
  white-space: nowrap;
}

/* Pricing guide ---------------------------------------------- */
.guide {
  margin-top: 2.6rem;
  background: var(--paper);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.guide-title {
  text-align: center;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--black);
  margin: 0 0 1.6rem;
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.guide-item { text-align: center; }
.guide-icon,
.discount-icon,
.sparkle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold-text);
  background: var(--cream);
  margin-bottom: 0.9rem;
}
.guide-icon svg,
.discount-icon svg,
.sparkle-icon svg { width: 34px; height: 34px; }
.guide-item h3 { font-size: 1.15rem; margin-bottom: 0.3em; }
.guide-item p { color: var(--ink-soft); font-size: 0.94rem; margin: 0; }

/* Parties / discount ----------------------------------------- */
.section-parties { background: var(--black); }
.section-parties .eyebrow { color: var(--gold-soft); }
.section-parties h2 { color: var(--cream); }
.section-parties .section-sub { color: #d9cdb6; }
.discount-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.6rem;
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto;
}
.discount-lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--black-soft);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.discount-lead .discount-icon { background: transparent; color: var(--gold-soft); border-color: var(--gold-soft); }
.discount-lead-text {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--cream);
  line-height: 1.3;
}
.discount-lead-text strong { color: var(--gold-soft); font-size: 1.5rem; }
.discount-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.disc-card {
  background: var(--black-soft);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  padding: 1.8rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}
.disc-pct {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-soft);
  line-height: 1;
}
.disc-tier {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d9cdb6;
}
.parties-note { text-align: center; margin: 2rem 0 0; color: #d9cdb6; }
.parties-note a { color: var(--gold-soft); font-weight: 600; }
.parties-note a:hover { color: var(--cream); }

/* Sparkle / extras ------------------------------------------- */
.section-extras { background: var(--champagne); }
.extras-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.6rem;
  align-items: stretch;
}
.sparkle-card,
.extras-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
}
.sparkle-card { text-align: center; }
.sparkle-card h3,
.extras-card h3 { font-size: 1.45rem; }
.sparkle-card p { color: var(--ink-soft); }
.sparkle-card strong { color: var(--gold-text); }
.fineprint { font-size: 0.85rem; color: var(--ink-soft); margin: 0.4rem 0 0; }
.extras-list { list-style: none; padding: 0; margin: 0.4rem 0 0; display: grid; gap: 1.1rem; }
.extras-list li { display: flex; gap: 0.9rem; align-items: flex-start; color: var(--ink-soft); }
.extras-list strong { color: var(--black); }
.x-ico { flex: 0 0 auto; color: var(--gold-deep); font-size: 1.2rem; line-height: 1.4; }

/* Beauty services — editorial feature blocks ----------------- */
.section-services { background: var(--cream); }
.svc-features { display: grid; gap: 4rem; }
.svc-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.4rem;
  align-items: center;
}
.svc-feature.reverse .svc-feature-img { order: 2; }
.svc-feature-img img.svc-tall { height: 520px; }
.svc-feature-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-md);
}
.svc-feature-body h3 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 0.35em;
}
.svc-feature-desc { color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 1.3rem; }
.svc-feature-body .svc-list { max-width: 460px; margin-bottom: 1.6rem; }
.svc-feature-body .svc-list li {
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line-soft);
}
.svc-feature-body .svc-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.svc-feature-cta { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.svc-feature-link { font-weight: 600; color: var(--gold-text); font-size: 0.95rem; }
.svc-feature-link:hover { color: var(--black); }
.svc-feature-note { color: var(--ink-soft); font-size: 0.9rem; }
.svc-party-callout {
  margin: 0 0 1.25rem;
  padding: 0.7rem 0.95rem;
  background: var(--champagne);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink);
}
.svc-party-callout strong { color: var(--gold-text); }
.svc-party-callout a { font-weight: 600; white-space: nowrap; }

/* legacy menu cards (used on detail pages) -------------------- */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  align-items: start;
}
.svc-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.svc-photo {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.svc-body { padding: 1.6rem 1.6rem 1.8rem; }
.svc-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
}
.svc-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.svc-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
}
.svc-name { color: var(--ink); font-size: 0.97rem; }
.svc-price {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-text);
  white-space: nowrap;
}
.svc-foot { margin: 1rem 0 0; font-size: 0.88rem; color: var(--ink-soft); }
.svc-card-plain { background: var(--paper); }
.svc-card-feature {
  background: var(--black);
  border-color: var(--black);
  border-top-color: var(--gold);
}
.svc-card-feature h3 { color: var(--cream); border-bottom-color: var(--line-gold); }
.svc-feature-copy { color: var(--ink); font-size: 0.97rem; margin-bottom: 1.2rem; }
.svc-card-feature .btn-outline { color: var(--gold-soft); border-color: var(--gold-soft); }
.svc-card-feature .btn-outline:hover { background: var(--gold-soft); color: var(--black); }
.services-note { text-align: center; margin: 2.4rem 0 0; color: var(--ink-soft); }
.services-note a { font-weight: 600; color: var(--gold-text); }

/* Detail-page helpers ---------------------------------------- */
.svc-cards-3 { grid-template-columns: repeat(3, 1fr); }
.svc-cards-2 { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin: 0 auto; }
.svc-plain { color: var(--ink-soft); font-size: 0.98rem; margin: 0; line-height: 1.6; }
.hero-slide-static { opacity: 1; animation: none; }
.price-wrap { max-width: 540px; margin: 0 auto; }
.price-wrap-2col {
  max-width: 940px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: center;
}
.price-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-md);
}
.price-photo img { width: 100%; height: auto; display: block; }
@media (max-width: 760px) {
  .price-wrap-2col { grid-template-columns: 1fr; max-width: 440px; gap: 1.6rem; }
}

/* FAQ accordion */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 0.7rem; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 1.4rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 1.5rem;
  line-height: 1;
  flex: 0 0 auto;
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-a { padding: 0 1.4rem 1.2rem; margin: 0; color: var(--ink-soft); }

/* Gallery ---------------------------------------------------- */
.section-follow { background: var(--paper); }
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.6rem;
}
.gallery figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.gallery img { width: 100%; height: 210px; object-fit: cover; display: block; transition: transform .4s ease; }
.gallery figure:hover img { transform: scale(1.05); }
.follow-cta { text-align: center; margin-top: 1.6rem; }
.gallery figure { cursor: zoom-in; }

/* Gallery pager */
.gallery-pager {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.9rem;
  flex-wrap: wrap;
}
.pager-btn {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  min-width: 42px;
  height: 42px;
  padding: 0 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--line-gold);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.pager-btn:hover { border-color: var(--gold); color: var(--gold-text); }
.pager-btn.is-active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 16, 13, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lb-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.lb-close {
  position: absolute;
  top: 0.8rem;
  right: 1.2rem;
  background: none;
  border: 0;
  color: var(--cream);
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
}
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-prev { left: 1.2rem; }
.lb-next { right: 1.2rem; }
.lb-nav:hover, .lb-close:hover { color: var(--gold-soft); }
@media (max-width: 560px) {
  .lb-nav { width: 44px; height: 44px; font-size: 1.6rem; }
}

/* Reviews / social proof ------------------------------------- */
.section-reviews {
  background:
    radial-gradient(700px 360px at 50% 10%, rgba(110,81,66,0.28) 0%, transparent 62%),
    var(--black);
  text-align: center;
}
.reviews-badge { max-width: 640px; margin: 0 auto; }
.section-reviews .eyebrow { color: var(--gold-soft); }
.reviews-badge .stars {
  color: var(--gold);
  font-size: 2rem;
  letter-spacing: 0.18em;
  margin: 0.2rem 0 0.4rem;
}
.rating-num {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 8vw, 4.6rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
  margin: 0;
}
.rating-sub {
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #d9cdb6;
  margin: 0.6rem 0 0;
}
.rating-sub strong { color: var(--gold-soft); }
.reviews-line {
  color: #c9b78d;
  font-size: 1.02rem;
  max-width: 46ch;
  margin: 1.1rem auto 0.4rem;
}
.review-cards {
  columns: 3 290px;
  column-gap: 1.2rem;
  max-width: 1060px;
  margin: 2.2rem auto 0;
  text-align: left;
}
.review-card {
  break-inside: avoid;
  margin: 0 0 1.2rem;
  background: rgba(255, 253, 248, 0.05);
  border: 1px solid rgba(197, 163, 95, 0.30);
  border-radius: 14px;
  padding: 1.4rem 1.4rem 1.25rem;
}
.review-card .rc-stars {
  color: var(--gold);
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
}
.review-card blockquote {
  margin: 0 0 0.95rem;
  color: #ece3d2;
  font-size: 0.97rem;
  line-height: 1.6;
}
.review-card figcaption { display: flex; flex-direction: column; gap: 0.1rem; }
.review-card .rc-name { color: var(--cream); font-weight: 600; font-size: 0.92rem; }
.review-card .rc-src {
  color: #b9a888;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.reviews-cta { margin-top: 1.9rem; }

/* Hours ------------------------------------------------------ */
.section-hours { background: var(--cream); }
.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  max-width: 880px;
  margin: 0 auto;
}
.day {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.day h3 { font-size: 1.1rem; color: var(--black); margin: 0; }
.day .time { font-size: 0.9rem; color: var(--gold-text); font-weight: 600; text-align: right; }
.day-closed { background: var(--cream-2); }
.day-closed .time { color: var(--ink-soft); }
.hours-foot { text-align: center; margin-top: 2rem; color: var(--ink-soft); }

/* Booking ---------------------------------------------------- */
.section-book {
  background:
    radial-gradient(700px 360px at 50% 0%, rgba(110,81,66,0.30) 0%, transparent 62%),
    var(--black);
}
.section-book .eyebrow { color: var(--gold-soft); }
.section-book h2 { color: var(--cream); }
.section-book .book-copy p { color: #d9cdb6; }
.book-inner { display: grid; grid-template-columns: 1fr; }
.book-copy { max-width: 620px; }
.book-copy h2 { max-width: 16ch; }
.book-note { margin-top: 1.4rem; font-size: 0.95rem; color: #c9b78d; }
.book-note a { font-weight: 600; color: var(--gold-soft); }

/* Visit ------------------------------------------------------ */
.section-visit { background: var(--champagne); }
.visit-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: center; }
.visit-line { margin-bottom: 1.2rem; color: var(--ink); line-height: 1.55; }
.visit-line strong { color: var(--black); font-weight: 600; }
.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  background: var(--cream-2);
  border: 1px solid var(--line);
}
.map-card iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Footer ----------------------------------------------------- */
.site-footer { background: var(--black); color: #d9cdb6; padding: 2.4rem 0; border-top: 2px solid var(--gold); }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold-soft);
  font-family: var(--script);
  font-size: 1.5rem;
}
.footer-brand img { width: 34px; height: 34px; border-radius: 50%; }
.footer-copy { margin: 0; font-size: 0.88rem; }
.footer-links { margin: 0; font-size: 0.88rem; }
.footer-links a { color: var(--gold-soft); }
.footer-links a:hover { color: var(--cream); }

/* Responsive ------------------------------------------------- */
@media (max-width: 1200px) {
  .header-inner { position: relative; flex-wrap: wrap; }
  .nav-toggle { display: flex; }
  .nav {
    display: none;
    flex-direction: column;
    gap: 0;
    margin-left: 0;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(22,18,15,0.98);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    padding: 0.6rem 5% 1rem;
    border-top: 1px solid var(--line-gold);
    box-shadow: 0 14px 28px rgba(0,0,0,0.35);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.85rem 0; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.10); }
  .nav a:last-child { border-bottom: 0; }
  .nav a::after { display: none; }
  .header-cta { margin-left: 0.6rem; }
}

@media (max-width: 960px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .svc-cards { grid-template-columns: repeat(2, 1fr); }
  .svc-features { gap: 2.6rem; }
  .svc-feature { grid-template-columns: 1fr; gap: 1.6rem; }
  .svc-feature.reverse .svc-feature-img { order: 0; }
  .svc-feature-img img { height: 230px; }
  .svc-feature-img img.svc-tall { height: 360px; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .studio-grid { grid-template-columns: repeat(2, 1fr); }
  .studio-grid img { height: 260px; }
  .tiers { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .guide-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .discount-row { grid-template-columns: 1fr; }
  .about-grid,
  .extras-grid,
  .book-inner,
  .visit-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .about-photo { max-width: 420px; margin: 0 auto; }
  .hero-split { text-align: center; }
  .hero-split .hero-inner { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero-split .hero-logo { margin: 0 auto 0.2rem; }
  .hero-split .hero-permanent { padding-left: 0.42em; }
  .hero-split .lede { margin: 0 auto 1.8rem; }
  .hero-split .hero-ctas { justify-content: center; }
  .hero-figure { max-width: 440px; margin: 0 auto; }
  .hours-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 4rem 0; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .header-cta { padding: 0.6em 1.1em; font-size: 0.72rem; }
  .brand-tag { display: none; }
  .steps { grid-template-columns: 1fr; }
  .svc-cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .studio-grid img { height: 210px; }
  .discount-cards { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
  .hero-permanent { letter-spacing: 0.3em; }
}

/* Accessibility — skip link + global keyboard focus ----------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -120px;
  z-index: 2000;
  background: var(--black);
  color: #fff;
  padding: 0.7em 1.2em;
  border-radius: 8px;
  font-family: var(--sans);
  font-weight: 600;
  text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }
/* Visible focus ring for keyboard users on every interactive element */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--gold-deep);
  outline-offset: 2px;
  border-radius: 4px;
}
main:focus { outline: none; } /* skip-link target shouldn't show a ring */
