:root {
  --bg: #0e0c0a;
  --panel: rgba(28, 23, 19, 0.82);
  --panel-strong: #171310;
  --text: #f7f0e8;
  --muted: #c8baab;
  --line: rgba(255, 244, 231, 0.14);
  --gold: #d8b177;
  --gold-strong: #f0c98b;
  --accent-soft: #9f4930;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1160px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(216, 177, 119, 0.18), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(127, 49, 29, 0.26), transparent 24%),
    linear-gradient(180deg, #0b0908 0%, #14100d 35%, #120f0d 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(22px);
  background: rgba(10, 8, 7, 0.72);
  border-bottom: 1px solid var(--line);
}

.announcement-bar {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.announcement-inner,
.nav-wrap,
.footer-grid,
.stats-grid,
.split-section,
.contact-panel,
.contact-grid,
.testimonial-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.announcement-inner {
  min-height: 42px;
}

.nav-wrap {
  position: relative;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-strong), var(--accent-soft));
  color: #170f09;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-mark-image {
  object-fit: cover;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 241, 224, 0.14);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.brand-copy small {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--muted);
  transition: color 180ms ease;
}

.site-nav .nav-book-link {
  position: relative;
  isolation: isolate;
  padding: 11px 18px;
  border-radius: 999px;
  color: #140e09;
  font-weight: 800;
  background: transparent;
  border: 2px solid transparent;
  box-shadow: 0 12px 28px rgba(146, 92, 50, 0.18);
  overflow: hidden;
}

.site-nav .nav-book-link::before {
  content: "";
  position: absolute;
  inset: -14%;
  border-radius: inherit;
  background:
    conic-gradient(
      from 0deg,
      rgba(240, 201, 139, 0.05) 0deg,
      rgba(240, 201, 139, 0.08) 118deg,
      rgba(255, 248, 239, 1) 148deg,
      rgba(240, 201, 139, 0.95) 166deg,
      rgba(159, 73, 48, 0.82) 198deg,
      rgba(240, 201, 139, 0.08) 240deg,
      rgba(240, 201, 139, 0.05) 360deg
    );
  animation: book-ring-spin 4.8s linear infinite;
  z-index: -2;
}

.site-nav .nav-book-link::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--gold-strong), var(--accent-soft));
  z-index: -1;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.site-nav a:focus-visible,
.brand:focus-visible,
.button:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid rgba(240, 201, 139, 0.9);
  outline-offset: 3px;
}

.site-nav .nav-book-link:hover,
.site-nav .nav-book-link[aria-current="page"] {
  color: #140e09;
}

@keyframes book-ring-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.menu-toggle {
  display: none;
  background: rgba(255, 248, 239, 0.03);
  border: 1px solid rgba(255, 241, 224, 0.14);
  border-radius: 999px;
  padding: 0;
  width: 52px;
  height: 52px;
  position: relative;
  z-index: 61;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0;
  background: var(--gold-strong);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  transition: transform 220ms ease, opacity 220ms ease, top 220ms ease, background 220ms ease;
}

.menu-toggle span:nth-child(1) {
  top: 17px;
}

.menu-toggle span:nth-child(2) {
  top: 24px;
}

.menu-toggle span:nth-child(3) {
  top: 31px;
}

.menu-toggle[aria-expanded="true"] {
  background: rgba(240, 201, 139, 0.08);
  border-color: rgba(240, 201, 139, 0.3);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 24px;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 24px;
  transform: translateX(-50%) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-strong), var(--accent-soft));
  color: #140e09;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 220, 172, 0.24);
  box-shadow: 0 14px 34px rgba(146, 92, 50, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(146, 92, 50, 0.3);
}

.button-small {
  padding: 11px 18px;
  font-size: 0.88rem;
}

.button-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 241, 224, 0.2);
  box-shadow: none;
}

.button-icon svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero,
.page-hero {
  position: relative;
  overflow: clip;
}

.hero {
  min-height: 88vh;
  display: grid;
  align-items: center;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.82) 0%, rgba(8, 7, 6, 0.58) 45%, rgba(8, 7, 6, 0.48) 100%),
    linear-gradient(180deg, rgba(8, 7, 6, 0.1) 0%, rgba(8, 7, 6, 0.32) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.7fr);
  gap: 36px;
  padding: 92px 0 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  font-family: "Marcellus", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3.1rem, 6vw, 5.8rem);
}

h2 {
  font-size: clamp(2.2rem, 3.6vw, 3.8rem);
}

h3 {
  font-size: clamp(1.5rem, 2vw, 1.95rem);
}

