  :root {
  /* ── СВЕТЛЫЕ ТОНА ── */
    --cream:        #f5f0e8;   /* тёплая слоновая кость — основной фон */
    --warm-cream:   #ece5d5;   /* тёплый лён — Experience, FAQ фон */
    --warm-sand:    #d3c2a8;   /* тёплый песок — Pricing фон, рамки */
    --sandstone:    #c8935a;   /* янтарный коньяк — главный акцент */

  /* ── ТЁМНЫЕ ТОНА ── */
    --forest:       #28382c;   /* глубокий лесной — nav, footer, тёмные секции */
    --moss:         #3d5040;   /* мох — ховеры, карточки на тёмном */
    --sage:         #98aa94;   /* шалфей — вторичный текст на тёмном */
    --deep-sage:    #6b8070;   /* насыщенный шалфей — декор */
    --eucalyptus:   #5d8a6a;   /* эвкалипт — лейблы, иконки на светлом */
    --mist:         #dce9d4;   /* туманный тинт — фон карточек */

    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans:  'Jost', sans-serif;

    --text:         #2c2c28;   /* основной текст */
    --text-heading: #28382c;   /* заголовки на светлом = forest */
    --text-main:    #383d30;   /* параграфы на светлом */
  }

  /* AI-readable summary — visible to crawlers and AI agents, hidden from human visitors */
  .ai-summary {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    font-weight: 300;
    line-height: 1.7;
  }

  /* ── NAVIGATION ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.5s, padding 0.4s;
    background: var(--forest); /* rgba(40, 56, 44, 0.92);   /* тёмный лесной зелёный с прозрачностью */
    backdrop-filter: blur(12px);
  }
  nav.scrolled {
    background: var(--forest);
    backdrop-filter: blur(10px);
    padding: 1rem 3rem;
  }
  .nav-logo {
    font-family: var(--serif);
    font-size: 2rem;
    color: #fff;
    letter-spacing: 0.05em;
    text-decoration: none;
    font-weight: 400;
  }
  .nav-logo span { color: var(--sandstone); }
  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    color: rgba(232, 240, 232, 0.85);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--sandstone); }
  .nav-cta,
      nav a[href="#booking"] {
      background-color: var(--sandstone) !important;
      color: #1a2318 !important;
      padding: 0.8rem 1.9rem !important;
      border-radius: 4px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: all 0.25s ease;
      margin-left: 1rem;
}

.nav-cta:hover,
    nav a[href="#booking"]:hover {
  background-color: var(--warm-sand) !important;
  color: var(--forest) !important;
  transform: translateY(-1px);
}


  /* ── HERO ── */

#home {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image:
    image-set(
      url('/static/images/full/hargvard-lookout-view-2301w.webp') type('image/webp') 1x,
      url('/static/images/originals/hargvard-lookout-view-hero.jpg') type('image/jpeg') 1x
    );
  background-image: url('/static/images/full/hargvard-lookout-view-2301w.webp');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,18,10,0.38) 0%, rgba(10,18,10,0.72) 100%);
  z-index: 2;
  /* можно добавить ещё один слой для затемнения боков, если фото слишком яркое */
  /* mix-blend-mode: multiply; */   /* опционально */
}

/* если хочешь чуть больше атмосферы */
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 70%, transparent 30%, rgba(10,18,10,0.25) 80%);
  pointer-events: none;
}

  .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 2rem;
    animation: fadeUp 1.2s ease both;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow {
    font-size: 0.95rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sandstone);
    margin-bottom: 1.5rem;
    font-family: var(--sans);
    font-weight: 400;
    animation: fadeUp 1.2s 0.2s ease both;
  }
  .hero-title {
    font-family: var(--serif);
    font-size: clamp(3rem, 7vw, 6rem);
    color: #fff;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    animation: fadeUp 1.2s 0.4s ease both;
  }
  .hero-title em {
    font-style: italic;
    color: var(--mist);
  }
  .hero-sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.08em;
    margin-bottom: 3rem;
    font-weight: 300;
    animation: fadeUp 1.2s 0.6s ease both;
  }
  .hero-sub span { color: var(--sandstone); }

  .hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    justify-content: center;
    animation: fadeUp 1.2s 0.8s ease both;
  }
  .btn-primary,
