/* Aurora Hair & Beauty, demo styles */
:root{
  --rose:#E56B8B;
  --rose-deep:#C9466A;
  --blush:#F9E7E7;
  --blush-soft:#FDF5F3;
  --ink:#1A1619;
  --ink-soft:#3A3238;
  --line:#EADCDC;
  --mute:#8A7A7F;
  --cream:#FBF7F4;
  --ok:#2E8B57;
  --warn:#D08B2C;
  --bad:#B8384B;
  --font-h:"Manrope",system-ui,-apple-system,sans-serif;
  --font:"Inter",system-ui,-apple-system,sans-serif;
  --radius:14px;
  --radius-lg:22px;
  --shadow:0 10px 30px rgba(26,22,25,0.08);
  --shadow-lg:0 20px 60px rgba(26,22,25,0.12);
}

*,*::before,*::after{ box-sizing:border-box }
html,body{ margin:0; padding:0; background:var(--cream); color:var(--ink); font-family:var(--font); -webkit-font-smoothing:antialiased; line-height:1.55 }
h1,h2,h3,h4{ font-family:var(--font-h); font-weight:700; letter-spacing:-0.02em; margin:0; color:var(--ink) }
p{ margin:0 0 .6em }
a{ color:inherit; text-decoration:none }
img{ max-width:100%; display:block }
button{ font-family:inherit; cursor:pointer }

