:root {
  --cream: #FAF7F2;
  --cream-dark: #F0EBE1;
  --brown-deep: #2C1810;
  --brown-mid: #7B4B2A;
  --terracotta: #C4622D;
  --terracotta-light: #D4804A;
  --text: #3A2518;
  --text-light: #7A6050;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Raleway', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ===== LOADER ===== */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--brown-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 1s ease, visibility 1s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: 200px;
  opacity: 0;
  transform: scale(0.85);
  filter: brightness(0) invert(1);
  animation: loaderIn 1.2s ease 0.3s forwards;
}

@keyframes loaderIn {
  0%   { opacity: 0; transform: scale(0.85); }
  70%  { opacity: 1; transform: scale(1.03); }
  100% { opacity: 1; transform: scale(1); }
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  transition: background 0.5s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

#navbar.scrolled {
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(44, 24, 16, 0.07);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
  transition: opacity 0.3s ease;
}
.nav-logo-img:hover { opacity: 0.85; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: color 0.3s ease;
}

#navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--terracotta); }
#navbar.scrolled .nav-links a:hover { color: var(--terracotta); }

.nav-links a.nav-cta {
  background: var(--terracotta);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 2px;
}
.nav-links a.nav-cta:hover {
  background: var(--terracotta-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: white;
  transition: background 0.3s;
}
#navbar.scrolled .nav-toggle span { background: var(--brown-deep); }

/* ── Nav right group (lang switcher + mobile toggle) ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ── Language Switcher ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  padding: 3px 0;
  transition: color 0.2s;
}
#navbar.scrolled .lang-btn { color: var(--text-light); }
.lang-btn.active, .lang-btn:hover { color: var(--terracotta); }
#navbar.scrolled .lang-btn.active, #navbar.scrolled .lang-btn:hover { color: var(--terracotta); }
.lang-sep { font-size: 10px; color: rgba(255,255,255,0.4); }
#navbar.scrolled .lang-sep { color: var(--text-light); opacity: 0.4; }

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

.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,10,5,0.3) 0%,
    rgba(20,10,5,0.15) 40%,
    rgba(20,10,5,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  opacity: 0;
  animation: heroReveal 1.4s ease 2.2s forwards;
}

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

.hero-logo {
  width: 220px;
  filter: brightness(0) invert(1) drop-shadow(0 2px 16px rgba(0,0,0,0.45));
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.8vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: white;
  margin-top: 16px;
  animation: scrollBounce 2.4s ease-in-out 4s infinite;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.75;
}
.hero-scroll svg {
  width: 18px;
  height: 18px;
}

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

/* ===== SHARED ===== */
.container       { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.container-wide  { max-width: 1440px; margin: 0 auto; padding: 0 48px; }

.label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  color: var(--brown-deep);
  line-height: 1.1;
  margin-bottom: 36px;
}

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

/* ===== ABOUT ===== */
.section-about {
  padding: 110px 0;
  text-align: center;
}

.about-text {
  max-width: 680px;
  margin: 0 auto 60px;
  font-size: 1.05rem;
  line-height: 2;
  color: var(--text-light);
  font-weight: 300;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 72px;
}

.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 300;
  color: var(--terracotta);
  line-height: 1;
}
.stat span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 8px;
}

/* ===== BUNGALOWS ===== */
.section-bungalows {
  padding: 80px 0 110px;
  background: var(--cream-dark);
}
.section-bungalows .label,
.section-bungalows h2 { text-align: center; }

.bungalows-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cabin-card {
  background: white;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(44,24,16,0.07);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.cabin-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 52px rgba(44,24,16,0.13);
}

/* ── Cabin Cover ─────────────────────────────── */
.cabin-cover {
  position: relative;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
}

.cabin-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.cabin-card:hover .cabin-cover img {
  transform: scale(1.06);
}

.cabin-cover-hint {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  background: rgba(20, 10, 5, 0);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transition: opacity 0.35s ease, background 0.35s ease;
}

.cabin-cover-hint span {
  display: block;
  width: 100%;
  text-align: center;
}

.cabin-cover-hint svg {
  width: 28px;
  height: 28px;
  opacity: 0.9;
  flex-shrink: 0;
}

.cabin-card:hover .cabin-cover-hint {
  opacity: 1;
  background: rgba(20, 10, 5, 0.42);
}

