/* Release polish: one consistent, editorial component system. */
:root {
  --release-shell: min(1600px, calc(100vw - 48px));
  --release-radius: 20px;
  --release-ease: cubic-bezier(.22, .8, .24, 1);
}

.page-braid { display: none !important; }
section[id] { scroll-margin-top: 94px; }

/* Navigation */
.site-header {
  height: 72px;
  inset: 12px clamp(12px, 2vw, 28px) auto;
  padding: 0 10px 0 20px;
  border: 1px solid rgba(11,11,12,.13);
  border-radius: 18px;
  background: rgba(248,246,241,.94);
  box-shadow: 0 18px 50px rgba(0,0,0,.17), inset 0 1px rgba(255,255,255,.95);
  backdrop-filter: blur(22px) saturate(1.15);
}
.site-header::before { display: none; }
.brand { grid-template-columns: 112px auto; gap: 14px; }
.brand img { width: 112px; height: 36px; }
.brand span { color: #57534e; font-size: 8px; letter-spacing: .16em; }
.site-nav {
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(11,11,12,.1);
  border-radius: 14px;
  background: rgba(255,255,255,.55);
  box-shadow: inset 0 1px rgba(255,255,255,.8);
}
.site-nav a {
  min-width: 70px;
  min-height: 38px;
  padding: 0 12px;
  color: #4d4944;
  border-radius: 10px;
  font-size: 10px;
  letter-spacing: .02em;
  text-transform: none;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: #fffefa; background: #111113; }
.language-toggle { width: 42px; height: 42px; border-radius: 12px; }
.header-book,
.header-book:hover { min-width: 122px; min-height: 48px; border-radius: 12px; }

/* Catalogue controls */
.catalogue-section { padding-top: clamp(82px, 8vw, 128px); }
.catalogue-heading { margin-bottom: 44px; }
.catalogue-heading > p { max-width: 600px; }
.catalogue-tools {
  width: var(--release-shell);
  padding: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 340px);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--release-radius);
  background: #111113;
  box-shadow: 0 22px 55px rgba(0,0,0,.25), inset 0 1px rgba(255,255,255,.05);
}
.filters { min-width: 0; flex-wrap: nowrap; gap: 6px; overflow-x: auto; scrollbar-width: none; }
.filters::-webkit-scrollbar { display: none; }
.filter-button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 15px;
  color: #bcb7af;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  font-size: 10px;
  letter-spacing: .01em;
  text-transform: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}
