/* ==========================================================================
   Mignon J Hair Studio — stylesheet

   Palette: cream · gold · black. Gold is sampled from the studio logo
   (bronze #5b4a2b → #cd9e53 → champagne #ffe398).

   THE ONE RULE OF THIS PALETTE — gold has two jobs, and mixing them up is how
   cream-and-gold sites become unreadable:

     · On BLACK surfaces, bright gold is text.        #cd9e53 on black = 8.0:1
     · On CREAM surfaces, bright gold is NEVER text.  #cd9e53 on cream = 2.2:1
       Use --gold-ink (#8a5e1f, 5.1:1) for gold-coloured text on cream, and keep
       bright gold for fills, hairlines and borders only.

   Structure follows theouai.com: flat surfaces, hairline rules, squared
   corners, one geometric sans, uppercase for micro-labels only.

   Retuning: everything is a token; nothing else hardcodes colour.
   ========================================================================== */

:root {
  /* ---- cream ---- */
  --cream: #f7f2ea;          /* page ground */
  --cream-deep: #efe7db;     /* alternating band, table headers */
  --paper: #fffdf8;          /* cards */

  /* ---- black ---- */
  --black: #0c0c0b;          /* bars, primary buttons, hero card */
  --black-soft: #17150f;

  /* ---- ink on cream ---- */
  --ink: #16150f;            /* 16.4:1 on cream */
  --ink-soft: #3b372e;
  --muted: #6b6459;          /* 5.3:1 on cream */
  --muted-dim: #8d8577;

  /* ---- gold, straight from the logo ---- */
  --gold: #cd9e53;           /* fills, hairlines, and text on black */
  --gold-hi: #ffe398;        /* the champagne highlight — on black only */
  --gold-deep: #a9762e;      /* borders, large text */
  --gold-ink: #8a5e1f;       /* gold TEXT on cream — 5.1:1 */
  --gold-bronze: #5b4a2b;
  --gold-wash: rgba(205, 158, 83, 0.13);
  --gold-wash-2: rgba(205, 158, 83, 0.26);

  /* ---- rules ---- */
  --line: rgba(138, 94, 31, 0.26);          /* gold hairline on cream */
  --line-soft: rgba(22, 21, 15, 0.1);
  --line-strong: rgba(138, 94, 31, 0.5);
  --line-on-black: rgba(205, 158, 83, 0.3);

  /* ---- warm neutrals for text sitting on black ---- */
  --on-black: #cfc7b8;
  --on-black-dim: #a49b8c;

  /* ---- status, expressed in the palette rather than in hue ------------
     A strict cream/gold/black system has no green, red or blue to lean on,
     so status is carried by WEIGHT and SHAPE instead:
       positive  → gold
       attention → gold, stronger border
       negative  → black, solid 3px rule
       neutral   → cream-deep
     Every status element also carries a text label, so colour is never the
     only signal — which is better for colour-blind users than the hues were. */
  --good: var(--gold-ink);
  --good-bg: var(--gold-wash);
  --warn: var(--gold-ink);
  --warn-bg: var(--gold-wash-2);
  --bad: var(--ink);
  --bad-bg: var(--cream-deep);
  --info: var(--muted);
  --info-bg: var(--cream-deep);

  /* Legacy aliases so existing markup keeps working. */
  --ground: var(--cream);
  --surface: var(--paper);
  --surface-2: var(--cream-deep);
  --surface-3: var(--paper);
  --text: var(--ink);
  --text-soft: var(--ink-soft);
  --accent: var(--gold);
  --accent-tint: var(--gold-wash);
  --blush: var(--gold);
  --blush-tint: var(--gold-wash);
  --butter: var(--gold);
  --butter-tint: var(--gold-wash);
  --sage: var(--good);
  --sage-tint: var(--good-bg);
  --sand: var(--cream);
  --sand-deep: var(--cream-deep);

  /* ---- form ---- */
  --radius: 2px;
  --radius-sm: 2px;
  --radius-lg: 2px;
  --shadow: none;
  --shadow-lg: 0 20px 56px rgba(22, 21, 15, 0.22);

  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --display: 'Archivo', 'DM Sans', -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  --serif: var(--display);

  --maxw: 1240px;
  --gut: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--cream); }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold-ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--ink); text-decoration-thickness: 2px; }

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

