/*
 * Woodside Hair Style Salon — front-end stylesheet.
 *
 * Editorial rather than corporate: a high-contrast serif for display type, a
 * plain system sans for everything you actually have to read, wide letter-
 * spaced small-caps for labels, and a lot of paper.
 *
 * No web fonts. Everything here resolves against fonts that already exist on
 * the visitor's machine, so the site ships self-contained and there is no
 * flash of unstyled text on a slow connection.
 */

/* ============================================================== tokens */
:root {
  --ink:      #17130f;
  --ink-2:    #2a2320;
  --ink-3:    #423931;
  --paper:    #faf6f0;
  --sand:     #f1e9dd;
  --sand-2:   #e6dacb;
  --rule:     #e3d9cc;
  --brass:    #a67c52;
  --brass-d:  #8a6440;
  --gold:     #c9a227;
  --blush:    #e0bdb6;
  --muted:    #6e635b;
  --muted-2:  #968a80;
  --white:    #ffffff;
  --ok:       #4a7c59;
  --bad:      #b5544c;
  --warn:     #b98b2e;

  --serif: "Didot", "Bodoni MT", "Hoefler Text", "Playfair Display", Garamond,
           "Times New Roman", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif;

  --wrap: 1220px;
  --gap: clamp(20px, 4vw, 56px);
  --radius: 2px;
  --shadow: 0 1px 2px rgba(23,19,15,.04), 0 12px 40px rgba(23,19,15,.07);
  --shadow-lg: 0 2px 6px rgba(23,19,15,.05), 0 30px 80px rgba(23,19,15,.13);
  --ease: cubic-bezier(.2,.7,.3,1);
}

/* =============================================================== base */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--brass-d); text-decoration: none; }
a:hover { color: var(--ink); }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 20px; font-size: .9rem;
}
.skip:focus { left: 12px; top: 12px; color: #fff; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(18px, 4vw, 40px); }
.wrap-narrow { max-width: 780px; }

/* ============================================================ typography */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; color: var(--ink); margin: 0 0 .5em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.04; letter-spacing: -.02em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem);   line-height: 1.1;  letter-spacing: -.015em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); line-height: 1.22; letter-spacing: -.01em; }
h4 { font-size: 1.05rem; line-height: 1.3; }

.kicker {
  display: block;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 18px;
}
.kicker.on-dark { color: var(--gold); }

.lede { font-size: clamp(1.05rem, 1.6vw, 1.22rem); line-height: 1.68; color: var(--muted); }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.center { text-align: center; }
.serif { font-family: var(--serif); }

.rule-gold {
  width: 54px; height: 2px; background: var(--gold);
  border: 0; margin: 0 0 26px;
}
.center .rule-gold, .rule-gold.center { margin-left: auto; margin-right: auto; }

/* ============================================================== buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans);
  font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: 16px 30px; border: 1px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
  text-align: center; line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-primary:hover { background: var(--brass-d); border-color: var(--brass-d); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--sand-2); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.42); }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-sm { padding: 12px 20px; font-size: .68rem; letter-spacing: .15em; }
.btn-lg { padding: 19px 40px; font-size: .78rem; }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

/* =============================================================== topbar */
.topbar {
  background: var(--ink); color: #b9ada2;
  font-size: .76rem; letter-spacing: .04em;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 20px; min-height: 40px; }
.topbar-list { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.topbar-list li { display: inline-flex; align-items: center; gap: 8px; }
.topbar-list svg { flex: none; opacity: .62; }
.topbar a { color: #e6ddd3; }
.topbar a:hover { color: var(--gold); }
@media (max-width: 900px) { .topbar { display: none; } }

/* =============================================================== header */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(250,246,240,.94);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 78px; }

.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark { display: inline-flex; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--serif); font-size: 1.16rem; letter-spacing: .015em; white-space: nowrap;
}
.brand-tag {
  font-size: .56rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--brass); margin-top: 5px; font-weight: 700;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav-list { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-list a {
  color: var(--ink-3); font-size: .82rem; letter-spacing: .07em;
  text-transform: uppercase; font-weight: 600; padding: 6px 0; position: relative;
}
.nav-list a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--brass); transition: right .3s var(--ease);
}
.nav-list a:hover, .nav-list a[aria-current="page"] { color: var(--ink); }
.nav-list a:hover::after, .nav-list a[aria-current="page"]::after { right: 0; }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone { display: flex; flex-direction: column; line-height: 1.15; font-size: .95rem; font-weight: 600; color: var(--ink); }
.nav-phone small { font-size: .56rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; }

