:root {
  --bg: #f6efe8;
  --bg-alt: #efe3d7;
  --surface: rgba(255, 251, 247, 0.88);
  --surface-strong: #fffaf6;
  --surface-soft: rgba(249, 241, 233, 0.9);
  --text: #2d241f;
  --muted: #6f625b;
  --accent: #bb8d5b;
  --accent-strong: #8a6138;
  --accent-soft: #ead7c2;
  --line: rgba(79, 57, 44, 0.12);
  --shadow-soft: 0 18px 48px rgba(52, 35, 24, 0.08);
  --shadow-strong: 0 28px 60px rgba(52, 35, 24, 0.14);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1180px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(231, 196, 156, 0.24), transparent 30%),
    radial-gradient(circle at bottom left, rgba(212, 182, 154, 0.18), transparent 32%),
    linear-gradient(180deg, #faf5ef 0%, var(--bg) 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(10px);
}

body::before {
  top: -10rem;
  right: -8rem;
  background: radial-gradient(circle, rgba(249, 217, 184, 0.5), rgba(249, 217, 184, 0) 68%);
}

body::after {
  bottom: -12rem;
  left: -10rem;
  background: radial-gradient(circle, rgba(206, 179, 153, 0.26), rgba(206, 179, 153, 0) 68%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  padding: 0;
}

::selection {
  background: rgba(187, 141, 91, 0.24);
  color: var(--text);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transform: translateY(-200%);
  transition: transform 0.25s ease;
}

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

.page-shell {
  position: relative;
}

.section {
  width: min(var(--container), calc(100% - 1.25rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 6rem) 0;
}

.section--muted {
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.9), rgba(246, 235, 225, 0.92));
  border: 1px solid rgba(92, 66, 48, 0.08);
  border-radius: 36px;
  box-shadow: var(--shadow-soft);
  padding-inline: clamp(1rem, 2vw, 1.5rem);
}

