/*
Theme Name: Приют у озера
Theme URI:
Author: Custom
Description: Glamping landing page — Приют у озера
Version: 1.0
*/

/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --green-deep:   #152A20;
  --green-dark:   #1E3A2F;
  --green-mid:    #2C4A3E;
  --green-light:  #3D6B58;
  --gold:         #C9A84C;
  --gold-light:   #E3C87A;
  --cream:        #F7F2EA;
  --cream-dark:   #EDE4D5;
  --brown:        #7A5C3A;
  --text-dark:    #1A1A1A;
  --text-mid:     #4A4A4A;
  --text-light:   #8A8A8A;
  --white:        #FFFFFF;
  --serif:        'Playfair Display', Georgia, serif;
  --sans:         'Inter', 'Helvetica Neue', Arial, sans-serif;
  --transition:   0.25s ease;
}

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

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

body {
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
button { font-family: var(--sans); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 28px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

.site-nav.scrolled {
  background: rgba(21, 42, 32, 0.96);
  backdrop-filter: blur(12px);
  padding: 16px 56px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--gold-light); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/night.png');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.06);
  transition: transform 10s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 30, 22, 0.25) 0%,
    rgba(15, 30, 22, 0.55) 50%,
    rgba(15, 30, 22, 0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 820px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s forwards;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s 0.45s forwards;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 52px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}

.btn-primary {
  display: inline-block;
  padding: 17px 52px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  animation: fadeUp 0.9s 0.95s forwards;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201,168,76,0.25);
}

.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  cursor: pointer;
  animation: scrollBounce 2.4s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

.hero-scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.section { padding: 112px 56px; }

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

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--green-dark);
  line-height: 1.15;
  margin-bottom: 28px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.about-text .section-title { margin-bottom: 24px; }

.about-text p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.about-features {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.about-image::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -24px;
  bottom: -24px;
  left: 24px;
  border: 2px solid rgba(201,168,76,0.45);
  z-index: -1;
  pointer-events: none;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--cream); }

.gallery-layout { display: flex; flex-direction: column; gap: 10px; }

.gallery-main-wrap {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-main-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-main-wrap:hover img { transform: scale(1.03); }

.gallery-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 42, 32, 0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-main-wrap:hover .gallery-hover-overlay {
  background: rgba(21, 42, 32, 0.22);
}

.gallery-zoom {
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s, transform 0.3s;
}

.gallery-main-wrap:hover .gallery-zoom {
  opacity: 1;
  transform: scale(1);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.gallery-thumb {
  height: 168px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-thumb:hover img { transform: scale(1.07); }

.gallery-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21,42,32,0.55) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 12px 14px;
}

.gallery-thumb:hover .gallery-thumb-overlay { opacity: 1; }

.gallery-thumb-label {
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 14, 0.97);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox-content {
  position: relative;
  max-width: 88vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  margin-top: 16px;
  color: rgba(255,255,255,0.55);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition);
  z-index: 1001;
  padding: 8px;
}

.lightbox-close:hover { color: var(--gold-light); }

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  z-index: 1001;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.lightbox-nav:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,168,76,0.08);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============================================================
   TERRITORY (HELICOPTER)
   ============================================================ */
.territory { background: var(--green-deep); color: var(--white); padding-bottom: 0; }
.territory .section-title { color: var(--white); }

.territory-lead {
  max-width: 640px;
  color: rgba(255,255,255,0.6);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 56px;
}

.territory-img-wrap {
  position: relative;
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

.territory-img-wrap img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(0.9);
  transition: transform 8s ease;
}

.territory-img-wrap:hover img { transform: scale(1.03); }

.territory-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 56px 24px;
  background: linear-gradient(to top, rgba(15,30,22,0.85) 0%, transparent 100%);
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   PRICES
   ============================================================ */
.prices { background: var(--cream); }

.prices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 56px;
}

/* Price card */
.price-card {
  background: var(--green-dark);
  color: var(--white);
  padding: 52px;
  position: relative;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: -12px;
  left: -12px;
  border: 1px solid rgba(201,168,76,0.2);
  pointer-events: none;
  z-index: -1;
}

.price-card-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.price-card-amount {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 32px;
}

.price-number {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.price-unit {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

.price-card-divider {
  width: 48px;
  height: 1px;
  background: rgba(201,168,76,0.35);
  margin-bottom: 28px;
}

.price-card-includes-title {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 16px;
}

.price-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.price-card-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.price-check {
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.price-cta {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 17px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.price-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* Price info column */
.price-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.price-info-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.price-info-item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }

.price-info-icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.price-info-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--green-dark);
  margin-bottom: 4px;
  font-weight: 600;
}

.price-info-item p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .prices-grid { grid-template-columns: 1fr; gap: 40px; }
  .price-card  { padding: 36px; }
}

@media (max-width: 768px) {
  .territory-img-caption { padding: 32px 24px 16px; }
}

/* ============================================================
   BOOKING
   ============================================================ */
.booking {
  background: var(--green-dark);
  color: var(--white);
}

.booking .section-title  { color: var(--white); }
.booking .section-label  { color: var(--gold); }

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 88px;
  align-items: start;
}