/* ── Lightbox ─────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(16, 8, 4, 0.97);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lb-stage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 96px 80px;
}

#lbImg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 12px 80px rgba(0, 0, 0, 0.7);
  user-select: none;
  transition: opacity 0.18s ease;
}

#lbImg.fading { opacity: 0; }

.lb-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  z-index: 2;
}
.lb-close:hover { color: #fff; }
.lb-close svg { width: 26px; height: 26px; }

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 40px;
  width: 54px;
  height: 80px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.2s ease;
  z-index: 2;
  backdrop-filter: blur(8px);
  line-height: 1;
}
.lb-nav:hover { background: rgba(196, 98, 45, 0.65); border-color: transparent; }
.lb-prev { left: 18px; }
.lb-next { right: 18px; }

.lb-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.1em;
  pointer-events: none;
}

.lb-title {
  position: absolute;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  pointer-events: none;
  white-space: nowrap;
}

@media (max-width: 640px) {
  /* Lightbox: full-width image on mobile */
  .lb-stage { padding: 64px 6px 72px; }
  .lb-nav { width: 36px; height: 52px; font-size: 24px; backdrop-filter: none; background: rgba(0,0,0,0.45); border: none; border-radius: 2px; }
  .lb-prev { left: 4px; }
  .lb-next { right: 4px; }
  .lb-title { font-size: 0.85rem; white-space: normal; text-align: center; width: 80%; bottom: 36px; }
  .lb-counter { bottom: 14px; }
  .lb-close { top: 12px; right: 12px; }
}

.cabin-info {
  padding: 28px 28px 32px;
}
.cabin-info h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--brown-deep);
  margin-bottom: 16px;
}
.cabin-info ul {
  list-style: none;
  margin-bottom: 24px;
}
.cabin-info ul li {
  font-size: 13px;
  color: var(--text-light);
  padding: 7px 0;
  border-bottom: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cabin-info ul li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

.btn-outline {
  display: inline-block;
  padding: 12px 26px;
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: var(--terracotta);
  color: white;
}

/* ===== RESTAURANT ===== */
.section-restaurant {
  padding: 90px 0 110px;
  background: var(--cream);
}
.section-restaurant .label,
.section-restaurant h2 { text-align: center; }

.restaurant-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.restaurant-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 32px;
}

.restaurant-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.restaurant-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

.restaurant-features li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--terracotta);
}

.restaurant-visual {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.restaurant-cover {
  width: 100%;
  height: 340px;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.restaurant-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.restaurant-cover:hover img {
  transform: scale(1.05);
}

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

.r-thumb {
  height: 120px;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.r-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.r-thumb:hover img {
  transform: scale(1.08);
}

@media (max-width: 860px) {
  .restaurant-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .restaurant-cover { height: 260px; }
}

/* ===== AMENITIES ===== */
.section-amenities {
  padding: 110px 0;
  text-align: center;
}
.section-amenities h2 { text-align: center; }

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

.amenity {
  padding: 36px 20px;
  background: white;
  border-radius: 3px;
  box-shadow: 0 2px 18px rgba(44,24,16,0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.amenity:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(44,24,16,0.1);
}
.amenity-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 14px;
  color: var(--terracotta);
}
.amenity-icon svg {
  width: 100%;
  height: 100%;
}
.amenity span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.06em;
}

/* ===== GALLERY ===== */
.section-gallery {
  padding: 80px 0 110px;
  background: var(--cream-dark);
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 10px;
  margin-top: 16px;
}

.g-item {
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 2px;
}
.g-item.g-large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.g-item:hover img { transform: scale(1.06); }

/* ===== LOCATION ===== */
.section-location {
  padding: 110px 0;
}
.section-location .label,
.section-location h2 { text-align: center; }

.location-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}

.location-card {
  background: var(--brown-deep);
  color: white;
  padding: 44px 36px;
  border-radius: 3px;
  text-align: center;
}
.location-pin {
  width: 32px;
  height: 32px;
  margin: 0 auto 20px;
  color: var(--terracotta);
}
.location-pin svg { width: 100%; height: 100%; }

.location-card h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 6px;
}
.location-card p {
  font-size: 13px;
  opacity: 0.75;
  line-height: 1.7;
}
.location-note {
  margin-top: 16px;
  font-size: 12px !important;
  opacity: 0.5 !important;
  line-height: 1.8 !important;
}

.location-nearby {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-top: 4px;
}

.nearby-col h4 {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
  font-weight: 600;
}
.nearby-col ul { list-style: none; }
.nearby-col li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.nearby-col li span { font-size: 14px; color: var(--text); }
.nearby-col li em {
  font-style: normal;
  font-size: 12px;
  color: var(--text-light);
}

/* ===== CONTACT ===== */
.section-contact {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20,10,5,0.68);
}
.contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.label.light { color: rgba(255,255,255,0.65); }
h2.light { color: white; }

.subtext {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.9;
  max-width: 500px;
  margin: -16px auto 44px;
  font-weight: 300;
}

