/* ============================================================
   У ЕВГЕНИИ — Premium CSS v2 (Mobile-First, Fixed)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ── VARIABLES ─────────────────────────────────────────── */
:root {
  --sand:        #f5efe6;
  --sand-deep:   #ede4d4;
  --warm-white:  #faf8f4;
  --wood:        #a07850;
  --wood-dark:   #7a5c38;
  --wood-light:  #c9a97a;
  --sea:         #4a8fa8;
  --sea-light:   #7ab8cc;
  --sage-light:  #c8d8c2;
  --charcoal:    #2c2a25;
  --mid:         #6b6560;
  --light:       #9e9890;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', sans-serif;
  --ease-silk:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --section-pad: clamp(52px, 9vw, 110px);
  --radius:      14px;
  --radius-lg:   24px;
}

/* ── RESET (critical overflow fix) ─────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: var(--sans); }

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.reveal        { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-silk), transform 0.8s var(--ease-silk); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left   { opacity: 0; transform: translateX(-28px); transition: opacity 0.85s var(--ease-silk), transform 0.85s var(--ease-silk); }
.reveal-right  { opacity: 0; transform: translateX(28px);  transition: opacity 0.85s var(--ease-silk), transform 0.85s var(--ease-silk); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale  { opacity: 0; transform: scale(0.95); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }
.delay-5 { transition-delay: 0.50s; }

/* ── LOADER ─────────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--charcoal);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
  transition: opacity 0.6s var(--ease-silk), visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { font-family: var(--serif); font-size: 34px; font-weight: 300; color: white; animation: loaderPulse 1.4s ease-in-out infinite; }
@keyframes loaderPulse { 0%,100%{opacity:.5} 50%{opacity:1} }
.loader-bar { width: 110px; height: 2px; background: rgba(255,255,255,0.12); border-radius: 1px; overflow: hidden; }
.loader-bar-fill { height: 100%; background: var(--wood-light); animation: loaderFill 1.2s var(--ease-silk) forwards; }
@keyframes loaderFill { from{width:0} to{width:100%} }

/* ── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: background 0.4s var(--ease-silk), padding 0.4s;
}
.nav.scrolled {
  background: rgba(250,248,244,0.94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 12px 20px;
  box-shadow: 0 1px 20px rgba(44,42,37,0.09);
}
.nav-logo {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: white; letter-spacing: 0.02em; transition: color 0.4s;
  white-space: nowrap; flex-shrink: 0;
}
.nav.scrolled .nav-logo { color: var(--charcoal); }
.nav-links { display: none; gap: 26px; list-style: none; flex: 1; justify-content: center; }
.nav-links a { font-size: 12px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.82); transition: color 0.3s; }
.nav.scrolled .nav-links a { color: var(--mid); }
.nav-links a:hover { color: var(--wood); }
.nav-cta {
  font-size: 12px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 10px 18px; border-radius: 100px;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3);
  color: white; transition: all 0.3s var(--ease-silk);
  white-space: nowrap; flex-shrink: 0;
}
.nav.scrolled .nav-cta { background: var(--wood); border-color: var(--wood); }
.nav-cta:hover { background: var(--wood-dark); border-color: var(--wood-dark); }

@media (min-width: 768px) {
  .nav { padding: 22px 44px; }
  .nav.scrolled { padding: 14px 44px; }
  .nav-links { display: flex; }
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; width: 100%;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(18,15,10,0.18) 0%,
      rgba(18,15,10,0.06) 30%,
      rgba(18,15,10,0.52) 72%,
      rgba(18,15,10,0.84) 100%),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
  animation: heroZoom 14s var(--ease-silk) forwards;
}
@keyframes heroZoom { from{transform:scale(1.07)} to{transform:scale(1)} }

.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 1;
  animation: orbFloat 18s ease-in-out infinite;
}
.hero-orb-1 { width: 320px; height: 320px; top: 6%; left: -80px; background: radial-gradient(circle, rgba(74,143,168,0.14), transparent 70%); }
.hero-orb-2 { width: 260px; height: 260px; bottom: 22%; right: -70px; background: radial-gradient(circle, rgba(160,120,80,0.11), transparent 70%); animation-delay: -9s; }
@keyframes orbFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-26px)} }

.hero-content {
  position: relative; z-index: 2;
  padding: 0 20px 80px;
  width: 100%; max-width: 680px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.17em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  opacity: 0; animation: fadeUp 0.8s 0.7s var(--ease-silk) forwards;
}
.hero-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sea-light); animation: dotPulse 2.2s ease-in-out infinite; flex-shrink: 0; }
@keyframes dotPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.7)} }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 10.5vw, 82px);
  font-weight: 300; line-height: 1.04; color: white;
  letter-spacing: -0.01em; margin-bottom: 16px;
  opacity: 0; animation: fadeUp 0.9s 0.85s var(--ease-silk) forwards;
}
.hero-title em { font-style: italic; color: var(--wood-light); }

.hero-subtitle {
  font-size: clamp(14px, 3.5vw, 16px); font-weight: 300; line-height: 1.74;
  color: rgba(255,255,255,0.74); max-width: 440px; margin-bottom: 34px;
  opacity: 0; animation: fadeUp 0.9s 1.0s var(--ease-silk) forwards;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 11px;
  opacity: 0; animation: fadeUp 0.9s 1.15s var(--ease-silk) forwards;
}
@keyframes fadeUp  { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn  { from{opacity:0} to{opacity:1} }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 15px 26px; border-radius: 100px; background: var(--wood); color: white;
  box-shadow: 0 8px 26px rgba(160,120,80,0.36);
  transition: all 0.3s var(--ease-silk); white-space: nowrap;
}
.btn-primary:hover { background: var(--wood-dark); transform: translateY(-2px); box-shadow: 0 12px 34px rgba(160,120,80,0.44); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 400; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 15px 22px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.32); color: white;
  backdrop-filter: blur(6px); transition: all 0.3s var(--ease-silk); white-space: nowrap;
}
.btn-ghost:hover { background: rgba(255,255,255,0.11); border-color: rgba(255,255,255,0.55); }

/* Desktop floating price */
.hero-price-float { display: none; }
@media (min-width: 900px) {
  .hero-price-float {
    display: block; position: absolute; top: 50%; right: 44px;
    transform: translateY(-50%); z-index: 2;
    background: rgba(250,248,244,0.13);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius); padding: 22px 26px; text-align: center;
    opacity: 0; animation: fadeIn 1s 1.6s var(--ease-silk) forwards;
  }
  .hero-price-float .p-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.58); margin-bottom: 7px; }
  .hero-price-float .p-price { font-family: var(--serif); font-size: 38px; font-weight: 300; color: white; line-height: 1; }
  .hero-price-float .p-per   { font-size: 12px; color: rgba(255,255,255,0.52); margin-top: 5px; }
}

