/* ──────────────────────────────────────────────────────────────
   THE CAPULET SUITE — design system
   aesthetic: editorial vintage romance · pearl & rose gold ·
   serif-led · scripture-graceful · houston heights, mmxxvi
   ────────────────────────────────────────────────────────────── */

:root {
  /* palette */
  --pearl:      #faf5ef;
  --cream:      #f3eadd;
  --linen:      #ece1d3;
  --blush:      #efd9d2;
  --pink:       #f4c8c0;
  --pink-bloom: #ecb4ad;
  --pink-warm:  #e8a39c;
  --rose:       #d4a5a0;
  --rose-deep:  #b07a6f;
  --burgundy:   #4a1d28;
  --sage:       #889b81;
  --gold:       #b8893f;
  --gold-soft:  #d6bf95;
  --ink:        #1c1410;
  --ink-soft:   #5a4a42;

  /* type */
  --display: 'Italiana', 'Cormorant Garamond', serif;
  --script:  'Pinyon Script', 'Italiana', cursive;
  --serif:   'Cormorant Garamond', 'Times New Roman', serif;
  --caps:    'Cormorant SC', 'Cormorant Garamond', serif;

  /* rhythm */
  --max:    1240px;
  --pad:    clamp(1.25rem, 4vw, 3rem);
  --gap-xl: clamp(5rem, 12vw, 9rem);
  --radius: 2px;

  /* motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--pearl);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* paper-grain texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.6  0 0 0 0 0.5  0 0 0 0 0.4  0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

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

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

::selection { background: var(--rose); color: var(--pearl); }

/* ──────────────────────────────────────────────────────────────
   NAV
   ────────────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--pad);
  background: transparent;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(250, 245, 239, 0.85);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  border-bottom: 1px solid var(--blush);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
  letter-spacing: 0.02em;
  line-height: 1;
}

.wordmark-the {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--burgundy);
  letter-spacing: 0.05em;
}

.wordmark-capulet {
  font-family: var(--script);
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.wordmark-suite {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--burgundy);
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
  font-family: var(--caps);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--ink-soft);
  transition: color 0.25s var(--ease);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  color: var(--burgundy) !important;
  border: 1px solid var(--burgundy);
  padding: 0.55rem 1.1rem !important;
  border-radius: var(--radius);
  letter-spacing: 0.22em;
}

.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--burgundy); color: var(--pearl) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
  width: 100%;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* ──────────────────────────────────────────────────────────────
   HERO
   ────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(8rem, 14vh, 10rem) var(--pad) 4rem;
  overflow: hidden;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 28% 22%, rgba(244, 200, 192, 0.78) 0%, transparent 55%),
    radial-gradient(ellipse at 72% 78%, rgba(232, 163, 156, 0.55) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 105%, rgba(212, 165, 160, 0.55) 0%, transparent 58%),
    radial-gradient(ellipse at 50% 50%, var(--blush) 0%, var(--cream) 70%, var(--pearl) 100%);
}

.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(1100px, 95vw);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(244, 200, 192, 0.55) 0%, rgba(232, 163, 156, 0.25) 35%, transparent 70%);
  filter: blur(50px);
  animation: hero-pulse 9s ease-in-out infinite;
}

@keyframes hero-pulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1.0; transform: translate(-50%, -50%) scale(1.08); }
}

.hero-meta {
  font-family: var(--caps);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  opacity: 0;
  animation: fade-up 1.2s var(--ease) 0.2s forwards;
}

.hero-meta-bottom {
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  animation-delay: 1.6s;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--burgundy);
  display: inline-block;
}

.hero-opening {
  font-family: var(--caps);
  letter-spacing: 0.32em;
}

.hero-date {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--ink);
}

.hero-title {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 2rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--ink);
}

.hero-line-the {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  letter-spacing: 0.06em;
  color: var(--burgundy);
  text-transform: lowercase;
  opacity: 0;
  animation: fade-up 1.4s var(--ease) 0.5s forwards;
}

.hero-capulet {
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(5.5rem, 18vw, 16rem);
  line-height: 0.85;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin-top: -0.15em;
  opacity: 0;
  animation: fade-up 1.4s var(--ease) 0.7s forwards;
}

.hero-line-suite {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 4rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 0.25em;
  opacity: 0;
  animation: fade-up 1.4s var(--ease) 0.9s forwards;
}

.hero-divider {
  color: var(--gold);
  margin: 0.4rem 0 0.2rem;
  opacity: 0;
  animation: fade-up 1.4s var(--ease) 0.8s forwards;
}

.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.3;
  color: var(--ink);
  margin: 2rem 0 1rem;
  opacity: 0;
  animation: fade-up 1.4s var(--ease) 1.2s forwards;
}

.hero-subline {
  max-width: 38ch;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--ink-soft);
  opacity: 0;
  animation: fade-up 1.4s var(--ease) 1.4s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fade-up 1.4s var(--ease) 1.5s forwards;
}

.hero-swan {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  opacity: 0.55;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, -8px); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ──────────────────────────────────────────────────────────────
   BUTTONS
   ────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--caps);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  border: 1px solid;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--pearl);
  border-color: var(--ink);
}

.btn-primary:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  letter-spacing: 0.32em;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-soft);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--pearl);
  border-color: var(--ink);
}

.btn-large {
  padding: 1.4rem 3.5rem;
  font-size: 0.85rem;
}

/* ──────────────────────────────────────────────────────────────
   SECTIONS · SHARED
   ────────────────────────────────────────────────────────────── */

.section {
  position: relative;
  padding: var(--gap-xl) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  z-index: 2;
}

.section-marker {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.4em;
  color: var(--burgundy);
  margin-bottom: 1.5rem;
  text-transform: lowercase;
}

.eyebrow {
  font-family: var(--caps);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.75rem, 6.5vw, 5rem);
  line-height: 1.0;
  letter-spacing: 0.01em;
  margin-bottom: 2.5rem;
  color: var(--ink);
}