.section-heading {
  display: grid;
  gap: 0.55rem;
  max-width: 760px;
  margin-bottom: 1.8rem;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.section-heading p {
  margin: 0;
  max-width: 64ch;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(187, 141, 91, 0.12);
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow--small {
  padding: 0.25rem 0.6rem;
  font-size: 0.68rem;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand span {
  color: var(--accent-strong);
}

.site-header {
  position: sticky;
  top: 0.75rem;
  z-index: 50;
  width: min(var(--container), calc(100% - 1rem));
  margin: 0.75rem auto 0;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 251, 247, 0.82);
  border: 1px solid rgba(79, 57, 44, 0.1);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.site-nav {
  display: none;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(187, 141, 91, 0.12);
  color: var(--accent-strong);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(79, 57, 44, 0.12);
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(187, 141, 91, 0.35);
  box-shadow: 0 10px 28px rgba(52, 35, 24, 0.08);
}

.nav-toggle__icon {
  position: relative;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: background-color 0.25s ease;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, top 0.25s ease, bottom 0.25s ease, opacity 0.25s ease;
}

.nav-toggle__icon::before {
  top: -6px;
}

.nav-toggle__icon::after {
  bottom: -6px;
}

.site-header[data-open="true"] {
  border-radius: 28px;
}

.site-header[data-open="true"] .site-nav {
  display: flex;
  width: 100%;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(79, 57, 44, 0.1);
}

.site-header[data-open="true"] .nav-toggle__icon {
  background: transparent;
}

.site-header[data-open="true"] .nav-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header[data-open="true"] .nav-toggle__icon::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.header-actions {
  display: none;
}

.hero {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-top: 2rem;
}

.hero__copy {
  display: grid;
  gap: 1.15rem;
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-family: var(--font-serif);
  font-size: clamp(3.1rem, 10vw, 6.7rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.hero__lead {
  max-width: 62ch;
  margin: 0;
  font-size: 1.03rem;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin: 0.3rem 0 0;
  padding: 0;
}

.hero__trust li {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 251, 247, 0.72);
  border: 1px solid rgba(79, 57, 44, 0.1);
  color: var(--muted);
  font-weight: 700;
}

.hero__info-grid {
  display: grid;
  gap: 0.85rem;
}

.info-card {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 251, 247, 0.72);
  border: 1px solid rgba(79, 57, 44, 0.1);
  box-shadow: var(--shadow-soft);
}

.info-card__label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.info-card strong {
  font-size: 1rem;
}

.hero__visual {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  grid-template-areas:
    "large"
    "small"
    "float";
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(79, 57, 44, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 234, 225, 0.9));
  box-shadow: var(--shadow-strong);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-card--large {
  grid-area: large;
  min-height: 23rem;
}

.hero-card--small {
  grid-area: small;
  min-height: 14rem;
}

.hero-card--floating {
  grid-area: float;
  padding: 1.2rem;
  display: grid;
  gap: 0.45rem;
  background: rgba(255, 250, 246, 0.82);
  backdrop-filter: blur(20px);
}

.floating-kicker {
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card--floating strong {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  line-height: 0.95;
}

.hero-card--floating p {
  margin: 0;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.92rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
  white-space: nowrap;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: #241915;
  background: linear-gradient(135deg, #c8a26f 0%, #edd6b6 100%);
  box-shadow: 0 18px 32px rgba(185, 140, 92, 0.22);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 20px 34px rgba(185, 140, 92, 0.28);
}

.button--secondary,
.button--ghost {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(79, 57, 44, 0.13);
  color: var(--text);
}

.button--secondary:hover,
.button--secondary:focus-visible,
.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(187, 141, 91, 0.32);
}

.button--wide {
  width: 100%;
}

.panel,
.treatment-card,
.price-card,
.reason-card,
.review-card {
  border: 1px solid rgba(79, 57, 44, 0.1);
  background: rgba(255, 251, 247, 0.8);
  box-shadow: var(--shadow-soft);
}

.panel {
  border-radius: 30px;
  padding: 1.2rem;
}

.booking-layout {
  display: grid;
  gap: 1rem;
}

.booking-form {
  padding: 1rem;
}

.booking-grid {
  display: grid;
  gap: 1rem;
}

.step-card {
  padding: 1rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 239, 230, 0.78));
  border: 1px solid rgba(79, 57, 44, 0.08);
  display: grid;
  gap: 1rem;
}

.step-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.step-card__head h3,
.price-card h3,
.reason-card h3,
.review-card strong,
.story-card h2,
.closing-cta h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.step-card__head h3 {
  font-size: 1.6rem;
  line-height: 0.95;
}

.step-card__head p {
  margin: 0.15rem 0 0;
  color: var(--muted);
}

.step-card__number {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #b88758, #e5c79a);
  color: #241915;
  font-weight: 900;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill,
.slot-button,
.quick-link,
.contact-pill {
  border-radius: 999px;
  border: 1px solid rgba(79, 57, 44, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pill {
  padding: 0.72rem 0.95rem;
  font-weight: 800;
  cursor: pointer;
}

.pill:hover,
.pill:focus-visible,
.slot-button:hover,
.slot-button:focus-visible,
.quick-link:hover,
.quick-link:focus-visible,
.contact-pill:hover,
.contact-pill:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(187, 141, 91, 0.34);
  box-shadow: 0 12px 24px rgba(52, 35, 24, 0.08);
}

.pill.is-active {
  background: rgba(187, 141, 91, 0.16);
  border-color: rgba(187, 141, 91, 0.42);
  color: var(--accent-strong);
}

.field-grid {
  display: grid;
  gap: 0.85rem;
}

.field {
  display: grid;
  gap: 0.42rem;
}

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

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(79, 57, 44, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(187, 141, 91, 0.52);
  box-shadow: 0 0 0 4px rgba(187, 141, 91, 0.12);
}

.slot-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.slot-button {
  padding: 0.7rem 0.9rem;
  cursor: pointer;
  font-weight: 700;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.summary {
  display: grid;
  gap: 1rem;
  align-self: start;
}

.summary h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 0.95;
}

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

.summary-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
}

.summary-list div {
  display: grid;
  gap: 0.18rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(79, 57, 44, 0.1);
}

.summary-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.summary-list dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-list dd {
  margin: 0;
  font-weight: 800;
}

.summary-card {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(79, 57, 44, 0.1);
}

.summary-card--soft {
  background: linear-gradient(180deg, rgba(240, 229, 217, 0.86), rgba(255, 255, 255, 0.78));
}

.summary-card__label {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-links,
.contact-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.quick-link,
.contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 0.9rem;
  font-weight: 800;
}

.summary-notes,
.story-list {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.summary-notes li,
.story-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--text);
}

.summary-notes li::before,
.story-list li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.43rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #b88758, #e5c79a);
  box-shadow: 0 0 0 5px rgba(187, 141, 91, 0.12);
  flex: none;
}

.treatments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.treatment-card {
  padding: 1.2rem;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.treatment-card:hover,
.treatment-card:focus-within,
.price-card:hover,
.price-card:focus-within,
.reason-card:hover,
.reason-card:focus-within,
.review-card:hover,
.review-card:focus-within,
.gallery-card:hover,
.gallery-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(187, 141, 91, 0.28);
  box-shadow: var(--shadow-strong);
}

.treatment-card__top {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
}

.treatment-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.95rem;
  height: 2.95rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #b88758, #e5c79a);
  color: #241915;
  font-weight: 900;
  flex: none;
}

