/* ==========================================================================
   LUMEN — New York
   Shared stylesheet. White minimalism, single grotesque typeface.
   ========================================================================== */

:root {
  /* Palette — white base, warmth only in the artwork */
  --white:  #FFFFFF;
  --paper:  #FAFAF9;
  --soft:   #F4F3F1;
  --ink:    #111111;
  --ink-2:  #4A4A48;
  --muted:  #8C8A86;
  --line:   #E6E5E2;
  --line-2: #F0EFED;
  --accent: #8C7A66;

  /* Type — one family, differentiated by size and weight */
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --display: var(--sans);

  /* Rhythm */
  --pad: clamp(20px, 5vw, 56px);
  --gutter: clamp(24px, 4vw, 48px);
  --max: 1280px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv05" 1, "ss01" 1;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
svg { display: block; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }
.wrap--full { max-width: none; padding-inline: var(--pad); }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 18px;
}

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.lede { font-size: clamp(15.5px, 1.4vw, 18px); color: var(--ink-2); max-width: 60ch; }
.center { text-align: center; }
.num-t { font-variant-numeric: tabular-nums; }

/* Buttons ---------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 500;
  padding: 14px 26px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  transition: background .22s ease, color .22s ease, border-color .22s ease;
}
.btn:hover { background: var(--white); color: var(--ink); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.86);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 10px 16px;
}

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 70px;
}

.logo {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  line-height: 1;
  white-space: nowrap;
}
.logo small {
  display: block;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  color: var(--muted);
  margin-top: 6px;
  text-transform: uppercase;
}

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-size: 13.5px; font-weight: 450; color: var(--ink-2);
  padding: 4px 0; position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--ink); transition: right .28s ease;
}
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { right: 0; }
.nav__links a[aria-current="page"] { color: var(--ink); }

.nav__cta { display: flex; align-items: center; gap: 18px; }

.bag {
  font-size: 13.5px; border: 0; background: none; cursor: pointer;
  color: var(--ink-2); font-family: var(--sans); padding: 0;
}
.bag:hover { color: var(--ink); }

.burger { display: none; border: 0; background: none; cursor: pointer; padding: 8px 0; }
.burger span { display: block; width: 22px; height: 1px; background: var(--ink); margin: 5px 0; }

/* --------------------------------------------------------------------------
   Banners — 16:9
   -------------------------------------------------------------------------- */

.banner { position: relative; margin: 0; }

.banner__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line-2);
}
.banner__media > svg, .banner__media > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.banner__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(20px, 3.4vw, 44px);
  padding-top: clamp(60px, 8vw, 110px);
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  background: linear-gradient(to top, rgba(255,255,255,.97) 42%, rgba(255,255,255,.82) 68%, rgba(255,255,255,0) 100%);
}
.banner__cap h2, .banner__cap h3 { max-width: 18ch; }
.banner__cap p { margin: 8px 0 0; font-size: 14px; color: var(--ink-2); max-width: 40ch; }

.banner--dark .banner__media { background: var(--ink); border: 0; }
.banner--dark .banner__cap {
  color: var(--white);
  background: linear-gradient(to top, rgba(17,17,17,.97) 42%, rgba(17,17,17,.8) 68%, rgba(17,17,17,0) 100%);
}
.banner--dark .banner__cap h2, .banner--dark .banner__cap h3 { color: var(--white); }
.banner--dark .banner__cap p { color: rgba(255,255,255,.7); }
.banner--dark .eyebrow { color: rgba(255,255,255,.5); }
.banner--dark .btn { background: var(--white); color: var(--ink); border-color: var(--white); }
.banner--dark .btn:hover { background: transparent; color: var(--white); }

.bleed { width: 100%; }

/* Slim banners read left-to-right: caption on a side scrim, art on the right. */
.banner--slim .banner__media { aspect-ratio: 16 / 5; }
.banner--slim .banner__cap {
  align-items: center;
  padding-top: clamp(20px, 3.4vw, 44px);
  background: linear-gradient(to right, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 32%, rgba(255,255,255,0) 62%);
}
.banner--slim .banner__cap > div { max-width: 46%; }

/* On small screens the caption drops below the image so the 16:9 art survives. */
@media (max-width: 720px) {
  .banner--slim .banner__media { aspect-ratio: 16 / 9; }
  .banner__cap,
  .banner--slim .banner__cap,
  .banner--dark .banner__cap {
    position: static;
    background: none;
    padding: 18px 0 0;
    align-items: flex-start;
    flex-direction: column;
    color: var(--ink);
  }
  .banner--dark .banner__cap {
    background: var(--ink);
    padding: 22px var(--pad) 4px;
  }
  .banner__cap h2, .banner__cap h3, .banner__cap > div { max-width: 100%; }
  .banner--dark .banner__cap h2, .banner--dark .banner__cap h3 { color: var(--white); }
  .banner--dark .banner__cap p { color: rgba(255,255,255,.7); }
  .banner--dark .eyebrow { color: rgba(255,255,255,.5); }
  .banner--slim .banner__cap > div { max-width: 100%; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero { padding: clamp(52px, 8vw, 96px) 0 clamp(28px, 4vw, 44px); }

.hero h1 {
  font-size: clamp(40px, 7.4vw, 92px);
  line-height: 0.99;
  letter-spacing: -0.038em;
  margin: 0 0 24px;
  max-width: 16ch;
}
.hero h1 span { color: var(--muted); }

.hero__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: var(--gutter); align-items: end; }

.hero__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line); margin-top: clamp(36px, 5vw, 60px);
}
.hero__stats div { padding: 22px 20px 0 0; }
.hero__stats strong {
  display: block; font-size: clamp(26px, 3vw, 38px);
  font-weight: 500; line-height: 1; letter-spacing: -0.03em;
}
.hero__stats span {
  display: block; margin-top: 8px; font-size: 12.5px; color: var(--muted);
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

section { padding: clamp(52px, 7vw, 100px) 0; }
section.tight { padding-block: clamp(36px, 4.5vw, 60px); }

.sec-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--gutter);
  align-items: end; margin-bottom: clamp(30px, 4.5vw, 52px);
}
.sec-head h2 { font-size: clamp(28px, 4vw, 50px); margin: 0; max-width: 18ch; }
.sec-head p { margin: 0; color: var(--ink-2); }