/* Scroll hint */
.hero-scroll { display: none; }
@media (min-width: 460px) {
  .hero-scroll {
    display: flex; position: absolute; bottom: 26px; right: 20px; z-index: 2;
    flex-direction: column; align-items: center; gap: 7px;
    opacity: 0; animation: fadeIn 1s 1.9s var(--ease-silk) forwards;
  }
  .hero-scroll span { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); writing-mode: vertical-rl; }
  .scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom,rgba(255,255,255,0.5),transparent); animation: scrollPulse 2.2s ease-in-out infinite; }
  @keyframes scrollPulse { 0%,100%{opacity:.38} 50%{opacity:1} }
}

@media (min-width: 768px) { .hero-content { padding: 0 44px 90px; } }
@media (min-width: 1024px) { .hero-content { padding: 0 72px 100px; } }

/* ── INTRO STRIP ─────────────────────────────────────────── */
/* FIXED: grid-based, never overflows */
.intro-strip {
  background: var(--charcoal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 10px;
  padding: 22px 20px;
  width: 100%;
}
.strip-item {
  display: flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,0.7);
  font-size: 12px; font-weight: 300; letter-spacing: 0.04em;
  min-width: 0;
}
.strip-item span:first-child { font-size: 18px; flex-shrink: 0; }
.strip-item span:last-child  { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

@media (min-width: 600px) {
  .intro-strip { grid-template-columns: repeat(4,1fr); gap: 0; padding: 22px 32px; }
  .strip-item  { justify-content: center; font-size: 13px; }
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.section    { padding: var(--section-pad) 0; }
.container  { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.section-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--wood);
  margin-bottom: 14px; display: flex; align-items: center; gap: 11px;
}
.section-eyebrow::before { content:''; display:block; width:26px; height:1px; background:var(--wood); flex-shrink:0; }
.eyebrow-center { justify-content: center; }
.eyebrow-center::before { display: none; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 6vw, 52px); font-weight: 300; line-height: 1.1;
  color: var(--charcoal); letter-spacing: -0.01em; margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--sea); }