p {
  margin: 0;
  color: var(--muted);
}

.hero-text,
.page-hero-inner p:last-child,
.section-copy p,
.testimonial-copy p,
.service-body p,
.info-card p,
.contact-card p,
.faq-item p {
  font-size: 1.03rem;
}

.hero-copy {
  max-width: 700px;
}

.hero-home-copy {
  max-width: 620px;
}

.hero-copy h1 {
  margin-bottom: 22px;
}

.hero-home-copy h1 {
  font-size: clamp(2.7rem, 4.7vw, 4.45rem);
  max-width: 11ch;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  max-width: 13ch;
}

.hero-copy p {
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  align-items: center;
}

.hero-link {
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 241, 224, 0.2);
  padding-bottom: 3px;
}

.hero-card {
  align-self: end;
}

.hero-home-card {
  align-self: center;
}

.hero-card-panel,
.service-card,
.info-card,
.quote-card,
.contact-card,
.faq-item,
.image-card,
.stats-grid > div {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-card-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.home-hero-panel {
  display: grid;
  gap: 18px;
  background:
    radial-gradient(circle at top right, rgba(240, 201, 139, 0.1), transparent 20%),
    linear-gradient(160deg, rgba(255, 248, 239, 0.03), rgba(159, 73, 48, 0.08)),
    var(--panel);
}

.hero-home-card .hero-card-panel {
  width: min(100%, 380px);
  max-width: 380px;
  padding: 28px;
}

.hero-card-title {
  font-size: clamp(1.9rem, 2.4vw, 2.55rem);
  line-height: 1.04;
}

.hero-card-text {
  max-width: 30ch;
}

.hero-brand-lockup {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 241, 224, 0.1);
}

.hero-card-detail {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 248, 239, 0.045);
  border: 1px solid rgba(255, 241, 224, 0.1);
}

.hero-card-detail svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 50%;
  background: rgba(240, 201, 139, 0.1);
  fill: none;
  stroke: var(--gold-strong);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-card-detail p {
  color: var(--text);
  font-weight: 700;
  line-height: 1.35;
}

.hero-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-card-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 10px 12px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(240, 201, 139, 0.14), rgba(159, 73, 48, 0.08)),
    rgba(255, 248, 239, 0.045);
  border: 1px solid rgba(240, 201, 139, 0.22);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hero-card-actions a:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 201, 139, 0.42);
  background:
    linear-gradient(135deg, rgba(240, 201, 139, 0.2), rgba(159, 73, 48, 0.12)),
    rgba(255, 248, 239, 0.065);
}

.hero-card-actions a:focus-visible {
  outline: 2px solid rgba(240, 201, 139, 0.9);
  outline-offset: 3px;
}

.hero-card-actions svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: var(--gold-strong);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-seal {
  width: 104px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
  margin: 0;
  border: 1px solid rgba(255, 241, 224, 0.16);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  background:
    radial-gradient(circle at 50% 36%, rgba(240, 201, 139, 0.18), rgba(240, 201, 139, 0.02) 58%, transparent 70%),
    rgba(10, 8, 7, 0.32);
}

.hero-brand-seal {
  width: 108px;
  padding: 12px;
  border-color: rgba(240, 201, 139, 0.32);
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.32),
    0 0 32px rgba(216, 177, 119, 0.12),
    inset 0 1px 0 rgba(255, 248, 239, 0.12);
}

.card-kicker {
  margin-bottom: 10px;
  color: var(--gold-strong);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.feature-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  color: var(--text);
}

.feature-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.feature-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.stats-band {
  position: relative;
  z-index: 2;
  margin-top: -52px;
}

.stats-grid {
  gap: 16px;
}

.stats-grid > div {
  flex: 1 1 0;
  padding: 24px;
  border-radius: var(--radius-md);
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 248, 239, 0.03), rgba(255, 248, 239, 0.01)),
    var(--panel);
}

.stats-grid strong {
  display: block;
  font-size: 1.8rem;
  color: var(--text);
}

.stat-kicker {
  margin: 0 0 10px;
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
}

.section {
  padding: 104px 0;
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(216, 177, 119, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(20, 16, 13, 0.98), rgba(11, 9, 8, 0.98));
}

.section-accent {
  background:
    linear-gradient(135deg, rgba(216, 177, 119, 0.1), rgba(127, 49, 29, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.split-section {
  align-items: stretch;
}

.home-intro-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 248, 239, 0.02), rgba(159, 73, 48, 0.05)),
    rgba(18, 14, 12, 0.46);
  box-shadow: var(--shadow);
}

.split-section > * {
  flex: 1 1 0;
}

