/* MAISON — Editorial Parisian luxe */
:root {
  --ink: #161310;
  --ink-soft: #2b261f;
  --paper: #f4efe8;
  --paper-2: #ece5d8;
  --paper-3: #ddd2bf;
  --line: #d6cab4;
  --line-strong: #9b8d76;
  --muted: #6e6557;
  --accent: #8a6b3f;        /* warm bronze, used sparingly */
  --accent-deep: #5d4727;
  --success: #355c3a;

  --display: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--paper); color: var(--ink); }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
section { scroll-margin-top: 88px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ===== LOAD + REVEAL ANIMATIONS ===== */
@keyframes loadFade {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes loadImage {
  from { opacity: 0; transform: scale(1.03); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes navDrop {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.load-fade {
  opacity: 0;
  animation: loadFade 1s cubic-bezier(.22,.61,.36,1) forwards;
}
.load-image {
  opacity: 0;
  animation: loadImage 1.4s cubic-bezier(.22,.61,.36,1) 0.2s forwards;
}
.hero-line { display: block; }
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(.22,.61,.36,1), transform 0.9s cubic-bezier(.22,.61,.36,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
img { display: block; max-width: 100%; }

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

.display { font-family: var(--display); font-weight: 400; letter-spacing: -0.01em; }
.italic { font-style: italic; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--muted);
}
.rule {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--ink);
  vertical-align: middle;
  margin: 0 14px 5px 0;
}

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 40px;
  background: rgba(244, 239, 232, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  animation: navDrop 0.8s cubic-bezier(.22,.61,.36,1) both;
}
.nav-left, .nav-right { display: flex; gap: 28px; align-items: center; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; }
.nav-right { justify-content: flex-end; }
.nav-link { color: var(--ink); transition: color .2s; cursor: pointer; }
.nav-link:hover { color: var(--accent); }
.brand {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.38em;
  font-weight: 400;
  padding-left: 0.38em;
}
.brand-sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-align: center;
  margin-top: -2px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s ease;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn:active { transform: translateY(1px); }
.btn.ghost {
  background: transparent; color: var(--ink);
}
.btn.ghost:hover { background: var(--ink); color: var(--paper); }
.btn.tiny { padding: 9px 18px; font-size: 10px; letter-spacing: 0.2em; }
.btn.light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn.light:hover { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn[disabled] { opacity: 0.35; cursor: not-allowed; }

/* ===== HERO ===== */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: calc(100vh - 80px);
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  padding: 80px 64px 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-headline {
  font-family: var(--display);
  font-size: clamp(56px, 8.5vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  font-weight: 400;
  margin: 0;
}
.hero-headline em { font-style: italic; color: var(--accent-deep); }
.hero-meta { display: flex; flex-direction: column; gap: 18px; max-width: 420px; }
.hero-foot {
  display: flex; justify-content: space-between; align-items: end;
  font-size: 12px; color: var(--muted);
  border-top: 1px solid var(--line); padding-top: 18px;
}
.hero-foot strong { color: var(--ink); font-weight: 400; letter-spacing: 0.08em; }
.hero-image {
  position: relative;
  overflow: hidden;
}
.placeholder {
  position: relative;
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(0,0,0,0.04) 14px 15px),
    linear-gradient(180deg, var(--paper-2), var(--paper-3));
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase;
  height: 100%;
}
.placeholder span { background: var(--paper); padding: 6px 12px; border: 1px solid var(--line); }

.hero-mark {
  position: absolute; top: 30px; right: 30px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--paper);
  text-transform: uppercase;
  mix-blend-mode: difference;
}

/* ===== SECTIONS ===== */
section { padding: 120px 64px; position: relative; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 72px;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin: 0;
  font-weight: 400;
}
.section-head h2 em { font-style: italic; color: var(--accent-deep); }
.section-head .lede {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 540px;
}
.section-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 18px;
}

/* ===== STORY ===== */
.story {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.story-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}
.story-image {
  aspect-ratio: 3 / 4;
  background: var(--paper-3);
  position: relative;
}
.story-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 560px;
}
.story-text p { margin: 0 0 24px; }
.story-text p:first-child::first-letter {
  font-family: var(--display);
  font-size: 78px;
  line-height: 0.85;
  float: left;
  padding: 6px 14px 0 0;
  font-style: italic;
  color: var(--accent-deep);
}
.story-sign {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  margin-top: 12px;
}

/* ===== SERVICES ===== */
.services { background: var(--paper); border-bottom: 1px solid var(--line); }
.svc-tabs { display: flex; gap: 0; border: 1px solid var(--ink); margin-bottom: 48px; }
.svc-tab {
  flex: 1;
  padding: 22px 16px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  border-right: 1px solid var(--ink);
  transition: all .2s;
  background: transparent;
  color: var(--ink);
}
.svc-tab:last-child { border-right: none; }
.svc-tab:hover { background: var(--paper-2); }
.svc-tab.active { background: var(--ink); color: var(--paper); }
.svc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 80px; }
.svc-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: baseline;
  padding: 26px 24px 26px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: var(--sans);
  color: var(--ink);
  overflow: hidden;
  transition: padding .35s cubic-bezier(.22,.61,.36,1);
}
.svc-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  opacity: 0;
  transition: opacity .35s cubic-bezier(.22,.61,.36,1);
  pointer-events: none;
  z-index: 0;
}
.svc-row > * { position: relative; z-index: 1; }
.svc-row .svc-info,
.svc-row .svc-num,
.svc-row .svc-price {
  transition: filter .35s cubic-bezier(.22,.61,.36,1),
              opacity .35s cubic-bezier(.22,.61,.36,1);
}
.svc-row:hover { padding-left: 18px; padding-right: 30px; }
.svc-row:hover::before { opacity: 1; }
.svc-row:hover .svc-info,
.svc-row:hover .svc-num,
.svc-row:hover .svc-price {
  filter: blur(2.5px);
  opacity: 0.18;
}
.svc-hover-cta {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 26px;
  font-style: italic;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s cubic-bezier(.22,.61,.36,1) .05s,
              transform .35s cubic-bezier(.22,.61,.36,1) .05s;
  pointer-events: none;
  z-index: 2;
}
.svc-row:hover .svc-hover-cta {
  opacity: 1;
  transform: translateY(0);
}
.svc-hover-cta .arrow {
  font-family: var(--sans);
  font-style: normal;
  font-size: 22px;
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
}
.svc-row:hover .svc-hover-cta .arrow { transform: translateX(6px); }
.svc-row:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.svc-num { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.1em; }
.svc-info .name { font-family: var(--display); font-size: 24px; line-height: 1.1; }
.svc-info .desc { font-size: 13px; color: var(--muted); margin-top: 4px; }
.svc-info .meta { font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; color: var(--muted); margin-top: 8px; text-transform: uppercase; }
.svc-price { font-family: var(--display); font-size: 24px; font-style: italic; }

