/* ========================================
   Гостевой дом Листва - Main Styles
   ======================================== */

/* CSS Variables */
:root {
  --primary: #1a3c2d;
  --primary-light: #2d5a4e;
  --accent: #c9a959;
  --accent-hover: #dfc478;
  --bg-light: #f4f1eb;
  --bg-white: #fff;
  --text-dark: #1a1a1a;
  --text-muted: #4a4a4a;
  --text-light: #6b7c6e;
  --border-light: #e8e2d9;
  --shadow-sm: 0 2px 12px rgba(26,60,45,.04);
  --shadow-md: 0 4px 20px rgba(26,60,45,.08);
  --shadow-lg: 0 12px 40px rgba(26,60,45,.12);

  /* Neomorphic Shadows - Premium Elegant Style */
  --neo-light: rgba(255, 255, 255, 0.9);
  --neo-dark: rgba(26, 60, 45, 0.12);
  --neo-dark-soft: rgba(26, 60, 45, 0.08);
  --neo-accent: rgba(201, 169, 89, 0.25);

  /* Raised neomorphic effect */
  --neo-raised:
    6px 6px 16px var(--neo-dark-soft),
    -6px -6px 16px var(--neo-light);
  --neo-raised-lg:
    10px 10px 24px var(--neo-dark),
    -10px -10px 24px var(--neo-light);

  /* Pressed/inset neomorphic effect */
  --neo-pressed:
    inset 3px 3px 8px var(--neo-dark-soft),
    inset -3px -3px 8px var(--neo-light);

  /* Button neomorphic effect */
  --neo-btn:
    4px 4px 12px var(--neo-dark-soft),
    -4px -4px 12px var(--neo-light),
    0 2px 8px rgba(201, 169, 89, 0.15);
  --neo-btn-hover:
    6px 6px 20px var(--neo-dark),
    -6px -6px 20px var(--neo-light),
    0 4px 16px var(--neo-accent);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-full: 50px;
  --transition: all .3s ease;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Roboto', sans-serif;
}

/* ========================================
   LEVITATION ANIMATIONS
   ======================================== */
