/* ===== Design tokens ===== */
:root {
  --cream-light: #F3E6D8;
  --cream-dark: #EAD7C4;
  --surface: #FBF5EE;
  --brown-dark: #3F2C1F;
  --brown: #4A3324;
  --brown-secondary: #6B4E39;
  --text-on-dark: #E8D8C6;
  --gold: #A47C4F;
  --gold-light: #C9A66B;
  --muted: #8A7A6C;
  --accent: #A9855A;
  --available: #8FA97C;

  --font-serif: 'Bodoni Moda', serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Jost', sans-serif;

  --shadow-card: 0 16px 34px -20px rgba(74,51,36,.35);
  --shadow-card-lg: 0 18px 40px -18px rgba(74,51,36,.35);
  --shadow-btn-dark: 0 14px 26px -12px rgba(63,44,31,.55);
  --shadow-hero-cta: 0 18px 30px -16px rgba(63,44,31,.7);
  --shadow-bar: 0 -12px 30px -18px rgba(74,51,36,.5);
}

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

[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: #EAD7C4;
  background: radial-gradient(120% 80% at 50% 0%, var(--cream-light) 0%, var(--cream-dark) 100%);
  font-family: var(--font-body), sans-serif;
  color: var(--brown-dark);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--brown-secondary); }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.page {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

/* ===== Splash ===== */
.splash {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: radial-gradient(120% 80% at 50% 30%, #F7EDE1 0%, #EAD7C4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: vpSplash 1.9s ease forwards;
  pointer-events: none;
}
.splash__logo {
  width: 62%;
  max-width: 260px;
  height: auto;
  mix-blend-mode: multiply;
  animation: vpSplashLogo 1.9s ease forwards;
}
@keyframes vpSplash { 0%, 55% { opacity: 1; visibility: visible; } 100% { opacity: 0; visibility: hidden; } }
@keyframes vpSplashLogo { 0% { opacity: 0; transform: scale(.94); } 45% { opacity: 1; transform: scale(1); } 100% { opacity: 1; transform: scale(1); } }
@keyframes vpFlow { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }

/* ===== Reveal on scroll ===== */
.section, .footer {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s cubic-bezier(.22,.7,.3,1), transform .75s cubic-bezier(.22,.7,.3,1);
}
.section.is-visible, .footer.is-visible { opacity: 1; transform: none; }

/* ===== Hero ===== */
.hero {
  position: relative;
  container-type: inline-size;
  width: 100%;
  aspect-ratio: 853 / 1844;
  background-image: url('../assets/hero-bg2.png');
  background-size: cover;
  background-position: center top;
  display: flex;
  flex-direction: column;
  padding: 3.2% 3.8%;
}
.hero__badges { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.badge { display: flex; align-items: center; gap: 5px; border-radius: 999px; padding: 2.1cqw 3.6cqw; font-size: 3.3cqw; font-weight: 500; }
.badge__icon { width: 3.6cqw; height: 3.6cqw; }
.badge--light { background: var(--surface); border: 1px solid rgba(164,124,79,.45); color: var(--brown); box-shadow: 0 6px 16px -10px rgba(74,51,36,.5); }
.badge--dark { background: var(--brown); border: 1px solid rgba(201,166,107,.5); color: var(--surface); font-weight: 400; box-shadow: 0 6px 16px -10px rgba(63,44,31,.7); }
.badge--dark .badge__icon { width: 3.8cqw; height: 3.8cqw; }

.hero__logo-row { display: flex; justify-content: center; margin-top: 1cqw; }
.hero__logo { width: 42cqw; height: auto; mix-blend-mode: multiply; }

.hero__title {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 24cqw;
  line-height: .88;
  letter-spacing: -.005em;
  color: var(--brown);
  margin: .6cqw 0 0;
  text-align: center;
  transform: scaleY(1.44);
  transform-origin: top center;
}

.hero__pets {
  position: absolute;
  left: -6.7%;
  bottom: 4%;
  width: 113.4%;
  max-width: none;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, #000 78%, rgba(0,0,0,.55) 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 78%, rgba(0,0,0,.55) 90%, transparent 100%);
}

.hero__text-block { margin-top: 13cqw; }
.hero__tagline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 4.9cqw;
  line-height: 1.22;
  color: var(--brown);
  letter-spacing: .01em;
}
.hero__divider { display: flex; align-items: center; gap: 1.6cqw; width: 34cqw; margin: 3cqw 0; }
.hero__divider-line { flex: 1; height: 1px; background: rgba(164,124,79,.5); }
.hero__divider-heart { width: 2.8cqw; height: 2.8cqw; }
.hero__lead { margin: 0; width: 30cqw; font-size: 2.8cqw; line-height: 1.5; color: #5C4230; font-weight: 400; }
.hero__lead strong { color: var(--accent); font-weight: 600; }

.hero__spacer { flex: 1; }

.hero__perks {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(164,124,79,.22);
  border-radius: 4.5cqw;
  padding: 4.4cqw 1.2cqw;
  display: grid;
  grid-template-columns: .82fr .97fr 1fr 1.21fr;
  grid-template-rows: repeat(3, auto);
  box-shadow: 0 18px 40px -22px rgba(74,51,36,.5);
  background-color: #FBF5EECC;
}
.hero__perk {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  justify-items: center;
  text-align: center;
  gap: 1.6cqw;
  padding: 0 .5cqw;
  border-left: 1px solid rgba(164,124,79,.22);
}
.hero__perk:first-child { border-left: none; }
.hero__perk-icon { width: 5.6cqw; height: 5.6cqw; }
.hero__perk-title { font-family: var(--font-body); font-weight: 600; font-size: 3.1cqw; line-height: 1.25; color: var(--brown-dark); }
.hero__perk-desc { font-size: 2.7cqw; line-height: 1.3; color: var(--muted); }

.hero__cta {
  position: relative;
  z-index: 2;
  animation: vpFlow 6s linear infinite;
  margin-top: 3.4cqw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3cqw;
  background: linear-gradient(100deg, #4A3324 0%, #3F2C1F 22%, #7A5A3C 42%, #A8865A 50%, #7A5A3C 58%, #3F2C1F 78%, #4A3324 100%);
  background-size: 200% 100%;
  border: 1px solid rgba(201,166,107,.65);
  border-radius: 999px;
  padding: 4.2cqw 5cqw;
  color: var(--surface);
  font-size: 4.6cqw;
  font-weight: 500;
  box-shadow: var(--shadow-hero-cta);
  transition: transform .18s ease, box-shadow .18s ease;
}
.hero__cta:hover { transform: translateY(-2px); box-shadow: 0 22px 34px -16px rgba(63,44,31,.75); color: var(--surface); }
.hero__cta-icon { width: 5.2cqw; height: 5.2cqw; }

.hero__footer-row { display: flex; align-items: center; justify-content: center; gap: 3.4cqw; margin-top: 2.8cqw; font-size: 3cqw; color: var(--brown-secondary); }
.hero__footer-item { display: flex; align-items: center; gap: 1.4cqw; }
.hero__footer-icon { width: 3.6cqw; height: 3.6cqw; }
.hero__footer-sep { width: 1px; height: 3.4cqw; background: rgba(164,124,79,.5); }

/* ===== Shared section elements ===== */
.section { padding: 44px 16px 12px; }
.section--bleed { padding-left: 0; padding-right: 0; }
.section--bleed .eyebrow, .section--bleed .section__title, .section--bleed .section__subtitle { padding-left: 16px; padding-right: 16px; }

.eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: var(--gold); letter-spacing: .28em; font-size: 11px; font-weight: 500;
  margin-bottom: 10px; text-transform: uppercase;
}
.eyebrow__line { width: 18px; height: 1px; background: var(--gold-light); }

.section__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  text-align: center;
  color: var(--brown-dark);
  font-size: 32px;
  line-height: 1.15;
  margin: 0 0 10px;
}
.section__subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.55;
  margin: 0 0 22px;
  text-wrap: pretty;
}
.section__subtitle--narrow { padding: 0 26px; }

.card {
  background: var(--surface);
  border: 1px solid rgba(164,124,79,.22);
  border-radius: 26px;
  box-shadow: var(--shadow-card);
}

.divider { display: flex; align-items: center; gap: 10px; margin: 22px 0 18px; }
.divider__line { flex: 1; height: 1px; background: rgba(164,124,79,.3); }
.divider svg { width: 14px; height: 14px; flex: none; }

.btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 999px; font-weight: 500; cursor: pointer; border: none;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease, border-color .18s ease;
  text-decoration: none;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--dark {
  width: 100%;
  background: linear-gradient(180deg, #5C4230, #3F2C1F);
  color: var(--surface);
  border: 1px solid var(--gold-light);
  padding: 15px 20px;
  font-size: 15px;
  box-shadow: var(--shadow-btn-dark);
}
.btn--dark:hover { transform: translateY(-2px); box-shadow: 0 18px 30px -12px rgba(63,44,31,.62); filter: brightness(1.08); color: var(--surface); }
.btn--light {
  background: var(--cream-light);
  color: var(--brown);
  border: 1px solid rgba(164,124,79,.4);
  padding: 13px 14px;
  font-size: 14px;
}
.btn--light svg { stroke: var(--brown-secondary); width: 17px; height: 17px; }
.btn--light:hover { background: #fff; border-color: var(--gold); transform: translateY(-2px); color: var(--brown); }

/* ===== Calculator ===== */
.calc-steps { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; }
.calc-steps__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cream-dark); border: 1px solid var(--gold-light); transition: all .2s ease; }
.calc-steps__dot--active { height: 7px; border-radius: 5px; background: var(--gold); width: 20px; }

.calc-card { padding: 22px 18px; box-shadow: var(--shadow-card-lg); }

.calc-step__title {
  font-family: var(--font-heading); font-weight: 600; letter-spacing: .03em; color: var(--brown);
  font-size: 13.5px; text-transform: uppercase; margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.calc-step__num {
  width: 22px; height: 22px; border-radius: 50%; background: var(--brown); color: var(--surface);
  display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-body); font-size: 12px; flex: 0 0 auto;
}

.calc-picks { display: flex; flex-direction: column; gap: 12px; }
.calc-pick {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: var(--cream-light);
  border: 1.5px solid transparent; border-radius: 16px; cursor: pointer; transition: border-color .18s ease, background .18s ease;
}
.calc-pick:hover { border-color: var(--gold); background: #fff; }
.calc-pick__img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; flex: none; }
.calc-pick__title { display: block; color: var(--brown-dark); font-size: 15.5px; font-weight: 500; margin-bottom: 2px; }
.calc-pick__desc { color: var(--muted); font-size: 12.5px; font-weight: 300; }

.calc-back { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 13px; cursor: pointer; margin-bottom: 16px; }
.calc-back__icon { width: 14px; height: 14px; }

.calc-label { display: block; font-size: 12.5px; color: var(--brown-secondary); font-weight: 500; letter-spacing: .03em; margin-bottom: 7px; }

.calc-dropdown {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%;
  background: var(--cream-light); border: 1.5px solid var(--gold-light); border-radius: 16px; padding: 13px 18px;
  font-size: 15px; color: var(--brown-dark); cursor: pointer; transition: background .18s ease;
}
.calc-dropdown:hover { background: #fff; }
.calc-dropdown__chevron { width: 14px; height: 14px; flex: none; transition: transform .18s ease; }
.calc-dropdown.is-open .calc-dropdown__chevron { transform: rotate(180deg); }

.calc-dropdown-panel {
  margin-top: 8px; max-height: 264px; overflow-y: auto; background: var(--surface);
  border: 1.5px solid rgba(164,124,79,.35); border-radius: 16px; box-shadow: 0 18px 34px -20px rgba(74,51,36,.45);
  display: flex; flex-direction: column;
}
.calc-dropdown-panel__row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px;
  border-bottom: 1px solid rgba(164,124,79,.14); font-size: 14.5px; color: var(--brown-dark); cursor: pointer; transition: background .15s ease;
}
.calc-dropdown-panel__row:last-child { border-bottom: none; }
.calc-dropdown-panel__row:hover { background: var(--cream-light); }
.calc-dropdown-panel__row span:last-child { color: var(--gold); font-size: 12.5px; font-weight: 500; white-space: nowrap; }

.calc-options { display: flex; flex-direction: column; gap: 10px; }
.calc-option {
  display: flex; justify-content: space-between; align-items: center; padding: 13px 16px; background: var(--cream-light);
  border: 1.5px solid transparent; border-radius: 16px; cursor: pointer; color: var(--brown-dark); font-size: 14.5px;
  transition: border-color .18s ease, background .18s ease;
}
.calc-option:hover { border-color: var(--gold); background: #fff; }
.calc-option span:last-child { color: var(--gold); font-size: 13px; font-weight: 500; white-space: nowrap; margin-left: 10px; }

.calc-result { text-align: center; padding: 18px 6px 6px; }
.calc-result__icon { width: 34px; height: 34px; margin-bottom: 10px; }
.calc-result__label { color: var(--muted); font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.calc-result__price { font-family: var(--font-serif); font-weight: 700; color: var(--brown-dark); font-size: 40px; line-height: 1; margin-bottom: 6px; }
.calc-result__currency { font-family: var(--font-body); font-size: 16px; color: var(--gold); font-weight: 500; margin-left: 5px; }
.calc-result__option { color: var(--brown-secondary); font-size: 13.5px; margin-bottom: 18px; }

.calc-form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.calc-form__title { font-family: var(--font-heading); font-weight: 600; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--brown); }
.calc-field { display: flex; flex-direction: column; gap: 6px; }
.calc-field label { font-size: 12px; color: var(--brown-secondary); font-weight: 500; letter-spacing: .03em; }
.calc-field input {
  width: 100%; background: var(--cream-light); border: 1.5px solid rgba(164,124,79,.4); border-radius: 14px;
  padding: 12px 14px; font-family: var(--font-body); font-size: 14.5px; color: var(--brown-dark); outline: none;
  transition: border-color .18s ease, background .18s ease;
}
.calc-field input:focus { border-color: var(--gold); background: #fff; }
.calc-field input.is-invalid { border-color: #C0654F; }

.calendar { background: var(--cream-light); border: 1.5px solid rgba(164,124,79,.4); border-radius: 18px; padding: 14px 12px; }
.calendar__head { display: flex; align-items: center; justify-content: space-between; padding: 0 4px 10px; }
.calendar__nav {
  width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; background: transparent; border: none; padding: 0; transition: background .18s ease;
}
.calendar__nav:hover { background: #fff; }
.calendar__nav svg { width: 14px; height: 14px; }
.calendar__nav:disabled { opacity: .35; cursor: default; }
.calendar__nav:disabled:hover { background: transparent; }
.calendar__month { font-family: var(--font-heading); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--brown); }
.calendar__weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; text-align: center; font-size: 10.5px; color: var(--muted); padding-bottom: 6px; }
.calendar__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.calendar__cell {
  aspect-ratio: 1; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; font-size: 13px; background: transparent; border: 1px solid transparent; color: var(--brown-dark);
  cursor: pointer; transition: background .15s ease, border-color .15s ease;
}
.calendar__cell.is-empty { visibility: hidden; cursor: default; }
.calendar__cell.is-past { color: rgba(138,122,108,.55); text-decoration: line-through; border-color: rgba(164,124,79,.15); cursor: default; }
.calendar__cell.is-past .calendar__cell-dot { background: transparent; }
.calendar__cell:not(.is-past):not(.is-empty) { border-color: rgba(164,124,79,.28); }
.calendar__cell.is-selected { background: var(--surface); border-color: var(--gold); }
.calendar__cell-dot { width: 10px; height: 3px; border-radius: 2px; background: var(--available); }
.calendar__cell-dot--busy { background: var(--gold-light); }

.calendar__slots { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 10px 0 2px; }
.calendar__slots::-webkit-scrollbar { display: none; }
.calendar__slot {
  flex: none; padding: 10px 16px; border-radius: 999px; font-size: 13.5px; cursor: pointer;
  background: var(--cream-light); color: var(--brown); border: 1px solid rgba(164,124,79,.4); transition: all .15s ease;
}
.calendar__slot.is-selected { background: var(--brown); color: var(--surface); border-color: var(--brown); }

.calc-consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; cursor: pointer; }
.calc-consent input[type="checkbox"] { width: 18px; height: 18px; flex: none; margin-top: 1px; accent-color: var(--brown); cursor: pointer; }
.calc-consent span { font-size: 12.5px; color: var(--brown-secondary); line-height: 1.5; }
.calc-consent a { color: var(--gold); text-decoration: underline; }
.calc-consent a:hover { color: var(--brown-secondary); }
.calc-consent.is-invalid span { color: #C0654F; }

.calc-submit { font-size: 15.5px; }
.calc-submit:disabled { opacity: .7; cursor: default; }
.calc-error { margin: 12px 0 0; text-align: center; color: #C0654F; font-size: 12.5px; line-height: 1.5; }
.calc-error a { color: #C0654F; text-decoration: underline; }
.calc-restart { text-align: center; margin-top: 14px; color: var(--gold); font-size: 12.5px; text-decoration: underline; cursor: pointer; }

.calc-success { text-align: center; padding: 12px 6px 6px; }
.calc-success__icon { width: 40px; height: 40px; margin-bottom: 10px; }
.calc-success__title { font-family: var(--font-serif); font-weight: 700; font-size: 22px; color: var(--brown-dark); margin-bottom: 8px; }
.calc-success__text { color: var(--brown-secondary); font-size: 13.5px; line-height: 1.6; margin: 0; }

/* ===== Services ===== */
.services-list { display: flex; flex-direction: column; gap: 14px; }
.service-card { padding: 20px; display: flex; gap: 14px; }
.service-card__icon { width: 48px; height: 48px; border-radius: 50%; background: var(--brown); display: flex; align-items: center; justify-content: center; flex: none; }
.service-card__icon svg { width: 24px; height: 24px; }
.service-card__body { flex: 1; min-width: 0; }
.service-card__body h3 { font-family: var(--font-heading); font-weight: 600; color: var(--brown-dark); font-size: 16px; margin: 2px 0 6px; }
.service-card__body p { color: var(--muted); font-size: 13px; font-weight: 300; line-height: 1.5; margin: 0 0 10px; }
.service-card__row { display: flex; align-items: center; justify-content: space-between; }
.service-card__price { color: var(--gold); font-weight: 500; font-size: 14px; }
.service-card__link { color: var(--brown-secondary); font-size: 12px; font-weight: 500; border-bottom: 1px solid var(--gold-light); transition: color .18s ease, border-color .18s ease; }
.service-card__link:hover { color: var(--gold); border-color: var(--gold); }

.checklist-card { padding: 22px 20px; }
.checklist-card h4 { font-family: var(--font-heading); font-weight: 600; color: var(--brown-dark); font-size: 14px; letter-spacing: .03em; text-transform: uppercase; margin: 0 0 14px; }
.checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; color: var(--brown-secondary); font-size: 13.5px; font-weight: 300; line-height: 1.45; }
.checklist li svg { width: 16px; height: 16px; flex: none; margin-top: 2px; }

/* ===== About ===== */
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.stat-card { padding: 18px 16px; text-align: center; }
.stat-card__num { font-family: var(--font-serif); font-weight: 700; font-size: 34px; color: var(--brown); line-height: 1; }
.stat-card__label { font-family: var(--font-heading); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--brown-secondary); margin-top: 6px; }

.about-points { padding: 22px 20px; display: flex; flex-direction: column; gap: 16px; }
.about-point { display: flex; gap: 14px; }
.about-point svg { width: 22px; height: 22px; flex: none; margin-top: 2px; }
.about-point h3 { font-family: var(--font-heading); font-weight: 600; font-size: 15px; color: var(--brown-dark); margin: 0 0 5px; }
.about-point p { margin: 0; color: var(--muted); font-size: 13px; font-weight: 300; line-height: 1.5; }

/* ===== Process ===== */
.process-list { display: flex; flex-direction: column; gap: 10px; }
.process-card { padding: 16px 18px; display: flex; gap: 14px; align-items: flex-start; }
.process-card__num { font-family: var(--font-serif); font-weight: 700; font-size: 22px; color: var(--gold-light); line-height: 1; width: 26px; flex: none; }
.process-card h3 { font-family: var(--font-heading); font-weight: 600; font-size: 14.5px; color: var(--brown-dark); margin: 0 0 4px; }
.process-card p { margin: 0; color: var(--muted); font-size: 13px; font-weight: 300; line-height: 1.5; }

/* ===== Gallery ===== */
.gallery-list { display: flex; flex-direction: column; gap: 14px; }
.gallery-card { padding: 12px; }
.gallery-card__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.gallery-placeholder {
  aspect-ratio: 3/4; border-radius: 14px; background: repeating-linear-gradient(135deg, var(--cream-light) 0 8px, var(--cream-dark) 8px 16px);
  display: flex; align-items: flex-end; padding: 10px;
}
.gallery-placeholder span { font-family: ui-monospace, monospace; font-size: 10px; color: var(--muted); }
.gallery-card__row { display: flex; align-items: center; justify-content: space-between; padding: 12px 6px 4px; }
.gallery-card__name { font-family: var(--font-heading); font-size: 13px; color: var(--brown-dark); }
.gallery-card__price { font-size: 12px; color: var(--gold); }
.gallery-note { text-align: center; color: var(--muted); font-size: 11.5px; margin: 14px 0 0; font-family: ui-monospace, monospace; }

/* ===== Reviews ===== */
.reviews-track { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 4px 12% 8px; }
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 76%; scroll-snap-align: center; position: relative; border-radius: 24px; overflow: hidden;
  background: repeating-linear-gradient(135deg, #EFE1D2 0 10px, #E4D2BE 10px 20px); aspect-ratio: 9/16;
  box-shadow: 0 20px 40px -22px rgba(74,51,36,.5);
}
.review-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.review-card__label { position: absolute; top: 14px; left: 14px; font-family: ui-monospace, monospace; font-size: 10px; color: var(--muted); }
.review-card__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 58px; height: 58px; border-radius: 50%;
  background: rgba(63,44,31,.72); display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.review-card__play svg { width: 20px; height: 20px; margin-left: 3px; }
.review-card__info { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 16px 18px; background: linear-gradient(180deg, rgba(45,31,21,0), rgba(45,31,21,.88) 38%); }
.review-card__name { font-family: var(--font-heading); font-weight: 600; font-size: 15px; color: var(--surface); }
.review-card__pet { font-size: 12px; color: rgba(232,216,198,.75); margin-top: 2px; }
.review-card__quote { margin: 10px 0 0; font-size: 13px; line-height: 1.5; color: #F1E4D5; }

.reviews-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 14px; }
.reviews-arrow {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(164,124,79,.45); background: transparent;
  display: flex; align-items: center; justify-content: center; cursor: pointer; padding: 0; transition: background .18s ease;
}
.reviews-arrow:hover { background: var(--surface); }
.reviews-arrow svg { width: 18px; height: 18px; }
.reviews-dots { display: flex; gap: 7px; }
.reviews-dots__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(164,124,79,.3); transition: background .2s ease; }
.reviews-dots__dot--active { background: var(--gold); }

.reviews-cta { margin: 22px 16px 0; padding: 14px 16px; display: flex; align-items: center; gap: 14px; box-shadow: 0 16px 34px -22px rgba(74,51,36,.4); }
.reviews-cta__icon { width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(164,124,79,.45); display: flex; align-items: center; justify-content: center; flex: none; }
.reviews-cta__icon svg { width: 22px; height: 22px; }
.reviews-cta__body { flex: 1; min-width: 0; }
.reviews-cta__title { font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: var(--brown-dark); }
.reviews-cta__text { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.reviews-cta__btn {
  display: flex; align-items: center; gap: 8px; background: linear-gradient(180deg, #B08B57, #A47C4F); color: var(--surface);
  border-radius: 999px; padding: 11px 16px; font-size: 13.5px; font-weight: 500; white-space: nowrap; transition: transform .18s ease, filter .18s ease;
}
.reviews-cta__btn svg { width: 15px; height: 15px; }
.reviews-cta__btn:hover { transform: translateY(-2px); filter: brightness(1.07); color: var(--surface); }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--surface); border: 1px solid rgba(164,124,79,.22); border-radius: 18px; padding: 16px 18px; cursor: pointer; }
.faq-item__q { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.faq-item__q span:first-child { font-family: var(--font-heading); font-weight: 500; font-size: 14.5px; color: var(--brown-dark); line-height: 1.35; }
.faq-item__sign { color: var(--gold); font-size: 18px; line-height: 1; flex: none; }
.faq-item__a { margin: 10px 0 0; color: var(--muted); font-size: 13px; font-weight: 300; line-height: 1.55; display: none; }
.faq-item.is-open .faq-item__a { display: block; }

/* ===== Contacts ===== */
.contacts-card { padding: 12px 12px 20px; }
.salon-track { display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin-bottom: 14px; border-radius: 18px; }
.salon-track::-webkit-scrollbar { display: none; }
.salon-track img { flex: 0 0 100%; scroll-snap-align: center; width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 18px; }
.salon-dots { display: flex; justify-content: center; gap: 7px; margin-bottom: 16px; }
.salon-dots__dot { width: 6px; height: 6px; border-radius: 3px; background: rgba(164,124,79,.35); cursor: pointer; transition: all .25s ease; }
.salon-dots__dot--active { width: 20px; background: var(--gold); }

.contacts-info { display: flex; flex-direction: column; gap: 14px; padding: 0 6px; }
.contacts-info__row { display: flex; gap: 12px; align-items: flex-start; }
.contacts-info__row svg { width: 19px; height: 19px; flex: none; margin-top: 1px; }
.contacts-info__title { font-size: 14.5px; color: var(--brown-dark); }
.contacts-info__desc { font-size: 12.5px; color: var(--muted); }

.contacts-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; padding: 0 6px; }
.or-divider { display: flex; align-items: center; gap: 12px; margin: 2px 0; font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.or-divider span { flex: 1; height: 1px; background: rgba(164,124,79,.3); }
.contacts-pills { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.contacts-note { text-align: center; font-size: 11px; color: var(--muted); font-family: ui-monospace, monospace; margin: 4px 0 0; }

/* ===== Footer ===== */
.footer { margin-top: 44px; background: linear-gradient(180deg, #4A3324, #33241A); padding: 0 0 84px; color: var(--text-on-dark); }
.footer__logo-wrap { display: flex; justify-content: center; padding: 26px 20px 0; }
.footer__logo-plate { background: var(--surface); border: 1px solid rgba(201,166,107,.45); border-radius: 20px; padding: 14px 22px; }
.footer__logo-plate img { height: 74px; width: auto; mix-blend-mode: multiply; }

.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 26px 22px 22px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col-title { font-family: var(--font-heading); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); }
.footer__contact-row { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; color: var(--text-on-dark); }
.footer__contact-row svg { width: 15px; height: 15px; flex: none; margin-top: 2px; }
.footer__contact-row--link:hover { color: var(--gold-light); }
.footer__col a { color: var(--text-on-dark); font-size: 13.5px; }
.footer__col a:hover { color: var(--gold-light); }

.footer__divider { display: flex; align-items: center; gap: 12px; padding: 0 22px; }
.footer__divider span { flex: 1; height: 1px; background: rgba(201,166,107,.28); }
.footer__divider svg { width: 12px; height: 12px; }

.footer__social { display: flex; justify-content: center; gap: 12px; padding: 20px 22px 0; }
.footer__social-icon { width: 44px; height: 44px; border-radius: 14px; border: 1px solid rgba(201,166,107,.35); display: flex; align-items: center; justify-content: center; transition: transform .18s ease, border-color .18s ease; }
.footer__social-icon:hover { transform: translateY(-2px); border-color: rgba(201,166,107,.7); }
.footer__social-icon svg { width: 19px; height: 19px; }
.footer__social-icon--instagram { background: rgba(214,110,140,.10); }
.footer__social-icon--telegram { background: rgba(64,150,199,.10); }
.footer__social-icon--facebook { background: rgba(66,103,178,.10); }

.footer__slogan { text-align: center; font-size: 12.5px; color: rgba(232,216,198,.75); line-height: 1.6; padding: 22px 22px 0; }
.footer__legal { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 16px; font-size: 12px; }
.footer__legal a { color: rgba(232,216,198,.8); border-bottom: 1px solid rgba(201,166,107,.4); }
.footer__legal span { width: 1px; height: 11px; background: rgba(201,166,107,.35); }
.footer__copy { text-align: center; font-size: 11px; color: rgba(232,216,198,.42); margin-top: 14px; }

/* ===== Sticky bar ===== */
.sticky-bar {
  position: fixed; left: 50%; bottom: 0;
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
  width: 100%; max-width: 430px; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 10px 14px;
  background: rgba(243,230,216,.62);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(164,124,79,.22);
  box-shadow: var(--shadow-bar);
}
.sticky-bar.is-visible { transform: translateX(-50%) translateY(0%); opacity: 1; }
.sticky-bar__brand { font-family: var(--font-serif); font-weight: 600; font-size: 15px; letter-spacing: .16em; color: var(--brown); }
.sticky-bar__nav { display: flex; align-items: center; gap: 14px; font-size: 12.5px; color: var(--brown-secondary); }
.sticky-bar__nav a { color: var(--brown-secondary); }
.sticky-bar__cta { display: flex; align-items: center; gap: 6px; background: linear-gradient(180deg, #5C4230, #3F2C1F); border: 1px solid rgba(201,166,107,.6); color: var(--surface); border-radius: 999px; padding: 8px 14px; font-size: 12.5px; font-weight: 500; white-space: nowrap; }

/* ===== Legal pages ===== */
.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 16px 0;
}
.legal-header__logo img { height: 40px; width: auto; mix-blend-mode: multiply; }
.legal-header__back {
  display: flex; align-items: center; gap: 6px;
  color: var(--brown-secondary); font-size: 13px; font-weight: 500;
}
.legal-header__back svg { width: 14px; height: 14px; }
.legal-header__back:hover { color: var(--gold); }

.legal-updated { text-align: center; color: var(--muted); font-size: 12.5px; margin: 0 0 22px; }

.legal-card { padding: 24px 20px 28px; }
.legal-card h2 {
  font-family: var(--font-heading); font-weight: 600; font-size: 15px; color: var(--brown-dark);
  letter-spacing: .02em; margin: 26px 0 10px;
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card p { color: var(--brown-secondary); font-size: 14px; font-weight: 300; line-height: 1.65; margin: 0 0 12px; }
.legal-card ul { margin: 0 0 12px; padding-left: 20px; display: flex; flex-direction: column; gap: 6px; }
.legal-card li { color: var(--brown-secondary); font-size: 14px; font-weight: 300; line-height: 1.6; }
.legal-card strong { color: var(--brown-dark); font-weight: 600; }
.legal-card a { color: var(--gold); text-decoration: underline; }
.legal-card a:hover { color: var(--brown-secondary); }

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  .splash, .splash__logo, .hero__cta, .section, .footer, .sticky-bar { animation: none !important; transition: none !important; }
  .section, .footer { opacity: 1; transform: none; }
}
