/* ============================================================
   CALIBER STUDIOS — Barber & Beauty
   Warm modern-craft, editorial premium.
   Static multi-page build (no framework).
   ============================================================ */

:root {
  /* Slate (primary dark) */
  --slate-900: #131D26;
  --slate-850: #182530;
  --slate-800: #1B2A36;
  --slate-700: #243643;
  --slate-600: #33495A;
  --slate-500: #4D6577;

  /* Cream / paper */
  --cream:      #F3ECDF;
  --cream-100:  #FBF7EF;
  --paper:      #EBE1CF;
  --paper-line: #DDD0B8;

  /* Gold accent */
  --gold:       #B7873E;
  --gold-light: #CDA45D;
  --gold-soft:  #E2C892;
  --gold-deep:  #8C6628;

  /* Ink (text on cream) */
  --ink:       #1C232B;
  --ink-soft:  #45525C;
  --ink-faint: #6E7A82;

  /* On dark */
  --on-dark:        #F3ECDF;
  --on-dark-soft:   #B7C2CB;
  --on-dark-faint:  #7C8B97;

  --maxw: 1200px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --font-display: "Bodoni Moda", Georgia, serif;
  --font-body: "Mulish", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---- Reusable layout ---- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}
@media (min-width: 768px) { .wrap { padding: 0 40px; } }

.section { padding: 64px 0; }
@media (min-width: 768px) { .section { padding: 104px 0; } }

/* ---- Type ---- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow.on-dark { color: var(--gold-light); }
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.04; margin: 0; letter-spacing: -0.01em; }

.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.015em;
  font-size: clamp(2.6rem, 9vw, 5.6rem);
}
.h-sec {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.lede {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 400;
}
.lede.on-dark { color: var(--on-dark-soft); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-gold {
  background: var(--gold);
  color: #1a130a;
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(140, 102, 40, 0.7); }
.btn-gold[disabled] { opacity: 0.4; pointer-events: none; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(28,35,43,0.32);
}
.btn-outline:hover { border-color: var(--ink); background: rgba(28,35,43,0.04); }
.btn-outline.on-dark { color: var(--on-dark); border-color: rgba(243,236,223,0.32); }
.btn-outline.on-dark:hover { border-color: var(--on-dark); background: rgba(243,236,223,0.06); }
.btn-dark { background: var(--slate-900); color: var(--on-dark); border-color: var(--slate-900); }
.btn-dark:hover { background: var(--slate-800); border-color: var(--slate-800); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  padding: 10px 0;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  font-weight: 700;
  border: none;
}
.btn-ghost svg { width: 16px; height: 16px; }
.btn-ghost .arr { display: inline-flex; transition: transform 0.3s var(--ease); }
.btn-ghost:hover .arr { transform: translateX(5px); }
.btn-block { width: 100%; }

/* ---- Placeholder image (used until a real photo is dropped in) ---- */
.ph {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(120% 90% at 30% 10%, rgba(183,135,62,0.16), transparent 60%),
    linear-gradient(155deg, var(--slate-700), var(--slate-900));
  color: var(--on-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}
/* a real <img.ph-img> sits on top of the placeholder; if it 404s, JS removes it and the label shows */
.ph-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.ph-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
  color: var(--on-dark-soft);
}
.ph-label svg { width: 30px; height: 30px; opacity: 0.5; }
.ph-label .pl-t {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.ph-label .pl-s {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--on-dark-faint);
}
/* corner label variant (for full-bleed backgrounds) */
.ph-corner .ph-label {
  position: absolute;
  left: 14px; bottom: 12px;
  flex-direction: row;
  gap: 8px;
  text-align: left;
  padding: 6px 10px;
  background: rgba(19,29,38,0.4);
  border: 1px solid rgba(243,236,223,0.12);
  border-radius: 2px;
  color: var(--on-dark-faint);
}
.ph-corner .ph-label svg { width: 16px; height: 16px; }
.ph-corner .ph-label .pl-t { font-size: 9.5px; }
.ph-corner .ph-label .pl-s { font-size: 12px; }
.ph-corner .ph-label .pl-stack { display: flex; flex-direction: column; line-height: 1.25; }

/* grain overlay reusable on dark sections */
.grain { position: relative; }
.grain::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.grain > * { position: relative; z-index: 1; }

/* hairline rule */
.rule { height: 1px; background: var(--paper-line); border: none; margin: 0; }
.rule.on-dark { background: rgba(243,236,223,0.12); }

