/* ============================================================
   TaaruVann – Site CSS
   Framework: Tailwind CSS v3 (CDN) + custom rules
   Colors: sand #f5ede0 | terra #7a3b1e | olive #4a6741
           bark #2c1a0e  | cream #eef6ee | footer-bg #0f0603
   Font: Poppins (Google Fonts)
   ============================================================ */

:root {
  --nav-h: 72px;
  --sand:  #f5ede0;
  --terra: #7a3b1e;
  --olive: #4a6741;
  --bark:  #2c1a0e;
  --cream: #eef6ee;
  --footer-bg: #0f0603;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif;
  background: var(--cream);
  color: var(--bark);
  margin: 0;
  padding: 0;
}

/* Restore heading sizes wiped by Tailwind preflight */
h1 { font-size: 2.75rem; font-weight: 700; line-height: 1.15; margin: 0 0 1rem; }
h2 { font-size: 2.2rem;  font-weight: 600; line-height: 1.2;  margin: 0 0 0.85rem; }
h3 { font-size: 1.5rem;  font-weight: 600; line-height: 1.3;  margin: 0 0 0.7rem; }
h4 { font-size: 1.2rem;  font-weight: 500; line-height: 1.4;  margin: 0 0 0.6rem; }
h5 { font-size: 1rem;    font-weight: 500; line-height: 1.5;  margin: 0 0 0.5rem; }
h6 { font-size: 0.9rem;  font-weight: 500; line-height: 1.5;  margin: 0 0 0.5rem; }

/* ── HEADER ────────────────────────────────────────────── */

#site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1111;
  height: var(--nav-h);
  background: rgba(238, 246, 238, 0.96);
  border-bottom: 1px solid rgba(44, 26, 14, 0.1);
  box-shadow: 0 2px 20px rgba(44,26,14,0.08);
  transition: background 0.45s ease, box-shadow 0.45s ease;
}

#site-header.is-solid {
  background: rgba(238, 246, 238, 0.99);
  box-shadow: 0 2px 32px rgba(44,26,14,0.14);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  position: relative;
  display: inline-block;
  color: rgba(44, 26, 14, 0.75);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.25s;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.nav-link:hover,
.nav-link.is-active { color: var(--terra); }

.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); }

/* Accommodation Dropdown */
.nav-dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: rgba(238, 246, 238, 0.99);
  border-top: 2px solid var(--terra);
  min-width: 190px;
  padding: 8px 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 12px 40px rgba(44,26,14,0.18);
}

.dropdown-menu a {
  display: block;
  color: rgba(44, 26, 14, 0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.dropdown-menu a:hover {
  color: var(--terra);
  background: rgba(122, 59, 30, 0.08);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--bark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  background: rgba(238, 246, 238, 0.99);
  padding: 8px 0 20px;
  border-top: 1px solid rgba(44,26,14,0.1);
  box-shadow: 0 12px 32px rgba(44,26,14,0.1);
}

.mobile-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(44, 26, 14, 0.75);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 24px;
  text-decoration: none;
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: color 0.2s;
  min-height: 48px;
}

.mobile-link:hover { color: var(--terra); }

.mobile-sub { background: rgba(44,26,14,0.04); }

.mobile-sub-link {
  display: block;
  color: rgba(44, 26, 14, 0.6);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 40px;
  text-decoration: none;
  transition: color 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-sub-link:hover { color: var(--terra); }

@media (max-width: 1199px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
}

/* ── HERO (HOME) ────────────────────────────────────────── */

#hero {
  height: 100vh;
  min-height: 600px;
  margin-top: calc(-1 * var(--nav-h));
  position: relative;
  overflow: hidden;
}

#hero .swiper,
#hero .swiper-wrapper,
#hero .swiper-slide { height: 100%; }

#hero .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Top vignette — subtle since header is now opaque */
#hero::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(15,6,3,0.22), transparent);
  z-index: 5;
  pointer-events: none;
}

