/* ============================================================
   CAPA SPA RESORT — LUXURY DESIGN SYSTEM
   Typefaces: Cormorant Garamond (display) + Inter (body)
   Palette: Deep Forest, Warm Gold, Ivory, Obsidian
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ===================== RESET ===================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===================== TOKENS ===================== */
:root {
  --forest:    #1a2e23;
  --forest-md: #2e4939;
  --forest-lt: #3d6150;
  --gold:      #b8966a;
  --gold-lt:   #d4b48c;
  --gold-dk:   #8c6d47;
  --ivory:     #f8f5ef;
  --ivory-md:  #ede8df;
  --obsidian:  #0d1810;
  --text-dk:   #1a1a1a;
  --text-md:   #555;
  --text-lt:   #999;
  --white:     #ffffff;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --trans:     0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-md: 0 12px 48px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 80px rgba(0,0,0,0.14);
}

/* ===================== BASE ===================== */
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dk);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}

/* ===================== LOADER ===================== */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--obsidian);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--gold);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.loader-bar {
  width: 180px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: loaderSlide 1.8s ease forwards;
}
@keyframes loaderSlide { to { left: 100%; } }

/* ===================== SCROLL PROGRESS ===================== */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ===================== BACK TO TOP ===================== */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--forest);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
  font-size: 18px;
}
#back-to-top.visible { opacity: 1; pointer-events: all; }
#back-to-top:hover { background: var(--gold); transform: translateY(-4px); }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 24px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--trans);
}
.navbar.scrolled {
  padding: 16px 6%;
  background: rgba(26, 46, 35, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav-logo-sub {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding-bottom: 4px;
  transition: var(--trans);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--trans);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-book-btn {
  font-size: 11px !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--forest) !important;
  background: var(--gold);
  padding: 10px 22px !important;
  border-radius: 2px;
  transition: var(--trans) !important;
}
.nav-book-btn:hover { background: var(--gold-lt) !important; }
.nav-book-btn::after { display: none !important; }
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(13,24,16,0.28);
  backdrop-filter: blur(12px);
}
.lang-switcher button {
  min-width: 34px;
  height: 28px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  transition: var(--trans);
}
.lang-switcher button:hover,
.lang-switcher button.active {
  background: var(--gold);
  color: var(--forest);
}
.mobile-lang-switcher {
  margin-top: 8px;
  padding: 6px;
}
.mobile-lang-switcher button {
  min-width: 48px;
  height: 36px;
  font-size: 11px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  width: 28px;
  height: 1.5px;
  background: var(--white);
  transition: var(--trans);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--obsidian);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--white);
  letter-spacing: 3px;
  transition: var(--trans);
}
.mobile-menu a:hover { color: var(--gold); }

/* ===================== HERO ===================== */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide-1 { background-image: url('debarski-banji-banjiste.jpg'); }
.hero-slide-2 { background-image: url('98ae38f9-374f-eb6a-4506-b93864cb38f6.jpg'); }
.hero-slide-3 { background-image: url('venec.jpg'); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,20,14,0.72) 0%,
    rgba(10,20,14,0.55) 50%,
    rgba(10,20,14,0.72) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 20px;
  max-width: 900px;
  animation: heroFade 1.2s ease 0.5s both;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero-content p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--forest);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: var(--trans);
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.45);
  cursor: pointer;
  transition: var(--trans);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--trans);
  border: none;
}
.hero-dot.active { background: var(--gold); width: 40px; }
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 6%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease infinite;
}
.hero-scroll-hint::after {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ===================== QUICK BOOKING BAR ===================== */
.booking-bar {
  background: var(--forest);
  padding: 0 6%;
}
.booking-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.booking-field {
  flex: 1;
  padding: 22px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.booking-field label {
  display: block;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 6px;
}
.booking-field input,
.booking-field select {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  width: 100%;
  cursor: pointer;
}
.booking-field input::placeholder { color: rgba(255,255,255,0.5); }
.booking-field select option { background: var(--forest); }
.booking-submit {
  padding: 22px 36px;
  background: var(--gold);
  color: var(--forest);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}
.booking-submit:hover { background: var(--gold-lt); }

/* ===================== SECTION UTILITIES ===================== */
.section-label {
  display: block;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.light { color: var(--white); }
.section-body {
  font-size: 15px;
  color: var(--text-md);
  line-height: 1.8;
  max-width: 580px;
}
.section-body.light { color: rgba(255,255,255,0.7); }
.divider-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}
.divider-line.center { margin: 24px auto; }

/* ===================== INTRO ===================== */
.intro-section {
  padding: 110px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.intro-text {}
.intro-image-stack {
  position: relative;
  height: 560px;
}
.intro-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 85%;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.intro-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 52%;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 8px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
.stat-item {}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: var(--forest);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-top: 6px;
}

/* ===================== RESORTS SECTION ===================== */
.resorts-section {
  padding: 110px 6%;
  background: var(--ivory);
}
.resorts-header {
  text-align: center;
  margin-bottom: 80px;
}
.resorts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1300px;
  margin: 0 auto;
}
.resort-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
  position: relative;
}
.resort-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}
.resort-card-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.resort-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.resort-card:hover .resort-card-img img { transform: scale(1.08); }
.resort-card-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}
.resort-card-body {
  padding: 32px;
}
.resort-card-body h3 {
  font-size: 26px;
  color: var(--forest);
  margin-bottom: 12px;
}
.resort-card-body p {
  font-size: 14px;
  color: var(--text-md);
  line-height: 1.7;
  margin-bottom: 24px;
}
.resort-amenities {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.amenity-tag {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--forest-md);
  background: var(--ivory);
  padding: 6px 12px;
  border-radius: 2px;
}
.resort-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  transition: var(--trans);
}
.resort-card-link::after {
  content: '→';
  transition: var(--trans);
}
.resort-card-link:hover { color: var(--gold-dk); }
.resort-card-link:hover::after { transform: translateX(4px); }

