/* ==========================================================================
   Studio Luxe — demo site styles
   Self-contained stylesheet. No external assets beyond Google Fonts.
   ========================================================================== */

:root {
  --blush: #f6e8e4;
  --blush-soft: #faf2ef;
  --blush-deep: #eeD9d2;
  --paper: #fdfaf8;
  --charcoal: #23201f;
  --charcoal-soft: #3a3533;
  --ink-muted: #6f6661;
  --gold: #b8946a;
  --gold-deep: #9a7a52;
  --gold-pale: #e6d3bc;
  --line: rgba(35, 32, 31, 0.14);
  --line-gold: rgba(184, 148, 106, 0.45);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Century Gothic", Futura, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 18px 50px -24px rgba(35, 32, 31, 0.28);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }

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

::selection { background: var(--gold-pale); color: var(--charcoal); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

h1 em, h2 em, h3 em, .wm em { font-style: italic; color: var(--gold-deep); }

.container {
  width: min(1140px, 100% - 3rem);
  margin-inline: auto;
}

/* ---- Shared atoms ------------------------------------------------------ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: var(--gold);
}

.eyebrow--center::after {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: var(--gold);
}

.section-head { max-width: 46rem; }
.section-head h2 { font-size: clamp(2.1rem, 4.2vw, 3rem); margin: 0.9rem 0 0.8rem; }
.section-head p { color: var(--ink-muted); }
.section-head--center { margin-inline: auto; text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 2.3rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--blush-soft);
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--charcoal); border-color: rgba(35, 32, 31, 0.4); }
.btn--ghost:hover { background: var(--charcoal); border-color: var(--charcoal); color: var(--blush-soft); }

.btn--light { background: var(--blush-soft); border-color: var(--blush-soft); color: var(--charcoal); }
.btn--light:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }

.rule { border: none; border-top: 1px solid var(--line); }

/* ---- Header ------------------------------------------------------------ */

.topbar {
  background: var(--charcoal);
  color: rgba(246, 232, 228, 0.82);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.55rem 1rem;
}

.topbar span { color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(253, 250, 248, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.05rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  color: var(--gold-deep);
  flex: none;
}

.wm {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}

.wm small {
  display: block;
  font-family: var(--sans);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.3rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

.site-nav > a:not(.btn) {
  position: relative;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  padding: 0.4rem 0;
  transition: color 0.3s var(--ease);
}

.site-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.site-nav > a:not(.btn):hover { color: var(--charcoal); }
.site-nav > a:not(.btn):hover::after,
.site-nav > a.active::after { transform: scaleX(1); }

.site-nav > a.active { color: var(--charcoal); font-weight: 500; }

.nav-phone { white-space: nowrap; }
.nav-phone::before { content: "·"; color: var(--gold); margin-right: 2.1rem; }

.btn--nav { padding: 0.7rem 1.6rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--charcoal);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---- Hero (home) ------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(58rem 30rem at 85% -10%, rgba(184, 148, 106, 0.16), transparent 60%),
    linear-gradient(160deg, var(--blush-soft) 0%, var(--blush) 58%, var(--blush-deep) 100%);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 3rem;
  align-items: center;
  padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(4rem, 8vw, 6.5rem);
}

.hero h1 {
  font-size: clamp(2.9rem, 6.4vw, 5.1rem);
  margin: 1.2rem 0 1.4rem;
  max-width: 11em;
}

.hero-lede {
  max-width: 33rem;
  color: var(--ink-muted);
  font-size: 1.1rem;
  margin-bottom: 2.4rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-gold);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.hero-art { position: relative; display: grid; place-items: center; min-height: 320px; }

.hero-medallion {
  width: min(380px, 88%);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.75), transparent 52%),
    linear-gradient(150deg, #f3ddd5 0%, var(--blush-deep) 55%, #e0c4b8 100%);
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.hero-medallion::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 1px dashed var(--line-gold);
}

.hero-medallion svg { width: 52%; height: auto; color: var(--charcoal); }

.hero-rotor {
  position: absolute;
  inset: -26px;
  animation: spin 50s linear infinite;
}

.hero-rotor text {
  font-family: var(--sans);
  font-size: 7.2px;
  font-weight: 500;
  letter-spacing: 3.1px;
  text-transform: uppercase;
  fill: var(--gold-deep);
}

@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .hero-rotor { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---- Sections ---------------------------------------------------------- */

.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section--blush { background: var(--blush-soft); border-block: 1px solid var(--line); }

/* Signature services trio */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
}

.svc-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  padding: 2.4rem 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--line-gold);
}