.section-subtitle { font-size: 15px; font-weight: 300; line-height: 1.76; color: var(--mid); max-width: 540px; }

/* ── ABOUT ───────────────────────────────────────────────── */
.about { background: var(--warm-white); }
.about-grid { display: grid; gap: 44px; align-items: center; }

.about-images { position: relative; width: 100%; padding-top: 70%; /* aspect ratio box */ }
.about-img-main {
  position: absolute; top: 0; left: 0; width: 77%; height: 87%;
  object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: 0 20px 54px rgba(44,42,37,0.17);
}
.about-img-accent {
  position: absolute; bottom: 0; right: 0; width: 50%; height: 50%;
  object-fit: cover; border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(44,42,37,0.18);
  border: 4px solid var(--warm-white);
}
.about-tag {
  position: absolute; top: 40%; right: -4px;
  background: var(--wood); color: white;
  font-size: 11px; font-weight: 400; letter-spacing: 0.06em;
  padding: 9px 14px; border-radius: 100px; white-space: nowrap;
  box-shadow: 0 8px 22px rgba(160,120,80,0.3);
  animation: tagFloat 4s ease-in-out infinite;
}
@keyframes tagFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-top: 26px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 14px 13px; background: var(--sand); border-radius: var(--radius);
  transition: all 0.3s var(--ease-silk);
}
.about-feature:hover { background: var(--sand-deep); transform: translateY(-2px); }
.about-feature-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.about-feature-text strong { display: block; font-size: 13px; font-weight: 500; margin-bottom: 1px; }
.about-feature-text span  { font-size: 11px; color: var(--mid); font-weight: 300; }

@media (min-width: 860px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 70px; }
  .about-images { padding-top: 0; height: 500px; }
}

/* ── COTTAGES ────────────────────────────────────────────── */
.cottages { background: var(--sand); }
.cottages-intro { text-align: center; max-width: 600px; margin: 0 auto 50px; }
.cottages-intro .section-subtitle { margin: 0 auto; }

.cottages-grid { display: grid; gap: 20px; }

.cottage-card {
  background: var(--warm-white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 4px 20px rgba(44,42,37,0.07);
  transition: all 0.4s var(--ease-silk);
}
.cottage-card:hover { transform: translateY(-5px); box-shadow: 0 22px 54px rgba(44,42,37,0.14); }

.cottage-img-wrap { position: relative; overflow: hidden; width: 100%; height: 220px; }
.cottage-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease-silk); }
.cottage-card:hover .cottage-img { transform: scale(1.06); }

.cottage-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--wood); color: white;
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 6px 13px; border-radius: 100px;
}
.cottage-body { padding: 20px 20px 22px; }
.cottage-name { font-family: var(--serif); font-size: 22px; font-weight: 400; margin-bottom: 8px; }
.cottage-desc { font-size: 14px; font-weight: 300; line-height: 1.68; color: var(--mid); margin-bottom: 16px; }
.cottage-amenities { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.amenity-tag {
  display: flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 400; color: var(--mid);
  background: var(--sand); padding: 5px 11px; border-radius: 100px;
}
.cottage-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--sand-deep);
}
.cottage-price-label { font-size: 11px; color: var(--light); margin-bottom: 1px; }
.cottage-price { font-family: var(--serif); font-size: 26px; font-weight: 400; line-height: 1.1; }
.cottage-book {
  font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--wood);
  display: flex; align-items: center; gap: 5px;
  transition: gap 0.3s; padding: 0; background: none; border: none; cursor: pointer;
}
.cottage-card:hover .cottage-book { gap: 9px; }