/* ===================== SERVICES SECTION ===================== */
.services-section {
  padding: 110px 6%;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: 'WELLNESS';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 220px;
  font-weight: 600;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  white-space: nowrap;
}
.services-header {
  text-align: center;
  margin-bottom: 80px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1300px;
  margin: 0 auto;
}
.service-item {
  padding: 48px 32px;
  background: rgba(255,255,255,0.04);
  text-align: center;
  transition: var(--trans);
  border: 1px solid rgba(255,255,255,0.06);
}
.service-item:hover {
  background: rgba(184, 150, 106, 0.12);
  border-color: rgba(184,150,106,0.3);
}
.service-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}
.service-item h3 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}
.service-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ===================== ROOMS SECTION ===================== */
.rooms-section {
  padding: 110px 6%;
  background: var(--white);
}
.rooms-header {
  max-width: 600px;
  margin-bottom: 70px;
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1300px;
  margin: 0 auto;
}
.room-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 440px;
  cursor: pointer;
}
.room-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.room-card:hover .room-card-img { transform: scale(1.06); }
.room-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,14,0.90) 0%, rgba(10,20,14,0.20) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: var(--trans);
}
.room-card-type {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 8px;
}
.room-card h3 {
  font-size: 26px;
  color: var(--white);
  margin-bottom: 10px;
}
.room-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--gold-lt);
  margin-bottom: 20px;
}
.room-card-price span {
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,0.5);
}
.room-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--forest);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 2px;
  transition: var(--trans);
  transform: translateY(10px);
  opacity: 0;
  width: fit-content;
}
.room-card:hover .room-card-btn {
  transform: translateY(0);
  opacity: 1;
}
.room-card-btn:hover { background: var(--gold-lt); }

/* ===================== GALLERY PREVIEW ===================== */
.gallery-section {
  padding: 110px 6%;
  background: var(--ivory);
}
.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
  max-width: 1300px;
  margin: 0 auto 50px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,46,35,0);
  transition: var(--trans);
}
.gallery-item:hover::after { background: rgba(26,46,35,0.25); }
.gallery-center { text-align: center; }

/* ===================== TESTIMONIALS ===================== */
.testimonials-section {
  padding: 110px 6%;
  background: var(--forest);
  position: relative;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 70px;
}
.testimonials-slider {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-item {
  display: none;
}
.testimonial-item.active { display: block; }
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 40px;
}
.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}
.testimonial-stars span { color: var(--gold); font-size: 16px; }
.testimonial-author {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-lt);
}
.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}
.t-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  transition: var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--forest); }

