/* ========== Dreamy Parties LA — Design System ========== */

:root {
  /* Palette — blush / mauve / lavender / champagne */
  --cream: #faf4f4;
  --cream-deep: #f5ecec;
  --blush-50: #fdf5f3;
  --blush-100: #fae6e2;
  --blush-200: #f7d9d9;
  --blush-300: #f0c5c8;
  --rose: #e8c5d0;
  --rose-deep: #d4a8b8;
  --mauve: #c9a8d4;
  --mauve-deep: #a87cb8;
  --lavender: #ddd0e8;
  --peach: #f8d7c9;

  /* Champagne gold accent */
  --gold: #c89b6c;
  --gold-soft: #e8c9a8;
  --gold-deep: #9c7448;
  /* Sage accent — used for the homepage hero highlights. */
  --sage: #8E9B84;
  --sage-deep: #6f7d63;

  /* Ink */
  --ink-900: #2a1822;
  --ink-700: #503848;
  --ink-500: #7a5c6c;
  --ink-300: #b29ca8;
  --ink-100: #e6dce2;

  /* Surfaces */
  --surface: #ffffff;
  --surface-warm: #fdf9f7;
  --hairline: rgba(42, 24, 34, 0.08);
  --hairline-strong: rgba(42, 24, 34, 0.16);

  /* Shadows — soft, dreamy */
  --shadow-xs: 0 1px 2px rgba(168, 124, 184, 0.06);
  --shadow-sm: 0 4px 14px rgba(168, 124, 184, 0.08), 0 1px 3px rgba(42, 24, 34, 0.04);
  --shadow-md: 0 10px 30px rgba(168, 124, 184, 0.12), 0 2px 6px rgba(42, 24, 34, 0.04);
  --shadow-lg: 0 24px 60px rgba(168, 124, 184, 0.18), 0 6px 16px rgba(42, 24, 34, 0.06);
  --shadow-xl: 0 40px 100px rgba(168, 124, 184, 0.25), 0 10px 30px rgba(42, 24, 34, 0.08);

  /* Radii */
  --r-xs: 6px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  /* Type */
  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Italianno", "Playfair Display", cursive;
}

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

html, body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.55;
  scroll-behavior: smooth;
}

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ========== Typography utilities ========== */
.serif { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; }
.serif-italic { font-family: var(--font-display); font-style: italic; font-weight: 400; }
.script { font-family: var(--font-script); font-weight: 400; }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-500);
}
.eyebrow-gold { color: var(--gold-deep); }

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease, background 0.3s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--ink-900);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { box-shadow: var(--shadow-md); background: #3a2230; }
.btn-gold {
  background: linear-gradient(135deg, #d4a574 0%, #c89b6c 50%, #b8895a 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(200, 155, 108, 0.35);
}
.btn-gold:hover { box-shadow: 0 10px 28px rgba(200, 155, 108, 0.5); }
.btn-ghost {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink-900);
  border: 1px solid var(--hairline);
}
.btn-ghost:hover { background: rgba(255,255,255,0.95); }
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-900);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}
.btn-text::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.btn-text:hover::after { transform: scaleX(0.5); }
.btn-arrow {
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.btn:hover .btn-arrow, a:hover .btn-arrow { transform: translateX(4px); }

/* ========== Containers ========== */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

/* ========== Section spacing ========== */
.section { padding: 120px 0; position: relative; }
.section-sm { padding: 80px 0; position: relative; }
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .section-sm { padding: 56px 0; }
}

/* ========== Glassmorphism card ========== */
.glass {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

/* ========== Floating sparkle / orbs decoration ========== */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.orb-blush { background: radial-gradient(circle, rgba(247, 217, 217, 0.9), rgba(247, 217, 217, 0)); }
.orb-mauve { background: radial-gradient(circle, rgba(201, 168, 212, 0.7), rgba(201, 168, 212, 0)); }
.orb-peach { background: radial-gradient(circle, rgba(248, 215, 201, 0.8), rgba(248, 215, 201, 0)); }
.orb-gold  { background: radial-gradient(circle, rgba(232, 201, 168, 0.7), rgba(232, 201, 168, 0)); }

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}
.orb-float { animation: orbFloat 14s ease-in-out infinite; }
.orb-float-slow { animation: orbFloat 22s ease-in-out infinite reverse; }

/* Sparkle */
.sparkle {
  position: absolute;
  width: 8px; height: 8px;
  pointer-events: none;
  opacity: 0.9;
}
.sparkle::before, .sparkle::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, #fff 49%, #fff 51%, transparent 55%);
}
.sparkle::after { transform: rotate(90deg); }
@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.6) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(45deg); }
}
.sparkle-anim { animation: twinkle 3s ease-in-out infinite; }

/* ========== Reveal on scroll ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(.2,.8,.2,1), transform 0.9s cubic-bezier(.2,.8,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ========== Number ticker ========== */
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--ink-900) 0%, var(--mauve-deep) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ========== Form inputs ========== */
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 500;
}
.input, .textarea, .select {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  font-size: 15px;
  color: var(--ink-900);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  font-family: var(--font-body);
}
.input::placeholder, .textarea::placeholder { color: var(--ink-300); }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--mauve-deep);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(168, 124, 184, 0.12);
}
.textarea { resize: vertical; min-height: 110px; line-height: 1.5; }