@media (min-width: 620px) { .cottages-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1020px) { .cottages-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery { background: var(--warm-white); }
.gallery-intro { margin-bottom: 34px; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
/* Full-width first item */
.gallery-item:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
.gallery-item:not(:first-child) { aspect-ratio: 4/3; }

.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease-silk); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,rgba(44,42,37,0.52),transparent 55%);
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: flex-end; padding: 14px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label { font-size: 13px; font-weight: 400; color: white; letter-spacing: 0.03em; }

/* Desktop gallery: masonry-ish */
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 260px 210px;
    gap: 12px;
  }
  .gallery-item { aspect-ratio: unset !important; height: 100%; }
  .gallery-item:first-child { grid-column: 1 / 3; grid-row: 1; }
  .gallery-item:nth-child(2) { grid-row: 1; }
}

/* ── SEA SECTION ─────────────────────────────────────────── */
.sea-section { position: relative; min-height: 440px; display: flex; align-items: center; overflow: hidden; }
.sea-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,rgba(18,15,10,0.76) 0%,rgba(18,15,10,0.28) 65%,transparent 100%),
    url('https://images.unsplash.com/photo-1476673160081-cf065607f449?w=1400&q=80&auto=format&fit=crop') center/cover no-repeat;
}
.sea-content { position: relative; z-index: 2; padding: 72px 20px; max-width: 540px; width: 100%; }
.sea-content .section-title     { color: white; }
.sea-content .section-eyebrow   { color: var(--sea-light); }
.sea-content .section-eyebrow::before { background: var(--sea-light); }
.sea-content .section-subtitle  { color: rgba(255,255,255,0.71); max-width: 420px; }
.sea-stats { display: flex; gap: 32px; margin-top: 36px; flex-wrap: wrap; }
.sea-stat-num   { font-family: var(--serif); font-size: 40px; font-weight: 300; color: white; line-height: 1; }
.sea-stat-label { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.6); letter-spacing: 0.03em; margin-top: 4px; }

@media (min-width: 768px)  { .sea-content { padding: 88px 44px; } }
@media (min-width: 1024px) { .sea-content { padding: 88px 72px; } }

/* ── AMENITIES ───────────────────────────────────────────── */
.amenities { background: var(--sand); }
.amenities-intro { text-align: center; max-width: 580px; margin: 0 auto 46px; }
.amenities-intro .section-subtitle { margin: 0 auto; }

.amenities-grid { display: grid; gap: 14px; }
.amenity-card {
  background: var(--warm-white); border-radius: var(--radius);
  padding: 22px 18px; display: flex; align-items: flex-start; gap: 16px;
  border: 1px solid transparent; transition: all 0.3s var(--ease-silk);
}
.amenity-card:hover { border-color: var(--sand-deep); transform: translateY(-2px); box-shadow: 0 9px 26px rgba(44,42,37,0.08); }
.amenity-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px; background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; flex-shrink: 0; transition: background 0.3s;
}
.amenity-card:hover .amenity-icon-wrap { background: var(--sand-deep); }
.amenity-card-title { font-family: var(--serif); font-size: 19px; font-weight: 400; margin-bottom: 5px; }
.amenity-card-text  { font-size: 14px; font-weight: 300; line-height: 1.64; color: var(--mid); }

@media (min-width: 620px)  { .amenities-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1020px) { .amenities-grid { grid-template-columns: repeat(3,1fr); } }

/* ── BOOKING ─────────────────────────────────────────────── */
.booking { background: var(--charcoal); }
.booking-wrap { display: grid; gap: 44px; align-items: start; }
.booking-left .section-title    { color: white; }
.booking-left .section-eyebrow  { color: var(--wood-light); }
.booking-left .section-eyebrow::before { background: var(--wood-light); }
.booking-left .section-subtitle { color: rgba(255,255,255,0.60); }
.booking-perks { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 30px; }
.booking-perk-label { font-family: var(--serif); font-size: 26px; font-weight: 300; color: white; line-height: 1; }
.booking-perk-sub   { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.48); margin-top: 3px; }

.booking-card { background: var(--warm-white); border-radius: var(--radius-lg); padding: 26px 22px; box-shadow: 0 26px 70px rgba(0,0,0,0.26); }
.booking-card-title { font-family: var(--serif); font-size: 23px; font-weight: 400; margin-bottom: 20px; }