.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--rule);
  background: transparent; border-radius: var(--radius); cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav { display: none; border-top: 1px solid var(--rule); background: var(--paper); }
.mobile-nav a {
  display: block; padding: 15px clamp(18px, 4vw, 40px); border-bottom: 1px solid var(--rule);
  color: var(--ink); font-size: .82rem; letter-spacing: .09em; text-transform: uppercase; font-weight: 600;
}
.mobile-nav.open { display: block; }

@media (max-width: 1080px) {
  .nav-list, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 520px) {
  .nav-cta .btn { display: none; }
  .site-header .wrap { min-height: 66px; }
  .brand-name { font-size: 1rem; }
}

/* ================================================================= hero */
.hero { position: relative; background: var(--ink); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; opacity: .58; }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to right, rgba(15,12,10,.86) 0%, rgba(15,12,10,.55) 46%, rgba(15,12,10,.28) 100%),
    linear-gradient(to top, rgba(15,12,10,.7) 0%, rgba(15,12,10,0) 46%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero-inner {
  padding: clamp(84px, 15vh, 168px) 0 clamp(64px, 11vh, 128px);
  max-width: 720px; color: #fff;
}
.hero h1 { color: #fff; margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero .lede { color: rgba(255,255,255,.82); max-width: 560px; }
.hero .btn-row { margin-top: 36px; }

.hero-strip {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,.14);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.hero-strip div { padding: 22px 8px 26px; }
.hero-strip b { display: block; font-family: var(--serif); font-size: 1.55rem; color: #fff; line-height: 1; }
.hero-strip span { display: block; font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 9px; }
@media (max-width: 720px) {
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-strip div { border-top: 1px solid rgba(255,255,255,.09); }
}

/* page banner (interior pages) */
.page-hero { position: relative; background: var(--ink); overflow: hidden; }
.page-hero .hero-media img { opacity: .46; }
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,12,10,.9) 0%, rgba(15,12,10,.6) 60%, rgba(15,12,10,.35) 100%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero-inner { padding: clamp(56px, 9vw, 104px) 0; max-width: 720px; color: #fff; }
.page-hero h1 { color: #fff; margin-bottom: 18px; }
.page-hero .lede { color: rgba(255,255,255,.8); }

.crumbs {
  position: relative; z-index: 3;
  display: flex; flex-wrap: wrap; gap: 9px; align-items: center;
  font-size: .74rem; letter-spacing: .08em; text-transform: uppercase;
  padding-top: 22px; color: rgba(255,255,255,.5);
}
.crumbs a { color: rgba(255,255,255,.72); }
.crumbs a:hover { color: var(--gold); }
.crumbs em { font-style: normal; color: var(--gold); }

/* ============================================================== sections */
.section { padding: clamp(56px, 9vw, 118px) 0; }
.section-sand { background: var(--sand); }
.section-ink { background: var(--ink); color: #cfc5ba; }
.section-ink h2, .section-ink h3 { color: #fff; }
.section-ink .lede { color: rgba(255,255,255,.72); }
.section-tight { padding: clamp(44px, 6vw, 76px) 0; }

.sec-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 62px); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head p { color: var(--muted); font-size: 1.06rem; }
.section-ink .sec-head p { color: rgba(255,255,255,.7); }

.split { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(30px, 5vw, 76px); align-items: center; }
.split.wide-left { grid-template-columns: 1.25fr .75fr; }
/* A short aside beside a long column should sit at the top and follow it down,
   not float halfway because the grid is centring it. */
.split.split-top { align-items: start; }
.split.split-top > aside { position: sticky; top: 100px; }
@media (max-width: 900px) { .split.split-top > aside { position: static; } }
.split-media img { width: 100%; box-shadow: var(--shadow); }
@media (max-width: 900px) { .split, .split.wide-left { grid-template-columns: 1fr; } }

.figure { position: relative; }
.figure img { width: 100%; }
.figure figcaption {
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-2); margin-top: 14px;
}
.figure-offset::before {
  content: ""; position: absolute; inset: 22px -22px -22px 22px;
  border: 1px solid var(--brass); z-index: 0;
}
.figure-offset img { position: relative; z-index: 1; }
@media (max-width: 620px) { .figure-offset::before { display: none; } }

/* ================================================================ cards */
.cards { display: grid; gap: clamp(18px, 2.4vw, 30px); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .cards-3, .cards-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cards-2, .cards-3, .cards-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--rule);
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sand-2); color: inherit; }
.card-media { overflow: hidden; background: var(--sand); }
.card-media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .7s var(--ease); }
a.card:hover .card-media img { transform: scale(1.045); }
.card-body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }
.card .more {
  margin-top: auto; font-size: .68rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--brass); display: inline-flex; align-items: center; gap: 8px;
}
a.card:hover .more { color: var(--ink); }