/* ========== Chip / pill ========== */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  font-size: 13px;
  color: var(--ink-700);
  transition: all 0.3s;
  cursor: pointer;
}
.chip:hover { border-color: var(--mauve); background: #fff; }
.chip.is-active {
  background: var(--ink-900);
  color: var(--cream);
  border-color: var(--ink-900);
}

/* ========== Divider script ========== */
.divider-script {
  font-family: var(--font-script);
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
  text-align: center;
}

/* ========== Scrollbar ========== */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
  background: var(--rose);
  border-radius: 10px;
  border: 2px solid var(--cream);
}
::-webkit-scrollbar-thumb:hover { background: var(--rose-deep); }

/* ========== Selection ========== */
::selection { background: var(--rose); color: var(--ink-900); }

/* ========== Hide scrollbar utility ========== */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { scrollbar-width: none; }

/* ========== Marquee ========== */
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee {
  display: flex;
  gap: 80px;
  animation: marquee 40s linear infinite;
  width: max-content;
}

/* ========== Subtle grain noise overlay ========== */
.noise::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Page transition fade */
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.page-fade { animation: pageFadeIn 0.6s cubic-bezier(.2,.8,.2,1); }

/* ============================================================
   Site nav
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease,
              box-shadow 0.4s ease, padding 0.4s ease;
}
.site-nav.is-scrolled {
  padding: 14px 0;
  background: rgba(250, 244, 244, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 1px 0 var(--hairline);
}
.logo-wordmark { font-size: 19.6px; }
.logo-sub      { font-size: 9px; }

.nav-link {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  transition: color 0.3s;
}
.nav-link.is-active { color: var(--ink-900); }
.nav-link-underline {
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-mobile-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--hairline);
  align-items: center;
  justify-content: center;
  color: var(--ink-900);
}
@media (max-width: 980px) {
  .nav-desktop, .nav-cta { display: none !important; }
  .nav-mobile-toggle    { display: inline-flex !important; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: linear-gradient(180deg, #fdf5f3 0%, #f7d9d9 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 100px 28px 40px;
  overflow: hidden;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
body.menu-open { overflow: hidden; }
.mobile-menu-link {
  text-align: left;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--ink-900);
  border-bottom: 1px solid var(--hairline);
  transform: translateX(-30px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition-delay: calc(0.1s + var(--i) * 0.06s);
  display: block;
}
.mobile-menu.is-open .mobile-menu-link { transform: translateX(0); opacity: 1; }
.mobile-menu-link.is-active { font-style: italic; }
.mobile-menu-num {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  margin-right: 14px;
  vertical-align: middle;
}

/* ============================================================
   Hero
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #fdf5f3 0%, #faf4f4 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 220px);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.6);
  border-radius: 999px;
  border: 1px solid var(--hairline);
  color: var(--sage-deep);
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 12px var(--sage);
}
.hero-headline {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink-900);
  margin-bottom: 28px;
}
.hero-headline-italic { font-style: italic; color: var(--sage); }
.hero-headline-accent { position: relative; white-space: nowrap; }
.hero-headline-underline {
  position: absolute;
  left: 0; right: 0; bottom: -10px;
  height: 12px;
}
/* Sage-tint the hand-drawn underline so it matches "magical" (overrides the
   inline stroke="" presentation attribute on the SVG path). */
.hero-headline-underline path { stroke: var(--sage); }
/* Hero "Book your party" CTA in sage. Scoped to the hero so other gold CTAs
   across the site keep their gold treatment. */