.filter-button span { margin-left: 5px; color: #77736d; font-size: 9px; }
.filter-button:hover { color: #fffefa; border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.06); }
.filter-button[aria-pressed="true"] { color: #111113; border-color: #f3f1eb; background: #f3f1eb; }
.filter-button[aria-pressed="true"] span { color: #605c56; }
.search-field {
  min-height: 48px;
  padding: 0 16px;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(255,255,255,.055);
}
.search-field input { color: #fffefa; font-size: 13px; }
.search-field input::placeholder { color: #8d8880; }
.service-meta { width: var(--release-shell); margin: 20px auto 16px; }

/* Bookable and request-only cards now share one complete structure. */
.catalogue-grid { width: var(--release-shell); gap: 12px; border: 0; }
.catalogue-grid .service-card {
  display: grid;
  grid-template-rows: minmax(245px, 20vw) 1fr;
  min-height: 505px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--release-radius);
  background: #171719;
  box-shadow: 0 20px 48px rgba(0,0,0,.18);
  transition: transform 360ms var(--release-ease), border-color 240ms ease, box-shadow 360ms ease;
}
.catalogue-grid .service-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.28); box-shadow: 0 30px 68px rgba(0,0,0,.3); }
.catalogue-grid .service-image { display: block; height: 100%; aspect-ratio: auto; border-bottom: 1px solid rgba(255,255,255,.1); }
.catalogue-grid .service-image::after { background: linear-gradient(0deg, rgba(5,5,6,.35), transparent 55%); }
.catalogue-grid .service-image img { filter: saturate(.72) contrast(1.02); }
.catalogue-grid .service-card:hover .service-image img { filter: saturate(.95) contrast(1.02); }
.catalogue-grid .service-card-body,
.catalogue-grid .request-card .service-card-body {
  min-height: 245px;
  aspect-ratio: auto;
  padding: 22px;
  justify-content: flex-start;
  color: #f7f4ee;
  background: linear-gradient(155deg, rgba(255,255,255,.045), transparent 62%);
}
.catalogue-grid .request-card { color: #f7f4ee; background: #171719; }
.catalogue-grid .request-card .service-card-body::before { display: none; content: none; }
.catalogue-grid .request-card h3,
.catalogue-grid .request-card .service-details,
.catalogue-grid .request-card .service-details strong,
.catalogue-grid .request-card .service-details span,
.catalogue-grid .request-card .service-category,
.catalogue-grid .request-card .service-action { color: #f7f4ee; }
.catalogue-grid .service-category { margin-bottom: 10px; color: #bbb6ae; }
.catalogue-grid .service-card h3 { margin-bottom: 18px; color: #f7f4ee; font-size: clamp(30px, 2.25vw, 42px); line-height: .98; }
.catalogue-grid .service-details { margin-bottom: 18px; color: #aaa59d; }
.catalogue-grid .service-details strong { color: #fffefa; }
.catalogue-grid .service-action { min-height: 44px; margin-top: auto; padding-top: 13px; color: #fffefa; border-color: rgba(255,255,255,.16); }
.request-badge {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  color: #111113;
  border-radius: 999px;
  background: #f3f1eb;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
  font-size: 9px;
  font-weight: 800;
}

/* Editorial consistency */
.gallery-grid { gap: 12px; }
.gallery-item,
.portfolio-photo { border-radius: 18px; }
.portfolio-photo > span { backdrop-filter: blur(12px); }
.about-section { min-height: 760px; }
.about-copy { padding-block: 42px; }
.about-copy h2 { color: #33312e; opacity: 1 !important; }
.about-lead { color: #4c4945; opacity: 1 !important; }
.about-copy > p:last-of-type { color: #605c56; opacity: 1 !important; }
.reviews-section { min-height: 720px; }
.review-list { gap: 10px; }
.review-card { padding: 26px 24px; }
.review-card blockquote { margin-bottom: 18px; }
.faq-item[data-reveal],
.visit-details > *[data-reveal] { opacity: 1 !important; transform: none !important; }
.visit-details { min-height: 680px; }
.site-footer { padding-bottom: 32px; }

picture[data-responsive-picture="true"],
.responsive-picture-static,
.responsive-picture-dynamic { display: contents; }

/* Branded, in-site Setmore shell */
.booking-dialog {
  width: min(1320px, calc(100vw - 28px));
  height: min(900px, calc(100dvh - 28px));
  margin: auto;
  overflow: hidden;
  border-radius: 24px;
}
.booking-dialog::backdrop { background: rgba(5,5,6,.78); backdrop-filter: blur(14px); }
.booking-dialog .dialog-shell {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  color: #0b0b0c;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: #f3f1eb;
  box-shadow: 0 34px 100px rgba(0,0,0,.45);
}
.booking-dialog .dialog-header {
  position: relative;
  grid-column: 1;
  grid-row: 1 / -1;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  color: #f7f4ee;
  border: 0;
  background: radial-gradient(circle at 15% 12%, rgba(255,255,255,.08), transparent 18rem), linear-gradient(145deg, #18181a, #080809);
}
.booking-dialog .dialog-header > div { display: contents; }
.booking-dialog .booking-wordmark { width: 126px; margin-bottom: auto; }
.booking-dialog .dialog-header .eyebrow { margin: 42px 0 12px; color: #a9a49c; }
.booking-dialog .dialog-header h2 { max-width: 250px; margin: 0; color: #fffefa; font-size: clamp(43px, 4vw, 62px); letter-spacing: -.035em; line-height: .9; text-transform: none; }
.booking-dialog-intro { margin: 20px 0 25px; color: #b9b4ac; font-size: 13px; line-height: 1.65; }
.booking-assurance { display: grid; gap: 9px; margin-top: auto; }
.booking-assurance span { display: flex; align-items: center; gap: 9px; color: #d6d1c9; font-size: 10px; }
.booking-assurance span::before { content: ""; width: 6px; height: 6px; flex: 0 0 auto; border-radius: 50%; background: #f3f1eb; }
.booking-dialog .icon-button { position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; color: #f7f4ee; border-color: rgba(255,255,255,.2); border-radius: 12px; background: rgba(255,255,255,.05); }
.booking-dialog .icon-button:hover { color: #0b0b0c; background: #f3f1eb; }
.booking-frame-wrap { grid-column: 2; grid-row: 1; min-height: 0; background: #e6e2db; }
.booking-frame-wrap iframe { opacity: 0; transition: opacity 260ms ease; }
.booking-frame-wrap.is-ready iframe { opacity: 1; }
.frame-loader { z-index: 3; gap: 18px; opacity: 1; background: #eeeae3; transition: opacity 220ms ease, visibility 220ms ease; }
.frame-loader p { margin: 0; color: #55514b; font-size: 12px; }
.frame-loader small { color: #8c877f; font-size: 10px; }
.booking-frame-wrap.is-ready .frame-loader { opacity: 0; visibility: hidden; pointer-events: none; }
.dialog-note {
  grid-column: 2;
  grid-row: 2;
  min-height: 62px;
  margin: 0;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #625e58;
  background: #e1ddd5;
  border-top: 1px solid rgba(11,11,12,.12);
  font-size: 10px;
}
.dialog-note a { flex: 0 0 auto; padding: 10px 14px; color: #fffefa; border-radius: 999px; background: #111113; text-decoration: none; font-weight: 700; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: minmax(190px,1fr) auto auto; }
  .catalogue-grid .service-card { min-height: 470px; }
}

@media (max-width: 900px) {
  :root { --release-shell: calc(100vw - 28px); }
  .site-header { inset: 10px; width: auto; height: 66px; padding-inline: 14px 8px; border-radius: 16px; }
  .site-header,
  .site-header.is-hidden { transform: none; }
  .brand { grid-template-columns: 104px auto; }
  .brand img { width: 104px; }
  .site-nav { inset: 84px 10px auto; }
  .catalogue-tools { grid-template-columns: 1fr; padding: 10px; }
  .search-field { grid-row: 1; }
  .filters { grid-row: 2; }
  .catalogue-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalogue-grid .service-card { grid-template-rows: 230px 1fr; min-height: 460px; }
  .booking-dialog .dialog-shell { grid-template-columns: 245px minmax(0,1fr); }
  .booking-dialog .dialog-header { padding: 28px 22px; }
}

/* Post-booking care page */
.compact-footer { grid-template-columns: minmax(220px,1.4fr) minmax(120px,.55fr) minmax(120px,.55fr) minmax(230px,1fr); }
.confirmation-page { min-height: 100vh; color: var(--near-black); background: #d6cfc5; }
.confirmation-header { position: relative; z-index: 5; min-height: 92px; padding: 18px clamp(20px,4vw,68px); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(23,25,24,.16); background: rgba(214,207,197,.92); backdrop-filter: blur(18px); }
.confirmation-header > a { display: flex; align-items: center; gap: 26px; color: #353735; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.confirmation-header img { width: 126px; }
.confirmation-hero { min-height: 700px; display: grid; grid-template-columns: minmax(320px,.78fr) minmax(480px,1.22fr); }
.confirmation-photo { min-height: 640px; overflow: hidden; background: #9b9288; }
.confirmation-photo img { width: 100%; height: 100%; object-fit: cover; }
.confirmation-copy { padding: clamp(72px,9vw,138px) clamp(30px,8vw,130px); display: flex; flex-direction: column; justify-content: center; background: radial-gradient(circle at 85% 15%, rgba(255,255,255,.28), transparent 28rem), #d6cfc5; }
.confirmation-copy h1 { max-width: 780px; margin: 12px 0 26px; font-family: var(--display); font-size: clamp(76px,10vw,156px); font-weight: 400; letter-spacing: -.055em; line-height: .82; }
.confirmation-lead { max-width: 670px; margin: 0; color: #514d47; font-size: clamp(17px,1.5vw,22px); line-height: 1.7; }
.confirmation-address { margin: 40px 0 0; padding-top: 22px; border-top: 1px solid rgba(23,25,24,.16); font-size: 12px; letter-spacing: .05em; text-transform: uppercase; }
.confirmation-actions { margin-top: 28px; display: flex; align-items: center; flex-wrap: wrap; gap: 26px; }
.confirmation-checklist { padding: clamp(54px,7vw,104px) clamp(20px,4vw,68px); display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; background: #303332; }
.confirmation-checklist article { min-height: 340px; padding: clamp(28px,4vw,58px); display: flex; flex-direction: column; border: 1px solid rgba(232,227,220,.15); border-radius: 18px; background: rgba(232,227,220,.045); }
.confirmation-checklist article > span { color: #b8a28c; font-size: 11px; letter-spacing: .16em; }
.confirmation-checklist h2 { max-width: 330px; margin: auto 0 22px; color: #e8e3dc; font-family: var(--display); font-size: clamp(34px,3.5vw,55px); font-weight: 400; line-height: .98; }
.confirmation-checklist p { max-width: 420px; margin: 0; color: #b8b0a6; line-height: 1.7; }
.confirmation-footer { padding: clamp(60px,8vw,110px) clamp(20px,7vw,118px); display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.confirmation-footer > p { max-width: 580px; margin: 0; font-family: var(--display); font-size: clamp(28px,3.2vw,46px); line-height: 1.15; }
.confirmation-footer > div { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.confirmation-footer button.text-link { appearance: none; padding: 0; border: 0; background: transparent; cursor: pointer; }

@media (max-width: 1000px) {
  .compact-footer { grid-template-columns: 1fr 1fr; }
  .confirmation-hero { grid-template-columns: minmax(260px,.7fr) 1.3fr; }
  .confirmation-checklist article { min-height: 300px; }
}

@media (max-width: 700px) {
  .confirmation-header { min-height: 74px; padding: 14px 18px; }
  .confirmation-header > a span { display: none; }
  .confirmation-header img { width: 104px; }
  .confirmation-hero { display: flex; flex-direction: column; min-height: 0; }
  .confirmation-photo { min-height: 0; height: 44svh; max-height: 470px; }
  .confirmation-copy { padding: 62px 20px 72px; }
  .confirmation-copy h1 { margin-top: 8px; font-size: clamp(72px,23vw,112px); }
  .confirmation-lead { font-size: 16px; }
  .confirmation-address { margin-top: 30px; line-height: 1.6; }
  .confirmation-actions { align-items: flex-start; flex-direction: column; }
  .confirmation-checklist { grid-template-columns: 1fr; padding: 14px; }
  .confirmation-checklist article { min-height: 280px; padding: 30px 26px; }
  .confirmation-checklist h2 { margin-top: auto; font-size: 42px; }
  .confirmation-footer { align-items: flex-start; flex-direction: column; padding: 70px 20px; }
  .confirmation-footer > div { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  :root { --release-shell: calc(100vw - 24px); }
  .brand span,
  .header-book { display: none !important; }
  .site-header { grid-template-columns: 1fr auto auto; }
  .header-actions { margin-right: 50px; }
  .catalogue-section { padding-inline: 12px; }
  .catalogue-heading { margin-bottom: 30px; gap: 18px; }
  .catalogue-heading h2 { font-size: clamp(50px, 15vw, 66px); }
  .catalogue-heading > p { font-size: 14px; }
  .catalogue-tools { width: 100%; border-radius: 17px; }
  .filters { width: 100%; padding-right: 0; }
  .filter-button { min-height: 42px; padding-inline: 13px; }
  .service-meta { width: 100%; margin-block: 16px 12px; }
  .legend { display: none; }
  .catalogue-grid { width: 100%; grid-template-columns: 1fr; gap: 12px; }
  .catalogue-grid .service-card,
  .catalogue-grid .request-card { grid-template-columns: 42% 58%; grid-template-rows: 1fr; min-height: 220px; }
  .catalogue-grid .service-image { min-height: 220px; border: 0; border-right: 1px solid rgba(255,255,255,.1); }
  .catalogue-grid .service-card-body,
  .catalogue-grid .request-card .service-card-body { min-height: 220px; padding: 17px 15px; }
  .catalogue-grid .service-card h3 { font-size: clamp(25px, 7.5vw, 34px); }
  .catalogue-grid .service-details { display: grid; gap: 3px; margin-bottom: 12px; }
  .request-badge { top: 10px; left: 10px; padding: 6px 8px; font-size: 8px; }
  .service-help { min-height: 0; padding: 68px 18px; }
  .about-section { min-height: 0; }
  .visit-section { min-height: 0; }
  .visit-details { min-height: 620px; padding: 68px 18px 92px; }
  .mobile-book[aria-hidden="true"] { opacity: 0 !important; pointer-events: none !important; }

  .booking-dialog { width: 100vw; height: 100dvh; max-height: none; border-radius: 0; }
  .booking-dialog .dialog-shell { grid-template-columns: 1fr; grid-template-rows: auto minmax(0,1fr) auto; border: 0; border-radius: 0; }
  .booking-dialog .dialog-header { grid-column: 1; grid-row: 1; min-height: 142px; padding: max(18px, env(safe-area-inset-top)) 64px 18px 18px; display: block; }
  .booking-dialog .booking-wordmark { width: 94px; margin: 0 0 18px; }
  .booking-dialog .dialog-header .eyebrow { margin: 0 0 5px; }
  .booking-dialog .dialog-header h2 { max-width: none; font-size: 34px; line-height: .95; }
  .booking-dialog .booking-dialog-intro,
  .booking-dialog .booking-assurance { display: none !important; }
  .booking-dialog .icon-button { top: max(14px, env(safe-area-inset-top)); right: 14px; }
  .booking-frame-wrap { grid-column: 1; grid-row: 2; }
  .dialog-note { grid-column: 1; grid-row: 3; min-height: 74px; padding: 10px 12px max(10px, env(safe-area-inset-bottom)); }
  .dialog-note [data-booking-fallback] { display: none; }
  .dialog-note a { width: 100%; min-height: 46px; display: grid; place-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  .catalogue-grid .service-card,
  .booking-frame-wrap iframe,
  .frame-loader { transition: none; }
}

/* Muted stone palette, sampled from the approved interior reference. */
:root {
  --stone-mist: #d2cbc1;
  --stone-soft: #c2b9ae;
  --stone: #a99f94;
  --mushroom: #887e74;
  --smoke: #5d5a56;
  --graphite: #303332;
  --graphite-soft: #3b3d3b;
  --near-black: #151716;
  --warm-white: #e8e3dc;
  --ink: #171918;
  --ink-soft: #303332;
  --paper: #cdc6bc;
  --paper-strong: #ded8cf;
  --muted: #817a72;
  --acid: #171918;
  --acid-dark: #0f1110;
  --copper: #88786a;
  --copper-deep: #554e47;
  --gold: #a8947f;
  --line: rgba(232,227,220,.2);
  --line-dark: rgba(23,25,24,.18);
}

html,
body {
  background: var(--graphite);
}
body {
  background:
    radial-gradient(circle at 12% 3%, rgba(210,203,193,.12), transparent 34rem),
    var(--graphite);
}
body::before { opacity: .022; }

.site-header {
  color: var(--near-black);
  border-color: rgba(23,25,24,.14);
  background:
    linear-gradient(112deg, rgba(218,212,203,.96), rgba(194,185,174,.94) 58%, rgba(211,204,194,.95)),
    var(--stone-mist);
  box-shadow: 0 18px 52px rgba(26,28,27,.2), inset 0 1px rgba(239,235,229,.7);
}
.site-header .brand img { filter: grayscale(1) invert(1) brightness(.12); }
.brand span { color: #5e5852; }
.site-nav {
  border-color: rgba(23,25,24,.12);
  background: rgba(224,219,211,.38);
}
.site-nav a { color: #494640; }
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--warm-white); background: var(--near-black); }
.language-toggle { color: var(--near-black); border-color: rgba(23,25,24,.2); background: rgba(226,221,213,.32); }
.language-toggle:hover { color: var(--warm-white); background: var(--near-black); }
.header-book,
.header-book:hover { color: var(--warm-white) !important; border-color: var(--near-black); background: var(--near-black) !important; }

.hero {
  color: var(--near-black);
  background:
    radial-gradient(ellipse at 18% 12%, rgba(229,224,217,.74), transparent 30rem),
    linear-gradient(132deg, transparent 0 20%, rgba(111,104,96,.13) 33%, transparent 46%),
    linear-gradient(116deg, #d5cec4 0 48%, #938a80 49%, #353735 70% 100%);
}
.hero::before {
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(23,25,24,.18) 50%, transparent 50.2%),
    radial-gradient(circle at 51% 28%, rgba(224,217,207,.28), transparent 25rem);
}
.hero-copy,
.hero-copy h1 span:last-child { color: var(--near-black); }
.hero-copy .eyebrow { color: #555049; }
.hero-intro { color: #5d5851; }
.hero-trust { border-color: rgba(23,25,24,.2); }
.hero-trust dd { color: #615b54; }
.hero-actions .button-acid { color: var(--warm-white); border-color: var(--near-black); background: var(--near-black); }
.hero-actions .button-acid:hover { color: var(--near-black); border-color: var(--near-black); background: var(--stone-mist); }
.hero-actions .text-link { color: var(--near-black); border-color: rgba(23,25,24,.34); }
.hero-media::after { background: linear-gradient(90deg, rgba(29,31,30,.16), transparent 25%), linear-gradient(0deg, rgba(30,32,31,.35), transparent 40%); }
.ticker { color: #d9d2c8; background: #373a38; }
.ticker i { background: #a79c90; }

.service-section,
.catalogue-section,
.reviews-section,
.full-gallery {
  color: var(--warm-white);
  background:
    radial-gradient(circle at 88% 10%, rgba(210,203,193,.08), transparent 31rem),
    linear-gradient(135deg, #2b2e2d, #3b3d3b 58%, #303231) !important;
}
.service-section::before { -webkit-text-stroke-color: rgba(210,203,193,.2); }
.service-section .section-heading > p,
.catalogue-heading > p,
.service-meta { color: #b3aba1; }
.category-rail { border-color: rgba(232,227,220,.16); }
.category-rail a { border-color: rgba(232,227,220,.14); }
.category-rail a:hover { background: rgba(210,203,193,.08); }
.category-rail a::after,
.category-rail small { color: #a79e94; }
.service-card,
.catalogue-grid .service-card,
.catalogue-grid .request-card {
  border-color: rgba(232,227,220,.14);
  background: #3a3c3a;
  box-shadow: 0 20px 48px rgba(24,26,25,.18);
}
.service-card-body,
.catalogue-grid .service-card-body,
.catalogue-grid .request-card .service-card-body {
  background: linear-gradient(155deg, rgba(232,227,220,.055), transparent 64%);
}
.service-category,
.catalogue-grid .service-category { color: #c8beb2; }
.service-card:not(.request-card) h3,
.catalogue-grid .service-card h3,
.catalogue-grid .request-card h3 { color: #ece7df; }
.service-card:not(.request-card) .service-details,
.catalogue-grid .service-details { color: #b6aea4; }
.service-card:not(.request-card) .service-details strong,
.catalogue-grid .service-details strong { color: #ece7df; }
.service-action,
.catalogue-grid .service-action { color: #ece7df; border-color: rgba(232,227,220,.17); }
.request-badge { color: var(--near-black); background: #d4ccc1; }
.catalogue-tools {
  border-color: rgba(232,227,220,.14);
  background: #3a3c3a;
  box-shadow: 0 22px 55px rgba(24,26,25,.24), inset 0 1px rgba(232,227,220,.05);
}
.filter-button { color: #c1b8ad; }
.filter-button span { color: #8f887f; }
.filter-button:hover { color: #ece7df; border-color: rgba(232,227,220,.18); background: rgba(232,227,220,.06); }
.filter-button[aria-pressed="true"] { color: var(--near-black); border-color: #d4ccc1; background: #d4ccc1; }
.search-field { border-color: rgba(232,227,220,.15); background: rgba(232,227,220,.055); }
.search-field input { color: #ece7df; }
.search-field input::placeholder { color: #9a9289; }

.care-note,
.gallery-book,
.service-help {
  color: var(--near-black);
  background:
    linear-gradient(128deg, rgba(220,214,205,.46), transparent 35%),
    #aaa095 !important;
}
.care-note .eyebrow,
.care-note h2,
.care-note p,
.care-note a,
.gallery-book h2,
.gallery-book p:not(.eyebrow),
.service-help h2,
.service-help > div > p:last-child { color: var(--near-black); }

.gallery-section,
.about-section,
.faq-section,
.booking-section,
.portfolio-intro,
.service-guidance {
  color: var(--near-black);
  background:
    radial-gradient(ellipse at 10% 12%, rgba(225,220,212,.58), transparent 29rem),
    linear-gradient(128deg, transparent 0 24%, rgba(97,91,84,.08) 38%, transparent 51%),
    #c8c0b6 !important;
}
.gallery-section .section-heading > p,
.booking-intro > p:not(.eyebrow),
.booking-steps p,
.portfolio-intro p,
.service-guidance p { color: #5e5952; }
.gallery-item { background: #9b9288; box-shadow: 0 14px 34px rgba(38,40,39,.14); }
.booking-intro,
.booking-steps li { border-color: rgba(23,25,24,.15); background: rgba(218,212,203,.3); }
.booking-prep { background: #353735; }
.booking-prep .eyebrow,
.booking-prep ul { color: #d2cbc1; }
.booking-steps li > span { color: #e8e3dc; background: #303332; }
.about-copy h2 { color: #302e2b; }
.about-lead { color: #514c46; }
.about-copy > p:last-of-type { color: #5e5952; }
.faq-item { border-color: rgba(23,25,24,.18); }
.faq-item p { color: #5e5952; }

.reviews-section { color: #e8e3dc; }
.reviews-summary { border-color: rgba(232,227,220,.16); }
.review-card { border-color: rgba(232,227,220,.15); background: rgba(232,227,220,.045); }
.review-card blockquote { color: #d8d1c7; }
.review-author span,
.rating-lockup p,
.google-attribution { color: #9d968d; }
.stars,
.review-stars { color: #b8a28c; }

.page-hero {
  color: #e8e3dc;
  background:
    radial-gradient(circle at 16% 15%, rgba(210,203,193,.1), transparent 28rem),
    linear-gradient(135deg, #303332, #454643) !important;
}
.page-hero-copy > p:last-child { color: #c5bdb3; }
.service-guidance article { border-color: rgba(23,25,24,.15); }
.service-guidance article > span { color: #e8e3dc; background: #303332; }
.service-guidance a { color: var(--near-black); }
.portfolio-intro a { color: var(--near-black); }
.recently-viewed { background: #4a4a46; }

.visit-section,
.site-footer { color: #e8e3dc; background: #292c2b !important; }
.visit-details { background: #292c2b; }
.visit-details > p:not(.eyebrow),
.visit-info p,
.visit-info a,
.footer-brand p { color: #b8b0a6; }
.site-footer { border-color: rgba(232,227,220,.14); }
.site-footer .button-acid,
.footer-cta .button-acid { color: #e8e3dc; border-color: #151716; background: #151716; }
.footer-bottom { color: #918a82; border-color: rgba(232,227,220,.14); }

.mobile-book {
  color: #e8e3dc;
  border-color: rgba(232,227,220,.18);
  background: #151716;
  box-shadow: 0 14px 34px rgba(25,27,26,.3);
}

.booking-dialog .dialog-shell,
.service-dialog-shell { color: var(--near-black); background: #d6cfc5; }
.booking-dialog .dialog-header {
  color: #e8e3dc;
  background:
    radial-gradient(circle at 15% 12%, rgba(210,203,193,.1), transparent 18rem),
    linear-gradient(145deg, #383b39, #252827);
}
.booking-frame-wrap,
.frame-loader { background: #cfc8be; }
.dialog-note,
.detail-notes { color: #514d47; background: #bdb4a9; }
.dialog-note a { color: #e8e3dc; background: #151716; }

@media (max-width: 900px) {
  .site-nav { color: #e8e3dc; background: rgba(41,44,43,.985); }
  .site-nav a { color: #d6cfc5; border-color: rgba(232,227,220,.13); }
  .site-nav a:hover,
  .site-nav a[aria-current="page"] { color: var(--near-black); background: #d2cbc1; }
  .menu-toggle { border-color: rgba(23,25,24,.2); background: rgba(222,216,207,.3); }
  .menu-toggle span:not(.sr-only) { background: var(--near-black); }
}