.section-title em {
  font-family: var(--script);
  font-style: normal;
  font-weight: 400;
  font-size: 1.15em;
  color: var(--burgundy);
  letter-spacing: 0;
}

.section-divider {
  display: flex;
  justify-content: center;
  margin-top: var(--gap-xl);
  color: var(--gold);
  opacity: 0.85;
}

/* ──────────────────────────────────────────────────────────────
   .I — WELCOME
   ────────────────────────────────────────────────────────────── */

.section-welcome {
  text-align: center;
  max-width: 880px;
}

.welcome-body {
  max-width: 60ch;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.welcome-body p + p {
  margin-top: 1.5rem;
}

.scripture {
  margin: 4rem auto 0;
  padding: 2rem 1rem;
  max-width: 520px;
  position: relative;
}

.scripture::before,
.scripture::after { display: none; }

.scripture blockquote {
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.4;
  color: var(--burgundy);
}

.scripture figcaption {
  margin-top: 0.75rem;
  font-family: var(--caps);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
}

/* ──────────────────────────────────────────────────────────────
   .II — MEET
   ────────────────────────────────────────────────────────────── */

.section-meet {
  max-width: 1100px;
}

.meet-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.meet-image {
  position: sticky;
  top: 7rem;
}

.meet-image-frame {
  position: relative;
  aspect-ratio: 3/4;
  background:
    linear-gradient(135deg, rgba(239, 217, 210, 0.6), rgba(212, 165, 160, 0.4)),
    linear-gradient(45deg, var(--linen), var(--blush));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-deep);
  border: 0.5px solid var(--gold-soft);
  padding: 24px;
}

.meet-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--caps);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0.7;
}

.meet-image-credit {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: none;
  opacity: 0.7;
}

.meet-image-corner {
  position: absolute;
  color: var(--gold);
  opacity: 0.7;
}

.meet-image-corner-tl { top: 8px; left: 8px; }
.meet-image-corner-br { bottom: 8px; right: 8px; }

.meet-text {
  padding-top: 0.5rem;
}

.meet-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 2rem;
  max-width: 38ch;
}

.meet-text p {
  margin-bottom: 1.5rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.meet-text p em {
  font-style: italic;
  color: var(--ink);
}

.meet-signature {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 0.5px solid var(--blush);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.meet-signature-quote {
  font-family: var(--script);
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 1;
  font-style: normal;
  letter-spacing: 0.005em;
  color: var(--burgundy);
}

.meet-signature-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

/* ──────────────────────────────────────────────────────────────
   .III — SERVICES
   ────────────────────────────────────────────────────────────── */

.section-services {
  text-align: center;
  max-width: var(--max);
}

.services-intro {
  max-width: 56ch;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--ink-soft);
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
  text-align: left;
  align-items: stretch;
}

.tier {
  position: relative;
  padding: 1.85rem 1.5rem 1.6rem;
  background: linear-gradient(180deg, var(--pearl) 0%, #fef6f3 100%);
  border: 0.5px solid var(--gold-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.tier::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 0.5px solid var(--blush);
  pointer-events: none;
  opacity: 0.7;
}

.tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -28px rgba(176, 122, 111, 0.45);
  border-color: var(--rose-deep);
}

.tier-featured {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(244, 200, 192, 0.6) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream), #fef0eb);
  border-color: var(--rose-deep);
  transform: translateY(-8px);
  box-shadow: 0 0 0 4px rgba(244, 200, 192, 0.35), 0 30px 60px -30px rgba(176, 122, 111, 0.45);
}

.tier-featured::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 0.5px solid var(--pink-bloom);
  pointer-events: none;
  opacity: 0.6;
  z-index: -1;
}

.tier-featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 0 6px rgba(244, 200, 192, 0.5), 0 36px 70px -28px rgba(176, 122, 111, 0.55);
}

.tier-banner {
  position: absolute;
  top: -1px; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--burgundy);
  color: var(--pearl);
  font-family: var(--caps);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border: 0.5px solid var(--pink-bloom);
  box-shadow: 0 4px 12px -4px rgba(176, 122, 111, 0.5);
}

.tier-head {
  text-align: center;
  margin-bottom: 1.1rem;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid var(--pink);
  position: relative;
  z-index: 1;
}

.tier-roman {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: var(--rose-deep);
  margin-bottom: 0.4rem;
  text-transform: lowercase;
}

.tier-name {
  font-family: var(--display);
  font-size: 1.95rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.tier-tag {
  font-family: var(--script);
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--burgundy);
}

.tier-price {
  text-align: center;
  margin-bottom: 0.2rem;
  position: relative;
  z-index: 1;
}

.tier-price-amount {
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--ink);
}

.tier-price-unit {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
}

.tier-price-aside {
  text-align: center;
  font-family: var(--caps);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
}

.tier-list-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--burgundy);
  margin-bottom: 0.4rem;
  text-align: center;
}

.tier-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.tier-list li {
  padding: 0.42rem 0 0.42rem 1.4rem;
  border-bottom: 0.5px solid rgba(244, 200, 192, 0.55);
  font-size: 0.92rem;
  color: var(--ink);
  text-align: left;
  font-family: var(--serif);
  position: relative;
  line-height: 1.4;
}

.tier-list li::before {
  content: "✦";
  position: absolute;
  left: 0.2rem;
  top: 0.45rem;
  color: var(--pink-warm);
  font-size: 0.65rem;
  line-height: 1;
}

.tier-featured .tier-list li::before {
  color: var(--rose-deep);
}

