:root {
  --ink: #241b1b;
  --muted: #755f5f;
  --soft: #fff6f2;
  --cream: #fffaf7;
  --rose: #bd6d70;
  --wine: #6d2f3e;
  --gold: #c99d5b;
  --line: rgba(109, 47, 62, 0.16);
  --shadow: 0 24px 70px rgba(72, 38, 42, 0.18);
  --section-space: clamp(64px, 7vw, 96px);
  --section-space-compact: clamp(42px, 5vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 56px;
  min-height: 100%;
  background: var(--cream);
}

body {
  margin: 0;
  min-height: 100%;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
}

body.modal-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 56px);
  padding-top: max(18px, env(safe-area-inset-top, 0));
  color: #fff;
  background: linear-gradient(180deg, rgba(30, 18, 19, 0.66) 0%, rgba(30, 18, 19, 0.42) 62%, rgba(30, 18, 19, 0.08) 100%);
  box-shadow: 0 10px 26px rgba(20, 10, 12, 0.08);
  backdrop-filter: blur(12px);
}

.brand,
.nav,
.hero-actions,
.hero-stats,
.trust-strip,
.section,
.section-heading,
.steps,
.footer {
  display: flex;
}

.brand {
  align-items: center;
  justify-self: start;
  gap: 10px;
  font-weight: 800;
  transition: opacity 180ms ease, transform 180ms ease;
}

.brand:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.brand-mark {
  display: block;
  width: 42px;
  height: 54px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav {
  align-items: center;
  justify-self: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
}

.burger-button {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.burger-button:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.burger-button span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}

.burger-button span:nth-child(1) {
  top: 14px;
}

.burger-button span:nth-child(2) {
  top: 21px;
}

.burger-button span:nth-child(3) {
  top: 28px;
}

body.nav-open .burger-button span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

body.nav-open .burger-button span:nth-child(2) {
  opacity: 0;
}

body.nav-open .burger-button span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.header-socials,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-socials {
  justify-self: end;
}

.header-socials > a:not(.header-cta),
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.header-socials svg,
.footer-socials svg,
.slider-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-socials a[aria-label="Telegram"] svg {
  transform: translateX(-1px);
}

.header-socials > a:not(.header-cta):hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  opacity: 0.88;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.nav a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.nav-socials {
  display: none;
}

.header-cta,
.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(14px);
}

.header-cta:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.button-primary:hover {
  background: #83384b;
  box-shadow: 0 22px 42px rgba(109, 47, 62, 0.42);
  transform: translateY(-2px);
}

.button-secondary:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.button-secondary.light:hover {
  color: #fff;
  border-color: var(--wine);
  background: var(--wine);
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding-top: 96px;
  background: #4f222d;
}

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

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

.hero-media {
  display: none;
}

.hero-overlay {
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 36px));
  margin: 0 0 clamp(24px, 5vw, 58px) clamp(18px, 6vw, 86px);
  color: #fff;
}

.hero-content .eyebrow {
  margin-bottom: 18px;
}

.hero-decor {
  position: absolute;
  right: clamp(28px, 6vw, 92px);
  top: 50%;
  z-index: 2;
  width: min(34vw, 420px);
  min-width: 300px;
  aspect-ratio: 1;
  transform: translateY(-42%);
  pointer-events: none;
}

.decor-orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 64% 26%, rgba(255, 255, 255, 0.34), transparent 11%),
    radial-gradient(circle at 32% 72%, rgba(201, 157, 91, 0.55), transparent 13%);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.08);
}

.decor-orbit::before,
.decor-orbit::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  transform: rotate(-28deg);
}

.decor-orbit::before {
  width: 72%;
  height: 2px;
  left: 14%;
  top: 42%;
}

.decor-orbit::after {
  width: 48%;
  height: 2px;
  right: 4%;
  bottom: 28%;
}

.decor-card {
  position: absolute;
  left: 0;
  bottom: 18%;
  width: 64%;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(24, 13, 16, 0.24);
  backdrop-filter: blur(18px);
}

.decor-card span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.decor-card strong {
  display: block;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.15;
}

.decor-metrics {
  display: grid;
  gap: 14px;
}

.decor-metrics div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.decor-metrics div:first-child {
  padding-top: 0;
  border-top: 0;
}

.decor-metrics small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1.35;
}

