/* ViewPort — built on the Wispr Flow style reference (see wisprflow-design.md).
   Cream broadsheet, dark velvet chambers. No shadows, no gradients.
   Icons: HugeIcons stroke-rounded (MIT), inlined as an SVG sprite in each page
   by tools/build.py. The logo mark is a HugeIcons icon too (scan-eye). */

:root {
  /* Colors */
  --lavender: #f0d7ff;
  --lavender-deep: #e3bdfb;
  --forest: #034f46;
  --ember: #ffa946;
  --ink: #1a1a1a;
  --cream: #ffffeb;
  --stone: #e4e4d0;
  --fog: #8a8a80;
  --charcoal: #222222;
  --white: #ffffff;

  /* Derived text tints (ink mixed toward cream, cream mixed toward ink) */
  --ink-soft: #4d4d45;          /* secondary text on cream: 8.3:1 */
  --cream-soft: #c9c9b8;        /* secondary text on ink: 10.6:1 */
  --cream-line: rgb(255 255 235 / 0.16);
  --cream-leader: rgb(255 255 235 / 0.45);

  /* Type */
  --serif: "EB Garamond", "Cormorant Garamond", Garamond, "Times New Roman", serif;
  --sans: "Figtree", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --page: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
  --inset: clamp(8px, 1.4vw, 20px);
  --radius-chamber: clamp(40px, 6vw, 80px);
  --radius-card: 32px;
  --radius-control: 12px;
  --section-y: clamp(104px, 12vw, 168px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset & base ---------- */

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  scrollbar-color: var(--ink) var(--stone);
  background: var(--cream);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  caret-color: var(--ink);
  accent-color: var(--forest);
  overflow-x: clip;
}

::selection { background: var(--lavender); color: var(--ink); }

img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote { margin: 0; }
h1, h2, h3, h4 { overflow-wrap: break-word; }
ul, ol { padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration-thickness: 1.5px; text-underline-offset: 0.2em; }
a, button, summary, label { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}
.chamber-dark :focus-visible, .footer :focus-visible, .price-card-feature :focus-visible, .care :focus-visible {
  outline-color: var(--cream);
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* HugeIcons: stroke width is set here so it can be tuned per context */
.icon {
  width: 1.25em; height: 1.25em;
  flex: none;
  stroke-width: 1.75;
}

.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 100;
  background: var(--lavender); color: var(--ink);
  border: 2px solid var(--ink); border-radius: var(--radius-control);
  padding: 12px 18px; font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 16px; }

.container {
  width: 100%;
  max-width: calc(var(--page) + 2 * var(--gutter));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Type ---------- */

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.25rem, 8.2vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.tone-fog { color: var(--fog); }

.h-lg {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.body-lg {
  font-size: clamp(1.125rem, 1.6vw, 1.25rem);
  line-height: 1.35;
  max-width: 34em;
  text-wrap: pretty;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 24px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-control);
  background: var(--cream);
  color: var(--ink);
  font: 500 16px/1.2 var(--sans);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 180ms var(--ease-out), color 180ms var(--ease-out), border-color 180ms var(--ease-out), transform 180ms var(--ease-out);
}
.btn:active { transform: translateY(1px); }
.btn .icon { width: 20px; height: 20px; transition: transform 240ms var(--ease-out); }
.btn:hover .icon { transform: translateX(3px); }
.btn:hover .icon-down { transform: translateY(3px); }

.btn-primary { background: var(--lavender); }
.btn-primary:hover { background: var(--ink); color: var(--lavender); }
/* On dark surfaces the hover inverts to cream instead of vanishing into the ground */
.btn-on-dark { border-color: var(--lavender); }
.btn-on-dark:hover { background: var(--cream); border-color: var(--cream); color: var(--ink); }

.btn-secondary { background: var(--cream); }
.btn-secondary:hover { background: var(--lavender); }

.btn-compact { min-height: 44px; padding: 10px 16px; }

/* Outlined cream button for dark chambers */
.btn-cream { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.btn-cream:hover { background: var(--lavender); border-color: var(--lavender); }

.btn[disabled] {
  cursor: not-allowed; background: var(--stone); color: var(--ink-soft); border-color: var(--ink-soft);
}

/* ---------- Badges & pills ---------- */

.badge-row { display: flex; flex-wrap: wrap; gap: 8px; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border-radius: 9999px;
  font: 500 14px/1.2 var(--sans);
  white-space: nowrap;
}
.badge .icon { width: 17px; height: 17px; margin-left: -4px; }
.badge-teal { background: var(--forest); color: var(--cream); }
.badge-dark { background: var(--ink); color: var(--cream); border-radius: 8px; }
.badge-stone { background: var(--stone); color: var(--ink); border-radius: 8px; }

/* ---------- Navigation ---------- */

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px var(--inset) 0;
  pointer-events: none;
}

.nav {
  pointer-events: auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: calc(var(--page) + 48px);
  margin: 0 auto;
  padding: 6px 6px 6px 20px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 9999px;
}

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
  padding: 6px 0;
  flex: none;
}
.brand-mark {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  background: var(--lavender);
  border: 2px solid var(--ink);
  border-radius: 11px;
}
.brand-mark .icon { width: 22px; height: 22px; stroke-width: 2; }
.brand-word { font: 600 21px/1 var(--sans); letter-spacing: -0.01em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
}
.nav-links a:not(.btn) {
  display: block;
  padding: 10px 14px;
  border-radius: 9999px;
  font: 500 16px/1.2 var(--sans);
  color: var(--charcoal);
  text-decoration: none;
  transition: background-color 160ms var(--ease-out);
}
.nav-links a:not(.btn):hover { background: var(--stone); }
.nav-links-cta { display: none; }

.nav-cta { margin-left: auto; }
.nav-links + .nav-cta { margin-left: 0; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 9999px;
  background: var(--cream);
  cursor: pointer;
}
.nav-toggle .icon { width: 22px; height: 22px; stroke-width: 2; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 900px) {
  .nav { gap: 8px; padding-left: 16px; }
  .nav-toggle { display: inline-flex; }
  .nav-cta, .nav-links + .nav-cta { margin-left: auto; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    background: var(--cream);
    border: 2px solid var(--ink);
    border-radius: var(--radius-card);
  }
  .nav-links.is-open { display: flex; }
  .nav-wrap::before {
    content: "";
    position: fixed; inset: 0;
    background: rgb(255 255 235 / 0.94);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms var(--ease-out);
  }
  .nav-open .nav-wrap::before { opacity: 1; pointer-events: auto; }
  .nav-links a:not(.btn) { font-size: 20px; padding: 14px 16px; border-radius: 16px; }
  .nav-links-cta { display: block; margin-top: 8px; }
  .nav-links-cta .btn { width: 100%; }
}
@media (max-width: 400px) {
  .nav { padding-left: 12px; }
  .brand { gap: 8px; }
  .brand-word { font-size: 19px; }
  .nav-cta { padding-inline: 12px; }
}
@media (max-width: 359px) {
  .nav-cta { display: none; }
}

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

.hero { padding: clamp(72px, 10vw, 136px) 0 clamp(96px, 11vw, 160px); }

.hero-inner {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 32px;
}
.hero .display { max-width: 11.5em; }

.swash { position: relative; display: inline-block; white-space: nowrap; z-index: 0; }
.swash-line {
  position: absolute;
  left: -3%;
  bottom: -0.02em;
  width: 106%;
  height: 0.34em;
  z-index: -1;
  overflow: visible;
}
.swash-line path {
  fill: none;
  stroke: var(--lavender);
  stroke-width: 16;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lede {
  font-size: clamp(1.125rem, 1.7vw, 1.3125rem);
  line-height: 1.35;
  max-width: 32em;
  text-wrap: balance;
}

.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.hero-badges { justify-content: center; }

/* Load moment: headline settles, swash draws under "firmy" */
.js .hero .display { animation: rise 900ms var(--ease-out) both; }
.js .hero .lede, .js .hero-actions, .js .hero-badges { animation: rise 900ms var(--ease-out) both; }
.js .hero .lede { animation-delay: 120ms; }
.js .hero-actions { animation-delay: 200ms; }
.js .hero-badges { animation-delay: 280ms; }
.js .swash-line path { stroke-dasharray: 1; stroke-dashoffset: 0; animation: swash-draw 1000ms var(--ease-out) both 520ms; }

@keyframes rise { from { opacity: 0.01; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes swash-draw { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }

@media (max-width: 600px) {
  .hero-inner { gap: 24px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 100%; }
}

/* ---------- Chambers & sections ---------- */

.chamber {
  margin: 0 var(--inset);
  border-radius: var(--radius-chamber);
  padding: var(--section-y) 0;
}
.chamber-dark { background: var(--ink); color: var(--cream); }

.section { padding: var(--section-y) 0; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 24px 48px;
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 96px);
}
.section-head .body-lg { color: var(--ink-soft); }
.section-head-dark .body-lg { color: var(--cream-soft); }

@media (max-width: 860px) {
  .section-head { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- Work ---------- */

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
}
.work-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 14px 14px 32px;
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-card);
}
.wc-7 { grid-column: span 7; }
.wc-5 { grid-column: span 5; }
.wc-meta { display: grid; gap: 12px; padding: 0 18px; }
.wc-meta h3 { font: 400 2rem/1 var(--serif); letter-spacing: -0.02em; }
.wc-meta > p:last-child { font-size: 17px; line-height: 1.35; color: var(--ink-soft); max-width: 36em; }

@media (max-width: 900px) {
  .work-grid { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .wc-7, .wc-5 { grid-column: auto; }
}

/* Mock mini-sites: drawn in HTML, scaled with container units */
.mock {
  container-type: inline-size;
  position: relative;
  flex: none;
  aspect-ratio: 16 / 10.5;
  border: 2px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  user-select: none;
}
.wc-5 .mock { flex: 1 1 auto; aspect-ratio: auto; min-height: 300px; }
.mock-bar {
  flex: none;
  display: flex; align-items: center; justify-content: center;
  padding: 1.8cqw 3cqw;
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
}
.mock-url {
  font: 500 max(9px, 2.1cqw)/1 var(--sans);
  padding: 1.1cqw 3.4cqw;
  border-radius: 9999px;
  background: var(--stone);
  color: var(--ink-soft);
}
.mock-body { flex: 1; padding: 4.2cqw 5cqw; display: flex; flex-direction: column; gap: 3cqw; }
.m-nav { display: flex; justify-content: space-between; align-items: center; gap: 3cqw; }
.m-logo { font: 400 4cqw/1 var(--serif); }
.m-logo-caps { font: 700 2.6cqw/1 var(--sans); letter-spacing: 0.12em; text-transform: uppercase; }
.m-links { font: 500 2.3cqw/1 var(--sans); opacity: 0.8; }
.m-head { font: 400 7.4cqw/0.95 var(--serif); letter-spacing: -0.03em; max-width: 12ch; }
.m-small { font: 400 2.5cqw/1.3 var(--sans); max-width: 30ch; margin-top: 2cqw; }
.m-split { flex: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4cqw; align-items: center; }
.m-btn {
  display: inline-block;
  align-self: flex-start;
  font: 600 2.3cqw/1 var(--sans);
  padding: 1.8cqw 3cqw;
  border-radius: 1.6cqw;
  border: 2px solid var(--ink);
}
.m-btn-ink { background: var(--ink); color: var(--cream); margin-top: 3cqw; }
.m-btn-lav { background: var(--lavender); color: var(--ink); border-color: var(--lavender); }
.m-btn-forest { background: var(--forest); color: var(--cream); border-color: var(--forest); }

.mock-florist { background: var(--lavender); }
.m-bouquet { width: 100%; height: auto; max-height: 36cqw; }
.m-check {
  display: flex; align-items: center; justify-content: space-between; gap: 2cqw;
  margin-top: 2.6cqw; max-width: 36cqw;
  padding: 1.3cqw 1.3cqw 1.3cqw 2.4cqw;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 9999px;
  font: 500 2cqw/1 var(--sans);
}
.m-check b { display: inline-flex; align-items: center; gap: 0.6cqw; background: var(--forest); color: var(--cream); padding: 1cqw 1.8cqw; border-radius: 9999px; font-weight: 600; white-space: nowrap; }
.m-check .icon { width: 2.6cqw; height: 2.6cqw; stroke-width: 2.25; }

.mock-physio { background: var(--cream); }
.mock-physio .m-logo { color: var(--forest); }
.mock-physio .m-head { color: var(--forest); font-size: 7.6cqw; }
.m-slots {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.6cqw;
  padding: 3cqw;
  border: 2px solid var(--ink);
  border-radius: 3cqw;
  background: var(--white);
}
.m-slots-day { grid-column: 1 / -1; font: 600 2.6cqw/1 var(--sans); margin-bottom: 0.6cqw; }
.m-slot {
  text-align: center;
  font: 500 2.6cqw/1 var(--sans);
  padding: 1.9cqw 0;
  border: 1.5px solid var(--ink);
  border-radius: 1.4cqw;
  font-variant-numeric: tabular-nums;
}
.m-slot.is-taken { color: var(--fog); border-color: var(--stone); text-decoration: line-through; }
.m-slot.is-picked { background: var(--lavender); }
.m-slots .m-btn { grid-column: 1 / -1; text-align: center; margin-top: 0.8cqw; align-self: auto; }

.mock-accounts { background: var(--forest); color: var(--cream); }
.mock-accounts .m-links { color: var(--cream-soft); opacity: 1; }
.mock-accounts .m-head { font-size: 8.4cqw; margin-top: auto; }
.m-ticks { display: grid; gap: 2cqw; font: 500 3cqw/1.2 var(--sans); }
.m-ticks li { display: flex; align-items: center; gap: 2cqw; }
.m-ticks .icon { width: 4cqw; height: 4cqw; color: var(--lavender); }
.mock-accounts .m-btn { font-size: 3cqw; padding: 2.4cqw 4cqw; margin-bottom: auto; }

.mock-plumber { background: var(--ink); color: var(--cream); }
.mock-plumber .m-head { font-size: 6.6cqw; max-width: 11ch; }
.m-btn-call { margin-top: 3cqw; }
.m-live { display: inline-flex; align-items: center; gap: 1.4cqw; font: 500 2.3cqw/1 var(--sans); color: var(--cream-soft); }
.m-live i { width: 1.6cqw; height: 1.6cqw; border-radius: 50%; background: var(--ember); display: inline-block; }
.m-rows { display: grid; }
.m-rows li {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 3cqw;
  padding: 2.2cqw 0;
  border-top: 1px solid var(--cream-line);
  font: 500 2.6cqw/1 var(--sans);
}
.m-rows li > span:nth-child(2) { font: 400 3.6cqw/1 var(--serif); }

@media (max-width: 900px) {
  .wc-5 .mock { flex: none; aspect-ratio: 16 / 10.5; min-height: 0; }
}
@media (max-width: 600px) {
  .mock, .wc-5 .mock { aspect-ratio: 4 / 3.3; }
  .work-card { padding: 10px 10px 26px; }
  .wc-meta { padding: 0 12px; }
}

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

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px 36px 36px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius-card);
}
.service-icon, .step-icon, .care-icon {
  flex: none;
  display: inline-grid; place-items: center;
  width: 56px; height: 56px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--lavender);
}
.service-icon .icon, .step-icon .icon, .care-icon .icon { width: 26px; height: 26px; }
.service-card .service-icon { margin-bottom: 8px; }
.service-card h3 { font: 400 clamp(2rem, 2.8vw, 2.5rem)/1 var(--serif); letter-spacing: -0.02em; }
.service-card > p { flex-grow: 1; font-size: 17px; line-height: 1.45; color: var(--ink-soft); }
.tick-list { display: grid; gap: 10px; padding-top: 18px; border-top: 1px solid var(--stone); }
.tick-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 16px; line-height: 1.35; }
.tick-list .icon { width: 20px; height: 20px; stroke-width: 2; margin-top: -1px; color: var(--forest); }
.card-link {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px;
  padding-top: 12px;
  font: 600 16px/1.2 var(--sans);
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--lavender-deep);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  transition: text-decoration-color 180ms var(--ease-out);
}
.card-link:hover { text-decoration-color: var(--ink); }
.card-link .icon { width: 20px; height: 20px; transition: transform 240ms var(--ease-out); }
.card-link:hover .icon { transform: translateX(3px); }