/* star rating */
.stars { color: var(--gold); display: inline-flex; gap: 2px; }
.stars svg { width: 14px; height: 14px; }

/* utility */
.center { text-align: center; }
.muted { color: var(--ink-faint); }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---- Reveal on scroll (real browsers; JS adds .in) ---- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  background: var(--slate-900);
  border-bottom: 1px solid rgba(243,236,223,0.1);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,0.7);
}
/* transparent over hero on home until scrolled */
.nav.nav--transparent {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}
.wordmark { display: inline-flex; flex-direction: column; line-height: 1; gap: 3px; }
.wordmark .wm-1 { font-family: var(--font-display); font-weight: 700; font-size: 24px; letter-spacing: 0.04em; color: var(--on-dark); }
.wordmark .wm-2 { font-family: var(--font-body); font-weight: 700; font-size: 8.5px; letter-spacing: 0.34em; color: var(--gold-light); }

.nav-desktop { display: none; align-items: center; gap: 34px; }
.nav-link {
  font-family: var(--font-body); font-weight: 700; font-size: 12.5px; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 8px 2px; position: relative;
  color: var(--on-dark); opacity: 0.82;
  transition: color 0.2s, opacity 0.2s;
}
.nav-link:hover { opacity: 1; }
.nav-link.is-active { color: var(--gold-light); opacity: 1; }
.nav-link.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1.5px; background: var(--gold-light);
}

.nav-cta { display: none; align-items: center; gap: 18px; }
.nav-phone { display: inline-flex; align-items: center; gap: 7px; color: var(--on-dark-soft); font-size: 13px; font-weight: 700; }
.nav-phone svg { width: 16px; height: 16px; }
.nav-cta .btn { padding: 12px 22px; font-size: 12.5px; }

.nav-burger { display: inline-flex; background: none; border: none; color: var(--on-dark); padding: 4px; }
.nav-burger svg { width: 24px; height: 24px; }

@media (min-width: 1000px) {
  .nav-desktop { display: flex; }
  .nav-cta { display: flex; }
  .nav-burger { display: none; }
}
@media (min-width: 1000px) and (max-width: 1140px) {
  .nav-cta .nav-phone { display: none; }
}

/* Mobile overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200; background: var(--slate-900);
  transform: translateX(100%);
  transition: transform 0.38s var(--ease);
  display: flex; flex-direction: column; padding: 22px;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; height: 50px; }
.mobile-menu__close { background: none; border: none; color: var(--on-dark); padding: 4px; }
.mobile-menu__close svg { width: 24px; height: 24px; }
.mobile-nav { display: flex; flex-direction: column; gap: 4px; margin-top: 36px; }
.mobile-nav a {
  font-family: var(--font-display); font-weight: 500; font-size: 38px; color: var(--on-dark);
  padding: 10px 0; border-bottom: 1px solid rgba(243,236,223,0.08);
}
.mobile-nav a.is-active { color: var(--gold-light); }
.mobile-nav a .num { font-family: var(--font-body); font-size: 12px; color: var(--gold); vertical-align: super; margin-right: 12px; }
.mobile-menu__foot { margin-top: auto; display: flex; flex-direction: column; gap: 14px; }
.mobile-menu__foot .btn { width: 100%; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--slate-900); color: var(--on-dark); overflow: hidden; }
.footer__inner { padding-top: 72px; padding-bottom: 40px; }
.footer-grid { display: grid; gap: 44px; grid-template-columns: 1fr; align-items: start; }
.footer p { margin: 0; }
.footer .lede { font-size: 15px; margin-top: 22px; max-width: 320px; }
.footer__rating { display: flex; gap: 12px; margin-top: 22px; align-items: center; }
.footer__rating span.txt { color: var(--on-dark-soft); font-size: 13px; }
.foot-h { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin: 0 0 18px; }
.foot-col-links { display: flex; flex-direction: column; gap: 11px; }
.foot-link { color: var(--on-dark-soft); font-size: 14px; transition: color 0.2s; }
.foot-link:hover { color: var(--on-dark); }
.foot-visit { display: flex; flex-direction: column; gap: 11px; color: var(--on-dark-soft); font-size: 14px; }
.footer__base { display: flex; flex-wrap: wrap; gap: 12px; just-content: space-between; justify-content: space-between; color: var(--on-dark-faint); font-size: 12.5px; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  position: relative; background: var(--slate-900); color: var(--on-dark);
  overflow: hidden; min-height: 100svh; display: flex; align-items: flex-end;
}
.hero__media { position: absolute; inset: 0; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19,29,38,0.78) 0%, rgba(19,29,38,0.45) 38%, rgba(19,29,38,0.92) 100%);
}
.hero__content { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 64px; }
.hero h1 { margin-top: 22px; max-width: 16ch; }
.hero h1 .accent { font-style: italic; color: var(--gold-light); }
.hero .lede { margin-top: 26px; max-width: 480px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__proof { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 40px; }
.hero__proof .rate { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--on-dark-soft); }
.hero__proof .rate b { color: var(--on-dark); }
.hero__proof .divider { width: 1px; height: 16px; background: rgba(243,236,223,0.2); }

/* live open/closed status pill */
.status { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--on-dark-faint); }
.status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--on-dark-faint); }
.status.is-open { color: var(--gold-soft); }
.status.is-open .dot { background: #7FB069; box-shadow: 0 0 0 3px rgba(127,176,105,0.25); }

.hide-sm { display: none; }
@media (min-width: 600px) { .hide-sm { display: inline-block; } }

/* ============================================================
   TRUST / PERK STRIP
   ============================================================ */
.trust { background: var(--slate-800); color: var(--on-dark); }
.perk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.perk {
  display: flex; align-items: center; gap: 14px; padding: 26px 22px;
  border-bottom: 1px solid rgba(243,236,223,0.1);
}
.perk svg { width: 22px; height: 22px; color: var(--gold-light); flex-shrink: 0; }
.perk span { font-size: 14px; font-weight: 600; line-height: 1.3; }
@media (min-width: 900px) {
  .perk-grid { grid-template-columns: repeat(4, 1fr); }
  .perk { border-bottom: none; border-right: 1px solid rgba(243,236,223,0.1); }
  .perk:last-child { border-right: none; }
}

/* ============================================================
   SECTION HEADER (eyebrow + title + optional side link)
   ============================================================ */
.sec-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 48px; }
.sec-head h2 { margin-top: 16px; }