/* Bottom vignette */
#hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 240px;
  background: linear-gradient(to top, rgba(15,6,3,0.6), transparent);
  z-index: 5;
  pointer-events: none;
}

/* Hero bottom – wraps tagline + social proof links */
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-bottom: 52px;
  text-align: center;
  color: #fff;
}

.hero-tagline h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
  line-height: 1.1;
}

.hero-tagline p {
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.72;
  margin-top: 12px;
}

/* Hero social proof links */
.hero-social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  min-height: 44px;
}

.hero-social-link:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.hero-social-link i { font-size: 13px; }

/* Swiper pagination pill */
.swiper-pagination-bullet {
  background: rgba(255,255,255,0.45);
  opacity: 1;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  transition: width 0.35s ease, background 0.35s ease;
}

.swiper-pagination-bullet-active {
  background: var(--terra);
  width: 30px;
}

/* Booking widget */
.booking-widget-wrap {
  position: absolute;
  bottom: 90px;
  left: 32px;
  z-index: 20;
}

/* ── HERO VIDEO PANEL ───────────────────────────────────── */

.hero-video-panel {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-54%);
  z-index: 15;
  height: 70vh;
  width: calc(70vh * 9 / 16);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.12);
}

.hero-video-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 1200px) {
  .hero-video-panel {
    height: 58vh;
    right: 28px;
  }
}

@media (max-width: 900px) {
  .hero-video-panel { display: none; }
}

/* ── HERO SWIPER ARROWS ─────────────────────────────────── */

#hero-swiper .swiper-button-prev,
#hero-swiper .swiper-button-next {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  color: #fff;
  transition: background 0.25s, border-color 0.25s;
}

#hero-swiper .swiper-button-prev::after,
#hero-swiper .swiper-button-next::after {
  font-size: 15px;
  font-weight: 700;
}

#hero-swiper .swiper-button-prev:hover,
#hero-swiper .swiper-button-next:hover {
  background: rgba(255,255,255,0.26);
  border-color: rgba(255,255,255,0.5);
}

/* ── INNER BANNER (carousel pages) ─────────────────────── */

#inner-banner {
  height: 65vh;
  min-height: 420px;
  margin-top: calc(-1 * var(--nav-h));
  position: relative;
  overflow: hidden;
}

#inner-banner .swiper,
#inner-banner .swiper-wrapper,
#inner-banner .swiper-slide { height: 100%; }

#inner-banner .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#inner-banner::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 220px;
  background: linear-gradient(to bottom, rgba(15,6,3,0.68), transparent);
  z-index: 5;
  pointer-events: none;
}

/* ── STATIC BANNER ──────────────────────────────────────── */

#static-banner {
  height: 65vh;
  min-height: 380px;
  margin-top: calc(-1 * var(--nav-h));
  position: relative;
  overflow: hidden;
}

#static-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

#static-banner::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 220px;
  background: linear-gradient(to bottom, rgba(15,6,3,0.68), transparent);
  z-index: 5;
  pointer-events: none;
}


/* ── ACCOMMODATION CARDS (Home) ─────────────────────────── */

#accommodations {
  background: var(--bark);
  padding: 88px 24px;
}

.section-heading {
  text-align: center;
  margin-bottom: 52px;
}

.section-heading h2 {
  color: var(--sand);
  font-size: clamp(1.6rem, 5vw, 3.8rem);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.section-heading .divider {
  width: 40px;
  height: 1.5px;
  background: var(--terra);
  margin: 0 auto;
}

.accom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.accom-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.accom-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.accom-card:hover .accom-card-img { transform: scale(1.07); }

.accom-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 24px 28px;
  background: linear-gradient(to top,
    rgba(15,6,3,0.92) 0%,
    rgba(15,6,3,0.5) 60%,
    transparent 100%);
  color: #fff;
}

.accom-card-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.accom-card-desc {
  font-size: 12px;
  opacity: 0.75;
  margin: 0 0 18px;
  line-height: 1.65;
}