/* Feature triptych -------------------------------------------------------- */

.tri { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); }
.tri article { border-top: 1px solid var(--ink); padding-top: 20px; }
.tri h3 { font-size: 21px; margin: 0 0 10px; }
.tri p { margin: 0; color: var(--ink-2); font-size: 14.5px; }
.tri .num { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 14px; }

/* Band ------------------------------------------------------------------- */

.band { background: var(--ink); color: rgba(255,255,255,.78); }
.band .eyebrow { color: rgba(255,255,255,.5); }
.band h2, .band h3, .band strong { color: var(--white); }
.band p { color: rgba(255,255,255,.72); }
.band .btn { background: var(--white); color: var(--ink); border-color: var(--white); }
.band .btn:hover { background: transparent; color: var(--white); }

.quote {
  font-size: clamp(22px, 3.2vw, 40px);
  line-height: 1.16; letter-spacing: -0.032em;
  max-width: 20ch; margin: 0 0 24px; font-weight: 500;
}

/* --------------------------------------------------------------------------
   Latest work — carousel
   -------------------------------------------------------------------------- */

.works { position: relative; }

.works__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: clamp(24px, 3vw, 38px); flex-wrap: wrap;
}
.works__head h2 { font-size: clamp(28px, 4vw, 50px); max-width: 16ch; }

.works__nav { display: flex; gap: 10px; }
.works__nav button {
  width: 44px; height: 44px; border: 1px solid var(--line);
  background: var(--white); cursor: pointer; color: var(--ink);
  display: grid; place-items: center; transition: border-color .2s ease, background .2s ease;
}
.works__nav button:hover { border-color: var(--ink); }
.works__nav button:disabled { opacity: .3; cursor: default; border-color: var(--line); }
.works__nav svg { width: 15px; height: 15px; }

.track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3 * var(--gutter)) / 4);
  gap: var(--gutter);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.track::-webkit-scrollbar { display: none; }

.work { scroll-snap-align: start; }
.work__img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line-2);
  position: relative;
}
.work__img svg, .work__img img { width: 100%; height: 100%; object-fit: cover; }
.work__img::after {
  content: ""; position: absolute; inset: 0;
  background: var(--ink); opacity: 0; transition: opacity .3s ease;
}
.work:hover .work__img::after { opacity: .04; }

.work h3 { font-size: 17px; margin: 16px 0 4px; font-weight: 500; letter-spacing: -0.02em; }
.work p { margin: 0; font-size: 13px; color: var(--muted); }

.progress { height: 1px; background: var(--line); margin-top: 26px; position: relative; overflow: hidden; }
.progress i { position: absolute; left: 0; top: 0; bottom: 0; background: var(--ink); width: 25%; transition: transform .2s ease; }

/* --------------------------------------------------------------------------
   Product grid
   -------------------------------------------------------------------------- */

.filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-bottom: 26px; border-bottom: 1px solid var(--line); margin-bottom: 40px;
}
.filters button {
  font-family: var(--sans); font-size: 13px; font-weight: 450;
  padding: 9px 18px; border: 1px solid var(--line);
  background: transparent; color: var(--ink-2); cursor: pointer;
  transition: all .2s ease; border-radius: 999px;
}
.filters button:hover { border-color: var(--muted); color: var(--ink); }
.filters button[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--white); }

.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3.4vw, 48px) var(--gutter); }

.card { display: flex; flex-direction: column; }

.card__media {
  background: var(--paper);
  border: 1px solid var(--line-2);
  aspect-ratio: 4 / 5;
  display: grid; place-items: center;
  position: relative; overflow: hidden;
  transition: border-color .3s ease;
}
.card:hover .card__media { border-color: var(--line); }
.card__media svg { width: 44%; height: auto; transition: transform .45s cubic-bezier(.2,.7,.3,1); }
.card:hover .card__media svg { transform: translateY(-5px) scale(1.03); }

.tag {
  position: absolute; top: 14px; left: 14px;
  font-size: 11px; font-weight: 500;
  background: var(--ink); color: var(--white); padding: 5px 10px;
}
.tag--soft { background: var(--white); color: var(--ink-2); border: 1px solid var(--line); }