@keyframes levitate {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes levitate-subtle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes levitate-shadow {
  0%, 100% {
    box-shadow:
      6px 6px 18px rgba(26, 60, 45, 0.08),
      -6px -6px 18px rgba(255, 255, 255, 0.85),
      0 4px 12px rgba(26, 60, 45, 0.06);
  }
  50% {
    box-shadow:
      10px 14px 28px rgba(26, 60, 45, 0.14),
      -8px -4px 20px rgba(255, 255, 255, 0.9),
      0 12px 24px rgba(26, 60, 45, 0.1);
  }
}

@keyframes levitate-shadow-dark {
  0%, 100% {
    box-shadow:
      6px 6px 16px rgba(0, 0, 0, 0.3),
      -4px -4px 12px rgba(255, 255, 255, 0.05),
      0 4px 10px rgba(0, 0, 0, 0.15);
  }
  50% {
    box-shadow:
      10px 14px 28px rgba(0, 0, 0, 0.4),
      -6px -2px 16px rgba(255, 255, 255, 0.08),
      0 12px 24px rgba(0, 0, 0, 0.2);
  }
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-display);
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  z-index: 10000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* ========================================
   HEADER - Floating Rounded Menu
   ======================================== */
.header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(23, 59, 46, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  transition: all .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-width: 1200px;
  width: calc(100% - 40px);
  box-shadow:
    0 8px 32px rgba(26, 60, 45, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.header--scrolled {
  background: rgba(23, 59, 46, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  top: 12px;
  padding: 12px 32px;
  box-shadow:
    0 12px 40px rgba(26, 60, 45, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header__container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: rgb(243,255,245);
}

.header__nav {
  display: flex;
  gap: 28px;
}

.header__nav a {
  font-family: var(--font-display);
  font-size: 15px;
  color: rgb(243,255,245);
  transition: all .3s;
  position: relative;
  padding: 4px 0;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s;
  transform: translateX(-50%);
  border-radius: 1px;
}

.header__nav a:hover::after,
.header__nav a:focus::after {
  width: 100%;
}

.header__nav a:hover,
.header__nav a:focus {
  color: var(--accent);
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

.header__burger span {
  width: 24px;
  height: 2px;
  background: rgb(243,255,245);
  transition: var(--transition);
}

.header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.header__mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 500px;
  background: rgba(23, 59, 46, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 20px 28px;
  flex-direction: column;
  gap: 8px;
  border-radius: var(--radius-lg);
  box-shadow:
    0 12px 40px rgba(26, 60, 45, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.header__mobile-nav.active {
  display: flex;
}

.header__mobile-nav a {
  font-family: var(--font-display);
  font-size: 18px;
  color: rgb(243,255,245);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: all .3s;
}

.header__mobile-nav a:hover,
.header__mobile-nav a:active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://assets.zyrosite.com/mp8JEG9MrLH8bXOo/whatsapp-image-2025-08-07-at-13.41.42-1-AGBbko23w5CVMQE1.jpeg');
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,60,45,.88) 0%, rgba(26,60,45,.92) 50%, rgba(26,60,45,.95) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 900px;
}

.hero__badge {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero__title {
  font-size: clamp(32px, 7vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 12px;
}

.hero__subtitle {
  font-size: clamp(40px, 9vw, 90px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 32px;
}

.hero__description {
  font-size: clamp(18px, 2.8vw, 26px);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,.9);
  margin: 0 auto 40px;
}

.hero__features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,.9);
}

.hero__feature svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  stroke: currentColor;
  fill: none;
}

.hero__cta {
  display: inline-block;
  padding: 18px 48px;
  background: transparent;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  letter-spacing: .05em;
  transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow:
    4px 4px 16px rgba(0, 0, 0, 0.3),
    -3px -3px 12px rgba(255, 255, 255, 0.05),
    0 0 20px rgba(201, 169, 89, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: levitate-subtle 3.5s ease-in-out infinite;
}

.hero__cta:hover,
.hero__cta:focus {
  animation-play-state: paused;
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-5px);
  box-shadow:
    10px 14px 32px rgba(0, 0, 0, 0.35),
    -6px -4px 20px rgba(255, 255, 255, 0.08),
    0 10px 40px rgba(201, 169, 89, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero__cta:active {
  transform: translateY(0);
  box-shadow:
    inset 3px 3px 8px rgba(0, 0, 0, 0.2),
    inset -2px -2px 6px rgba(255, 255, 255, 0.05);
}

/* ========================================
   ABOUT
   ======================================== */
.about {
  padding: 80px 40px;
  background: var(--bg-white);
}

.about__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, #87a878 0%, #2d5a4e 100%);
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.about__image:hover img {
  transform: scale(1.05);
}

.about__image--large {
  grid-column: span 2;
  height: 280px;
}

.about__image--small {
  height: 180px;
}

.about__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--primary);
  margin: 0 0 28px;
}

.about__text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 20px;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
}

.about__stat {
  text-align: center;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow:
    5px 5px 14px rgba(26, 60, 45, 0.06),
    -5px -5px 14px rgba(255, 255, 255, 0.9);
  transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: levitate-subtle 4s ease-in-out infinite, levitate-shadow 4s ease-in-out infinite;
}

.about__stat:nth-child(2) {
  animation-delay: 0.5s;
}

.about__stat:nth-child(3) {
  animation-delay: 1s;
}

.about__stat:hover {
  animation-play-state: paused;
  transform: translateY(-6px);
  box-shadow:
    10px 10px 24px rgba(26, 60, 45, 0.12),
    -10px -10px 24px rgba(255, 255, 255, 0.95),
    0 6px 18px rgba(201, 169, 89, 0.15);
}

.about__stat-number {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.about__stat-label {
  font-size: 15px;
  color: var(--text-light);
}

/* ========================================
   AMENITIES
   ======================================== */
.amenities {
  padding: 80px 40px;
  background: linear-gradient(180deg, var(--primary) 0%, #15322a 100%);
}

.amenities__container {
  max-width: 1200px;
  margin: 0 auto;
}

.amenities__header {
  text-align: center;
  margin-bottom: 50px;
}

.amenities__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: #fff;
  margin: 0 0 16px;
}

.amenities__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  margin: 0;
}

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.amenities__card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow:
    6px 6px 16px rgba(0, 0, 0, 0.3),
    -4px -4px 12px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: levitate 5s ease-in-out infinite, levitate-shadow-dark 5s ease-in-out infinite;
}

.amenities__card:nth-child(2) {
  animation-delay: 0.6s;
}

.amenities__card:nth-child(3) {
  animation-delay: 1.2s;
}

.amenities__card:nth-child(4) {
  animation-delay: 1.8s;
}

.amenities__card:hover {
  animation-play-state: paused;
  background: rgba(255,255,255,.1);
  border-color: var(--accent);
  transform: translateY(-10px);
  box-shadow:
    12px 16px 32px rgba(0, 0, 0, 0.4),
    -8px -4px 20px rgba(255, 255, 255, 0.1),
    0 8px 24px rgba(201, 169, 89, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.amenities__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.amenities__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
}

.amenities__card-title {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 8px;
}

.amenities__card-desc {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin: 0;
  line-height: 1.5;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery {
  padding: 60px 40px 40px;
  background: var(--bg-light);
}

.gallery__container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery__header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery__toggle {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.gallery__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--primary);
  margin: 0;
  transition: color .3s;
}

.gallery__toggle:hover .gallery__title {
  color: var(--primary-light);
}

.gallery__toggle-icon {
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s;
  position: relative;
}

.gallery__toggle-icon::before,
.gallery__toggle-icon::after {
  content: '';
  position: absolute;
  background: var(--accent);
  transition: transform .4s;
}

.gallery__toggle-icon::before {
  width: 16px;
  height: 2px;
}

.gallery__toggle-icon::after {
  width: 2px;
  height: 16px;
}

.gallery.active .gallery__toggle-icon::after {
  transform: rotate(90deg);
}

.gallery__toggle:hover .gallery__toggle-icon {
  background: var(--accent);
}

.gallery__toggle:hover .gallery__toggle-icon::before,
.gallery__toggle:hover .gallery__toggle-icon::after {
  background: var(--primary);
}

.gallery__subtitle {
  font-size: 18px;
  color: #5a6b5e;
  margin: 16px 0 0;
}

.gallery__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .6s;
}

.gallery.active .gallery__content {
  max-height: 2000px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
  padding-top: 10px;
}

.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: linear-gradient(135deg, #87a878 0%, #2d5a4e 100%);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,60,45,.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all .4s;
}

.gallery__item:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery__item--1 {
  grid-column: span 3;
  grid-row: span 2;
}

/* ========================================
   TERRITORY
   ======================================== */
.territory {
  padding: 40px 40px 80px;
  background: var(--bg-light);
}

.territory__container {
  max-width: 1200px;
  margin: 0 auto;
}

.territory__header {
  text-align: center;
  margin-bottom: 50px;
}

.territory__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--primary);
  margin: 0 0 16px;
}

.territory__subtitle {
  font-size: 18px;
  color: #5a6b5e;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.territory__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.territory__card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow:
    6px 6px 18px rgba(26, 60, 45, 0.08),
    -6px -6px 18px rgba(255, 255, 255, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  animation: levitate 5.5s ease-in-out infinite, levitate-shadow 5.5s ease-in-out infinite;
}

.territory__card:nth-child(2) {
  animation-delay: 0.7s;
}

.territory__card:nth-child(3) {
  animation-delay: 1.4s;
}

.territory__card:nth-child(4) {
  animation-delay: 2.1s;
}

.territory__card:hover {
  animation-play-state: paused;
  transform: translateY(-12px);
  box-shadow:
    12px 16px 36px rgba(26, 60, 45, 0.16),
    -10px -6px 28px rgba(255, 255, 255, 0.95),
    0 10px 28px rgba(201, 169, 89, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.territory__image {
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #87a878 0%, #2d5a4e 100%);
}

.territory__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.territory__card:hover .territory__image img {
  transform: scale(1.1);
}

.territory__content {
  padding: 24px;
}

.territory__card-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--primary);
  margin: 0 0 8px;
}

.territory__card-desc {
  font-size: 15px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
  padding: 80px 40px;
  background: linear-gradient(135deg, #e8e2d9 0%, var(--bg-light) 100%);
}

.pricing__container {
  max-width: 1300px;
  margin: 0 auto;
}

.pricing__header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--primary);
  margin: 0 0 16px;
}

.pricing__subtitle {
  font-size: 18px;
  color: #5a6b5e;
  margin: 0;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing__card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow:
    8px 8px 20px rgba(26, 60, 45, 0.08),
    -8px -8px 20px rgba(255, 255, 255, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  animation: levitate 6s ease-in-out infinite, levitate-shadow 6s ease-in-out infinite;
}

.pricing__card:nth-child(2) {
  animation-delay: 0.8s;
}

.pricing__card:nth-child(3) {
  animation-delay: 1.6s;
}

.pricing__card:nth-child(4) {
  animation-delay: 2.4s;
}

.pricing__card:hover {
  animation-play-state: paused;
  transform: translateY(-12px);
  box-shadow:
    14px 18px 36px rgba(26, 60, 45, 0.16),
    -12px -8px 30px rgba(255, 255, 255, 0.95),
    0 10px 28px rgba(201, 169, 89, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pricing__card--featured {
  background: var(--primary);
  color: #fff;
  box-shadow:
    8px 8px 24px rgba(26, 60, 45, 0.25),
    -6px -6px 16px rgba(255, 255, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing__card--promo {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  border: 2px solid var(--accent);
  box-shadow:
    8px 8px 24px rgba(26, 60, 45, 0.25),
    -6px -6px 16px rgba(255, 255, 255, 0.4),
    0 4px 16px rgba(201, 169, 89, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  white-space: nowrap;
}

.pricing__card-title {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 20px;
}

.pricing__card:not(.pricing__card--featured):not(.pricing__card--promo) .pricing__card-title {
  color: var(--primary);
}

.pricing__price {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  margin: 0 0 4px;
  line-height: 1;
  white-space: nowrap;
}

.pricing__card--featured .pricing__price,
.pricing__card--promo .pricing__price {
  color: var(--accent);
}

.pricing__card:not(.pricing__card--featured):not(.pricing__card--promo) .pricing__price {
  color: var(--primary);
}

.pricing__price-note {
  font-size: 15px;
  opacity: .7;
  margin: 0 0 24px;
}

.pricing__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex-grow: 1;
}

.pricing__features li {
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.pricing__card--featured .pricing__features li,
.pricing__card--promo .pricing__features li {
  border-color: rgba(255,255,255,.1);
}

.pricing__features li:last-child {
  border-bottom: none;
}

.pricing__feature-highlight {
  color: var(--accent);
  font-weight: 500;
}

.pricing__cta {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 500;
  transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1.5px solid transparent;
  margin-top: auto;
}

.pricing__card:not(.pricing__card--featured):not(.pricing__card--promo) .pricing__cta {
  background: var(--primary);
  color: #fff;
  box-shadow:
    4px 4px 12px rgba(26, 60, 45, 0.15),
    -3px -3px 10px rgba(255, 255, 255, 0.8),
    0 0 16px rgba(26, 60, 45, 0.08);
}

.pricing__card:not(.pricing__card--featured):not(.pricing__card--promo) .pricing__cta:hover {
  background: var(--primary-light);
  transform: translateY(-4px);
  box-shadow:
    8px 10px 24px rgba(26, 60, 45, 0.25),
    -5px -3px 16px rgba(255, 255, 255, 0.9),
    0 6px 20px rgba(201, 169, 89, 0.3);
}

.pricing__card--featured .pricing__cta,
.pricing__card--promo .pricing__cta {
  background: var(--accent);
  color: var(--primary);
  box-shadow:
    4px 4px 12px rgba(0, 0, 0, 0.2),
    -3px -3px 10px rgba(255, 255, 255, 0.1),
    0 0 16px rgba(201, 169, 89, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pricing__card--featured .pricing__cta:hover,
.pricing__card--promo .pricing__cta:hover {
  background: var(--accent-hover);
  transform: translateY(-4px);
  box-shadow:
    8px 12px 28px rgba(0, 0, 0, 0.3),
    -5px -3px 18px rgba(255, 255, 255, 0.15),
    0 8px 24px rgba(201, 169, 89, 0.45);
}

.pricing__disclaimer {
  text-align: center;
  margin-top: 32px;
  font-size: 15px;
  color: var(--text-light);
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  padding: 80px 40px;
  background: var(--bg-light);
}

.faq__container {
  max-width: 800px;
  margin: 0 auto;
}

.faq__header {
  text-align: center;
  margin-bottom: 50px;
}

.faq__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--primary);
  margin: 0 0 16px;
}

.faq__subtitle {
  font-size: 18px;
  color: #5a6b5e;
  margin: 0;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow:
    5px 5px 14px rgba(26, 60, 45, 0.06),
    -5px -5px 14px rgba(255, 255, 255, 0.85);
  transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: levitate-subtle 5s ease-in-out infinite, levitate-shadow 5s ease-in-out infinite;
}

.faq__item:nth-child(2) {
  animation-delay: 0.4s;
}

.faq__item:nth-child(3) {
  animation-delay: 0.8s;
}

.faq__item:nth-child(4) {
  animation-delay: 1.2s;
}

.faq__item:nth-child(5) {
  animation-delay: 1.6s;
}

.faq__item:nth-child(6) {
  animation-delay: 2s;
}

.faq__item:hover {
  animation-play-state: paused;
  box-shadow:
    10px 12px 28px rgba(26, 60, 45, 0.12),
    -8px -6px 22px rgba(255, 255, 255, 0.95),
    0 6px 16px rgba(201, 169, 89, 0.12);
}

.faq__item.active {
  box-shadow:
    6px 6px 18px rgba(26, 60, 45, 0.08),
    -6px -6px 18px rgba(255, 255, 255, 0.9),
    inset 0 2px 4px rgba(26, 60, 45, 0.03);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq__question-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.4;
}

.faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  color: var(--accent);
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform .3s;
}

.faq__icon::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__item.active .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s, padding .4s;
}

.faq__item.active .faq__answer {
  max-height: 500px;
}

.faq__answer-text {
  font-size: 16px;
  color: #5a6b5e;
  line-height: 1.7;
  padding: 0 28px 24px;
  margin: 0;
}

/* ========================================
   LOCATION
   ======================================== */
.location {
  padding: 80px 40px;
  background: var(--primary);
}

.location__container {
  max-width: 1200px;
  margin: 0 auto;
}

.location__header {
  text-align: center;
  margin-bottom: 50px;
}

.location__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: #fff;
  margin: 0 0 16px;
}

.location__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  margin: 0;
}

.location__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.05);
  aspect-ratio: 4/3;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location__info {
  color: #fff;
}

.location__info-title {
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  margin: 0 0 20px;
}

.location__info-text {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin: 0 0 32px;
}

.location__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
  font-style: normal;
}

.location__details * {
  font-style: normal !important;
}

.location__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.location__detail-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.location__detail-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
}