.btn-outline {
  padding: 1rem 2.4rem;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--sandstone);
  color: #1a2318 !important;
  border: none;
}

.btn-primary:hover {
  background-color: #db9f68;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,147,90,0.35);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--warm-cream);
  color: var(--warm-cream) !important;
}

.btn-outline:hover {
  background: rgba(236,229,213,0.12);
  border-color: var(--cream);
  color: var(--cream) !important;
}
  .hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeUp 1.2s 1.2s ease both;
    cursor: pointer;
  }
  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
  }

  /* ── SECTION SHARED ── */
  section {
    background: var(--cream);
    padding: 6rem 0;
    transition: background 0.4s ease; }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
  }

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── EXPERIENCE BLOCKS ── */
  #experience {
  background: var(--warm-cream);
  transition: background 0.4s ease;
  padding: 9rem 0 11rem;
  color: var(--text-main);
}

.experience-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-label {
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--eucalyptus);
  margin-bottom: 1rem;
  font-weight: 400;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-heading);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--sage);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  max-width: 1400px;
  margin: 4rem auto 0;
  padding: 0 1.5rem;
}

/* Сами карточки */
.exp-card {
  background: var(--mist);
  color: #3a4a3b;
  border-radius: 12px;
  padding: 2.8rem 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);   /* тонкая тень */
  transition: all 0.35s ease;
  aspect-ratio: 3 / 4;            /* чуть квадратнее, но не полностью */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2.5rem 2rem;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(200,220,210,0.4);   /* очень лёгкая рамка */
}

.exp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);

}

/* иконки — делаем их крупнее и в цвет акцента */
.exp-icon {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: var(--sandstone);
}

/* заголовки карточек — чуть темнее и жирнее */
.exp-card h3 {
  font-size: 1.2rem;
  margin: 0 0 0.8rem;
  color: var(--forest);
  font-weight: 500;
  line-height: 1.3;
}

/* текст описания — чуть светлее */
.exp-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-main);
  flex-grow: 1;                     /* текст растягивается, чтобы заполнить пространство */
  display: flex;
  align-items: center;              /* центрируем текст вертикально, если нужно */
}

.experience-grid {
  position: relative;
}