.tier-list li:last-child { border-bottom: none; }

.tier-duration {
  text-align: center;
  font-family: var(--caps);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--burgundy);
  padding-top: 0.7rem;
  border-top: 0.5px solid var(--pink);
  margin-top: auto;
  font-weight: 500;
}

.tier-cta {
  display: block;
  margin-top: 0.85rem;
  padding: 0.7rem 0.5rem;
  text-align: center;
  font-family: var(--caps);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: rgba(244, 200, 192, 0.4);
  border: 0.5px solid var(--pink-bloom);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  position: relative;
  z-index: 2;
}

.tier-cta:hover {
  background: var(--burgundy);
  color: var(--pearl);
  border-color: var(--burgundy);
  letter-spacing: 0.32em;
}

.tier-featured .tier-cta {
  background: var(--burgundy);
  color: var(--pearl);
  border-color: var(--burgundy);
}

.tier-featured .tier-cta:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.addons,
.coming-soon {
  margin-top: 4rem;
  text-align: center;
}

.addons-title,
.coming-soon-title {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.addons-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.addons-list li::after {
  content: "·";
  margin-left: 2rem;
  color: var(--gold);
}

.addons-list li:last-child::after { display: none; }

.coming-soon p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
}

.services-note {
  margin-top: 4rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

/* ──────────────────────────────────────────────────────────────
   .IV — REVIEWS
   ────────────────────────────────────────────────────────────── */

.section-reviews {
  text-align: center;
  max-width: var(--max);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: left;
  margin-bottom: 3rem;
  padding-top: 2rem;
}

.review-letter {
  position: relative;
  padding: 3.25rem 2rem 3rem;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(176, 122, 111, 0.04) 0px,
      rgba(176, 122, 111, 0.04) 1px,
      transparent 1px,
      transparent 28px
    ),
    radial-gradient(ellipse at 20% 10%, rgba(244, 200, 192, 0.25), transparent 60%),
    radial-gradient(ellipse at 90% 100%, rgba(212, 165, 160, 0.18), transparent 55%),
    linear-gradient(180deg, #fef7f1 0%, #f8e9e0 100%);
  border: 0.5px solid rgba(176, 122, 111, 0.4);
  box-shadow:
    0 1px 0 rgba(176, 122, 111, 0.1),
    0 18px 40px -24px rgba(74, 29, 40, 0.35),
    inset 0 0 60px rgba(244, 200, 192, 0.25);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.review-letter::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 0.5px dashed rgba(176, 122, 111, 0.45);
  pointer-events: none;
}

.review-letter:nth-child(1) { transform: rotate(-1.2deg); }
.review-letter:nth-child(2) { transform: rotate(0.8deg) translateY(-6px); }
.review-letter:nth-child(3) { transform: rotate(-0.5deg) translateY(4px); }

.review-letter:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow:
    0 28px 60px -24px rgba(74, 29, 40, 0.5),
    inset 0 0 60px rgba(244, 200, 192, 0.4);
}

.review-ribbon {
  position: absolute;
  top: -10px;
  left: -8px;
  right: -8px;
  height: 28px;
  filter: drop-shadow(0 4px 6px rgba(176, 122, 111, 0.3));
  pointer-events: none;
}

.review-mark {
  font-family: var(--script);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--rose-deep);
  opacity: 0.55;
  position: absolute;
  top: 2.6rem;
  left: 1.4rem;
}

.review-letter blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--burgundy);
  margin-bottom: 1.5rem;
  padding: 0.5rem 0 0 1.6rem;
  position: relative;
  z-index: 1;
}

.review-letter figcaption {
  font-family: var(--script);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--burgundy);
  padding-top: 0.5rem;
  text-align: right;
  letter-spacing: 0.005em;
}

.review-seal {
  position: absolute;
  bottom: -14px;
  right: 18px;
  filter: drop-shadow(0 4px 6px rgba(74, 29, 40, 0.4));
  transform: rotate(-8deg);
  pointer-events: none;
}

.reviews-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ink-soft);
  opacity: 0.7;
  margin-top: 1.5rem;
}

/* ──────────────────────────────────────────────────────────────
   .V — RESERVE
   ────────────────────────────────────────────────────────────── */

.section-reserve {
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, var(--cream) 100%);
  max-width: none;
  width: 100%;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.section-reserve .section-marker,
.section-reserve .eyebrow,
.section-reserve .section-title {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.reserve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 4rem;
  text-align: left;
}

.reserve-card {
  padding: 2.5rem 2rem;
  background: var(--pearl);
  border: 0.5px solid var(--gold-soft);
  position: relative;
}

.reserve-card::before {
  content: "";
  position: absolute;
  top: 1rem; left: 1rem;
  right: 1rem; bottom: 1rem;
  border: 0.5px solid var(--blush);
  pointer-events: none;
}

.reserve-card-title {
  font-family: var(--script);
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--burgundy);
  margin-bottom: 1rem;
  letter-spacing: 0.005em;
}

.reserve-card p {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
}

.reserve-card a {
  color: var(--burgundy);
  border-bottom: 0.5px solid var(--burgundy);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.reserve-card a:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.reserve-card-aside {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}

/* ──────────────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────────────── */

.footer {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(244, 200, 192, 0.55), transparent 65%),
    linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
  color: var(--burgundy);
  padding: clamp(4rem, 8vw, 6rem) var(--pad) 3rem;
  position: relative;
  z-index: 2;
  border-top: 0.5px solid var(--pink-bloom);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  width: 64%;
  max-width: 520px;
  height: 28px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 28' preserveAspectRatio='none'><path d='M0 14 L40 4 L200 4 L240 14 L200 24 L40 24 Z' fill='%23f4c8c0' stroke='%23b07a6f' stroke-width='0.6'/><circle cx='120' cy='14' r='2.4' fill='%23b07a6f'/><circle cx='120' cy='14' r='0.9' fill='%23faf5ef'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  filter: drop-shadow(0 4px 6px rgba(176, 122, 111, 0.3));
  pointer-events: none;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  line-height: 1;
}