.booking-form { display: flex; flex-direction: column; gap: 13px; }
.form-group   { display: flex; flex-direction: column; gap: 5px; }
.form-label   { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.form-input,
.form-select,
.form-textarea {
  font-family: var(--sans); font-size: 15px; font-weight: 300; color: var(--charcoal);
  background: var(--sand); border: 1.5px solid transparent; border-radius: 11px;
  padding: 13px 14px; transition: all 0.3s; width: 100%;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--wood); background: white;
  box-shadow: 0 0 0 3px rgba(160,120,80,0.12);
}
.form-textarea { min-height: 86px; resize: vertical; }

.price-display {
  background: var(--sand); border-radius: 11px; padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap;
}
.price-display-label { font-size: 13px; color: var(--mid); font-weight: 300; }
.price-display-note  { font-size: 11px; color: var(--light); margin-top: 2px; }
.price-display-value { font-family: var(--serif); font-size: 25px; font-weight: 400; white-space: nowrap; }

.btn-book {
  width: 100%; padding: 16px; background: var(--wood); color: white;
  border-radius: 11px; font-size: 14px; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  transition: all 0.3s var(--ease-silk);
  box-shadow: 0 8px 22px rgba(160,120,80,0.27);
  position: relative; overflow: hidden;
}
.btn-book::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(255,255,255,0.09),transparent); pointer-events:none; }
.btn-book:hover  { background: var(--wood-dark); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(160,120,80,0.36); }
.btn-book:active { transform: translateY(0); }
.booking-note   { font-size: 12px; color: var(--mid); text-align: center; margin-top: 10px; font-weight: 300; }

@media (min-width: 860px) { .booking-wrap { grid-template-columns: 1fr 1fr; gap: 58px; } }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials { background: var(--sand); }
.testimonials-intro { text-align: center; max-width: 540px; margin: 0 auto 42px; }
.testimonials-intro .section-subtitle { margin: 0 auto; }

.testimonials-track-wrap { overflow: hidden; width: 100%; }
.testimonials-track { display: flex; gap: 20px; transition: transform 0.6s var(--ease-silk); will-change: transform; }

.testimonial-card {
  background: var(--warm-white); border-radius: var(--radius-lg);
  padding: 26px 22px; flex: 0 0 100%;
  box-shadow: 0 4px 16px rgba(44,42,37,0.06);
}
@media (min-width: 768px) { .testimonial-card { flex: 0 0 calc(50% - 10px); } }

.testimonial-stars { color: var(--wood); font-size: 16px; letter-spacing: 2px; margin-bottom: 13px; }
.testimonial-text  { font-family: var(--serif); font-size: 19px; font-weight: 300; line-height: 1.6; color: var(--charcoal); font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 11px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--sage-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 17px; flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 500; }
.testimonial-meta { font-size: 12px; color: var(--light); font-weight: 300; margin-top: 1px; }

.testimonials-nav { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 26px; }
.testimonials-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sand-deep); transition: all 0.3s; cursor: pointer; }
.testimonials-dot.active { background: var(--wood); width: 22px; border-radius: 4px; }
.testimonials-btn {
  width: 40px; height: 40px; border-radius: 50%; background: var(--warm-white);
  border: 1px solid var(--sand-deep); display: flex; align-items: center;
  justify-content: center; font-size: 16px; color: var(--mid);
  transition: all 0.3s; cursor: pointer;
}
.testimonials-btn:hover { background: var(--wood); color: white; border-color: var(--wood); }

/* ── CONTACTS ────────────────────────────────────────────── */
.contacts { background: var(--warm-white); }
.contacts-intro { margin-bottom: 40px; }
.contacts-grid { display: grid; gap: 36px; }