.btn-primary {
  display: inline-block;
  padding: 18px 50px;
  background: var(--terracotta);
  color: white;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-primary:hover {
  background: var(--terracotta-light);
  transform: translateY(-3px);
}

/* ===== MAP ===== */
.map-inner {
  width: 100%;
  height: 460px;
  min-height: 460px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(44, 24, 16, 0.1);
  position: relative;
  margin-top: 40px;
}

.map-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background 0.3s ease;
}

.map-overlay span {
  background: rgba(44, 24, 16, 0.65);
  color: white;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.map-overlay:hover span {
  opacity: 1;
}

.map-overlay.hidden {
  display: none;
}

@media (max-width: 768px) {
  .map-inner { height: 300px; }
}

/* ===== CONTACT FORM ===== */
.section-contact-us {
  padding: 100px 0 110px;
  background: var(--cream-dark);
  text-align: center;
}

.contact-us-sub {
  max-width: 520px;
  margin: 0 auto 52px;
  color: var(--text-light);
  line-height: 1.75;
  font-size: 0.97rem;
}

.contact-us-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 52px;
  text-align: left;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

/* Info sidebar */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: white;
  border-radius: 4px;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 2px 16px rgba(44,24,16,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-info-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(44,24,16,0.11);
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--terracotta);
}
.contact-info-icon svg { width: 19px; height: 19px; }

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-info-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.contact-info-value {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown-deep);
  word-break: break-all;
}

/* Form */
.contact-form {
  background: white;
  border-radius: 6px;
  padding: 36px 36px 32px;
  box-shadow: 0 4px 32px rgba(44,24,16,0.07);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 4px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s ease;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b5a898; }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  background: #fff;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  justify-content: center;
}

.form-note {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-light);
  text-align: center;
  letter-spacing: 0.03em;
}

.form-success {
  text-align: center;
  padding: 32px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--terracotta);
  letter-spacing: 0.04em;
}

@media (max-width: 760px) {
  .contact-us-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
}

/* ===== FOOTER ===== */
#footer {
  background: var(--brown-deep);
  padding: 64px 0;
  text-align: center;
  color: white;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.footer-logo {
  height: 70px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  margin-bottom: 4px;
}
#footer p {
  font-size: 13px;
  opacity: 0.55;
  letter-spacing: 0.06em;
}
.footer-copy {
  font-size: 11px !important;
  opacity: 0.3 !important;
  margin-top: 6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .bungalows-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .location-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .location-card { text-align: left; display: flex; flex-direction: row; align-items: center; gap: 20px; }
  .location-pin { flex-shrink: 0; margin: 0; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 40px 28px;
    gap: 18px;
    box-shadow: 0 8px 30px rgba(44,24,16,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--text) !important; }
  .nav-toggle { display: flex; }
  /* lang-switcher sits in nav-right — keep it always visible */
  .lang-btn { color: rgba(255,255,255,0.8); }
  #navbar.scrolled .lang-btn { color: var(--text-light); }
  .lang-sep { color: rgba(255,255,255,0.4); }
  #navbar.scrolled .lang-sep { color: var(--text-light); }

  .container, .container-wide { padding: 0 20px; }

  /* Section padding — tighter on mobile */
  .section-about      { padding: 64px 0; }
  .section-bungalows  { padding: 60px 0 72px; }
  .section-restaurant { padding: 60px 0 72px; }
  .section-amenities  { padding: 64px 0; }
  .section-gallery    { padding: 60px 0 72px; }
  .section-location   { padding: 64px 0; }
  .section-contact    { padding: 90px 0; }
  .section-contact-us { padding: 64px 0 72px; }

  /* About text — less line-height on small screens */
  .about-text { font-size: 0.95rem; line-height: 1.75; margin-bottom: 40px; }
  .about-stats { flex-direction: column; gap: 32px; align-items: center; }

  /* Hero */
  .hero-logo { width: 150px; }

  /* Cabin card */
  .cabin-cover { aspect-ratio: 4/3; height: auto; }

  /* Restaurant — stack to single column */
  .restaurant-wrap { grid-template-columns: 1fr; gap: 36px; }

  /* Amenities */
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g-item.g-large { grid-column: span 2; aspect-ratio: 4/3; }

  /* Location */
  .location-nearby { grid-template-columns: 1fr; }
  .location-card { flex-direction: column; text-align: center; }

  /* Contact grid — stack to single column */
  .contact-us-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Form row — stack name + email */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 28px 20px 24px; }
}

@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .g-item.g-large { grid-column: span 1; aspect-ratio: 4/3; }
  .hero-logo { width: 130px; }
  .nav-logo-img { height: 36px; }
}