.section-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 242, 227, 0.08);
  border: 1px solid rgba(255, 242, 227, 0.1);
  color: var(--text);
  font-size: 0.92rem;
}

.image-stack {
  position: relative;
  min-height: 520px;
}

.image-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card-large {
  inset: 0 70px 0 0;
}

.image-card-small {
  right: 0;
  bottom: -24px;
  width: 42%;
  height: 46%;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
  display: grid;
  gap: 14px;
}

.section-heading-compact {
  margin-bottom: 0;
}

.services-grid,
.info-grid,
.contact-grid {
  display: grid;
  gap: 24px;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-grid-home {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-services-head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 36px;
}

.home-services-note {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(240, 201, 139, 0.08), transparent 22%),
    linear-gradient(135deg, rgba(255, 248, 239, 0.03), rgba(159, 73, 48, 0.06)),
    var(--panel);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.services-grid-detailed {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.info-card,
.contact-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.home-service-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  background:
    linear-gradient(135deg, rgba(255, 248, 239, 0.03), rgba(255, 248, 239, 0.01)),
    var(--panel);
}

.service-card-featured {
  display: grid;
}

.home-service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold-strong), rgba(159, 73, 48, 0.65));
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
}

.service-body,
.info-card,
.contact-card {
  padding: 24px;
}

.service-body {
  display: grid;
  gap: 14px;
  align-content: start;
}

.price-line {
  color: var(--gold-strong);
  font-weight: 700;
}

.home-price-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px 14px;
}

.home-price-list span {
  padding: 11px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 241, 224, 0.1);
  background: rgba(255, 248, 239, 0.05);
  color: var(--muted);
  font-size: 0.9rem;
}

.home-price-list strong {
  color: var(--gold-strong);
}

.section-cta {
  margin-top: 34px;
}

.quote-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  align-self: center;
}

.home-quote-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(240, 201, 139, 0.08), transparent 18%),
    linear-gradient(135deg, rgba(255, 248, 239, 0.02), rgba(159, 73, 48, 0.05)),
    rgba(18, 14, 12, 0.46);
  box-shadow: var(--shadow);
}

.home-intro-panel,
.home-quote-panel,
.contact-panel {
  position: relative;
  overflow: hidden;
}

.home-quote-panel h2,
.contact-panel h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  line-height: 1.08;
}

.home-intro-panel::after,
.home-quote-panel::after,
.contact-panel::after,
.stats-grid > div::after,
.home-services-note::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.04);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  padding: 1px;
  opacity: 0.65;
}

.home-stat {
  position: relative;
}

.home-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(240, 201, 139, 0), rgba(240, 201, 139, 0.9), rgba(240, 201, 139, 0));
}

.quote-card p {
  color: var(--text);
  font-size: 1.2rem;
}

.quote-card span {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.page-hero {
  padding: 120px 0 40px;
}

.page-hero-inner {
  max-width: 850px;
  display: grid;
  gap: 18px;
}

.page-hero-card {
  position: relative;
  padding: 34px 36px;
  border-radius: calc(var(--radius-xl) + 4px);
  border: 1px solid rgba(255, 236, 205, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.1), rgba(255, 248, 239, 0.04)),
    rgba(23, 19, 16, 0.42);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 252, 246, 0.18);
  overflow: hidden;
}

.page-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 244, 226, 0.95), rgba(216, 177, 119, 0.72), rgba(159, 73, 48, 0.5));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.page-hero-card::after {
  content: "";
  position: absolute;
  inset: -28% auto auto -8%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 240, 212, 0.22), rgba(255, 240, 212, 0));
  pointer-events: none;
}

.page-gift-vouchers .page-hero {
  padding-bottom: 56px;
}

.page-gift-vouchers .page-hero-card h2 {
  max-width: 18ch;
  font-size: clamp(2.65rem, 4.5vw, 4.7rem);
}

.page-gift-vouchers .page-hero-card p:last-child {
  max-width: 60ch;
}

.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-self: center;
}

.about-care-card {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid rgba(255, 241, 224, 0.12);
  background:
    radial-gradient(circle at top right, rgba(240, 201, 139, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 248, 239, 0.04), rgba(255, 248, 239, 0.015)),
    rgba(18, 14, 12, 0.42);
  box-shadow: var(--shadow);
}

.about-care-card-wide {
  grid-column: 1 / -1;
  min-height: auto;
}

.about-care-card h3 {
  font-size: clamp(1.55rem, 2.1vw, 2.25rem);
  line-height: 1.02;
  max-width: 9ch;
}

.about-care-card p {
  max-width: 28ch;
}