.hero-section .btn-gold {
  background: linear-gradient(135deg, #a3b096 0%, #8E9B84 50%, #79866d 100%);
  box-shadow: 0 6px 18px rgba(142, 155, 132, 0.35);
}
.hero-section .btn-gold:hover { box-shadow: 0 10px 28px rgba(142, 155, 132, 0.5); }
.hero-lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-500);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-social-proof {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-avatars { display: flex; align-items: center; }
.hero-avatars img {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  box-shadow: var(--shadow-xs);
  margin-left: -12px;
}
.hero-avatars img:first-child { margin-left: 0; }
.hero-rating {
  display: flex;
  gap: 2px;
  color: var(--sage);
  margin-bottom: 4px;
  align-items: center;
}
.hero-rating-value { margin-left: 8px; color: var(--ink-900); font-weight: 500; font-size: 13px; }
.hero-rating-label { font-size: 13px; color: var(--ink-500); }

.hero-collage { position: relative; height: 640px; }
.hero-collage-1 { position: absolute; left: 5%; top: 5%; width: 62%; height: 72%; }
.hero-collage-2 { position: absolute; right: 0; top: 30%; width: 48%; height: 50%; }
.hero-collage-3 { position: absolute; left: 12%; bottom: 0; width: 44%; height: 32%; }
.hero-collage-card { position: absolute; right: -4%; bottom: 8%; max-width: 280px; }
.hero-collage-frame {
  width: 100%; height: 100%;
  overflow: hidden;
}
.hero-collage-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-collage-frame-pill {
  border-radius: 180px 180px 180px 180px / 220px 220px 220px 220px;
  box-shadow: var(--shadow-xl);
}
.hero-collage-frame-border {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 8px solid #fff;
}
.hero-collage-frame-border-sm {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  border: 6px solid #fff;
}
.hero-collage-script {
  position: absolute;
  top: -3%; right: 12%;
  font-family: var(--font-script);
  font-size: 64px;
  color: var(--sage);
  transform: rotate(-8deg);
  pointer-events: none;
}
.hero-scroll-cue { display: flex; justify-content: center; margin-top: 28px; }
.hero-scroll-cue > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--ink-500);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-cue-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--ink-300), transparent);
  animation: twinkle 2s ease-in-out infinite;
}
@media (max-width: 980px) {
  .hero-grid    { grid-template-columns: 1fr; gap: 48px; }
  .hero-collage { height: 440px; max-width: 520px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .hero-collage { display: none; }
}

/* ============================================================
   Section header
   ============================================================ */
.section-header { max-width: 720px; margin-bottom: 56px; position: relative; z-index: 2; }
.section-header-center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header-eyebrow {
  margin-bottom: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.section-header-eyebrow-center { justify-content: center; }
.eyebrow-rule { width: 24px; height: 1px; background: var(--gold); }
.section-title {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
.title-italic { font-style: italic; color: var(--mauve-deep); }
.section-sub {
  margin-top: 18px;
  font-size: 17px;
  color: var(--ink-500);
  line-height: 1.55;
  max-width: 560px;
}
.section-sub-center { margin-left: auto; margin-right: auto; }

/* ============================================================
   Press bar
   ============================================================ */
.press-bar {
  padding: 48px 0;
  background: var(--cream-deep);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}
.press-bar-mask {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.press-bar-item {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--ink-500);
  font-weight: 500;
  white-space: nowrap;
}

/* ============================================================
   Themes
   ============================================================ */
.themes-section { position: relative; overflow: hidden; }
.orb-field { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.themes-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.theme-card {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.theme-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.theme-card:hover img { transform: scale(1.06); }
.theme-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(42, 24, 34, 0.7) 100%);
}
.theme-card-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-700);
  font-weight: 500;
}
.theme-card-body {
  position: absolute;
  left: 28px; right: 28px; bottom: 28px;
  color: var(--cream);
}
.theme-card-title {
  font-size: 30px; line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.theme-card-sub { font-size: 14px; opacity: 0.85; }
.theme-card-cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}
@media (max-width: 980px) { .theme-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .theme-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Stats
   ============================================================ */
.stats-section {
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, #fdf5f3 100%);
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item { padding: 32px 24px; }
.stat-item-divider { border-left: 1px solid var(--hairline); padding-left: 32px; }
.stat-label {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink-500);
  letter-spacing: 0.02em;
  line-height: 1.4;
}
@media (max-width: 780px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item-divider { border-left: none; padding-left: 0; }
}

/* ============================================================
   How it works
   ============================================================ */
.how-section { position: relative; overflow: hidden; }
.how-orbs { position: absolute; inset: 0; pointer-events: none; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.how-line {
  position: absolute;
  top: 38px; left: 12%; right: 12%;
  height: 1px;
  background-image: linear-gradient(90deg, var(--gold) 50%, transparent 50%);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  z-index: 0;
}
.how-step { position: relative; text-align: center; padding: 0 8px; }
.how-step-bubble {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff 0%, #fdf5f3 100%);
  border: 1px solid var(--hairline);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.how-step-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.how-step-title {
  font-size: 26px;
  margin-top: 24px;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.how-step-blurb {
  margin: 12px auto 0;
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.6;
  max-width: 240px;
}
@media (max-width: 880px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .how-line { display: none; }
}
@media (max-width: 480px) {
  .how-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Packages preview
   ============================================================ */
.packages-section {
  background: linear-gradient(180deg, #fdf5f3 0%, #f7d9d9 100%);
  position: relative;
  overflow: hidden;
}
.pkg-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.pkg-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.pkg-card-highlight {
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px);
}
.pkg-card-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--ink-900);
  color: var(--cream);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  font-weight: 500;
}
.pkg-card-image { aspect-ratio: 4/3; overflow: hidden; }
.pkg-card-image img { width: 100%; height: 100%; object-fit: cover; }
.pkg-card-body { padding: 32px; }
.pkg-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}
.pkg-card-name { font-size: 32px; line-height: 1.1; letter-spacing: -0.01em; }
.pkg-card-tagline {
  font-size: 13px;
  color: var(--ink-500);
  margin-top: 4px;
  font-style: italic;
}
.pkg-card-price { font-size: 28px; color: var(--gold-deep); }
.pkg-card-price-label {
  font-size: 11px;
  color: var(--ink-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pkg-card-meta {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hairline);
}
.pkg-card-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-500);
}
.pkg-card-list {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pkg-card-list-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-700);
}
.pkg-card-list-check { color: var(--gold); margin-top: 4px; flex-shrink: 0; }
.pkg-card-cta {
  width: 100%;
  margin-top: 28px;
  justify-content: center;
}
@media (max-width: 980px) {
  .pkg-preview-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .pkg-card-highlight { transform: none; }
}

/* ============================================================
   Insta preview
   ============================================================ */
.insta-section { position: relative; overflow: hidden; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.insta-wide { grid-column: span 2; }
.insta-tall { grid-row: span 2; }
.insta-frame {
  display: block;
  width: 100%; height: 100%;
  border-radius: var(--r-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.insta-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(.2,.8,.2,1);
}
.insta-frame:hover img { transform: scale(1.08); }
.insta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, rgba(42, 24, 34, 0.7));
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: var(--cream);
  font-size: 13px;
  gap: 14px;
}
.insta-overlay > span { display: inline-flex; align-items: center; gap: 4px; }
.insta-frame:hover .insta-overlay { opacity: 1; }
@media (max-width: 980px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) {
  .insta-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .insta-tall { grid-row: span 1; }
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials-section {
  background: linear-gradient(180deg, #f7d9d9 0%, #fdf5f3 100%);
  position: relative;
  overflow: hidden;
}
.testimonial-carousel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  min-height: 320px;
  position: relative;
}
.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}
.testimonial-slide.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.testimonial-quote-mark {
  font-family: var(--font-script);
  font-size: 88px;
  color: var(--gold);
  line-height: 0.4;
  margin-bottom: 10px;
}
.testimonial-quote {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.35;
  color: var(--ink-900);
  font-style: italic;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
  text-wrap: balance;
}
.testimonial-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.testimonial-attribution img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: var(--shadow-sm);
}
.testimonial-attribution > div { text-align: left; }
.testimonial-name { font-weight: 600; color: var(--ink-900); }
.testimonial-role { font-size: 13px; color: var(--ink-500); }
.testimonial-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 48px;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(42, 24, 34, 0.2);
  transition: all 0.4s ease;
}
.testimonial-dot.is-active { width: 32px; background: var(--ink-900); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { position: relative; }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-intro { position: sticky; top: 120px; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-question {
  width: 100%;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 24px;
}
.faq-q {
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.faq-toggle-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  color: var(--ink-900);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  transform: rotate(0deg);
}
.faq-item.is-open .faq-toggle-icon {
  background: var(--ink-900);
  color: var(--cream);
  transform: rotate(180deg);
}
.faq-icon-minus { display: none; }
.faq-item.is-open .faq-icon-plus  { display: none; }
.faq-item.is-open .faq-icon-minus { display: inline-flex; }
.faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(.2,.8,.2,1);
}
.faq-item.is-open .faq-answer-wrap { max-height: 400px; }
.faq-answer {
  padding-bottom: 28px;
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.7;
  max-width: 620px;
}
@media (max-width: 880px) {
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-intro  { position: relative; top: 0; }
}

/* ============================================================
   Final CTA
   ============================================================ */
.final-cta-section { padding: 100px 0; position: relative; overflow: hidden; }
.final-cta-card {
  position: relative;
  background: linear-gradient(135deg, #2a1822 0%, #4a2238 50%, #2a1822 100%);
  border-radius: var(--r-xl);
  padding: 100px 56px;
  text-align: center;
  overflow: hidden;
  color: var(--cream);
}
.final-cta-orbs { position: absolute; inset: 0; pointer-events: none; }
.final-cta-eyebrow {
  color: var(--gold-soft);
  margin-bottom: 24px;
  justify-content: center;
  display: flex;
  gap: 12px;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 500;
}
.final-cta-rule { width: 24px; height: 1px; background: var(--gold-soft); }
.final-cta-title {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  text-wrap: balance;
}
.final-cta-title-italic { font-style: italic; color: var(--gold-soft); }
.final-cta-lead {
  font-size: 18px;
  color: rgba(250,244,244,0.75);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.final-cta-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  border-color: rgba(250,244,244,0.2);
}
.final-cta-promises {
  margin-top: 48px;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  color: rgba(250,244,244,0.6);
  font-size: 13px;
}
.final-cta-promises > span { display: inline-flex; align-items: center; gap: 8px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg, #2a1822 0%, #1c0f17 100%);
  color: var(--cream);
  padding: 100px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer-orbs { position: absolute; inset: 0; pointer-events: none; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-link {
  text-align: left;
  color: rgba(250,244,244,0.7);
  font-size: 14px;
  transition: color 0.3s;
  display: block;
}
.footer-link:hover { color: var(--cream); }
.footer-input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(250,244,244,0.16);
  color: var(--cream);
  padding-right: 52px;
}
.footer-submit {
  position: absolute;
  right: 6px; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social { transition: color 0.3s; }
.footer-social:hover { color: var(--gold-soft); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(250,244,244,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(250,244,244,0.5);
  font-size: 12px;
  letter-spacing: 0.04em;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* No-sparkles toggle support (kept for parity with original) */
body.no-sparkles .sparkle-svg { display: none !important; }

/* ============================================================
   Services overview & detail pages
   ============================================================ */

/* ---------- Overview: page header ---------- */
.svc-page-header {
  position: relative;
  padding: 90px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fdf5f3 0%, var(--cream) 100%);
}
.svc-page-title {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  text-wrap: balance;
}
.svc-page-sub {
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Overview: master grid ---------- */
.svc-grid-section { padding: 24px 0 100px; }
.services-master-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.svc-feature {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: block;
  color: inherit;
}
.svc-feature-large {
  grid-column: span 12;
  aspect-ratio: 21/8;
}
.svc-feature-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.svc-feature:hover .svc-feature-img { transform: scale(1.04); }
.svc-feature-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,24,34,0.1) 0%, rgba(42,24,34,0.78) 100%);
}
.svc-feature-body {
  position: absolute;
  left: 36px; right: 36px; bottom: 36px;
  color: var(--cream);
  max-width: 600px;
}
.svc-feature-eyebrow { color: var(--gold-soft); margin-bottom: 12px; }
.svc-feature-name {
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.svc-feature-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 16px;
}
.svc-feature-blurb {
  font-size: 14px;
  opacity: 0.78;
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 20px;
}

/* Card */
.svc-card {
  grid-column: span 4;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform 0.5s, box-shadow 0.5s;
  display: flex;
  flex-direction: column;
  color: inherit;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc-card-image { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.svc-card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.svc-card:hover .svc-card-img { transform: scale(1.05); }
.svc-card-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.svc-card-name {
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.svc-card-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-500);
  font-size: 14px;
  margin-bottom: 14px;
}
.svc-card-blurb {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.svc-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
}
.svc-card-foot-label { font-size: 12px; color: var(--ink-500); }
.svc-card-foot-cta {
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 980px) {
  .svc-card { grid-column: span 6; }
  .svc-feature-large { aspect-ratio: 4/3; }
}
@media (max-width: 640px) {
  .svc-card { grid-column: span 12; }
}

/* ---------- Overview: at-a-glance ---------- */
.svc-glance-section {
  background: linear-gradient(180deg, var(--cream) 0%, #fdf5f3 100%);
}
.svc-glance-table {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--hairline);
  overflow: hidden;
}
.glance-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.6fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 32px;
  text-align: left;
  border-top: 1px solid var(--hairline);
  transition: background 0.3s;
  color: inherit;
}
.glance-row:first-child { border-top: none; }
.glance-row:hover { background: var(--cream-deep); }
.glance-row-name {
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.glance-row-meta {
  font-size: 13px;
  color: var(--ink-500);
  display: flex;
  align-items: center;
  gap: 8px;
}
.glance-row-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gold-deep);
  font-weight: 500;
}
@media (max-width: 880px) {
  .glance-row { grid-template-columns: 1fr; gap: 8px; }
}

/* ---------- Overview: process ---------- */
.svc-process-section { position: relative; overflow: hidden; }
.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.proc-step { text-align: center; }
.proc-step-circle {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #fdf5f3);
  border: 1px solid var(--hairline);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.proc-step-num {
  font-size: 26px;
  font-style: italic;
  color: var(--gold);
}
.proc-step-title {
  font-size: 24px;
  margin-top: 20px;
  letter-spacing: -0.01em;
}
.proc-step-body {
  margin: 10px auto 0;
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.6;
  max-width: 240px;
}
@media (max-width: 880px) {
  .proc-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

/* ---------- Overview: bespoke ---------- */
.svc-bespoke-section {
  background: linear-gradient(180deg, #fdf5f3 0%, #f7d9d9 100%);
  position: relative;
  overflow: hidden;
}
.svc-bespoke-sub {
  font-size: 17px;
  color: var(--ink-500);
  line-height: 1.65;
  margin-bottom: 32px;
}

/* ============================================================
   Service detail
   ============================================================ */

/* ---------- Detail: hero ---------- */
.svc-hero {
  position: relative;
  min-height: 92vh;
  padding: 140px 0 60px;
  overflow: hidden;
  background: linear-gradient(180deg, #fdf5f3 0%, #faf4f4 100%);
}
.svc-breadcrumb {
  margin-bottom: 32px;
  font-size: 12px;
  color: var(--ink-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  gap: 12px;
  align-items: center;
}
.svc-breadcrumb a { color: inherit; transition: color 0.3s; }
.svc-breadcrumb a:hover { color: var(--gold-deep); }
.svc-breadcrumb-sep { color: var(--ink-300); }
.svc-breadcrumb-current { color: var(--ink-900); }

.svc-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.svc-hero-eyebrow {
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.svc-hero-title {
  font-size: clamp(44px, 6.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink-900);
  margin-bottom: 24px;
  text-wrap: balance;
}
.svc-hero-title-italic {
  font-style: italic;
  color: var(--mauve-deep);
}
.svc-hero-script {
  font-family: var(--font-script);
  font-size: 38px;
  color: var(--gold);
  line-height: 1;
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 24px;
}
.svc-hero-blurb {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-500);
  max-width: 520px;
  margin-bottom: 40px;
}
.svc-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.svc-hero-trust {
  margin-top: 40px;
  font-size: 13px;
  color: var(--ink-500);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.svc-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.svc-hero-imagewrap {
  position: relative;
  aspect-ratio: 4/5;
}
.svc-hero-image {
  width: 100%; height: 100%;
  border-radius: 200px 200px 200px 200px / 260px 260px 240px 240px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.svc-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.svc-hero-image-medallion {
  position: absolute;
  bottom: -30px; left: -30px;
  width: 180px; height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid var(--cream);
  box-shadow: var(--shadow-lg);
}
.svc-hero-image-medallion img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 980px) {
  .svc-hero-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ---------- Detail: article ---------- */
.svc-article-section { position: relative; }
.svc-article {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.svc-article-side {
  position: sticky;
  top: 120px;
}
.svc-article-toc {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.svc-article-toc a {
  font-size: 13px;
  color: var(--ink-700);
  line-height: 1.5;
  padding-left: 12px;
  border-left: 1px solid var(--hairline);
  transition: color 0.3s, border-color 0.3s;
}
.svc-article-toc a:hover {
  color: var(--mauve-deep);
  border-left-color: var(--gold);
}
.svc-article-side-card {
  margin-top: 40px;
  padding: 24px;
  background: linear-gradient(135deg, #fdf5f3, #f7d9d9);
  border-radius: var(--r-md);
}
.svc-article-side-card p {
  font-size: 13px;
  color: var(--ink-700);
  line-height: 1.55;
  margin-bottom: 16px;
}
.svc-article-side-title {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.svc-article-body { min-width: 0; }
.svc-article-lead {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  color: var(--ink-900);
  font-style: italic;
  letter-spacing: -0.01em;
  margin-bottom: 56px;
  padding-left: 28px;
  border-left: 2px solid var(--gold);
  text-wrap: pretty;
}
.svc-article-section-block { margin-bottom: 56px; scroll-margin-top: 120px; }
.svc-article-h {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin-bottom: 20px;
}
.svc-article-num {
  color: var(--gold);
  font-style: italic;
  margin-right: 12px;
  font-size: 0.7em;
}
.svc-article-p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-700);
  text-wrap: pretty;
}
.svc-article-cta {
  margin-top: 24px;
  padding: 32px 36px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--ink-900), #4a2238);
  color: var(--cream);
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.svc-article-cta-script {
  font-family: var(--font-script);
  font-size: 30px;
  color: var(--gold-soft);
  line-height: 1;
}
.svc-article-cta-title {
  font-size: 22px;
  line-height: 1.2;
  margin-top: 4px;
  letter-spacing: -0.01em;
}
@media (max-width: 980px) {
  .svc-article { grid-template-columns: 1fr; gap: 40px; }
  .svc-article-side { position: relative; top: 0; }
}

/* ---------- Detail: includes ---------- */
.svc-includes-section {
  background: linear-gradient(180deg, #fdf5f3 0%, #faf4f4 100%);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 80px;
}
.svc-incl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.svc-incl-card {
  padding: 24px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--hairline);
  height: 100%;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: background 0.3s, border-color 0.3s;
}
.svc-incl-card:hover {
  background: #fff;
  border-color: var(--gold-soft);
}
.svc-incl-check {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--gold-soft));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svc-incl-text {
  font-size: 14px;
  color: var(--ink-900);
  line-height: 1.5;
  font-weight: 500;
}
@media (max-width: 980px) { .svc-incl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-incl-grid { grid-template-columns: 1fr; } }

/* ---------- Detail: experience ---------- */
.svc-exp-grid {
  display: grid;
  grid-template-columns: repeat(var(--exp-cols, 4), 1fr);
  gap: 28px;
  position: relative;
}
.svc-exp-grid[data-cols="3"] { --exp-cols: 3; }
.svc-exp-grid[data-cols="4"] { --exp-cols: 4; }
.svc-exp-grid[data-cols="5"] { --exp-cols: 5; }
.svc-exp-grid[data-cols="6"] { --exp-cols: 6; }
.svc-exp-line {
  position: absolute;
  top: 38px;
  left: 10%; right: 10%;
  height: 1px;
  background-image: linear-gradient(90deg, var(--gold) 50%, transparent 50%);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  z-index: 0;
}
.svc-exp-step { text-align: center; position: relative; }
.svc-exp-circle {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff 0%, #fdf5f3 100%);
  border: 1px solid var(--hairline);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.svc-exp-num {
  font-size: 26px;
  font-style: italic;
  color: var(--gold);
}
.svc-exp-title {
  font-size: 22px;
  margin-top: 20px;
  letter-spacing: -0.01em;
}
.svc-exp-body {
  margin: 10px auto 0;
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.6;
  max-width: 220px;
}
@media (max-width: 880px) {
  .svc-exp-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .svc-exp-line { display: none; }
}
@media (max-width: 480px) {
  .svc-exp-grid { grid-template-columns: 1fr; }
}

/* ---------- Detail: gallery ---------- */
.svc-gallery-section {
  background: linear-gradient(180deg, #fdf5f3 0%, #f7d9d9 100%);
  position: relative;
  overflow: hidden;
}
.svc-gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}
.svc-gallery-eyebrow {
  margin-bottom: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.svc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.svc-gal-card {
  display: block;
  aspect-ratio: 3/4;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.svc-gal-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.svc-gal-card:hover .svc-gal-img { transform: scale(1.06); }
@media (max-width: 880px) {
  .svc-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Detail: FAQ ---------- */
.svc-faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.svc-faq-side {
  position: sticky;
  top: 120px;
}
.svc-faq-eyebrow {
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.svc-faq-sub {
  margin-top: 18px;
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.6;
}
.svc-faq-list { min-width: 0; }
.svc-faq-row { border-bottom: 1px solid var(--hairline); }
.svc-faq-trigger {
  width: 100%;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 24px;
}
.svc-faq-q {
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.svc-faq-toggle {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink-900);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease, color 0.4s ease;
}
.svc-faq-toggle-minus { display: none; }
.svc-faq-row.is-open .svc-faq-toggle {
  background: var(--ink-900);
  color: var(--cream);
}
.svc-faq-row.is-open .svc-faq-toggle-plus { display: none; }
.svc-faq-row.is-open .svc-faq-toggle-minus { display: inline-flex; }
.svc-faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(.2,.8,.2,1);
}
.svc-faq-row.is-open .svc-faq-answer-wrap { max-height: 600px; }
.svc-faq-a {
  padding-bottom: 26px;
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.7;
  max-width: 620px;
}
@media (max-width: 880px) {
  .svc-faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .svc-faq-side { position: relative; top: 0; }
}

/* ---------- Detail: related ---------- */
.svc-related-section {
  background: linear-gradient(180deg, #faf4f4 0%, var(--cream) 100%);
}
.svc-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc-rel-card {
  display: block;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-sm);
  color: inherit;
}
.svc-rel-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.svc-rel-card:hover .svc-rel-img { transform: scale(1.06); }
.svc-rel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(42, 24, 34, 0.78) 100%);
}
.svc-rel-body {
  position: absolute;
  left: 28px; right: 28px; bottom: 28px;
  color: var(--cream);
}
.svc-rel-eyebrow { color: rgba(250, 244, 244, 0.7); margin-bottom: 8px; }
.svc-rel-title {
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.svc-rel-tagline {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 16px;
  line-height: 1.5;
}
.svc-rel-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}
@media (max-width: 980px) {
  .svc-related-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* ---------- Detail: final CTA ---------- */
.svc-final-cta-section { padding: 100px 0; position: relative; overflow: hidden; }
.svc-final-cta {
  position: relative;
  background: linear-gradient(135deg, #2a1822 0%, #4a2238 50%, #2a1822 100%);
  border-radius: var(--r-xl);
  padding: 100px 56px;
  text-align: center;
  overflow: hidden;
  color: var(--cream);
}
.svc-final-cta-bg {
  position: absolute; inset: 0;
  background: var(--svc-cta-bg) center/cover no-repeat;
  opacity: 0.18;
  mix-blend-mode: luminosity;
}
.svc-final-cta-inner { position: relative; }
.svc-final-cta-script {
  font-family: var(--font-script);
  font-size: 56px;
  color: var(--gold-soft);
  transform: rotate(-3deg);
  display: inline-block;
  line-height: 1;
  margin-bottom: 12px;
}
.svc-final-cta-title {
  font-size: clamp(36px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.title-italic-gold {
  font-style: italic;
  color: var(--gold-soft);
}
.svc-final-cta-sub {
  font-size: 18px;
  color: rgba(250, 244, 244, 0.75);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.svc-final-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.svc-final-cta-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  border-color: rgba(250, 244, 244, 0.2);
}
.svc-final-cta-trust {
  margin-top: 40px;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  color: rgba(250, 244, 244, 0.6);
  font-size: 13px;
}
.svc-final-cta-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Home: services preview ---------- */
.services-preview-section { position: relative; overflow: hidden; }
.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 24px;
}
.services-preview-grid .svc-card { grid-column: auto; }
@media (max-width: 980px) {
  .services-preview-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* ---------- Previous Work showcase (homepage) ---------- */
.pw-showcase { display: flex; flex-direction: column; gap: 40px; }
.pw-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-xs);
  text-decoration: none;
  color: inherit;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
.pw-row:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pw-row__img { overflow: hidden; aspect-ratio: 3/2; }
.pw-row__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.pw-row:hover .pw-row__img img { transform: scale(1.05); }
.pw-row__body {
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px 48px;
}
.pw-row__title {
  font-size: 28px; line-height: 1.2; letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.pw-row__subtitle {
  font-size: 15px; color: var(--ink-500); line-height: 1.6;
  margin-bottom: 20px; font-style: italic;
}
.pw-row__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--gold);
  margin-top: auto;
}
.pw-row--flip .pw-row__img { order: 2; }
.pw-row--flip .pw-row__body { order: 1; }
@media (max-width: 760px) {
  .pw-row { grid-template-columns: 1fr; }
  .pw-row--flip .pw-row__img { order: 0; }
  .pw-row--flip .pw-row__body { order: 0; }
  .pw-row__body { padding: 28px 24px; }
  .pw-row__title { font-size: 22px; }
}

/* ============================================================
   Contact page
   ============================================================ */
.contact-section {
  padding: 60px 0 120px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--blush-50) 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 1020px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* ---- Form card ---- */
.contact-form-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 640px) {
  .contact-form-card { padding: 30px 22px; border-radius: var(--r-md); }
}
.contact-form-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(232, 201, 168, 0.35), rgba(168, 124, 184, 0.0) 40%, rgba(232, 197, 208, 0.25));
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 1px;
}

.contact-form-head { margin-bottom: 28px; }
.contact-form-title {
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.contact-form-sub {
  color: var(--ink-500);
  font-size: 15px;
}

.contact-form-error {
  background: var(--blush-100);
  border: 1px solid var(--rose-deep);
  color: var(--ink-900);
  padding: 12px 16px;
  border-radius: var(--r-sm);
  margin-bottom: 18px;
  font-size: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-grid .field-full { grid-column: 1 / -1; }
@media (max-width: 640px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid .field-full { grid-column: auto; }
}

.field-error {
  color: #a83b5a;
  font-size: 12.5px;
  margin-top: 2px;
}

.contact-form-foot {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.contact-fineprint {
  color: var(--ink-500);
  font-size: 12.5px;
  max-width: 360px;
  line-height: 1.5;
}
.contact-submit {
  padding: 16px 28px;
  font-size: 14px;
}

/* ---- Honeypot: visually + accessibly hidden ---- */
.lp-hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ---- Side info ---- */
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}
@media (max-width: 1020px) {
  .contact-side { position: static; }
}

.contact-side-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.contact-side-card-soft {
  background: linear-gradient(160deg, var(--blush-50) 0%, var(--cream-deep) 100%);
  border-color: rgba(168, 124, 184, 0.14);
}

.contact-side-title {
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.contact-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}
.contact-step-num {
  font-size: 22px;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
  padding-top: 2px;
}
.contact-step-title {
  font-weight: 500;
  color: var(--ink-900);
  margin-bottom: 2px;
  font-size: 14.5px;
}
.contact-steps p {
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.55;
}

.contact-link {
  display: block;
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--mauve-deep);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  word-break: break-word;
}
.contact-link:hover { color: var(--gold-deep); }

.contact-meta {
  color: var(--ink-500);
  font-size: 13.5px;
  margin-bottom: 20px;
}

.contact-promises {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-700);
}
.contact-promises span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---- Success state ---- */
.contact-success {
  text-align: center;
  padding: 20px 8px 4px;
}
.contact-success-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(200, 155, 108, 0.35);
}
.contact-success-title {
  font-size: clamp(34px, 4.2vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.contact-success-sub {
  color: var(--ink-500);
  max-width: 440px;
  margin: 0 auto 28px;
  font-size: 15.5px;
  line-height: 1.55;
}

/* ============================================================
   About page
   ============================================================ */

/* ---------- Page header ---------- */
.about-page-header {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #fdf5f3 0%, var(--cream) 100%);
}
.about-page-title {
  font-size: clamp(44px, 6.5vw, 88px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.about-page-sub {
  font-size: 18px;
  color: var(--ink-500);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- Intro (story + collage) ---------- */
.about-intro-section { padding-top: 100px; padding-bottom: 100px; }
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-intro-collage { position: relative; }
.about-intro-portrait {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 5;
}
.about-intro-portrait img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-intro-inset {
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid var(--cream);
  box-shadow: var(--shadow-lg);
}
.about-intro-inset img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-intro-script {
  position: absolute;
  top: -30px;
  left: -20px;
  font-family: var(--font-script);
  font-size: 64px;
  color: var(--gold);
  transform: rotate(-8deg);
}
.about-intro-headline {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.about-intro-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--ink-700);
  font-size: 17px;
  line-height: 1.65;
}

@media (max-width: 880px) {
  .about-intro { grid-template-columns: 1fr; gap: 60px; }
  .about-intro-inset { width: 150px; height: 150px; right: 10px; bottom: -30px; }
  .about-intro-script { font-size: 48px; }
}

/* ---------- Values ---------- */
.about-values-section {
  background: linear-gradient(180deg, var(--cream) 0%, #fdf5f3 100%);
  position: relative;
  overflow: hidden;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.about-value-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--r-md);
  border: 1px solid var(--hairline);
  backdrop-filter: blur(10px);
  height: 100%;
}
.about-value-title {
  font-size: 26px;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.about-value-num {
  color: var(--gold);
  font-style: italic;
  margin-right: 8px;
}
.about-value-body {
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.6;
}
@media (max-width: 880px) {
  .about-values-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

/* ---------- Owner spotlight ---------- */
.about-owner-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fdf5f3 0%, var(--cream) 100%);
}
.about-owner-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.about-owner-portrait-wrap { position: relative; }
.about-owner-portrait {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 5;
}
.about-owner-portrait img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1);
}
.about-owner-portrait:hover img { transform: scale(1.03); }
.about-owner-signature {
  position: absolute;
  bottom: -28px;
  right: -16px;
  font-family: var(--font-script);
  font-size: 44px;
  color: var(--gold);
  transform: rotate(-6deg);
  background: var(--cream);
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.about-owner-copy { display: flex; flex-direction: column; gap: 18px; }
.about-owner-name {
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
.about-owner-role {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 6px;
}
.about-owner-bio {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--ink-700);
  font-size: 17px;
  line-height: 1.65;
}
@media (max-width: 880px) {
  .about-owner-card { grid-template-columns: 1fr; gap: 56px; }
  .about-owner-signature { font-size: 36px; right: 10px; bottom: -22px; }
}

/* ============================================================
   Page prose — styles HTML the admin types into a Page.content
   field (h2/h3, p, ul/ol, blockquote, <details> for FAQ).
   Kept in the existing serif/blush/gold vocabulary so DB-driven
   pages feel native next to the hardcoded ones.
   ============================================================ */
.page-prose {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink-700);
  font-size: 17px;
  line-height: 1.75;
}
.page-prose > * + * { margin-top: 1.2em; }
.page-prose p.lead,
.page-prose .lead {
  font-family: var(--serif, "Playfair Display", Georgia, serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: var(--ink-900, #2a2027);
  margin-bottom: 1.6em;
}
.page-prose h2 {
  font-family: var(--serif, "Playfair Display", Georgia, serif);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--ink-900, #2a2027);
  margin-top: 2em;
  margin-bottom: 0.6em;
}
.page-prose h3 {
  font-family: var(--serif, "Playfair Display", Georgia, serif);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--ink-900, #2a2027);
  margin-top: 1.6em;
  margin-bottom: 0.5em;
}
.page-prose ul,
.page-prose ol {
  padding-left: 1.4em;
}
.page-prose li + li { margin-top: 0.4em; }
.page-prose a {
  color: var(--gold, #b48a52);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-prose blockquote {
  border-left: 3px solid var(--gold, #b48a52);
  padding: 0.4em 0 0.4em 1.2em;
  font-family: var(--serif, "Playfair Display", Georgia, serif);
  font-style: italic;
  color: var(--ink-900, #2a2027);
  font-size: 19px;
}
.page-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Includes checklist — admin can type:
   <ul class="page-includes"><li>...</li></ul>  */
.page-prose ul.page-includes {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.page-prose ul.page-includes li {
  position: relative;
  padding-left: 28px;
  margin-top: 0;
  font-size: 15px;
  line-height: 1.5;
}
.page-prose ul.page-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-soft, #f0e2cf);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 6.5 L5 9 L10 3' stroke='%23b48a52' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 640px) {
  .page-prose ul.page-includes { grid-template-columns: 1fr; }
}

/* FAQ accordion — admin types <details><summary>Q</summary><p>A</p></details>.
   Native HTML, no JS required. */
.page-prose details {
  border-top: 1px solid var(--rule, #ece3da);
  padding: 18px 0;
  margin-top: 0;
}
.page-prose details:last-of-type {
  border-bottom: 1px solid var(--rule, #ece3da);
}
.page-prose details > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--serif, "Playfair Display", Georgia, serif);
  font-size: 19px;
  line-height: 1.35;
  color: var(--ink-900, #2a2027);
}
.page-prose details > summary::-webkit-details-marker { display: none; }
.page-prose details > summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gold, #b48a52);
  color: var(--gold, #b48a52);
  font-size: 18px;
  line-height: 1;
  transition: transform .2s ease;
}
.page-prose details[open] > summary::after {
  content: "−";
  transform: rotate(180deg);
}
.page-prose details > p,
.page-prose details > div {
  margin-top: 12px;
  color: var(--ink-700);
}

/* Per-section figure inside Landing-template article body. */
.page-section-figure {
  margin: 18px 0 22px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--rule, #ece3da);
}
.page-section-figure img {
  display: block;
  width: 100%;
  height: auto;
}