/* A single card stranded on the last row reads as a mistake. When the count
   leaves exactly one orphan in a 3-up grid, run it full width instead. */
.cards-3 > .card:last-child:nth-child(3n + 1) { grid-column: 1 / -1; flex-direction: row; }
.cards-3 > .card:last-child:nth-child(3n + 1) .card-media { flex: 0 0 40%; }
.cards-3 > .card:last-child:nth-child(3n + 1) .card-media img { height: 100%; aspect-ratio: auto; min-height: 240px; }
.cards-3 > .card:last-child:nth-child(3n + 1) .card-body { justify-content: center; padding: 36px 40px; }
.cards-3 > .card:last-child:nth-child(3n + 1) p { max-width: 54ch; }
@media (max-width: 620px) {
  .cards-3 > .card:last-child:nth-child(3n + 1) { flex-direction: column; }
  .cards-3 > .card:last-child:nth-child(3n + 1) .card-media { flex: none; }
  .cards-3 > .card:last-child:nth-child(3n + 1) .card-media img { aspect-ratio: 16/10; min-height: 0; }
  .cards-3 > .card:last-child:nth-child(3n + 1) .card-body { padding: 26px 26px 30px; }
}

/* two sections of the same tone in a row would otherwise stack their padding */
.section-sand + .section-sand,
.section-ink + .section-ink { padding-top: 0; }

/* service tile with an icon instead of a photo */
.tile { background: var(--white); border: 1px solid var(--rule); padding: 34px 30px 36px; height: 100%; }
.tile-icon {
  width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--brass); color: var(--brass); margin-bottom: 22px;
}
.tile h3 { font-size: 1.28rem; margin-bottom: 10px; }
.tile p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ============================================================ price menu */
.menu-group { margin-bottom: clamp(34px, 5vw, 58px); }
.menu-group:last-child { margin-bottom: 0; }
.menu-group > h3 {
  font-family: var(--sans); font-size: .7rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase; color: var(--brass);
  padding-bottom: 14px; border-bottom: 1px solid var(--rule); margin-bottom: 8px;
}
.menu-item { display: flex; align-items: baseline; gap: 12px; padding: 17px 0; border-bottom: 1px solid var(--rule); }
.menu-item:last-child { border-bottom: 0; }
.menu-text { flex: 1; min-width: 0; }
.menu-text b { font-family: var(--serif); font-size: 1.16rem; font-weight: 400; display: block; }
.menu-text span { display: block; font-size: .9rem; color: var(--muted); margin-top: 4px; }
.menu-meta { text-align: right; flex: none; }
.menu-price { font-family: var(--serif); font-size: 1.2rem; white-space: nowrap; }
.menu-price.quote { font-size: .86rem; font-family: var(--sans); color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }
.menu-dur { display: block; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-top: 5px; white-space: nowrap; }

