/* Imprint Esthetics — shared styles */
:root {
  --brown: #795548;
  --pale: #efeae9;
  --neutral: #f5f5f5;
  --taupe: #d7ccc8;
  --slate: #7f98ac;
  --espresso: #52372d;

  --bg: var(--pale);
  --ink: var(--espresso);
  --muted: var(--brown);
  --surface: var(--espresso);
  --surface-hover: #3d2a22;
  --accent: var(--taupe);
  --accent-ink: var(--espresso);
  --focus: var(--espresso);
  --focus-ring: var(--taupe);
  --border: var(--taupe);
  --error: #8b1e1e;
  --form-bg: #fff;
  --max: 52rem;
  --content: 68rem;
  --font-sans: "Montserrat", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-sans);
  margin: 0;
  padding: 0;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--espresso);
  color: #fff;
  text-decoration: none;
  border-radius: 2px;
  transform: translateY(-200%);
  transition: transform 0.15s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.skip-link:focus-visible {
  outline: 3px solid var(--taupe);
  outline-offset: 3px;
}

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

/* —— Site chrome —— */
.site-chrome {
  position: relative;
  z-index: 30;
  background: var(--neutral);
  border-bottom: 1px solid var(--taupe);
}

.site-chrome-inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 1rem 1.25rem 0.85rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  min-height: 2.75rem;
  position: relative;
}

.brand:hover .brand-name,
.brand:focus-visible .brand-name {
  color: var(--brown);
}

.brand-logo {
  display: block;
  height: 2.75rem;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center center;
}

/* Wordmark lives in the cropped logo (mark + Imprint); keep text for AT only. */
.brand-name {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand--footer {
  display: inline-flex;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.brand--footer .brand-logo {
  height: 3.25rem;
}

.brand--footer:hover .brand-name,
.brand--footer:focus-visible .brand-name {
  color: inherit;
}

nav[aria-label="Primary"] {
  flex: 1 1 auto;
}

nav[aria-label="Primary"] ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
}

nav[aria-label="Primary"] li {
  display: flex;
  align-items: center;
}

nav[aria-label="Primary"] li:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 0.85rem;
  background: var(--taupe);
  margin: 0 0.15rem;
}

nav[aria-label="Primary"] a {
  color: var(--brown);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.45rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
}

nav[aria-label="Primary"] a:hover {
  color: var(--espresso);
}

nav[aria-label="Primary"] a[aria-current="page"] {
  border-bottom-color: var(--slate);
  color: var(--espresso);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: 1px solid var(--taupe);
  border-radius: 2px;
  background: transparent;
  color: var(--espresso);
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 3px solid var(--taupe);
  outline-offset: 2px;
}

.nav-toggle-bars {
  display: block;
  width: 1.1rem;
  height: 0.12rem;
  background: currentColor;
  box-shadow: 0 -0.32rem 0 currentColor, 0 0.32rem 0 currentColor;
}

@media (max-width: 840px) {
  .site-chrome-inner {
    flex-wrap: wrap;
    row-gap: 0;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-chrome.has-nav-toggle nav[aria-label="Primary"] {
    flex: 1 1 100%;
    display: none;
    padding: 0.35rem 0 0.75rem;
  }

  .site-chrome.has-nav-toggle.is-nav-open nav[aria-label="Primary"] {
    display: block;
  }

  nav[aria-label="Primary"] ul {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  nav[aria-label="Primary"] li:not(:last-child)::after {
    display: none;
  }

  nav[aria-label="Primary"] a {
    justify-content: flex-start;
    width: 100%;
    font-size: 0.78rem;
    border-bottom: 1px solid var(--taupe);
  }

  nav[aria-label="Primary"] a[aria-current="page"] {
    border-bottom-color: var(--espresso);
  }
}

/* —— Main layout —— */
main {
  flex: 1;
  width: 100%;
}

.page-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

.page-main h1,
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--espresso);
}

