:root {
  --brick: #8a4e3b;
  --plum-900: #5a4a63;
  --plum-800: #65556f;
  --plum-700: #4b3d53;
  --lavender-300: #c9c1d2;
  --lavender-200: #d5ced9;
  --lavender-100: #e3dde6;
  --cream-100: #f3ebdd;
  --cream-50: #faf7f2;
  --oak: #b8844d;
  --walnut: #6d4e3b;
  --iron: #2a2527;
  --sage-500: #7c846e;
  --sage-600: #6b7360;
  --sage-400: #8f9784;
  --text-900: #2a2527;
  --text-800: #3d3438;
  --text-inverse: #faf7f2;
  --placeholder: #6f666c;
  --plum: var(--plum-900);
  --plum-rich: var(--plum-800);
  --aubergine: var(--plum-700);
  --silver-lavender: var(--lavender-300);
  --lavender-mist: var(--lavender-100);
  --mauve-wash: var(--lavender-200);
  --cream: var(--cream-100);
  --stone: color-mix(in srgb, var(--oak) 55%, var(--cream-100) 45%);
  --stone-deep: var(--walnut);
  --sage: var(--sage-500);
  --sage-deep: var(--sage-600);
  --moss: var(--sage-400);
  --text: var(--text-900);
  --text-plum: var(--text-800);
  --muted: color-mix(in srgb, var(--text-800) 86%, var(--plum-700) 14%);
  --heading: color-mix(in srgb, var(--text-900) 62%, var(--plum-700) 28%, var(--brick) 10%);
  --lead-fg: var(--text-800);
  --lavender: var(--lavender-300);
  --bg: var(--cream-50);
  --bg-alt: color-mix(in srgb, var(--cream-100) 55%, var(--lavender-100) 25%, var(--oak) 8%);
  --surface: color-mix(in srgb, var(--cream-50) 82%, var(--cream-100) 18%);
  --surface-2: color-mix(in srgb, var(--cream-100) 70%, var(--lavender-100) 18%, var(--cream-50) 12%);
  --line: rgba(90, 74, 99, 0.16);
  --line-soft: rgba(90, 74, 99, 0.1);
  --line-lavender: rgba(201, 193, 210, 0.5);
  --primary: var(--plum-900);
  --primary-dark: var(--plum-800);
  --accent: var(--lavender-300);
  --shadow: 0 24px 56px rgba(75, 61, 83, 0.14);
  --shadow-soft: 0 12px 36px rgba(75, 61, 83, 0.09);
  --shadow-cta-hover: 0 16px 32px rgba(75, 61, 83, 0.22);
  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-scroll-shadow: 0 12px 32px rgba(75, 61, 83, 0.1);
  --overlay-warm: rgba(243, 235, 221, 0.2);
  --overlay-plum: rgba(90, 74, 99, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background-color: var(--cream-50);
  background-image:
    radial-gradient(1100px 560px at 6% -4%, color-mix(in srgb, var(--brick) 12%, var(--cream-100) 88%), transparent 58%),
    radial-gradient(880px 480px at 96% 8%, color-mix(in srgb, var(--plum-900) 8%, var(--lavender-100) 92%), transparent 60%),
    radial-gradient(760px 420px at 50% 100%, color-mix(in srgb, var(--oak) 18%, var(--cream-100) 82%), transparent 55%),
    linear-gradient(180deg, color-mix(in srgb, var(--cream-100) 35%, var(--cream-50) 65%) 0%, var(--cream-50) 42%, var(--cream-50) 100%);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
ul { margin: 0; padding-left: 1.15rem; }
iframe { width: 100%; border: 0; }

.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.section { padding: 4.75rem 0; }
.alt-bg {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--lavender-mist) 58%, var(--mauve-wash) 42%) 0%, color-mix(in srgb, var(--silver-lavender) 20%, var(--lavender-mist) 48%, var(--cream) 32%) 100%);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.alt-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(88% 52% at 50% 0%, color-mix(in srgb, white 36%, transparent), transparent 70%),
    radial-gradient(55% 48% at 0% 100%, color-mix(in srgb, var(--plum) 10%, transparent), transparent 68%),
    radial-gradient(50% 40% at 100% 100%, color-mix(in srgb, var(--aubergine) 12%, transparent), transparent 70%);
  opacity: 0.96;
}
.alt-bg > .container { position: relative; z-index: 1; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--brick) 38%, var(--plum-900) 62%);
  margin-bottom: 0.85rem;
}
.lead {
  font-size: 1.1rem;
  max-width: 60ch;
  color: var(--lead-fg);
}
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--heading);
  line-height: 1.08;
  margin: 0 0 1rem;
  font-weight: 600;
}
h1 { font-size: clamp(2.85rem, 6vw, 5.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.45rem, 2vw, 1.8rem); }
.small-note { font-size: 0.92rem; color: color-mix(in srgb, var(--muted) 88%, var(--text-plum) 12%); }

.media-note {
  margin-top: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(58, 44, 52, 0.55);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(252, 250, 247, 0.92);
  border-bottom: 1px solid rgba(184, 172, 200, 0.38);
}
.nav-wrap {
  position: relative;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand img { width: min(220px, 48vw); }
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-weight: 600;
}
.site-nav a:not(.btn) { position: relative; color: var(--text-800); }
.site-nav a:not(.btn):hover { color: var(--plum-800); }
.site-nav a.active:not(.btn) {
  color: var(--plum-900);
  font-weight: 700;
}
.site-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -0.35rem;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--plum), var(--aubergine) 40%, var(--silver-lavender));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .28s ease;
}
.site-nav a:hover::after,
.site-nav a.active::after { transform: scaleX(1); }
.nav-toggle {
  display: none;
  background: color-mix(in srgb, var(--lavender-mist) 35%, transparent);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 0.45rem 0.7rem;
  font-size: 1.35rem;
  color: var(--plum);
}