/* ============================================================= stylists */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 34px); }
@media (max-width: 980px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team { grid-template-columns: 1fr; } }

.stylist { background: var(--white); border: 1px solid var(--rule); overflow: hidden; }
.stylist img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.stylist-body { padding: 24px 24px 28px; }
.stylist-body h3 { margin-bottom: 4px; font-size: 1.35rem; }
.stylist-role { font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: var(--brass); font-weight: 700; }
.stylist-body p { color: var(--muted); font-size: .93rem; margin: 14px 0 0; }
.stylist-meta { list-style: none; margin: 18px 0 0; padding: 16px 0 0; border-top: 1px solid var(--rule); font-size: .84rem; color: var(--muted); }
.stylist-meta li { display: flex; gap: 10px; padding: 3px 0; }
.stylist-meta b { color: var(--ink-3); font-weight: 600; flex: none; min-width: 82px; }

/* full-width stylist profile row */
.profile { display: grid; grid-template-columns: 340px 1fr; gap: clamp(24px, 4vw, 54px); align-items: start; padding: clamp(30px, 5vw, 56px) 0; border-bottom: 1px solid var(--rule); }
.profile:last-child { border-bottom: 0; }
.profile img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
@media (max-width: 760px) { .profile { grid-template-columns: 1fr; } .profile img { max-width: 320px; } }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; padding: 0; list-style: none; }
.chips li {
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  padding: 7px 13px; border: 1px solid var(--sand-2); background: var(--sand); color: var(--ink-3);
}

/* ============================================================== lookbook */
.looks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.looks figure { margin: 0; position: relative; overflow: hidden; background: var(--sand); }
.looks img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .8s var(--ease); }
.looks figure:hover img { transform: scale(1.06); }
.looks figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 42px 20px 18px; color: #fff; font-size: .74rem;
  letter-spacing: .18em; text-transform: uppercase;
  background: linear-gradient(to top, rgba(15,12,10,.82), rgba(15,12,10,0));
}
.looks .tall { grid-row: span 2; }
.looks .tall img { aspect-ratio: 1/2.06; }
@media (max-width: 860px) {
  .looks { grid-template-columns: repeat(2, 1fr); }
  .looks .tall { grid-row: auto; }
  .looks .tall img { aspect-ratio: 1/1; }
}
@media (max-width: 480px) { .looks { grid-template-columns: 1fr; } }

/* ============================================================== quotes */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 30px); }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }
.quote { background: var(--white); border: 1px solid var(--rule); padding: 34px 30px; }
.quote blockquote { margin: 0 0 20px; font-family: var(--serif); font-size: 1.16rem; line-height: 1.55; color: var(--ink-2); }
.quote blockquote::before { content: "\201C"; color: var(--brass); font-size: 2.4rem; line-height: 0; vertical-align: -.34em; margin-right: 4px; }
.quote cite { font-style: normal; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); }

/* ================================================================= FAQ */
.faq { max-width: 860px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer; list-style: none; padding: 24px 44px 24px 0; position: relative;
  font-family: var(--serif); font-size: 1.16rem; line-height: 1.4; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 33px;
  width: 11px; height: 11px; border-right: 1.5px solid var(--brass); border-bottom: 1.5px solid var(--brass);
  transform: rotate(45deg); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 37px; }
.faq .answer { padding: 0 40px 26px 0; color: var(--muted); }

/* ============================================================== CTA band */
.cta-band { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-inner {
  padding: clamp(52px, 8vw, 96px) 0;
  display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(24px, 4vw, 56px); align-items: center;
}
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.74); margin: 0; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 820px) { .cta-inner { grid-template-columns: 1fr; } }