.page-main > p,
.lead {
  color: var(--muted);
  max-width: var(--max);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(78vh, 36rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3.5rem 1.25rem;
  color: var(--espresso);
  overflow: hidden;
  background:
    linear-gradient(
      160deg,
      rgba(239, 234, 233, 0.55) 0%,
      rgba(215, 204, 200, 0.35) 45%,
      rgba(127, 152, 172, 0.28) 100%
    ),
    radial-gradient(ellipse at 30% 40%, #efeae9 0%, transparent 55%),
    radial-gradient(ellipse at 75% 60%, #d7ccc8 0%, transparent 50%),
    linear-gradient(180deg, #f5f5f5 0%, #efeae9 50%, #d7ccc8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.45) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(127, 152, 172, 0.15) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.hero-has-media {
  color: #fff;
  background: #2a1f1a;
}

.hero-has-media::before {
  background:
    linear-gradient(
      180deg,
      rgba(82, 55, 45, 0.45) 0%,
      rgba(82, 55, 45, 0.62) 55%,
      rgba(82, 55, 45, 0.78) 100%
    );
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Tighter spa-treatment crop: face/upper body centered (1080p source stays sharp) */
  object-position: 50% 40%;
  transform: scale(1.32);
  transform-origin: 50% 40%;
  display: block;
}

@media (max-width: 720px) {
  .hero-video {
    /* Portrait hero already crops sides; slightly less zoom keeps brush/action in frame */
    object-position: 50% 38%;
    transform: scale(1.22);
    transform-origin: 50% 38%;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 36rem;
  animation: hero-fade-in 0.85s ease-out both;
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(0.55rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 4.2vw, 2.4rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
}

.hero-has-media .hero-eyebrow {
  color: rgba(239, 234, 233, 0.92);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.6vw, 1.35rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1.75rem;
  color: var(--espresso);
  letter-spacing: 0.02em;
}

.hero-has-media h1 {
  color: #fff;
}

.hero .hero-line {
  display: block;
}

.hero-sub {
  margin: 1rem auto 1.75rem;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 400;
  color: var(--brown);
  max-width: 28rem;
  letter-spacing: 0.02em;
}

.hero-has-media .hero-sub {
  color: rgba(239, 234, 233, 0.92);
}

.home-story {
  padding: 2.75rem 1.25rem 2.35rem;
  text-align: center;
  background: var(--bg);
}

.home-story-inner {
  max-width: min(46rem, 92vw);
  margin: 0 auto;
  text-align: center;
}

.home-story-title {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 600;
  color: var(--espresso);
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.page-name {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
}

.treatment-band .page-name {
  color: rgba(239, 234, 233, 0.78);
}

.home-story p {
  margin: 0 auto 1.15rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: none;
}

.home-story-motto {
  display: grid;
  gap: 0.4rem;
  margin: 1.75rem auto 0;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--espresso);
  line-height: 1.35;
}

.cta-outline,
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  border: 1.5px solid var(--espresso);
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.cta-outline {
  color: var(--espresso);
  background: rgba(215, 204, 200, 0.55);
}

.cta-outline:hover {
  background: var(--taupe);
  color: var(--espresso);
  transform: translateY(-1px);
}

.cta-primary {
  color: #fff;
  background: var(--espresso);
  border-color: var(--espresso);
}

.cta-primary:hover {
  background: var(--surface-hover);
  border-color: var(--surface-hover);
  color: #fff;
  transform: translateY(-1px);
}

.cta-outline:focus-visible,
.cta-primary:focus-visible {
  outline: 3px solid var(--espresso);
  outline-offset: 3px;
}

.hero-has-media .cta-primary:focus-visible {
  outline-color: var(--taupe);
}

/* —— Featured retail —— */
.featured-retail {
  padding: 2.75rem 1.25rem 3.25rem;
  background: var(--neutral);
}

.featured-retail-inner {
  max-width: var(--content);
  margin: 0 auto;
}

.featured-retail .section-title {
  text-align: center;
  margin-bottom: 1.75rem;
}

.featured-retail .section-lead {
  text-align: center;
  margin: 0 auto 1.75rem;
  color: var(--muted);
  max-width: var(--max);
}

.product-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.product-card {
  background: var(--taupe);
  border-radius: 0.65rem;
  padding: 1.25rem 1rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  min-height: 12rem;
}

.product-visual {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 10rem;
  border-radius: 0.35rem;
  background:
    linear-gradient(165deg, rgba(82, 55, 45, 0.12), transparent 55%),
    linear-gradient(25deg, #efeae9, #d7ccc8 60%, #7f98ac33);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.75rem;
  overflow: hidden;
}

.product-visual--photo {
  aspect-ratio: 1 / 1;
  max-height: none;
  padding: 0;
  align-items: stretch;
  justify-content: stretch;
  background: #fff;
}

.product-visual--photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-grid--featured,
.product-grid--shop {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--content);
  width: 100%;
  margin-inline: auto;
  justify-content: center;
}

.product-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.product-card--detail {
  text-align: left;
  align-items: stretch;
  min-height: 0;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0.25rem 0 0;
  color: var(--espresso);
}

.product-meta {
  margin: 0.15rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
}

.product-blurb {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.retail-cta {
  margin-top: 1.5rem;
}

.retail-cta a {
  color: var(--espresso);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.product-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--espresso);
  margin: 0;
}

/* —— Treatment / slate band —— */
.treatment-band {
  background: var(--slate);
  color: #fff;
  padding: 2.5rem 1.25rem 2.75rem;
}

.treatment-band--photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--espresso);
  min-height: clamp(18rem, 42vw, 24rem);
  display: flex;
  align-items: center;
  padding: 2.25rem 1.25rem;
}

.treatment-band--photo .band-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.treatment-band--photo .band-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.treatment-band--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(42, 31, 26, 0.55) 0%,
      rgba(42, 31, 26, 0.72) 55%,
      rgba(42, 31, 26, 0.8) 100%
    );
}

.treatment-band--photo .treatment-band-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.treatment-band-inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

/* Photo + dropdown / copy splits */
.still-section {
  max-width: var(--content);
  margin: 0 auto;
  padding: 2rem 1.25rem 2.5rem;
}

.still-section--home {
  padding-top: 2.25rem;
}

.still-extra-band {
  margin: 1.75rem 0 0;
  max-width: none;
  overflow: hidden;
}

.still-extra-band--home {
  margin-top: 0;
}

.still-extra-band img {
  display: block;
  width: 100%;
  height: min(28rem, 48vw);
  object-fit: cover;
}

.contact-still {
  margin: 1.15rem 0 0;
  max-height: 14rem;
}

.contact-still img {
  max-height: 14rem;
}

.still-copy .shop-status {
  text-align: left;
  margin: 0 0 0.85rem;
  max-width: none;
}

.still-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
  gap: 1.75rem 2rem;
  align-items: start;
}

.still-split--reverse {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
}

.still-split--reverse .still-figure {
  order: 2;
}

.still-figure {
  margin: 0;
  border-radius: 0.65rem;
  overflow: hidden;
  background: var(--taupe);
}

.still-figure img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 36rem;
  object-fit: cover;
}