.booking-info p {
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 36px;
}

.booking-legend {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legend-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

.legend-swatch {
  width: 28px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
}

.legend-swatch.available  { background: var(--gold); }
.legend-swatch.selected   { background: rgba(201,168,76,0.35); border: 1px solid var(--gold); }
.legend-swatch.blocked    { background: rgba(255,255,255,0.12); }

/* --- flatpickr dark theming --- */
.flatpickr-calendar {
  background:   #1a3428 !important;
  border:       1px solid rgba(201,168,76,0.25) !important;
  box-shadow:   0 24px 64px rgba(0,0,0,0.4) !important;
  border-radius: 0 !important;
  font-family:  var(--sans) !important;
  width:        100% !important;
}

.flatpickr-calendar.inline {
  display: block !important;
  margin-bottom: 32px;
  position: relative !important;
  top: auto !important;
  left: auto !important;
}

.flatpickr-months              { background: #132B20 !important; padding: 6px 0 !important; }
.flatpickr-month               { color: var(--gold-light) !important; fill: var(--gold-light) !important; }
.flatpickr-current-month       { font-family: var(--serif) !important; font-size: 1rem !important; color: var(--gold-light) !important; }
.flatpickr-prev-month,
.flatpickr-next-month          { color: var(--gold-light) !important; fill: var(--gold-light) !important; padding: 10px !important; }
.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg { fill: var(--gold) !important; }
.flatpickr-weekdays            { background: #132B20 !important; }
span.flatpickr-weekday         { background: #132B20 !important; color: rgba(201,168,76,0.5) !important; font-size: 0.7rem !important; letter-spacing: 0.06em !important; }

.flatpickr-day {
  color: rgba(255,255,255,0.75) !important;
  border-radius: 0 !important;
  border: none !important;
}

.flatpickr-day:hover:not(.flatpickr-disabled):not(.selected):not(.startRange):not(.endRange) {
  background: rgba(201,168,76,0.18) !important;
  border-color: transparent !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--green-deep) !important;
  font-weight: 700 !important;
}

.flatpickr-day.inRange {
  background: rgba(201,168,76,0.15) !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.flatpickr-day.startRange.endRange {
  border-radius: 0 !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: rgba(255,255,255,0.18) !important;
  text-decoration: line-through !important;
  cursor: not-allowed !important;
  background: transparent !important;
}

.flatpickr-day.today:not(.selected) {
  border-bottom: 2px solid var(--gold) !important;
}

/* --- Date display pills --- */
.date-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.date-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px 18px;
}

.date-pill-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 5px;
}

.date-pill-value {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--gold-light);
}

/* --- Booking form --- */
.booking-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 44px;
}

/* Total cost */
#booking-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 16px 20px;
  margin-bottom: 28px;
}

.total-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.total-amount {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold-light);
  font-weight: 700;
}

.form-section-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 28px;
}

#booking-form-fields { display: none; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 6px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}

.form-group input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  padding: 15px 18px;
  font-size: 0.9375rem;
  font-family: var(--sans);
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus   { border-color: var(--gold); }
.form-group input::placeholder { color: rgba(255,255,255,0.2); }

.form-group input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #1E3A2F inset;
  -webkit-text-fill-color: white;
}

.btn-submit {
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  margin-top: 24px;
}

.btn-submit:hover:not(:disabled) {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-submit:disabled { opacity: 0.45; cursor: not-allowed; }

.form-notice {
  margin-top: 14px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.32);
  line-height: 1.6;
  text-align: center;
}

.booking-message {
  padding: 18px 20px;
  margin-top: 20px;
  font-size: 0.9rem;
  line-height: 1.65;
  display: none;
}

.booking-message.success {
  display: block;
  background: rgba(60, 140, 90, 0.18);
  border: 1px solid rgba(100, 200, 130, 0.3);
  color: #96FFB4;
}

.booking-message.error {
  display: block;
  background: rgba(140, 50, 50, 0.18);
  border: 1px solid rgba(200, 90, 90, 0.3);
  color: #FFB0B0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.4);
  padding: 60px 56px;
  text-align: center;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--gold-light);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.footer-tagline {
  font-size: 0.875rem;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.35);
}

.footer-rule {
  width: 56px;
  height: 1px;
  background: rgba(201,168,76,0.3);
  margin: 0 auto 28px;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid,
  .booking-grid { grid-template-columns: 1fr; gap: 52px; }
  .about-image  { display: none; }
}

@media (max-width: 768px) {
  .section        { padding: 80px 24px; }
  .site-nav       { padding: 20px 24px; }
  .site-nav.scrolled { padding: 14px 24px; }
  .nav-links      { display: none; }
  .gallery-thumbs { grid-template-columns: repeat(3, 1fr); }
  .gallery-main-wrap { height: 320px; }
  .gallery-thumb  { height: 120px; }
  .booking-form-wrap { padding: 28px 20px; }
  .about-features { grid-template-columns: 1fr; }
  .date-display   { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-thumbs { grid-template-columns: repeat(2, 1fr); }
  .hero-title     { font-size: 2.8rem; }
}
