:root {
  --wine: #7d1f2b;
  --wine-dark: #50131b;
  --gold: #c9a66b;
  --ink: #1c1b1a;
  --muted: #6f6b67;
  --sand: #f5f0e8;
  --cream: #fbf8f3;
  --line: rgba(28, 27, 26, 0.12);
  --white: #fff;
  --shadow: 0 24px 70px rgba(39, 24, 16, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family:
    Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  min-height: 78px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 10px 4.5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(26, 20, 18, 0.9);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.08em;
}

.brand-main {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
}

.brand-sub {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}

.header-phone span {
  font-size: 16px;
  font-weight: 750;
}

.header-phone small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  display: flex;
  min-height: min(860px, 92vh);
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 32%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 12, 11, 0.83) 0%, rgba(18, 12, 11, 0.4) 52%, rgba(18, 12, 11, 0.12) 100%),
    linear-gradient(0deg, rgba(18, 12, 11, 0.5) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 180px;
  padding-bottom: clamp(72px, 9vh, 118px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #ead4af;
}

.stars {
  margin-bottom: 18px;
  color: #efd29b;
  font-size: 13px;
  letter-spacing: 0.35em;
}

.hero h1,
.section h2,
.final-cta h2,
.contact-card h2,
.legal-page h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(50px, 7vw, 94px);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

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

.button-primary {
  background: var(--wine);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #9a2635;
}

.button-glass {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.hero-note {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.benefit-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.benefit-grid article {
  display: flex;
  min-height: 116px;
  flex-direction: column;
  justify-content: center;
  padding: 22px 28px;
  border-right: 1px solid var(--line);
}

.benefit-grid article:first-child {
  border-left: 1px solid var(--line);
}

.benefit-grid strong {
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.benefit-grid span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: clamp(76px, 9vw, 124px) 0;
}

.section h2,
.contact-card h2 {
  font-size: clamp(37px, 4.6vw, 62px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 46px;
}

.section-heading p:last-child {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
}

.booking-section {
  background: var(--sand);
}

.booking-heading {
  margin-bottom: 30px;
}

.booking-shell {
  min-height: 210px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(28, 27, 26, 0.08);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-note {
  margin: 18px 12px 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.legal-note a {
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.intro-section {
  background: var(--cream);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(45px, 8vw, 100px);
}

.split-copy > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 27px;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  color: var(--wine);
  content: "✓";
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--wine);
  font-weight: 800;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.feature-image {
  position: relative;
  margin: 0;
}

.feature-image::before {
  position: absolute;
  z-index: -1;
  top: -24px;
  right: -24px;
  width: 68%;
  height: 70%;
  border: 1px solid rgba(125, 31, 43, 0.25);
  content: "";
}

.feature-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.feature-image figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 16px 18px;
  background: rgba(24, 18, 16, 0.78);
  color: var(--white);
  font-size: 13px;
  backdrop-filter: blur(8px);
}

.rooms-section {
  background: var(--white);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
}

.photo-card {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #ddd;
}

.photo-card-wide {
  grid-row: span 2;
  min-height: 600px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.photo-card:hover img {
  transform: scale(1.025);
}

.photo-card::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(0deg, rgba(20, 14, 12, 0.77), transparent);
  content: "";
}

.photo-card figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.photo-card figcaption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
}

.photo-card figcaption span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.center-action {
  margin-top: 34px;
  text-align: center;
}

.experience-section {
  background: var(--ink);
  color: var(--white);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
}

.experience-card {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 4px;
}

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

.experience-card::after {
  position: absolute;
  inset: 25% 0 0;
  background: linear-gradient(0deg, rgba(18, 12, 11, 0.9), transparent);
  content: "";
}

.experience-overlay {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 34px;
  left: 34px;
}

.experience-overlay h2,
.experience-overlay h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.experience-overlay h3 {
  font-size: clamp(30px, 3.2vw, 44px);
}

.experience-overlay p:last-child {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.service-status {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.services-section {
  background: var(--sand);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.services-grid article {
  min-height: 250px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
}

.icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(125, 31, 43, 0.32);
  border-radius: 50%;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.services-grid h3 {
  margin: 32px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.services-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.reviews-section {
  background: var(--white);
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 0.55fr);
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
}

.review-copy {
  position: sticky;
  top: 115px;
}

.review-copy > p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--muted);
}

.rating-card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.rating-card strong {
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 500;
}

.rating-card span {
  color: var(--muted);
  font-size: 13px;
}

.reviews-widget {
  position: relative;
  height: 760px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fafafa;
}

.reviews-widget iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.iframe-shield {
  position: absolute;
  z-index: 2;
  inset: 0;
}

.contacts-section {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  min-height: 580px;
}

.map-card {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  background: #e8e5df;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 580px;
  border: 0;
  pointer-events: none;
}

.map-shield {
  position: absolute;
  z-index: 2;
  inset: 0;
}

.map-controls {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(28, 27, 26, 0.14);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.map-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 26px;
}

.map-controls button:last-child {
  border-bottom: 0;
}

.map-controls button:hover {
  background: var(--sand);
}

.map-caption {
  position: absolute;
  z-index: 4;
  bottom: 18px;
  left: 18px;
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
  font-size: 11px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 72px);
  background: var(--wine-dark);
  color: var(--white);
}

.contact-card > p:not(.eyebrow) {
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.68);
}

.contact-phone {
  margin: 10px 0 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 36px);
}

.messenger-buttons {
  display: grid;
  gap: 10px;
}

.messenger {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.messenger:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 570px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.final-cta > img,
.final-cta-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-cta > img {
  object-fit: cover;
}

.final-cta-shade {
  background: rgba(24, 14, 13, 0.58);
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 780px;
  margin: 0 auto 32px;
  font-size: clamp(42px, 6vw, 76px);
}

.site-footer {
  padding: 70px 0 30px;
  background: #171413;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
  gap: 50px;
  padding-bottom: 46px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.footer-grid p,
.footer-grid a {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-grid strong {
  margin-bottom: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.floating-contacts {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 24px;
  display: grid;
  gap: 10px;
}

.floating-contacts a {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.floating-contacts a:hover {
  transform: translateY(-3px);
}

.float-phone {
  background: var(--wine);
  font-size: 20px !important;
}

.float-max {
  background: #6536f3;
}

.float-tg {
  background: #229ed9;
}

.cookie-banner {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  max-width: 980px;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(23, 20, 19, 0.96);
  color: var(--white);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.cookie-banner strong {
  font-size: 14px;
}

.cookie-banner p {
  max-width: 620px;
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.cookie-banner p a {
  color: var(--white);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions .button {
  min-height: 44px;
  padding: 0 20px;
  color: var(--white);
}

.cookie-actions .button-outline {
  border-color: rgba(255, 255, 255, 0.24);
}

.legal-page {
  min-height: 100vh;
  padding: 130px 0 90px;
  background: var(--cream);
}

.legal-wrap {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
}

.legal-page h1 {
  margin-bottom: 28px;
  font-size: clamp(40px, 6vw, 64px);
}

.legal-page h2 {
  margin: 40px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
}

.legal-page p,
.legal-page li {
  color: #4e4b48;
}

.legal-page a {
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--wine);
  font-weight: 800;
}

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

  .main-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 26px;
    background: rgba(26, 20, 18, 0.98);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .header-phone {
    justify-self: end;
    margin-right: 8px;
  }

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

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

  .experience-card {
    min-height: 520px;
  }
}

@media (max-width: 780px) {
  .container,
  .legal-wrap {
    width: min(100% - 30px, 1180px);
  }

  .site-header {
    min-height: 70px;
    gap: 8px;
    padding: 8px 15px;
  }

  .brand-main {
    font-size: 16px;
  }

  .brand-sub {
    max-width: 180px;
    font-size: 8px;
  }

  .main-nav {
    top: 70px;
  }

  .header-phone span {
    font-size: 12px;
  }

  .header-phone small {
    display: none;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    object-position: 57% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(18, 12, 11, 0.82), rgba(18, 12, 11, 0.25)),
      linear-gradient(0deg, rgba(18, 12, 11, 0.55), transparent);
  }

  .hero-content {
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    min-height: 50px;
    padding: 0 18px;
  }

  .benefit-grid {
    width: 100%;
  }

  .benefit-grid article {
    min-height: 100px;
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .benefit-grid article:nth-child(odd) {
    border-left: 0;
  }

  .benefit-grid strong {
    font-size: 21px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading,
  .split-layout,
  .review-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section h2,
  .contact-card h2 {
    font-size: 39px;
  }

  .feature-image {
    margin-top: 20px;
  }

  .feature-image::before {
    top: -12px;
    right: -8px;
  }

  .feature-image img {
    aspect-ratio: 4 / 4.6;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .photo-card-wide {
    min-height: 370px;
    grid-row: auto;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-card {
    min-height: 470px;
  }

  .experience-card:not(.experience-card-large) {
    min-height: 390px;
  }

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

  .services-grid article {
    min-height: 210px;
  }

  .review-copy {
    position: static;
  }

  .reviews-widget {
    height: 680px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-card,
  .map-card iframe {
    min-height: 430px;
  }

  .contact-card {
    padding: 48px 26px;
  }

  .final-cta {
    min-height: 500px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
  }

  .floating-contacts {
    right: 12px;
    bottom: 14px;
  }

  .floating-contacts a {
    width: 48px;
    height: 48px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding: 18px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .legal-page {
    padding-top: 105px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* FIX: скрытие окна cookie после выбора */
.cookie-banner[hidden] {
    display: none !important;
}

/* === LIGHT THEME START === */

:root {
  --ink: #2b2420;
  --muted: #70645d;
  --sand: #f8f3ed;
  --cream: #fffdf9;
  --line: rgba(70, 52, 43, 0.13);
  --shadow: 0 20px 55px rgba(79, 55, 42, 0.10);
}

body {
  background: #fffdf9 !important;
  color: var(--ink) !important;
}

/* Светлая шапка */
.site-header {
  border-bottom: 1px solid rgba(70, 52, 43, 0.12) !important;
  background: rgba(255, 253, 249, 0.95) !important;
  color: var(--ink) !important;
  box-shadow: 0 6px 24px rgba(60, 42, 33, 0.07);
}

.brand-sub,
.main-nav a,
.header-phone small {
  color: var(--muted) !important;
}

.menu-toggle {
  border-color: rgba(70, 52, 43, 0.22) !important;
}

.menu-toggle span {
  background: var(--ink) !important;
}

/* Светлый главный экран */
.hero {
  color: var(--ink) !important;
}

.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(255, 252, 247, 0.94) 0%,
      rgba(255, 252, 247, 0.75) 48%,
      rgba(255, 252, 247, 0.18) 100%
    ),
    linear-gradient(
      0deg,
      rgba(255, 252, 247, 0.64) 0%,
      transparent 48%
    ) !important;
}

.hero h1 {
  text-shadow: 0 3px 22px rgba(255, 255, 255, 0.9) !important;
}

.hero-lead,
.hero-note {
  color: #514740 !important;
}

.stars,
.eyebrow.light {
  color: var(--wine) !important;
}

.button-glass {
  border-color: rgba(70, 52, 43, 0.2) !important;
  background: rgba(255, 255, 255, 0.82) !important;
  color: var(--ink) !important;
}

/* Светлые разделы и карточки */
.booking-section,
.services-section,
.experience-section {
  background: var(--sand) !important;
  color: var(--ink) !important;
}

.booking-shell,
.services-grid article,
.rating-card {
  background: #ffffff !important;
  box-shadow: var(--shadow);
}

.feature-image figcaption {
  background: rgba(255, 253, 249, 0.92) !important;
  color: var(--ink) !important;
}

/* Светлые подписи на фотографиях */
.photo-card::after,
.experience-card::after {
  background:
    linear-gradient(
      0deg,
      rgba(255, 253, 249, 0.95) 0%,
      rgba(255, 253, 249, 0.62) 34%,
      transparent 75%
    ) !important;
}

.photo-card figcaption,
.experience-overlay {
  color: var(--ink) !important;
}

.photo-card figcaption span,
.experience-overlay p:last-child,
.service-status {
  color: var(--muted) !important;
}

/* Светлый блок контактов */
.contact-card {
  border: 1px solid rgba(125, 31, 43, 0.12);
  background: #f6eae8 !important;
  color: var(--ink) !important;
}

.contact-card > p:not(.eyebrow) {
  color: var(--muted) !important;
}

.messenger {
  border-color: rgba(125, 31, 43, 0.22) !important;
  background: #ffffff !important;
  color: var(--wine) !important;
}

.messenger:hover {
  background: #fff8f6 !important;
}

/* Светлый заключительный экран */
.final-cta {
  color: var(--ink) !important;
}

.final-cta-shade {
  background: rgba(255, 252, 247, 0.78) !important;
}

/* Светлый подвал */
.site-footer {
  border-top: 1px solid var(--line);
  background: #f4eee7 !important;
  color: var(--ink) !important;
}

.footer-grid p,
.footer-grid a,
.footer-bottom p {
  color: var(--muted) !important;
}

.footer-grid a:hover {
  color: var(--wine) !important;
}

.footer-bottom {
  border-top-color: var(--line) !important;
}

/* Светлое окно cookie */
.cookie-banner {
  border-color: rgba(70, 52, 43, 0.14) !important;
  background: rgba(255, 253, 249, 0.98) !important;
  color: var(--ink) !important;
  box-shadow: 0 20px 70px rgba(69, 48, 38, 0.18) !important;
}

.cookie-banner p {
  color: var(--muted) !important;
}

.cookie-banner p a {
  color: var(--wine) !important;
}

.cookie-actions .button-outline {
  border-color: rgba(70, 52, 43, 0.25) !important;
  color: var(--ink) !important;
}

.cookie-actions .button-primary {
  color: #ffffff !important;
}

.cookie-banner[hidden] {
  display: none !important;
}

@media (max-width: 1050px) {
  .main-nav {
    background: rgba(255, 253, 249, 0.99) !important;
    box-shadow: 0 18px 30px rgba(60, 42, 33, 0.1);
  }

  .main-nav a {
    border-bottom-color: var(--line) !important;
    color: var(--ink) !important;
  }
}

/* === LIGHT THEME END === */

/* === HERO CLARITY START === */

/* Более чёткая главная фотография */
.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(255, 252, 247, 0.58) 0%,
      rgba(255, 252, 247, 0.30) 48%,
      rgba(255, 252, 247, 0.05) 100%
    ),
    linear-gradient(
      0deg,
      rgba(255, 252, 247, 0.20) 0%,
      transparent 45%
    ) !important;
}

/* Лёгкая подложка только под текстом */
.hero-content {
  filter: none !important;
}

.hero h1 {
  text-shadow:
    0 2px 3px rgba(255, 255, 255, 0.95),
    0 5px 24px rgba(255, 255, 255, 0.65) !important;
}

/* === HERO CLARITY END === */

/* === HERO DARK TEXT START === */

.hero h1 {
  color: #171311 !important;
}

.hero-lead {
  color: #211c19 !important;
  font-weight: 500 !important;
  text-shadow:
    0 1px 2px rgba(255, 255, 255, 1),
    0 2px 12px rgba(255, 255, 255, 0.85) !important;
}

.hero-note {
  color: #2b2420 !important;
  font-weight: 600 !important;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.95) !important;
}

/* === HERO DARK TEXT END === */