/* =================== header =================== */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(251,247,244,0.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(234,220,220,0.6);
}
.nav-wrap{
  max-width:1240px; margin:0 auto; padding:16px 24px;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.brand{
  font-family:var(--font-h); font-weight:800; font-size:22px; letter-spacing:-0.04em;
  display:inline-flex; align-items:center; gap:8px;
}
.brand .dot{ width:10px; height:10px; border-radius:50%; background:var(--rose); display:inline-block }
.nav-links{ display:flex; gap:28px; list-style:none; padding:0; margin:0 }
.nav-links a{ font-size:14px; font-weight:500; color:var(--ink-soft); transition:color .15s }
.nav-links a:hover{ color:var(--rose-deep) }
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 22px; border-radius:999px; font-weight:600; font-size:14px;
  border:1px solid transparent; transition:transform .15s, box-shadow .15s, background .15s;
  cursor:pointer;
}
.btn-primary{ background:var(--rose); color:#fff; box-shadow:0 6px 18px rgba(229,107,139,0.4) }
.btn-primary:hover{ background:var(--rose-deep); transform:translateY(-1px); box-shadow:0 10px 24px rgba(229,107,139,0.5) }
.btn-ghost{ background:transparent; color:var(--ink); border-color:var(--line) }
.btn-ghost:hover{ background:var(--blush) }
.btn-dark{ background:var(--ink); color:#fff }
.btn-dark:hover{ background:#000 }
.btn-block{ width:100%; padding:16px 22px; font-size:15px }
.nav-actions{ display:flex; align-items:center; gap:10px }
.nav-toggle{ display:none; align-items:center; justify-content:center; width:42px; height:42px; background:#fff; border:1px solid var(--line); border-radius:10px; color:var(--ink) }
.nav-toggle svg{ width:20px; height:20px; display:block }
.nav-toggle .ic-close{ display:none }
.site-header.menu-open .nav-toggle .ic-open{ display:none }
.site-header.menu-open .nav-toggle .ic-close{ display:block }

/* =================== hero =================== */
.hero{
  position:relative; min-height:640px; padding:90px 24px 100px;
  background:
    radial-gradient(circle at 85% 20%, rgba(229,107,139,0.18), transparent 55%),
    linear-gradient(180deg, var(--blush-soft), var(--cream));
  overflow:hidden;
}
.hero-grid{
  max-width:1240px; margin:0 auto;
  display:grid; grid-template-columns:1.1fr 1fr; gap:60px; align-items:center;
}
.hero h1{
  font-size:clamp(40px,5.4vw,72px); line-height:1.02; letter-spacing:-0.035em; font-weight:800;
}
.hero h1 .accent{ color:var(--rose-deep); font-style:italic; font-weight:600 }
.hero p.lead{ margin-top:20px; font-size:18px; color:var(--ink-soft); max-width:48ch }
.hero-cta{ margin-top:32px; display:flex; gap:12px; flex-wrap:wrap }
.hero-meta{ margin-top:40px; display:flex; gap:28px; flex-wrap:wrap; color:var(--mute); font-size:13px }
.hero-meta b{ color:var(--ink); font-weight:700; font-size:15px; display:block }
.hero-img{
  position:relative; border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:4/5;
  background:linear-gradient(135deg,#c58ba4,#7b4b5e);
  box-shadow:var(--shadow-lg);
}
.hero-img img{ width:100%; height:100%; object-fit:cover }
.hero-badge{
  position:absolute; bottom:22px; left:22px; background:#fff; border-radius:14px; padding:12px 16px;
  display:flex; align-items:center; gap:10px; box-shadow:var(--shadow);
}
.hero-badge .stars{ color:#E8A23A; font-size:14px; letter-spacing:2px }
.hero-badge b{ font-size:14px }
.hero-badge span{ color:var(--mute); font-size:12px }

/* =================== section scaffolding =================== */
section{ padding:80px 24px }
.container{ max-width:1240px; margin:0 auto }
.eyebrow{ text-transform:uppercase; letter-spacing:0.16em; font-size:12px; color:var(--rose-deep); font-weight:700; margin-bottom:14px }
.section-title{ font-size:clamp(28px,3.6vw,44px); max-width:22ch; line-height:1.1; letter-spacing:-0.02em }
.section-sub{ margin-top:14px; color:var(--ink-soft); max-width:56ch; font-size:16px }
.section-head{ display:flex; justify-content:space-between; align-items:end; gap:30px; margin-bottom:40px; flex-wrap:wrap }

/* services */
.services-grid{
  display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:18px;
}
.svc-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:24px;
  transition:transform .2s, box-shadow .2s, border-color .2s;
  display:flex; flex-direction:column; gap:10px;
}
.svc-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow); border-color:var(--rose) }
.svc-card .cat{ font-size:11px; color:var(--rose-deep); font-weight:700; letter-spacing:0.14em; text-transform:uppercase }
.svc-card h3{ font-size:20px }
.svc-card .meta{ display:flex; justify-content:space-between; align-items:end; margin-top:auto; padding-top:14px; border-top:1px dashed var(--line) }
.svc-card .price{ font-family:var(--font-h); font-size:20px; font-weight:700 }
.svc-card .price small{ color:var(--mute); font-weight:500; font-size:12px; display:block; margin-bottom:2px }
.svc-card .dur{ color:var(--mute); font-size:13px }
.svc-card .pick{ font-size:13px; color:var(--rose-deep); font-weight:600 }

/* team */
.team-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px }
.stylist{
  background:#fff; border-radius:var(--radius-lg); padding:22px; text-align:center;
  border:1px solid var(--line); transition:transform .2s, box-shadow .2s;
}
.stylist:hover{ transform:translateY(-3px); box-shadow:var(--shadow) }
.stylist .avatar{
  width:110px; height:110px; border-radius:50%; margin:0 auto 14px; overflow:hidden;
  background:var(--blush); border:3px solid #fff; box-shadow:0 6px 18px rgba(0,0,0,0.1);
}
.stylist .avatar img{ width:100%; height:100%; object-fit:cover }
.stylist h3{ font-size:18px }
.stylist .role{ color:var(--rose-deep); font-size:13px; font-weight:600; margin:4px 0 10px }
.chips{ display:flex; flex-wrap:wrap; gap:6px; justify-content:center; margin-bottom:12px }
.chip{ background:var(--blush); color:var(--ink); padding:5px 11px; border-radius:999px; font-size:12px; font-weight:500 }
.rating{ font-size:13px; color:var(--ink-soft) }
.rating b{ color:var(--ink) }

/* gallery */
.gallery{
  display:grid; grid-template-columns:repeat(4,1fr); gap:12px; grid-auto-flow:dense;
}
.gal-item{
  aspect-ratio:1/1; border-radius:var(--radius); overflow:hidden; position:relative;
  background:linear-gradient(135deg,#e1b7c5,#a36d82);
}
.gal-item img{ width:100%; height:100%; object-fit:cover; transition:transform .4s }
.gal-item:hover img{ transform:scale(1.05) }
.gal-item.tall{ grid-row:span 2; aspect-ratio:auto }

/* reviews */
.reviews{ background:var(--blush-soft) }
.reviews-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px }
.review{
  background:#fff; border-radius:var(--radius-lg); padding:28px;
  border:1px solid var(--line);
}
.review .stars{ color:#E8A23A; letter-spacing:3px; margin-bottom:12px }
.review blockquote{ margin:0 0 16px; font-size:16px; line-height:1.6; color:var(--ink) }
.review .who{ font-weight:600; font-size:14px }
.review .when{ color:var(--mute); font-size:12px }

/* hours + location */
.info-grid{ display:grid; grid-template-columns:1fr 1.2fr; gap:40px; align-items:center }
.hours-table{ width:100%; border-collapse:collapse }
.hours-table tr{ border-bottom:1px solid var(--line) }
.hours-table td{ padding:14px 0; font-size:15px }
.hours-table td:last-child{ text-align:right; font-weight:600 }
.hours-table tr.today td{ color:var(--rose-deep) }
.hours-table tr.today td:last-child{ color:var(--rose-deep) }
.closed{ color:var(--mute) }
.map{
  aspect-ratio:5/4; border-radius:var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(229,107,139,0.15), rgba(229,107,139,0.05)),
    repeating-linear-gradient(0deg, transparent, transparent 38px, rgba(26,22,25,0.06) 38px, rgba(26,22,25,0.06) 39px),
    repeating-linear-gradient(90deg, transparent, transparent 38px, rgba(26,22,25,0.06) 38px, rgba(26,22,25,0.06) 39px),
    #fff;
  position:relative; border:1px solid var(--line);
}
.map::after{
  content:''; position:absolute; left:52%; top:46%; width:22px; height:22px;
  background:var(--rose); border-radius:50% 50% 50% 0; transform:rotate(-45deg) translate(-50%,-50%);
  box-shadow:0 4px 14px rgba(229,107,139,0.4);
}
.map-label{
  position:absolute; bottom:20px; left:20px; background:#fff; padding:10px 16px; border-radius:12px;
  font-size:13px; box-shadow:var(--shadow);
}

/* footer */
.site-footer{
  background:var(--ink); color:rgba(255,255,255,0.85); padding:70px 24px 30px;
}
.foot-grid{ max-width:1240px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr; gap:40px }
.foot-logo{ font-family:var(--font-h); font-weight:800; font-size:26px }
.foot-logo span{ color:var(--rose) }
.foot-grid h4{ color:#fff; font-size:14px; margin-bottom:14px; text-transform:uppercase; letter-spacing:0.12em }
.foot-grid a{ display:block; color:rgba(255,255,255,0.7); font-size:14px; padding:4px 0; transition:color .15s }
.foot-grid a:hover{ color:#fff }
.foot-copy{ max-width:1240px; margin:40px auto 0; padding-top:22px; border-top:1px solid rgba(255,255,255,0.1); font-size:12px; color:rgba(255,255,255,0.5); display:flex; justify-content:space-between }

/* =================== booking flow =================== */
.book-shell{ min-height:100vh; background:var(--cream); padding:24px }
.book-wrap{ max-width:1180px; margin:0 auto }
.book-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:30px }
.steps{ display:flex; gap:8px; align-items:center; flex-wrap:wrap }
.step{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 14px; border-radius:999px; background:#fff; border:1px solid var(--line);
  font-size:13px; font-weight:600; color:var(--mute);
}
.step .n{
  width:22px; height:22px; border-radius:50%; background:var(--line); color:#fff;
  display:inline-flex; align-items:center; justify-content:center; font-size:12px;
}
.step.on{ border-color:var(--rose); color:var(--rose-deep); background:var(--blush-soft) }
.step.on .n{ background:var(--rose); color:#fff }
.step.done{ color:var(--ink); border-color:var(--ok) }
.step.done .n{ background:var(--ok) }

.book-layout{
  display:grid; grid-template-columns:1fr 340px; gap:28px; align-items:start;
}
.book-card{ background:#fff; border-radius:var(--radius-lg); padding:30px; border:1px solid var(--line); box-shadow:var(--shadow) }
.book-card h2{ font-size:26px; margin-bottom:6px }
.book-card .sub{ color:var(--mute); margin-bottom:24px; font-size:15px }

.cat-head{ font-size:12px; text-transform:uppercase; letter-spacing:0.14em; color:var(--rose-deep); font-weight:700; margin:24px 0 10px; padding-top:18px; border-top:1px dashed var(--line) }
.cat-head:first-of-type{ border-top:0; padding-top:0; margin-top:0 }
.svc-row{
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  padding:14px 16px; border:1px solid var(--line); border-radius:12px; margin-bottom:8px;
  cursor:pointer; transition:border-color .15s, background .15s; background:#fff;
}
.svc-row:hover{ border-color:var(--rose) }
.svc-row.on{ border-color:var(--rose); background:var(--blush-soft) }
.svc-row .info{ flex:1 }
.svc-row .name{ font-weight:600; font-size:15px }
.svc-row .dur{ font-size:13px; color:var(--mute) }
.svc-row .price{ font-weight:700; font-family:var(--font-h); font-size:17px }
.svc-row .check{
  width:22px; height:22px; border-radius:6px; border:2px solid var(--line); flex-shrink:0;
  display:inline-flex; align-items:center; justify-content:center; transition:all .15s;
}
.svc-row.on .check{ background:var(--rose); border-color:var(--rose); color:#fff }
.svc-row.on .check svg{ width:13px; height:13px }
.svc-row:not(.on) .check svg{ display:none }

/* sidebar summary */
.summary{
  position:sticky; top:24px;
  background:#fff; border-radius:var(--radius-lg); padding:24px; border:1px solid var(--line); box-shadow:var(--shadow);
}
.summary h3{ font-size:17px; margin-bottom:14px }
.summary .line{ display:flex; justify-content:space-between; padding:8px 0; font-size:14px; border-bottom:1px dashed var(--line) }
.summary .line:last-child{ border-bottom:0 }
.summary .line span:last-child{ font-weight:600 }
.summary .total{ display:flex; justify-content:space-between; padding-top:14px; margin-top:10px; border-top:2px solid var(--ink); font-family:var(--font-h); font-weight:700; font-size:18px }
.summary .deposit-note{ background:var(--blush-soft); border:1px solid var(--line); border-radius:12px; padding:12px 14px; font-size:12px; margin-top:14px; color:var(--ink-soft) }
.summary .deposit-note b{ color:var(--rose-deep) }
.summary .empty{ color:var(--mute); font-size:14px; text-align:center; padding:30px 10px }
.summary .actions{ margin-top:18px; display:grid; gap:8px }

/* stylist cards */
.stylist-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px }
.sty-card{
  background:#fff; border:2px solid var(--line); border-radius:var(--radius); padding:18px; cursor:pointer; position:relative;
  transition:border-color .15s, background .15s;
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:8px;
}
.sty-card:hover{ border-color:var(--rose) }
.sty-card.on{ border-color:var(--rose); background:var(--blush-soft) }
.sty-card.disabled{ opacity:0.5; cursor:not-allowed; position:relative }
.sty-card .av{ width:72px; height:72px; border-radius:50%; overflow:hidden; background:var(--blush) }
.sty-card .av img{ width:100%; height:100%; object-fit:cover }
.sty-card .n{ font-weight:700; font-size:15px }
.sty-card .r{ color:var(--mute); font-size:12px }
.sty-card .ch{ display:flex; flex-wrap:wrap; gap:4px; justify-content:center }
.sty-card .ch span{ background:#fff; border:1px solid var(--line); padding:3px 8px; font-size:11px; border-radius:999px }
.sty-card.on .ch span{ background:#fff; border-color:var(--rose) }
.sty-card.any .av{ background:var(--blush); display:flex; align-items:center; justify-content:center; font-size:28px; color:var(--rose-deep) }
.sty-tip{
  position:absolute; bottom:100%; left:50%; transform:translateX(-50%) translateY(-6px);
  background:var(--ink); color:#fff; font-size:11px; padding:6px 10px; border-radius:6px; white-space:nowrap;
  opacity:0; pointer-events:none; transition:opacity .15s;
}
.sty-card.disabled:hover .sty-tip{ opacity:1 }

/* calendar */
.cal-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:14px }
.cal-grid{ display:grid; grid-template-columns:repeat(7,1fr); gap:6px }
.cal-cell{
  background:#fff; border:2px solid var(--line); border-radius:10px; padding:10px 6px;
  text-align:center; cursor:pointer; transition:all .15s; position:relative; aspect-ratio:1/1;
  display:flex; flex-direction:column; justify-content:center; align-items:center; gap:2px;
  font-size:13px;
}
.cal-cell:hover:not(.closed){ border-color:var(--rose) }
.cal-cell.on{ background:var(--rose); color:#fff; border-color:var(--rose) }
.cal-cell.closed{ color:var(--mute); background:transparent; cursor:not-allowed; border-style:dashed }
.cal-cell .dow{ font-size:10px; text-transform:uppercase; letter-spacing:0.08em; color:var(--mute) }
.cal-cell.on .dow{ color:rgba(255,255,255,0.8) }
.cal-cell .n{ font-family:var(--font-h); font-weight:700; font-size:18px }
.cal-cell .avail-dot{ width:6px; height:6px; border-radius:50%; margin-top:2px }
.cal-cell .avail-dot.green{ background:var(--ok) }
.cal-cell .avail-dot.amber{ background:var(--warn) }
.cal-cell .avail-dot.red{ background:var(--bad) }

.slot-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(84px,1fr)); gap:8px; margin-top:20px }
.slot{
  background:#fff; border:1.5px solid var(--line); border-radius:10px;
  padding:10px 0; text-align:center; cursor:pointer; font-weight:600; font-size:14px;
  transition:all .15s; color:var(--ink);
}
.slot:hover:not(:disabled){ border-color:var(--rose); color:var(--rose-deep) }
.slot.on{ background:var(--rose); color:#fff; border-color:var(--rose) }
.slot:disabled{ opacity:0.35; cursor:not-allowed; text-decoration:line-through }

.alt-strip{ margin-top:24px; padding:14px 16px; background:var(--blush-soft); border-radius:12px; border:1px dashed var(--rose) }
.alt-strip .title{ font-size:13px; font-weight:600; margin-bottom:8px; color:var(--rose-deep) }
.alt-strip .row{ display:flex; flex-wrap:wrap; gap:8px }
.alt-pill{
  background:#fff; border:1px solid var(--line); padding:8px 12px; border-radius:999px;
  font-size:13px; cursor:pointer; transition:all .15s;
}
.alt-pill:hover{ border-color:var(--rose); color:var(--rose-deep) }
.alt-pill b{ font-weight:700 }

/* forms */
.field{ margin-bottom:16px }
.field label{ display:block; font-size:13px; font-weight:600; margin-bottom:6px }
.field input,.field textarea{
  width:100%; padding:12px 14px; border:1.5px solid var(--line); border-radius:10px;
  font:inherit; background:#fff; color:var(--ink); transition:border-color .15s;
}
.field input:focus,.field textarea:focus{ outline:none; border-color:var(--rose) }
.field textarea{ min-height:80px; resize:vertical }
.row-2{ display:grid; grid-template-columns:1fr 1fr; gap:14px }
.check-inline{ display:flex; align-items:center; gap:8px; font-size:14px }
.check-inline input{ width:auto; margin:0 }

/* payment card */
.pay-card{
  margin-top:22px; padding:22px; border:1.5px solid var(--line); border-radius:var(--radius); background:var(--blush-soft);
}
.pay-card .title{ display:flex; justify-content:space-between; align-items:center; margin-bottom:16px }
.pay-card .title h3{ font-size:17px }
.pay-card .brands{ display:flex; gap:6px; align-items:center }
.pay-card .brand-chip{ background:#fff; padding:4px 8px; border-radius:6px; font-size:10px; font-weight:700; letter-spacing:0.06em; border:1px solid var(--line) }

/* nav buttons */
.nav-btns{ display:flex; justify-content:space-between; gap:12px; margin-top:28px }
.nav-btns .btn{ min-width:120px }

/* =================== admin =================== */
.admin-shell{ display:grid; grid-template-columns:240px 1fr; min-height:100vh; background:var(--cream) }
.admin-side{
  background:var(--ink); color:#fff; padding:26px 18px; position:sticky; top:0; height:100vh; overflow-y:auto;
}
.admin-brand{ font-family:var(--font-h); font-weight:800; font-size:20px; margin-bottom:30px; color:#fff }
.admin-brand .dot{ width:8px; height:8px; border-radius:50%; background:var(--rose); display:inline-block; margin-right:6px }
.admin-nav{ display:flex; flex-direction:column; gap:4px }
.admin-nav a{
  display:flex; align-items:center; gap:10px; padding:10px 14px; border-radius:10px;
  color:rgba(255,255,255,0.7); font-size:14px; font-weight:500; transition:all .15s;
}
.admin-nav a:hover{ background:rgba(255,255,255,0.08); color:#fff }
.admin-nav a.on{ background:var(--rose); color:#fff }
.admin-profile{ margin-top:auto; padding-top:24px; border-top:1px solid rgba(255,255,255,0.1); display:flex; gap:10px; align-items:center; font-size:13px }
.admin-profile .av{ width:32px; height:32px; border-radius:50%; background:var(--rose); display:inline-flex; align-items:center; justify-content:center; color:#fff; font-weight:700 }
.admin-main{ padding:30px; overflow-x:hidden }
.admin-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:24px; flex-wrap:wrap; gap:16px }
.admin-head h1{ font-size:30px }
.admin-head .muted{ color:var(--mute); font-size:14px; margin-top:4px }

.kpi-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-bottom:24px }
.kpi{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:20px;
  position:relative; overflow:hidden;
}
.kpi .label{ font-size:12px; color:var(--mute); text-transform:uppercase; letter-spacing:0.1em; font-weight:600 }
.kpi .val{ font-family:var(--font-h); font-weight:800; font-size:30px; margin-top:6px; letter-spacing:-0.02em }
.kpi .sub{ color:var(--ok); font-size:12px; margin-top:4px; font-weight:600 }
.kpi.accent{ background:linear-gradient(135deg,var(--rose),var(--rose-deep)); color:#fff; border:0 }
.kpi.accent .label,.kpi.accent .sub{ color:rgba(255,255,255,0.85) }

.panel{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:24px;
  margin-bottom:20px;
}
.panel h2{ font-size:20px; margin-bottom:16px; display:flex; justify-content:space-between; align-items:center }
.panel h2 .tag{ background:var(--blush); color:var(--rose-deep); font-size:11px; padding:4px 10px; border-radius:999px; font-weight:700; letter-spacing:0.08em; font-family:var(--font) }

/* bookings table */
.booking-row{
  display:grid; grid-template-columns:80px 1.6fr 1.8fr 1.2fr 80px 110px; gap:12px;
  padding:14px; border:1px solid var(--line); border-radius:12px; margin-bottom:8px;
  align-items:center; font-size:14px; background:#fff; transition:border-color .15s;
}
.booking-row:hover{ border-color:var(--rose) }
.booking-row .bt{ font-family:var(--font-h); font-weight:700; font-size:17px }
.booking-row .bc{ font-weight:600 }
.booking-row .bc small{ display:block; color:var(--mute); font-weight:400; font-size:12px; margin-top:2px }
.booking-row .bs{ color:var(--ink-soft); font-size:13px }
.booking-row .bp{ font-weight:700; font-family:var(--font-h) }
.booking-row .bp small{ display:block; color:var(--mute); font-weight:500; font-size:11px; font-family:var(--font) }
.status{ padding:5px 10px; border-radius:999px; font-size:11px; font-weight:700; text-align:center; letter-spacing:0.04em; text-transform:uppercase }
.status.up{ background:#EEF3FF; color:#3558D6 }
.status.in{ background:#E8F6EE; color:var(--ok) }
.status.done{ background:var(--blush); color:var(--ink-soft) }
.status.can{ background:#FDECEC; color:var(--bad) }
.status.no{ background:#FFF3E0; color:var(--warn) }

/* timeline */
.timeline-wrap{ overflow-x:auto; padding-bottom:8px }
.timeline{ min-width:880px; display:grid; grid-template-columns:130px 1fr; gap:0 }
.tl-hours{ display:grid; grid-column:2; grid-template-columns:repeat(9,1fr); border-bottom:1px solid var(--line); margin-bottom:6px }
.tl-hours div{ font-size:11px; color:var(--mute); padding-bottom:6px; font-weight:600 }
.tl-row{ display:contents }
.tl-name{ grid-column:1; padding:10px 12px 10px 0; display:flex; align-items:center; gap:10px; font-size:13px; font-weight:600 }
.tl-name .av{ width:30px; height:30px; border-radius:50%; overflow:hidden; flex-shrink:0; background:var(--blush) }
.tl-name .av img{ width:100%; height:100%; object-fit:cover }
.tl-track{ grid-column:2; position:relative; height:52px; border-radius:10px; background:repeating-linear-gradient(90deg, var(--blush-soft), var(--blush-soft) calc(100%/9 - 1px), transparent calc(100%/9 - 1px), transparent calc(100%/9)); }
.tl-block{
  position:absolute; top:6px; bottom:6px; border-radius:8px; padding:5px 8px;
  background:var(--rose); color:#fff; font-size:11px; font-weight:600; overflow:hidden;
  white-space:nowrap; text-overflow:ellipsis; cursor:pointer; box-shadow:0 2px 6px rgba(229,107,139,0.3);
  display:flex; flex-direction:column; justify-content:center;
}
.tl-block.c-blue{ background:#3558D6; box-shadow:0 2px 6px rgba(53,88,214,0.3) }
.tl-block.c-green{ background:var(--ok); box-shadow:0 2px 6px rgba(46,139,87,0.3) }
.tl-block.c-purple{ background:#7E5FB8; box-shadow:0 2px 6px rgba(126,95,184,0.3) }
.tl-block small{ font-weight:400; opacity:0.85; font-size:10px }

/* utilisation */
.util-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px }
.util-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:18px; display:flex; gap:14px; align-items:center }
.util-card .av{ width:56px; height:56px; border-radius:50%; overflow:hidden; flex-shrink:0 }
.util-card .av img{ width:100%; height:100%; object-fit:cover }
.util-card .body{ flex:1 }
.util-card .n{ font-weight:700; font-size:14px }
.util-card .r{ color:var(--mute); font-size:12px; margin-bottom:8px }
.util-bar{ height:6px; background:var(--blush); border-radius:999px; overflow:hidden }
.util-bar .fill{ height:100%; background:linear-gradient(90deg,var(--rose),var(--rose-deep)); border-radius:999px }
.util-card .pct{ font-family:var(--font-h); font-weight:700; font-size:13px; margin-top:4px; color:var(--ink-soft) }

/* services table */
.svc-table{ width:100%; border-collapse:collapse }
.svc-table th, .svc-table td{ padding:12px; text-align:left; border-bottom:1px solid var(--line); font-size:14px }
.svc-table th{ font-size:12px; text-transform:uppercase; letter-spacing:0.08em; color:var(--mute); font-weight:600 }
.svc-table tr:last-child td{ border-bottom:0 }

/* confirmation */
.conf-wrap{ max-width:700px; margin:60px auto; padding:0 20px }
.conf-card{
  background:#fff; border-radius:var(--radius-lg); padding:50px 40px; text-align:center;
  box-shadow:var(--shadow-lg); border:1px solid var(--line);
}
.conf-check{
  width:80px; height:80px; border-radius:50%; background:var(--ok); color:#fff;
  display:inline-flex; align-items:center; justify-content:center; margin-bottom:20px;
  box-shadow:0 8px 24px rgba(46,139,87,0.4);
}
.conf-check svg{ width:42px; height:42px }
.conf-wrap h1{ font-size:34px; margin-bottom:8px }
.conf-wrap .ref{ font-family:var(--font-h); font-weight:700; font-size:18px; color:var(--rose-deep); margin-bottom:30px; letter-spacing:0.06em }
.conf-table{ text-align:left; background:var(--blush-soft); border-radius:var(--radius); padding:24px; margin-bottom:24px }
.conf-table .line{ display:flex; justify-content:space-between; padding:8px 0; border-bottom:1px dashed rgba(0,0,0,0.08); font-size:14px }
.conf-table .line:last-child{ border-bottom:0 }
.conf-table .line.big{ font-family:var(--font-h); font-weight:700; font-size:17px; padding-top:14px; margin-top:8px; border-top:2px solid var(--ink); border-bottom:0 }
.conf-policy{ font-size:13px; color:var(--mute); margin-bottom:24px; line-height:1.7 }
.conf-actions{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap }

/* focus rings for keyboard users */
:focus-visible{ outline:2px solid var(--rose); outline-offset:2px; border-radius:6px }
.btn:focus-visible, .slot:focus-visible, .sty-card:focus-visible, .cal-cell:focus-visible, .svc-row:focus-visible, .booking-row:focus-visible, .alt-pill:focus-visible{ outline:2px solid var(--rose-deep); outline-offset:3px }
.field input:focus-visible, .field textarea:focus-visible{ outline:none; border-color:var(--rose-deep); box-shadow:0 0 0 3px rgba(229,107,139,0.2) }

/* demo mode badge */
.zx-demo-badge{
  position:fixed; right:16px; bottom:16px; z-index:9998;
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(26,22,25,0.92); color:#fff; padding:8px 14px; border-radius:999px;
  font-family:var(--font); font-size:12px; font-weight:600; letter-spacing:0.02em;
  box-shadow:0 8px 22px rgba(26,22,25,0.25); backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,0.12);
}
.zx-demo-badge .zx-dot{ width:7px; height:7px; border-radius:50%; background:var(--rose); box-shadow:0 0 0 3px rgba(229,107,139,0.25); animation:zx-pulse 2s ease-in-out infinite }
@keyframes zx-pulse{ 0%,100%{ opacity:1 } 50%{ opacity:0.55 } }
@media (max-width:640px){ .zx-demo-badge{ right:10px; bottom:10px; font-size:11px; padding:6px 11px } }

/* toast */
.toast{
  position:fixed; bottom:24px; left:50%; transform:translateX(-50%) translateY(12px);
  background:var(--ink); color:#fff; padding:12px 20px; border-radius:999px; font-size:13px; font-weight:500;
  box-shadow:var(--shadow-lg); z-index:9999; opacity:0; pointer-events:none; transition:all .2s ease;
}
.toast.on{ opacity:1; transform:translateX(-50%) translateY(0) }
.toast.ok{ background:var(--ok) }

/* ===== responsive ===== */
@media (max-width:960px){
  .hero-grid{ grid-template-columns:1fr; gap:40px }
  .hero-img{ aspect-ratio:4/3; max-height:380px }
  .team-grid{ grid-template-columns:repeat(2,1fr) }
  .reviews-grid{ grid-template-columns:1fr }
  .info-grid{ grid-template-columns:1fr }
  .gallery{ grid-template-columns:repeat(3,1fr) }
  .gal-item.tall{ grid-row:span 1; aspect-ratio:1/1 }
  .foot-grid{ grid-template-columns:1fr 1fr }
  .book-layout{ grid-template-columns:1fr }
  .summary{ position:static }
  .kpi-grid{ grid-template-columns:repeat(2,1fr) }
  .util-grid{ grid-template-columns:repeat(2,1fr) }
  .stylist-grid{ grid-template-columns:repeat(2,1fr) }
  .admin-shell{ grid-template-columns:1fr }
  .admin-side{ position:relative; height:auto }
  .admin-nav{ flex-direction:row; overflow-x:auto; padding-bottom:6px }
  .admin-nav a{ white-space:nowrap }
  .booking-row{ grid-template-columns:60px 1fr 90px; grid-auto-rows:auto; gap:6px 10px }
  .booking-row .bs,.booking-row .bp{ grid-column:2 }
  .booking-row .status{ grid-column:3; grid-row:1 }
}
@media (max-width:640px){
  .nav-wrap{ padding:10px 16px }
  .brand{ font-size:19px }
  .nav-toggle{ display:inline-flex }
  .nav-actions .btn-primary{ padding:9px 15px; font-size:13px; box-shadow:0 4px 12px rgba(229,107,139,0.35) }
  .nav-links{
    position:absolute; top:100%; left:0; right:0;
    flex-direction:column; gap:0;
    background:rgba(251,247,244,0.98); backdrop-filter:blur(10px);
    padding:6px 16px 12px; border-bottom:1px solid var(--line);
    box-shadow:var(--shadow);
    opacity:0; transform:translateY(-8px); pointer-events:none;
    transition:opacity .2s ease, transform .2s ease;
  }
  .site-header.menu-open .nav-links{ opacity:1; transform:none; pointer-events:auto }
  .nav-links a{ display:block; padding:13px 4px; font-size:15px; border-bottom:1px solid rgba(234,220,220,0.7) }
  .nav-links li:last-child a{ border-bottom:0 }
  section{ padding:54px 20px }
  .hero{ padding:60px 20px 70px }
  .gallery{ grid-template-columns:repeat(2,1fr) }
  .foot-grid{ grid-template-columns:1fr }
  .foot-copy{ flex-direction:column; gap:6px }
  .svc-row{ padding:12px }
  .row-2{ grid-template-columns:1fr }
  .book-shell{ padding:16px }
  .book-card{ padding:22px }
  .steps{ gap:4px }
  .step{ padding:6px 10px; font-size:12px }
  .step .n{ width:18px; height:18px; font-size:10px }
}
@media (max-width:400px){
  .team-grid, .stylist-grid, .util-grid, .kpi-grid{ grid-template-columns:1fr }
  .hero h1{ font-size:36px }
}