.location__detail-label {
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  color: #fff;
  margin: 0 0 4px;
}

.location__detail-value {
  font-size: 15px;
  font-style: normal;
  color: rgba(255,255,255,.7);
  margin: 0;
}

.location__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.location__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  min-width: 160px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 500;
  transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid transparent;
}

.location__btn--yandex {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.2);
  box-shadow:
    4px 4px 12px rgba(0, 0, 0, 0.3),
    -3px -3px 10px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.location__btn--yandex:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-5px);
  box-shadow:
    8px 12px 24px rgba(0, 0, 0, 0.4),
    -5px -3px 18px rgba(255, 255, 255, 0.12),
    0 6px 20px rgba(201, 169, 89, 0.25);
}

.location__btn--2gis {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  box-shadow:
    4px 4px 12px rgba(0, 0, 0, 0.25),
    -3px -3px 10px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.location__btn--2gis:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-5px);
  box-shadow:
    8px 12px 28px rgba(0, 0, 0, 0.35),
    -5px -3px 18px rgba(255, 255, 255, 0.12),
    0 8px 24px rgba(201, 169, 89, 0.5);
}

.location__btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.location__reviews {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.location__reviews-text {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  margin: 0;
  font-style: italic;
}

/* ========================================
   BOOKING SECTION
   ======================================== */
.booking {
  padding: 50px 40px;
  background: var(--bg-light);
}

.booking__container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.booking__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--primary);
  margin: 0 0 16px;
}