.footer-mark > span:first-child + span,
.footer-mark > span:nth-child(3) {
  display: inline-block;
}

.footer-mark .footer-the {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--rose-deep);
  letter-spacing: 0.06em;
}

.footer-mark .footer-suite {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--burgundy);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-mark .footer-capulet {
  font-family: var(--script);
  font-weight: 400;
  font-size: 4rem;
  line-height: 0.9;
  letter-spacing: 0.005em;
  color: var(--ink);
}

.footer-mark-line {
  color: var(--rose-deep);
  margin-top: 0.5rem;
  opacity: 0.85;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--caps);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.footer-nav a {
  color: var(--ink-soft);
  opacity: 0.85;
  transition: color 0.25s var(--ease), opacity 0.25s var(--ease);
}

.footer-nav a:hover { color: var(--burgundy); opacity: 1; }

.footer-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--caps);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-deep);
  opacity: 0.95;
}

.footer-meta .dot { background: var(--rose-deep); }

.footer-fine {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ink-soft);
  opacity: 0.7;
  margin-top: 1rem;
}

/* ──────────────────────────────────────────────────────────────
   .IV — SHOP
   ────────────────────────────────────────────────────────────── */

.section-shop {
  text-align: center;
  max-width: var(--max);
}

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 0 auto 4rem;
  text-align: left;
}

.product {
  position: relative;
  padding: 2.5rem 1.75rem 2rem;
  background: var(--pearl);
  border: 0.5px solid var(--gold-soft);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -28px rgba(74, 29, 40, 0.25);
  border-color: var(--rose-deep);
}

.product-roman {
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  color: var(--burgundy);
  text-transform: lowercase;
  margin-bottom: 0.5rem;
}

.product-name {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--ink);
}

.product-tag {
  font-family: var(--script);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.product-blurb {
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
  flex-grow: 1;
}

.product-price {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 0.5px solid var(--blush);
  font-family: var(--caps);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--burgundy);
  text-align: center;
}

/* ──────────────────────────────────────────────────────────────
   .VI — BOOKINGS · VAGARO EMBED PLACEHOLDER
   ────────────────────────────────────────────────────────────── */

.section-bookings {
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, var(--cream) 100%);
  max-width: none;
  width: 100%;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.section-bookings .section-marker,
.section-bookings .eyebrow,
.section-bookings .section-title,
.section-bookings .services-intro {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-bookings .services-intro {
  margin-bottom: 3rem;
}

.vagaro-embed {
  max-width: 880px;
  margin: 0 auto 4rem;
  aspect-ratio: 4/3;
  background:
    linear-gradient(135deg, rgba(239, 217, 210, 0.45), rgba(212, 165, 160, 0.25)),
    var(--pearl);
  border: 0.5px solid var(--gold-soft);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vagaro-embed::before {
  content: "";
  position: absolute;
  top: 1rem; left: 1rem;
  right: 1rem; bottom: 1rem;
  border: 0.5px solid var(--blush);
  pointer-events: none;
}

.vagaro-embed-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--rose-deep);
  text-align: center;
}

.vagaro-embed-mark {
  font-family: var(--display);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.7;
  line-height: 1;
}

.vagaro-embed-label {
  font-family: var(--caps);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.vagaro-embed-aside {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ──────────────────────────────────────────────────────────────
   MOTION ACCOMMODATION
   ────────────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  .hero-glow, .hero-swan { animation: none !important; }
}

/* ──────────────────────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────────────────────── */

@media (max-width: 920px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--pearl);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1.1rem;
  }
  .nav-links.is-open { display: flex; }
  .nav-toggle { display: flex; z-index: 110; }
  .nav.is-menu-open .nav-toggle span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
  .nav.is-menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.is-menu-open .nav-toggle span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

  .meet-grid {
    grid-template-columns: 1fr;
  }
  .meet-image {
    position: static;
    max-width: 420px;
    margin: 0 auto;
  }

  .tiers {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .tier-featured { transform: none; }
  .tier-featured:hover { transform: translateY(-6px); }

  .products {
    grid-template-columns: repeat(2, 1fr);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .vagaro-embed {
    aspect-ratio: 3/4;
    max-width: 480px;
  }

  .reviews-grid,
  .reserve-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions { flex-direction: column; width: 100%; max-width: 320px; }
  .hero-actions .btn { width: 100%; }
}

@media (max-width: 520px) {
  .hero-meta { font-size: 0.65rem; gap: 0.5rem; }
  .hero-meta-bottom { flex-direction: column; }
  .hero-meta-bottom .dot { display: none; }
  .scripture { padding: 2rem 1rem; }
  .addons-list { flex-direction: column; gap: 0.5rem; }
  .addons-list li::after { display: none; }
  .products { grid-template-columns: 1fr; max-width: 320px; }
}

/* ──────────────────────────────────────────────────────────────
   V2.1 — PINK AMPLIFICATION + ORNAMENTS + REVEALS
   2026-05-02 — Jax review pass: more pink, more contrast, R&J ornament
   ────────────────────────────────────────────────────────────── */

/* alternating section background wash for contrast */
body { background: var(--pearl); }

.section-welcome {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(244, 200, 192, 0.35), transparent 65%),
    transparent;
}

.section-meet {
  background:
    radial-gradient(ellipse at 100% 50%, rgba(244, 200, 192, 0.2), transparent 60%),
    transparent;
}