.still-copy h1,
.still-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  margin: 0 0 0.65rem;
  color: var(--espresso);
}

.still-copy .accordion {
  max-width: none;
  margin-top: 0.75rem;
}

.still-copy .lead,
.still-copy > p {
  color: var(--muted);
  max-width: none;
}

.service-hub-wrap {
  max-width: var(--content);
  margin: 0 auto;
  padding: 2.25rem 1.25rem 0.5rem;
}

.service-hub-wrap > h2,
.service-hub-kicker {
  font-family: var(--font-serif);
  text-align: center;
  color: var(--espresso);
}

.service-hub-kicker {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  margin: 0 0 1.25rem;
}

.service-hub {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-hub a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--taupe);
  border-radius: 0.65rem;
  overflow: hidden;
  min-height: 2.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-hub a:hover,
.service-hub a:focus-visible {
  border-color: var(--espresso);
  box-shadow: 0 0 0 1px var(--espresso);
}

.service-hub-visual {
  aspect-ratio: 4 / 3;
  background: var(--taupe);
  overflow: hidden;
}

.service-hub-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hub-text {
  padding: 1rem 1.1rem 1.15rem;
}

.service-hub h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--espresso);
}

.service-hub p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.about-block-inner--still {
  max-width: var(--content);
}

.about-block-inner--still .still-copy h2 {
  text-align: left;
}