.btn, button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  background: var(--plum-900);
  color: var(--text-inverse);
  font-weight: 700;
  border: 1px solid var(--plum-900);
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(91, 45, 79, 0.18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover {
  transform: translateY(-1px);
  background: var(--plum-800);
  border-color: var(--plum-800);
  box-shadow: var(--shadow-cta-hover);
}
.btn-sm { padding: 0.75rem 1.1rem; }
.btn-outline {
  background: transparent;
  color: var(--plum-900);
  border: 1px solid var(--sage-500);
  box-shadow: none;
  transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn-outline:hover {
  background: rgba(122, 134, 111, 0.08);
  border-color: var(--sage-500);
  color: var(--sage-600);
}
.hero-actions .btn-outline {
  background: var(--cream-50);
  padding-inline: 1.55rem;
}
.btn-outline.light {
  color: var(--text-inverse);
  border: 1px solid rgba(249, 246, 242, 0.55);
  background: rgba(91, 45, 79, 0.2);
}
.btn-outline.light:hover {
  background: rgba(106, 61, 96, 0.45);
  border-color: rgba(249, 246, 242, 0.7);
  color: #fff;
}
.text-link {
  color: var(--plum);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2rem;
}
.text-link:hover { color: var(--plum-rich); }

.hero-actions, .stack-actions, .hero-points, .contact-list { display: flex; gap: 1rem; }
.hero-actions, .stack-actions { flex-wrap: wrap; align-items: center; }
.hero-points, .contact-list {
  flex-direction: column;
  padding: 0;
  list-style: none;
}
.hero-points li::before, .contact-list li::before {
  content: '• ';
  color: color-mix(in srgb, var(--plum) 55%, var(--sage) 45%);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 0;
  display: grid;
  align-items: center;
  padding: 2rem 0 2.75rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--cream-100) 70%, var(--lavender-100) 30%) 0%, var(--cream-50) 52%, color-mix(in srgb, var(--oak) 14%, var(--cream-100) 86%) 100%),
    radial-gradient(85% 65% at 100% 0%, color-mix(in srgb, var(--brick) 10%, transparent), transparent 58%),
    radial-gradient(65% 50% at 0% 100%, var(--overlay-plum), transparent 62%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: radial-gradient(70% 55% at 50% 100%, color-mix(in srgb, var(--plum-700) 6%, transparent), transparent 68%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  color: var(--plum-900);
  font-size: clamp(2.35rem, 4.8vw, 4.1rem);
}
.hero .eyebrow {
  color: color-mix(in srgb, var(--brick) 42%, var(--plum-800) 58%);
}

.hero-grid, .split-layout, .two-col, .footer-grid, .feature-grid, .testimonial-grid, .services-grid, .value-grid {
  display: grid;
  gap: 2rem;
}
.hero-grid { grid-template-columns: 1.05fr 0.95fr; align-items: start; gap: 2rem; }
.hero-copy { max-width: 640px; }
.hero-copy--framed {
  padding: 1.1rem 1.3rem 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(217, 210, 228, 0.42), rgba(252, 250, 247, 0.96) 48%, rgba(252, 250, 247, 0.99) 100%);
  border: 1px solid var(--line-lavender);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.hero .lead {
  font-size: 1.15rem;
  line-height: 1.58;
  color: color-mix(in srgb, var(--lead-fg) 90%, var(--text-900) 10%);
}
.hero-points {
  font-size: 0.95rem;
  line-height: 1.52;
  color: color-mix(in srgb, var(--muted) 86%, var(--text-800) 14%);
}
.hero-copy--framed .hero-actions {
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}
.hero-actions .btn:not(.btn-outline) {
  box-shadow: 0 6px 16px rgba(75, 61, 83, 0.1);
}
.hero-actions .btn:not(.btn-outline):hover {
  box-shadow: 0 8px 20px rgba(75, 61, 83, 0.13);
}
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  max-width: min(520px, 100%);
  justify-self: end;
}

.hero-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: visible;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(180deg, var(--cream-50), var(--cream-100));
  position: relative;
  padding: 0.75rem 0.85rem;
}
.hero-figure::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(165deg, var(--overlay-warm) 0%, transparent 48%, var(--overlay-plum) 100%);
}
.hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.hero-card { width: 100%; }
.card, .feature-card, .testimonial, .info-panel, .quote-card, .service-block, .value-card, .contact-panel, .contact-form {
  background: linear-gradient(
    168deg,
    color-mix(in srgb, var(--surface) 78%, var(--lavender-mist) 18%, var(--mauve-wash) 4%) 0%,
    color-mix(in srgb, var(--surface) 88%, var(--silver-lavender) 12%) 100%
  );
  border: 1px solid color-mix(in srgb, var(--silver-lavender) 32%, var(--plum) 8%, var(--line-soft));
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.glass {
  background: linear-gradient(160deg, rgba(217, 210, 228, 0.35), rgba(252, 250, 247, 0.98) 55%, rgba(247, 242, 236, 0.95) 100%);
  padding: 1.8rem;
  position: relative;
}
.card.glass {
  border-color: var(--line-lavender);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.card--visit {
  border-top: 3px solid var(--brick);
  border-left: 3px solid var(--plum-900);
}
.card--visit h2 {
  color: var(--plum-900);
}
.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 color-mix(in srgb, white 72%, var(--lavender-mist) 28%);
}
.intro-strip {
  border-top: 1px solid color-mix(in srgb, var(--silver-lavender) 34%, var(--plum) 6%, var(--line-soft));
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--lavender-mist) 48%, var(--mauve-wash) 22%, var(--cream) 30%) 0%,
    color-mix(in srgb, var(--cream) 42%, var(--bg) 58%) 100%
  );
}
.features {
  position: relative;
  background:
    radial-gradient(1040px 500px at 50% -12%, color-mix(in srgb, var(--silver-lavender) 26%, var(--mauve-wash) 12%, transparent), transparent 70%),
    linear-gradient(180deg, color-mix(in srgb, var(--lavender-mist) 22%, transparent), color-mix(in srgb, var(--mauve-wash) 8%, transparent));
}
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
.narrow-gap { gap: 3rem; }
.section-heading { margin-bottom: 2.25rem; max-width: 700px; }
.feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-card, .testimonial, .value-card { padding: 1.65rem; }
.feature-card, .testimonial {
  transition: border-color .22s ease, box-shadow .22s ease;
}
.feature-card:hover, .testimonial:hover {
  border-color: color-mix(in srgb, var(--silver-lavender) 45%, var(--plum) 15%, var(--line-soft));
  box-shadow: var(--shadow);
}
.feature-card h3, .value-card h3 {
  margin-bottom: 0.6rem;
  color: color-mix(in srgb, var(--text) 78%, var(--plum-rich) 22%);
}
.feature-card h3 {
  padding-top: 0.35rem;
  border-top: 3px solid color-mix(in srgb, var(--plum) 52%, var(--moss) 48%);
}
.split-layout { grid-template-columns: 1.05fr 0.95fr; align-items: start; }
.price-list.compact {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0;
}
.price-list.compact div, .service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(95deg, color-mix(in srgb, var(--lavender-mist) 38%, var(--surface) 62%) 0%, color-mix(in srgb, var(--mauve-wash) 12%, var(--surface) 88%) 100%);
  border: 1px solid color-mix(in srgb, var(--silver-lavender) 28%, var(--plum) 6%, var(--line-soft));
  border-left: 3px solid color-mix(in srgb, var(--plum) 35%, var(--silver-lavender) 65%);
  box-shadow: inset 0 1px 0 color-mix(in srgb, white 45%, transparent);
}
.info-panel {
  padding: 1.6rem;
  background: linear-gradient(165deg, color-mix(in srgb, var(--lavender-mist) 30%, var(--surface) 70%), var(--surface));
  border-color: color-mix(in srgb, var(--silver-lavender) 32%, var(--line-soft));
}
.quote-card {
  padding: 2rem;
  background:
    linear-gradient(158deg, color-mix(in srgb, var(--lavender-mist) 68%, white) 0%, color-mix(in srgb, var(--surface) 82%, var(--mauve-wash) 18%) 52%, color-mix(in srgb, var(--surface) 90%, var(--silver-lavender) 10%) 100%),
    radial-gradient(120% 88% at 100% 0%, color-mix(in srgb, var(--silver-lavender) 32%, transparent), transparent 58%);
  border-color: color-mix(in srgb, var(--silver-lavender) 38%, var(--plum) 10%, var(--line-soft));
  box-shadow:
    inset 4px 0 0 color-mix(in srgb, var(--sage) 32%, var(--lavender-mist) 68%),
    inset 0 -1px 0 color-mix(in srgb, var(--plum) 6%, transparent),
    var(--shadow-soft);
}
.quote-card blockquote {
  margin: 0 0 1rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.12;
  color: var(--text-900);
}
.quote-card p { color: var(--text-800); }
.testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.testimonials .section-heading h2 {
  color: var(--plum-900);
}
.testimonials .section-heading .eyebrow {
  color: var(--lavender-300);
}
.testimonial {
  position: relative;
  padding-top: 2rem;
  background: linear-gradient(180deg, rgba(252, 250, 247, 0.98) 0%, rgba(217, 210, 228, 0.12) 100%);
  border: 1px solid var(--line-lavender);
  border-top: 3px solid color-mix(in srgb, var(--plum-900) 55%, var(--lavender-300) 45%);
  border-bottom: 1px solid rgba(122, 134, 111, 0.22);
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 0.45rem;
  left: 1.1rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(122, 134, 111, 0.4);
  pointer-events: none;
}
.testimonial p {
  position: relative;
  z-index: 1;
  color: var(--text-900);
}
.testimonial strong {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--plum-900);
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.atmosphere-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.atmosphere-copy { max-width: 62ch; }
.atmosphere-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.figure-frame {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--silver-lavender) 40%, var(--plum) 12%, var(--line-soft));
  box-shadow: var(--shadow-soft);
  background: var(--surface-2);
  position: relative;
}
.figure-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.figure-frame::after { display: none; }