.btn-terra {
  display: inline-block;
  background: var(--terra);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 22px;
  text-decoration: none;
  border-radius: 1px;
  transition: background 0.25s;
  min-height: 44px;
  line-height: 1.4;
}

.btn-terra:hover { background: #923e22; }

/* ── GALLERY PREVIEW (Home) ─────────────────────────────── */

#gallery-preview {
  background: var(--sand);
  padding: 88px 24px;
}

#gallery-preview .section-heading h2 { color: var(--bark); }
#gallery-preview .section-heading .divider { background: var(--terra); }

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto 44px;
}

.gallery-preview-grid a {
  display: block;
  overflow: hidden;
  border-radius: 2px;
}

.gallery-preview-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-preview-grid a:hover img { transform: scale(1.07); }

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--terra);
  color: var(--terra);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 30px;
  text-decoration: none;
  border-radius: 1px;
  transition: background 0.25s, color 0.25s;
  min-height: 44px;
  line-height: 1.4;
}

.btn-outline:hover { background: var(--terra); color: #fff; }

/* ── INNER PAGE CONTENT ─────────────────────────────────── */

#inner-page {
  padding: 68px 24px 88px;
  background: var(--cream);
}

.inner-container {
  max-width: 880px;
  margin: 0 auto;
}

.page-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terra);
  margin: 0 0 36px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(44,26,14,0.14);
}

.text-content {
  color: var(--bark);
  font-size: 15px;
  line-height: 1.85;
}

.text-content p { margin: 0 0 18px; }

.text-content h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(122,59,30,0.2);
}

.text-content .info-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  display: block;
  margin: 28px 0 8px;
}

/* Override inline color: #fff / color:#fff (legacy content) */
.text-content span[style*="color: #fff"],
.text-content span[style*="color:#fff"],
.text-content strong span[style*="color: #fff"],
.text-content strong span[style*="color:#fff"] {
  color: var(--terra) !important;
}

/* Legacy ■ bullet size override */
.text-content span[style*="font-size:22px"],
.text-content span[style*="font-size: 22px"],
.text-content span[style*="font-size:22pt"],
.text-content span[style*="font-size: 22pt"] {
  color: var(--terra) !important;
  font-size: 14px !important;
}

.text-content a { color: var(--terra); }
.text-content a:hover { color: var(--bark); }

/* Nearby gates list */
.gates-list {
  margin: 12px 0 18px;
  padding-left: 20px;
  color: var(--bark);
  font-size: 15px;
  line-height: 1.85;
  columns: 2;
  column-gap: 32px;
}

.gates-list li { break-inside: avoid; }

.gate-dist {
  font-size: 12px;
  font-weight: 600;
  color: var(--terra);
  margin-left: 6px;
  opacity: 0.85;
}

@media (max-width: 480px) {
  .gates-list { columns: 1; }
}

/* Social links in About Us */
.social-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.social-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--sand);
  color: var(--bark);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid rgba(44,26,14,0.15);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.social-link-btn:hover {
  background: var(--terra);
  color: #fff;
  border-color: var(--terra);
}

.social-link-btn i { font-size: 14px; }

/* ── PAGE VIDEO EMBED ────────────────────────────────────── */

.page-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  margin-bottom: 40px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 40px rgba(0,0,0,0.18);
}

.page-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ── TARIFF PAGE ─────────────────────────────────────────── */

.tariff-intro {
  background: var(--sand);
  border-radius: 4px;
  padding: 28px 32px;
  margin-bottom: 40px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--bark);
  border-left: 3px solid var(--terra);
}

.tariff-section { margin-bottom: 44px; }

.tariff-section h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  border-bottom: 1px solid rgba(44,26,14,0.14);
  padding-bottom: 12px;
  margin: 0 0 18px;
}

.tariff-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tariff-list li {
  position: relative;
  padding: 10px 0 10px 22px;
  font-size: 14px;
  color: var(--bark);
  line-height: 1.7;
  border-bottom: 1px solid rgba(44,26,14,0.07);
}