.booking__subtitle {
  font-size: 17px;
  color: #5a6b5e;
  line-height: 1.6;
  margin: 0 0 28px;
}

.booking__host {
  margin-bottom: 28px;
}

.booking__host-name {
  font-size: 20px;
  font-weight: 500;
  color: var(--primary);
  margin: 0 0 4px;
}

.booking__host-role {
  font-size: 15px;
  color: var(--text-light);
  margin: 0;
}

.booking__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--primary);
  border: none;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow:
    5px 5px 15px rgba(26, 60, 45, 0.2),
    -3px -3px 10px rgba(255, 255, 255, 0.5),
    0 0 16px rgba(26, 60, 45, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: levitate-subtle 4s ease-in-out infinite;
}

.booking__cta:hover {
  animation-play-state: paused;
  background: var(--primary-light);
  transform: translateY(-5px);
  box-shadow:
    10px 14px 32px rgba(26, 60, 45, 0.3),
    -6px -4px 20px rgba(255, 255, 255, 0.6),
    0 8px 28px rgba(201, 169, 89, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.booking__cta:active {
  transform: translateY(0);
  box-shadow:
    inset 2px 2px 6px rgba(26, 60, 45, 0.15),
    inset -2px -2px 6px rgba(255, 255, 255, 0.1);
}

.booking__cta svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ========================================
   BOOKING WIDGET SECTION
   ======================================== */
.booking-widget-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, #e8e2d9 0%, var(--bg-light) 100%);
}

.booking-widget-section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.booking-widget-section__header {
  text-align: center;
  margin-bottom: 40px;
}

.booking-widget-section__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--primary);
  margin: 0 0 16px;
}