/* ===== STYLISTS ===== */
.stylists { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.stylist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stylist-card { cursor: pointer; }
.stylist-portrait {
  aspect-ratio: 3 / 4;
  background: var(--paper-3);
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  transition: transform .4s ease;
}
.stylist-card:hover .stylist-portrait { transform: translateY(-4px); }
.stylist-portrait::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(22,19,16,0.18));
}
.stylist-name { font-family: var(--display); font-size: 26px; line-height: 1; margin: 4px 0; }
.stylist-role { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.stylist-meta { font-family: var(--mono); font-size: 10px; color: var(--muted); margin-top: 10px; letter-spacing: 0.1em; }

/* ===== GALLERY ===== */
.gallery { background: var(--paper); border-bottom: 1px solid var(--line); padding-bottom: 64px; }
.gallery-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.4fr 1fr;
  gap: 16px;
  height: 520px;
}
.gallery-item { position: relative; overflow: hidden; }
.gallery-item:nth-child(2) { margin-top: 60px; }
.gallery-item:nth-child(4) { margin-top: 40px; }

/* ===== REVIEWS ===== */
.reviews { background: var(--ink); color: var(--paper); border-bottom: none; }
.reviews .section-head h2 { color: var(--paper); }
.reviews .section-head .lede { color: rgba(244,239,232,0.7); }
.reviews .eyebrow, .reviews .section-num { color: rgba(244,239,232,0.5); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.review-quote {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.4;
  font-style: italic;
  margin: 0 0 24px;
  color: var(--paper);
}
.review-meta { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,239,232,0.6); }
.review-meta strong { color: var(--paper); font-weight: 400; }
.stars { font-family: var(--display); letter-spacing: 0.15em; color: var(--accent); font-size: 14px; margin-bottom: 18px; }