.treatment-band h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 600;
  margin: 0 0 0.85rem;
  color: #fff;
}

.treatment-band p,
.treatment-band .lead {
  color: rgba(255, 255, 255, 0.95);
  max-width: none;
  margin: 0 auto 1.25rem;
  text-align: center;
}

.treatment-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1.75rem;
  margin-top: 0.5rem;
  text-align: left;
}

.treatment-cols h2 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: #fff;
  text-align: center;
}

.treatment-cols ul {
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
}

.treatment-cols li {
  margin-bottom: 0.35rem;
}

.treatment-tagline {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
}

.treatment-menu h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--espresso);
}

.treatment-menu #addons-heading {
  margin-top: 2rem;
}

.treatment-menu-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
  align-items: center;
  margin: 0.75rem 0 1.15rem;
}

.treatment-menu-jump .cta-primary {
  display: inline-block;
}

.treatment-meta {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
  flex-shrink: 0;
}

.treatment-sub {
  margin: 0 0 0.65rem;
  color: var(--brown);
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}

.treatment-includes {
  margin: 0.35rem 0 0.95rem;
  padding-left: 1.15rem;
  color: var(--muted);
}

.treatment-includes li {
  margin: 0.2rem 0;
}

.treatment-label {
  margin: 0.85rem 0 0.35rem;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--espresso);
}

.treatment-why {
  margin: 0.35rem 0 0;
}

.treatment-accordion {
  margin-top: 0.75rem;
}

.treatment-accordion .accordion-item summary {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 1rem;
  font-family: var(--font-serif);
  font-weight: 600;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5rem 0.85rem;
}

.treatment-accordion .accordion-item summary::after {
  margin-left: auto;
}

.accordion-item .treatment-sub,
.accordion-item .treatment-ideal {
  margin: 0 0 0.65rem;
  max-width: 40rem;
}

.accordion-item .treatment-ideal:last-child,
.accordion-item .treatment-sub:last-child,
.accordion-item .treatment-book:last-child,
.accordion-item .treatment-why:last-child {
  margin-bottom: 1rem;
}

.treatment-book {
  margin: 0.25rem 0 0;
}

.treatment-book .cta-outline {
  font-size: 0.72rem;
}

.faq-topic-accordion ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.15rem;
  color: var(--muted);
  max-width: 40rem;
}

.faq-topic-accordion li {
  margin-bottom: 0.35rem;
}

.faq-topic-cta {
  margin: 2rem 0 1.25rem;
}

.faq-topic-cta h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--espresso);
}

.faq-topic-cta p {
  color: var(--muted);
  max-width: var(--max);
}

.booking-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.booking-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  margin: 0 0 0.5rem;
  color: var(--espresso);
}

.booking-section > p {
  color: var(--muted);
  max-width: var(--max);
}

.booking-frame {
  width: 100%;
  min-height: 800px;
  height: 800px;
  border: 0;
  display: block;
  background: #fff;
  margin-top: 1rem;
}

/* —— Google reviews (carousel from assets/reviews.json + GBP CTA) —— */
.reviews {
  padding: 2.75rem 1.25rem 3rem;
  background: var(--bg);
  border-top: 1px solid var(--taupe);
}

.reviews--band {
  background: var(--espresso);
  border-top: none;
  color: #fff;
}

