/* =============================================
   OXYGEN WOODEN HOUSE
   Aesthetic: Light · Airy · Nature-Organic · Nordic
   Palette: Cream, pine green, warm wood, deep forest
   Fonts: Playfair Display + DM Sans
   ============================================= */

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

:root {
  --cream:    #f7f4ee;
  --linen:    #ede8df;
  --pine:     #2c3d2e;
  --moss:     #3f5241;
  --bark:     #7a5c3e;
  --wood:     #c4a882;
  --snow:     #ffffff;
  --muted:    #8a8378;
  --red-roof: #b84040;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'DM Sans', sans-serif;

  --pad: clamp(64px, 9vw, 120px);
  --max: 1280px;
}

html { scroll-behavior: smooth; }

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

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--pine);
}

h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
h1 { font-size: clamp(3.2rem, 7.5vw, 6.5rem); }
em { font-style: italic; color: var(--bark); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--wood);
  margin-bottom: 14px;
  display: block;
}

/* ---- REVEAL ---- */
.reveal, .reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
  transition-delay: var(--delay, 0s);
}
.reveal      { transform: translateY(24px); }
.reveal-up   { transform: translateY(40px); }
.reveal-left { transform: translateX(-44px); }
.reveal-right{ transform: translateX(44px); }
.revealed    { opacity: 1 !important; transform: none !important; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: all 0.3s;
  cursor: pointer;
}

.btn--outline {
  border: 1.5px solid rgba(247,244,238,0.6);
  color: var(--cream);
}
.btn--outline:hover {
  background: rgba(247,244,238,0.15);
  border-color: var(--cream);
}

.btn--solid {
  background: var(--red-roof);
  color: var(--snow);
  border: 1.5px solid var(--red-roof);
}
.btn--solid:hover { background: #a03535; border-color: #a03535; }

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 52px;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(247,244,238,0.96);
  backdrop-filter: blur(16px);
  padding: 16px 52px;
  box-shadow: 0 1px 0 rgba(44,61,46,0.08);
}

.nav.scrolled .nav__links a { color: var(--pine); }
.nav.scrolled .nav__logo { color: var(--pine); }
.nav.scrolled .nav__logo span { color: var(--bark); }
.nav.scrolled .nav__burger span { background: var(--pine); }

.nav__logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--snow);
  letter-spacing: 0.02em;
  transition: color 0.4s;
}
.nav__logo span { color: rgba(255,255,255,0.65); font-weight: 400; font-style: italic; }

.nav__links { list-style: none; display: flex; gap: 36px; align-items: center; }
.nav__links a {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}
.nav__links a:hover { color: var(--snow); }

.nav__cta {
  background: var(--red-roof) !important;
  color: var(--snow) !important;
  padding: 10px 22px;
  transition: background 0.3s !important;
}
.nav__cta:hover { background: #a03535 !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--snow);
  transition: transform 0.35s, opacity 0.35s;
}
.nav__burger.open span:first-child { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.open span:last-child  { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--pine);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu a {
  display: block;
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--cream);
  padding: 12px 0;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--wood); }

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

.hero__bg { position: absolute; inset: 0; }
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.05);
  transition: transform 14s ease;
}
.hero__img.loaded { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(44,61,46,0.72) 0%,
    rgba(44,61,46,0.4) 50%,
    rgba(44,61,46,0.1) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 780px;
}

.hero__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--wood);
  margin-bottom: 20px;
}

.hero__title {
  color: var(--snow);
  margin-bottom: 20px;
}
.hero__title em { color: rgba(255,255,255,0.85); }

.hero__sub {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 480px;
}

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

.hero__badges {
  position: absolute;
  bottom: 48px;
  right: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(44,61,46,0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(196,168,130,0.3);
  padding: 12px 20px;
}
.badge__star { font-size: 1.2rem; color: var(--wood); }
.badge__text { display: flex; flex-direction: column; }
.badge__text strong { font-size: 0.85rem; color: var(--snow); line-height: 1.2; }
.badge__text span { font-size: 0.62rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); }