.extras-title { font: 600 20px/1.2 var(--sans); margin: clamp(72px, 8vw, 104px) 0 24px; }
.extra-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.extra-card {
  display: grid; gap: 10px; align-content: start;
  padding: 28px 28px 30px;
  background: var(--stone);
  border-radius: var(--radius-card);
}
.extra-card h4 { display: flex; align-items: center; gap: 10px; font: 600 18px/1.25 var(--sans); }
.extra-card h4 .icon { width: 24px; height: 24px; }
.extra-card p { font-size: 16px; line-height: 1.45; color: var(--ink-soft); }

@media (max-width: 1020px) {
  .service-cards, .extra-cards { grid-template-columns: minmax(0, 1fr); max-width: 640px; margin-inline: auto; gap: 24px; }
  .extras-title { max-width: 640px; margin-inline: auto; }
}
@media (max-width: 600px) {
  .service-card { padding: 32px 24px 28px; }
  .extra-card { padding: 24px; }
}

/* ---------- Process ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  counter-reset: step;
}
.step-card {
  position: relative;
  display: grid; align-content: start; gap: 12px;
  padding-top: 28px;
  border-top: 2px solid var(--ink);
}
.step-card h3 { font: 400 2rem/1 var(--serif); letter-spacing: -0.02em; }
.step-card .step-icon { margin-bottom: 8px; }
.step-card > p:last-child { font-size: 17px; line-height: 1.4; color: var(--ink-soft); }

@media (max-width: 960px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 48px; }
}
@media (max-width: 600px) {
  .steps { grid-template-columns: minmax(0, 1fr); row-gap: 36px; }
}

/* ---------- Pricing ---------- */

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.price-card {
  display: flex; flex-direction: column; gap: 14px;
  padding: 36px 32px 32px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-card);
  background: var(--cream);
}
.price-card h3 { font: 600 21px/1.2 var(--sans); }
.price-card > h3, .price-card-top { min-height: 36px; display: flex; align-items: center; }
.price-card-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; }
.price {
  font: 400 clamp(3rem, 5vw, 4rem)/0.95 var(--serif);
  letter-spacing: -0.03em;
  font-variant-numeric: lining-nums tabular-nums;
  margin-top: 6px;
}
.price small { font-size: 0.32em; letter-spacing: 0; vertical-align: 0.9em; margin-right: 4px; color: var(--ink-soft); }
.price .cur { font-size: 0.5em; letter-spacing: 0; }
.price-sub { font-size: 17px; line-height: 1.35; color: var(--ink-soft); padding-bottom: 18px; border-bottom: 1px solid var(--stone); }
.price-list { display: grid; gap: 12px; margin: 6px 0 20px; flex: 1; align-content: start; }
.price-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 16px; line-height: 1.35; }
.price-list .icon { width: 20px; height: 20px; stroke-width: 2; margin-top: -1px; color: var(--forest); }
.price-card .btn { align-self: stretch; }