.services-strip {
  margin: 0 0 2.5rem;
  border-radius: var(--radius-lg);
  overflow: visible;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.2rem;
  background: linear-gradient(180deg, var(--cream-50), var(--cream-100));
  max-height: none;
}
.services-strip img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.info-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}


.editorial-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--silver-lavender) 38%, var(--line-soft));
  box-shadow: var(--shadow);
  align-self: stretch;
  position: relative;
}
.editorial-figure::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, color-mix(in srgb, var(--lavender-mist) 22%, transparent), transparent 50%, color-mix(in srgb, var(--plum) 18%, transparent));
  opacity: 0.4;
  
}
.editorial-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.contact-visual {
  margin: 0 0 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--silver-lavender) 32%, var(--line-soft));
  box-shadow: var(--shadow-soft);
  position: relative;
}
.contact-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(165deg, color-mix(in srgb, var(--lavender-mist) 18%, transparent) 0%, transparent 42%, color-mix(in srgb, var(--plum) 22%, var(--aubergine) 78%, transparent) 100%);
  opacity: 0.4;
  
}
.contact-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.page-hero.small {
  padding: 6rem 0 3rem;
  border-bottom: 1px solid color-mix(in srgb, var(--silver-lavender) 32%, var(--plum) 8%, var(--line-soft));
  position: relative;
  background:
    radial-gradient(1020px 500px at 8% 0%, color-mix(in srgb, var(--lavender-mist) 72%, var(--plum) 5%, transparent), transparent 58%),
    radial-gradient(760px 420px at 92% 18%, color-mix(in srgb, var(--mauve-wash) 32%, transparent), transparent 64%),
    linear-gradient(180deg, color-mix(in srgb, var(--lavender-mist) 40%, var(--cream) 60%) 0%, var(--bg) 100%);
}
.page-hero.small::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--plum) 25%, var(--silver-lavender) 75%), transparent);
  opacity: 0.85;
}

.map-section {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--lavender-mist) 38%, var(--cream) 62%) 0%,
    color-mix(in srgb, var(--silver-lavender) 12%, var(--bg) 88%) 100%
  );
  border-top: 1px solid var(--line-soft);
}

.cta-band { padding: 2rem 0; }
.cta-band-inner {
  padding: 2.25rem 2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(128deg, color-mix(in srgb, var(--plum) 92%, black) 0%, var(--plum-rich) 32%, var(--aubergine) 78%, color-mix(in srgb, var(--aubergine) 55%, var(--silver-lavender) 45%) 100%);
  color: #fdfcfa;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid color-mix(in srgb, var(--silver-lavender) 28%, white 22%, transparent);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.cta-band-inner::before {
  content: '';
  position: absolute;
  inset: -40% -20% auto 40%;
  height: 140%;
  background: radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--lavender-mist) 28%, transparent), transparent 62%);
  opacity: 0.4;
  pointer-events: none;
}
.cta-band-inner > * { position: relative; z-index: 1; }
.cta-band-inner p, .cta-band-inner h2 { color: #fdfcfa; }
.cta-band-inner .eyebrow { color: color-mix(in srgb, var(--lavender-mist) 88%, white); }

.map-frame {
  position: relative;
  border-radius: var(--radius);
  padding: 3px;
  overflow: hidden;
  background: linear-gradient(145deg, color-mix(in srgb, var(--plum) 22%, var(--silver-lavender) 78%), color-mix(in srgb, var(--mauve-wash) 40%, var(--silver-lavender) 60%));
  box-shadow: var(--shadow-soft);
}
.map-frame iframe {
  display: block;
  min-height: 420px;
  border-radius: calc(var(--radius) - 3px);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, white 35%, transparent);
  border: 0;
}
.map-frame--subtle {
  background: linear-gradient(145deg, color-mix(in srgb, var(--silver-lavender) 55%, var(--lavender-mist) 45%), color-mix(in srgb, var(--stone-deep) 18%, var(--silver-lavender) 82%));
}
.services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-block, .contact-panel, .contact-form { padding: 1.7rem; }
.service-block {
  background: linear-gradient(
    172deg,
    color-mix(in srgb, var(--surface) 70%, var(--lavender-mist) 22%, var(--mauve-wash) 8%) 0%,
    color-mix(in srgb, var(--surface) 88%, var(--cream) 12%) 100%
  );
  border-color: color-mix(in srgb, var(--silver-lavender) 34%, var(--plum) 10%, var(--line-soft));
}
.service-block h2 {
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  padding-bottom: 0.65rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid color-mix(in srgb, var(--plum) 42%, var(--silver-lavender) 58%);
  color: color-mix(in srgb, var(--text) 78%, var(--aubergine) 22%);
}
.service-block p:last-child { margin-bottom: 0; }
.value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.value-card {
  border-left: 3px solid color-mix(in srgb, var(--sage-deep) 28%, var(--silver-lavender) 72%);
}
.value-card h3 {
  color: color-mix(in srgb, var(--text) 76%, var(--plum-rich) 24%);
}
.hours-box {
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  background: rgba(217, 210, 228, 0.35);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(184, 172, 200, 0.4);
  border-left: 3px solid var(--sage-500);
}
.contact-form { display: grid; gap: 0.85rem; }
.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--plum-900);
  margin-bottom: -0.15rem;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(91, 45, 79, 0.18);
  padding: 0.95rem 1.05rem;
  font: inherit;
  color: var(--text-900);
  background: var(--cream-50);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--placeholder);
  opacity: 1;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--sage-500);
  box-shadow: 0 0 0 3px rgba(122, 134, 111, 0.16);
}