/* ===== CONTACT ===== */
.contact { background: var(--paper); border-bottom: 1px solid var(--line); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-info dl { margin: 0; }
.contact-info dt {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
  margin-top: 28px; margin-bottom: 6px;
}
.contact-info dd {
  margin: 0;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.35;
}
.contact-info dd.small { font-family: var(--sans); font-size: 15px; line-height: 1.7; color: var(--ink-soft); }
.map {
  aspect-ratio: 4 / 5;
  background: var(--paper-2);
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
}
.map-svg { width: 100%; height: 100%; }
.map-pin {
  position: absolute; left: 52%; top: 48%;
  width: 18px; height: 18px;
  background: var(--ink);
  border-radius: 50%;
  border: 4px solid var(--paper);
  box-shadow: 0 0 0 1px var(--ink);
  transform: translate(-50%, -50%);
}
.map-pin::after {
  content: ""; position: absolute; inset: -16px; border: 1px solid var(--ink);
  border-radius: 50%; opacity: 0.3;
}

/* ===== APPLE MAPS ===== */
.apple-maps {
  padding: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.am-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 20 / 9;
  overflow: hidden;
  background: #f2eadb;
}
.am-svg {
  width: 100%;
  height: 100%;
  display: block;
}
/* Pin */
.am-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 32px;
  transform: translate(-50%, calc(-100% + 10px));
  pointer-events: none;
  animation: pinDrop 0.9s cubic-bezier(.22,1.2,.36,1) 0.4s both;
}
@keyframes pinDrop {
  0% { transform: translate(-50%, calc(-100% - 80px)); opacity: 0; }
  60% { transform: translate(-50%, calc(-100% + 14px)); opacity: 1; }
  100% { transform: translate(-50%, calc(-100% + 10px)); opacity: 1; }
}
.am-pin-shadow {
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 16px;
  height: 5px;
  background: rgba(0,0,0,0.35);
  border-radius: 50%;
  filter: blur(3px);
  transform: translateX(-50%);
}
.am-pin-bubble {
  position: absolute;
  left: 0; top: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(180deg, #ff5a4d, #e02d20);
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18), inset 0 -3px 6px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.am-pin-inner {
  width: 9px;
  height: 9px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.am-pin-stem {
  display: none;
}

/* Card overlay */
.am-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: 360px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 0.5px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 18px 20px 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18), 0 1px 0 rgba(255,255,255,0.6) inset;
  font-family: -apple-system, "SF Pro Text", system-ui, sans-serif;
  color: #1a1a1a;
}
.am-card-eyebrow {
  font-size: 11px;
  color: #6e6e73;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  font-weight: 500;
}
.am-card-name {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}
.am-card-sub {
  font-size: 13px;
  color: #6e6e73;
  margin-top: 3px;
}
.am-card-meta {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: #3a3a3c;
}
.am-card-meta > div { display: flex; align-items: center; gap: 6px; }
.am-dot {
  width: 7px; height: 7px; border-radius: 50%; display: inline-block;
}
.am-dist { color: #6e6e73; }
.am-card-actions {
  display: flex; gap: 8px;
  margin-top: 14px;
}
.am-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(0,0,0,0.06);
  color: #1a1a1a;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .15s, transform .1s;
}
.am-btn:hover { background: rgba(0,0,0,0.1); }
.am-btn:active { transform: scale(0.97); }
.am-btn.primary {
  background: #2c66c4;
  color: #fff;
}
.am-btn.primary:hover { background: #1f56b0; }
.am-glyph { font-size: 14px; }

/* Controls top-right */
.am-controls {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255,255,255,0.95);
  border: 0.5px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.am-ctl {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: -apple-system, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #1a1a1a;
  border-bottom: 0.5px solid rgba(0,0,0,0.1);
  transition: background .15s;
}
.am-ctl:last-child { border-bottom: none; }
.am-ctl:hover { background: rgba(0,0,0,0.04); }
.am-compass { position: relative; padding: 0; }
.am-compass-needle {
  position: absolute;
  width: 4px;
  height: 18px;
  background: linear-gradient(180deg, #e02d20 50%, #c8c8c8 50%);
  border-radius: 1px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Attribution */
.am-attr {
  position: absolute;
  bottom: 14px;
  right: 18px;
  font-family: -apple-system, system-ui, sans-serif;
  font-size: 11px;
  color: rgba(0,0,0,0.45);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Search bar */
.am-search {
  position: absolute;
  top: 24px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border: 0.5px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 9px 14px;
  font-family: -apple-system, system-ui, sans-serif;
  font-size: 13px;
  color: #6e6e73;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  min-width: 220px;
}
.am-search-glyph { font-size: 14px; }

@media (max-width: 900px) {
  .am-frame { aspect-ratio: 4 / 5; }
  .am-card {
    left: 16px; right: 16px; bottom: 16px;
    width: auto;
  }
  .am-search { min-width: 0; width: calc(100% - 100px); }
}

/* ===== FOOTER ===== */
footer {
  background: var(--ink); color: var(--paper);
  padding: 80px 64px 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(244,239,232,0.15);
}
.footer-grid h4 { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 400; color: rgba(244,239,232,0.6); margin: 0 0 18px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-grid li { cursor: pointer; transition: color .2s; }
.footer-grid li:hover { color: var(--accent); }
.footer-brand .display {
  font-family: var(--display);
  font-size: 56px;
  letter-spacing: 0.18em;
  line-height: 1;
  margin: 0 0 16px;
}
.footer-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  color: rgba(244,239,232,0.5);
}

/* ===== BOOKING (shared) ===== */
.booking-modal-bg {
  position: fixed; inset: 0;
  background: rgba(22,19,16,0);
  backdrop-filter: blur(0px);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  animation: bookingBgIn .45s cubic-bezier(.22,.61,.36,1) forwards;
}
.booking-modal-bg.closing {
  animation: bookingBgOut .28s cubic-bezier(.55,0,.68,.53) forwards;
}
@keyframes bookingBgIn {
  from { background: rgba(22,19,16,0); backdrop-filter: blur(0px); opacity: 0; }
  to   { background: rgba(22,19,16,0.5); backdrop-filter: blur(6px); opacity: 1; }
}
@keyframes bookingBgOut {
  from { background: rgba(22,19,16,0.5); backdrop-filter: blur(6px); opacity: 1; }
  to   { background: rgba(22,19,16,0); backdrop-filter: blur(0px); opacity: 0; }
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes rise {
  from { opacity: 0; transform: translateY(28px) scale(0.985); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes riseOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to   { opacity: 0; transform: translateY(20px) scale(0.985); }
}
@keyframes fullPageIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.booking-shell {
  background: var(--paper);
  width: 100%;
  max-width: 1080px;
  max-height: 92vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 320px 1fr;
  position: relative;
  animation: rise .5s cubic-bezier(.22,.61,.36,1);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px -20px rgba(22,19,16,0.4);
}
.booking-shell.closing { animation: riseOut .25s cubic-bezier(.55,0,.68,.53) forwards; }
.booking-shell.fullpage {
  position: fixed; inset: 0;
  max-width: none;
  max-height: none;
  height: 100vh;
  z-index: 80;
  grid-template-columns: 380px 1fr;
  border: none;
  animation: fullPageIn .45s cubic-bezier(.22,.61,.36,1);
  box-shadow: none;
}
.booking-shell.fullpage.closing { animation: riseOut .25s cubic-bezier(.55,0,.68,.53) forwards; }
.booking-side {
  background: var(--ink);
  color: var(--paper);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.booking-side-close {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(244,239,232,0.7);
  border: 1px solid rgba(244,239,232,0.2);
  font-family: var(--mono);
  font-size: 12px;
  cursor: pointer;
  transition: all .15s ease;
  z-index: 6;
}
.booking-side-close:hover {
  color: var(--paper);
  border-color: var(--paper);
  background: rgba(244,239,232,0.08);
}
.booking-shell.fullpage .booking-side { padding: 48px 44px; }
.booking-side h3 {
  font-family: var(--display);
  font-size: 38px;
  line-height: 1;
  margin: 0 0 8px;
  font-weight: 400;
}
.booking-shell.fullpage .booking-side h3 { font-size: 56px; }
.booking-side .eyebrow { color: rgba(244,239,232,0.5); margin-bottom: 12px; }
.steps { display: flex; flex-direction: column; gap: 4px; margin-top: 40px; }
.step {
  display: grid; grid-template-columns: 28px 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(244,239,232,0.1);
  font-size: 13px;
  letter-spacing: 0.04em;
  align-items: center;
  color: rgba(244,239,232,0.5);
  transition: color .2s;
}
.step .step-n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.step.active { color: var(--paper); }
.step.active .step-n { color: var(--accent); }
.step.done { color: rgba(244,239,232,0.85); }
.step.done .step-n::before { content: "✓ "; color: var(--accent); }
.step-val { font-family: var(--display); font-style: italic; color: rgba(244,239,232,0.8); font-size: 14px; max-width: 130px; text-align: right; line-height: 1.2; }

.booking-body {
  padding: 36px 44px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.booking-shell.fullpage .booking-body { padding: 60px 80px; max-width: 920px; margin: 0 auto; width: 100%; }
.booking-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.booking-head h4 { font-family: var(--display); font-size: 32px; margin: 0; font-weight: 400; }
.booking-head .meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase; }
.booking-close {
  position: absolute; top: 18px; right: 18px;
  background: transparent; border: none;
  font-family: var(--mono); font-size: 14px;
  color: var(--paper); cursor: pointer;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
}
.booking-close:hover { color: var(--accent); }
.booking-shell:not(.fullpage) .booking-close { color: var(--paper); }

.booking-content { flex: 1; animation: stepFade .35s ease both; }
@keyframes stepFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.booking-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px; padding-top: 22px;
  border-top: 1px solid var(--line);
}
.booking-foot .crumbs { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--muted); text-transform: uppercase; }

/* Service picker */
.svc-pick { display: flex; flex-direction: column; gap: 10px; }
.svc-option {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 20px 24px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: all .2s;
  font-family: var(--sans);
}
.svc-option:hover { background: var(--paper-2); border-color: var(--ink); }
.svc-option.selected { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.svc-option.selected .svc-opt-meta { color: rgba(244,239,232,0.7); }
.svc-opt-name { font-family: var(--display); font-size: 22px; }
.svc-opt-meta { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.1em; margin-top: 4px; text-transform: uppercase; }
.svc-opt-price { font-family: var(--display); font-style: italic; font-size: 22px; }

/* Stylist picker */
.stylist-pick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stylist-opt {
  border: 1px solid var(--line);
  padding: 18px;
  cursor: pointer;
  background: transparent;
  text-align: left;
  font-family: var(--sans);
  transition: all .2s;
}
.stylist-opt:hover { background: var(--paper-2); border-color: var(--ink); }
.stylist-opt.selected { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.stylist-opt.selected .so-meta { color: rgba(244,239,232,0.7); }
.stylist-opt.selected .stylist-mini-portrait { filter: grayscale(0%) brightness(1.05); }
.stylist-mini-portrait { aspect-ratio: 1 / 1; background: var(--paper-3); margin-bottom: 14px; }
.so-name { font-family: var(--display); font-size: 22px; line-height: 1; }
.so-meta { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* Calendar */
.cal-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; }
.cal-month {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.cal-month-name { font-family: var(--display); font-size: 24px; }
.cal-nav { display: flex; gap: 8px; }
.cal-nav button {
  width: 34px; height: 34px;
  border: 1px solid var(--line); background: transparent;
  font-family: var(--mono); cursor: pointer; transition: all .2s;
}
.cal-nav button:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.cal-days {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-dow {
  text-align: center;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  color: var(--muted);
  padding: 8px 0;
  text-transform: uppercase;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 17px;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .15s;
  color: var(--ink);
}
.cal-day:hover:not([disabled]) { border-color: var(--ink); }
.cal-day[disabled] { color: var(--paper-3); cursor: not-allowed; }
.cal-day.selected { background: var(--ink); color: var(--paper); }
.cal-day.today { font-style: italic; color: var(--accent-deep); }
.cal-day.today.selected { color: var(--accent); }

.time-block h5 { font-family: var(--display); font-size: 22px; margin: 0 0 14px; font-weight: 400; }
.time-period { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase; margin: 18px 0 8px; }
.time-slots {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
}
.time-slot {
  padding: 12px 8px;
  border: 1px solid var(--line);
  background: transparent;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all .15s;
}
.time-slot:hover:not([disabled]) { border-color: var(--ink); }
.time-slot[disabled] { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }
.time-slot.selected { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* Form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
}
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: 0;
  transition: border-color .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--ink);
}
.field textarea { resize: vertical; min-height: 84px; }
.field .err { color: #8b2a1f; font-size: 11px; letter-spacing: 0.06em; }
.checkbox {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--ink-soft); cursor: pointer;
  margin-top: 8px;
}
.checkbox input { margin-top: 3px; accent-color: var(--ink); }

/* Phone input — country detect + dropdown */
.phone-root { position: relative; }
.phone-raw {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: 0;
  transition: border-color .15s;
  font-feature-settings: "tnum";
}
.phone-raw:focus { outline: none; border-color: var(--ink); }
.phone-locked {
  display: grid;
  grid-template-columns: auto 1fr;
  border: 1px solid var(--line);
  background: transparent;
  transition: border-color .15s;
}
.phone-locked:focus-within { border-color: var(--ink); }
.phone-root.has-error .phone-raw,
.phone-root.has-error .phone-locked { border-color: #8b2a1f; }
.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 12px 11px 14px;
  background: var(--paper-2);
  border: none;
  border-right: 1px solid var(--line);
  cursor: pointer;
  font-family: var(--sans);
  color: var(--ink);
  transition: background .15s;
}
.phone-pill:hover { background: var(--paper-3); }
.phone-flag {
  font-size: 18px;
  line-height: 1;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", emoji;
}
.phone-dial {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.phone-caret {
  font-size: 10px;
  color: var(--muted);
  margin-left: 2px;
}
.phone-local {
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  color: var(--ink);
  font-feature-settings: "tnum";
  letter-spacing: 0.02em;
}
.phone-local:focus { outline: none; }

.phone-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 320px;
  max-width: 100%;
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 0 16px 40px rgba(22,19,16,0.18);
  z-index: 200;
  display: flex;
  flex-direction: column;
  max-height: 320px;
  animation: rise .18s ease;
}
.phone-menu-search {
  border-bottom: 1px solid var(--line);
  padding: 10px;
}
.phone-menu-search input {
  width: 100%;
  border: none;
  background: var(--paper-2);
  padding: 10px 12px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  border-radius: 0;
}
.phone-menu-search input:focus { outline: 1px solid var(--ink); outline-offset: -1px; }
.phone-menu-list {
  overflow-y: auto;
  max-height: 250px;
}
.phone-menu-item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: transparent;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  transition: background .12s;
}
.phone-menu-item:hover { background: var(--paper-2); }
.phone-menu-item.active { background: var(--ink); color: var(--paper); }
.phone-menu-item.active .phone-cdial { color: rgba(244,239,232,0.7); }
.phone-cname { font-size: 14px; }
.phone-cdial {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.phone-menu-empty {
  padding: 18px 14px;
  font-family: var(--display);
  font-style: italic;
  color: var(--muted);
  text-align: center;
}

/* Summary */
.summary { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
.summary-card {
  background: var(--paper-2);
  padding: 28px;
  border: 1px solid var(--line);
}
.summary-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.summary-row:last-child { border-bottom: none; }
.summary-row .k { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.summary-row .v { font-family: var(--display); font-size: 18px; max-width: 60%; text-align: right; }
.summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 18px; margin-top: 10px;
  border-top: 1px solid var(--ink);
}
.summary-total .v { font-style: italic; font-size: 28px; }
.fineprint { font-size: 12px; line-height: 1.6; color: var(--muted); margin-top: 16px; }

/* Success */
.success-wrap {
  text-align: center;
  padding: 60px 20px;
  display: flex; flex-direction: column; align-items: center;
}
.success-mark {
  width: 64px; height: 64px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  font-family: var(--display); font-size: 28px; font-style: italic;
}
.success-wrap h3 { font-family: var(--display); font-size: 56px; margin: 0 0 16px; font-weight: 400; line-height: 1; }
.success-wrap p { color: var(--muted); max-width: 460px; font-size: 15px; }
.success-card {
  margin-top: 36px;
  width: 100%; max-width: 460px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 24px 28px;
  text-align: left;
}
.success-ref { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; color: var(--muted); margin-top: 20px; text-transform: uppercase; }

/* Tweak callout */
.tweak-hint {
  position: fixed;
  left: 24px; bottom: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  background: rgba(244,239,232,0.85);
  border: 1px solid var(--line);
  padding: 10px 14px;
  z-index: 40;
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .stylist-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-shell { grid-template-columns: 1fr; }
  .booking-side { display: none; }
  .svc-list { grid-template-columns: 1fr; }
  .cal-grid { grid-template-columns: 1fr; }
  .summary { grid-template-columns: 1fr; }
  section { padding: 80px 24px; }
  .nav { padding: 14px 20px; }
  .nav-left, .nav-right { display: none; }
}