.price-card-feature {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  border-radius: 44px;
}
.price-card-feature .price small, .price-card-feature .price-sub { color: var(--cream-soft); }
.price-card-feature .price-sub { border-bottom-color: var(--cream-line); }
.price-card-feature .price-list .icon { color: var(--lavender); }

.care {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px 28px;
  margin-top: 24px;
  padding: 28px 32px;
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--radius-card);
}
.care-icon { margin: 0; background: var(--cream); color: var(--ink); border-color: var(--cream); }
.care h3 { font: 600 21px/1.2 var(--sans); display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 14px; }
.care-price { font: 400 2rem/1 var(--serif); font-variant-numeric: lining-nums; }
.care-price small { font: 400 15px/1 var(--sans); color: rgb(255 255 235 / 0.8); margin-left: 4px; }
.price-note { margin-top: 20px; font-size: 15px; line-height: 1.4; color: var(--ink-soft); max-width: 48em; }
.care p { margin-top: 6px; font-size: 16px; line-height: 1.4; color: rgb(255 255 235 / 0.85); max-width: 40em; }

@media (max-width: 960px) {
  .price-grid { grid-template-columns: minmax(0, 1fr); max-width: 600px; margin-inline: auto; }
  .care, .price-note { max-width: 600px; margin-inline: auto; }
  .care { grid-template-columns: auto minmax(0, 1fr); }
  .care .btn { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 600px) {
  .price-card { padding: 30px 24px 24px; }
  .care { grid-template-columns: minmax(0, 1fr); padding: 28px 24px; }
  .care .btn { justify-self: stretch; }
}

/* ---------- Promises ---------- */

.promises-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: 40px 64px;
  align-items: start;
}
.promise-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 48px;
}
.promise-list li { display: grid; gap: 12px; align-content: start; padding-top: 24px; border-top: 1px solid var(--cream-line); }
.promise-list h3 { display: flex; align-items: center; gap: 12px; font: 400 clamp(1.625rem, 2.4vw, 2rem)/1.05 var(--serif); letter-spacing: -0.01em; }
.promise-list h3 .icon { width: 26px; height: 26px; color: var(--lavender); }
.promise-list p { font-size: 17px; line-height: 1.45; color: var(--cream-soft); max-width: 30em; }