.hero__scroll {
  position: absolute;
  bottom: 44px;
  left: 80px;
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* =============================================
   STATS
   ============================================= */
.stats {
  background: var(--pine);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 48px;
}
.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 52px;
}
.stats__num {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--wood);
  line-height: 1;
}
.stats__label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(196,168,130,0.55);
}
.stats__sep {
  width: 1px;
  height: 44px;
  background: rgba(196,168,130,0.2);
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: var(--pad) 72px;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__text h2 { margin-bottom: 24px; }
.about__lead {
  font-size: 1.05rem;
  color: var(--pine);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about__text p { font-size: 0.9rem; color: var(--muted); margin-bottom: 14px; }

.about__features { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--pine);
}
.feature__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-roof);
  flex-shrink: 0;
}

.about__visual {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  gap: 14px;
}
.about__img-main {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
}
.about__img-main img { transition: transform 0.7s ease; }
.about__img-main:hover img { transform: scale(1.04); }

.about__img-accent {
  position: relative;
  aspect-ratio: 16/8;
  overflow: hidden;
  border-radius: 2px;
}
.about__img-accent img { transition: transform 0.7s ease; }
.about__img-accent:hover img { transform: scale(1.04); }

.about__pill {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--pine);
  color: var(--wood);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery {
  padding: var(--pad) 72px;
  max-width: var(--max);
  margin: 0 auto;
}
.gallery__header { margin-bottom: 52px; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 10px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--linen);
  border-radius: 2px;
}
.gallery__item img { transition: transform 0.7s ease; }
.gallery__item:hover img { transform: scale(1.06); }

/* First item: tall = spans 2 rows */
.gallery__item--tall { grid-row: span 2; }
/* Wide item: spans 2 cols */
.gallery__item--wide { grid-column: span 2; }

.gallery__caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,61,46,0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.9);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery__item:hover .gallery__caption { opacity: 1; }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26,36,28,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__inner { max-width: 90vw; max-height: 88vh; position: relative; }
.lightbox__inner img {
  max-height: 82vh;
  max-width: 90vw;
  width: auto;
  height: auto;
  object-fit: contain;
}
.lightbox__caption {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wood);
  margin-top: 16px;
}
.lightbox__close {
  position: absolute;
  top: 20px; right: 32px;
  background: none;
  border: 1px solid rgba(196,168,130,0.3);
  color: var(--wood);
  width: 44px; height: 44px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.lightbox__close:hover { background: rgba(196,168,130,0.15); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(196,168,130,0.3);
  color: var(--wood);
  width: 52px; height: 52px;
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.3s;
}
.lightbox__nav:hover { background: rgba(196,168,130,0.1); }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

/* =============================================
   SEASONS BAND
   ============================================= */
.seasons {
  position: relative;
  padding: var(--pad) 72px;
  overflow: hidden;
}
.seasons__bg { position: absolute; inset: 0; }
.seasons__bg img { filter: brightness(0.25) saturate(0.6); }
.seasons__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,61,46,0.9) 0%, rgba(44,61,46,0.7) 100%);
}
.seasons__content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
}
.seasons__content .eyebrow { color: var(--wood); }
.seasons__content h2 { color: var(--snow); margin-bottom: 52px; }
.seasons__content h2 em { color: rgba(255,255,255,0.7); }

.seasons__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(196,168,130,0.15);
}
.season-card {
  padding: 48px 36px;
  border-right: 1px solid rgba(196,168,130,0.15);
  transition: background 0.35s;
}
.season-card:last-child { border-right: none; }
.season-card:hover { background: rgba(196,168,130,0.06); }
.season-icon { display: block; font-size: 1.4rem; color: var(--wood); margin-bottom: 18px; }
.season-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--snow);
  margin-bottom: 10px;
}
.season-card p { font-size: 0.82rem; color: rgba(247,244,238,0.6); line-height: 1.8; }

/* =============================================
   AMENITIES
   ============================================= */
.amenities {
  background: var(--linen);
  padding: var(--pad) 72px;
}
.amenities__header {
  max-width: var(--max);
  margin: 0 auto 56px;
}
.amenities__body {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.amenities__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
}
.amenities__img img { transition: transform 0.7s; }
.amenities__img:hover img { transform: scale(1.04); }