.svc-card .svc-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
}

.svc-card svg { width: 44px; height: 44px; color: var(--gold-deep); }

.svc-card h3 { font-size: 1.7rem; }

.svc-card p { color: var(--ink-muted); font-size: 0.98rem; flex: 1; }

.svc-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--gold);
  align-self: flex-start;
  padding-bottom: 0.25rem;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.svc-link:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

/* The studio */

.studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.studio-copy h2 { font-size: clamp(2.1rem, 4.2vw, 3rem); margin: 0.9rem 0 1.1rem; }
.studio-copy p { color: var(--ink-muted); margin-bottom: 1.1rem; }

.studio-points {
  list-style: none;
  margin-top: 1.6rem;
  display: grid;
  gap: 0.7rem;
}

.studio-points li {
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
  font-size: 0.98rem;
}

.studio-points li::before {
  content: "";
  flex: none;
  width: 1.3rem;
  height: 1px;
  background: var(--gold);
  transform: translateY(-0.3em);
}

.studio-panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 9.5rem;
  gap: 1.1rem;
}

.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-gold);
}

.panel::after {
  content: attr(data-label);
  position: absolute;
  left: 1.1rem;
  bottom: 0.9rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(35, 32, 31, 0.55);
}

.panel--tall { grid-row: span 2; }

.panel--mirror {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.9), transparent 46%),
    linear-gradient(170deg, #f7ece8, #e7cfc5 70%, #dcbfb2);
}

.panel--gold {
  background:
    radial-gradient(circle at 70% 80%, rgba(255, 244, 224, 0.8), transparent 55%),
    linear-gradient(140deg, #e6d3bc, #c9a87d 65%, var(--gold));
}

.panel--charcoal {
  background:
    radial-gradient(circle at 25% 20%, rgba(184, 148, 106, 0.35), transparent 55%),
    linear-gradient(155deg, #45403d, var(--charcoal) 70%);
}

.panel--charcoal::after { color: rgba(246, 232, 228, 0.6); }

.panel--linen {
  background:
    repeating-linear-gradient(90deg, rgba(184, 148, 106, 0.07) 0 2px, transparent 2px 9px),
    linear-gradient(160deg, #fbf5f1, #efe0d8);
}

/* Reviews */

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
}

.review {
  background: #fff;
  border: 1px solid var(--line);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.stars { display: inline-flex; gap: 0.25rem; color: var(--gold); }
.stars svg { width: 15px; height: 15px; }

.review blockquote {
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.45;
  flex: 1;
}

.review blockquote::before { content: "\201C"; color: var(--gold); margin-right: 0.1em; }
.review blockquote::after { content: "\201D"; color: var(--gold); margin-left: 0.1em; }

.review figcaption {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* Gift card strip */

.gift-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 4rem;
  padding: 2rem 2.4rem;
  border: 1px solid var(--line-gold);
  background: linear-gradient(120deg, var(--blush-soft), #fff 55%, var(--blush-soft));
}

.gift-strip h3 { font-size: 1.7rem; }
.gift-strip p { color: var(--ink-muted); font-size: 0.98rem; max-width: 34rem; }
.gift-strip svg { width: 46px; height: 46px; color: var(--gold-deep); flex: none; }
.gift-strip .gift-copy { display: flex; gap: 1.4rem; align-items: center; }

/* CTA band */

.cta-band {
  background:
    radial-gradient(40rem 18rem at 12% 0%, rgba(184, 148, 106, 0.22), transparent 60%),
    var(--charcoal);
  color: var(--blush-soft);
  text-align: center;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.cta-band .eyebrow { color: var(--gold); justify-content: center; }
.cta-band h2 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); margin: 1rem auto 1.1rem; max-width: 18em; }
.cta-band p { color: rgba(246, 232, 228, 0.72); max-width: 36rem; margin: 0 auto 2.3rem; }

/* ---- Page hero (interior pages) ---------------------------------------- */

.page-hero {
  background:
    radial-gradient(46rem 22rem at 90% -30%, rgba(184, 148, 106, 0.16), transparent 60%),
    linear-gradient(165deg, var(--blush-soft), var(--blush));
  border-bottom: 1px solid var(--line);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.page-hero h1 { font-size: clamp(2.6rem, 5.4vw, 4rem); margin: 1rem 0 0.9rem; }
.page-hero p { max-width: 40rem; color: var(--ink-muted); font-size: 1.08rem; }

/* ---- Services page ------------------------------------------------------ */

.menu-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.6fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2.6rem, 5vw, 3.6rem) 0;
}

.menu-section + .menu-section { border-top: 1px solid var(--line); }

.menu-intro .menu-kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-deep);
}