.card__body { padding-top: 18px; display: flex; flex-direction: column; flex: 1; }
.card__cat { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 0 0 8px; }
.card__name { font-size: 20px; margin: 0 0 8px; }
.card__desc { font-size: 14px; color: var(--ink-2); margin: 0 0 14px; flex: 1; }
.card__actives {
  font-size: 12.5px; color: var(--muted); margin: 0 0 16px;
  padding-top: 12px; border-top: 1px solid var(--line-2);
}
.card__foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.card__price { font-size: 20px; font-weight: 500; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.card__price small { font-size: 12px; font-weight: 400; color: var(--muted); display: block; letter-spacing: 0; }

.add {
  font-family: var(--sans); font-size: 12.5px; font-weight: 450;
  background: none; border: 1px solid var(--line);
  padding: 11px 18px; cursor: pointer; color: var(--ink);
  transition: background .22s ease, color .22s ease, border-color .22s ease;
  white-space: nowrap;
}
.add:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.add.is-added { background: var(--accent); border-color: var(--accent); color: #fff; }

/* --------------------------------------------------------------------------
   Services / price list
   -------------------------------------------------------------------------- */

.menu { display: grid; gap: clamp(44px, 5.5vw, 78px); }

.menu__group { display: grid; grid-template-columns: 290px 1fr; gap: var(--gutter); align-items: start; }
.menu__group > header { position: sticky; top: 100px; }
.menu__group h3 { font-size: clamp(22px, 2.6vw, 30px); margin: 0 0 12px; }
.menu__group header p { margin: 0; font-size: 13.5px; color: var(--muted); max-width: 34ch; }

.rows { display: grid; }

.row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 14px 24px; align-items: baseline;
  padding: 19px 0; border-bottom: 1px solid var(--line);
}
.row:first-child { border-top: 1px solid var(--line); }
.row h4 { font-size: 15.5px; font-weight: 500; margin: 0 0 5px; letter-spacing: -0.012em; }
.row p { margin: 0; font-size: 13.5px; color: var(--muted); max-width: 56ch; }
.row .price { font-size: 19px; font-weight: 500; white-space: nowrap; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.row .price span { font-size: 12.5px; font-weight: 400; color: var(--muted); }
.row .from { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); display: block; text-align: right; margin-bottom: 3px; }

.badge {
  display: inline-block; margin-left: 8px; vertical-align: middle;
  font-size: 10.5px; font-weight: 500;
  border: 1px solid var(--line); color: var(--muted); padding: 3px 7px;
}

.note { background: var(--paper); border: 1px solid var(--line); padding: clamp(22px, 3vw, 36px); }
.note h4 { font-size: 20px; font-weight: 500; margin: 0 0 12px; }
.note ul { margin: 0; padding-left: 18px; color: var(--ink-2); font-size: 14.5px; }
.note li { margin-bottom: 8px; }
.note li:last-child { margin-bottom: 0; }

/* Stylist levels ---------------------------------------------------------- */

.levels { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); }
.levels article { border: 1px solid var(--line); background: var(--white); padding: clamp(22px, 2.6vw, 32px); }
.levels article.is-feature { border-color: var(--ink); }
.band .levels article, .band .levels h3, .band .levels .mult { color: var(--ink); }
.band .levels .tier, .band .levels .mult span { color: var(--muted); }
.band .levels p.desc { color: var(--ink-2); }
.levels h3 { font-size: 24px; margin: 0 0 6px; }
.levels .tier { font-size: 12.5px; color: var(--muted); margin: 0 0 18px; }
.levels .mult { font-size: 38px; font-weight: 500; line-height: 1; margin: 0; letter-spacing: -0.035em; }
.levels .mult span { font-size: 14px; font-weight: 400; }
.levels p.desc { font-size: 14px; color: var(--ink-2); margin: 14px 0 0; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.foot { background: var(--ink); color: rgba(255,255,255,.66); padding: clamp(48px, 6vw, 84px) 0 32px; }
.foot .logo { color: var(--white); }
.foot .logo small { color: rgba(255,255,255,.45); }
.foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--gutter); }
.foot h5 { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); margin: 0 0 18px; font-weight: 500; }
.foot ul { list-style: none; margin: 0; padding: 0; font-size: 14px; display: grid; gap: 10px; }
.foot a:hover { color: var(--white); }
.foot__bottom {
  margin-top: clamp(36px, 4.5vw, 60px); padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(255,255,255,.45);
}
.foot p.blurb { font-size: 14px; max-width: 32ch; margin: 20px 0 0; }

/* Toast ------------------------------------------------------------------ */

.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 20px);
  background: var(--ink); color: var(--white); padding: 13px 22px;
  font-size: 13px; opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .3s ease; z-index: 100;
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

.mobile-only { display: none; }

@media (max-width: 1080px) {
  .track { grid-auto-columns: calc((100% - 2 * var(--gutter)) / 3); }
}

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .tri, .levels { grid-template-columns: 1fr; gap: 30px; }
  .sec-head { grid-template-columns: 1fr; }
  .menu__group { grid-template-columns: 1fr; }
  .menu__group > header { position: static; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .track { grid-auto-columns: calc((100% - var(--gutter)) / 2); }
}