.reviews--band .section-title {
  color: #fff;
}

.reviews--band .reviews-note {
  color: rgba(255, 255, 255, 0.82);
}

.reviews--band .cta-primary {
  background: transparent;
  color: #fff;
  border: 1px solid var(--taupe);
}

.reviews--band .cta-primary:hover,
.reviews--band .cta-primary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.reviews-inner {
  max-width: var(--content);
  margin: 0 auto;
  text-align: center;
}

.reviews .section-title {
  text-align: center;
  margin-bottom: 0.35rem;
}

.reviews--cta-only .section-title {
  margin-bottom: 0.65rem;
}

.reviews-note {
  margin: 0 auto 1.15rem;
  max-width: 28rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.reviews-cta {
  margin: 0;
  text-align: center;
}

.page-main .reviews--compact {
  margin-top: 2.5rem;
  padding: 2rem 0 0;
  border-top: 1px solid var(--taupe);
  background: transparent;
  max-width: var(--max);
}

.page-main .reviews--compact .section-title {
  text-align: left;
}

.page-main .reviews--compact .reviews-note {
  margin-left: 0;
  text-align: left;
}

.review-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas:
    "prev viewport next"
    ". dots .";
  gap: 0.5rem 0.65rem;
  align-items: center;
  max-width: 40rem;
  margin: 0 auto 1.35rem;
  text-align: left;
}

.review-carousel[hidden] {
  display: none;
}

.review-viewport {
  grid-area: viewport;
  min-height: 10.5rem;
}

.review-slide {
  margin: 0;
  padding: 1.15rem 1.25rem 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(215, 204, 200, 0.45);
  border-radius: 0.65rem;
}

.reviews:not(.reviews--band) .review-slide {
  background: #fff;
  border-color: var(--taupe);
}

.review-stars {
  margin: 0 0 0.55rem;
  letter-spacing: 0.12em;
  color: var(--taupe);
  font-size: 0.95rem;
}

.review-quote {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.45;
  color: inherit;
}

.review-cite {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.reviews:not(.reviews--band) .review-cite {
  color: var(--brown);
}

.review-nav {
  grid-area: prev;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(215, 204, 200, 0.7);
  background: transparent;
  color: inherit;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.review-next {
  grid-area: next;
}

.review-nav:hover,
.review-nav:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.review-dots {
  grid-area: dots;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.15rem;
}

.review-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(215, 204, 200, 0.45);
  cursor: pointer;
}

.review-dot.is-active {
  background: var(--taupe);
}

.review-carousel--compact {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 720px) {
  .review-carousel {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "viewport viewport"
      "prev next"
      "dots dots";
    justify-items: center;
  }

  .review-viewport {
    width: 100%;
  }
}

.page-main .reviews--compact .reviews-cta {
  text-align: left;
}

/* —— Email signup wash —— */
.email-signup {
  padding: 2.75rem 1.25rem 3rem;
  background:
    linear-gradient(
      105deg,
      #efeae9 0%,
      #efeae9 35%,
      #e8dfdc 55%,
      #d7ccc8 100%
    );
  text-align: center;
}

.email-signup-inner {
  max-width: 28rem;
  margin: 0 auto;
}

.email-signup h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--espresso);
}

.email-signup .form-note {
  margin-left: auto;
  margin-right: auto;
}

.signup-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: flex-end;
  margin-top: 1.25rem;
}

.signup-row .field {
  flex: 1 1 14rem;
  margin-bottom: 0;
  text-align: left;
}

.signup-row label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--brown);
}

.signup-row input {
  background: var(--taupe);
  border-color: transparent;
}

.signup-row button,
.btn-signup {
  background: var(--espresso);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 0;
  padding: 0.7rem 1.35rem;
  flex: 0 0 auto;
}

.signup-row button:hover,
.btn-signup:hover {
  background: var(--surface-hover);
}

.form-note {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: var(--max);
  margin-bottom: 0.75rem;
}