.pricing-notice-bar {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: color-mix(in srgb, var(--cream-100) 42%, var(--lavender-100) 38%, var(--cream-50) 20%);
  padding: 1.05rem 0;
  text-align: center;
}
.pricing-notice-bar p {
  margin: 0 auto;
  max-width: 42rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--text-800) 70%, var(--plum-800) 30%);
  letter-spacing: 0.01em;
}
.pricing-notice-inline {
  margin: 1.35rem 0 0;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: center;
  color: color-mix(in srgb, var(--text-800) 72%, var(--plum-800) 28%);
  letter-spacing: 0.01em;
}
.site-footer {
  position: relative;
  background:
    linear-gradient(188deg, color-mix(in srgb, var(--aubergine) 38%, var(--text) 62%) 0%, color-mix(in srgb, var(--plum-rich) 45%, var(--text) 55%) 38%, color-mix(in srgb, var(--text) 78%, var(--plum) 22%) 72%, #120f14 100%);
  color: color-mix(in srgb, white 84%, var(--lavender-mist) 16%);
  padding-top: 3.5rem;
  border-top: 1px solid color-mix(in srgb, var(--silver-lavender) 26%, var(--plum) 12%, transparent);
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--silver-lavender) 22%, transparent);
}
.site-footer::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 120px;
  pointer-events: none;
  background: radial-gradient(80% 100% at 50% 0%, color-mix(in srgb, var(--lavender-mist) 14%, transparent), transparent 70%);
  opacity: 0.9;
}
.site-footer .container { position: relative; z-index: 1; }
.site-footer p, .site-footer a, .site-footer h3 { color: color-mix(in srgb, white 84%, var(--lavender-mist) 16%); }
.site-footer a:hover { color: color-mix(in srgb, white 92%, var(--lavender-mist) 8%); }
.site-footer h3 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
  color: color-mix(in srgb, var(--lavender-mist) 35%, white 65%);
}
.footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; align-items: start; }
.footer-logo { width: min(220px, 100%); margin-bottom: 0.75rem; }
.footer-bottom {
  border-top: 1px solid color-mix(in srgb, var(--plum) 35%, transparent);
  margin-top: 2rem;
  padding: 1rem 0 1.5rem;
}
.left { justify-content: flex-start; }