@media (max-width: 960px) {
  .promises-grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 640px) {
  .promise-list { grid-template-columns: minmax(0, 1fr); gap: 28px; }
}

/* ---------- Testimonials (template, currently unused) ---------- */

.words .h-lg { margin-bottom: clamp(40px, 5vw, 64px); }
.quote blockquote p {
  font: 400 clamp(1.625rem, 2.6vw, 2rem)/1.15 var(--serif);
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.quote-lead { max-width: 1000px; }
.quote-lead blockquote p { font-size: clamp(2.125rem, 4.4vw, 3.5rem); line-height: 1.02; letter-spacing: -0.025em; }
.quote figcaption { display: flex; align-items: center; gap: 14px; margin-top: 24px; font-size: 16px; }
.quote figcaption b { display: block; font-weight: 600; color: var(--cream); }
.quote figcaption span:last-child { color: var(--cream-soft); }
.quote-pair {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px;
  margin-top: clamp(56px, 7vw, 88px);
}
.quote-pair .quote { padding-top: 28px; border-top: 1px solid var(--cream-line); }

.avatar {
  flex: none;
  width: 48px; height: 48px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  font: 600 15px/1 var(--sans);
  letter-spacing: 0.02em;
  border: 2px solid var(--ink);
}
.avatar-lav { background: var(--lavender); color: var(--ink); }
.avatar-forest { background: var(--forest); color: var(--cream); border-color: var(--cream); }
.chamber-dark .avatar-lav { border-color: var(--cream); }

@media (max-width: 760px) {
  .quote-pair { grid-template-columns: minmax(0, 1fr); gap: 24px; }
}

/* ---------- FAQ ---------- */

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.faq-intro { display: grid; gap: 24px; position: sticky; top: 120px; }
.faq-intro .body-lg { color: var(--ink-soft); }

.faq-list details { border-top: 2px solid var(--ink); }
.faq-list details:last-child { border-bottom: 2px solid var(--ink); }
.faq-list summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 24px 0;
  font: 500 clamp(1.125rem, 1.8vw, 1.375rem)/1.25 var(--sans);
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .icon {
  width: 38px; height: 38px; padding: 7px;
  border: 2px solid var(--ink); border-radius: 50%;
  stroke-width: 2;
  transition: transform 260ms var(--ease-out), background-color 180ms var(--ease-out);
}
.faq-list summary:hover .icon { background: var(--lavender); }
.faq-list details[open] summary .icon { transform: rotate(45deg); background: var(--lavender); }
.faq-list details p { padding: 0 60px 28px 0; font-size: 18px; line-height: 1.45; color: var(--ink-soft); max-width: 38em; }

@media (max-width: 860px) {
  .faq-grid { grid-template-columns: minmax(0, 1fr); }
  .faq-intro { position: static; }
  .faq-list details p { padding-right: 0; }
}

/* ---------- Contact ---------- */

.contact { padding-top: 0; }
.contact:focus { outline: none; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.contact-intro { display: grid; gap: 28px; }
.contact-intro > .body-lg { color: var(--ink-soft); }

.hours {
  background: var(--ink);
  color: var(--cream);
  border-radius: 40px;
  padding: 36px;
  display: grid; gap: 20px;
}
.hours h3 { display: flex; align-items: center; gap: 12px; font: 400 2rem/1 var(--serif); letter-spacing: -0.02em; }
.hours h3 .icon { width: 26px; height: 26px; color: var(--lavender); }
.hours dl div {
  display: grid; grid-template-columns: 7.5em 1fr; gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--cream-line);
  font-size: 16px;
}
.hours dt { font-weight: 600; }
.hours dd { color: var(--cream-soft); }
.hours-contact { display: grid; gap: 12px; padding-top: 18px; border-top: 1px solid var(--cream-line); font-size: 16px; color: var(--cream-soft); }
.hours-contact li, .footer-contact li { display: flex; align-items: center; gap: 12px; }
.hours-contact .icon, .footer-contact .icon { width: 20px; height: 20px; color: var(--lavender); }
.hours-contact a { color: var(--cream); display: inline-block; padding: 3px 0; }

.form-card {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius-card);
  padding: clamp(24px, 4vw, 48px);
}
.enquiry { display: grid; gap: 22px; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.field { display: grid; gap: 8px; min-width: 0; border: 0; padding: 0; margin: 0; }
.field label, .field legend { font: 600 15px/1.3 var(--sans); padding: 0; }
.field legend { margin-bottom: 10px; }
.optional { font-weight: 400; color: var(--ink-soft); margin-left: 4px; }

.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius-control);
  font-size: 16px;
  line-height: 1.3;
  outline: 4px solid transparent;
  outline-offset: 0;
  transition: outline-color 160ms var(--ease-out);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M18 9.00005C18 9.00005 13.5811 15 12 15C10.4188 15 6 9 6 9' stroke='%231a1a1a' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.75'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  padding-right: 44px;
  cursor: pointer;
}
.field input::placeholder, .field textarea::placeholder { color: #6b6b62; opacity: 1; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 4px solid var(--lavender-deep);
  outline-offset: 0;
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] {
  outline: 4px solid var(--ember);
}
.field-error, .form-alert {
  --alert-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%231a1a1a' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.75'/%3E%3Cpath d='M12 8V12' stroke='%231a1a1a' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.75'/%3E%3Cpath d='M12.125 15.75H12M12.25 15.75C12.25 15.8881 12.1381 16 12 16C11.8619 16 11.75 15.8881 11.75 15.75C11.75 15.6119 11.8619 15.5 12 15.5C12.1381 15.5 12.25 15.6119 12.25 15.75Z' stroke='%231a1a1a' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.75'/%3E%3C/svg%3E");
}
.field-error {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--ink);
}
.field-error::before {
  content: ""; flex: none; width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--alert-icon) center / contain no-repeat, var(--ember);
}
.field-error[hidden] { display: none; }