.booking-widget-section__subtitle {
  font-size: 18px;
  color: #5a6b5e;
  margin: 0;
}

.booking-widget-wrapper {
  max-width: 500px;
  margin: 0 auto;
}

/* ========================================
   ATTRACTIONS
   ======================================== */
.attractions {
  padding: 80px 40px;
  background: var(--bg-white);
}

.attractions__container {
  max-width: 1000px;
  margin: 0 auto;
}

.attractions__header {
  text-align: center;
  margin-bottom: 50px;
}

.attractions__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--primary);
  margin: 0 0 16px;
}

.attractions__subtitle {
  font-size: 18px;
  color: #5a6b5e;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.attractions__link {
  color: var(--accent);
  font-weight: 500;
  transition: color .3s;
}

.attractions__link:hover {
  color: var(--primary);
}

.attractions__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.attractions__item {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s;
}

.attractions__item:hover {
  box-shadow: var(--shadow-md);
}

.attractions__item-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.attractions__item-header {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.attractions__item-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.attractions__item-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
}

.attractions__item-info {
  flex-grow: 1;
}

.attractions__item-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--primary);
  margin: 0 0 4px;
}

.attractions__item-distance {
  font-family: 'Playfair Display', serif !important;
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  font-style: normal;
}

.attractions__item-arrow {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 50%;
  transition: all .3s;
}