/* =============================================================== info */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
@media (max-width: 880px) { .info-grid { grid-template-columns: 1fr; } }
.info-block h3 { font-size: 1.2rem; margin-bottom: 12px; }
.info-block p, .info-block li { color: var(--muted); font-size: .96rem; }
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { padding: 9px 0; border-bottom: 1px solid var(--rule); display: flex; justify-content: space-between; gap: 16px; }
.info-list li:last-child { border-bottom: 0; }
.info-list b { color: var(--ink); font-weight: 600; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: 11px 0; border-bottom: 1px solid var(--rule); font-size: .95rem; }
.hours-table th { font-weight: 600; color: var(--ink); }
.hours-table td { color: var(--muted); text-align: right; }
.hours-table tr.today th, .hours-table tr.today td { color: var(--brass-d); font-weight: 700; }

.prose { max-width: 760px; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.5em; }
.prose ul, .prose ol { color: var(--muted); padding-left: 1.2em; }
.prose li { margin-bottom: .5em; }
.prose > :first-child { margin-top: 0; }

.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { position: relative; padding: 7px 0 7px 32px; color: var(--muted); }
.checklist li::before {
  content: ""; position: absolute; left: 3px; top: 15px;
  width: 11px; height: 6px; border-left: 1.6px solid var(--brass); border-bottom: 1.6px solid var(--brass);
  transform: rotate(-45deg);
}