@media (max-width: 720px) {
  .nav__inner { height: 62px; gap: 12px; }
  .logo { font-size: 17px; letter-spacing: .16em; text-indent: .16em; }
  .logo small { font-size: 7.5px; letter-spacing: .16em; text-indent: .16em; }
  .nav__cta { gap: 14px; }
  .nav__cta > .btn { display: none; }
  .bag { font-size: 12.5px; }
  .mobile-only { display: block; }
  .nav__links {
    position: absolute; top: 62px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 6px var(--pad) 18px; display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 13px 0; width: 100%; font-size: 15px; }
  .nav__links a.mobile-only { color: var(--ink); font-weight: 500; }
  .burger { display: block; }
  .hero__stats { grid-template-columns: 1fr; }
  .hero__stats div { padding: 16px 0; border-bottom: 1px solid var(--line-2); }
  .products { grid-template-columns: 1fr; gap: 40px; }
  .card__media { aspect-ratio: 5/4; }
  .card__media svg { width: 30%; }
  .row { grid-template-columns: 1fr; }
  .row .price, .row .from { text-align: left; }
  .foot__grid { grid-template-columns: 1fr; gap: 32px; }
  .track { grid-auto-columns: 78%; }
  .works__nav { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   WordPress + WooCommerce layer
   Everything below adapts core/plugin output to the LUMEN design language.
   The tokens above are the single source of truth — nothing here invents a
   new colour or a new typeface.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Editor / the_content prose
   -------------------------------------------------------------------------- */

.prose { max-width: 72ch; color: var(--ink-2); }

/* Reset every child's block margins, then space them with one rule. Both
   selectors carry the same specificity, so the sibling rule wins where it
   applies — a per-element `margin: 0` here would silently outrank it and
   collapse the whole document. */
.prose > * { margin-block: 0; }
.prose > * + * { margin-top: 1.15em; }

.prose h2 { font-size: clamp(24px, 3vw, 36px); color: var(--ink); margin-top: 1.9em; }
.prose h3 { font-size: clamp(19px, 2.2vw, 24px); color: var(--ink); margin-top: 1.6em; }
.prose h4 { font-size: 17px; color: var(--ink); margin-top: 1.4em; }
.prose h2 + p, .prose h3 + p, .prose h4 + p { margin-top: .9em; }
.prose a { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; color: var(--ink); }
.prose a:hover { color: var(--accent); }
.prose ul, .prose ol { padding-left: 20px; }
.prose li + li { margin-top: 8px; }
.prose .lede { margin-bottom: .4em; }
.prose blockquote {
  margin: 1.6em 0; padding: 4px 0 4px 22px; border-left: 1px solid var(--ink);
  font-size: clamp(18px, 2vw, 22px); line-height: 1.32; letter-spacing: -0.02em; color: var(--ink);
}
.prose blockquote p { margin: 0; }
.prose img, .prose figure { margin-block: 1.8em; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin-block: 2.4em; }
.prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .88em; background: var(--soft); padding: 2px 6px;
}
.prose pre { background: var(--soft); padding: 20px; overflow-x: auto; font-size: 13px; }
.prose table { width: 100%; border-collapse: collapse; font-size: 14px; }
.prose th, .prose td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--line); }
.prose th { font-weight: 500; color: var(--ink); }

/* --------------------------------------------------------------------------
   Page + archive headers
   -------------------------------------------------------------------------- */

.page-head { padding: clamp(44px, 6vw, 82px) 0 clamp(24px, 3vw, 40px); }
.page-head h1 { font-size: clamp(34px, 5.2vw, 64px); max-width: 18ch; margin: 0; }
.page-head .lede { margin-top: 22px; }

.breadcrumbs { font-size: 12px; color: var(--muted); margin: 0 0 18px; letter-spacing: .02em; }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs .sep { padding: 0 8px; opacity: .5; }

/* Post list (journal / search results) ------------------------------------ */

.post-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(30px, 3.4vw, 52px) var(--gutter); }
.post-card__img {
  aspect-ratio: 3 / 2; overflow: hidden; background: var(--soft);
  border: 1px solid var(--line-2); margin-bottom: 16px;
}
.post-card__img img { width: 100%; height: 100%; object-fit: cover; }
.post-card h2 { font-size: 20px; margin: 0 0 8px; }
.post-card .meta { font-size: 12px; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; margin: 0 0 10px; }
.post-card p { margin: 0; font-size: 14px; color: var(--ink-2); }

.pagination { display: flex; gap: 8px; flex-wrap: wrap; margin-top: clamp(40px, 5vw, 64px); }
.pagination .page-numbers {
  min-width: 42px; height: 42px; display: grid; place-items: center; padding: 0 12px;
  border: 1px solid var(--line); font-size: 13px; color: var(--ink-2);
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.pagination .page-numbers:hover { border-color: var(--ink); color: var(--ink); }
.pagination .page-numbers.current { background: var(--ink); border-color: var(--ink); color: var(--white); }
.pagination .dots { border-color: transparent; }

/* Search form -------------------------------------------------------------- */

.search-form { display: flex; gap: 0; max-width: 460px; }
.search-form input[type="search"] {
  flex: 1; font-family: var(--sans); font-size: 14px; color: var(--ink);
  padding: 13px 16px; border: 1px solid var(--line); border-right: 0; background: var(--white);
}
.search-form input[type="search"]:focus { outline: 0; border-color: var(--ink); }
.search-form button {
  font-family: var(--sans); font-size: 12px; letter-spacing: .04em; font-weight: 500;
  padding: 13px 22px; border: 1px solid var(--ink); background: var(--ink); color: var(--white); cursor: pointer;
}
.search-form button:hover { background: var(--white); color: var(--ink); }

/* Comments ----------------------------------------------------------------- */

.comments { margin-top: clamp(48px, 6vw, 80px); border-top: 1px solid var(--line); padding-top: 36px; }
.comments h2 { font-size: 22px; margin: 0 0 26px; }
.comments ol { list-style: none; margin: 0 0 40px; padding: 0; }
.comments .comment { border-bottom: 1px solid var(--line-2); padding: 20px 0; }
.comments .children { list-style: none; padding-left: 28px; margin: 0; }
.comments .comment-meta { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.comments .comment-author { font-weight: 500; color: var(--ink); }

/* Forms — shared by comments, Contact Form 7 and WooCommerce ---------------- */

.field { display: grid; gap: 7px; margin-bottom: 18px; }
.field > label,
.wpcf7-form label,
.woocommerce form .form-row label {
  font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}

input[type="text"], input[type="email"], input[type="url"], input[type="tel"],
input[type="password"], input[type="number"], input[type="search"], input[type="date"],
select, textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.wpcf7-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  font-family: var(--sans); font-size: 14.5px; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: 0;
  padding: 12px 14px; line-height: 1.4;
  transition: border-color .2s ease;
  -webkit-appearance: none; appearance: none;
}
textarea, .wpcf7-form textarea { min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 0; border-color: var(--ink); }
::placeholder { color: var(--muted); opacity: 1; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23111' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 11px;
  padding-right: 36px;
}

input[type="submit"], button.submit, .wpcf7-submit,
.woocommerce button.button, .woocommerce a.button, .woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-block; font-family: var(--sans);
  font-size: 12px; letter-spacing: .04em; font-weight: 500; line-height: 1.5;
  padding: 14px 26px; border: 1px solid var(--ink); border-radius: 0;
  background: var(--ink); color: var(--white); cursor: pointer;
  text-transform: none; text-decoration: none;
  transition: background .22s ease, color .22s ease, border-color .22s ease;
}
input[type="submit"]:hover, .wpcf7-submit:hover,
.woocommerce button.button:hover, .woocommerce a.button:hover,
.woocommerce input.button:hover, .woocommerce #respond input#submit:hover {
  background: var(--white); color: var(--ink); border-color: var(--ink);
}
.woocommerce button.button.alt, .woocommerce a.button.alt, .woocommerce input.button.alt {
  background: var(--ink); color: var(--white); border-color: var(--ink);
}
.woocommerce button.button.alt:hover { background: var(--white); color: var(--ink); }
.woocommerce .button:disabled, .woocommerce .button.disabled { opacity: .4; cursor: default; }