.faq-list {
  max-width: 900px;
}

.faq-item {
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  font-weight: 700;
  color: var(--text);
}

.faq-item p {
  padding: 0 24px 22px;
}

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

.contact-panel {
  align-items: stretch;
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 241, 224, 0.12);
  background: rgba(255, 248, 239, 0.04);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.contact-card h2 {
  margin-bottom: 12px;
}

.contact-card .button {
  margin-top: 20px;
}

.contact-card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(240, 201, 139, 0.1);
  border: 1px solid rgba(240, 201, 139, 0.24);
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold-strong);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: 28px;
  align-items: start;
}

.booking-form-panel,
.booking-summary-card,
.booking-side-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 241, 224, 0.12);
  background:
    radial-gradient(circle at top right, rgba(240, 201, 139, 0.08), transparent 20%),
    linear-gradient(135deg, rgba(255, 248, 239, 0.03), rgba(159, 73, 48, 0.05)),
    var(--panel);
  box-shadow: var(--shadow);
}

.booking-form-panel {
  padding: 32px;
}

.booking-form-head {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.booking-noscript {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(240, 201, 139, 0.18);
  background:
    linear-gradient(135deg, rgba(240, 201, 139, 0.08), rgba(159, 73, 48, 0.08)),
    rgba(255, 248, 239, 0.035);
}

.booking-noscript strong {
  color: var(--gold-strong);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.booking-form-grid {
  display: grid;
  gap: 16px;
}

.booking-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 241, 224, 0.1);
  background: rgba(10, 8, 7, 0.18);
}

.booking-progress span {
  display: grid;
  place-items: center;
  min-height: 34px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-progress span.is-active {
  background:
    linear-gradient(135deg, rgba(240, 201, 139, 0.2), rgba(159, 73, 48, 0.12)),
    rgba(255, 248, 239, 0.06);
  color: var(--gold-strong);
  box-shadow: inset 0 1px 0 rgba(255, 248, 239, 0.12);
}

.page-book .page-hero {
  padding: 102px 0 20px;
}

.page-book .page-hero-inner {
  max-width: 760px;
}

.page-book .page-hero h1 {
  font-size: clamp(2.5rem, 4.8vw, 4.3rem);
  line-height: 0.98;
}

.booking-form-head h2,
.booking-summary-card h2 {
  font-size: clamp(1.75rem, 2.4vw, 2.55rem);
  line-height: 1.06;
}

.booking-treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-duration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 12px;
}

.booking-step {
  display: grid;
  gap: 18px;
  scroll-margin-top: 150px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 241, 224, 0.1);
  background:
    radial-gradient(circle at top right, rgba(240, 201, 139, 0.055), transparent 22%),
    rgba(255, 248, 239, 0.025);
}

.booking-step[hidden] {
  display: none;
}

.booking-step-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.booking-step-head h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.booking-step-head p {
  margin-top: 4px;
  font-size: 0.92rem;
}

.booking-step-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(240, 201, 139, 0.24), rgba(159, 73, 48, 0.2)),
    rgba(255, 248, 239, 0.06);
  border: 1px solid rgba(240, 201, 139, 0.35);
  color: var(--gold-strong);
  font-size: 0.86rem;
  font-weight: 900;
}

.booking-step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.booking-duration-field {
  padding: 16px;
  border-radius: 20px;
  background: rgba(10, 8, 7, 0.16);
  border: 1px solid rgba(255, 241, 224, 0.08);
}

.booking-step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 2px;
}

.booking-step-actions > span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-step-actions .button {
  margin-left: auto;
  min-width: 132px;
  padding: 13px 18px;
}

.booking-step-actions svg {
  width: 18px;
  height: 18px;
}

.booking-hours-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: -2px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 248, 239, 0.035);
  border: 1px solid rgba(255, 241, 224, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

.booking-hours-note svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 0.2em;
  fill: none;
  stroke: var(--gold-strong);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-select {
  position: relative;
  z-index: 1;
}

.booking-date-picker {
  position: relative;
  z-index: 2;
}

.booking-select-toggle {
  width: 100%;
  min-height: 58px;
  padding: 15px 52px 15px 16px;
  border: 1px solid rgba(255, 241, 224, 0.14);
  border-radius: 18px;
  background: rgba(255, 248, 239, 0.04);
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
  position: relative;
}

.booking-date-toggle {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 241, 224, 0.14);
  border-radius: 18px;
  background: rgba(255, 248, 239, 0.04);
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.booking-date-toggle svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: var(--gold-strong);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-select-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  transform: translateY(-62%) rotate(45deg);
  transition: transform 180ms ease;
}