/* =============================================================== footer */
.site-footer { background: var(--ink); color: #9b9086; padding: clamp(48px, 7vw, 84px) 0 34px; font-size: .93rem; }
.site-footer .brand-name { color: #fff; }
.site-footer a { color: #c6bcb2; }
.site-footer a:hover { color: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.15fr; gap: clamp(28px, 4vw, 56px); }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-about { color: #9b9086; font-size: .93rem; margin-top: 22px; max-width: 380px; }
.site-footer h4 {
  color: #fff; font-family: var(--sans); font-size: .66rem; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase; margin-bottom: 20px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: 5px 0; }
.footer-hours div { display: flex; justify-content: space-between; gap: 14px; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-hours b { color: #ded4c9; font-weight: 600; }
.footer-bottom {
  margin-top: clamp(36px, 5vw, 60px); padding-top: 26px; border-top: 1px solid rgba(255,255,255,.09);
  display: flex; flex-wrap: wrap; gap: 14px 26px; justify-content: space-between; align-items: center;
  font-size: .82rem; color: #8b8078;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }

/* ======================================================= booking engine */
.book-layout { display: grid; grid-template-columns: 1fr 372px; gap: clamp(24px, 3.4vw, 48px); align-items: start; }
@media (max-width: 1020px) { .book-layout { grid-template-columns: 1fr; } }

.steps { display: flex; gap: 0; list-style: none; margin: 0 0 34px; padding: 0; border: 1px solid var(--rule); background: #fff; }
.steps li { flex: 1; padding: 15px 12px; text-align: center; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--muted-2); border-right: 1px solid var(--rule); position: relative; }
.steps li:last-child { border-right: 0; }
.steps li b { display: block; font-family: var(--serif); font-size: 1.05rem; letter-spacing: 0; text-transform: none; color: var(--muted-2); margin-bottom: 3px; font-weight: 400; }
.steps li.done { color: var(--brass); }
.steps li.done b { color: var(--brass); }
.steps li.on { background: var(--ink); color: #fff; }
.steps li.on b { color: var(--gold); }
@media (max-width: 620px) { .steps li { font-size: .56rem; letter-spacing: .08em; padding: 12px 6px; } }

.book-panel { background: #fff; border: 1px solid var(--rule); margin-bottom: 22px; }
.book-panel > h3 {
  font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .26em;
  text-transform: uppercase; color: var(--brass); padding: 20px 26px; margin: 0;
  border-bottom: 1px solid var(--rule);
}
.book-body { padding: 24px 26px 28px; }

.svc-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.svc-cat {
  border: 1px solid var(--sand-2); background: #fff; color: var(--ink-3); cursor: pointer;
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  padding: 9px 15px; font-family: var(--sans); transition: all .2s var(--ease);
}
.svc-cat:hover { border-color: var(--brass); }
.svc-cat.on { background: var(--ink); border-color: var(--ink); color: #fff; }

.opt-grid { display: grid; gap: 10px; }
.opt-grid.two { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 620px) { .opt-grid.two { grid-template-columns: 1fr; } }

.opt {
  display: flex; gap: 14px; align-items: flex-start; text-align: left; width: 100%;
  border: 1px solid var(--rule); background: #fff; padding: 15px 17px; cursor: pointer;
  font-family: var(--sans); transition: border-color .2s var(--ease), background .2s var(--ease);
}
.opt:hover { border-color: var(--brass); }
.opt.on { border-color: var(--ink); background: var(--sand); box-shadow: inset 0 0 0 1px var(--ink); }
.opt-avatar { width: 46px; height: 46px; object-fit: cover; flex: none; border-radius: 50%; }
.opt-main { flex: 1; min-width: 0; }
.opt-main b { display: block; font-size: .98rem; color: var(--ink); font-weight: 600; line-height: 1.3; }
.opt-main span { display: block; font-size: .82rem; color: var(--muted); margin-top: 3px; }
.opt-side { flex: none; text-align: right; }
.opt-side .price { display: block; font-family: var(--serif); font-size: 1.06rem; }
.opt-side .dur { display: block; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-top: 4px; white-space: nowrap; }

/* calendar */
.cal-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 16px; }
.cal-head strong { font-family: var(--serif); font-size: 1.22rem; font-weight: 400; }
.cal-nav { display: flex; gap: 8px; }
.cal-nav button {
  width: 36px; height: 36px; border: 1px solid var(--rule); background: #fff; cursor: pointer;
  color: var(--ink); font-size: 1rem; line-height: 1; transition: all .2s var(--ease);
}
.cal-nav button:hover:not([disabled]) { border-color: var(--ink); }
.cal-nav button[disabled] { opacity: .3; cursor: not-allowed; }

.cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal .dow { text-align: center; font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; padding: 6px 0 10px; }
.cal button {
  aspect-ratio: 1/1; border: 1px solid transparent; background: var(--sand); color: var(--ink);
  cursor: pointer; font-family: var(--sans); font-size: .92rem; position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  transition: all .18s var(--ease);
}
.cal button .n { font-size: .55rem; letter-spacing: .04em; color: var(--brass); font-weight: 700; }
.cal button:hover:not([disabled]) { border-color: var(--ink); }
.cal button[disabled] { background: transparent; color: var(--muted-2); opacity: .4; cursor: not-allowed; }
.cal button.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.cal button.on .n { color: var(--gold); }
.cal .blank { aspect-ratio: 1/1; }

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 8px; }
.slots button {
  padding: 13px 6px; border: 1px solid var(--rule); background: #fff; cursor: pointer;
  font-family: var(--sans); font-size: .9rem; font-weight: 600; color: var(--ink);
  transition: all .18s var(--ease);
}
.slots button:hover { border-color: var(--brass); }
.slots button.on { background: var(--ink); color: #fff; border-color: var(--ink); }

.book-empty { padding: 26px 0; color: var(--muted); font-size: .95rem; }

/* summary rail */
.book-summary { position: sticky; top: 100px; background: var(--ink); color: #cfc5ba; border: 1px solid var(--ink); }
.book-summary h3 { color: #fff; font-family: var(--sans); font-size: .66rem; letter-spacing: .26em; text-transform: uppercase; padding: 20px 24px; margin: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.summary-body { padding: 22px 24px 26px; }
.summary-row { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: .9rem; }
.summary-row:last-of-type { border-bottom: 0; }
.summary-row .k { color: #8b8078; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; padding-top: 3px; }
.summary-row .v { color: #fff; text-align: right; font-weight: 600; }
.summary-row .v.pending { color: var(--muted-2); font-weight: 400; font-style: italic; }
.summary-total { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.16); display: flex; justify-content: space-between; align-items: baseline; }
.summary-total .k { color: #8b8078; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; }
.summary-total .v { font-family: var(--serif); font-size: 1.7rem; color: #fff; }
.summary-note { font-size: .78rem; color: #8b8078; margin-top: 16px; line-height: 1.6; }
@media (max-width: 1020px) { .book-summary { position: static; } }

/* form */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--ink-3); margin-bottom: 8px; }
.field .req { color: var(--bad); }
/* Every text-like input, by exclusion rather than by listing types — the admin
   uses password, number, date and time too, and a missed type renders at the
   browser default width next to a full-width sibling. */
.field input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--rule); background: #fff;
  font-family: var(--sans); font-size: .98rem; color: var(--ink); border-radius: var(--radius);
  transition: border-color .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(166,124,82,.13); }
.field textarea { resize: vertical; min-height: 96px; }
.field small { display: block; font-size: .8rem; color: var(--muted-2); margin-top: 7px; letter-spacing: 0; text-transform: none; font-weight: 400; }
.field.bad input, .field.bad textarea, .field.bad select { border-color: var(--bad); }
.field .err { display: block; color: var(--bad); font-size: .82rem; margin-top: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.check { display: flex; gap: 11px; align-items: flex-start; font-size: .9rem; color: var(--muted); margin-bottom: 14px; cursor: pointer; line-height: 1.55; }
.check input { margin: 3px 0 0; flex: none; width: 16px; height: 16px; accent-color: var(--ink); }
.check b { color: var(--ink); font-weight: 600; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { padding: 15px 18px; border-left: 3px solid; font-size: .93rem; margin-bottom: 20px; }
.alert.err { background: #fbf0ef; border-color: var(--bad); color: #7d332d; }
.alert.ok  { background: #f0f5f1; border-color: var(--ok); color: #2f5138; }

/* booking success */
.done-card { background: #fff; border: 1px solid var(--rule); padding: clamp(30px, 5vw, 56px); text-align: center; max-width: 640px; margin: 0 auto; }
.done-mark {
  width: 62px; height: 62px; border: 1px solid var(--ok); color: var(--ok); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 26px;
}
.recap { text-align: left; margin: 30px 0; border: 1px solid var(--rule); }
.recap > div { display: flex; justify-content: space-between; gap: 16px; padding: 13px 18px; border-bottom: 1px solid var(--rule); font-size: .94rem; }
.recap > div:last-child { border-bottom: 0; }
.recap > div:nth-child(odd) { background: var(--sand); }
.recap .k { color: var(--muted-2); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; padding-top: 3px; }
.recap .v { color: var(--ink); font-weight: 600; text-align: right; }

/* confirm.php landing */
.confirm-hero { max-width: 660px; margin: 0 auto; padding: clamp(50px, 9vw, 108px) 0; text-align: center; }
.confirm-icon {
  width: 76px; height: 76px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 28px; border: 1px solid;
}
.confirm-icon.ok { color: var(--ok); border-color: var(--ok); background: #f2f7f3; }
.confirm-icon.bad { color: var(--bad); border-color: var(--bad); background: #fbf1f0; }

/* ================================================================ misc */
.map-embed { border: 1px solid var(--rule); background: var(--sand); }
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; }

.note-band { background: var(--sand); border-left: 3px solid var(--brass); padding: 20px 24px; font-size: .95rem; color: var(--muted); }
.note-band strong { color: var(--ink); }

.demo-note {
  background: #17130f; color: #b9ada2; font-size: .78rem; letter-spacing: .04em;
  text-align: center; padding: 11px 18px; line-height: 1.55;
}
.demo-note b { color: var(--gold); font-weight: 600; }
.demo-note a { color: #e6ddd3; text-decoration: underline; }