.wpcf7-form p { margin: 0 0 18px; }
.wpcf7-not-valid-tip { font-size: 12px; color: #A33; margin-top: 6px; }
.wpcf7 form .wpcf7-response-output {
  margin: 20px 0 0; padding: 14px 18px; border: 1px solid var(--line);
  font-size: 13.5px; border-radius: 0;
}

/* --------------------------------------------------------------------------
   WooCommerce — shared
   -------------------------------------------------------------------------- */

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
  background: var(--paper); border: 1px solid var(--line); border-top: 2px solid var(--ink);
  color: var(--ink-2); font-size: 14px; padding: 16px 20px; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin: 0 0 26px;
}
.woocommerce .woocommerce-error { border-top-color: #A33; }
.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before,
.woocommerce .woocommerce-error::before { display: none; }
.woocommerce-notices-wrapper:empty { display: none; }

.woocommerce .quantity input[type="number"],
.woocommerce .quantity .qty {
  width: 74px; text-align: center; padding: 11px 6px; border: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}

.woocommerce .price, .woocommerce-Price-amount { font-variant-numeric: tabular-nums; }
.woocommerce del { color: var(--muted); font-weight: 400; }
.woocommerce ins { text-decoration: none; }

/* Single product ----------------------------------------------------------- */

.product-single { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4.5vw, 72px); align-items: start; }
.product-single__media {
  background: var(--paper); border: 1px solid var(--line-2);
  aspect-ratio: 4 / 5; display: grid; place-items: center; overflow: hidden; position: relative;
}
.product-single__media img { width: 100%; height: 100%; object-fit: cover; }
.product-single__media svg { width: 46%; height: auto; }
.product-single__body { padding-top: 6px; }
.product-single h1 { font-size: clamp(30px, 4vw, 48px); margin: 0 0 16px; }
.product-single .price-line {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  font-size: 26px; font-weight: 500; letter-spacing: -.02em;
  padding-bottom: 22px; border-bottom: 1px solid var(--line); margin-bottom: 22px;
}
.product-single .price-line .unit { font-size: 13px; font-weight: 400; color: var(--muted); letter-spacing: 0; }
.product-single .actives-block { margin: 24px 0; border-top: 1px solid var(--line-2); padding-top: 16px; }
.product-single .actives-block dt {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.product-single .actives-block dd { margin: 0; font-size: 14.5px; color: var(--ink-2); }
.product-single form.cart { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin: 26px 0 0; }
.product-single .meta-list {
  margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted); display: grid; gap: 8px;
}
.product-single .meta-list a:hover { color: var(--ink); }

.woocommerce-tabs { margin-top: clamp(44px, 5vw, 70px); }
.woocommerce-tabs ul.tabs { list-style: none; display: flex; gap: 26px; margin: 0 0 26px; padding: 0 0 14px; border-bottom: 1px solid var(--line); }
.woocommerce-tabs ul.tabs li a { font-size: 13px; color: var(--muted); }
.woocommerce-tabs ul.tabs li.active a { color: var(--ink); }
.woocommerce-tabs .panel h2 { font-size: 20px; margin: 0 0 14px; }

/* Cart --------------------------------------------------------------------- */