/* Page-specific atmosphere */
.about-mission {
  position: relative;
  overflow: visible;
  background:
    radial-gradient(900px 480px at 0% 30%, color-mix(in srgb, var(--lavender-mist) 45%, transparent), transparent 62%),
    radial-gradient(700px 400px at 100% 80%, color-mix(in srgb, var(--plum) 9%, transparent), transparent 65%),
    linear-gradient(180deg, color-mix(in srgb, var(--cream) 40%, var(--bg) 60%) 0%, var(--bg) 100%);
}
.about-mission::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, color-mix(in srgb, var(--mauve-wash) 12%, transparent), transparent 45%);
  opacity: 0.85;
}
.about-mission > .container { position: relative; z-index: 1; }
.about-values {
  border-top: 1px solid color-mix(in srgb, var(--plum) 10%, var(--line-soft));
  border-bottom: 1px solid color-mix(in srgb, var(--silver-lavender) 22%, var(--line-soft));
}
.section--contact-main { border-top: 1px solid var(--line-soft); }
.section--contact-main .split-layout { align-items: stretch; }
.section--contact-main .contact-panel,
.section--contact-main .contact-form {
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 193, 210, 0.35);
  background: var(--cream-50);
}
.contact-panel {
  background: linear-gradient(168deg, color-mix(in srgb, var(--surface) 72%, var(--lavender-mist) 22%, var(--mauve-wash) 6%) 0%, color-mix(in srgb, var(--surface) 90%, var(--silver-lavender) 10%) 100%);
}
.section--contact-main .contact-panel h2 { color: var(--plum-900); }
.section--contact-main .contact-panel .contact-list strong { color: var(--sage-500); font-weight: 700; }
.section--contact-main .contact-panel .contact-list,
.section--contact-main .contact-panel .contact-list a { color: var(--text-900); }
.section--contact-main .contact-panel .hours-box h3 { color: var(--plum-900); }
.section--contact-main .contact-visual::after { display: none; }
.section--contact-main .contact-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.contact-landmarks-section {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, rgba(243, 235, 221, 0.38), rgba(250, 247, 242, 0.96) 52%, rgba(243, 235, 221, 0.88));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.contact-landmarks-section .eyebrow { color: var(--sage-500); }
.contact-landmarks-section h2 { color: var(--plum-900); }
.contact-landmarks-section > .container > .split-layout > div:first-child p { color: var(--text-800); }
.landmark-list { margin: 1.25rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.55rem; }
.landmark-list li { position: relative; padding-left: 1.15rem; color: var(--text-800); font-size: 0.98rem; }
.landmark-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 1px;
  background: var(--sage-500);
  opacity: 0.85;
}
.contact-map-block { display: flex; flex-direction: column; gap: 1rem; }
.contact-map-card {
  background: var(--cream-50);
  border: 1px solid rgba(201, 193, 210, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.75rem;
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--sage-500);
}
.contact-map-card .eyebrow { color: var(--sage-500); }
.contact-map-card h2 { color: var(--plum-900); font-size: clamp(1.55rem, 2.4vw, 2rem); margin-bottom: 0.35rem; }
.contact-map-lead { color: var(--text-800); margin-bottom: 0.5rem; font-weight: 600; }
.contact-map-note { font-size: 0.88rem; color: var(--text-800); margin-bottom: 0; }
.contact-map-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.25rem; align-items: center; }
.contact-map-preview {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(90, 74, 99, 0.1);
  min-height: 220px;
  background-color: var(--cream-100);
  background-image:
    linear-gradient(90deg, rgba(201, 193, 210, 0.14) 1px, transparent 1px),
    linear-gradient(180deg, rgba(201, 193, 210, 0.12) 1px, transparent 1px),
    linear-gradient(145deg, rgba(90, 74, 99, 0.05), rgba(243, 235, 221, 0.98));
  background-size: 28px 28px, 28px 28px, auto;
  background-position: center;
}
.contact-map-preview::before {
  content: '';
  position: absolute;
  left: 50%; top: 46%;
  z-index: 1;
  width: 13px; height: 13px;
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  background: var(--plum-900);
  box-shadow: 0 6px 14px rgba(75, 61, 83, 0.22);
  pointer-events: none;
}
.contact-map-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(201, 193, 210, 0.12), transparent 42%, rgba(90, 74, 99, 0.06));
}
.services-close {
  padding: 4.5rem 0 5.25rem;
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg) 88%, var(--lavender-mist) 12%) 0%, color-mix(in srgb, var(--lavender-mist) 24%, var(--mauve-wash) 18%, var(--cream) 58%) 100%);
  border-top: 1px solid color-mix(in srgb, var(--silver-lavender) 28%, var(--line-soft));
}
.services-close-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.services-close-inner .hero-actions { justify-content: center; }
.booking-stage {
  border-top: 1px solid color-mix(in srgb, var(--silver-lavender) 26%, var(--line-soft));
  background: radial-gradient(900px 400px at 50% 0%, color-mix(in srgb, var(--lavender-mist) 38%, transparent), transparent 70%), linear-gradient(180deg, var(--bg) 0%, color-mix(in srgb, var(--cream) 55%, var(--lavender-mist) 45%) 100%);
}
.page-hero.small.page-appointments-intro {
  padding-bottom: 2.5rem;
  background: linear-gradient(140deg, rgba(227, 221, 230, 0.6), rgba(250, 247, 242, 0.92));
  border-bottom: 1px solid var(--line-soft);
}
.page-appointments-intro h1 { color: var(--plum-900); }
.page-appointments-intro .eyebrow { color: var(--sage-500); }
.page-appointments-intro .lead { color: var(--text-800); }
.booking-context { margin-bottom: 2rem; }
.booking-context-panel {
  padding: 1.75rem 1.85rem;
  border-radius: var(--radius-lg);
  background: var(--cream-50);
  border: 1px solid rgba(201, 193, 210, 0.35);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.booking-context-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--plum), color-mix(in srgb, var(--silver-lavender) 70%, var(--plum) 30%));
  border-radius: 4px 0 0 4px;
  pointer-events: none;
}
.booking-context-panel > * { position: relative; }
.booking-context-panel h2 { font-size: clamp(1.5rem, 2.5vw, 1.95rem); margin-bottom: 0.85rem; color: var(--plum-900); }
.booking-context-panel .booking-meta { margin: 0; padding: 0; list-style: none; }
.booking-context-panel .booking-meta li {
  margin-bottom: 0.55rem;
  padding-left: 0.85rem;
  border-left: 2px solid color-mix(in srgb, var(--sage) 35%, var(--silver-lavender) 65%);
  color: var(--text-800);
}
.booking-context-panel .booking-meta li:last-child { margin-bottom: 0; }
.booking-context-panel .booking-meta strong { color: var(--sage-500); font-weight: 700; }
.booking-toolbar {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  margin-bottom: 0.65rem;
  border-radius: calc(var(--radius-lg) - 10px);
  background: linear-gradient(95deg, rgba(227, 221, 230, 0.35), rgba(250, 247, 242, 0.98));
  border: 1px solid rgba(201, 193, 210, 0.35);
}
.booking-toolbar p { margin: 0; flex: 1 1 200px; font-size: 0.92rem; color: var(--text-800); }
.booking-shell {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 1.15rem 1.15rem 1.25rem;
  border: 1px solid rgba(90, 74, 99, 0.1);
  box-shadow: 0 20px 48px rgba(75, 61, 83, 0.1);
  background: var(--cream-50);
  position: relative;
}
.booking-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(201, 193, 210, 0.2);
  z-index: 1;
}
.booking-shell iframe {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  min-height: 640px;
  height: 920px;
  border: 0;
  border-radius: calc(var(--radius-lg) - 18px);
  background: var(--cream-50);
}
@media (max-width: 820px) {
  .booking-shell iframe { min-height: 560px; height: 820px; }
}
.booking-support {
  margin-top: 2.75rem;
  padding: 1.75rem 1.85rem;
  border-radius: var(--radius);
  background: linear-gradient(165deg, color-mix(in srgb, var(--lavender-mist) 38%, var(--surface) 62%) 0%, color-mix(in srgb, var(--mauve-wash) 15%, var(--surface) 85%) 100%);
  border: 1px solid color-mix(in srgb, var(--silver-lavender) 32%, var(--plum) 8%, var(--line-soft));
  border-left: 4px solid color-mix(in srgb, var(--plum) 40%, var(--sage-deep) 60%);
  box-shadow: var(--shadow-soft);
}
.booking-support h2 { font-size: clamp(1.45rem, 2.2vw, 1.75rem); margin-bottom: 0.65rem; }
.booking-support .btn { margin-top: 0.5rem; }
.appointments-map-strip {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line-soft);
}
.appointments-map-strip .contact-map-preview { min-height: 200px; }
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--plum) 55%, var(--silver-lavender));
  outline-offset: 3px;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
  .site-nav a:not(.btn)::after { transition: none; }
  .feature-card, .testimonial { transition: none; }
}
@media (max-width: 1024px) {
  .hero-grid, .split-layout, .two-col, .feature-grid, .testimonial-grid, .footer-grid, .services-grid, .value-grid, .atmosphere-layout {
    grid-template-columns: 1fr 1fr;
  }
  .hero-side { justify-self: stretch; width: 100%; }
  .feature-grid, .testimonial-grid, .services-grid, .value-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    background: color-mix(in srgb, var(--lavender-mist) 55%, var(--surface) 45%);
    border: 1px solid color-mix(in srgb, var(--silver-lavender) 30%, var(--line-soft));
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a:not(.btn)::after { display: none; }
  .hero, .page-hero.small { padding-top: 1.35rem; }
  .hero-grid, .split-layout, .two-col, .feature-grid, .testimonial-grid, .footer-grid, .services-grid, .value-grid, .atmosphere-layout {
    grid-template-columns: 1fr;
  }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  h1 { font-size: clamp(1.6rem, 6.5vw, 2.25rem); }
  .section { padding: 3.25rem 0; }
}
@media (max-width: 560px) {
  .container { width: min(calc(100% - 1.2rem), var(--container)); }
  .nav-wrap { min-height: 76px; }
  .brand img { width: min(180px, 55vw); }
  .glass, .feature-card, .testimonial, .quote-card, .info-panel, .service-block, .value-card, .contact-panel, .contact-form { padding: 1.25rem; }
  .btn, .btn-sm { width: 100%; }
  .hero-actions, .stack-actions { width: 100%; }
  .price-list.compact div, .service-row { flex-direction: column; align-items: flex-start; }
  .map-frame { padding: 2px; }
  .map-frame iframe { min-height: 320px; }
  .hero-copy--framed { padding: 1.25rem 1.3rem 1.15rem; }
}
.cta-band-inner {
  background: linear-gradient(128deg, color-mix(in srgb, var(--plum-900) 92%, var(--plum-700) 8%) 0%, var(--plum-700) 42%, color-mix(in srgb, var(--brick) 28%, var(--plum-700) 72%) 100%);
}