.section-services {
  background:
    radial-gradient(ellipse at 0% 30%, rgba(232, 163, 156, 0.18), transparent 55%),
    radial-gradient(ellipse at 100% 80%, rgba(212, 165, 160, 0.15), transparent 55%),
    transparent;
}

.section-shop {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(244, 200, 192, 0.3), transparent 65%),
    transparent;
}

.section-reviews {
  background:
    linear-gradient(180deg, transparent 0%, rgba(244, 200, 192, 0.18) 50%, transparent 100%),
    transparent;
  position: relative;
}

.section-reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='p'><feTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.7  0 0 0 0 0.55  0 0 0 0 0.5  0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23p)'/></svg>");
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  z-index: 0;
}

.section-reviews > * { position: relative; z-index: 1; }

/* scripture pink wash */
.scripture {
  background:
    radial-gradient(ellipse at center, rgba(244, 200, 192, 0.45) 0%, transparent 70%);
  border-radius: 50%;
  padding: 3rem 2rem;
}

/* section-divider — colored ornament + drift */
.section-divider {
  color: var(--rose-deep);
  opacity: 0.85;
  filter: drop-shadow(0 1px 0 rgba(244, 200, 192, 0.5));
}

.section-marker { color: var(--rose-deep); }
.eyebrow { color: var(--rose-deep); }

/* page-edge soft pink corners */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(244, 200, 192, 0.28), transparent 35%),
    radial-gradient(ellipse at 100% 0%, rgba(232, 163, 156, 0.18), transparent 35%);
}

/* ───── NAV — pink ribbon under scrolled nav ───── */
.nav.is-scrolled {
  border-bottom: 1px solid var(--pink-bloom);
  box-shadow: 0 1px 0 rgba(244, 200, 192, 0.5);
}

/* ───── HERO — pink subline + rose meta ───── */
.hero-meta { color: var(--rose-deep); }
.hero-meta .dot { background: var(--rose-deep); }
.hero-line-the { color: var(--rose-deep); }
.hero-divider { color: var(--rose-deep); opacity: 0.85; }

/* ───── BUTTONS — primary now warmer pink-burgundy ───── */
.btn-primary:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  letter-spacing: 0.32em;
  box-shadow: 0 0 0 4px rgba(244, 200, 192, 0.45);
}

/* ───── SERVICES INTRO — punchier pink eyebrow ───── */
.services-intro::before {
  content: "❦";
  display: block;
  color: var(--rose-deep);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  opacity: 0.75;
}

/* ───── SHOP — product visuals ───── */
.product {
  padding-top: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(244, 200, 192, 0.35), transparent 60%),
    linear-gradient(180deg, #fef7f3 0%, var(--pearl) 100%);
  text-align: center;
}

.product::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 0.5px solid rgba(244, 200, 192, 0.6);
  pointer-events: none;
}

.product-visual {
  margin: 1.75rem auto 0.5rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 150px;
  color: var(--burgundy);
  position: relative;
}

.product-visual::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 8px;
  background: radial-gradient(ellipse at center, rgba(176, 122, 111, 0.25), transparent 70%);
  filter: blur(2px);
}

.product .product-roman {
  text-align: center;
  margin-top: 0.4rem;
  color: var(--rose-deep);
}

.product .product-name {
  text-align: center;
}

.product .product-tag {
  text-align: center;
  margin-bottom: 0.6rem;
}

.product .product-blurb {
  text-align: center;
  padding: 0 0.5rem;
}

.product .product-price {
  border-top-color: var(--pink);
  color: var(--rose-deep);
}

/* ───── SERVICES — extras-grid ───── */
.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 4rem auto 0;
  max-width: 980px;
  text-align: left;
}

.panel-soft,
.panel-bloom {
  position: relative;
  padding: 2.25rem 2rem 2rem;
  border: 0.5px solid var(--gold-soft);
  background: linear-gradient(180deg, var(--pearl) 0%, #fef6f3 100%);
}

.panel-soft::before,
.panel-bloom::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 0.5px solid var(--blush);
  pointer-events: none;
}

.panel-bloom {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(244, 200, 192, 0.55), transparent 65%),
    linear-gradient(180deg, #fef0eb 0%, var(--pearl) 100%);
  border-color: var(--rose-deep);
}

.panel-bloom::before {
  border-color: var(--pink-bloom);
}

.panel-eyebrow {
  font-family: var(--caps);
  font-size: 0.66rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 0.6rem;
}

.addons-title,
.coming-soon-title {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 1rem;
}

.coming-soon-title { color: var(--burgundy); }

.coming-soon-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0.75rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--ink);
}

.coming-soon-list li {
  padding: 0.4rem 0 0.4rem 1.2rem;
  border-bottom: 0.5px dashed rgba(176, 122, 111, 0.3);
  position: relative;
}

.coming-soon-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.45rem;
  color: var(--rose-deep);
  font-size: 0.7rem;
}

.coming-soon-list li:last-child { border-bottom: none; }

.coming-soon-aside {
  font-family: var(--script);
  font-size: 1.25rem;
  color: var(--burgundy);
  margin-top: 0.6rem;
}

.coming-soon p { margin: 0; }

.addons,
.coming-soon { margin-top: 0; }

.panel-soft .addons-list,
.addons-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--ink);
  justify-content: flex-start;
}

.panel-soft .addons-list li::after,
.addons-list li::after {
  content: "·";
  margin-left: 1.4rem;
  color: var(--rose-deep);
}

.panel-soft .addons-list li:last-child::after,
.addons-list li:last-child::after { display: none; }

/* ───── SERVICES NOTE — quiet whisper ───── */
.services-note-quiet {
  margin-top: 2.5rem;
  font-family: var(--caps);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.55;
  font-style: normal;
  text-align: center;
}