.woocommerce table.shop_table {
  width: 100%; border-collapse: collapse; border: 0; border-radius: 0; font-size: 14.5px;
}
.woocommerce table.shop_table th {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  font-weight: 500; text-align: left; padding: 0 12px 14px 0; border-bottom: 1px solid var(--ink);
}
.woocommerce table.shop_table td { padding: 20px 12px 20px 0; border-bottom: 1px solid var(--line); vertical-align: middle; }
.woocommerce table.shop_table td.product-thumbnail img { width: 74px; border: 1px solid var(--line-2); }
.woocommerce table.shop_table .product-name a { font-weight: 500; }
.woocommerce a.remove {
  width: 22px; height: 22px; line-height: 20px; font-size: 18px; color: var(--muted) !important;
  border-radius: 0; text-align: center; display: inline-block;
}
.woocommerce a.remove:hover { background: none; color: var(--ink) !important; }
.woocommerce .cart-collaterals { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 44px; }
.woocommerce .cart_totals h2 { font-size: 22px; margin: 0 0 18px; }
.woocommerce .cart_totals table.shop_table th { border-bottom: 1px solid var(--line); padding-block: 16px; }
.woocommerce .coupon { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.woocommerce .coupon input.input-text { width: auto; min-width: 200px; }
.woocommerce .actions { padding-top: 24px !important; }

/* Checkout ----------------------------------------------------------------- */

.woocommerce-checkout .col2-set { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gutter); }
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 { width: auto; float: none; }
.woocommerce-checkout h3 { font-size: 22px; margin: 0 0 22px; }
.woocommerce-checkout #order_review_heading { margin-top: 46px; }
.woocommerce-checkout #payment { background: var(--paper); border: 1px solid var(--line); border-radius: 0; padding: 24px; }
.woocommerce-checkout #payment ul.payment_methods { border-bottom: 1px solid var(--line); padding: 0 0 18px; }
.woocommerce-checkout #payment div.payment_box { background: var(--white); border: 1px solid var(--line); border-radius: 0; font-size: 13.5px; }
.woocommerce-checkout #payment div.payment_box::before { display: none; }
.woocommerce form .form-row { padding: 0; margin: 0 0 18px; }
.woocommerce form .form-row-first, .woocommerce form .form-row-last { width: 48.5%; }

/* My account --------------------------------------------------------------- */

.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; margin: 0 0 34px; padding: 0 0 16px; border-bottom: 1px solid var(--line); display: flex; gap: 22px; flex-wrap: wrap; }
.woocommerce-account .woocommerce-MyAccount-navigation a { font-size: 13.5px; color: var(--muted); }
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a { color: var(--ink); }
.woocommerce-account .woocommerce-MyAccount-content { width: auto; float: none; }
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register { border: 1px solid var(--line); border-radius: 0; padding: clamp(22px, 3vw, 34px); max-width: 460px; }

/* Bag button --------------------------------------------------------------- */

.bag { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; }
.bag__count { font-variant-numeric: tabular-nums; }

/* Empty states ------------------------------------------------------------- */

.empty-state { border: 1px solid var(--line); background: var(--paper); padding: clamp(26px, 4vw, 46px); }
.empty-state h3 { font-size: 20px; margin: 0 0 10px; }
.empty-state p { margin: 0 0 18px; color: var(--ink-2); font-size: 14.5px; }

/* 404 ---------------------------------------------------------------------- */

.error404-code {
  font-size: clamp(80px, 18vw, 220px); line-height: .86; letter-spacing: -.05em;
  font-weight: 500; color: var(--soft); margin: 0 0 -6px;
}

/* Responsive additions ------------------------------------------------------ */