.booking-select.is-open .booking-select-toggle,
.booking-select-toggle:focus-visible,
.booking-date-picker.is-open .booking-date-toggle,
.booking-date-toggle:focus-visible {
  border-color: rgba(240, 201, 139, 0.5);
  box-shadow: 0 0 0 4px rgba(240, 201, 139, 0.08);
  background: rgba(255, 248, 239, 0.06);
  outline: none;
}

.booking-select.is-open .booking-select-toggle::after {
  transform: translateY(-30%) rotate(225deg);
}

.booking-select-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  gap: 2px;
  padding: 6px;
  border-radius: 16px;
  border: 1px solid rgba(255, 241, 224, 0.12);
  background:
    radial-gradient(circle at top right, rgba(240, 201, 139, 0.06), transparent 20%),
    linear-gradient(135deg, rgba(255, 248, 239, 0.02), rgba(159, 73, 48, 0.04)),
    rgba(24, 19, 16, 0.995);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.3);
  max-height: 232px;
  overflow-y: auto;
}

.booking-select-menu[hidden] {
  display: none !important;
}

.booking-calendar {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 30;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(240, 201, 139, 0.22);
  background:
    radial-gradient(circle at top right, rgba(240, 201, 139, 0.1), transparent 28%),
    linear-gradient(135deg, rgba(255, 248, 239, 0.035), rgba(159, 73, 48, 0.08)),
    rgba(22, 18, 15, 0.995);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.44);
}

.booking-calendar[hidden] {
  display: none !important;
}

.booking-calendar-head {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.booking-calendar-head strong {
  color: var(--text);
  text-align: center;
  font-size: 0.96rem;
  letter-spacing: 0.04em;
}

.booking-calendar-nav {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 241, 224, 0.1);
  background: rgba(255, 248, 239, 0.04);
  color: var(--gold-strong);
  cursor: pointer;
}

.booking-calendar-nav:disabled {
  cursor: default;
  opacity: 0.35;
}

.booking-calendar-nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-calendar-weekdays,
.booking-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.booking-calendar-weekdays {
  margin-bottom: 8px;
}

.booking-calendar-weekdays span {
  color: var(--gold-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.booking-calendar-day {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.booking-calendar-day:hover {
  transform: translateY(-1px);
  border-color: rgba(240, 201, 139, 0.28);
  background: rgba(255, 248, 239, 0.06);
}

.booking-calendar-day.is-muted {
  color: rgba(200, 186, 171, 0.42);
}

.booking-calendar-day.is-today {
  border-color: rgba(240, 201, 139, 0.34);
}

.booking-calendar-day.is-selected {
  background: linear-gradient(135deg, var(--gold-strong), var(--accent-soft));
  border-color: rgba(240, 201, 139, 0.44);
  color: #140e09;
  font-weight: 900;
}

.booking-calendar-day:disabled {
  cursor: default;
  opacity: 0.32;
  transform: none;
}

.booking-calendar-day:disabled:hover {
  border-color: transparent;
  background: transparent;
}

.booking-calendar-today {
  width: 100%;
  margin-top: 12px;
  padding: 11px 12px;
  border: 1px solid rgba(240, 201, 139, 0.22);
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.04);
  color: var(--gold-strong);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}

.booking-select[data-booking-select="treatment"] .booking-select-menu {
  max-height: 232px;
  overflow-y: auto;
}

.booking-select-option {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: rgba(255, 248, 239, 0.015);
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.booking-select-option:hover {
  transform: none;
  border-color: rgba(240, 201, 139, 0.24);
  background: rgba(255, 248, 239, 0.06);
}

.booking-select-option.is-active {
  border-color: rgba(240, 201, 139, 0.32);
  background:
    linear-gradient(135deg, rgba(240, 201, 139, 0.12), rgba(159, 73, 48, 0.1)),
    rgba(255, 248, 239, 0.05);
}

.booking-select.is-open {
  z-index: 12;
}

.booking-select[data-booking-select="treatment"] .booking-select-option {
  font-size: 0.98rem;
}

.booking-select-disabled .booking-select-toggle,
.booking-select-toggle:disabled {
  cursor: default;
  opacity: 0.72;
}

.booking-treatment-card {
  width: 100%;
  text-align: left;
  display: grid;
  gap: 8px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 241, 224, 0.12);
  background: rgba(255, 248, 239, 0.035);
  color: var(--text);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.booking-treatment-card:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 201, 139, 0.28);
  background: rgba(255, 248, 239, 0.05);
}

.booking-treatment-card.is-active {
  border-color: rgba(240, 201, 139, 0.4);
  background:
    linear-gradient(135deg, rgba(240, 201, 139, 0.12), rgba(159, 73, 48, 0.12)),
    rgba(255, 248, 239, 0.05);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.booking-treatment-card strong {
  font-size: 1rem;
  font-weight: 700;
}

.booking-treatment-card span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.booking-duration-card {
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px 8px;
  min-height: 68px;
  padding: 14px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 241, 224, 0.12);
  background: rgba(255, 248, 239, 0.035);
  color: var(--text);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.booking-duration-card:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 201, 139, 0.28);
  background: rgba(255, 248, 239, 0.05);
}