/* ───── BOOKINGS — pink wash on the "stay a while" panel ───── */
.section-bookings {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(244, 200, 192, 0.35), transparent 65%),
    linear-gradient(180deg, transparent 0%, var(--cream) 100%);
}

.vagaro-embed {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(244, 200, 192, 0.4), transparent 65%),
    linear-gradient(135deg, rgba(239, 217, 210, 0.5), rgba(212, 165, 160, 0.3)),
    var(--pearl);
  border-color: var(--rose-deep);
}

.reserve-card {
  background: linear-gradient(180deg, var(--pearl) 0%, #fef6f3 100%);
}

/* ───── ORNAMENT VINE DIVIDER (between sections) ───── */
.ornament-vine {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 1rem 0 0;
  color: var(--rose-deep);
  opacity: 0.7;
}

/* ───── REVEAL ON SCROLL ───── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1.2s var(--ease),
    transform 1.2s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 1s var(--ease),
    transform 1s var(--ease);
}

.reveal-stagger.is-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.0s; }
.reveal-stagger.is-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.24s; }
.reveal-stagger.is-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.36s; }
.reveal-stagger.is-visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.48s; }
.reveal-stagger.is-visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ───── EXTRAS-GRID RESPONSIVE ───── */
@media (max-width: 760px) {
  .extras-grid { grid-template-columns: 1fr; max-width: 480px; }
  .reviews-grid { gap: 4rem; }
  .review-letter:nth-child(n) { transform: rotate(0deg); }
}

/* ───── TIERS RESPONSIVE TWEAK — keep three columns visible at 1100+ ───── */
@media (min-width: 921px) {
  .tiers { gap: 0.85rem; }
}

/* ──────────────────────────────────────────────────────────────
   2026-05-20 — v3 additions
   reviews carousel · your-visit section · vagaro cta · footer contact
   ────────────────────────────────────────────────────────────── */

/* ───── REVIEWS CAROUSEL ───── */

.reviews-carousel {
  position: relative;
  margin: 3rem auto 1rem;
  padding: 0 0.5rem;
  max-width: 100%;
}

.reviews-track {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2.5rem 1rem 2.75rem;
  margin: 0 -0.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reviews-track::-webkit-scrollbar { display: none; }

.reviews-track > .review-letter {
  flex: 0 0 calc((100% - 3.5rem) / 3);
  min-width: 0;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

/* re-tune the scattered rotations so 10 cards stay lively, not chaotic */
.reviews-track > .review-letter:nth-child(n) { transform: rotate(0deg); }
.reviews-track > .review-letter:nth-child(3n+1) { transform: rotate(-1deg); }
.reviews-track > .review-letter:nth-child(3n+2) { transform: rotate(0.7deg) translateY(-4px); }
.reviews-track > .review-letter:nth-child(3n+3) { transform: rotate(-0.4deg) translateY(2px); }

.reviews-track > .review-letter:hover {
  transform: rotate(0deg) translateY(-6px);
}

.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(176, 122, 111, 0.45);
  background: rgba(250, 245, 239, 0.92);
  color: var(--burgundy);
  font-family: var(--display);
  font-size: 2.1rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 4px 14px rgba(74, 29, 40, 0.08);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.reviews-nav span { display: block; transform: translateY(-2px); }

.reviews-nav:hover {
  background: var(--pink);
  box-shadow: 0 6px 20px rgba(74, 29, 40, 0.15);
}

.reviews-nav:active { transform: translateY(-50%) scale(0.96); }

.reviews-prev { left: -8px; }
.reviews-next { right: -8px; }

@media (min-width: 1100px) {
  .reviews-prev { left: -28px; }
  .reviews-next { right: -28px; }
}

@media (max-width: 920px) {
  .reviews-track > .review-letter { flex: 0 0 calc((100% - 1.75rem) / 2); }
}

@media (max-width: 640px) {
  .reviews-track > .review-letter { flex: 0 0 85%; }
  .reviews-track { gap: 1.25rem; padding: 2rem 0.5rem 2.25rem; }
  .reviews-nav { width: 40px; height: 40px; font-size: 1.75rem; }
}

/* ───── YOUR VISIT SECTION ───── */

.section-visit {
  text-align: center;
  background:
    linear-gradient(180deg, transparent 0%, rgba(243, 234, 221, 0.45) 50%, transparent 100%);
}

.visit-care-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  margin: 3rem auto 4rem;
  max-width: 1000px;
  text-align: left;
}

.visit-care {
  position: relative;
  padding: 2.5rem 2rem 2.25rem;
  background: rgba(250, 245, 239, 0.85);
  border: 1px solid rgba(176, 122, 111, 0.25);
  border-radius: var(--radius);
  box-shadow:
    0 2px 0 rgba(212, 165, 160, 0.18),
    0 10px 28px rgba(74, 29, 40, 0.06);
}

.visit-care::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(184, 137, 63, 0.55) 30%,
    rgba(244, 200, 192, 0.85) 50%,
    rgba(184, 137, 63, 0.55) 70%,
    transparent 100%);
}