.experience-grid::before {
  content: '';
  position: absolute;
  inset: -10% 0;
  background: radial-gradient(circle at 30% 40%, rgba(200, 230, 220, 0.18) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}


  /* ── ABOUT / STORY ── */
  #about { background: var(--cream);
  transition: background 0.4s ease; }

  .about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  .about-visual {
    position: relative;
  }
  .about-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--warm-sand);
    position: relative;
    overflow: hidden;
  }

  /* Simulated interior scene */
  .about-img-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("/static/images/full/house-in-sunset-880w.webp") center / cover no-repeat;
  }

  .about-img-main::after {
    content: 'Eagle\'s Nest';
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a3a1a;
    letter-spacing: 0.18em;
    font-style: italic;
    text-shadow: 0 1px 8px rgba(255,255,255,0.9), 0 0 4px rgba(255,255,255,1);
  }
  .about-img-accent {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    width: 55%;
    aspect-ratio: 1;
    background: url("/static/images/full/hargvard-lookout-view-800w.webp") center / cover no-repeat;
    border: 6px solid var(--cream);
  }
  .about-img-accent .stat-num,
  .about-img-accent .stat-label {
    position: absolute;
    right: 0.75rem;
  }
  .about-img-accent .stat-num {
    top: 0.6rem;
    font-family: var(--serif);
    font-size: 1.6rem;
    color: #1a3a1a;
    font-weight: 400;
    line-height: 1;
    text-shadow: 0 1px 5px rgba(255,255,255,0.8);
  }
  .about-img-accent .stat-label {
    top: 2.4rem;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1a3a1a;
    text-shadow: 0 1px 4px rgba(255,255,255,0.8);
  }
  .about-text p {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.9;
  }
  .about-text .lead {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--sage);
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  .feature-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
  }
  .feature-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    background: rgba(40,56,44,0.06);
    border: 1px solid rgba(40,56,44,0.14);
    border-radius: 12px;
    padding: 1.1rem 1.3rem 0.9rem;
    min-width: 88px;
    cursor: default;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    animation: featureAppear 0.5s ease both;
  }
  .feature-tag:nth-child(1) { animation-delay: 0.05s; }
  .feature-tag:nth-child(2) { animation-delay: 0.12s; }
  .feature-tag:nth-child(3) { animation-delay: 0.19s; }
  .feature-tag:nth-child(4) { animation-delay: 0.26s; }
  .feature-tag:nth-child(5) { animation-delay: 0.33s; }
  .feature-tag:nth-child(6) { animation-delay: 0.40s; }
  .feature-tag:nth-child(7) { animation-delay: 0.47s; }
  @keyframes featureAppear {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .feature-tag:hover {
    background: rgba(40,56,44,0.11);
    border-color: var(--sandstone);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(40,56,44,0.12);
  }
  .feature-icon {
    font-size: 1.1rem;
    line-height: 1;
    color: var(--sandstone);
    transition: transform 0.3s ease;
  }
  .feature-tag:hover .feature-icon {
    transform: scale(1.2) rotate(-5deg);
  }
  .feature-tag span {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-heading);
    font-weight: 400;
    text-align: center;
    line-height: 1.3;
  }

  /* ── WHY GUESTS ── */
  #why {
    background: var(--forest);
    transition: background 0.4s ease;
    position: relative;
  }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .why-item {
    padding: 1.5rem 1.8rem;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    position: relative;
    transition: border-color 0.4s;
  }
  .why-item:hover { border-color: rgba(201,168,124,0.3); }
  .why-item::before { content: none; }
  .why-item h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--cream);
    font-weight: 400;
    margin-bottom: 1rem;
  }
  .why-item p {
    font-size: 1.1rem;
    color: rgba(200,212,192,0.6);
    line-height: 1.8;
  }
  .why-item .tag {
    display: inline-block;
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sandstone);
    margin-bottom: 1rem;
  }

  /* ── GALLERY ── */
  #gallery { background: var(--cream);
   transition: background 0.4s ease;
   padding: 6rem 0; }
  .gallery-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  .gallery-header .section-title { color: var(--text-heading); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 6px;
  }
  .gallery-cell {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  .gallery-cell:hover .gallery-overlay { opacity: 1; }
  .gallery-cell:hover .gallery-img { transform: scale(1.05); }
  .gc1 { grid-column: span 5; grid-row: span 2; }
  .gc2 { grid-column: span 4; }
  .gc3 { grid-column: span 3; }
  .gc4 { grid-column: span 4; }
  .gc5 { grid-column: span 3; }
  .gc6 { grid-column: span 7; }
  .gc7 { grid-column: span 5; }

  .gallery-img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    transition: transform 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
  }
  .gc1 .gallery-img { min-height: 460px; }
  .gc6 .gallery-img { min-height: 260px; }

  /* Stylised photo simulations */
  .gallery-img.spa {
    background: linear-gradient(135deg, #0d1a0d, #1a3530, #2d5045);
    box-shadow: inset 0 0 80px rgba(201,168,124,0.1);
  }
  .gallery-img.spa::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(201,168,124,0.2), transparent 60%),
                radial-gradient(ellipse at 30% 20%, rgba(100,180,160,0.15), transparent 40%);
  }
  .gallery-img.sauna {
    background: linear-gradient(160deg, #2a1505, #5a2a0a, #3d1a05);
  }
  .gallery-img.sauna::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(255,140,50,0.25), transparent 60%);
  }
  .gallery-img.forest {
    background: linear-gradient(180deg, #0a150a, #1a2d1a, #2d4a28);
  }
  .gallery-img.forest::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(122,153,112,0.3), transparent 60%),
                linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
  }
  .gallery-img.sunset {
    background: linear-gradient(180deg, #1a0a05, #4a2010, #c9603a, #e8a050, #d4855a);
  }
  .gallery-img.interior {
    background: linear-gradient(135deg, #1a1208, #2d2010, #3d3018);
  }
  .gallery-img.interior::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 40% 30%, rgba(201,168,124,0.3), transparent 50%);
  }
  .gallery-img.garden {
    background: linear-gradient(135deg, #0f1a0f, #1a3020, #2d5035);
  }
  .gallery-img.garden::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(122,153,112,0.25), transparent 50%);
  }

  .gallery-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem 1.5rem 1.2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    font-family: var(--serif);
    font-size: 1.1rem;
    color: #fff;
    font-style: italic;
    font-weight: 300;
    text-shadow: 0 1px 6px rgba(0,0,0,0.8);
  }
  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(201,168,124,0.1);
    border: 1px solid rgba(201,168,124,0.3);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gallery-overlay span {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
  }

  .gallery-note { display: none; }

  /* Gallery slides */
  .gallery-slide { display: none; }
  .gallery-slide.active { display: grid; }

  /* Gallery nav controls */
  .gallery-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
  }
  .gallery-nav-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
  }
  .gallery-slide-label {
    font-family: var(--serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--sage);
    letter-spacing: 0.1em;
    margin: 0;
  }
  .gallery-dots {
    display: flex;
    gap: 0.5rem;
  }
  .gallery-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: rgba(74,94,66,0.25);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
  }
  .gallery-dot.active { background: var(--sage); }
  .gallery-arrow {
    background: none;
    border: 1px solid rgba(74,94,66,0.3);
    color: var(--forest);
    font-size: 1.2rem;
    width: 2.8rem;
    height: 2.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s, background 0.3s;
    flex-shrink: 0;
  }
  .gallery-arrow:hover {
    border-color: var(--sage);
    background: rgba(74,94,66,0.06);
  }

  /* Lightbox */
  .gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5,15,5,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
  }
  .gallery-lightbox.open { display: flex; }
  .lb-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .lb-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    display: block;
  }
  .lb-caption {
    color: rgba(200,212,192,0.7);
    font-family: var(--serif);
    font-size: 0.9rem;
    font-style: italic;
    letter-spacing: 0.1em;
    margin: 0;
  }
  .lb-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: 1px solid rgba(200,212,192,0.3);
    color: rgba(200,212,192,0.7);
    font-size: 1.4rem;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
  }
  .lb-close:hover { border-color: rgba(200,212,192,0.8); color: #fff; }
  .lb-prev, .lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid rgba(200,212,192,0.3);
    color: rgba(200,212,192,0.7);
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
  }
  .lb-prev:hover, .lb-next:hover { border-color: rgba(200,212,192,0.8); color: #fff; }
  .lb-prev { left: 1.5rem; }
  .lb-next { right: 1.5rem; }

  /* Lightbox */
  .gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5,15,5,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
  }
  .gallery-lightbox.open { display: flex; }
  .lb-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .lb-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    display: block;
  }
  .lb-caption {
    color: rgba(200,212,192,0.7);
    font-family: var(--serif);
    font-size: 0.9rem;
    font-style: italic;
    letter-spacing: 0.1em;
    margin: 0;
  }
  .lb-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: 1px solid rgba(200,212,192,0.3);
    color: rgba(200,212,192,0.7);
    font-size: 1.4rem;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
  }
  .lb-close:hover { border-color: rgba(200,212,192,0.8); color: #fff; }
  .lb-prev, .lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid rgba(200,212,192,0.3);
    color: rgba(200,212,192,0.7);
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
  }
  .lb-prev:hover, .lb-next:hover { border-color: rgba(200,212,192,0.8); color: #fff; }
  .lb-prev { left: 1.5rem; }
  .lb-next { right: 1.5rem; }

  /* ── PRICING ── */
  #pricing {background: var(--warm-sand);
   transition: background 0.4s ease; }
  .pricing-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
  }
  .pricing-intro p {
    color: var(--text);
    opacity: 0.7;
    font-size: 1.05rem;
  }
  .pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .price-card {
    border: 1px solid rgba(74,94,66,0.15);
    padding: 2rem 2.2rem;
    position: relative;
    background: #fff;
    transition: border-color 0.4s, box-shadow 0.4s;
    display: flex;
    flex-direction: column;
  }
  .price-card:hover {
    border-color: var(--sandstone);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  }
  .price-card.featured {
    background: var(--forest);
    border-color: var(--forest);
  }
  .price-card.featured .price-period,
  .price-card.featured .price-desc,
  .price-card.featured .price-detail { color: rgba(200,212,192,0.6); }
  .price-card.featured h3 { color: var(--cream); }
  .price-card.featured .price-amount { color: var(--sandstone); }
  .price-badge {
    position: absolute;
    top: -1px; right: 2rem;
    background: var(--sandstone);
    color: var(--forest);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
    font-weight: 500;
  }
  .price-card h3 {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 0.3rem;
  }
  .price-period {
    font-size: 0.88rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1.2rem;
  }
  .price-amount {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--forest);
    line-height: 1;
    margin-bottom: 0.3rem;
  }
  .price-amount sup { font-size: 1.2rem; vertical-align: super; }
  .price-per {
    font-size: 0.88rem;
    color: var(--sage);
    margin-bottom: 1.2rem;
  }
  .price-divider {
    height: 1px;
    background: rgba(74,94,66,0.1);
    margin: 1.2rem 0;
  }
  .price-card.featured .price-divider { background: rgba(255,255,255,0.1); }
  .price-desc {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex: 1;
  }
  .price-detail {
    font-size: 0.9rem;
    color: rgba(58,58,53,0.6);
    margin-top: auto;
  }

  .inclusions {
    background: var(--forest);
    padding: 2.2rem 2.5rem;
    margin-top: 2rem;
  }
  .inclusions h3 {
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--cream);
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .inclusions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 1.5rem;
  }
  .inclusion-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(200,212,192,0.85);
    font-size: 1rem;
  }
  .inclusion-item .inc-icon {
    font-size: 1rem;
    flex-shrink: 0;
    color: var(--sandstone);
    font-style: normal;
  }

  /* ── BOOKING ── */
  #booking { background: var(--forest); transition: background 0.4s ease; padding: 5rem 0; }

  /* section header — full width above columns */
  .booking-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 4rem;
  }
  .booking-header .section-label { color: var(--eucalyptus); }
  .booking-header .section-title { color: var(--cream); margin-bottom: 1rem; }
  .booking-intro {
    color: rgba(200,212,192,0.65);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
  }

  /* two-column split: form left, info+calendar right */
  .booking-split {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  .booking-info .section-label { color: var(--eucalyptus); }
  .booking-info .section-title { color: var(--cream); }
  .booking-info p { color: rgba(200,212,192,0.7); font-size: 0.9rem; margin-bottom: 1.5rem; }
  .booking-contact {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    padding: 2rem;
  }
  .contact-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.9rem;
    color: rgba(200,212,192,0.7);
    font-size: 0.85rem;
  }
  .contact-row:last-child { margin-bottom: 0; }
  .contact-row .icon { font-size: 1rem; color: var(--sandstone); width: 20px; flex-shrink: 0; }
  .copy-email {
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
  }
  .copy-email:hover { color: var(--sandstone); }
  .contact-link {
    color: inherit;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
  }
  .contact-link:hover { color: var(--sandstone); }

  /* Toast notification */
  #email-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(1rem);
    background: var(--eucalyptus, #4a6741);
    color: #fff;
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 9999;
  }
  #email-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  .booking-form {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3rem;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { margin-bottom: 1.5rem; }
  .form-group label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(200,212,192,0.6);
    margin-bottom: 0.5rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--cream);
    padding: 0.85rem 1rem;
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--sandstone); }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(200,212,192,0.3); }
  .form-group select option { background: var(--moss); }
  .form-group textarea { height: 100px; resize: none; }
  .form-submit {
    width: 100%;
    background: var(--sandstone);
    color: var(--forest);
    border: none;
    padding: 1rem;
    font-family: var(--sans);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 0.5rem;
  }
  .form-submit:hover { background: var(--warm-sand); }
  .form-note {
    font-size: 0.72rem;
    color: rgba(200,212,192,0.4);
    text-align: center;
    margin-top: 1rem;
  }
  .field-error {
    display: block;
    font-size: 0.7rem;
    color: rgba(220,100,80,0.9);
    margin-top: 0.35rem;
    min-height: 1em;
  }
  #formStatus {
    margin-top: 1rem;
    padding: 0.9rem 1.2rem;
    font-size: 0.82rem;
    text-align: center;
    display: none;
  }
  #formStatus.success {
    display: block;
    background: rgba(90,160,90,0.15);
    border: 1px solid rgba(90,160,90,0.35);
    color: rgba(180,230,180,0.9);
  }
  #formStatus.error {
    display: block;
    background: rgba(200,80,60,0.12);
    border: 1px solid rgba(200,80,60,0.3);
    color: rgba(230,160,150,0.9);
  }
  .form-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
  }

  /* ── FAQ ── */
  #faq { background: var(--warm-cream);
  transition: background 0.4s ease;
   padding: 5rem 0; }
  .faq-container { max-width: 800px; margin: 0 auto; }
  .faq-header { text-align: center; margin-bottom: 3rem; }
  .faq-item {
    border-bottom: 1px solid rgba(74,94,66,0.15);
  }
  .faq-q {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--forest);
    font-weight: 400;
  }
  .faq-q:hover { color: var(--eucalyptus); }
  .faq-q .faq-toggle {
    font-size: 1.4rem;
    color: var(--sandstone);
    transition: transform 0.3s;
    font-family: var(--sans);
    font-weight: 300;
  }
  .faq-item.open .faq-toggle { transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s;
    font-size: 0.88rem;
    color: rgba(58,58,53,0.7);
    line-height: 1.8;
  }
  .faq-item.open .faq-a {
    max-height: 300px;
    padding-bottom: 1.5rem;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--forest);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  .footer-brand .logo {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--cream);
    font-weight: 300;
    margin-bottom: 1rem;
    display: block;
  }
  .footer-brand .logo span { color: var(--sandstone); }
  .footer-brand p {
    font-size: 0.83rem;
    color: rgba(200,212,192,0.45);
    line-height: 1.8;
    max-width: 260px;
  }
  .footer-col h4 {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(200,212,192,0.5);
    margin-bottom: 1.2rem;
  }
  .footer-col a {
    display: block;
    color: rgba(200,212,192,0.6);
    text-decoration: none;
    font-size: 0.83rem;
    margin-bottom: 0.6rem;
    transition: color 0.3s;
  }
  .footer-col a:hover { color: var(--sandstone); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.73rem;
    color: rgba(200,212,192,0.3);
  }


  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 1.2rem 1.5rem; }
    nav.scrolled { padding: 0.8rem 1.5rem; }
    .nav-links { display: none; }
    .container { padding: 0 1.5rem; }
    .experience-grid { grid-template-columns: 1fr 1fr; }
    .about-split { grid-template-columns: 1fr; gap: 3rem; }
    .about-img-main { aspect-ratio: 16/9; }
    .about-img-accent { display: none; }
    .why-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gc1, .gc2, .gc3, .gc4, .gc5, .gc6, .gc7 { grid-column: span 1; grid-row: span 1; }
    .pricing-cards { grid-template-columns: 1fr; }
    .inclusions-grid { grid-template-columns: 1fr 1fr; }
    .booking-header { margin-bottom: 3rem; }
    .booking-split { grid-template-columns: 1fr; gap: 3rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  }

  /* Адаптивность карточек */