.treatment-card__meta h3 {
  margin: 0.15rem 0 0;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  line-height: 0.95;
}

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

.treatment-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(79, 57, 44, 0.1);
  color: var(--muted);
}

.treatment-card__footer strong {
  color: var(--accent-strong);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 800;
  color: var(--accent-strong);
}

.text-link::after {
  content: "→";
  transition: transform 0.25s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(2px);
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.price-card {
  padding: 1.25rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 251, 247, 0.88), rgba(244, 234, 224, 0.88));
}

.price-card h3 {
  margin-top: 0.55rem;
  font-size: 1.8rem;
  line-height: 0.95;
}

.price-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.price-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.15rem 0.8rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(79, 57, 44, 0.1);
}

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

.price-list span {
  font-weight: 700;
}

.price-list strong {
  justify-self: end;
  color: var(--accent-strong);
  font-size: 1.02rem;
}

.price-list em {
  grid-column: 1 / -1;
  font-style: normal;
  color: var(--muted);
  font-size: 0.92rem;
}

.price-note {
  margin: 1rem 0 0;
  color: var(--muted);
  text-align: center;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  grid-auto-flow: dense;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 18rem;
  border-radius: 28px;
  border: 1px solid rgba(79, 57, 44, 0.1);
  box-shadow: var(--shadow-soft);
  background: #d9c7b4;
}

.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.7s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 7, 5, 0.02) 22%, rgba(17, 11, 8, 0.74) 100%);
}

.gallery-card figcaption {
  position: absolute;
  inset: auto 1rem 1rem;
  z-index: 1;
  display: grid;
  gap: 0.25rem;
  color: #fff;
}

.gallery-card span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.86;
}

.gallery-card strong {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  line-height: 0.95;
}

.gallery-card:hover img,
.gallery-card:focus-within img {
  transform: scale(1.08);
}

.about-grid {
  display: grid;
  gap: 1rem;
}

.story-card {
  display: grid;
  gap: 1rem;
}

.story-card h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 0.95;
}

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

.story-side {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.story-side__block {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 251, 247, 0.82), rgba(242, 231, 219, 0.82));
  border: 1px solid rgba(79, 57, 44, 0.1);
}