.decor-badge {
  position: absolute;
  right: 2%;
  top: 18%;
  display: grid;
  place-items: center;
  width: 102px;
  height: 102px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  background: rgba(109, 47, 62, 0.46);
  backdrop-filter: blur(14px);
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 1.02;
}

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(42px, 5.8vw, 72px);
  font-weight: 800;
  line-height: 1.08;
}

h2 {
  margin-bottom: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.08;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.hero-text {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.78;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button-primary {
  color: #fff;
  background: var(--wine);
  box-shadow: 0 18px 34px rgba(109, 47, 62, 0.34);
}

.button-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.button-secondary.light {
  color: var(--wine);
  border-color: rgba(109, 47, 62, 0.24);
  background: #fff;
}

.hero-stats {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-stats div {
  min-width: 150px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.hero-stats strong {
  display: block;
  font-size: 24px;
}

.hero-stats span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.trust-strip {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px;
  background: var(--wine);
  color: #fff;
}

.trust-strip div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: var(--section-space) 0;
  scroll-margin-top: 56px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding-top: var(--section-space-compact);
  padding-bottom: var(--section-space-compact);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.intro > div {
  max-width: 680px;
}

.intro > p {
  max-width: 460px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.services,
.results,
.prices,
.process,
.reviews {
  flex-direction: column;
}

.services {
  padding-bottom: 24px;
}

.prices {
  padding-top: 24px;
  padding-bottom: var(--section-space-compact);
}

.process {
  padding-top: var(--section-space-compact);
  padding-bottom: var(--section-space-compact);
}

.reviews {
  padding-top: var(--section-space-compact);
}

.results {
  padding-top: var(--section-space-compact);
}

.section-heading {
  max-width: 760px;
  flex-direction: column;
  margin-bottom: 34px;
}

.results-heading {
  max-width: 900px;
  margin-bottom: 18px;
}

.section-heading p:not(.section-label) {
  color: var(--muted);
  line-height: 1.7;
}

.service-grid,
.before-after-grid,
.price-grid,
.review-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.price-card,
.comparison,
.review-grid article,
.steps div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(72, 38, 42, 0.06);
}

.service-card {
  min-height: 260px;
  padding: 28px;
}

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

.price-card {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 26px;
}

.price-card > div {
  width: 100%;
}

.price-card.featured {
  color: #fff;
  background: linear-gradient(145deg, var(--wine), #a95b66);
}

.price-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--wine);
  background: var(--soft);
  font-size: 13px;
  font-weight: 900;
}

.price-card h3 {
  margin-bottom: 8px;
}

.price-card p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.8);
}

.price-card > strong {
  flex: 0 0 auto;
  color: var(--wine);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  white-space: nowrap;
}

.price-card.featured > strong {
  color: #fff;
}

.price-list {
  display: grid;
  gap: 10px;
  width: 100%;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.price-card.featured .price-list li {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

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

.price-list span {
  display: inline;
  width: auto;
  height: auto;
  margin: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  font-size: 15px;
  font-weight: 800;
}

.price-list strong {
  flex: 0 0 auto;
  color: var(--wine);
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}

.price-card.featured .price-list strong {
  color: #fff;
}

.service-card.featured {
  color: #fff;
  background: linear-gradient(145deg, var(--wine), #a95b66);
}

.service-card span,
.steps span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--wine);
  background: var(--soft);
  font-weight: 900;
}

.service-card.featured span {
  color: var(--wine);
  background: #fff;
}

.service-card p,
.comparison p,
.steps p,
.review-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.8);
}

.results-slider {
  display: grid;
  gap: 16px;
}

.results-slider-controls {
  justify-content: flex-end;
}

.results-slider .slider-button {
  color: var(--wine);
  border-color: var(--line);
  background: #fff;
  box-shadow: 0 12px 28px rgba(72, 38, 42, 0.08);
}

.results-slider .slider-button:hover {
  background: var(--soft);
}

.results-slider-viewport {
  width: 100%;
  overflow: hidden;
  padding-bottom: 3px;
  touch-action: pan-y;
}

.before-after-grid {
  display: flex;
  gap: 18px;
  transform: translateX(0);
  transition: transform 360ms ease;
  will-change: transform;
}

.comparison {
  flex: 0 0 calc((100% - 18px) / 2);
  overflow: hidden;
}