.form-req-legend {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: var(--max);
  margin: 0 0 1.25rem;
}

.req {
  color: var(--error);
  font-weight: 600;
  margin-left: 0.15em;
}

form {
  margin-bottom: 1.25rem;
  max-width: var(--max);
}

.email-signup form {
  max-width: none;
  margin-bottom: 0;
}

.field {
  margin-bottom: 0.85rem;
}

label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--form-bg);
  font: inherit;
  color: var(--ink);
  min-height: 2.75rem;
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--error);
}

.field-error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--error);
}

.field-error:empty {
  display: none;
}

button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-weight: 600;
  min-height: 2.75rem;
  padding: 0.65rem 1.25rem;
  border: none;
  border-radius: 2px;
  background: var(--espresso);
  color: #fff;
  cursor: pointer;
}

button:hover,
.button:hover {
  background: var(--surface-hover);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--focus-ring);
}

footer :focus-visible,
.skip-link:focus-visible,
.treatment-band :focus-visible {
  outline-color: #fff;
  box-shadow: 0 0 0 6px rgba(82, 55, 45, 0.65);
}

.treatment-band a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.treatment-band a:hover {
  color: var(--pale);
}

/* —— Footer —— */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--espresso);
  color: var(--taupe);
  text-align: center;
  padding: 1.35rem 1rem 1.5rem;
  font-size: 0.9rem;
}

footer a {
  color: var(--taupe);
}

footer a:hover,
footer a:focus-visible {
  color: #fff;
}

footer p {
  margin: 0;
}

.footer-nap {
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
  color: var(--taupe);
  line-height: 1.45;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.footer-nap a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.footer-hours {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  color: var(--taupe);
  line-height: 1.45;
}

.contact-page {
  max-width: 64rem;
}

.contact-intro {
  margin-bottom: 1.35rem;
}

.contact-intro .lead {
  max-width: 36rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
  gap: 1.25rem 1.75rem;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.contact-card,
.contact-form-panel {
  background: #fff;
  border: 1px solid var(--taupe);
  border-radius: 0.85rem;
  padding: 1.15rem 1.25rem 1.3rem;
}

.contact-card h2,
.contact-form-panel h2 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--espresso);
}