@media (max-width: 960px) {
  .post-list { grid-template-columns: repeat(2, 1fr); }
  .product-single { grid-template-columns: 1fr; }
  .woocommerce-checkout .col2-set { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .post-list { grid-template-columns: 1fr; }
  .woocommerce form .form-row-first, .woocommerce form .form-row-last { width: 100%; }
  .woocommerce table.shop_table thead { display: none; }
  .woocommerce table.shop_table tr { display: grid; grid-template-columns: 74px 1fr; gap: 4px 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
  .woocommerce table.shop_table td { border: 0; padding: 0; }
  .woocommerce table.shop_table td.product-thumbnail { grid-row: span 4; }
  .woocommerce table.shop_table td.actions { grid-column: 1 / -1; }
}

/* Woo's own "View cart" link duplicates the toast — the design has one signal. */
.products .added_to_cart, .product-single .added_to_cart { display: none; }
.add.loading { opacity: .55; }
.products .card[hidden] { display: none; }

/* ==========================================================================
   Layout classes replacing the design's inline styles
   The static prototype leaned on style="" for one-off spacing. Those rules
   live here instead, so the same markup is reusable from PHP.
   ========================================================================== */

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

.section--flush-top { padding-top: 0; }
.section--intro { padding-top: clamp(44px, 6vw, 80px); }
.section--grid { padding-top: clamp(36px, 4.5vw, 56px); }
.section--menu { padding-top: clamp(40px, 5vw, 64px); }
.section__cta { margin-top: clamp(40px, 5vw, 60px); display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.section__prose { margin-top: clamp(30px, 4vw, 48px); }

.sec-head--intro { margin-bottom: clamp(28px, 4vw, 44px); }
.sec-head--flush { margin-bottom: 0; }
.h-display { font-size: clamp(34px, 5.2vw, 64px); max-width: 18ch; }

/* Black-band internals ----------------------------------------------------- */

.band__text { max-width: 44ch; margin: 0 0 30px; }

.stages { list-style: none; padding: 0; margin: 0; display: grid; gap: 24px; }
.stages li { border-top: 1px solid rgba(255,255,255,.2); padding-top: 16px; }
.stages strong {
  font-size: 22px; font-weight: 500; display: block;
  margin-bottom: 6px; letter-spacing: -.02em;
}
.stages li > span { color: rgba(255,255,255,.7); font-size: 14.5px; }

.stages--priced { gap: 20px; }
.stages--priced li { display: flex; justify-content: space-between; gap: 20px; }
.stages--priced strong { font-size: 15.5px; margin-bottom: 2px; letter-spacing: -.012em; }
.stages--priced li > span > span { display: block; font-size: 14px; color: rgba(255,255,255,.66); }
.stages__price { font-size: 18px; font-weight: 500; color: var(--white); white-space: nowrap; }

/* Visit -------------------------------------------------------------------- */

/* A US street address with a suite number is a good deal longer than the two
   short lines the design was drawn around, so this heading gets its own scale
   and measure rather than inheriting the section default. */
.sec-head h2.visit__address {
  font-size: clamp(26px, 3.4vw, 40px);
  max-width: 24ch;
  margin-bottom: 26px;
}
.visit__text { max-width: 40ch; }
.visit__cta { margin-top: 28px; }

.hours { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; font-size: 15px; }
.hours li {
  display: flex; justify-content: space-between; gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,.14); padding-bottom: 12px;
}
.hours li:last-child { border-bottom: 0; padding: 4px 0 0; }
.hours a:hover { color: var(--white); }

/* Services ----------------------------------------------------------------- */

.levels .mult--text { font-size: 28px; }
.note { margin-top: clamp(36px, 5vw, 56px); }

/* Shop cards --------------------------------------------------------------- */

.card__name a:hover { color: var(--accent); }
a.card__media { color: inherit; }

/* Misc --------------------------------------------------------------------- */

.page-head__search { margin-top: 26px; }
.error404-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.error404-search { margin-top: 34px; }
.foot__extra { margin-bottom: clamp(30px, 4vw, 48px); }
.woo-page { max-width: none; }

/* ==========================================================================
   WooCommerce Cart & Checkout blocks
   Woo ships these pages as blocks with their own rounded, blue-accented
   defaults. This section maps them onto the LUMEN tokens: square corners,
   hairline rules, the same button and the same small-caps labels.
   ========================================================================== */

.woo-page {
  --wc-blue: var(--ink);
  --wp--preset--color--primary: var(--ink);
}

.woo-page .wc-block-components-button,
.woo-page .wc-block-components-checkout-place-order-button,
.woo-page .wc-block-cart__submit-button {
  border-radius: 0;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 15px 26px;
  min-height: 0;
  text-decoration: none;
  transition: background .22s ease, color .22s ease;
}
.woo-page .wc-block-components-button:hover:not(:disabled) {
  background: var(--white);
  color: var(--ink);
}
.woo-page .wc-block-components-button__text { text-decoration: none; }
.woo-page .wc-block-components-button:not(.is-link):focus { outline: 1px solid var(--ink); outline-offset: 2px; box-shadow: none; }

.woo-page .wc-block-cart-items__header {
  border-bottom: 1px solid var(--ink);
}
.woo-page .wc-block-cart-items__header th,
.woo-page .wc-block-cart__totals-title,
.woo-page .wc-block-components-title {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.woo-page .wc-block-cart-items__row { border-bottom: 1px solid var(--line); }
.woo-page .wc-block-cart-item__image img { border: 1px solid var(--line-2); border-radius: 0; }
.woo-page .wc-block-components-product-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -.015em;
}
.woo-page .wc-block-components-product-name:hover { color: var(--accent); }
.woo-page .wc-block-components-product-metadata__description { color: var(--muted); font-size: 13px; }

.woo-page .wc-block-components-quantity-selector,
.woo-page .wc-block-components-quantity-selector__input,
.woo-page .wc-block-components-quantity-selector__button {
  border-radius: 0;
}
.woo-page .wc-block-components-quantity-selector { border: 1px solid var(--line); }
.woo-page .wc-block-components-quantity-selector__input { font-variant-numeric: tabular-nums; }

.woo-page .wc-block-components-totals-wrapper { border-top: 1px solid var(--line); }
.woo-page .wc-block-components-totals-item__label { color: var(--ink-2); font-size: 14px; }
.woo-page .wc-block-components-totals-item__value { font-variant-numeric: tabular-nums; }
.woo-page .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.woo-page .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.02em;
}

.woo-page .wc-block-components-panel__button { font-size: 14px; color: var(--ink-2); }
.woo-page .wc-block-components-sidebar { padding-left: 0; }
.woo-page .wc-block-components-sidebar-layout .wc-block-components-sidebar { background: var(--paper); padding: clamp(20px, 2.6vw, 30px); }

.woo-page .wc-block-components-text-input input,
.woo-page .wc-block-components-select__container,
.woo-page .wc-block-components-combobox-control input {
  border-radius: 0 !important;
  border-color: var(--line);
}
.woo-page .wc-block-components-text-input.is-active label,
.woo-page .wc-block-components-text-input input:focus { border-color: var(--ink); }

.woo-page .wc-block-checkout__sidebar .wc-block-components-order-summary { border-radius: 0; }
.woo-page .wc-block-components-radio-control-accordion-option,
.woo-page .wc-block-components-radio-control__option { border-radius: 0; }

.woo-page .wc-block-components-notice-banner { border-radius: 0; }

/* Term archives have no banner under the heading, so the intro block closes
   straight onto the grid. */
.section--flush-bottom { padding-bottom: 0; }

/* Product photography is packshots, not editorial: fit it inside the panel
   with the same breathing room the line art gets, rather than cropping it. */
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 11%;
}
.product-single__media img {
  object-fit: contain;
  padding: 9%;
}

/* A priced stage row that links to its product keeps the band's white text. */
.stages--priced strong a { text-decoration: none; }
.stages--priced strong a:hover { color: rgba(255,255,255,.7); }
.stages--priced .stages__price del { color: rgba(255,255,255,.45); }
.stages--priced .stages__price ins { text-decoration: none; }

/* Packshots are cut out on pure white; matching the panel to them hides the
   seam. Panels holding line art keep the warmer paper tone. */