.menu-intro h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin: 0.35rem 0 0.7rem; }
.menu-intro p { color: var(--ink-muted); font-size: 0.98rem; max-width: 24rem; }

.price-list { list-style: none; display: grid; gap: 1.05rem; align-content: start; }

.price-row { display: flex; align-items: baseline; gap: 0.8rem; }

.price-name { font-family: var(--serif); font-size: 1.32rem; font-weight: 500; }

.price-note-inline {
  display: block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ink-muted);
  margin-top: 0.1rem;
}

.price-dots {
  flex: 1;
  border-bottom: 1px dotted var(--line-gold);
  transform: translateY(-0.3em);
  min-width: 1.5rem;
}

.price-amt {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  white-space: nowrap;
}

.menu-notes {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  border: 1px solid var(--line-gold);
  background: var(--blush-soft);
  padding: 2.2rem 2.4rem;
}

.menu-notes h3 { font-size: 1.6rem; margin-bottom: 1rem; }

.menu-notes ul { list-style: none; display: grid; gap: 0.75rem; }

.menu-notes li {
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
  color: var(--charcoal-soft);
  font-size: 0.96rem;
}

.menu-notes li::before {
  content: "";
  flex: none;
  width: 1.3rem;
  height: 1px;
  background: var(--gold);
  transform: translateY(-0.3em);
}

/* ---- Stylists page ------------------------------------------------------ */

.stylist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

.stylist-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.8rem;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  padding: 2.4rem 2.2rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.stylist-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  border-color: var(--line-gold);
}

.avatar { width: 96px; height: 96px; flex: none; }

.stylist-card h2 { font-size: 1.85rem; }

.stylist-title {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0.35rem 0 0.9rem;
}

.stylist-spec { font-size: 0.96rem; color: var(--charcoal-soft); }
.stylist-spec strong { font-weight: 500; }

.stylist-quip {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--ink-muted);
}

/* ---- Booking page ------------------------------------------------------- */

.book-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.book-form {
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(1.8rem, 4vw, 2.8rem);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 1.3rem; }

.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}

.field label .req { color: var(--gold-deep); }

.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
  border-radius: 0;
  width: 100%;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%239a7a52' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
}

.field textarea { resize: vertical; min-height: 6.5rem; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 148, 106, 0.18);
}

.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
  margin-top: 1.8rem;
}

.form-foot small { color: var(--ink-muted); font-size: 0.85rem; max-width: 20rem; }

.book-aside { display: grid; gap: 1.4rem; }

.aside-card {
  border: 1px solid var(--line-gold);
  background: var(--blush-soft);
  padding: 1.9rem 1.9rem;
}

.aside-card h3 { font-size: 1.45rem; margin-bottom: 0.7rem; }
.aside-card p, .aside-card li { color: var(--charcoal-soft); font-size: 0.94rem; }
.aside-card ul { list-style: none; display: grid; gap: 0.55rem; margin-top: 0.4rem; }
.aside-card li { display: flex; gap: 0.8rem; align-items: baseline; }
.aside-card li::before { content: ""; flex: none; width: 1.1rem; height: 1px; background: var(--gold); transform: translateY(-0.3em); }
.aside-card a { border-bottom: 1px solid var(--gold); }