.contacts-info { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px; background: var(--sand); border-radius: var(--radius);
  border: 1px solid transparent; transition: all 0.3s var(--ease-silk);
}
.contact-item:hover { border-color: var(--wood-light); transform: translateX(3px); box-shadow: 0 7px 18px rgba(44,42,37,0.08); }
.contact-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; flex-shrink: 0;
}
.contact-icon.phone { background: linear-gradient(135deg,#4CAF50,#3d9440); }
.contact-icon.wa    { background: linear-gradient(135deg,#25D366,#128C7E); }
.contact-icon.tg    { background: linear-gradient(135deg,#2CA5E0,#1a7fc0); }
.contact-icon.email { background: linear-gradient(135deg,var(--wood),var(--wood-dark)); }
.contact-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--light); margin-bottom: 2px; }
.contact-value { font-size: 14px; font-weight: 400; color: var(--charcoal); }

.contact-form-title { font-family: var(--serif); font-size: 21px; font-weight: 400; margin: 20px 0 14px; }

.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden; width: 100%; height: 280px;
  box-shadow: 0 10px 38px rgba(44,42,37,0.11);
}
.map-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg,#ddeef4 0%,#c8d8c2 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px;
}
.map-pin { font-size: 44px; animation: pinBounce 2.2s ease-in-out infinite; }
@keyframes pinBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.map-address { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--charcoal); text-align: center; }
.map-sub  { font-size: 13px; color: var(--mid); font-weight: 300; }
.map-link { margin-top: 12px; font-size: 13px; font-weight: 500; color: var(--wood); letter-spacing: 0.07em; text-transform: uppercase; }
.map-link:hover { color: var(--wood-dark); }

@media (min-width: 860px) {
  .contacts-grid { grid-template-columns: 1fr 1.3fr; align-items: start; gap: 52px; }
  .map-wrap { height: 420px; }
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--charcoal); padding: 52px 0 28px; }
.footer-grid { display: grid; gap: 32px; margin-bottom: 40px; }
.footer-logo    { font-family: var(--serif); font-size: 26px; font-weight: 300; color: white; margin-bottom: 9px; }
.footer-tagline { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.44); line-height: 1.62; max-width: 220px; }
.footer-col-title { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.36); margin-bottom: 13px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; list-style: none; }
.footer-links a { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.6); transition: color 0.3s; }
.footer-links a:hover { color: var(--wood-light); }
.footer-bottom {
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; gap: 9px; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.28); font-weight: 300; }
@media (min-width: 620px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }

/* ── STICKY MOBILE ACTIONS ────────────────────────────────── */
.sticky-actions {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  padding: 10px 14px;
  background: rgba(250,248,244,0.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--sand-deep);
  display: flex; gap: 8px; align-items: center;
  transform: translateY(110%); transition: transform 0.5s var(--ease-spring);
  width: 100%; box-sizing: border-box;
}
.sticky-actions.visible { transform: translateY(0); }
.sticky-actions .btn-primary { flex: 1; justify-content: center; padding: 13px 14px; font-size: 12px; min-width: 0; }
.sticky-quick { display: flex; gap: 7px; flex-shrink: 0; }
.sticky-quick-btn {
  width: 46px; height: 46px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; background: var(--sand); flex-shrink: 0;
  transition: all 0.25s;
}
.sticky-quick-btn:active { background: var(--sand-deep); transform: scale(0.94); }
@media (min-width: 768px) { .sticky-actions { display: none; } }

/* ── MODAL ───────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(18,15,10,0.62); backdrop-filter: blur(5px);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--warm-white); border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 26px 20px 44px; width: 100%; max-width: 520px; max-height: 92svh; overflow-y: auto;
  transform: translateY(100%); transition: transform 0.4s var(--ease-spring);
  position: relative;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-handle { width: 36px; height: 4px; border-radius: 2px; background: var(--sand-deep); margin: 0 auto 20px; }
.modal-title  { font-family: var(--serif); font-size: 25px; font-weight: 300; margin-bottom: 20px; }
.modal-close  {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%; background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--mid); transition: background 0.2s;
}
.modal-close:hover { background: var(--sand-deep); }

@media (min-width: 600px) {
  .modal-overlay { align-items: center; }
  .modal { border-radius: var(--radius-lg); max-height: 88vh; }
}

/* ── LIGHTBOX ────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(10,8,6,0.96); padding: 16px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 100%; max-height: 85svh; object-fit: contain; border-radius: 12px;
  transform: scale(0.93); transition: transform 0.3s var(--ease-spring);
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); font-size: 19px; color: white;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ── UTILITIES ────────────────────────────────────────────── */
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
::selection { background: var(--wood); color: white; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--wood-light); border-radius: 3px; }