/* ===================== CTA BANNER ===================== */
.cta-banner {
  padding: 110px 6%;
  background: var(--ivory-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('c2a2.webp') center/cover;
  opacity: 0.12;
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-size: clamp(36px, 5vw, 62px);
  color: var(--forest);
  margin-bottom: 20px;
}
.cta-banner p {
  font-size: 15px;
  color: var(--text-md);
  margin-bottom: 40px;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--obsidian);
  padding: 80px 6% 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 300px;
  margin: 16px 0 28px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.footer-brand-tagline {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: var(--trans);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: var(--trans);
}
.footer-col a:hover { color: var(--gold-lt); padding-left: 4px; }
.footer-col address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col address p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ===================== SCROLL ANIMATION ===================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===================== HOTEL PAGE HERO ===================== */
.hotel-hero {
  height: 100vh;
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 6% 80px;
}
.hotel-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hotel-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,14,0.88) 0%, rgba(10,20,14,0.3) 60%, transparent 100%);
}
.hotel-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
}
.hotel-hero-content .section-label { color: var(--gold-lt); }
.hotel-hero-content h1 {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hotel-hero-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
}

/* ===================== HOTEL ABOUT ===================== */
.hotel-about {
  padding: 110px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.hotel-about-images {
  position: relative;
  height: 520px;
}
.hotel-about-img1 {
  position: absolute;
  top: 0; right: 0;
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.hotel-about-img2 {
  position: absolute;
  bottom: 0; left: 0;
  width: 50%;
  height: 50%;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}

/* ===================== HOTEL ROOMS ===================== */
.hotel-rooms {
  padding: 110px 6%;
  background: var(--ivory);
}
.hotel-rooms-header {
  text-align: center;
  margin-bottom: 70px;
}
.hotel-rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1300px;
  margin: 0 auto;
}
.hotel-room-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
.hotel-room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.hotel-room-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.hotel-room-card:hover img { transform: scale(1.05); }
.hotel-room-info {
  padding: 28px;
}
.hotel-room-info h3 {
  font-size: 22px;
  color: var(--forest);
  margin-bottom: 10px;
}
.hotel-room-info p {
  font-size: 13px;
  color: var(--text-md);
  margin-bottom: 20px;
  line-height: 1.7;
}
.hotel-room-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}
.hotel-room-price strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--forest);
}
.hotel-room-price span {
  font-size: 12px;
  color: var(--text-lt);
}

/* ===================== SPA SECTION ===================== */
.spa-section {
  padding: 110px 6%;
  background: var(--forest);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.spa-text .section-label { color: var(--gold-lt); }
.spa-text .section-title { color: var(--white); }
.spa-text .section-body { color: rgba(255,255,255,0.65); }
.spa-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.spa-feature {
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  transition: var(--trans);
}
.spa-feature:hover { border-color: var(--gold); background: rgba(184,150,106,0.08); }
.spa-feature h4 {
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}
.spa-feature p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.spa-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 580px;
}
.spa-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================== RESTAURANT SECTION ===================== */
.restaurant-section {
  padding: 110px 6%;
  background: var(--ivory);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.restaurant-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 520px;
}
.restaurant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.restaurant-image:hover img { transform: scale(1.04); }

/* ===================== HOTEL GALLERY ===================== */
.hotel-gallery {
  padding: 110px 6%;
  background: var(--white);
}
.hotel-gallery-header {
  text-align: center;
  margin-bottom: 60px;
}
.hotel-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1300px;
  margin: 0 auto;
}
.hotel-gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.5s ease;
}
.hotel-gallery-grid img:hover { transform: scale(1.04); }

/* ===================== HOTEL CTA ===================== */
.hotel-cta {
  padding: 110px 6%;
  background: var(--forest);
  text-align: center;
}
.hotel-cta h2 {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--white);
  margin-bottom: 16px;
}
.hotel-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}