.attractions__item-arrow::before,
.attractions__item-arrow::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform .3s;
}

.attractions__item-arrow::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.attractions__item-arrow::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.attractions__item.active .attractions__item-arrow {
  background: var(--accent);
  color: #fff;
}

.attractions__item.active .attractions__item-arrow::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.attractions__item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease-out;
}

.attractions__item.active .attractions__item-content {
  max-height: 800px;
}

.attractions__item-body {
  padding: 0 24px 24px;
}

.attractions__item-body p {
  font-size: 16px;
  color: #5a6b5e;
  line-height: 1.8;
  margin: 0 0 20px;
}

.attractions__item-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.attractions__item-gallery img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}

.attractions__item-gallery img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.attractions__item-cta {
  margin-top: 16px;
}

.attractions__item-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  transition: all .3s;
}

.attractions__item-btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* ========================================
   WHATSAPP BUBBLE
   ======================================== */
.whatsapp-bubble {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  transition: var(--transition);
}

.whatsapp-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
}

.whatsapp-bubble svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .4s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__close:hover {
  background: rgba(255,255,255,.2);
  transform: rotate(90deg);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__nav:hover {
  background: rgba(255,255,255,.2);
}

.lightbox__prev {
  left: 24px;
}

.lightbox__next {
  right: 24px;
}

.lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: rgba(255,255,255,.7);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,.7);
  padding: 40px;
  text-align: center;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 16px;
}