/* Any block painted black flips its own text to cream + bright gold. */
.on-black,
.announce,
.site-header,
.site-footer,
.hero__card {
  color: var(--cream);
}
.on-black a, .site-footer a { color: var(--cream); }
.on-black a:hover, .site-footer a:hover { color: var(--gold-hi); }

/* ---------------------------------------------------------- typography --- */
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 0.5em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.4rem, 7.5vw, 5.2rem); }
h2 { font-size: clamp(1.7rem, 4.6vw, 3rem); }
h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; text-transform: none; }
h4 { font-size: 0.95rem; text-transform: none; letter-spacing: -0.01em; }

p { margin: 0 0 1rem; }

/* Gold kicker. Uses the deep gold, because this sits on cream. */
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold-ink);
  margin: 0 0 1rem;
}

.lede { font-size: clamp(1rem, 2vw, 1.14rem); color: var(--ink-soft); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.narrow { max-width: 760px; }
.section { padding: clamp(52px, 8vw, 104px) 0; }
.section--tint { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: 0.9rem; }
.tiny { font-size: 0.78rem; }
.stack > * + * { margin-top: 1rem; }
.mt0 { margin-top: 0; }
.mb0 { margin-bottom: 0; }
.hidden { display: none !important; }

/* Thin gold inset frame, echoing the square frame in the logo. */
.frame { position: relative; }
.frame::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--gold);
  pointer-events: none;
}

/* -------------------------------------------------------- announce bar --- */
.announce { background: var(--black); }
.announce__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px var(--gut);
  color: var(--gold);
}

/* -------------------------------------------------------------- header --- */
/* Black, so the gold logo sits natively and the cream page reads brighter. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  border-bottom: 1px solid var(--line-on-black);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand:hover { text-decoration: none; }

.brand__mark { width: 42px; height: 42px; flex: none; display: block; object-fit: contain; }

.brand__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--cream);
  display: block;
}
.brand__tag {
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 5px;
}

.nav { display: flex; align-items: center; gap: 2px; }
.nav a:not(.btn) {
  padding: 8px 12px;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 500;
}
.nav a:not(.btn):hover { color: var(--gold-hi); background: rgba(205, 158, 83, 0.14); }
.nav a:not(.btn)[aria-current='page'] { color: var(--gold-hi); font-weight: 700; box-shadow: inset 0 -2px 0 var(--gold); }
.nav .btn { margin-left: 10px; }

/* On the black bar the primary button inverts to gold so it stays the loudest
   thing in the header. */
.site-header .btn {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.site-header .btn:hover:not(:disabled) {
  background: var(--gold-hi);
  border-color: var(--gold-hi);
  color: var(--black);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  width: 42px; height: 40px;
  font-size: 1.05rem;
  cursor: pointer;
  color: var(--gold);
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--black);
    border-bottom: 1px solid var(--line-on-black);
    padding: 8px 16px 18px;
    gap: 0;
  }
  .nav:not(.is-open) { display: none; }
  .nav a:not(.btn) { padding: 13px 4px; border-bottom: 1px solid rgba(205, 158, 83, 0.16); }
  .nav a:not(.btn)[aria-current='page'] { box-shadow: none; }
  .nav .btn { margin: 14px 0 0; text-align: center; }
}