.comparison-preview {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 430px;
  padding: 18px;
  border: 0;
  color: inherit;
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 250, 247, 0.72), transparent 30%),
    linear-gradient(135deg, #f7ddd2, #efd4b3);
  cursor: pointer;
  overflow: hidden;
}

.comparison-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(36, 27, 27, 0.28));
  opacity: 0;
  transition: opacity 180ms ease;
}

.comparison-preview:hover::after {
  opacity: 1;
}

.after-frame {
  position: relative;
  display: block;
  width: 100%;
  height: 394px;
  border: 1px solid rgba(109, 47, 62, 0.12);
  border-radius: 8px;
  background: #fffaf7;
  box-shadow: 0 18px 42px rgba(72, 38, 42, 0.14);
  overflow: hidden;
}

.after-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(0deg, rgba(36, 27, 27, 0.2), transparent 38%);
  pointer-events: none;
}

.after-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.comparison-preview:hover .after-image {
  transform: scale(1.025);
}

.photo-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 8px 12px;
  border: 1px solid rgba(109, 47, 62, 0.14);
  border-radius: 999px;
  color: #fff;
  background: rgba(109, 47, 62, 0.72);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 14px rgba(36, 27, 27, 0.18);
}

.after-label {
  left: auto;
  right: 14px;
  top: 14px;
  bottom: auto;
}

.before-thumb {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  width: min(38%, 190px);
  aspect-ratio: 3 / 4;
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  background: #f7ddd2;
  box-shadow: 0 18px 42px rgba(36, 27, 27, 0.24);
  overflow: hidden;
}

.before-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-thumb .photo-label {
  left: 8px;
  bottom: 8px;
}

.tap-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(109, 47, 62, 0.18);
  border-radius: 999px;
  color: var(--wine);
  background: rgba(255, 250, 247, 0.82);
  backdrop-filter: blur(10px);
  animation: tapPulse 1800ms ease-in-out infinite;
}

.tap-hint svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes tapPulse {
  0%,
  100% {
    transform: scale(1);
  }

  42% {
    transform: scale(0.92);
  }

  62% {
    transform: scale(1.04);
  }
}

.comparison h3,
.comparison p {
  padding: 0 24px;
}

.procedure-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 20px 24px 0;
  padding: 0 10px;
  border: 1px solid rgba(109, 47, 62, 0.16);
  border-radius: 999px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  background: var(--soft);
}

.comparison h3 {
  margin-top: 12px;
}

.comparison p {
  margin-bottom: 24px;
}

.result-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  pointer-events: none;
  transition: none;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 85;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  pointer-events: none;
}

.booking-modal.is-open,
.booking-modal.is-closing {
  visibility: visible;
  pointer-events: auto;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(36, 27, 27, 0.48);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: opacity 300ms ease;
}

.booking-modal.is-open .booking-modal-backdrop {
  opacity: 1;
}

.booking-modal.is-closing .booking-modal-backdrop {
  opacity: 0;
}

.booking-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 34px;
  border: 1px solid rgba(109, 47, 62, 0.16);
  border-radius: 8px;
  color: var(--ink);
  background: #fffaf7;
  box-shadow: 0 30px 80px rgba(72, 38, 42, 0.24);
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transition: opacity 300ms ease, transform 300ms ease;
}

.booking-modal.is-open .booking-modal-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.booking-modal.is-closing .booking-modal-dialog {
  opacity: 0;
  transform: translateY(10px) scale(0.985);
}

.booking-modal-dialog h3 {
  margin-bottom: 20px;
  font-size: 28px;
}

.booking-options {
  display: grid;
  gap: 12px;
}

.booking-options a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--wine);
  background: #fff;
  font-weight: 900;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.booking-options a:hover {
  border-color: rgba(109, 47, 62, 0.32);
  background: var(--soft);
  transform: translateY(-1px);
}

.booking-options svg {
  order: 2;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.result-modal.is-open,
.result-modal.is-closing {
  visibility: visible;
  pointer-events: auto;
}

.result-modal-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(36, 27, 27, 0.48);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: opacity 300ms ease;
}

.result-modal.is-open .result-modal-backdrop {
  opacity: 1;
}

.result-modal.is-closing .result-modal-backdrop {
  opacity: 0;
}