.booking-duration-card.is-active {
  border-color: rgba(240, 201, 139, 0.4);
  background:
    linear-gradient(135deg, rgba(240, 201, 139, 0.12), rgba(159, 73, 48, 0.12)),
    rgba(255, 248, 239, 0.05);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.booking-duration-card strong {
  font-size: 0.93rem;
  font-weight: 800;
  white-space: nowrap;
}

.booking-duration-card span {
  color: var(--gold-strong);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.booking-duration-grid.is-disabled {
  opacity: 0.72;
}

.booking-duration-card.is-hidden-option {
  display: none;
}

.booking-duration-card.is-collapsed-active {
  position: relative;
}

.booking-duration-card.is-collapsed-active::after {
  content: "Tap to change";
  grid-column: 1 / -1;
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-duration-card.is-placeholder,
.booking-duration-card:disabled {
  cursor: default;
  transform: none;
  box-shadow: none;
  justify-content: center;
  text-align: center;
}

.booking-field {
  display: grid;
  gap: 10px;
}

.booking-field span {
  color: var(--text);
  font-weight: 700;
}

.booking-field input,
.booking-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 241, 224, 0.14);
  border-radius: 18px;
  background: rgba(255, 248, 239, 0.04);
  color: var(--text);
  padding: 15px 16px;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.booking-field input:focus,
.booking-field textarea:focus {
  border-color: rgba(240, 201, 139, 0.5);
  box-shadow: 0 0 0 4px rgba(240, 201, 139, 0.08);
  background: rgba(255, 248, 239, 0.06);
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 78%, white 22%);
}

.booking-field textarea {
  min-height: 126px;
  resize: vertical;
}

.booking-field small {
  color: var(--muted);
  font-size: 0.84rem;
}

.booking-field-wide {
  grid-column: 1 / -1;
}

.booking-check {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 241, 224, 0.12);
  background: rgba(255, 248, 239, 0.04);
}

.booking-check input {
  width: 20px;
  height: 20px;
  accent-color: var(--gold-strong);
}

.booking-check span {
  font-weight: 600;
}

.booking-health-check {
  align-items: start;
}

.booking-health-check span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.booking-health-note {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(240, 201, 139, 0.18);
  background:
    linear-gradient(135deg, rgba(240, 201, 139, 0.08), rgba(159, 73, 48, 0.08)),
    rgba(255, 248, 239, 0.035);
}

.booking-health-note strong {
  color: var(--gold-strong);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.booking-health-note p {
  font-size: 0.94rem;
}

.booking-form-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.booking-form-actions .button:first-child {
  flex: 0 0 auto;
}

.booking-form-actions .button[type="submit"] {
  flex: 1 1 320px;
}

.booking-summary-panel {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 108px;
}

.booking-summary-card,
.booking-side-card {
  padding: 28px;
}

.booking-summary-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.booking-summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 241, 224, 0.1);
}

.booking-summary-list span {
  color: var(--muted);
}

.booking-summary-list strong {
  color: var(--text);
  text-align: right;
  max-width: 58%;
}

.booking-total {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(240, 201, 139, 0.14), rgba(159, 73, 48, 0.16));
  border: 1px solid rgba(240, 201, 139, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.booking-total span {
  color: var(--muted);
}

.booking-total strong {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  color: var(--gold-strong);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.booking-note {
  margin-top: 18px;
  font-size: 0.94rem;
}

.booking-side-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.booking-side-list li {
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}

.booking-side-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-strong);
}

.booking-reassurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.site-footer {
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
}

.footer-seal-wrap {
  display: flex;
  justify-content: center;
}

.footer-seal {
  width: 88px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 241, 224, 0.14);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.footer-grid {
  align-items: start;
}

.site-footer h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.site-footer a {
  color: var(--text);
}

.brand-footer .brand-mark {
  width: 42px;
  height: 42px;
  box-shadow: none;
}