.contact-card-list {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.contact-card-list > div {
  display: grid;
  gap: 0.2rem;
}

.contact-card-list dt,
.contact-follow {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate, #5c6670);
  font-weight: 600;
}

.contact-card-list dd {
  margin: 0;
  line-height: 1.5;
}

.contact-follow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-follow a {
  color: var(--espresso);
  text-decoration: none;
}

.contact-follow a:hover,
.contact-follow a:focus-visible {
  text-decoration: underline;
}

.contact-form-panel .form-note {
  margin-top: 0;
}

.contact-nap {
  margin: 1.75rem 0 1.5rem;
}

.contact-nap .section-title {
  margin-bottom: 0.85rem;
}

.contact-nap-list {
  margin: 0;
  display: grid;
  gap: 0.85rem 1.5rem;
}

.contact-nap-list > div {
  display: grid;
  gap: 0.2rem;
}

.contact-nap-list dt {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate, #5c6670);
  font-weight: 600;
}

.contact-nap-list dd {
  margin: 0;
  line-height: 1.5;
}

.contact-nap-list code {
  font-size: 0.92em;
}

.nap-pending .field-pending {
  display: block;
  font-weight: 600;
  color: var(--brown, #52372d);
}

.nap-pending .field-pending-hint {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.88rem;
  color: var(--muted, #6b635e);
  max-width: 36rem;
}

.shop-status {
  margin: 0 auto 1.25rem;
  padding: 0.95rem 1.25rem;
  max-width: 36rem;
  text-align: center;
  border-top: 4px solid var(--slate, #7f98ac);
  background: var(--cream, #efeae9);
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.5;
}

.shop-status strong {
  display: block;
  margin-bottom: 0.35rem;
}

.shop-store-cta {
  text-align: center;
  margin: 0 0 1.75rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 0.85rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--taupe);
  text-decoration: none;
  border-radius: 50%;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: #fff;
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.5rem;
  margin-top: 0.75rem;
}

.footer-links {
  margin-top: 0.65rem;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.footer-sep {
  margin: 0 0.35rem;
  color: rgba(215, 204, 200, 0.5);
  user-select: none;
}

/* Draft legal pages — visible but calmer than a launch-blocker alarm */
.placeholder-banner {
  margin: 0 0 1.5rem;
  padding: 1rem 1.1rem;
  max-width: var(--max);
  border: 1px solid var(--slate, #7f98ac);
  border-left: 4px solid var(--brown, #52372d);
  background: var(--cream, #efeae9);
  color: var(--ink);
}

.placeholder-banner strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
  color: var(--brown, #52372d);
  text-transform: none;
}

.placeholder-banner p {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
}

.policy-meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.policy-section {
  max-width: var(--max);
  margin-bottom: 1.5rem;
}

.policy-section h2 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--espresso);
}

.policy-section p,
.policy-section ul {
  color: var(--muted);
  margin: 0 0 0.65rem;
}

.policy-section ul {
  padding-left: 1.25rem;
}

.policy-section li {
  margin-bottom: 0.35rem;
}

.launch-warn {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  max-width: var(--max);
  border-left: 4px solid var(--brown);
  background: var(--taupe);
  color: var(--ink);
  font-size: 0.95rem;
}

.launch-warn code {
  font-size: 0.9em;
  word-break: break-all;
}

.form-status {
  margin-top: 0.75rem;
  max-width: var(--max);
}

.form-status[hidden] {
  display: none;
}

.form-status.is-error {
  color: var(--error);
}

.about-hero {
  max-width: 40rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 1.5rem;
  text-align: center;
}

.about-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--espresso);
}

.about-hero .lead {
  margin: 0 auto;
  max-width: none;
  text-align: center;
}

.about-block {
  padding: 2.25rem 1.25rem;
  background: var(--bg);
}

.about-block--alt {
  background: var(--neutral);
}

.about-block-inner {
  max-width: 40rem;
  margin: 0 auto;
}

.about-block h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
  color: var(--espresso);
  text-align: center;
}

.about-block p {
  color: var(--muted);
  margin: 0 0 0.85rem;
}

.about-cta {
  margin: 1.25rem 0 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
  justify-content: center;
}

.about-emphasis {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--espresso) !important;
  margin-top: 1.25rem !important;
}

.category-band {
  padding: 2.75rem 1.25rem 3rem;
  background: var(--slate);
  color: #fff;
  text-align: center;
}

.category-band-inner {
  max-width: var(--content);
  margin: 0 auto;
}

.category-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin: 0 0 1.5rem;
  font-weight: 600;
}

.category-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  text-align: left;
}

.category-grid--four {
  grid-template-columns: repeat(2, 1fr);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.category-grid h3 {
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.category-grid a {
  color: inherit;
  text-decoration: none;
}

.category-grid a:hover,
.category-grid a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.category-grid p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.concern-spoiler {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0.5rem;
  padding: 0 1rem;
  background: rgba(42, 31, 26, 0.2);
  height: 100%;
}

.concern-spoiler summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 3rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.concern-spoiler summary::-webkit-details-marker {
  display: none;
}

.concern-spoiler summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.85);
}

.concern-spoiler[open] summary::after {
  content: "−";
}

.concern-spoiler summary:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.concern-spoiler p {
  margin: 0 0 0.85rem;
}

.concern-more {
  margin-bottom: 1rem !important;
}

.concern-more a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.category-cta {
  margin: 2rem 0 0;
}

.category-band .cta-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(82, 55, 45, 0.2);
}

.category-band .cta-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.treatment-cols--three {
  grid-template-columns: repeat(3, 1fr);
}

/* —— Accordion (booking tips) —— */
.booking-tips {
  padding-bottom: 0.5rem;
}