.result-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: calc(100vh - 40px);
  padding: 68px 18px 18px;
  border: 1px solid rgba(109, 47, 62, 0.16);
  border-radius: 8px;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 0%, rgba(247, 221, 210, 0.72), transparent 34%),
    linear-gradient(135deg, #fffaf7, #fff6f2 48%, #f7ddd2);
  box-shadow: 0 30px 80px rgba(72, 38, 42, 0.24);
  overflow: auto;
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transition: opacity 300ms ease, transform 300ms ease;
}

.result-modal.is-open .result-modal-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.result-modal.is-closing .result-modal-dialog {
  opacity: 0;
  transform: translateY(10px) scale(0.985);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-modal.is-open,
.video-modal.is-closing {
  visibility: visible;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(36, 27, 27, 0.48);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: opacity 300ms ease;
}

.video-modal.is-open .video-modal-backdrop {
  opacity: 1;
}

.video-modal.is-closing .video-modal-backdrop {
  opacity: 0;
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: clamp(54px, 7vh, 74px) clamp(12px, 3vw, 34px) clamp(12px, 3vh, 28px);
  color: #fff;
  background: transparent;
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transition: opacity 300ms ease, transform 300ms ease;
}

.video-modal.is-open .video-modal-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.video-modal.is-closing .video-modal-dialog {
  opacity: 0;
  transform: translateY(10px) scale(0.985);
}

.modal-video-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: calc(100vw - 68px);
  height: calc(100vh - 110px);
  max-height: calc(100vh - 110px);
  margin: auto;
  background: #050303;
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.modal-video-frame video {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  background: #231416;
  border-radius: 8px;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(109, 47, 62, 0.18);
  border-radius: 50%;
  color: var(--wine);
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.modal-close:hover {
  background: #fff;
  transform: translateY(-1px);
}

.modal-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.modal-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.modal-photos figure {
  position: relative;
  margin: 0;
  padding: 14px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(109, 47, 62, 0.12);
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 250, 247, 0.78), transparent 30%),
    linear-gradient(135deg, #f7ddd2, #efd4b3);
  box-shadow: 0 16px 40px rgba(72, 38, 42, 0.08);
}

.modal-photos img {
  width: 100%;
  height: min(64vh, 620px);
  border-radius: 8px;
  background: #fffaf7;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(72, 38, 42, 0.12);
}

.modal-photos figcaption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  padding: 8px 12px;
  border: 1px solid rgba(109, 47, 62, 0.14);
  border-radius: 999px;
  color: var(--wine);
  color: #fff;
  background: rgba(109, 47, 62, 0.72);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 900;
}

.modal-copy {
  padding: 18px 4px 2px;
}

.modal-copy .procedure-badge {
  margin: 0 0 12px;
}

.modal-copy h3 {
  margin-bottom: 8px;
}

.modal-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.video-showcase {
  margin-top: 22px;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 8px;
  color: #fff;
  background: var(--wine);
}

.video-showcase-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 26px;
  margin-bottom: 20px;
}

.slider-controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.slider-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.slider-button::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
}

.slider-button:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.slider-button:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.video-showcase p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.video-slider {
  overflow: hidden;
  width: 100%;
  padding-bottom: 3px;
  touch-action: pan-y;
}

.video-track {
  display: flex;
  gap: 16px;
  transform: translateX(0);
  transition: transform 360ms ease;
  will-change: transform;
}