.visit-care-roman {
  font-family: var(--display);
  font-size: 2.6rem;
  letter-spacing: 0.06em;
  color: var(--rose-deep);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.visit-care-eyebrow {
  font-family: var(--caps);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.visit-care-title {
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.5vw, 2rem);
  color: var(--burgundy);
  margin-bottom: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

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

.visit-care li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.visit-care li::before {
  content: "·";
  position: absolute;
  left: 0.45rem;
  top: -0.1rem;
  font-size: 1.6rem;
  color: var(--rose-deep);
}

.visit-care li strong {
  font-weight: 500;
  color: var(--burgundy);
  font-style: italic;
}

@media (max-width: 760px) {
  .visit-care-grid { grid-template-columns: 1fr; max-width: 520px; gap: 1.5rem; }
}

/* ───── FAQ ───── */

.visit-faq {
  max-width: 760px;
  margin: 4rem auto 2rem;
  text-align: left;
  background: rgba(250, 245, 239, 0.6);
  border: 1px solid rgba(176, 122, 111, 0.22);
  padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius);
}

.visit-faq .panel-eyebrow {
  text-align: center;
  font-family: var(--caps);
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 0.5rem;
}

.visit-faq-title {
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.6vw, 2.1rem);
  color: var(--burgundy);
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.faq-item {
  border-bottom: 1px solid rgba(176, 122, 111, 0.22);
  padding: 1rem 0;
}

.faq-item:last-of-type { border-bottom: none; }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--burgundy);
  padding-right: 2rem;
  position: relative;
  transition: color 0.2s var(--ease);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--rose-deep);
  transition: transform 0.25s var(--ease);
  display: inline-block;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item summary:hover { color: var(--rose-deep); }

.faq-body {
  padding: 0.85rem 0 0.25rem;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.6;
}

.faq-body p { margin: 0; }

.faq-body strong {
  font-style: normal;
  font-weight: 500;
  color: var(--burgundy);
}

.visit-contact {
  margin: 2.25rem auto 0;
  max-width: 640px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.visit-contact a {
  color: var(--burgundy);
  border-bottom: 1px solid rgba(176, 122, 111, 0.4);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.visit-contact a:hover {
  color: var(--rose-deep);
  border-bottom-color: var(--rose-deep);
}

/* ───── VAGARO EMBED CTA ───── */

.vagaro-embed-cta {
  margin-top: 1.5rem;
}

/* ───── FOOTER CONTACT ───── */

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1rem auto 0.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.footer-contact a {
  color: var(--burgundy);
  border-bottom: 1px solid rgba(176, 122, 111, 0.35);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.footer-contact a:hover {
  color: var(--rose-deep);
  border-bottom-color: var(--rose-deep);
}

.footer-contact .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(176, 122, 111, 0.45);
}

/* ──────────────────────────────────────────────────────────────
   2026-05-20 — v3.1 polish
   real portrait · bold before/after headings · tier banner fix ·
   footer icons + larger wordmark
   ────────────────────────────────────────────────────────────── */

/* ───── REAL PORTRAIT ───── */

.meet-image-photo {
  position: absolute;
  inset: 24px;          /* match frame padding so corner SVGs still show */
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.92) contrast(1.02);
}

/* ───── VISIT-CARE: bold before/after headings, no roman, no eyebrow ───── */

.visit-care .visit-care-title {
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.6vw, 2.05rem);
  color: var(--burgundy);
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  text-align: left;
}

/* ───── TIER BANNER — float ABOVE the card edge, no line crossing it ───── */

.tier-banner {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: auto;
  transform: translate(-50%, calc(-100% - 10px));
  z-index: 3;
}

.tier-banner::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  background: var(--burgundy);
  border-right: 0.5px solid var(--pink-bloom);
  border-bottom: 0.5px solid var(--pink-bloom);
}

/* ───── FOOTER — bigger wordmark + icon contact ───── */

.footer-mark-large {
  margin-bottom: 1.25rem;
}

.footer-mark-large .footer-the {
  font-size: 1.15rem;
}

.footer-mark-large .footer-capulet {
  font-size: clamp(3rem, 6vw, 4.25rem);
  letter-spacing: 0.01em;
}

.footer-mark-large .footer-suite {
  font-size: 1.7rem;
}

.footer-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 0.5rem auto 1.5rem;
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(250, 245, 239, 0.92);
  border: 1px solid rgba(176, 122, 111, 0.45);
  color: var(--burgundy);
  box-shadow:
    0 2px 0 rgba(212, 165, 160, 0.25),
    0 6px 18px -8px rgba(74, 29, 40, 0.25);
  transition:
    background 0.22s var(--ease),
    color 0.22s var(--ease),
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    border-color 0.22s var(--ease);
}

.footer-icon:hover {
  background: var(--pink);
  color: var(--burgundy);
  border-color: var(--rose-deep);
  transform: translateY(-2px);
  box-shadow:
    0 4px 0 rgba(212, 165, 160, 0.35),
    0 10px 24px -8px rgba(74, 29, 40, 0.32);
}

.footer-icon:active {
  transform: translateY(0);
}

.footer-icon svg {
  display: block;
}

/* ──────────────────────────────────────────────────────────────
   2026-05-20 — v3.2
   unified page tint · vintage portrait frame · kind-letter CTA
   ────────────────────────────────────────────────────────────── */

/* ───── UNIFIED PAGE BACKGROUND ─────
   Continuous soft warmth so the colored ground reads as one
   atmosphere from hero to footer, not section-by-section slabs. */

body {
  background:
    radial-gradient(
      ellipse at 50% 22%,
      rgba(244, 200, 192, 0.18) 0%,
      transparent 55%),
    radial-gradient(
      ellipse at 50% 68%,
      rgba(243, 234, 221, 0.55) 0%,
      transparent 65%),
    linear-gradient(180deg,
      var(--pearl) 0%,
      #f7ede2 45%,
      #f4e8da 65%,
      var(--pearl) 100%) fixed;
}

/* ───── VINTAGE PORTRAIT FRAME ───── */

.meet-image {
  position: sticky;
  top: 7rem;
  padding-top: 2.5rem;
}

.meet-image-crest {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  opacity: 0.85;
  z-index: 3;
  pointer-events: none;
}