.amenities__list { display: flex; flex-direction: column; gap: 0; }
.amenity {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(44,61,46,0.08);
  transition: background 0.2s;
}
.amenity:first-child { border-top: 1px solid rgba(44,61,46,0.08); }
.amenity:hover { background: rgba(44,61,46,0.03); padding-left: 8px; }
.amenity__icon { color: var(--red-roof); font-size: 1rem; flex-shrink: 0; padding-top: 2px; width: 22px; text-align: center; }
.amenity div { display: flex; flex-direction: column; gap: 2px; }
.amenity strong { font-size: 0.82rem; font-weight: 500; color: var(--pine); }
.amenity span { font-size: 0.76rem; color: var(--muted); }

/* =============================================
   LOCATION
   ============================================= */
.location {
  padding: var(--pad) 72px;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.location__visual {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
}
.location__visual img { transition: transform 0.7s; }
.location__visual:hover img { transform: scale(1.03); }
.location__tag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(44,61,46,0.85), transparent);
  padding: 32px 20px 16px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wood);
}

.location__content h2 { margin-bottom: 24px; }
.location__desc { font-size: 0.9rem; color: var(--muted); margin-bottom: 36px; line-height: 1.9; }

.distances {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(44,61,46,0.1);
}
.dist {
  padding: 20px 22px;
  border-bottom: 1px solid rgba(44,61,46,0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dist:nth-child(odd) { border-right: 1px solid rgba(44,61,46,0.08); }
.dist__num { font-family: var(--serif); font-size: 1.5rem; color: var(--bark); line-height: 1; }
.dist__label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* =============================================
   REVIEWS
   ============================================= */
.reviews {
  background: var(--pine);
  padding: var(--pad) 72px;
}
.reviews__header {
  max-width: var(--max);
  margin: 0 auto 52px;
}
.reviews__header .eyebrow { color: var(--wood); }
.reviews__header h2 { color: var(--snow); }
.reviews__header h2 em { color: var(--wood); }

.reviews__cards {
  max-width: var(--max);
  margin: 0 auto 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rcard {
  background: rgba(247,244,238,0.05);
  border: 1px solid rgba(196,168,130,0.12);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.rcard__text {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(247,244,238,0.85);
  line-height: 1.75;
  flex: 1;
}
.rcard__author { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(196,168,130,0.6); }
.rcard__stars { color: var(--wood); font-size: 0.85rem; }

.reviews__scores {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid rgba(196,168,130,0.12);
}
.rscore {
  padding: 26px 16px;
  text-align: center;
  border-right: 1px solid rgba(196,168,130,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.rscore:last-child { border-right: none; }
.rscore__val { font-family: var(--serif); font-size: 1.9rem; color: var(--wood); line-height: 1; }
.rscore__label { font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(196,168,130,0.5); }

/* =============================================
   CONTACT
   ============================================= */
.contact { background: var(--linen); }
.contact__split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 90vh;
}

.contact__img {
  position: relative;
  overflow: hidden;
}
.contact__img img { object-position: center 20%; }
.contact__img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(44,61,46,0.8), transparent);
  padding: 32px 28px 16px;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wood);
}

.contact__form-wrap {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact__form-wrap h2 { margin-bottom: 14px; }
.contact__sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 40px; }

.cform { display: flex; flex-direction: column; gap: 14px; }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cform__field { display: flex; flex-direction: column; gap: 6px; }
.cform__field label { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

.cform input,
.cform select,
.cform textarea {
  width: 100%;
  background: var(--snow);
  border: 1px solid rgba(44,61,46,0.14);
  color: var(--pine);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
}
.cform input::placeholder,
.cform textarea::placeholder { color: rgba(44,61,46,0.35); }
.cform input:focus,
.cform select:focus,
.cform textarea:focus {
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(63,82,65,0.08);
}
.cform select option { background: var(--snow); color: var(--pine); }
.cform textarea { resize: vertical; }

.cform__submit {
  margin-top: 6px;
  width: 100%;
  padding: 18px;
  background: var(--pine);
  color: var(--cream);
  border: none;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 2px;
}
.cform__submit:hover { background: var(--moss); }
.cform__note { font-size: 0.78rem; color: var(--moss); min-height: 20px; margin-top: 4px; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--pine);
  padding: 60px 72px;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.footer__logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--wood);
  margin-bottom: 12px;
}
.footer__logo span { font-weight: 400; font-style: italic; color: rgba(196,168,130,0.6); }
.footer__brand p { font-size: 0.8rem; color: rgba(196,168,130,0.5); line-height: 1.9; }

.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(196,168,130,0.5);
  transition: color 0.3s;
}
.footer__nav a:hover { color: var(--wood); }