/* Editorial salon plates — full frame, controlled scale */
.salon-plate,
.salon-photo {
  margin: 0;
  padding: 0.7rem 0.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--plum-900) 12%, var(--line-soft));
  box-shadow: var(--shadow-soft);
  background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
  overflow: visible;
  line-height: 0;
}
.salon-plate img,
.salon-photo img,
.hero-figure img,
.figure-frame img,
.editorial-figure img,
.services-strip img,
.contact-visual img,
.services-close-visual img,
.booking-intro-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.salon-plate::after,
.salon-photo::after,
.hero-figure::after,
.figure-frame::after,
.editorial-figure::after,
.contact-visual::after,
.services-strip::after,
.booking-intro-visual figure::after { display: none; }

/* Hero */
.hero .hero-grid { grid-template-columns: 1.05fr 0.95fr; align-items: start; }
.hero .hero-figure,
.hero .salon-plate--hero { max-width: min(520px, 100%); margin-inline: auto; }
.hero .hero-figure img,
.hero .salon-plate--hero img { max-height: min(640px, 72vh); }

/* Homepage atmosphere */
.salon-plate--atmosphere,
.figure-frame--salon.salon-photo { max-width: min(640px, 100%); margin-inline: auto; }
.salon-plate--atmosphere img { max-height: 480px; }

/* Homepage mirror accent */
.salon-plate--accent,
.figure-frame--mirror.salon-photo { max-width: min(300px, 100%); margin-inline: auto; }
.salon-plate--accent img { max-height: 360px; }

/* About */
.about-mission .split-layout {
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .about-mission .split-layout {
    grid-template-columns: minmax(260px, 42%) 1fr;
  }
}
.about-mission .salon-plate--about-main,
.about-mission .editorial-figure { max-width: min(540px, 100%); }
.about-mission .salon-plate--about-main img,
.about-mission .editorial-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.about-story .salon-plate--about-inset,
.about-story .editorial-figure--detail { max-width: min(280px, 100%); margin: 0 0 1rem; }
.about-story .salon-plate--about-inset img,
.about-story .editorial-figure--detail img { max-height: 380px; }
@media (min-width: 900px) {
  .about-story .split-layout { grid-template-columns: 1fr 1.05fr; align-items: start; }
}

/* Services */
.services-strip.salon-photo,
.salon-plate--services-top {
  max-width: min(580px, 100%);
  margin: 0 auto 2rem;
}
.services-strip img,
.salon-plate--services-top img { max-height: 400px; }
.services-close-visual.salon-photo,
.salon-plate--services-close {
  max-width: min(700px, 100%);
  margin: 0 auto 1.5rem;
}
.services-close-visual img,
.salon-plate--services-close img { max-height: 360px; }
@media (min-width: 900px) {
  .services-preview .split-layout { grid-template-columns: 1.05fr 0.95fr; align-items: start; }
}

/* Contact — utility first */
.section--contact-main .split-layout {
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 900px) {
  .section--contact-main .split-layout { grid-template-columns: 1.05fr 0.95fr; }
}
.contact-visual-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.15rem;
}
.salon-plate--contact-primary,
.contact-visual--exterior { max-width: min(480px, 100%); flex: 1 1 280px; }
.salon-plate--contact-primary img,
.contact-visual--exterior img { max-height: 380px; }
.salon-plate--contact-inset,
.contact-visual--lounge { max-width: min(240px, 100%); flex: 0 1 200px; opacity: 0.98; }
.salon-plate--contact-inset img,
.contact-visual--lounge img { max-height: 220px; }

/* Appointments — one modest image */
.booking-intro-visual {
  display: block;
  margin-bottom: 1.25rem;
}
.booking-intro-visual .booking-intro-secondary { display: none; }
.salon-plate--booking,
.booking-intro-primary {
  max-width: min(500px, 100%);
  margin: 0 auto 1.25rem;
}
.salon-plate--booking img,
.booking-intro-primary img { max-height: 380px; }
@media (min-width: 900px) {
  .booking-context-panel {
    display: grid;
    grid-template-columns: minmax(260px, 340px) 1fr;
    gap: 1.5rem;
    align-items: start;
  }
  .booking-intro-visual {
    grid-column: 2;
    margin: 0;
    align-self: start;
  }
  .booking-intro-visual .salon-plate--booking,
  .booking-intro-visual .booking-intro-primary {
    margin: 0;
    max-width: min(460px, 100%);
  }
}

@media (max-width: 899px) {
  .hero .hero-grid { grid-template-columns: 1fr; }
  .hero .hero-side { max-width: min(400px, 100%); justify-self: center; margin-inline: auto; }
  .atmosphere-layout { grid-template-columns: 1fr; }
}
/* Salon photo lightbox */
.lightbox-trigger {
  cursor: zoom-in;
  position: relative;
}
.lightbox-trigger:focus {
  outline: none;
}
.lightbox-trigger:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--plum-900) 55%, var(--silver-lavender));
  outline-offset: 4px;
}
@media (hover: hover) {
  .lightbox-trigger::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: color-mix(in srgb, var(--plum-700) 8%, transparent);
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
    z-index: 1;
  }
  .lightbox-trigger:hover::before {
    opacity: 1;
  }
}