.card__media:has(img),
.product-single__media:has(img) { background: var(--white); }

/* ==========================================================================
   Booking form
   Contact Form 7 supplies the controls; everything here is the theme. Radios
   and checkboxes are drawn as chips, which is what makes a long menu of
   services quick to answer on a phone.
   ========================================================================== */

.section--book { background: var(--paper); border-top: 1px solid var(--line); }

.book {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.book__intro h2 { font-size: clamp(28px, 3.6vw, 44px); max-width: 14ch; margin: 0 0 18px; }
.book__intro > p { color: var(--ink-2); max-width: 42ch; margin: 0; }

.book__facts {
  list-style: none; margin: clamp(26px, 3vw, 38px) 0 0; padding: 0;
  display: grid; gap: 10px; font-size: 14px;
}
.book__facts li {
  display: flex; justify-content: space-between; gap: 16px;
  border-bottom: 1px solid var(--line); padding-bottom: 9px; color: var(--ink-2);
}
.book__call { margin: 22px 0 0; font-size: 14px; color: var(--muted); }
.book__call a { color: var(--ink); border-bottom: 1px solid var(--line); }
.book__call a:hover { border-bottom-color: var(--ink); }

/* The form panel ----------------------------------------------------------- */

.book-form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(22px, 3vw, 40px);
}
.book-form form { margin: 0; }

.book-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 20px; }
.book-form .field { display: grid; gap: 8px; margin: 0; min-width: 0; }
.book-form .field--full { grid-column: 1 / -1; }

.book-form label,
.book-form legend {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; padding: 0;
}
.book-form fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
.book-form legend { margin-bottom: 12px; }
.book-form .field__hint { margin: 2px 0 0; font-size: 12.5px; color: var(--muted); line-height: 1.5; }

.book-form input[type="text"],
.book-form input[type="email"],
.book-form input[type="tel"],
.book-form input[type="date"],
.book-form select,
.book-form textarea { width: 100%; }

.book-form select { cursor: pointer; }
.book-form input[type="date"] { cursor: text; }

/* Chips -------------------------------------------------------------------- */

.book-form .field--chips .wpcf7-form-control { display: flex; flex-wrap: wrap; gap: 8px; }
.book-form .field--chips .wpcf7-list-item { margin: 0; }
.book-form .field--chips input[type="radio"],
.book-form .field--chips input[type="checkbox"] {
  position: absolute; opacity: 0; width: 1px; height: 1px; margin: 0;
}
.book-form .field--chips .wpcf7-list-item-label {
  display: inline-block;
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--ink-2);
  cursor: pointer;
  user-select: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
/* The wrapping <label> would otherwise inherit the small-caps field label
   styling; a chip is running text. */
.book-form .field--chips label {
  display: inline-block;
  font-size: inherit;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: inherit;
}
.book-form .field--chips .wpcf7-list-item-label:hover { border-color: var(--muted); color: var(--ink); }
.book-form .field--chips .wpcf7-list-item:has(input:checked) .wpcf7-list-item-label {
  background: var(--ink); border-color: var(--ink); color: var(--white);
}
.book-form .field--chips .wpcf7-list-item:has(input:focus-visible) .wpcf7-list-item-label {
  outline: 2px solid var(--accent); outline-offset: 2px;
}

/* Consent + submit --------------------------------------------------------- */

.book-form .field--consent { border-top: 1px solid var(--line-2); padding-top: 20px; }
.book-form .field--consent .wpcf7-list-item { margin: 0; }
.book-form .field--consent .wpcf7-list-item-label,
.book-form .field--consent label {
  font-size: 13.5px; letter-spacing: 0; text-transform: none;
  color: var(--ink-2); font-weight: 400; cursor: pointer;
}
.book-form .field--consent input[type="checkbox"] {
  width: 17px; height: 17px; margin-right: 10px; accent-color: var(--ink);
  vertical-align: -3px;
}

.book-form .field--submit { gap: 12px; }
.book-form input[type="submit"] { width: 100%; padding: 17px 26px; font-size: 12.5px; }

.book-form .wpcf7-spinner { margin: 0 0 0 12px; }
.book-form .wpcf7-not-valid-tip { font-size: 12px; color: #A33; }
.book-form .wpcf7-form.invalid input:not([type="submit"]).wpcf7-not-valid,
.book-form .wpcf7-form.invalid select.wpcf7-not-valid,
.book-form .wpcf7-form.invalid textarea.wpcf7-not-valid { border-color: #A33; }

.book-form .wpcf7-response-output {
  grid-column: 1 / -1;
  margin: 22px 0 0;
  border: 1px solid var(--line);
  border-top: 2px solid var(--ink);
  background: var(--paper);
  font-size: 14px;
  line-height: 1.55;
}
.book-form .wpcf7-form.invalid .wpcf7-response-output,
.book-form .wpcf7-form.failed .wpcf7-response-output { border-top-color: #A33; }

/* Prices hidden ------------------------------------------------------------ */

.row--no-price { grid-template-columns: 1fr; }

@media (max-width: 960px) {
  .book { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .book-form__grid { grid-template-columns: 1fr; }
}

/* Legal links sit above the bottom bar, quieter than the columns above them. */
.foot__legal {
  display: flex; flex-wrap: wrap; gap: 8px 26px;
  margin-top: clamp(36px, 4.5vw, 60px);
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 13px;
}
.foot__legal a { color: rgba(255,255,255,.55); }
.foot__legal a:hover { color: var(--white); }
.foot__legal + .foot__bottom { margin-top: 20px; padding-top: 0; border-top: 0; }