/* ============================================================
   SERVICES SNAPSHOT (home)
   ============================================================ */
.svc-snap { display: grid; grid-template-columns: 1fr; gap: 22px; }
.svc-card { background: var(--cream-100); border: 1px solid var(--paper-line); border-radius: 3px; overflow: hidden; display: flex; flex-direction: column; }
.svc-card .ph { aspect-ratio: 3 / 4; }
.svc-card__body { padding: 24px 24px 26px; }
.svc-card__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.svc-card__top h3 { font-size: 22px; }
.svc-card__price { font-family: var(--font-display); font-size: 22px; color: var(--gold-deep); }
.svc-card p { color: var(--ink-soft); font-size: 14.5px; margin: 10px 0 0; }
.svc-card .dur { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 12px; color: var(--ink-faint); font-weight: 600; letter-spacing: 0.04em; }
.svc-card .dur svg { width: 14px; height: 14px; }
@media (min-width: 640px) { .svc-snap { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .svc-snap { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   SPLIT (drinks / about story)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.split .ph { height: 440px; border-radius: 3px; }
.split h2 { margin-top: 16px; max-width: 16ch; }
.split .lede { margin-top: 20px; }
.callout { display: inline-flex; align-items: center; gap: 14px; margin-top: 26px; padding: 14px 20px; background: var(--cream-100); border: 1px solid var(--paper-line); border-radius: 3px; }
.callout svg { width: 22px; height: 22px; color: var(--gold-deep); flex-shrink: 0; }
.callout span { font-size: 14.5px; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 56px; } }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--slate-900); color: var(--on-dark); }
.rev-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.review { margin: 0; background: rgba(243,236,223,0.04); border: 1px solid rgba(243,236,223,0.1); border-radius: 3px; padding: 30px 28px; display: flex; flex-direction: column; }
.review blockquote { margin: 18px 0 0; font-family: var(--font-display); font-style: italic; font-size: 19px; line-height: 1.45; color: var(--on-dark); }
.review figcaption { margin-top: auto; padding-top: 22px; font-size: 13px; color: var(--on-dark-faint); }
.review figcaption b { color: var(--gold-light); }
@media (min-width: 900px) { .rev-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   FIND-US BAND (gold CTA)
   ============================================================ */
.findus-band { background: var(--gold); color: #1a130a; overflow: hidden; }
.findus { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.findus h2 { color: #1a130a; }
.findus p.intro { font-size: 17px; margin: 16px 0 0; max-width: 420px; color: #3a2c14; }
.findus__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.findus__actions .btn-outline { border-color: rgba(26,19,10,0.4); color: #1a130a; }
.findus__actions .btn-outline:hover { border-color: #1a130a; background: rgba(26,19,10,0.05); }
.findus__info { display: flex; flex-direction: column; gap: 16px; }
.findus__info .row { display: flex; gap: 14px; align-items: flex-start; }
.findus__info .row svg { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }
.findus__info .row span { font-size: 15.5px; font-weight: 600; }
.findus__info .sub { font-weight: 500; color: #5a4a2c; }
.findus__info .hr { height: 1px; background: rgba(26,19,10,0.18); }
@media (min-width: 900px) { .findus { grid-template-columns: 1.1fr 0.9fr; } }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { position: relative; background: var(--slate-900); color: var(--on-dark); overflow: hidden; padding-top: 132px; padding-bottom: 56px; }
.page-hero .ph { position: absolute; inset: 0; height: 100%; opacity: 0.5; }
.page-hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(19,29,38,0.7), var(--slate-900)); }
.page-hero__content { position: relative; z-index: 1; }
.page-hero h1 { margin-top: 18px; font-size: clamp(2.4rem, 7vw, 4.4rem); }
.page-hero .lede { margin-top: 20px; max-width: 520px; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.svc-section--alt { background: var(--paper); }
.svc-list { display: flex; flex-direction: column; }
.svc-list .cap { border-top: 1px solid var(--paper-line); }
.svc-row { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 24px 0; border-top: 1px solid var(--paper-line); }
.svc-row__name { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.svc-row__name h3 { font-size: 23px; }
.svc-row__dur { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--ink-faint); font-weight: 600; letter-spacing: 0.04em; }
.svc-row__dur svg { width: 13px; height: 13px; }
.svc-row p { color: var(--ink-soft); font-size: 14.5px; margin: 8px 0 0; max-width: 52ch; }
.svc-row__right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.svc-row__price { font-family: var(--font-display); font-size: 30px; color: var(--ink); }
.svc-row__price .from { font-size: 13px; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); margin-right: 6px; }

.discounts { background: var(--slate-800); color: var(--on-dark); }
.discounts__inner { padding-top: 44px; padding-bottom: 44px; }
.discounts__row { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; }
.discounts__items { display: flex; flex-wrap: wrap; gap: 28px; }
.discounts__items span { display: inline-flex; align-items: center; gap: 12px; font-size: 15px; }
.discounts__items svg { width: 22px; height: 22px; color: var(--gold-light); }
.discounts__note { margin: 0; font-size: 12.5px; color: var(--on-dark-faint); max-width: 280px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.stats { display: flex; gap: 38px; margin-top: 32px; flex-wrap: wrap; }
.stat .n { font-family: var(--font-display); font-size: 34px; color: var(--gold-deep); line-height: 1; }
.stat .l { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-top: 8px; }

.team-list { display: flex; flex-direction: column; gap: 28px; }
.bio-row { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; background: var(--cream-100); border: 1px solid var(--paper-line); border-radius: 3px; overflow: hidden; }
.bio-row .ph { height: 300px; }
.bio-row__body { padding: 8px 28px 28px; }
.bio-row__name { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.bio-row__name h3 { font-size: 34px; }
.bio-row__role { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); }
.bio-row p { color: var(--ink-soft); font-size: 16px; margin: 14px 0 0; max-width: 58ch; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag { font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); background: var(--paper); border: 1px solid var(--paper-line); padding: 5px 11px; border-radius: 2px; }
@media (min-width: 900px) {
  .bio-row { grid-template-columns: 320px 1fr; gap: 40px; }
  .bio-row__body { padding: 8px 40px; }
  .bio-row--flip .ph { order: 2; }
}

.comm-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.comm-card { background: var(--cream-100); border: 1px solid var(--paper-line); border-radius: 3px; padding: 28px 24px; }
.comm-card svg { width: 22px; height: 22px; color: var(--gold-deep); }
.comm-card h3 { font-size: 20px; margin-top: 16px; }
.comm-card p { color: var(--ink-soft); font-size: 14.5px; margin: 8px 0 0; }
@media (min-width: 640px) { .comm-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .comm-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: stretch; }
.contact-map { display: flex; flex-direction: column; }
.contact-map__frame { position: relative; border-radius: 3px; overflow: hidden; border: 1px solid var(--paper-line); flex: 1; min-height: 380px; }
.contact-map__frame .ph { position: absolute; inset: 0; height: 100%; }
.contact-map__iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.contact-map__pin { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-100%); color: var(--gold); filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4)); z-index: 3; }
.contact-map__pin svg { width: 40px; height: 40px; }

.hours-table { margin-top: 26px; display: flex; flex-direction: column; border: 1px solid var(--paper-line); border-radius: 3px; overflow: hidden; }
.hours-row { display: flex; justify-content: space-between; padding: 13px 18px; border-bottom: 1px solid var(--paper-line); border-left: 3px solid transparent; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 600; font-size: 14.5px; }
.hours-row .time { font-size: 14.5px; color: var(--ink); font-weight: 600; }
.hours-row .time.closed { color: var(--ink-faint); }
.hours-row.is-today { background: var(--cream-100); border-left-color: var(--gold); }
.hours-row.is-today .day { font-weight: 800; }
.hours-row .today-tag { color: var(--gold-deep); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; margin-left: 8px; }

.contact-rows { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 4px 0; font-size: 15.5px; line-height: 1.4; }
.contact-row svg { width: 18px; height: 18px; color: var(--gold-deep); margin-top: 2px; flex-shrink: 0; }
.contact-row .sub { font-size: 13px; color: var(--ink-faint); }
.contact-note { margin-top: 24px; padding: 16px 20px; background: var(--cream-100); border: 1px solid var(--paper-line); border-radius: 3px; font-size: 14px; color: var(--ink-soft); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   BOOK PAGE — multi-step flow
   ============================================================ */
.book-head { background: var(--slate-900); color: var(--on-dark); padding-top: 110px; padding-bottom: 40px; }
.book-head h1 { margin-top: 16px; font-size: clamp(2.2rem, 6vw, 3.6rem); }

.book-progress { background: var(--slate-800); position: sticky; top: var(--nav-h); z-index: 40; border-bottom: 1px solid rgba(243,236,223,0.1); }
.prog { display: flex; gap: 6px; padding: 16px 0; }
.prog__step { flex: 1; background: none; border: none; text-align: left; padding: 0; cursor: default; }
.prog__step.is-clickable { cursor: pointer; }
.prog__bar { height: 3px; border-radius: 2px; background: rgba(243,236,223,0.18); transition: background 0.3s; }
.prog__step.is-active .prog__bar, .prog__step.is-done .prog__bar { background: var(--gold); }
.prog__meta { margin-top: 9px; display: flex; align-items: center; gap: 8px; }
.prog__num { font-size: 11px; font-weight: 800; color: var(--on-dark-faint); }
.prog__label { font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; color: var(--on-dark-faint); text-transform: uppercase; }
.prog__step.is-active .prog__num, .prog__step.is-done .prog__num { color: var(--gold-light); }
.prog__step.is-active .prog__label, .prog__step.is-done .prog__label { color: var(--on-dark); }
@media (max-width: 520px) { .prog__label { display: none; } }

.book-body { padding-top: 44px; padding-bottom: 60px; }
.book-body .wrap { max-width: 880px; }
.book-step h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); }
.book-step .hint { color: var(--ink-soft); font-size: 15px; margin: 8px 0 30px; }
.book-cat { margin-bottom: 26px; }
.book-cat .eyebrow { margin-bottom: 14px; }

.opt-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 620px) { .opt-grid { grid-template-columns: 1fr 1fr; } }
.opt-card { text-align: left; background: var(--cream-100); border: 1px solid var(--paper-line); border-radius: 3px; padding: 18px 20px; transition: all 0.18s var(--ease); position: relative; }
.opt-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.opt-card.is-on { border-color: var(--gold); box-shadow: inset 0 0 0 1px var(--gold), 0 10px 26px -16px rgba(140,102,40,0.6); background: #fff; }
.opt-card.is-on::after { content: "✓"; position: absolute; top: 12px; right: 14px; width: 20px; height: 20px; border-radius: 50%; background: var(--gold); color: #1a130a; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; }
.opt-card__top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.opt-card__name { font-family: var(--font-display); font-size: 19px; }
.opt-card__price { font-family: var(--font-display); font-size: 19px; color: var(--gold-deep); }
.opt-card__dur { display: flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 12px; color: var(--ink-faint); font-weight: 600; }
.opt-card__dur svg { width: 13px; height: 13px; }
/* barber option */
.opt-card--barber { display: flex; align-items: center; gap: 16px; }
.opt-card__avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(155deg, var(--slate-600), var(--slate-900)); color: var(--gold-light); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 20px; flex-shrink: 0; }
.opt-card__barber-name { display: block; font-family: var(--font-display); font-size: 20px; }
.opt-card__barber-role { display: block; font-size: 12.5px; color: var(--ink-faint); font-weight: 600; letter-spacing: 0.03em; margin-top: 2px; }

.book-sub { margin-bottom: 14px; }
.day-scroll { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 28px; }
.day-card { flex: 0 0 auto; width: 72px; display: flex; flex-direction: column; align-items: center; background: var(--cream-100); border: 1px solid var(--paper-line); border-radius: 3px; padding: 12px 0; color: var(--ink); transition: all 0.16s var(--ease); }
.day-card:hover { border-color: var(--gold); }
.day-card.is-on { background: var(--slate-800); color: var(--on-dark); border-color: var(--slate-800); }
.day-card .dow { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; }
.day-card .dnum { font-family: var(--font-display); font-size: 26px; line-height: 1; margin: 6px 0 2px; }
.day-card .mon { font-size: 11px; opacity: 0.6; }

.time-wrap.is-disabled { opacity: 0.4; pointer-events: none; }
.time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (min-width: 620px) { .time-grid { grid-template-columns: repeat(5, 1fr); } }
.time-card { background: var(--cream-100); border: 1px solid var(--paper-line); border-radius: 3px; padding: 13px 8px; font-size: 13.5px; font-weight: 700; color: var(--ink); letter-spacing: 0.02em; transition: all 0.16s var(--ease); }
.time-card:hover { border-color: var(--gold); }
.time-card.is-on { background: var(--gold); border-color: var(--gold); color: #1a130a; }

.book-final { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; }
.field { display: block; }
.field > span { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.book-fields { display: flex; flex-direction: column; gap: 18px; }
.inp { width: 100%; font-family: var(--font-body); font-size: 15px; padding: 14px 16px; border: 1px solid var(--paper-line); border-radius: 3px; background: var(--cream-100); color: var(--ink); transition: border-color 0.2s; }
.inp:focus { outline: none; border-color: var(--gold); background: #fff; }
.inp::placeholder { color: var(--ink-faint); }
.book-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.book-check input { margin-top: 3px; accent-color: var(--gold); }
.book-aside { background: var(--cream-100); border: 1px solid var(--paper-line); border-radius: 4px; padding: 24px; }
.book-aside .eyebrow { margin-bottom: 16px; }
@media (min-width: 900px) { .book-final { grid-template-columns: 1fr 320px; } }

.book-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; gap: 16px; }

/* recap */
.recap__row { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--paper-line); }
.recap__row .l { font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); }
.recap__row .v { font-size: 14.5px; font-weight: 600; color: var(--ink); text-align: right; }
.recap__total { display: flex; justify-content: space-between; padding-top: 14px; }
.recap__total .l { font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); }
.recap__total .v { font-family: var(--font-display); font-size: 22px; color: var(--gold-deep); }
/* recap on dark (confirmation) */
.recap--dark .recap__row { border-bottom-color: rgba(243,236,223,0.12); }
.recap--dark .recap__row .l, .recap--dark .recap__total .l { color: var(--on-dark-faint); }
.recap--dark .recap__row .v { color: var(--on-dark); }
.recap--dark .recap__total .v { color: var(--gold-light); }

/* confirmation screen */
.book-done { background: var(--slate-900); color: var(--on-dark); min-height: 100svh; display: flex; align-items: center; }
.book-done .wrap { padding-top: 100px; padding-bottom: 60px; max-width: 640px; }
.book-done__check { width: 64px; height: 64px; border-radius: 50%; background: var(--gold); color: #1a130a; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 8px rgba(183,135,62,0.18); }
.book-done__check svg { width: 32px; height: 32px; }
.book-done .eyebrow { margin-top: 30px; }
.book-done h1 { margin-top: 16px; font-size: clamp(2.4rem, 7vw, 4rem); }
.book-done .lede { margin-top: 18px; }
.book-done__card { margin-top: 32px; background: rgba(243,236,223,0.05); border: 1px solid rgba(243,236,223,0.12); border-radius: 4px; padding: 26px 28px; }
.book-done__note { margin-top: 20px; font-size: 13px; color: var(--on-dark-faint); }
.book-done__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* hide JS-only booking shell when no JS */
.no-js #booking-app { display: none; }
.book-noscript { display: none; }
.no-js .book-noscript { display: block; }