.salon-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.salon-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.salon-lightbox[hidden] {
  display: flex;
}
.salon-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--iron) 72%, var(--plum-700) 28%);
  opacity: 0.88;
  cursor: pointer;
}
.salon-lightbox__panel {
  position: relative;
  z-index: 1;
  max-width: min(96vw, 1100px);
  max-height: min(92vh, 900px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(8px) scale(0.985);
  transition: transform 0.28s ease;
}
.salon-lightbox.is-open .salon-lightbox__panel {
  transform: translateY(0) scale(1);
}
.salon-lightbox__figure {
  margin: 0;
  padding: 0.65rem 0.75rem 0.55rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--cream-50), var(--cream-100));
  border: 1px solid color-mix(in srgb, var(--plum-900) 14%, var(--line-soft));
  box-shadow: 0 28px 64px rgba(42, 37, 39, 0.35);
  max-width: 100%;
  max-height: min(88vh, 820px);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: auto;
}
.salon-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: min(78vh, 720px);
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.salon-lightbox__caption {
  margin: 0.65rem 0 0.15rem;
  padding: 0 0.25rem;
  max-width: 52ch;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-800);
  text-align: center;
}
.salon-lightbox__caption:empty {
  display: none;
}
.salon-lightbox__close {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid color-mix(in srgb, var(--cream-50) 40%, var(--line-soft));
  border-radius: 50%;
  background: color-mix(in srgb, var(--plum-900) 88%, var(--iron) 12%);
  color: var(--cream-50);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: background 0.2s ease, transform 0.2s ease;
}
.salon-lightbox__close:hover {
  background: var(--plum-800);
  transform: scale(1.04);
}
.salon-lightbox__close:focus-visible {
  outline: 2px solid var(--cream-50);
  outline-offset: 2px;
}
@media (max-width: 560px) {
  .salon-lightbox {
    padding: 0.75rem;
  }
  .salon-lightbox__close {
    top: 0.25rem;
    right: 0.25rem;
  }
  .salon-lightbox__img {
    max-height: min(72vh, 640px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .salon-lightbox,
  .salon-lightbox__panel {
    transition: none;
  }
}

/* —— Responsive tightening (stakeholder review) —— */

/* Tablet: avoid squeezed two-column hero */
@media (max-width: 1024px) {
  .hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }
  .hero .hero-side {
    max-width: min(440px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 820px) {
  .section { padding: 3.25rem 0; }
  .section-heading { margin-bottom: 1.5rem; }

  /* Shared page intros */
  .page-hero.small {
    padding: 2.35rem 0 1.35rem;
  }
  .page-hero.small h1 {
    font-size: clamp(1.55rem, 5.8vw, 2.15rem);
    line-height: 1.14;
    margin-bottom: 0.65rem;
  }
  .page-hero.small .lead {
    font-size: 1rem;
    line-height: 1.5;
    max-width: none;
  }

  h1 { font-size: clamp(1.6rem, 6.5vw, 2.25rem); }

  /* PRIORITY 1 — Homepage hero */
  .hero {
    padding: 1.35rem 0 1.65rem;
  }
  .hero .hero-grid {
    gap: 1rem;
  }
  .hero h1 {
    font-size: clamp(1.62rem, 6.2vw, 2rem);
    line-height: 1.14;
    margin-bottom: 0.55rem;
  }
  .hero .eyebrow {
    margin-bottom: 0.5rem;
    font-size: 0.72rem;
  }
  .hero .lead {
    font-size: 1.02rem;
    line-height: 1.54;
    margin-bottom: 0.8rem;
  }
  .hero-copy--framed {
    padding: 0.95rem 1rem 0.85rem;
  }
  .hero-copy--framed .hero-actions {
    margin-top: 0.25rem;
    margin-bottom: 1.05rem;
  }
  .hero-points {
    gap: 0.35rem;
    font-size: 0.9rem;
    line-height: 1.45;
    margin-top: 0.35rem;
  }
  .hero-points li::before {
    font-size: 0.75rem;
  }
  .hero-side {
    gap: 0.6rem;
    max-width: min(360px, 100%);
  }
  .hero .hero-figure,
  .hero .salon-plate--hero {
    padding: 0.55rem 0.65rem;
  }
  .hero .hero-figure img,
  .hero .salon-plate--hero img {
    max-height: min(300px, 40vh);
  }
  .hero-card .card.glass {
    padding: 1.1rem 1.15rem;
  }
  .hero-card .card--visit h2 {
    font-size: 1.25rem;
    margin-bottom: 0.45rem;
  }
  .hero-card .card--visit p {
    font-size: 0.92rem;
    margin-bottom: 0.45rem;
  }
  .hero-card .small-note {
    font-size: 0.82rem;
    margin-bottom: 0;
  }

  .intro-strip { padding-top: 0; }
  .intro-strip + .section,
  .features { padding-top: 2.75rem; padding-bottom: 2.75rem; }

  .salon-plate--atmosphere img { max-height: 280px; }
  .salon-plate--accent img { max-height: 220px; }

  /* PRIORITY 2 — Services */
  .page-services .page-hero.small,
  main > .page-hero.small:first-of-type {
    padding-bottom: 1rem;
  }
  .page-hero.small + .section {
    padding-top: 1rem;
    padding-bottom: 1.5rem;
  }
  .services-strip.salon-photo,
  .salon-plate--services-top {
    margin-bottom: 1rem;
    max-width: min(420px, 100%);
  }
  .services-strip img,
  .salon-plate--services-top img {
    max-height: 220px;
  }
  .services-grid {
    gap: 1.15rem;
  }
  .services-close {
    padding: 2.75rem 0 3rem;
  }
  .services-close-visual img,
  .salon-plate--services-close img {
    max-height: 240px;
  }

  /* PRIORITY 3 — About */
  .about-mission .split-layout {
    gap: 1.25rem;
  }
  .about-mission .salon-plate--about-main,
  .about-mission .editorial-figure {
    max-width: min(340px, 100%);
    margin-inline: auto;
  }
  .about-mission .salon-plate--about-main img,
  .about-mission .editorial-figure img {
    max-height: 260px;
  }
  .about-story .salon-plate--about-inset,
  .about-story .editorial-figure--detail {
    max-width: min(220px, 100%);
  }
  .about-story .salon-plate--about-inset img,
  .about-story .editorial-figure--detail img {
    max-height: 240px;
  }
  .about-values .value-card,
  .quote-card {
    border-color: color-mix(in srgb, var(--plum-900) 22%, var(--line-soft));
    background: linear-gradient(165deg, var(--cream-50) 0%, color-mix(in srgb, var(--cream-100) 80%, var(--lavender-100) 20%) 100%);
  }
  .quote-card blockquote {
    color: var(--text-900);
  }

  /* PRIORITY 4 — Contact */
  .section--contact-main {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .contact-visual-row {
    margin-bottom: 0.85rem;
    gap: 0.65rem;
  }
  .salon-plate--contact-primary,
  .contact-visual--exterior {
    max-width: min(320px, 100%);
    flex: 1 1 100%;
  }
  .salon-plate--contact-primary img,
  .contact-visual--exterior img {
    max-height: 260px;
  }
  .salon-plate--contact-inset,
  .contact-visual--lounge {
    max-width: min(160px, 46%);
    flex: 0 1 140px;
  }
  .salon-plate--contact-inset img,
  .contact-visual--lounge img {
    max-height: 140px;
  }
  .contact-landmarks-section {
    padding: 2.75rem 0;
    background: linear-gradient(135deg, color-mix(in srgb, var(--cream-100) 70%, var(--lavender-100) 30%), var(--cream-50) 48%, color-mix(in srgb, var(--cream-100) 55%, white 45%) 100%);
    border-top: 1px solid color-mix(in srgb, var(--plum-900) 14%, var(--line-soft));
  }
  .contact-landmarks-section h2,
  .contact-landmarks-section p,
  .landmark-list li {
    color: var(--text-900);
  }
  .contact-map-card {
    background: var(--cream-50);
    border: 1px solid color-mix(in srgb, var(--plum-900) 16%, var(--line-soft));
    box-shadow: var(--shadow-soft);
  }

  /* PRIORITY 5 — Appointments */
  .page-appointments-intro.page-hero.small {
    padding-bottom: 1.1rem;
  }
  .booking-stage {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }
  .booking-context {
    margin-bottom: 1.25rem;
  }
  .booking-context-panel {
    padding: 1.2rem 1.25rem;
  }
  .booking-context-panel h2 {
    font-size: 1.35rem;
    margin-bottom: 0.55rem;
  }
  .booking-intro-visual {
    margin-bottom: 0.85rem;
  }
  .salon-plate--booking,
  .booking-intro-primary {
    max-width: min(340px, 100%);
    margin-bottom: 0.85rem;
  }
  .salon-plate--booking img,
  .booking-intro-primary img {
    max-height: 220px;
  }
  .booking-toolbar {
    padding: 0.65rem 0.75rem;
    margin-bottom: 0.5rem;
  }
  .booking-toolbar p {
    font-size: 0.85rem;
  }
  .booking-shell {
    padding: 0.75rem;
  }
  .booking-shell iframe {
    min-height: 520px;
    height: 640px;
  }
  .booking-support {
    margin-top: 1.5rem;
    padding: 1.25rem 1.3rem;
  }
  .page-home .hero h1 {
    text-wrap: balance;
    max-width: 20em;
  }
  .page-home .hero-side {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
  }
  .page-home .hero-card {
    order: 1;
  }
  .page-home .hero-figure,
  .page-home .salon-plate--hero {
    order: 2;
  }
  .about-mission .split-layout {
    display: flex;
    flex-direction: column;
  }
  .about-mission .split-layout .editorial-figure,
  .about-mission .split-layout .salon-plate--about-main {
    order: 2;
  }
  .about-mission .split-layout > div {
    order: 1;
  }
  .page-services .section:first-of-type .container:first-child {
    padding-bottom: 0;
  }
  .appointments-map-strip {
    margin-top: 1.75rem;
    padding-top: 1.75rem;
  }
}

@media (max-width: 560px) {
  .section { padding: 2.65rem 0; }

  .hero {
    padding: 1.1rem 0 1.35rem;
  }
  .hero h1 {
    font-size: 1.58rem;
    letter-spacing: -0.01em;
  }
  .hero .lead {
    font-size: 0.98rem;
  }
  .hero-copy--framed {
    padding: 0.85rem 0.9rem 0.8rem;
  }
  .hero .hero-figure img,
  .hero .salon-plate--hero img {
    max-height: min(260px, 36vh);
  }
  .hero-side {
    max-width: 100%;
  }

  .page-hero.small {
    padding: 2rem 0 1rem;
  }
  .page-hero.small h1 {
    font-size: 1.48rem;
  }

  .services-strip img,
  .salon-plate--services-top img {
    max-height: 200px;
  }

  .booking-shell iframe {
    min-height: 480px;
    height: 580px;
  }
}

@media (min-width: 821px) and (max-width: 1024px) {
  .hero h1 {
    font-size: clamp(1.72rem, 3.2vw, 2.2rem);
    line-height: 1.16;
  }
  .hero .lead {
    font-size: 1.06rem;
  }
  .hero .hero-figure img,
  .hero .salon-plate--hero img {
    max-height: min(340px, 42vh);
  }
  .hero .hero-side {
    max-width: min(400px, 92%);
  }
  .page-hero.small {
    padding: 3rem 0 1.75rem;
  }
  .services-strip img,
  .salon-plate--services-top img {
    max-height: 300px;
  }
}

/* —— QA refinement (stakeholder lock) —— */
@media (max-width: 820px) {
  .page-home .hero .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "lead"
      "actions"
      "visit"
      "photo"
      "points";
    gap: 0.85rem;
  }
  .page-home .hero .hero-copy--framed,
  .page-home .hero .hero-side {
    display: contents;
  }
  .page-home .hero .eyebrow { grid-area: eyebrow; }
  .page-home .hero h1 {
    grid-area: title;
    text-wrap: pretty;
    max-width: 18em;
  }
  .page-home .hero .lead {
    grid-area: lead;
    max-width: 34em;
  }
  .page-home .hero .hero-actions {
    grid-area: actions;
    margin-bottom: 0.85rem;
  }
  .page-home .hero .hero-card { grid-area: visit; }
  .page-home .hero .hero-figure,
  .page-home .hero .salon-plate--hero { grid-area: photo; }
  .page-home .hero .hero-points { grid-area: points; margin-top: 0.55rem; }
  .page-home .hero .hero-card,
  .page-home .hero .hero-figure,
  .page-home .hero .salon-plate--hero {
    order: unset;
  }

  .page-services .section:first-of-type > .container + .container {
    margin-top: -0.35rem;
  }
  .page-services .services-strip.salon-photo,
  .page-services .salon-plate--services-top {
    margin-top: 0;
  }
  .page-services .page-hero.small + .section {
    padding-top: 0.65rem;
  }

  .page-appointments .booking-context {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .page-appointments .booking-shell { order: 1; margin-top: 0; }
  .page-appointments .booking-context-panel { order: 2; padding: 0.95rem 1rem; }
  .page-appointments .booking-meta { font-size: 0.88rem; gap: 0.3rem; }
  .page-appointments .booking-meta li { line-height: 1.4; }
  .page-appointments .booking-intro-visual { order: 3; margin-bottom: 0; }
  .page-appointments .booking-support { order: 4; }
  .page-appointments .page-appointments-intro .lead { margin-bottom: 0; }
  .page-appointments .booking-stage { padding-top: 1rem; }
  .page-appointments .booking-shell iframe {
    min-height: 460px;
    height: 540px;
  }
}

@media (max-width: 560px) {
  .page-home .hero-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.28rem;
  }
  .page-home .hero h1 {
    font-size: 1.52rem;
    max-width: 16em;
  }
  .page-home .hero .lead {
    font-size: 0.96rem;
    line-height: 1.5;
  }
  .page-appointments .booking-shell iframe {
    min-height: 420px;
    height: 500px;
  }
}

@media (min-width: 821px) and (max-width: 1024px) {
  .page-home .hero h1 {
    font-size: clamp(1.68rem, 2.8vw, 2.05rem);
    text-wrap: balance;
    max-width: 14em;
  }
}
.form-status {
  margin-bottom: 0.85rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.45;
}
.form-status.is-success {
  background: color-mix(in srgb, var(--sage-500) 12%, var(--cream-50));
  border: 1px solid color-mix(in srgb, var(--sage-500) 35%, var(--line-soft));
  color: var(--text-900);
}
.form-status.is-error {
  background: color-mix(in srgb, #8b2942 8%, var(--cream-50));
  border: 1px solid color-mix(in srgb, #8b2942 28%, var(--line-soft));
  color: var(--text-900);
}