.meet-image-frame-vintage {
  position: relative;
  aspect-ratio: 4/5;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(216, 184, 138, 0.35), rgba(176, 122, 111, 0.25)),
    linear-gradient(45deg, var(--linen), var(--blush));
  border: 0.75px solid var(--gold);
  box-shadow:
    inset 0 0 0 6px rgba(250, 245, 239, 0.6),
    inset 0 0 0 7px rgba(184, 137, 63, 0.55),
    0 18px 40px -20px rgba(74, 29, 40, 0.45),
    0 2px 0 rgba(212, 165, 160, 0.3);
}

.meet-image-frame-vintage .meet-image-photo {
  position: absolute;
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(0.9) contrast(1.03) sepia(0.04);
  z-index: 1;
}

.meet-image-inner-rule {
  position: absolute;
  inset: 26px;
  border: 0.5px solid rgba(184, 137, 63, 0.55);
  pointer-events: none;
  z-index: 2;
}

.meet-image-flourish {
  position: absolute;
  color: var(--gold);
  opacity: 0.95;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 1px 1px rgba(74, 29, 40, 0.18));
}

.meet-image-flourish-tl { top: -10px;    left: -10px;    transform: rotate(0deg); }
.meet-image-flourish-tr { top: -10px;    right: -10px;   transform: rotate(90deg); }
.meet-image-flourish-bl { bottom: -10px; left: -10px;    transform: rotate(-90deg); }
.meet-image-flourish-br { bottom: -10px; right: -10px;   transform: rotate(180deg); }

@media (min-width: 921px) {
  .meet-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }
  .meet-image-frame-vintage { padding: 22px; }
}

@media (max-width: 920px) {
  .meet-image { position: static; padding-top: 2.25rem; }
  .meet-image-flourish { width: 48px; height: 48px; }
}

/* ───── KIND LETTER CTA ───── */

.reviews-cta-wrap {
  text-align: center;
  margin: 2.5rem auto 1.5rem;
  max-width: 480px;
}

.reviews-cta {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  font-family: var(--caps);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: rgba(250, 245, 239, 0.85);
  border: 0.5px solid var(--rose-deep);
  border-radius: var(--radius);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow:
    0 1px 0 rgba(212, 165, 160, 0.4),
    0 8px 22px -14px rgba(74, 29, 40, 0.4);
}

.reviews-cta:hover {
  background: var(--pink);
  color: var(--burgundy);
  transform: translateY(-2px);
  box-shadow:
    0 2px 0 rgba(212, 165, 160, 0.5),
    0 12px 28px -14px rgba(74, 29, 40, 0.5);
}

.reviews-cta-note {
  margin-top: 0.85rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ──────────────────────────────────────────────────────────────
   2026-05-20 — v3.3
   reserve cards: where → google maps link · how → icon buttons
   ────────────────────────────────────────────────────────────── */

.reserve-where-link {
  color: var(--burgundy);
  border-bottom: none !important;
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-decoration-color: rgba(74, 29, 40, 0.75);
  text-underline-offset: 3px;
  line-height: 1.7;
  transition: color 0.25s var(--ease), text-decoration-color 0.25s var(--ease);
}

.reserve-where-link:hover {
  color: var(--ink);
  text-decoration-color: var(--ink);
}

.reserve-how-lead {
  margin-bottom: 0.85rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.7;
}

.reserve-how-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin: 0.25rem 0 0.85rem;
}

.reserve-card .reserve-how-icon,
.reserve-card a.reserve-how-icon {
  border-bottom: none !important;
  width: 48px;
  height: 48px;
}

.reserve-card .reserve-how-icon svg {
  width: 24px;
  height: 24px;
}

.visit-faq-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin: 2rem auto 0;
  max-width: 32rem;
}

.visit-faq-cta-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

.visit-faq-cta {
  padding: 0.7rem 1.85rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

/* ──────────────────────────────────────────────────────────────
   2026-05-20 — v3.5
   real Vagaro widget loaded — release placeholder size constraints
   ────────────────────────────────────────────────────────────── */

.vagaro-embed {
  aspect-ratio: auto;
  min-height: 600px;
  display: block;
  padding: 28px 24px;
}

.vagaro-embed > .vagaro {
  width: auto !important;
  max-width: 100%;
  margin-top: 1.25rem;
}

.embedded-widget-title:empty {
  display: none;
}

.vagaro-embed-fallback {
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  text-align: center;
}

.vagaro-embed-fallback a {
  color: var(--burgundy);
  border-bottom: 0.5px solid var(--burgundy);
}

/* ──────────────────────────────────────────────────────────────
   2026-05-20 — v3.6
   bookings cleanup: 2-card reserve grid, drop "books open June 15"
   chrome, underlined address, push embed as the only booking path
   ────────────────────────────────────────────────────────────── */

.reserve-grid-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
}

/* ──────────────────────────────────────────────────────────────
   2026-05-20 — v3.7
   restore hero-swan breathing room after removing hero-meta-bottom
   ────────────────────────────────────────────────────────────── */

.hero-actions {
  margin-bottom: 3.5rem;
}

/* ──────────────────────────────────────────────────────────────
   2026-05-20 — v3.8
   invert primary button colors
   (rose-deep is now default; ink is the hover state)
   ────────────────────────────────────────────────────────────── */

.btn-primary {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: var(--pearl);
  box-shadow: 0 0 0 4px rgba(244, 200, 192, 0.35);
}

.btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--pearl);
  letter-spacing: 0.32em;
  box-shadow: none;
}

/* ─── v3.9: services intro note (no contracts, no sign-up fees) ─── */
.services-intro-note {
  max-width: 56ch;
  margin: -3rem auto 4rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-align: center;
  font-style: italic;
  opacity: 0.78;
}