.choice-row { display: flex; flex-wrap: wrap; gap: 8px; }
.choice { position: relative; cursor: pointer; }
.choice input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.choice span {
  display: inline-flex; align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 2px solid var(--ink);
  border-radius: 9999px;
  font: 500 15px/1.2 var(--sans);
  background: var(--cream);
  transition: background-color 160ms var(--ease-out);
}
.choice:hover span { background: var(--stone); }
.choice input:checked + span { background: var(--ink); color: var(--cream); }
.choice input:focus-visible + span { outline: 3px solid var(--ink); outline-offset: 3px; }

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

.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; margin-top: 4px; }
.form-foot .btn { min-width: 220px; }
.form-foot .btn.is-loading { cursor: progress; }
.form-foot .btn.is-loading::after {
  content: ""; width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid currentColor; border-right-color: transparent;
  animation: spin 700ms linear infinite;
}
.form-note { font-size: 14px; color: var(--ink-soft); }

.form-alert {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-control);
  background: #fff3e2;
  font-size: 15px; line-height: 1.4;
}
.form-alert[hidden] { display: none; }
.form-alert::before {
  content: ""; flex: none; width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--alert-icon) center / contain no-repeat, var(--ember);
}

.form-success { display: grid; gap: 16px; padding: 12px 0; }
.form-success[hidden] { display: none; }
.form-success:focus { outline: none; }
.form-success h3 { font: 400 clamp(2rem, 3.4vw, 2.75rem)/1 var(--serif); letter-spacing: -0.02em; }
.form-success p:last-child { font-size: 18px; line-height: 1.4; color: var(--ink-soft); max-width: 30em; }

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 600px) {
  .field-row { grid-template-columns: minmax(0, 1fr); }
  .hours { padding: 28px 24px; border-radius: 32px; }
  .form-foot .btn { width: 100%; }
}

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