.accordion {
  max-width: var(--max);
  margin: 1rem 0 0;
  border-top: 1px solid var(--taupe);
}

.accordion-item {
  border-bottom: 1px solid var(--taupe);
  padding: 0;
}

.accordion-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3rem;
  padding: 0.85rem 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--espresso);
  transition: color 0.2s ease;
}

.accordion-item summary:hover {
  color: var(--brown);
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  color: var(--brown);
}

.accordion-item[open] summary::after {
  content: "−";
}

.accordion-item p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 40rem;
}

.accordion-item a {
  color: var(--espresso);
}

/* —— FAQ —— */
.faq-hero {
  text-align: center;
  padding: 2rem 1.25rem 1.25rem;
}

.faq-hero h1,
.faq-hero .lead,
.faq-intro {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.faq-intro {
  color: var(--muted);
  margin-top: 0.85rem;
}

.faq-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--brown);
  margin: 0.35rem 0 1.5rem;
}

.faq-subhead {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  margin: 0;
  color: var(--espresso);
}

.faq-grid-wrap {
  padding: 1.5rem 1.25rem 3.5rem;
}

.faq-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--content);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.faq-card {
  background: #f7f1ef;
  border-radius: 0.65rem;
  padding: 1.15rem 1.2rem;
  min-height: 8rem;
}

.faq-card details {
  height: 100%;
}

.faq-card summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--espresso);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--brown);
}

.faq-card details[open] summary::after {
  content: "−";
}

.faq-card details p,
.faq-nested {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-nested ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.faq-card-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  height: 100%;
  min-height: 6rem;
  text-decoration: none;
  color: inherit;
}

.faq-card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--espresso);
}

.faq-card-more {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
}

.faq-card--cta {
  background: var(--espresso);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.faq-cta-label {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
}

.faq-card--cta h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.faq-card--cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.cta-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 0.5rem;
  min-height: 2.5rem;
  padding: 0.55rem 1.1rem;
  background: #fff;
  color: var(--espresso);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.22s ease, transform 0.22s ease;
}

.cta-solid:hover {
  background: var(--taupe);
  transform: translateY(-1px);
}

.cta-solid:focus-visible {
  outline: 3px solid var(--taupe);
  outline-offset: 3px;
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.breadcrumb a {
  color: var(--brown);
}

@media (max-width: 960px) {
  .product-grid--featured,
  .product-grid--shop {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 34rem;
  }
}

@media (max-width: 720px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid--featured,
  .product-grid--shop {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .treatment-cols,
  .treatment-cols--three,
  .category-grid,
  .faq-grid,
  .still-split,
  .still-split--reverse,
  .service-hub,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .still-split--reverse .still-figure {
    order: 0;
  }

  .still-figure img {
    max-height: 20rem;
  }

  .site-chrome-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  nav[aria-label="Primary"] ul {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .product-grid--featured,
  .product-grid--shop {
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }

  .booking-frame {
    min-height: 640px;
    height: 640px;
  }

  nav[aria-label="Primary"] a {
    padding: 0.45rem 0.45rem;
    letter-spacing: 0.1em;
    font-size: 0.62rem;
  }
}

/* —— Sticky mobile Book bar (mobile only; not a desktop floating chip) —— */
.sticky-book {
  display: none;
}

@media (max-width: 720px) {
  .sticky-book {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: var(--espresso);
    border-top: 1px solid var(--surface-hover);
    box-shadow: none;
  }

  .sticky-book-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.75rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: transparent;
    border: 0;
    transition: opacity 0.2s ease;
  }

  .sticky-book-link:hover,
  .sticky-book-link:focus-visible {
    opacity: 0.88;
  }

  .sticky-book-link:focus-visible {
    outline: 3px solid var(--taupe);
    outline-offset: 2px;
  }

  body.has-sticky-book {
    padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
  }

  #book-heading {
    scroll-margin-top: 1.25rem;
  }
}