.footer__rules p { font-size: 0.76rem; color: rgba(196,168,130,0.45); margin-bottom: 8px; line-height: 1.6; }
.footer__copy { margin-top: 22px; font-size: 0.62rem !important; opacity: 0.4; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .about, .location { grid-template-columns: 1fr; padding-left: 48px; padding-right: 48px; gap: 48px; }
  .gallery { padding: var(--pad) 48px; }
  .seasons { padding: var(--pad) 48px; }
  .seasons__grid { grid-template-columns: repeat(2, 1fr); }
  .season-card:nth-child(2) { border-right: none; }
  .amenities { padding: var(--pad) 48px; }
  .amenities__body { grid-template-columns: 1fr; gap: 40px; }
  .reviews { padding: var(--pad) 48px; }
  .reviews__cards { grid-template-columns: 1fr 1fr; }
  .reviews__scores { grid-template-columns: repeat(3, 1fr); }
  .rscore:nth-child(3) { border-right: none; }
  .contact__split { grid-template-columns: 1fr; }
  .contact__img { min-height: 400px; }
  .contact__form-wrap { padding: 60px 48px; }
  .footer { padding: 56px 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero__content { padding: 0 28px; }
  .hero__scroll { left: 28px; }
  .hero__badges { bottom: 28px; right: 28px; }

  .stats { padding: 36px 24px; display: grid; grid-template-columns: repeat(3, 1fr); }
  .stats__item { padding: 16px 12px; }
  .stats__sep { display: none; }

  .about { padding: 60px 24px; }
  .gallery { padding: 60px 24px; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }

  .seasons { padding: 60px 24px; }
  .seasons__grid { grid-template-columns: 1fr; }
  .season-card { border-right: none; border-bottom: 1px solid rgba(196,168,130,0.15); }

  .amenities { padding: 60px 24px; }
  .location { padding: 60px 24px; }
  .distances { grid-template-columns: 1fr; }
  .dist:nth-child(odd) { border-right: none; }

  .reviews { padding: 60px 24px; }
  .reviews__cards { grid-template-columns: 1fr; }
  .reviews__scores { grid-template-columns: repeat(2, 1fr); }
  .rscore:nth-child(2n) { border-right: none; }

  .contact__form-wrap { padding: 48px 24px; }
  .cform__row { grid-template-columns: 1fr; }

  .footer { padding: 48px 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  h2 { font-size: 1.9rem; }
  .hero__title { font-size: 2.8rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; }
}

/* =============================================
   MAP SECTION
   ============================================= */
.map-section {
  padding: var(--pad) 72px;
  max-width: var(--max);
  margin: 0 auto;
}

.map-section__header {
  margin-bottom: 40px;
}

.map-section__wrap {
  position: relative;
  border: 1px solid rgba(44,61,46,0.15);
  overflow: hidden;
  border-radius: 2px;
}

.map-section__overlay-label {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--pine);
  padding: 16px 28px;
  border-bottom: 1px solid rgba(196,168,130,0.15);
  flex-wrap: wrap;
}

.map-pin-icon {
  color: var(--wood);
  font-size: 1rem;
  flex-shrink: 0;
}

.map-section__overlay-label span:last-of-type {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(247,244,238,0.8);
  flex: 1;
}

.map-directions-btn {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wood);
  border: 1px solid rgba(196,168,130,0.4);
  padding: 8px 18px;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
.map-directions-btn:hover {
  background: var(--wood);
  color: var(--pine);
}

.map-section__iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: none;
  filter: saturate(0.7) brightness(0.92);
}

@media (max-width: 768px) {
  .map-section { padding: 60px 24px; }
  .map-section__iframe { height: 340px; }
  .map-section__overlay-label { gap: 10px; padding: 14px 18px; }
}

@media (max-width: 480px) {
  .map-section__iframe { height: 260px; }
}

/* =============================================
   LANGUAGE SWITCHER
   ============================================= */
.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--parchment, #f5f0e8);
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s;
  font-family: inherit;
}
.lang-switcher:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}
.lang-flag { font-size: 1rem; line-height: 1; }
.lang-label {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

/* Scrolled nav — keep switcher readable */
.nav.scrolled .lang-switcher {
  border-color: rgba(255,255,255,0.2);
}