.footer {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-chamber) var(--radius-chamber) 0 0;
  padding: clamp(72px, 9vw, 112px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 3fr) minmax(0, 3fr);
  gap: 48px;
  align-items: start;
}
.footer-lead { display: grid; gap: 32px; justify-items: start; }
.footer-line { font: 400 clamp(2.75rem, 5.4vw, 4.5rem)/0.92 var(--serif); letter-spacing: -0.03em; max-width: 9em; text-wrap: balance; }
.footer-col h2 { font: 400 1.5rem/1 var(--serif); color: var(--cream); margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; font-size: 16px; }
.footer-col a { text-decoration: none; display: inline-block; padding: 3px 0; }
.footer-col a:hover { text-decoration: underline; }
.footer-base {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px;
  position: relative;
  margin-top: clamp(64px, 8vw, 104px);
  padding-top: 24px;
  font-size: 14px; color: var(--cream-soft);
}
.footer-base::before {
  content: ""; position: absolute; top: 0; left: var(--gutter); right: var(--gutter);
  border-top: 1px solid var(--cream-line);
}
.footer-base a { color: var(--cream); }
.brand-light { color: var(--cream); }
.brand-light .brand-mark { border-color: var(--cream); color: var(--ink); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .footer-lead { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
}

/* ---------- Simple pages (privacy, 404) ---------- */

.nav-simple { justify-content: space-between; }
.nav-simple .nav-cta { margin-left: auto; }
.page-simple { padding: clamp(56px, 8vw, 104px) 0 var(--section-y); }
.footer-slim { padding-top: 8px; }
.footer-slim .footer-base { margin-top: 0; }
.footer-slim .footer-base::before { display: none; }

.prose { max-width: calc(44rem + 2 * var(--gutter)); }
.prose h1 { margin-bottom: 28px; }
.prose-lede { font: 400 clamp(1.5rem, 2.4vw, 1.875rem)/1.2 var(--serif); margin-bottom: 48px; text-wrap: pretty; }
.prose h2 { font: 600 20px/1.3 var(--sans); margin: 40px 0 10px; }
.prose p { font-size: 18px; line-height: 1.5; color: var(--ink-soft); max-width: 38em; }
.prose p a { color: var(--ink); }
.prose-meta { margin-top: 48px; font-size: 14px !important; }

.notfound { display: grid; gap: 28px; justify-items: start; min-height: 52vh; align-content: center; }
.notfound-sign {
  display: inline-block;
  padding: 20px 28px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-card);
  font: italic 400 clamp(1.75rem, 3vw, 2.25rem)/1 var(--serif);
  transform: rotate(-3deg);
  margin-bottom: 12px;
}
.notfound .body-lg { color: var(--ink-soft); }
.notfound .hero-actions { justify-content: flex-start; }

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Print ---------- */

@media print {
  .nav-wrap, .form-card { display: none; }
  .chamber-dark, .footer, .hours, .price-card-feature, .care { background: none; color: var(--ink); }
  body { background: #fff; }
}

/* ---------- Owner (contact) ---------- */

.owner { display: flex; align-items: center; gap: 16px; }
.owner .avatar { width: 56px; height: 56px; font-size: 17px; }
.owner p { font-size: 16px; line-height: 1.4; color: var(--ink-soft); max-width: 26em; }
.owner b { display: block; font-weight: 600; font-size: 17px; color: var(--ink); }