.tariff-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 19px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terra);
}

.tariff-highlight {
  background: var(--sand);
  border-radius: 3px;
  padding: 4px 10px;
  color: var(--terra);
  font-weight: 600;
  font-size: 14px;
}

/* ── GALLERY GRID ────────────────────────────────────────── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 2px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-grid a:hover img { transform: scale(1.07); }

/* ── ACCOMMODATION GALLERY ───────────────────────────────── */

.accommodation-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.accommodation-gallery a {
  display: block;
  overflow: hidden;
  border-radius: 2px;
}

.accommodation-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.accommodation-gallery a:hover img { transform: scale(1.07); }

/* ── CONTACT PAGE ─────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.contact-card {
  background: var(--sand);
  padding: 32px 28px;
  border-radius: 3px;
  border-left: 3px solid var(--terra);
}

.contact-card h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin: 0 0 14px;
}

.contact-card p {
  font-size: 15px;
  color: var(--bark);
  margin: 4px 0;
  line-height: 1.65;
}

.contact-card a {
  color: var(--terra);
  text-decoration: none;
}

.contact-card a:hover { text-decoration: underline; }

.wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 15px;
  text-decoration: none !important;
  vertical-align: middle;
  margin-left: 6px;
  transition: background 0.2s;
}

.wa-icon:hover { background: #1da851; }

.maps-wrap {
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.maps-wrap iframe {
  width: 100%;
  height: 440px;
  border: 0;
  display: block;
}

/* ── FOOTER ───────────────────────────────────────────────── */

#site-footer {
  background: var(--footer-bg);
  padding: 60px 24px 36px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand { flex: 0 0 auto; }

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
}

.footer-tagline {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s;
}

.footer-social a .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}


.footer-social a:hover {
  color: rgba(255,255,255,0.9);
}

.footer-social a:hover .social-icon {
  border-color: var(--terra);
  background: var(--terra);
}

.footer-nav-col { flex: 0 0 auto; }

.footer-nav-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin: 0 0 16px;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-links a {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav-links a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* ── SCROLL-TO-TOP ─────────────────────────────────────────── */

#scroll-top {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 28px;
  z-index: 999;
  width: 42px;
  height: 42px;
  background: var(--terra);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: background 0.25s, transform 0.2s;
  align-items: center;
  justify-content: center;
}

#scroll-top:hover {
  background: #923e22;
  transform: translateY(-2px);
}

/* ── GLIGHTBOX OVERRIDES ───────────────────────────────────── */

.glightbox-clean .gslide-image img { border-radius: 2px; }

/* ── RESPONSIVE ────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .gallery-preview-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .accom-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .accommodation-gallery { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }

  #accommodations,
  #gallery-preview { padding: 56px 16px; }

  #inner-page { padding: 48px 16px 64px; }

  .tariff-intro {
    padding: 20px 20px;
  }

  .booking-widget-wrap { right: 16px; bottom: 64px; }

  .maps-wrap iframe { height: 300px; }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-brand,
  .footer-nav-col { width: 100%; }

  .footer-nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 20px;
  }
}

@media (max-width: 480px) {
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .accommodation-gallery { grid-template-columns: 1fr; }

  #hero { min-height: 500px; }
  #inner-banner,
  #static-banner { height: 56vmax; min-height: 300px; }

  .hero-tagline { white-space: normal; padding: 0 16px; }
  .hero-tagline h1 { letter-spacing: 0.12em; }
  .hero-bottom { padding-bottom: 40px; gap: 20px; }
  .hero-social-links { flex-direction: column; align-items: center; }

  .social-links-row { flex-direction: column; }

  .tariff-intro { padding: 18px 16px; font-size: 14px; }

  .tariff-section h3 { font-size: 14px; letter-spacing: 0.14em; }

  .contact-card { padding: 24px 18px; }

  .maps-wrap iframe { height: 240px; }

  .footer-copy { font-size: 11px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