.treatments-page {
  background:
    radial-gradient(circle at 10% 0%, rgba(216, 177, 119, 0.12), transparent 26%),
    radial-gradient(circle at 100% 15%, rgba(159, 73, 48, 0.12), transparent 24%);
}

.treatments-hero {
  padding: 118px 0 56px;
}

.treatments-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: stretch;
}

.treatments-hero-copy,
.hours-card,
.address-card,
.sidebar-panel,
.menu-item,
.additions-panel,
.booking-band {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.treatments-hero-copy {
  position: relative;
  padding: 42px;
  border-radius: var(--radius-xl);
  display: grid;
  gap: 18px;
  align-content: center;
  min-height: 420px;
  background:
    radial-gradient(circle at top right, rgba(240, 201, 139, 0.12), transparent 24%),
    linear-gradient(160deg, rgba(255, 248, 239, 0.03), rgba(159, 73, 48, 0.08)),
    var(--panel);
}

.treatments-hero-copy::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: calc(var(--radius-xl) - 10px);
  border: 1px solid rgba(255, 241, 224, 0.05);
  pointer-events: none;
}

.treatments-hero-stack {
  display: grid;
  gap: 20px;
}

.hours-card,
.address-card,
.sidebar-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.hours-card {
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.03), rgba(255, 248, 239, 0.01)),
    var(--panel);
}

.address-card {
  background:
    radial-gradient(circle at top right, rgba(240, 201, 139, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(159, 73, 48, 0.1), rgba(255, 248, 239, 0.02)),
    var(--panel);
}

.hours-grid,
.mini-price-list {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 16px;
}

.hours-grid span,
.mini-price-list span {
  color: var(--muted);
}

.hours-grid strong,
.mini-price-list strong {
  color: var(--text);
  font-weight: 700;
  text-align: right;
}

.address-card h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.treatments-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.38fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.treatments-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 20px;
}

.sidebar-panel-soft {
  background:
    linear-gradient(135deg, rgba(240, 201, 139, 0.08), rgba(159, 73, 48, 0.1)),
    var(--panel);
}

.treatments-content {
  display: grid;
  gap: 26px;
}

.menu-list {
  display: grid;
  gap: 18px;
}

.menu-item {
  padding: 18px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(255, 248, 239, 0.03), rgba(255, 248, 239, 0.01)),
    var(--panel);
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold-strong), rgba(159, 73, 48, 0.6));
  opacity: 0.9;
}

.menu-item:nth-child(even) {
  background:
    linear-gradient(135deg, rgba(159, 73, 48, 0.08), rgba(255, 248, 239, 0.02)),
    var(--panel);
}

.menu-item-media {
  border-radius: 22px;
  overflow: hidden;
  min-height: 220px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.menu-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item-body {
  display: grid;
  gap: 18px;
  align-content: center;
}

.menu-item-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.menu-item-header h3 {
  margin-bottom: 8px;
}

.menu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 12px;
}

.menu-tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 242, 227, 0.08);
  border: 1px solid rgba(255, 242, 227, 0.1);
  color: var(--gold-strong);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.menu-prices span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 242, 227, 0.06);
  border: 1px solid rgba(255, 242, 227, 0.08);
  color: var(--text);
}

.menu-prices strong {
  color: var(--gold-strong);
}

.additions-panel,
.booking-band {
  border-radius: var(--radius-xl);
}

.additions-panel {
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    radial-gradient(circle at top right, rgba(240, 201, 139, 0.1), transparent 18%),
    linear-gradient(135deg, rgba(255, 248, 239, 0.03), rgba(159, 73, 48, 0.08)),
    var(--panel);
}

.additions-copy {
  max-width: 780px;
  display: grid;
  gap: 14px;
}

.additions-price {
  min-width: 170px;
  text-align: center;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 242, 227, 0.06);
  border: 1px solid rgba(255, 242, 227, 0.1);
}