.story-side__label {
  color: var(--accent-strong);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-side__block strong {
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 0.95;
}

.story-side__stats {
  display: grid;
  gap: 0.85rem;
}

.story-side__stats div {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(79, 57, 44, 0.1);
}

.story-side__stats span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-side__stats strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.05rem;
}

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.reason-card {
  padding: 1.15rem;
  border-radius: 24px;
  display: grid;
  gap: 0.6rem;
}

.reason-card h3 {
  font-size: 1.7rem;
  line-height: 0.95;
}

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

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.review-card {
  padding: 1.2rem;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.review-card__rating {
  width: fit-content;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(187, 141, 91, 0.12);
  color: var(--accent-strong);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.review-card strong {
  font-size: 1.55rem;
}

.review-card span {
  color: var(--accent-strong);
  font-weight: 800;
}

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

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

.contact-info__block p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 0.9rem;
  margin: 0;
}

.contact-details div {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(79, 57, 44, 0.1);
}

.contact-details div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-details dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  font-weight: 800;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--accent-strong);
}

.closing-cta {
  padding-top: 0;
}

.closing-cta__inner {
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(231, 196, 156, 0.34), transparent 34%),
    linear-gradient(135deg, rgba(255, 251, 247, 0.94), rgba(243, 229, 214, 0.96));
  border: 1px solid rgba(79, 57, 44, 0.1);
  box-shadow: var(--shadow-strong);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.closing-cta h2 {
  max-width: 15ch;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.92;
}

.closing-cta p {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
}

.site-footer {
  width: min(var(--container), calc(100% - 1.25rem));
  margin: 0 auto;
  padding: 0 0 7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--muted);
}

.site-footer strong {
  display: block;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 1.6rem;
}

.site-footer p {
  max-width: 40ch;
  margin: 0.35rem 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.site-footer nav a {
  font-weight: 700;
}

.mobile-booking-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 60;
  display: none;
  padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
  background: rgba(255, 250, 246, 0.9);
  border-top: 1px solid rgba(79, 57, 44, 0.1);
  backdrop-filter: blur(18px);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 6.75rem;
  z-index: 80;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  background: rgba(32, 22, 18, 0.94);
  color: #fff;
  box-shadow: 0 18px 40px rgba(32, 22, 18, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

:focus-visible {
  outline: 3px solid rgba(187, 141, 91, 0.42);
  outline-offset: 3px;
}

@media (min-width: 700px) {
  .hero__info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

  .gallery-card--wide {
    grid-column: span 2;
  }
}

@media (min-width: 900px) {
  .site-header {
    align-items: center;
    padding: 1rem 1.15rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
  }

  .header-actions {
    display: flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 2.2rem;
  }

  .booking-layout {
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    align-items: start;
  }

  .summary {
    position: sticky;
    top: 6.75rem;
  }

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

@media (min-width: 1060px) {
  .treatments-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 185px;
  }

  .gallery-card--tall {
    grid-row: span 2;
  }

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

@media (max-width: 899px) {
  .header-actions {
    display: none;
  }

  .site-nav {
    order: 10;
    flex-direction: column;
    width: 100%;
    padding-top: 0.85rem;
  }

  .site-nav a {
    width: 100%;
    padding: 0.7rem 0.95rem;
    background: rgba(255, 255, 255, 0.72);
  }

  .mobile-booking-bar {
    display: flex;
  }

  body {
    padding-bottom: 92px;
  }
}

@media (max-width: 699px) {
  .section {
    width: min(var(--container), calc(100% - 1rem));
  }

  .section--muted {
    border-radius: 28px;
  }

  .site-header {
    width: calc(100% - 0.75rem);
    border-radius: 24px;
  }

  .hero__visual {
    margin-top: 0.25rem;
  }

  .hero-card--large {
    min-height: 22rem;
  }

  .hero-card--small {
    min-height: 13rem;
  }

  .hero-card--floating strong {
    font-size: 1.55rem;
  }

  .review-card strong,
  .story-side__block strong,
  .summary h3 {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
  }

  .gallery-card--wide,
  .gallery-card--tall {
    grid-column: auto;
    grid-row: auto;
  }
}

@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;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