@media (max-width: 768px) {
  #experience {
    padding: 6rem 0 8rem;           /* уменьшаем вертикальные отступы секции */
  }

  .experience-header {
    margin-bottom: 3rem;            /* меньше отступа под заголовком */
  }

  .experience-grid {
    gap: 2.5rem;                    /* расстояние между карточками на мобилке — не слишком большое */
    padding: 0 1rem;
  }

  .exp-card {
    height: auto;                   /* на мобильных снимаем фиксированную высоту */
    min-height: 360px;              /* но оставляем минимальную, чтобы не было слишком маленько */
    padding: 2.2rem 1.8rem;
  }

  .section-title {
    font-size: 2.6rem;              /* уменьшаем заголовок на мобильных */
  }
}
/* На экранах меньше 1200px — уменьшаем размер карточек и делаем 3 в ряд */
@media (max-width: 1200px) {
  .experience-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
  }
  .exp-card {
    padding: 1.8rem 1.6rem;
  }
}

/* На экранах меньше 992px — 2 в ряд */
@media (max-width: 992px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* На мобильных — 1 в столбик, высота по контенту */
@media (max-width: 640px) {
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .exp-card {
    aspect-ratio: auto;           /* на мобильных снимаем квадрат, чтобы текст не сжимался */
    height: auto;
    min-height: 340px;
    padding: 2.2rem 1.8rem;
  }
}

/* ── AVAILABILITY CALENDAR ──────────────────────────────────────────────────── */
.avail-section {
  padding: 0;
  margin-top: 0;
}
.avail-legend {
  display: flex;
  gap: 1.2rem;
  margin: 0.8rem 0 1.2rem;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(200,212,192,0.6);
}
.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.legend-dot.avail    { background: var(--eucalyptus); }
.legend-dot.blocked  { background: rgba(200,80,60,0.75); }
.legend-dot.selected { background: var(--sandstone); }

/* calendar grid wrapper — single month */
.avail-calendar {
  display: block;
  width: 100%;
}
.avail-loading {
  color: rgba(200,212,192,0.4);
  font-size: 0.85rem;
  padding: 1.5rem 0;
}

/* single month block */
.cal-month {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 1.5rem;
}
.cal-month-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.cal-month-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.05em;
}
.cal-nav-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(200,212,192,0.6);
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.cal-nav-btn:hover { border-color: var(--sandstone); color: var(--sandstone); }

/* 7-column day grid */
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-dow {
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(200,212,192,0.35);
  padding-bottom: 0.6rem;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--cream);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  user-select: none;
}
.cal-day:hover:not(.blocked):not(.past):not(.empty) {
  border-color: var(--sandstone);
  color: var(--sandstone);
}
.cal-day.empty   { cursor: default; }
.cal-day.past    { color: rgba(200,212,192,0.2); cursor: default; }
.cal-day.blocked {
  background: rgba(200,80,60,0.18);
  color: rgba(200,80,60,0.55);
  cursor: not-allowed;
  text-decoration: line-through;
}
.cal-day.in-range {
  background: rgba(200,147,90,0.15);
}
.cal-day.selected-start,
.cal-day.selected-end {
  background: var(--sandstone);
  color: var(--forest);
  font-weight: 500;
}
.cal-day.today {
  border-color: rgba(200,212,192,0.3);
}

.avail-note {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  color: rgba(200,212,192,0.3);
  letter-spacing: 0.05em;
}

.cal-hint {
  margin-top: 0.6rem;
  font-size: 0.7rem;
  color: var(--sandstone);
  min-height: 1.1em;
  letter-spacing: 0.03em;
}