/* Confirmation */

.confirmation {
  background: #fff;
  border: 1px solid var(--line-gold);
  padding: clamp(2.2rem, 5vw, 3.2rem);
  text-align: center;
  animation: rise 0.7s var(--ease) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.confirmation[hidden] { display: none; }

.confirmation svg { width: 56px; height: 56px; margin: 0 auto 1.2rem; color: var(--gold-deep); }

.confirmation h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 0.6rem; }

.confirmation > p { color: var(--ink-muted); max-width: 32rem; margin: 0 auto; }

.conf-code {
  display: inline-block;
  margin: 1.5rem auto 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid var(--line-gold);
  padding: 0.6rem 1.4rem;
}

.conf-details {
  margin: 1.8rem auto 0;
  max-width: 26rem;
  text-align: left;
  display: grid;
  gap: 0.7rem;
}

.conf-details div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px dotted var(--line-gold);
  padding-bottom: 0.55rem;
}

.conf-details dt {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.conf-details dd { font-family: var(--serif); font-size: 1.15rem; text-align: right; }

.conf-demo-note {
  margin-top: 1.8rem !important;
  font-size: 0.85rem !important;
  font-style: italic;
}

/* ---- Footer ------------------------------------------------------------- */

.site-footer {
  background: var(--charcoal);
  color: rgba(246, 232, 228, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding: clamp(3.5rem, 7vw, 5rem) 0 3rem;
}

.site-footer .wm { color: var(--blush-soft); }
.site-footer .wm small { color: var(--gold); }

.footer-blurb { margin-top: 1.1rem; font-size: 0.95rem; max-width: 22rem; }

.footer-h {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.footer-list { list-style: none; display: grid; gap: 0.55rem; font-size: 0.95rem; }

.footer-list a { transition: color 0.3s var(--ease); }
.footer-list a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(246, 232, 228, 0.14);
  padding: 1.4rem 0 5.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(246, 232, 228, 0.5);
}

/* ---- No404 badge -------------------------------------------------------- */

.n404-badge {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--charcoal);
  color: var(--blush-soft);
  border: 1px solid rgba(184, 148, 106, 0.55);
  border-radius: 999px;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 28px -10px rgba(35, 32, 31, 0.5);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.n404-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(35, 32, 31, 0.6);
}

.n404-badge strong { font-weight: 500; color: var(--gold); }

.n404-badge__dot {
  background: var(--gold);
  color: var(--charcoal);
  border-radius: 999px;
  padding: 0.18rem 0.6rem;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---- Reveal on scroll --------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- Responsive --------------------------------------------------------- */

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; min-height: 0; }
  .hero-medallion { width: min(250px, 70%); }
  .hero-rotor { inset: -18px; }
  .svc-grid, .review-grid { grid-template-columns: 1fr; }
  .studio-grid { grid-template-columns: 1fr; }
  .menu-section { grid-template-columns: 1fr; }
  .menu-intro p { max-width: none; }
  .stylist-grid { grid-template-columns: 1fr; }
  .book-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 800px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 1.5rem 1.4rem;
    box-shadow: 0 24px 40px -28px rgba(35, 32, 31, 0.35);
    display: none;
  }

  .site-nav.is-open { display: flex; animation: rise 0.4s var(--ease) both; }

  .site-nav > a:not(.btn) {
    width: 100%;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav > a:not(.btn)::after { display: none; }
  .nav-phone::before { display: none; }
  .btn--nav { margin-top: 1.1rem; width: 100%; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .container { width: min(1140px, 100% - 2.2rem); }
  .topbar { font-size: 0.6rem; letter-spacing: 0.16em; }
  .form-grid { grid-template-columns: 1fr; }
  .stylist-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gift-strip { padding: 1.7rem 1.5rem; }
  .price-name { font-size: 1.18rem; }
  .n404-badge { right: 0.8rem; bottom: 0.8rem; font-size: 0.68rem; }
}