.additions-price span {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.additions-price strong {
  display: block;
  margin-top: 8px;
  color: var(--gold-strong);
  font-size: 3rem;
  line-height: 1;
}

.booking-band {
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(255, 248, 239, 0.03), rgba(159, 73, 48, 0.06)),
    var(--panel);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .services-grid-detailed,
  .info-grid,
  .contact-grid,
  .booking-reassurance {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .services-grid-home,
  .home-services-head {
    grid-template-columns: 1fr;
  }

  .service-card-featured {
    grid-template-columns: 1fr;
  }

  .split-section,
  .testimonial-panel,
  .contact-panel {
    flex-direction: column;
  }

  .image-stack {
    min-height: 440px;
    width: 100%;
  }

  .treatments-hero-grid,
  .treatments-layout,
  .menu-item {
    grid-template-columns: 1fr;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-summary-panel {
    position: static;
  }

  .about-care-grid {
    grid-template-columns: 1fr;
  }

  .about-care-card,
  .about-care-card-wide {
    min-height: auto;
  }

  .about-care-card-wide {
    grid-column: auto;
  }

  .treatments-sidebar {
    position: static;
  }

  .menu-item-media {
    min-height: 240px;
  }

  .additions-panel,
  .booking-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 840px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 120px 28px 40px;
    background:
      radial-gradient(circle at top right, rgba(240, 201, 139, 0.08), transparent 20%),
      linear-gradient(180deg, rgba(10, 8, 7, 0.995), rgba(10, 8, 7, 0.99));
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 240ms ease, transform 240ms ease, visibility 240ms ease;
    z-index: 60;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
    line-height: 1;
    font-family: "Marcellus", serif;
    color: var(--text);
    text-align: center;
  }

  .site-nav .nav-book-link {
    order: -1;
    width: auto;
    min-width: 0;
    align-self: center;
    padding: 11px 18px;
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .site-nav .nav-book-link::before {
    inset: 0;
    padding: 2px;
    background:
      conic-gradient(
        from 0deg,
        rgba(240, 201, 139, 0.06) 0deg,
        rgba(240, 201, 139, 0.06) 104deg,
        rgba(255, 246, 233, 0.95) 138deg,
        rgba(240, 201, 139, 1) 160deg,
        rgba(159, 73, 48, 0.9) 196deg,
        rgba(240, 201, 139, 0.12) 232deg,
        rgba(240, 201, 139, 0.06) 360deg
      );
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    mask-composite: exclude;
  }

  .site-nav a:last-child {
    margin-top: 12px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 188px;
    gap: 28px;
  }

  .page-hero-card {
    padding: 28px 22px;
  }

  .hero-home-card {
    width: 100%;
  }

  .hero-home-card .hero-card-panel {
    width: 100%;
  }

  .hero-grid,
  .stats-grid,
  .services-grid,
  .services-grid-home,
  .services-grid-detailed,
  .info-grid,
  .contact-grid,
  .booking-reassurance {
    grid-template-columns: 1fr;
  }

  .announcement-inner,
  .nav-wrap,
  .footer-grid {
    gap: 16px;
  }

  .stats-grid,
  .footer-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .stats-grid > div,
  .footer-grid > div {
    width: 100%;
  }

  .footer-grid {
    text-align: left;
  }

  .footer-seal-wrap {
    justify-content: flex-start;
  }

  .announcement-inner {
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .image-card-large,
  .image-card-small {
    position: static;
    width: 100%;
    height: auto;
  }

  .image-stack {
    display: grid;
    gap: 18px;
    min-height: auto;
  }

  .section {
    padding: 82px 0;
  }

  .contact-panel {
    padding: 26px;
  }

  .booking-form-panel,
  .booking-summary-card,
  .booking-side-card {
    padding: 24px;
  }

  .booking-form-grid {
    grid-template-columns: 1fr;
  }

  .booking-step {
    padding: 18px;
  }

  .booking-step-grid {
    grid-template-columns: 1fr;
  }

  .booking-progress {
    border-radius: 22px;
  }

  .booking-progress span {
    min-height: 38px;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .booking-step-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .booking-step-actions .button {
    width: 100%;
    margin-left: 0;
  }

  .booking-treatment-grid {
    grid-template-columns: 1fr;
  }

  .booking-duration-grid {
    grid-template-columns: 1fr;
  }

  .booking-duration-grid.is-collapsed {
    grid-template-columns: 1fr;
  }

  .booking-form-actions {
    flex-direction: column;
  }

  .booking-form-actions .button:first-child {
    flex: none;
  }

  .booking-form-actions .button[type="submit"] {
    flex: none;
  }

  .booking-form-actions .button,
  .booking-form-actions .button-ghost {
    width: 100%;
  }

  .treatments-hero {
    padding: 104px 0 42px;
  }

  .treatments-hero-copy,
  .hours-card,
  .address-card,
  .sidebar-panel,
  .menu-item,
  .additions-panel,
  .booking-band {
    padding: 24px;
  }

  .menu-item-header {
    grid-template-columns: 1fr;
  }

  .menu-item {
    gap: 18px;
  }
}

@media (max-width: 460px) {
  .hero-card-actions {
    grid-template-columns: 1fr;
  }

  .hero-card-actions a {
    justify-content: flex-start;
    padding-inline: 16px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button {
    transition: none;
  }

  .site-nav .nav-book-link::before {
    animation: none;
  }
}