/* ------------------------------------------------------------- buttons --- */
/* Primary is a solid black block on cream — 17.6:1, and the loudest shape on
   the page. It flips to gold on hover. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.14s ease, color 0.14s ease, border-color 0.14s ease;
}
.btn:hover:not(:disabled) { background: var(--gold); border-color: var(--gold); color: var(--black); text-decoration: none; }
.btn:disabled { opacity: 0.38; cursor: not-allowed; }
.btn:focus-visible { outline: 2px solid var(--gold-ink); outline-offset: 2px; }

/* Secondary: gold outline with ink text, so the label stays readable on cream. */
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--gold-deep); }
.btn--ghost:hover:not(:disabled) { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* Gold fill — used where a highlight should read as brand rather than action. */
.btn--dark { background: var(--gold); border-color: var(--gold); color: var(--black); }
.btn--dark:hover:not(:disabled) { background: var(--black); border-color: var(--black); color: var(--gold); }

.btn--sm { padding: 9px 17px; font-size: 0.84rem; }
.btn--block { width: 100%; }

/* Destructive: black fill with gold text. Visibly distinct from the primary
   button (black fill, cream text) without introducing a fourth colour. */
.btn--danger { background: var(--ink); border-color: var(--gold); color: var(--gold-hi); }
.btn--danger:hover:not(:disabled) { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ---------------------------------------------------------------- hero --- */
.hero {
  background:
    radial-gradient(1000px 480px at 80% -12%, var(--gold-wash), transparent 66%),
    var(--cream);
  border-bottom: 1px solid var(--line);
}
.hero__inner {
  display: grid;
  gap: 34px;
  padding: clamp(48px, 9vw, 108px) var(--gut);
  align-items: center;
}
/* Two columns only when there is actually a second block to put there. With a
   single child the hero stays one column and the text is width-limited so the
   headline does not stretch across the full page. */
@media (min-width: 960px) {
  .hero__inner:has(.hero__card) { grid-template-columns: 1.2fr 0.8fr; gap: 60px; }
  /* Let the headline run full width — only the body copy needs a measure. */
  .hero__inner:not(:has(.hero__card)) .lede { max-width: 58ch; }
}

.hero h1 { color: var(--ink); }
.hero h1 em { font-style: normal; color: var(--gold-ink); }
.hero p.lede { color: var(--ink-soft); max-width: 50ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* A black card on the cream hero — the strongest contrast on the page, and
   where the gold can be at full brightness. */
.hero__card {
  background: var(--black);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 30px;
}
.hero__card h3 {
  color: var(--gold);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero__card ul { list-style: none; margin: 0; padding: 0; }
.hero__card li {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(205, 158, 83, 0.2);
  font-size: 0.9rem;
  color: var(--on-black);
}
.hero__card li:last-child { border-bottom: 0; }
.hero__card li b { color: var(--cream); font-weight: 700; text-align: right; }
.hero__note { color: var(--on-black-dim); }

/* --------------------------------------------------------------- cards --- */
.grid { display: grid; gap: 1px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.grid--3 { grid-template-columns: 1fr; counter-reset: feature; }
@media (min-width: 680px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.card--flat { background: transparent; }
.card__title { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }

.feature {
  padding: 30px 26px;
  border: 1px solid var(--line);
  margin: -0.5px;
  background: var(--paper);
  counter-increment: feature;
}
.feature:hover { background: var(--cream); }
.feature__icon {
  width: 34px; height: 34px;
  border: 1px solid var(--gold-deep);
  display: grid; place-items: center;
  background: transparent;
  color: var(--gold-ink);
  font-family: var(--display);
  font-weight: 800;
  margin-bottom: 18px;
  font-size: 0;
}
.feature__icon::before { content: counter(feature, decimal-leading-zero); font-size: 0.78rem; }

/* Flat bands used to break up long pages. */
.panel {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.panel--blue { background: var(--paper); }
.panel--butter { background: linear-gradient(180deg, var(--gold-wash), transparent), var(--paper); }
.panel--sage { background: var(--paper); }

/* ------------------------------------------------------------ services --- */
.service-cat + .service-cat { margin-top: 20px; }
/* flex-wrap matters on a phone: "Signature Knotless" plus its nowrap
   "One booking per week" badge is 332px of min-content on one line, which was
   enough to jam the whole booking card wider than a 390px viewport. */
.service-cat__head { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; flex-wrap: wrap; }
.service-cat__head h3 {
  margin: 0;
  color: var(--gold-ink);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.service-cat__head::after { content: ''; flex: 1; height: 1px; background: var(--line); }

.service {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.service:last-child { border-bottom: 0; }
.service__name {
  font-weight: 700; font-size: 1.02rem; letter-spacing: -0.01em; color: var(--ink);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.service__desc { grid-column: 1 / -1; color: var(--muted); font-size: 0.9rem; margin: 0; max-width: 62ch; }
.service__meta { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.service__price {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--gold-ink);
  font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------- add-ons --- */
/* Add-ons sit inside a category, after its services, set lower in the visual
   hierarchy so nobody reads them as things you book on their own. Cream-deep
   ground plus a lighter type weight does that without a fourth colour. */
.addons {
  margin-top: 18px;
  padding: 16px 18px;
  background: var(--cream-deep);
  border-radius: var(--radius);
}
.addons__title {
  margin: 0;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.addons__note { margin: 4px 0 12px; font-size: 0.82rem; color: var(--muted); }
.addons__list { list-style: none; margin: 0; padding: 0; }
.addon {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.92rem;
}
.addon:last-child { border-bottom: 0; }
.addon__name { color: var(--ink); }
.addon__price {
  color: var(--gold-ink);
  font-weight: 700;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* A picked add-on inside the booking form: indented under its service group,
   with an optional quantity stepper for the per-unit ones (loc repair, boho). */
.pick--addon { margin-left: 18px; border-left: 2px solid var(--line); padding-left: 14px; }
.pick__qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.pick__qty input {
  width: 66px; padding: 5px 8px; text-align: center;
  font-variant-numeric: tabular-nums;
}
.pick__qty label { font-size: 0.8rem; color: var(--muted); }
.pick[hidden] { display: none !important; }

/* -------------------------------------------------------------- badges --- */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px;
  border-radius: var(--radius);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--cream-deep);
  color: var(--ink);
  white-space: nowrap;
}
/* Gold fill with black text — 8:1, and the most eye-catching chip available. */
.badge--gold { background: var(--gold); color: var(--black); }
.badge--good { background: var(--gold); color: var(--black); }
.badge--warn { background: transparent; color: var(--gold-ink); box-shadow: inset 0 0 0 1px var(--gold-deep); }
/* Inverted, so a negative badge reads as the most serious chip without red. */
.badge--bad { background: var(--ink); color: var(--gold-hi); }
.badge--info { background: var(--cream-deep); color: var(--muted); }
.badge--plain { background: var(--cream-deep); color: var(--muted); }

/* ------------------------------------------------------------- notices --- */
.notice {
  border-radius: var(--radius);
  padding: 15px 17px;
  font-size: 0.9rem;
  border: 1px solid var(--line-strong);
  border-left-width: 3px;
  background: var(--paper);
  color: var(--ink-soft);
}
.notice strong { display: block; margin-bottom: 3px; color: var(--ink); font-weight: 700; }
.notice--info { background: var(--info-bg); border-left-color: var(--muted-dim); color: var(--ink-soft); }
.notice--good { background: var(--good-bg); border-left-color: var(--gold); color: var(--ink); }
.notice--warn { background: var(--warn-bg); border-left-color: var(--gold-deep); color: var(--ink); }
/* Negative state: a solid black rule, the heaviest mark on a cream page. */
.notice--bad  { background: var(--bad-bg); border-left-color: var(--ink); border-left-width: 4px; color: var(--ink); }
.notice a { color: inherit; }

/* --------------------------------------------------------------- forms --- */
label {
  display: block;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  color: var(--gold-ink);
}
.field + .field { margin-top: 18px; }
.field__hint { font-size: 0.8rem; color: var(--muted); margin-top: 6px; text-transform: none; letter-spacing: 0; font-weight: 400; }

input[type='text'], input[type='email'], input[type='tel'], input[type='date'],
input[type='time'], input[type='number'], input[type='password'], input[type='search'],
select, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
}
input::placeholder, textarea::placeholder { color: var(--muted-dim); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold-ink);
  box-shadow: inset 0 0 0 1px var(--gold-ink);
}
textarea { min-height: 118px; resize: vertical; }
.row { display: grid; gap: 18px; }
@media (min-width: 620px) { .row--2 { grid-template-columns: 1fr 1fr; } .row--3 { grid-template-columns: repeat(3, 1fr); } }

.check {
  display: flex; gap: 11px; align-items: flex-start;
  font-weight: 400; font-size: 0.9rem;
  text-transform: none; letter-spacing: 0;
  color: var(--ink-soft);
}
.check input { width: auto; margin-top: 3px; flex: none; accent-color: var(--gold-ink); }

/* ------------------------------------------------------------- stepper --- */
.steps { display: flex; gap: 0; flex-wrap: wrap; margin-bottom: 28px; }
.steps__item {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  margin-right: -1px;
  background: var(--paper);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 700;
}
.steps__item b {
  width: 20px; height: 20px;
  background: var(--cream-deep); color: var(--muted);
  display: grid; place-items: center;
  font-size: 0.68rem;
}
.steps__item.is-active { border-color: var(--black); color: var(--ink); position: relative; z-index: 1; }
.steps__item.is-active b { background: var(--black); color: var(--cream); }
.steps__item.is-done { color: var(--gold-ink); border-color: var(--gold-deep); background: var(--gold-wash); }
.steps__item.is-done b { background: var(--gold); color: var(--black); }

/* -------------------------------------------------------- service pick --- */
.pick {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: -1px;
  background: var(--paper);
  cursor: pointer;
  transition: background 0.12s, box-shadow 0.12s, border-color 0.12s;
}
.pick + .pick { margin-top: 0; }
.pick:hover { background: var(--cream); }
.pick.is-selected {
  border-color: var(--gold-deep);
  box-shadow: inset 0 0 0 1px var(--gold-deep);
  background: var(--paper);
  position: relative;
  z-index: 1;
}
.pick__row { display: flex; align-items: flex-start; gap: 13px; }
.pick input { margin-top: 3px; flex: none; width: auto; accent-color: var(--gold-ink); }
.pick__body { flex: 1; min-width: 0; }
.pick__name { font-weight: 700; letter-spacing: -0.01em; color: var(--ink); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.pick__meta { font-size: 0.84rem; color: var(--muted); }
.pick__price { font-weight: 700; white-space: nowrap; color: var(--gold-ink); font-variant-numeric: tabular-nums; }

/* ------------------------------------------------------------ calendar --- */
.cal { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.cal__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.cal__month {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.cal__nav { display: flex; gap: 0; }
.cal__nav button {
  width: 36px; height: 36px;
  border-radius: 0;
  border: 1px solid var(--gold-deep);
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink);
  margin-left: -1px;
}
.cal__nav button:hover:not(:disabled) { background: var(--gold); color: var(--black); border-color: var(--gold); }
.cal__nav button:disabled { opacity: 0.3; cursor: not-allowed; }

.cal__dows, .cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; }
.cal__dows span {
  text-align: center;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
  padding-bottom: 8px;
}
.cal__day {
  aspect-ratio: 1 / 1;
  min-height: 42px;
  border: 1px solid var(--line-soft);
  border-radius: 0;
  background: var(--cream);
  color: var(--muted-dim);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  position: relative;
}
.cal__day span.dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; }
.cal__day.is-empty { background: transparent; border-color: transparent; cursor: default; }
.cal__day.is-open { background: var(--paper); color: var(--ink); border-color: var(--gold-deep); }
.cal__day.is-open:hover { background: var(--gold-wash-2); }
.cal__day.is-waitlist { background: var(--warn-bg); color: var(--gold-ink); border-color: var(--gold-deep); }
.cal__day.is-waitlist:hover { background: var(--gold-wash-2); }
.cal__day.is-full, .cal__day.is-closed {
  background: var(--cream-deep); color: var(--muted-dim); cursor: not-allowed; border-color: var(--line-soft);
}
/* Gold fill, black numeral — 8:1 and unmistakable. */
.cal__day.is-selected { background: var(--gold); color: var(--black); border-color: var(--gold-deep); font-weight: 700; }
.cal__legend {
  display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px;
  font-size: 0.68rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.cal__legend i { width: 11px; height: 11px; display: inline-block; margin-right: 6px; vertical-align: -1px; border: 1px solid var(--line-soft); }
.cal__legend .swatch--open { background: var(--paper); border-color: var(--gold-deep); }
.cal__legend .swatch--waitlist { background: var(--warn-bg); border-color: var(--gold-deep); }
.cal__legend .swatch--closed { background: var(--cream-deep); }

/* --------------------------------------------------------------- slots --- */
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(122px, 1fr)); gap: 0; }
.slot {
  padding: 14px 8px;
  border: 1px solid var(--line);
  border-radius: 0;
  margin: -0.5px;
  background: var(--paper);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  text-align: center;
  line-height: 1.3;
  color: var(--ink);
}
.slot small { display: block; font-weight: 400; font-size: 0.72rem; color: var(--muted); margin-top: 2px; }
.slot:hover { background: var(--gold-wash); border-color: var(--gold-deep); position: relative; z-index: 1; }
.slot.is-selected { background: var(--black); border-color: var(--black); color: var(--cream); position: relative; z-index: 2; }
.slot.is-selected small { color: var(--on-black); }

/* ------------------------------------------------------------- summary --- */
.summary { position: sticky; top: 94px; }
.summary__line {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 0; font-size: 0.9rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.summary__line:last-of-type { border-bottom: 0; }
.summary__line b { font-weight: 700; text-align: right; color: var(--ink); font-variant-numeric: tabular-nums; }
.summary__total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--gold-deep);
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.7rem; font-weight: 700;
  color: var(--gold-ink);
}
.summary__total b {
  font-family: var(--display); font-size: 1.5rem; letter-spacing: -0.03em;
  text-transform: none; color: var(--ink); font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------- table --- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
th, td { padding: 13px 15px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; color: var(--ink-soft); }
th {
  background: var(--cream-deep);
  font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gold-ink); font-weight: 700; white-space: nowrap;
}
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: var(--cream); }
td b { color: var(--ink); }

/* -------------------------------------------------------------- footer --- */
.site-footer {
  background: var(--black);
  padding: 62px 0 26px;
  color: var(--on-black);
}
.site-footer a { text-decoration: none; }
.site-footer a:hover { text-decoration: underline; text-underline-offset: 3px; }
.site-footer h4 {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: 5px 0; font-size: 0.9rem; }
.site-footer__logo { width: 190px; margin-bottom: 18px; }
.site-footer__bottom {
  border-top: 1px solid rgba(205, 158, 83, 0.22);
  margin-top: 40px; padding-top: 22px;
  font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.14em;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  color: var(--on-black-dim);
}
.footer__blurb { color: var(--on-black); }
.site-footer .hours-list li { border-color: rgba(205, 158, 83, 0.18); color: var(--on-black); }
.site-footer .hours-list li b { color: var(--cream); }

.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 0.9rem;
  color: var(--muted);
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list li b { font-weight: 700; color: var(--ink); text-align: right; }

/* -------------------------------------------------------------- states --- */
.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(247, 242, 234, 0.4);
  border-top-color: var(--cream);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
.spinner--dark { border-color: var(--gold-wash-2); border-top-color: var(--gold-ink); }
@keyframes spin { to { transform: rotate(360deg); } }

.skeleton {
  background: linear-gradient(90deg, var(--cream-deep) 25%, var(--paper) 50%, var(--cream-deep) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.3s infinite;
  border-radius: var(--radius);
  min-height: 16px;
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* --------------------------------------------------------------- toast --- */
.toast-host {
  position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 200; display: grid; gap: 10px; width: min(440px, calc(100vw - 32px));
}
.toast {
  background: var(--black);
  border: 1px solid var(--gold);
  color: var(--cream);
  padding: 15px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  animation: rise 0.2s ease;
}
.toast--good { background: var(--gold); border-color: var(--gold); color: var(--black); }
.toast--bad { background: var(--ink); border-color: var(--gold-hi); color: var(--gold-hi); }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } }

/* --------------------------------------------------------------- modal --- */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(12, 12, 11, 0.68);
  display: grid; place-items: center;
  padding: 18px;
  z-index: 150;
}
.modal {
  background: var(--paper);
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius);
  padding: 28px;
  width: min(560px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.modal__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.modal__head h3 {
  text-transform: uppercase; font-family: var(--display); font-weight: 800;
  letter-spacing: -0.02em; font-size: 1.1rem; color: var(--ink);
}
.modal__close { background: none; border: 0; font-size: 1.4rem; line-height: 1; cursor: pointer; color: var(--muted); padding: 0; }
.modal__close:hover { color: var(--ink); }
.modal__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; margin-top: 24px; }

/* ----------------------------------------------------------- utilities --- */
.flex { display: flex; gap: 12px; align-items: center; }
.flex--between { justify-content: space-between; }
.flex--wrap { flex-wrap: wrap; }
.flex--end { justify-content: flex-end; }
.gap-sm { gap: 8px; }
.empty { padding: 40px 20px; text-align: center; color: var(--muted); }
.empty__icon { font-size: 1.6rem; margin-bottom: 10px; opacity: 0.5; }
hr { border: 0; border-top: 1px solid var(--line); margin: 28px 0; }

@media print {
  .site-header, .site-footer, .btn, .nav, .announce { display: none !important; }
  body { background: #fff; }
}

/* ------------------------------------------------- phones: the add-on rows --- */
/* Placed at the end deliberately: these override .pick and .addons, which are
   declared further up at the same specificity, so an earlier media query would
   silently lose the cascade.
 *
 * What is being fixed: an add-on row is a service row plus an indent, and the
 * per-unit ones carry a two-word price ("$90.00 per bundle") that must not wrap
 * on a desktop. At 390px the indent, the card padding and that nowrap price
 * added up to 291px of un-shrinkable content inside a 292px box — one pixel
 * from a horizontal scrollbar across the whole booking page. The indent shrinks
 * rather than disappearing, because the nesting is what shows an add-on belongs
 * to the service above it. */
@media (max-width: 560px) {
  .pick { padding: 14px 12px; }
  .pick--addon { margin-left: 8px; padding-left: 10px; }
  .addons { padding: 14px 12px; }
  .pick__price { white-space: normal; text-align: right; }
}