.video-card {
  flex: 0 0 calc((100% - 16px) / 2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.video-preview {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  color: #fff;
  background: #231416;
  cursor: pointer;
  overflow: hidden;
}

.video-preview video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #231416;
  object-fit: cover;
  transition: opacity 260ms ease, transform 260ms ease;
}

.video-preview:hover video {
  opacity: 0.86;
  transform: scale(1.025);
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(109, 47, 62, 0.82);
  box-shadow: 0 14px 28px rgba(36, 27, 27, 0.2);
  backdrop-filter: blur(14px);
  transform: translate(-50%, -50%);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.video-preview:hover .video-play {
  background: rgba(109, 47, 62, 0.94);
  box-shadow: 0 18px 34px rgba(36, 27, 27, 0.26);
  transform: translate(-50%, -50%) scale(1.04);
}

.video-play svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  margin-left: 0;
}

.video-card div {
  padding: 18px;
}

.video-card .procedure-badge {
  margin: 0 0 12px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
}

.video-card h3 {
  margin-bottom: 8px;
}

.steps {
  gap: 18px;
}

.steps div {
  flex: 1;
  padding: 28px;
}

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

.review-grid article {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.review-grid strong {
  display: block;
  margin-top: auto;
  padding-top: 22px;
  color: var(--wine);
}

.cta-section {
  margin-top: 0;
  padding: var(--section-space) 18px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(36, 20, 24, 0.9), rgba(109, 47, 62, 0.76)),
    linear-gradient(135deg, #4f222d, #d99d7b);
}

.cta-content {
  width: min(900px, 100%);
  margin: 0 auto;
}

.cta-content p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.75;
}

.location-section {
  padding: var(--section-space) 18px;
  background:
    linear-gradient(180deg, rgba(255, 250, 247, 0.92), rgba(255, 246, 242, 0.92)),
    radial-gradient(circle at 16% 20%, rgba(201, 157, 91, 0.16), transparent 34%);
}

.location-content {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: stretch;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-copy h2 {
  margin: 0;
  max-width: 560px;
  color: var(--wine);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.location-copy p:not(.section-label) {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button-secondary.map-light {
  color: var(--wine);
  border: 1px solid var(--line);
  background: #fff;
}

.button-secondary.map-light:hover {
  color: var(--wine);
  border-color: rgba(109, 47, 62, 0.32);
  background: var(--soft);
  box-shadow: 0 18px 36px rgba(72, 38, 42, 0.12);
}

.map-frame {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(109, 47, 62, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.footer {
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer-socials a {
  color: var(--wine);
  border-color: var(--line);
  background: #fff;
}

.footer .footer-socials {
  margin-right: 72px;
}

.footer-socials a:hover {
  border-color: rgba(109, 47, 62, 0.32);
  background: var(--soft);
  transform: translateY(-2px);
}

.footer-policy {
  color: var(--wine);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.footer-policy:hover {
  color: #83384b;
}

.privacy-body {
  background: var(--cream);
}

.privacy-header {
  display: flex;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.privacy-header .brand {
  color: var(--wine);
}

.privacy-main {
  padding: clamp(42px, 6vw, 76px) clamp(18px, 4vw, 56px);
}

.privacy-page {
  width: min(920px, 100%);
  margin: 0 auto;
  color: var(--muted);
}

.privacy-page h1 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.privacy-date {
  margin: 0 0 clamp(34px, 5vw, 52px);
  color: var(--wine);
  font-size: 15px;
  font-weight: 800;
}

.privacy-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.privacy-section:first-of-type {
  border-top: 0;
}

.privacy-section h2 {
  margin: 0 0 14px;
  color: var(--wine);
  font-size: clamp(21px, 2.4vw, 28px);
  line-height: 1.25;
}

.privacy-section p,
.privacy-section li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.privacy-section p {
  margin: 0 0 14px;
}

.privacy-section p:last-child,
.privacy-section ul:last-child {
  margin-bottom: 0;
}

.privacy-section ul {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  padding-left: 24px;
}

.privacy-section li::marker {
  color: var(--wine);
}

.privacy-section a {
  color: var(--wine);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.privacy-section a:hover {
  color: #83384b;
}

.cookie-notice {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(620px, calc(100% - 36px));
  margin: 0 auto;
  padding: 14px 16px;
  border: 1px solid rgba(109, 47, 62, 0.16);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 250, 247, 0.94);
  box-shadow: 0 18px 42px rgba(72, 38, 42, 0.18);
  backdrop-filter: blur(16px);
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-notice a {
  color: var(--wine);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.cookie-button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--wine);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.cookie-button:hover {
  background: #83384b;
  transform: translateY(-1px);
}

.scroll-top-button {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(109, 47, 62, 0.2);
  border-radius: 50%;
  color: #fff;
  background: var(--wine);
  box-shadow: 0 16px 34px rgba(36, 27, 27, 0.2);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-top-button:hover {
  background: #83384b;
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .header-socials {
    justify-self: center;
  }

  .burger-button {
    display: inline-block;
    order: 3;
    justify-self: end;
  }

  .nav {
    position: absolute;
    left: 50%;
    right: auto;
    top: 100%;
    width: 100vw;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: #fff;
    background:
      radial-gradient(circle at 86% 10%, rgba(155, 93, 97, 0.18), transparent 36%),
      linear-gradient(135deg, rgba(68, 37, 45, 0.88) 0%, rgba(86, 42, 52, 0.88) 58%, rgba(109, 47, 62, 0.86) 100%);
    box-shadow: 0 0 28px rgba(40, 18, 23, 0.18);
    backdrop-filter: blur(28px) saturate(1.15);
    -webkit-backdrop-filter: blur(28px) saturate(1.15);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .nav a {
    justify-content: center;
    min-height: 48px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
  }

  .nav a:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.2);
  }

  .nav-socials {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding-top: 4px;
  }

  .nav-socials a {
    justify-content: center;
    gap: 8px;
  }

  .nav-socials svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .service-grid,
  .before-after-grid,
  .price-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-content {
    grid-template-columns: 1fr;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 380px;
  }

  .intro,
  .steps {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .video-showcase-head {
    flex-direction: column;
  }

  .hero-decor {
    opacity: 0.55;
    right: -90px;
    min-width: 260px;
  }
}

@media (max-width: 680px) {
  :root {
    --section-space: 42px;
    --section-space-compact: 28px;
  }

  .site-header {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    padding: 14px 16px;
    padding-top: max(14px, env(safe-area-inset-top, 0));
  }

  html {
    scroll-padding-top: 48px;
  }

  .brand {
    width: 44px;
  }

  .header-socials {
    justify-content: center;
  }

  .burger-button {
    justify-self: end;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 16px;
    font-size: 14px;
  }

  .header-socials > a:not(.header-cta) {
    display: none;
  }

  .scroll-top-button {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: 82vh;
    padding-top: 122px;
  }

  .hero-overlay {
    background: transparent;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto 22px;
  }

  .hero-decor {
    top: 160px;
    right: -92px;
    width: 280px;
    min-width: 280px;
    opacity: 0.2;
    transform: none;
  }

  .decor-card {
    transform: scale(0.92);
    transform-origin: right center;
  }

  h1 {
    font-size: 36px;
    line-height: 1.12;
  }

  h2 {
    font-size: 32px;
  }

  .button {
    width: 100%;
  }

  .hero-stats div {
    flex: 1 1 100%;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--wine), #8c4855);
  }

  .trust-strip div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 5px 12px;
    border-radius: 999px;
    border-color: rgba(255, 255, 255, 0.14);
    font-size: 12px;
    line-height: 1.25;
    text-align: center;
    background: transparent;
  }

  .results,
  .intro,
  .services,
  .prices,
  .process,
  .reviews {
    padding-top: var(--section-space-compact);
    padding-bottom: var(--section-space-compact);
  }

  .section {
    width: min(100% - 32px, 1180px);
    padding: var(--section-space) 0;
    scroll-margin-top: 48px;
  }

  .section.process,
  .section.reviews {
    padding-top: 0;
  }

  .intro {
    padding-top: var(--section-space-compact);
    padding-bottom: var(--section-space-compact);
  }

  .services {
    padding-bottom: 16px;
  }

  .prices {
    padding-top: 16px;
  }

  .service-grid,
  .before-after-grid,
  .price-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .comparison-preview {
    min-height: 330px;
    height: 330px;
    padding: 12px;
  }

  .after-frame {
    height: 306px;
  }

  .before-thumb {
    width: 34%;
    left: 14px;
    bottom: 14px;
    border-width: 3px;
  }

  .results-slider {
    position: static;
    gap: 18px;
  }

  .results-heading {
    margin-bottom: 14px;
  }

  .results-slider-controls {
    position: sticky;
    top: 86px;
    z-index: 6;
    justify-content: flex-end;
    pointer-events: auto;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .results-slider-controls.is-hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .results-slider-controls .slider-button {
    width: 44px;
    height: 44px;
    color: var(--wine);
    border-color: var(--line);
    background: #fff;
    box-shadow: 0 10px 24px rgba(36, 27, 27, 0.24);
  }

  .steps span {
    margin-bottom: 14px;
  }

  .tap-hint {
    right: 6px;
    bottom: 6px;
    width: 36px;
    height: 36px;
    background: rgba(255, 250, 247, 0.9);
  }

  .tap-hint svg {
    width: 16px;
    height: 16px;
  }

  .video-showcase {
    width: calc(100% + 32px);
    margin-left: -16px;
    border-radius: 0;
  }

  .result-modal {
    padding: 12px;
  }

  .result-modal-dialog {
    max-height: calc(100vh - 24px);
    padding: 12px;
  }

  .modal-photos {
    grid-template-columns: 1fr;
  }

  .modal-photos img {
    height: min(38vh, 360px);
  }

  .booking-modal {
    padding: 12px;
    place-items: center stretch;
  }

  .booking-modal-dialog {
    width: 100%;
    padding: 18px 16px;
  }

  .booking-modal-dialog .modal-close {
    position: absolute;
    top: -54px;
    right: 0;
    margin: 0;
  }

  .booking-modal-dialog h3 {
    margin-bottom: 22px;
    font-size: 24px;
    line-height: 1.15;
  }

  .booking-options {
    gap: 8px;
  }

  .booking-options a {
    min-height: 52px;
    padding: 0 14px;
  }

  .modal-close {
    position: sticky;
    top: 0;
    margin-left: auto;
    margin-bottom: 10px;
  }

  .video-play {
    width: 54px;
    height: 54px;
  }

  .video-modal {
    padding: 0;
  }

  .video-modal-dialog {
    width: 100%;
    height: 100%;
    padding: 58px 12px 14px;
  }

  .video-modal-dialog .modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    margin: 0;
  }

  .modal-video-frame {
    width: calc(100vw - 24px);
    height: calc(100vh - 86px);
    max-height: calc(100vh - 86px);
  }

  .modal-video-toggle {
    display: none;
  }

  .location-section {
    padding: var(--section-space) 16px;
  }

  .location-copy p:not(.section-label) {
    font-size: 16px;
  }

  .location-actions .button {
    width: 100%;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 320px;
  }

  .cookie-notice {
    align-items: stretch;
    flex-direction: column;
  }

  .video-showcase-head {
    gap: 12px;
    margin-bottom: 14px;
  }

  .slider-button::before {
    inset: -14px;
  }

  .video-slider {
    overflow: hidden;
  }

  .video-card {
    flex-basis: 100%;
  }

  .comparison {
    flex-basis: 100%;
  }

  .brand:hover,
  .burger-button:hover,
  .header-socials > a:not(.header-cta):hover,
  .nav a:hover,
  .header-cta:hover,
  .button-primary:hover,
  .button-secondary:hover,
  .button-secondary.light:hover,
  .results-slider .slider-button:hover,
  .booking-options a:hover,
  .modal-close:hover,
  .slider-button:hover,
  .button-secondary.map-light:hover,
  .footer-socials a:hover,
  .cookie-button:hover {
    transform: none;
    box-shadow: none;
  }

  .comparison-preview:hover::after {
    opacity: 0;
  }

  .comparison-preview:hover .after-image,
  .video-preview:hover video {
    opacity: 1;
    transform: none;
  }

  .video-preview:hover .video-play {
    transform: translate(-50%, -50%);
    box-shadow: none;
  }

  .brand:hover {
    opacity: 1;
  }

  .burger-button:hover,
  .header-socials > a:not(.header-cta):hover,
  .nav a:hover,
  .header-cta:hover,
  .slider-button:hover {
    background: rgba(255, 255, 255, 0.12);
  }

  .slider-button:active,
  .slider-button:focus,
  .slider-button:focus-visible,
  .results-slider .slider-button:active,
  .results-slider .slider-button:focus,
  .results-slider .slider-button:focus-visible {
    outline: none;
    transform: none;
    box-shadow: none;
  }

  .nav a:hover,
  .header-socials > a:not(.header-cta):hover,
  .header-cta:hover {
    border-color: rgba(255, 255, 255, 0.34);
  }

  .button-primary:hover,
  .cookie-button:hover {
    background: var(--wine);
  }

  .scroll-top-button:hover {
    background: var(--wine);
    transform: translateY(0);
  }

  .button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.12);
  }

  .button-secondary.light:hover,
  .booking-options a:hover,
  .button-secondary.map-light:hover,
  .footer-socials a:hover,
  .results-slider .slider-button:hover {
    color: var(--wine);
    border-color: var(--line);
    background: #fff;
  }

  .modal-close:hover {
    background: var(--soft);
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer .footer-socials {
    margin-right: 0;
  }

  .privacy-header {
    padding: 14px 16px;
  }

  .privacy-main {
    padding: 34px 16px 46px;
  }

  .privacy-page h1 {
    font-size: 34px;
  }

  .privacy-section {
    padding: 24px 0;
  }

  .privacy-section p,
  .privacy-section li {
    font-size: 15px;
    line-height: 1.7;
  }

  .privacy-section ul {
    padding-left: 20px;
  }
}