.footer__text {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer__copyright {
  font-size: 13px;
  opacity: 0.7;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .about__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__images {
    order: -1;
  }

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

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

  .gallery__item--1 {
    grid-column: span 2;
    height: 300px;
  }

  .gallery__item {
    height: 200px;
  }

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

  .territory__image {
    height: 200px;
  }

  .location__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location__map {
    order: -1;
  }
}

@media (max-width: 1200px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 12px 20px;
    width: calc(100% - 32px);
    top: 10px;
  }

  .header--scrolled {
    top: 8px;
    padding: 10px 20px;
  }

  .header__nav {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .header__logo {
    font-size: 26px;
  }

  .header__mobile-nav {
    top: 72px;
    width: calc(100% - 32px);
  }

  .about {
    padding: 60px 24px;
  }

  .about__image--large {
    height: 220px;
  }

  .about__image--small {
    height: 150px;
  }

  .amenities {
    padding: 60px 24px;
  }

  .amenities__grid {
    gap: 16px;
  }

  .amenities__card {
    padding: 28px 20px;
  }

  .gallery {
    padding: 60px 24px;
  }

  .gallery__toggle {
    flex-direction: column;
    gap: 12px;
  }

  .gallery__grid {
    gap: 12px;
  }

  .gallery__item--1 {
    height: 250px;
  }

  .gallery__item {
    height: 180px;
  }

  .territory {
    padding: 60px 24px;
  }

  .territory__grid {
    gap: 16px;
  }

  .territory__image {
    height: 180px;
  }

  .territory__content {
    padding: 20px;
  }

  .pricing {
    padding: 60px 24px;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing__card--featured {
    order: -1;
  }

  .faq {
    padding: 60px 24px;
  }

  .faq__question {
    padding: 20px 24px;
  }

  .faq__question-text {
    font-size: 16px;
  }

  .faq__answer-text {
    font-size: 15px;
    padding: 0 24px 20px;
  }

  .location {
    padding: 60px 24px;
  }

  .location__buttons {
    flex-direction: column;
  }

  .location__btn {
    justify-content: center;
  }

  .booking {
    padding: 40px 24px;
  }

  .booking__subtitle {
    font-size: 16px;
  }

  .booking__cta {
    padding: 14px 32px;
    font-size: 15px;
  }

  .booking-widget-section {
    padding: 60px 24px;
  }

  .attractions {
    padding: 60px 24px;
  }

  .attractions__item-toggle {
    padding: 16px 20px;
  }

  .attractions__item-title {
    font-size: 18px;
  }

  .attractions__item-icon {
    width: 42px;
    height: 42px;
  }

  .attractions__item-icon svg {
    width: 20px;
    height: 20px;
  }

  .attractions__item-body {
    padding: 0 20px 20px;
  }

  .attractions__item-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .attractions__item-gallery img {
    height: 120px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 10px 16px;
    width: calc(100% - 24px);
    top: 8px;
    border-radius: 28px;
  }

  .header--scrolled {
    top: 6px;
    padding: 8px 16px;
  }

  .header__logo {
    font-size: 22px;
  }

  .header__mobile-nav {
    top: 64px;
    width: calc(100% - 24px);
  }

  .hero__badge {
    padding: 8px 16px;
    font-size: 10px;
    letter-spacing: .1em;
    white-space: nowrap;
    margin-bottom: 24px;
  }

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

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

  .about__image--large {
    grid-column: 1;
    height: auto;
    aspect-ratio: 16/10;
  }

  .about__image--small {
    height: auto;
    aspect-ratio: 16/10;
  }

  .about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 24px;
    padding-top: 20px;
  }

  .about__stat-number {
    font-size: 28px;
  }

  .about__stat-label {
    font-size: 11px;
    line-height: 1.2;
  }

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

  .gallery {
    padding: 30px 24px 20px;
  }

  .gallery__header {
    margin-bottom: 24px;
  }

  .gallery__title {
    font-size: 24px;
  }

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

  .gallery__item--1,
  .gallery__item {
    grid-column: 1;
    height: auto;
    aspect-ratio: 16/10;
  }

  .territory {
    padding: 20px 24px 40px;
  }

  .territory__header {
    margin-bottom: 24px;
  }

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

  .territory__image {
    height: auto;
    aspect-ratio: 16/10;
  }

  .booking-widget-section {
    padding: 40px 24px;
  }

  .faq {
    padding: 40px 24px;
  }

  .faq__header {
    margin-bottom: 30px;
  }

  .attractions__item-header {
    gap: 12px;
  }

  .attractions__item-toggle {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
  }

  .attractions__item-icon {
    width: 38px;
    height: 38px;
  }

  .attractions__item-icon svg {
    width: 18px;
    height: 18px;
  }

  .attractions__item-title {
    font-size: 16px;
  }

  .attractions__item-arrow {
    width: 24px;
    height: 24px;
    touch-action: manipulation;
  }

  .attractions__item-arrow::before {
    width: 10px;
  }

  .attractions__item-arrow::after {
    height: 10px;
  }

  .attractions__item-body {
    padding: 0 16px 20px;
  }

  .attractions__item-body p {
    font-size: 14px;
  }

  .attractions__item-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .attractions__item-gallery img {
    height: auto;
    aspect-ratio: 4/3;
  }

  .attractions__item-btn {
    display: block;
    text-align: center;
    padding: 14px 20px;
  }
}

/* Print Styles */
@media print {
  .header,
  .whatsapp-bubble,
  .lightbox,
  .booking__cta,
  .pricing__cta,
  .location__btn {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 40px 20px;
  }

  body {
    font-size: 12pt;
    color: #000;
  }
}