/* ===================== ABOUT PAGE ===================== */
.about-page-hero {
  min-height: 78vh;
}
.about-modern-section {
  padding: 110px 6%;
  background: var(--white);
}
.about-modern-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 72px;
  align-items: center;
}
.about-modern-copy .section-title {
  margin-bottom: 24px;
}
.about-modern-copy .section-body + .section-body {
  margin-top: 18px;
}
.about-modern-media {
  position: relative;
  min-height: 520px;
}
.about-modern-media img {
  position: absolute;
  width: 72%;
  height: 76%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
.about-modern-media img:first-child {
  top: 0;
  right: 0;
}
.about-modern-media img:last-child {
  left: 0;
  bottom: 0;
  border: 10px solid var(--white);
}
.about-split-band {
  padding: 110px 6%;
  background: var(--ivory);
}
.about-split-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
.about-principle {
  background: var(--white);
  border-top: 3px solid var(--gold);
  padding: 42px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.about-principle .section-label {
  margin-bottom: 16px;
}
.about-principle h2 {
  color: var(--forest);
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 18px;
}
.about-principle p {
  color: var(--text-md);
  font-size: 15px;
  line-height: 1.85;
}
.why-section {
  padding: 110px 6%;
  background: var(--white);
}
.why-header,
.about-team-modern .team-header {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.why-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.why-card {
  padding: 30px;
  background: var(--ivory);
  border-radius: var(--radius-sm);
  min-height: 260px;
  border: 1px solid var(--ivory-md);
}
.why-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold-lt);
  font-size: 22px;
}
.why-card h3 {
  color: var(--forest);
  font-size: 24px;
  margin-bottom: 12px;
}
.why-card p {
  color: var(--text-md);
  font-size: 14px;
  line-height: 1.75;
}
.about-team-modern {
  padding: 110px 6%;
  background: var(--ivory);
  text-align: center;
}
.about-team-modern .team-header p {
  color: var(--text-md);
  font-size: 15px;
  line-height: 1.85;
  margin-top: 18px;
}
.about-intro {
  padding: 110px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.about-timeline {
  padding: 110px 6%;
  background: var(--ivory);
}
.about-timeline-header {
  text-align: center;
  margin-bottom: 80px;
}
.timeline-track {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.timeline-track::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--gold);
  transform: translateX(-50%);
}
.timeline-node {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 80px;
}
.timeline-node-content {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.timeline-node:nth-child(even) .timeline-node-content:first-child { order: 3; }
.timeline-node:nth-child(even) .timeline-node-dot { order: 2; }
.timeline-node:nth-child(even) .timeline-node-content:last-child { order: 1; }
.timeline-node-dot {
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 0 6px rgba(184,150,106,0.2);
}
.timeline-node-content h3 {
  font-size: 22px;
  color: var(--forest);
  margin-bottom: 10px;
}
.timeline-node-content p {
  font-size: 14px;
  color: var(--text-md);
  line-height: 1.7;
}
.timeline-node-content img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-top: 16px;
}
.timeline-node-empty {}

/* ===================== ABOUT TEAM ===================== */
.team-section {
  padding: 110px 6%;
  text-align: center;
}
.team-header { margin-bottom: 70px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.team-card {}
.team-card-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  border: 3px solid var(--gold);
}
.team-card h3 {
  font-size: 22px;
  color: var(--forest);
  margin-bottom: 6px;
}
.team-card span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===================== GALLERY PAGE ===================== */
.gallery-page {
  padding: 130px 6% 110px;
}
.gallery-page-header {
  text-align: center;
  margin-bottom: 60px;
}
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 22px;
  background: transparent;
  border: 1px solid var(--ivory-md);
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-md);
  cursor: pointer;
  transition: var(--trans);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}
.gallery-masonry-full {
  columns: 4 250px;
  gap: 16px;
  max-width: 1300px;
  margin: 0 auto;
}
.gallery-masonry-full img {
  width: 100%;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--trans);
  break-inside: avoid;
}
.gallery-masonry-full img:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--trans);
}
.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }

/* ===================== CONTACT PAGE ===================== */
.contact-hero {
  min-height: 66vh;
}
.contact-page {
  padding: 130px 6% 110px;
  max-width: 1300px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-bottom: 80px;
}
.contact-info-block h2 {
  font-size: 40px;
  color: var(--forest);
  margin-bottom: 20px;
}
.contact-info-block p {
  font-size: 15px;
  color: var(--text-md);
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--ivory);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}
.contact-card-icon { font-size: 20px; }
.contact-card-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-card-text p {
  font-size: 14px;
  color: var(--text-md);
  margin-bottom: 0;
}
.contact-form-block {
  background: var(--ivory);
  padding: 48px;
  border-radius: var(--radius-md);
}
.contact-form-block h2 {
  font-size: 32px;
  color: var(--forest);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-md);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--ivory-md);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dk);
  outline: none;
  transition: var(--trans);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,106,0.1);
}
.form-group textarea { height: 140px; resize: vertical; }
.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #b94a48;
  box-shadow: 0 0 0 3px rgba(185,74,72,0.1);
}
.contact-form-status {
  min-height: 24px;
  margin: 4px 0 22px;
  font-size: 13px;
  line-height: 1.6;
}
.contact-form-status.success { color: var(--forest-md); }
.contact-form-status.error { color: #b94a48; }
.contact-faq {
  padding: 80px 0 0;
}
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--ivory-md);
  padding: 24px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 17px;
  color: var(--forest);
  font-family: 'Cormorant Garamond', serif;
}
.faq-icon {
  font-size: 20px;
  color: var(--gold);
  transition: var(--trans);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p {
  padding: 16px 0 0;
  font-size: 14px;
  color: var(--text-md);
  line-height: 1.7;
}

/* ===================== MAP ===================== */
.contact-map {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 80px;
}
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ===================== DARK MODE ===================== */
body.dark-mode {
  background: var(--obsidian);
  color: var(--white);
}
body.dark-mode .section-title { color: var(--white); }
body.dark-mode .section-body { color: rgba(255,255,255,0.65); }
body.dark-mode .intro-section,
body.dark-mode .rooms-section,
body.dark-mode .hotel-gallery,
body.dark-mode .about-modern-section,
body.dark-mode .why-section,
body.dark-mode .contact-page { background: var(--obsidian); }
body.dark-mode .resorts-section,
body.dark-mode .gallery-section,
body.dark-mode .hotel-rooms,
body.dark-mode .gallery-page,
body.dark-mode .about-split-band,
body.dark-mode .about-team-modern { background: var(--forest); }
body.dark-mode .resort-card,
body.dark-mode .hotel-room-card,
body.dark-mode .timeline-node-content,
body.dark-mode .about-principle,
body.dark-mode .why-card { background: var(--forest-md); border-color: rgba(255,255,255,0.08); }
body.dark-mode .resort-card-body p,
body.dark-mode .hotel-room-info p { color: rgba(255,255,255,0.6); }
body.dark-mode .resort-card-body h3,
body.dark-mode .hotel-room-info h3,
body.dark-mode .about-principle h2,
body.dark-mode .why-card h3,
body.dark-mode .contact-info-block h2,
body.dark-mode .contact-form-block h2 { color: var(--gold-lt); }
body.dark-mode .about-principle p,
body.dark-mode .why-card p,
body.dark-mode .about-team-modern .team-header p,
body.dark-mode .contact-info-block p,
body.dark-mode .contact-card-text p { color: rgba(255,255,255,0.65); }
body.dark-mode .amenity-tag { background: rgba(255,255,255,0.08); color: var(--gold-lt); }
body.dark-mode .contact-form-block { background: var(--forest); }
body.dark-mode .contact-card { background: rgba(255,255,255,0.05); }
body.dark-mode .booking-bar { background: var(--forest-md); }
body.dark-mode .cta-banner { background: var(--forest-md); }
body.dark-mode .cta-banner h2 { color: var(--white); }
body.dark-mode .faq-q { color: var(--white); }
body.dark-mode .faq-item { border-color: rgba(255,255,255,0.1); }
body.dark-mode .about-timeline { background: var(--forest); }

.dark-toggle {
  position: fixed;
  bottom: 90px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--forest);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  font-size: 18px;
  transition: var(--trans);
  color: var(--white);
}
.dark-toggle:hover { background: var(--gold); transform: scale(1.1); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .resorts-grid { grid-template-columns: 1fr 1fr; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 22px; }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .intro-section,
  .hotel-about,
  .spa-section,
  .restaurant-section,
  .about-intro,
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-modern-inner,
  .about-split-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-modern-media { min-height: 420px; }
  .hotel-rooms-grid { grid-template-columns: 1fr 1fr; }
  .hotel-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-track::before { left: 30px; }
  .timeline-node { grid-template-columns: 60px 1fr; }
  .timeline-node-dot { margin: 0; }
  .timeline-node:nth-child(even) .timeline-node-content:first-child { order: unset; }
  .timeline-node:nth-child(even) .timeline-node-dot { order: unset; }
  .timeline-node:nth-child(even) .timeline-node-content:last-child { order: unset; display: none; }
  .timeline-node-empty { display: none; }
  .booking-bar-inner { flex-direction: column; }
  .booking-field { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry-full { columns: 2 200px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .navbar { padding: 18px 6%; }
  .navbar.scrolled { padding: 14px 6%; }
  .resorts-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .hotel-rooms-grid { grid-template-columns: 1fr; }
  .intro-image-stack { height: 380px; }
  .hotel-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { gap: 24px; }
  .gallery-masonry-full { columns: 1; }
  .team-grid { grid-template-columns: 1fr; }
  .about-modern-section,
  .about-split-band,
  .why-section,
  .about-team-modern,
  .contact-page { padding: 80px 6%; }
  .about-modern-media { min-height: 340px; }
  .about-modern-media img { width: 78%; height: 72%; }
  .about-principle,
  .contact-form-block { padding: 30px 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { min-height: auto; }
  .contact-card { padding: 18px; }
  .reveal-left,
  .reveal-right {
    transform: translateY(32px);
  }
  .reveal-left.visible,
  .reveal-right.visible {
    transform: translateY(0);
  }
}
