/* ============================================================
   PLAKA BEACH RESORT — UNIFIED STYLESHEET
   include/style.css
   ============================================================ */

/* ============ VARIABLES ============ */
:root {
  --teal: #7cc5c5;
  --teal-light: #a8dcd9;
  --teal-soft: #e4f4f3;
  --teal-dark: #5ba3a3;
  --teal-deeper: #3d8a8a;
  --gold: #c8a46e;
  --gold-light: #d4b88a;
  --gold-soft: #f0e4d0;
  --sand: #f5f0e8;
  --sand-light: #faf7f2;
  --sand-warm: #f8f3eb;
  --white: #ffffff;
  --text-dark: #2c3e4a;
  --text-medium: #5a7080;
  --text-light: #8a9daa;
  --bg-light: #fdfcfa;
}

/* ============ RESET ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  overflow-x: hidden;
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 20px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  padding: 12px 60px; box-shadow: 0 2px 30px rgba(0,0,0,0.06);
}
.nav-logo img { height: 60px; transition: height 0.4s ease; }
.nav.scrolled .nav-logo img { height: 45px; }

.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--text-dark);
  font-size: 0.8rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  position: relative; padding-bottom: 4px; transition: color 0.4s ease;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.btn-book {
  background: var(--gold); color: var(--white); padding: 10px 24px;
  font-weight: 600; letter-spacing: 1.5px; transition: all 0.3s ease;
}
.nav-links a.btn-book::after { display: none; }
.nav-links a.btn-book:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Nav variant: light (white links over dark/image hero) — add class .nav-light to <nav> */
.nav-light .nav-links a { color: var(--white); }
.nav-light .nav-links a.btn-book { color: var(--white); }
.nav-light .hamburger span { background: var(--white); }
.nav-light.scrolled .nav-links a { color: var(--text-dark); }
.nav-light.scrolled .nav-links a.btn-book { color: var(--white); }
.nav-light.scrolled .hamburger span { background: var(--text-dark); }

/* ============ DROPDOWN ============ */
.has-dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 200px; padding: 12px 0; margin-top: 12px;
  background: var(--white); border: 1px solid rgba(124,197,197,0.12);
  border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(8px);
  transition: all 0.3s ease; z-index: 100;
}
.has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown::before {
  content: ''; position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0; border-left: 8px solid transparent;
  border-right: 8px solid transparent; border-bottom: 8px solid var(--white);
}
.dropdown a {
  display: block; padding: 10px 24px;
  font-size: 0.75rem !important; font-weight: 400 !important;
  letter-spacing: 1px !important; color: var(--text-medium) !important;
  text-transform: none !important; transition: all 0.2s ease;
}
.dropdown a::after { display: none !important; }
.dropdown a:hover {
  background: var(--teal-soft); color: var(--teal-deeper) !important;
  padding-left: 28px;
}
/* nav-light dropdown text fix */
.nav-light .dropdown a { color: var(--text-medium) !important; }
.nav-light .dropdown a:hover { color: var(--teal-deeper) !important; }

/* ============ MOBILE DROPDOWN ============ */
.mobile-dropdown { text-align: center; }
.mobile-dropdown-toggle {
  text-decoration: none; color: var(--text-dark);
  font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400;
  cursor: pointer; transition: color 0.3s ease;
}
.mobile-dropdown-toggle:hover { color: var(--teal-dark); }
.mobile-dropdown-items {
  display: none; flex-direction: column; gap: 14px; margin-top: 12px; padding: 0 20px;
}
.mobile-dropdown-items.open { display: flex; }
.mobile-dropdown-items a {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 0.9rem !important; font-weight: 400;
  color: var(--text-medium); letter-spacing: 1px;
  text-decoration: none; transition: color 0.3s ease;
}
.mobile-dropdown-items a:hover { color: var(--teal-dark); }

/* ============ HAMBURGER ============ */
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 28px; height: 2px; background: var(--text-dark); transition: all 0.3s ease; }

/* ============ MOBILE MENU ============ */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 30px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  text-decoration: none; color: var(--text-dark);
  font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400;
  transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--teal-dark); }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  position: relative; height: 40vh; min-height: 320px;
  display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 50%, var(--teal-dark) 100%);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(255,255,255,0.25) 0%, transparent 60%);
}
/* page-hero with background image (room pages) */
.page-hero.with-image {
  background-size: cover; background-position: center; background-color: var(--teal);
  height: 55vh; min-height: 400px;
}
.page-hero.with-image::after {
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.1) 100%);
}
.page-hero-content {
  position: relative; z-index: 2; text-align: center; color: var(--white);
  padding: 0 20px 50px; width: 100%;
}
.page-hero.with-image .page-hero-content { padding-bottom: 60px; }
.page-hero-breadcrumb {
  font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 16px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
.page-hero-breadcrumb a:hover { color: var(--white); }
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.page-hero-title em { font-style: italic; color: var(--gold-light); }
.page-hero-sub {
  font-size: 0.95rem; color: rgba(255,255,255,0.8); font-weight: 300;
  margin-top: 14px; letter-spacing: 0.5px;
}
.page-hero-meta {
  display: flex; gap: 30px; justify-content: center; margin-top: 20px;
}
.page-hero-meta span {
  font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.8); font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.page-hero-meta svg {
  width: 16px; height: 16px; stroke: var(--gold-light); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ============ SECTION HELPERS ============ */
.section-label {
  font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--teal-dark); margin-bottom: 16px; font-weight: 600; display: block;
}

/* ============ BUTTONS ============ */
.btn-primary {
  background: var(--gold); color: var(--white);
  text-decoration: none; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; padding: 16px 40px;
  transition: all 0.3s ease; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(200,164,110,0.3); }
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.6); color: var(--white);
  text-decoration: none; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; padding: 16px 40px;
  transition: all 0.3s ease; display: inline-block;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.15); }

/* ============ CTA BANNER ============ */
.cta-banner {
  padding: 100px 60px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--teal-soft), var(--sand), var(--gold-soft));
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(124,197,197,0.12) 0%, transparent 40%),
              radial-gradient(circle at 80% 20%, rgba(200,164,110,0.1) 0%, transparent 40%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; color: var(--text-dark); margin-bottom: 20px;
}
.cta-banner h2 em { font-style: italic; color: var(--teal-deeper); }
.cta-banner p {
  font-size: 0.95rem; color: var(--text-medium); max-width: 500px;
  margin: 0 auto 40px; line-height: 1.7; font-weight: 300;
}
.cta-banner a {
  display: inline-block; text-decoration: none; background: var(--gold); color: var(--white);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 50px; border-radius: 4px; transition: all 0.3s ease;
}
.cta-banner a:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(200,164,110,0.25); }

/* ============ LIGHTBOX ============ */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(10px);
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: 90vw; max-height: 85vh; object-fit: contain;
  border-radius: 4px; opacity: 0; transition: opacity 0.3s ease;
}
.lightbox-img.loaded { opacity: 1; }
.lightbox-close {
  position: absolute; top: 24px; right: 30px;
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-close svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 0.8rem; letter-spacing: 2px;
}

/* ============ GALLERY GRID (shared by room pages & photo gallery) ============ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.gallery-item {
  aspect-ratio: 4/3; overflow: hidden; border-radius: 8px; cursor: pointer;
  position: relative; background-size: cover; background-position: center;
  background-color: var(--teal-light); transition: transform 0.4s ease;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0; border-radius: 8px;
  background: rgba(0,0,0,0); transition: background 0.3s ease;
}
.gallery-item:hover::after { background: rgba(0,0,0,0.08); }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-item.span-2 { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-zoom {
  position: absolute; bottom: 10px; right: 10px; width: 32px; height: 32px;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(6px);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s; z-index: 1;
}
.gallery-item:hover .gallery-zoom { opacity: 1; }
.gallery-zoom svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2; }
.gallery-empty {
  grid-column: 1 / -1; text-align: center; padding: 60px 20px;
  color: var(--text-light); font-size: 0.85rem; font-weight: 300;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--sand-warm); padding: 80px 60px 40px;
  color: var(--text-dark); border-top: 1px solid rgba(124,197,197,0.12);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
  max-width: 1200px; margin: 0 auto; padding-bottom: 60px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.footer-brand img { height: 50px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; font-weight: 300; max-width: 300px; }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 24px; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { text-decoration: none; color: var(--text-light); font-size: 0.85rem; font-weight: 300; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--teal-dark); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 30px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom span { font-size: 0.75rem; color: var(--text-light); font-weight: 300; }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid rgba(124,197,197,0.25); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; text-decoration: none;
}
.footer-social a:hover { border-color: var(--teal); background: var(--teal-soft); }
.footer-social a svg { width: 16px; height: 16px; fill: var(--text-light); }

/* ============ SCROLL ANIMATION ============ */
.visible { opacity: 1 !important; transform: translateY(0) !important; }


/* ===========================================================
   PAGE-SPECIFIC STYLES
   =========================================================== */

/* ============ HOME — HERO SLIDER ============ */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
   background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.2s ease-in-out;
  background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-dots {
  position: absolute; bottom: 90px; left: 50px; transform: translateX(-50%); z-index: 3;
  display: flex; gap: 12px;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer;
  transition: all 0.3s ease; padding: 0;
}
.hero-dot.active { background: var(--white); transform: scale(1.2); box-shadow: 0 0 10px rgba(255,255,255,0.4); }
.hero-dot:hover { background: rgba(255,255,255,0.7); }
.hero-arrows {
  position: absolute; top: 50%; width: 100%; z-index: 3;
  display: flex; justify-content: space-between; padding: 0 30px;
  transform: translateY(-50%); pointer-events: none;
}
.hero-arrow {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; pointer-events: all; transition: all 0.3s ease;
}
.hero-arrow:hover { background: rgba(255,255,255,0.3); border-color: rgba(255,255,255,0.5); }
.hero-arrow svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); padding: 0 20px; }
.hero-badge {
  display: inline-block; font-size: 0.7rem; letter-spacing: 5px; text-transform: uppercase;
  color: rgba(255,255,255,0.85); margin-bottom: 30px; font-weight: 500;
  opacity: 0; animation: fadeUp 1s 0.3s ease forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem); font-weight: 300; line-height: 1.1;
  margin-bottom: 24px; text-shadow: 0 2px 30px rgba(0,0,0,0.08);
  opacity: 0; animation: fadeUp 1s 0.5s ease forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  font-size: 1rem; font-weight: 500; letter-spacing: 1px;
  max-width: 550px; margin: 0 auto 40px; line-height: 1.8; color: rgba(255,255,255,0.9);
  opacity: 0; animation: fadeUp 1s 0.7s ease forwards;
}
.hero-cta {
  display: inline-flex; gap: 20px; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeUp 1s 0.9s ease forwards;
}
.hero-cta a { text-decoration: none; font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 16px 40px; transition: all 0.3s ease; }
.scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp 1s 1.2s ease forwards;
}
.scroll-hint span { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.scroll-line {
  width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-waves { position: absolute; bottom: 0; left: 0; width: 100%; height: 120px; overflow: hidden; z-index: 1; }
.hero-waves svg { position: absolute; bottom: 0; width: 200%; height: 100%; }
.hero-wave-1 { animation: wave 8s ease-in-out infinite; opacity: 0.5; }
.hero-wave-2 { animation: wave 6s ease-in-out infinite reverse; opacity: 0.3; }

@keyframes wave { 0%,100% { transform: translateX(0); } 50% { transform: translateX(-25%); } }
@keyframes scrollPulse { 0%,100% { opacity:1; transform:scaleY(1); } 50% { opacity:0.3; transform:scaleY(0.6); } }
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }

/* ============ HOME — INTRO ============ */
.intro {
  padding: 120px 60px; max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.intro-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; line-height: 1.2;
  color: var(--text-dark); margin-bottom: 30px;
}
.intro-text h2 em { font-style: italic; color: var(--teal-deeper); }
.intro-text p { font-size: 0.95rem; line-height: 1.9; color: var(--text-medium); font-weight: 300; margin-bottom: 30px; }
.intro-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.intro-feature { display: flex; align-items: flex-start; gap: 14px; }
.intro-feature-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 12px;
  background: var(--teal-soft); display: flex; align-items: center; justify-content: center;
}
.intro-feature-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--teal-dark); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.intro-feature h4 { font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 4px; color: var(--text-dark); }
.intro-feature span { font-size: 0.78rem; color: var(--text-light); font-weight: 300; }
.intro-visual { position: relative; }
.intro-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;

    background:
      
        url("../images/welcome-photo.jpg");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    border-radius: 0 80px 0 80px;
    position: relative;
    overflow: hidden;
}
.intro-image-placeholder .img-text {
  position: absolute; bottom: 30px; left: 30px; color: white;
  font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.6;
}
.intro-accent {
  position: absolute; top: -30px; right: -30px; width: 120px; height: 120px;
  border: 1px solid var(--gold); border-radius: 0 40px 0 40px; opacity: 0.25;
}

/* ============ HOME — ACCOMMODATION CARDS ============ */
.accommodation { padding: 100px 60px 120px; background: var(--sand); position: relative; overflow: hidden; }
.accommodation::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 10% 90%, rgba(124,197,197,0.08) 0%, transparent 40%),
              radial-gradient(circle at 90% 10%, rgba(200,164,110,0.06) 0%, transparent 40%);
}
.section-header { text-align: center; margin-bottom: 70px; position: relative; }
.section-header .section-label { display: block; }
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; color: var(--text-dark); line-height: 1.2;
}
.section-header h2 em { font-style: italic; color: var(--teal-deeper); }
.section-header p { font-size: 0.9rem; color: var(--text-light); max-width: 600px; margin: 20px auto 0; font-weight: 300; line-height: 1.7; }

.room-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; position: relative; }
.room-card {
  background: var(--white); border: 1px solid rgba(124,197,197,0.15); border-radius: 16px;
  overflow: hidden; transition: all 0.4s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.room-card:hover { transform: translateY(-8px); border-color: rgba(124,197,197,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.room-card-img {
  width: 100%; height: 220px; background-size: cover; background-position: center;
  background-color: var(--teal-light); position: relative; overflow: hidden;
}
.room-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--white) 0%, transparent 40%); }
.room-card-body { padding: 28px 30px 30px; }
.room-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 500; color: var(--text-dark); margin-bottom: 12px; }
.room-card-meta { display: flex; gap: 20px; margin-bottom: 16px; }
.room-card-meta span { font-size: 0.72rem; color: var(--teal-dark); letter-spacing: 1px; text-transform: uppercase; font-weight: 500; }
.room-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; font-weight: 300; margin-bottom: 24px; }
.room-card-link {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  color: var(--gold); font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; transition: gap 0.3s ease;
}
.room-card-link:hover { gap: 14px; }
.room-card-link svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; }

/* ============ HOME — LOCATION PREVIEW ============ */
.location { padding: 120px 60px; max-width: 1200px; margin: 0 auto; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.location-visual { position: relative; }
.location-map-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--teal-light), var(--teal), var(--teal-dark));
  border-radius: 80px 0 80px 0; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.location-map-placeholder::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.2) 0%, transparent 60%); }
.location-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 50px; height: 50px; }
.location-pin svg { width: 100%; height: 100%; fill: var(--gold); filter: drop-shadow(0 4px 10px rgba(200,164,110,0.3)); animation: bounce 2s ease-in-out infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.location-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; line-height: 1.2; color: var(--text-dark); margin-bottom: 24px;
}
.location-text h2 em { font-style: italic; color: var(--teal-deeper); }
.location-text p { font-size: 0.95rem; line-height: 1.9; color: var(--text-medium); font-weight: 300; margin-bottom: 20px; }
.location-highlights { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.location-tag {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px;
  background: var(--teal-soft); border: 1px solid rgba(124,197,197,0.2); border-radius: 30px;
  font-size: 0.75rem; color: var(--teal-deeper); font-weight: 500; letter-spacing: 0.5px;
}
.location-link {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  color: var(--gold); font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  margin-top: 30px; transition: gap 0.3s ease;
}
.location-link:hover { gap: 14px; }
.location-link svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; }

/* ============ ROOM PAGES — DETAIL ============ */
.room-detail { padding: 80px 60px 0; max-width: 1100px; margin: 0 auto; }
.room-description { max-width: 750px; }
.room-description h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 400; color: var(--text-dark); margin-bottom: 24px; line-height: 1.2;
}
.room-description h2 em { font-style: italic; color: var(--teal-deeper); }
.room-description p { font-size: 0.95rem; line-height: 1.9; color: var(--text-medium); font-weight: 300; margin-bottom: 20px; }
.room-cta {
  display: inline-block; margin-top: 20px; text-decoration: none;
  background: var(--gold); color: var(--white); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 36px; border-radius: 4px; transition: all 0.3s ease;
}
.room-cta:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,164,110,0.25); }

/* ============ ROOM PAGES — FACILITIES ============ */
.room-facilities { background: var(--sand); border-radius: 20px; padding: 40px 44px; margin: 50px auto 0; max-width: 1100px; }
.room-facilities h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 500; color: var(--text-dark);
  margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid rgba(124,197,197,0.2);
}
.facility-category {
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal-dark); font-weight: 600; margin: 24px 0 12px; grid-column: 1 / -1;
}
.facility-category:first-child { margin-top: 0; }
.facilities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.facility-item { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; color: var(--text-medium); font-weight: 400; }
.facility-icon {
  width: 30px; height: 30px; min-width: 30px; border-radius: 8px;
  background: var(--teal-soft); display: flex; align-items: center; justify-content: center;
}
.facility-icon svg { width: 14px; height: 14px; stroke: var(--teal-dark); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ============ ROOM PAGES — GALLERY ============ */
.room-gallery { padding: 60px 60px 80px; max-width: 1200px; margin: 0 auto; }
.room-gallery .section-label { text-align: center; }
.room-gallery h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 400; text-align: center;
  color: var(--text-dark); margin-bottom: 50px;
}
.room-gallery h2 em { font-style: italic; color: var(--teal-deeper); }

/* ============ ROOM PAGES — OTHER ROOMS ============ */
.other-rooms { padding: 80px 60px 100px; background: var(--sand); }
.other-rooms .section-label { text-align: center; }
.other-rooms h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 400; text-align: center;
  color: var(--text-dark); margin-bottom: 50px;
}
.other-rooms h2 em { font-style: italic; color: var(--teal-deeper); }
.other-rooms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 900px; margin: 0 auto; }
.other-room-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(124,197,197,0.15); transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04); text-decoration: none; color: inherit; display: block;
}
.other-room-card:hover { transform: translateY(-6px); border-color: rgba(124,197,197,0.3); box-shadow: 0 16px 50px rgba(0,0,0,0.08); }
.other-room-img { width: 100%; height: 200px; background-size: cover; background-position: center; background-color: var(--teal-light); position: relative; }
.other-room-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--white) 0%, transparent 40%); }
.other-room-body { padding: 24px 28px 28px; }
.other-room-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; color: var(--text-dark); margin-bottom: 8px; }
.other-room-body .meta { font-size: 0.72rem; color: var(--teal-dark); letter-spacing: 1px; text-transform: uppercase; font-weight: 500; }
.other-room-body p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; font-weight: 300; margin: 12px 0 20px; }
.other-room-link {
  display: inline-flex; align-items: center; gap: 8px; color: var(--gold);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; transition: gap 0.3s ease;
}
.other-room-card:hover .other-room-link { gap: 14px; }
.other-room-link svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; }

/* ============ PHOTO GALLERY PAGE ============ */
.gallery-nav {
  position: sticky; top: 70px; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(124,197,197,0.12);
  padding: 16px 60px; display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
}
.gallery-nav a {
  text-decoration: none; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 8px 20px; border-radius: 30px;
  color: var(--text-medium); border: 1px solid rgba(124,197,197,0.2);
  transition: all 0.3s ease; white-space: nowrap;
}
.gallery-nav a:hover, .gallery-nav a.active { background: var(--teal-soft); color: var(--teal-deeper); border-color: var(--teal); }

.gallery-section { padding: 70px 60px 30px; max-width: 1300px; margin: 0 auto; }
.gallery-section .section-label { margin-bottom: 10px; }
.gallery-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 400; color: var(--text-dark); margin-bottom: 10px;
}
.gallery-section h2 em { font-style: italic; color: var(--teal-deeper); }
.gallery-section > p { font-size: 0.9rem; color: var(--text-light); font-weight: 300; margin-bottom: 30px; max-width: 600px; }
.gallery-section + .gallery-section { border-top: 1px solid rgba(124,197,197,0.1); }

/* ============ FACILITIES PAGE ============ */
.facilities-intro { padding: 80px 60px 0; max-width: 800px; margin: 0 auto; text-align: center; }
.facilities-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 400; color: var(--text-dark); margin-bottom: 16px;
}
.facilities-intro h2 em { font-style: italic; color: var(--teal-deeper); }
.facilities-intro p { font-size: 0.95rem; line-height: 1.8; color: var(--text-medium); font-weight: 300; }

.fac-sections { padding: 60px 60px 40px; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.fac-card { background: var(--white); border: 1px solid rgba(124,197,197,0.12); border-radius: 20px; padding: 36px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); transition: box-shadow 0.3s ease; }
.fac-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.fac-card.full-width { grid-column: 1 / -1; }
.fac-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid rgba(124,197,197,0.12); }
.fac-card-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 12px; background: var(--teal-soft); display: flex; align-items: center; justify-content: center; }
.fac-card-icon svg { width: 22px; height: 22px; stroke: var(--teal-dark); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.fac-card-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 500; color: var(--text-dark); }
.fac-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.fac-card.full-width .fac-items { grid-template-columns: repeat(4, 1fr); }
.fac-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.84rem; color: var(--text-medium); font-weight: 400; padding: 8px 0; }
.fac-item-dot { width: 6px; height: 6px; min-width: 6px; border-radius: 50%; background: var(--teal); margin-top: 7px; }
.fac-item-text small { display: block; font-size: 0.72rem; color: var(--text-light); font-weight: 300; margin-top: 2px; font-style: italic; }

/* ============ LOCATION PAGE ============ */
.loc-description { padding: 80px 60px 0; max-width: 900px; margin: 0 auto; }
.loc-description h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 400; color: var(--text-dark); margin-bottom: 30px; line-height: 1.2;
}
.loc-description h2 em { font-style: italic; color: var(--teal-deeper); }
.loc-description p { font-size: 0.95rem; line-height: 1.9; color: var(--text-medium); font-weight: 300; margin-bottom: 20px; }
.loc-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.loc-tag { padding: 8px 18px; background: var(--teal-soft); border: 1px solid rgba(124,197,197,0.2); border-radius: 30px; font-size: 0.75rem; color: var(--teal-deeper); font-weight: 500; letter-spacing: 0.5px; }

.loc-map { padding: 60px 60px 0; max-width: 1200px; margin: 0 auto; }
.loc-map-wrapper { border-radius: 20px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.06); border: 1px solid rgba(124,197,197,0.12); }
.loc-map-wrapper iframe { width: 100%; height: 450px; border: none; display: block; }

.loc-distances { padding: 70px 60px 40px; max-width: 1200px; margin: 0 auto; }
.loc-distances .section-label { text-align: center; margin-bottom: 10px; }
.loc-distances > h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 400; text-align: center; color: var(--text-dark); margin-bottom: 50px;
}
.loc-distances > h2 em { font-style: italic; color: var(--teal-deeper); }
.dist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.dist-item { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid rgba(124,197,197,0.1); transition: background 0.2s ease; }
.dist-item:hover { background: var(--teal-soft); }
.dist-name { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; color: var(--text-dark); font-weight: 400; }
.dist-icon { width: 32px; height: 32px; min-width: 32px; border-radius: 8px; background: var(--sand); display: flex; align-items: center; justify-content: center; }
.dist-icon svg { width: 15px; height: 15px; stroke: var(--teal-dark); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.dist-value { font-size: 0.85rem; font-weight: 600; color: var(--teal-deeper); white-space: nowrap; }
.dist-category { grid-column: 1 / -1; padding: 20px 24px 10px; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--teal-dark); font-weight: 600; border-bottom: 1px solid rgba(124,197,197,0.15); margin-top: 10px; }
.dist-category:first-child { margin-top: 0; }

/* ============ CONTACT PAGE ============ */
.contact-section { padding: 80px 60px; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 400; color: var(--text-dark); margin-bottom: 16px; line-height: 1.2; }
.contact-info h2 em { font-style: italic; color: var(--teal-deeper); }
.contact-info > p { font-size: 0.92rem; line-height: 1.8; color: var(--text-medium); font-weight: 300; margin-bottom: 36px; }
.contact-methods { display: flex; flex-direction: column; gap: 20px; }
.contact-method { display: flex; align-items: center; gap: 16px; text-decoration: none; color: var(--text-dark); padding: 16px 20px; border-radius: 14px; background: var(--white); border: 1px solid rgba(124,197,197,0.1); transition: all 0.3s ease; }
.contact-method:hover { border-color: var(--teal); background: var(--teal-soft); transform: translateX(4px); box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.contact-method-icon { width: 46px; height: 46px; min-width: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.contact-method-icon.phone { background: #e8f5e9; }
.contact-method-icon.phone svg { stroke: #43a047; }
.contact-method-icon.whatsapp { background: #e8f5e9; }
.contact-method-icon.whatsapp svg { fill: #25d366; stroke: none; }
.contact-method-icon.viber { background: #ede7f6; }
.contact-method-icon.viber svg { fill: #7360f2; stroke: none; }
.contact-method-icon.email { background: var(--gold-soft); }
.contact-method-icon.email svg { stroke: var(--gold); }
.contact-method-icon.address { background: var(--teal-soft); }
.contact-method-icon.address svg { stroke: var(--teal-dark); }
.contact-method-icon svg { width: 22px; height: 22px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-method-text { display: flex; flex-direction: column; }
.contact-method-label { font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); font-weight: 600; margin-bottom: 3px; }
.contact-method-value { font-size: 0.92rem; color: var(--text-dark); font-weight: 500; }

.contact-form-wrap { background: var(--sand); border-radius: 24px; padding: 44px; border: 1px solid rgba(124,197,197,0.08); }
.contact-form-wrap h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 500; color: var(--text-dark); margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 0.85rem; color: var(--text-light); font-weight: 300; margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-medium); font-weight: 600; margin-bottom: 6px; }
.form-group label .req { color: var(--gold); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid rgba(124,197,197,0.2);
  border-radius: 10px; background: var(--white); font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem; color: var(--text-dark); outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none; appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238a9daa' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(124,197,197,0.15); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); font-weight: 300; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  margin-top: 24px; display: inline-block; border: none; cursor: pointer;
  background: var(--gold); color: var(--white); font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 15px 44px; border-radius: 6px; transition: all 0.3s ease; width: 100%;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 25px rgba(200,164,110,0.25); }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.form-success svg { width: 56px; height: 56px; stroke: var(--teal-dark); fill: none; stroke-width: 1.5; margin-bottom: 16px; }
.form-success h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 500; color: var(--text-dark); margin-bottom: 8px; }
.form-success p { font-size: 0.88rem; color: var(--text-light); font-weight: 300; }


/* ===========================================================
   RESPONSIVE
   =========================================================== */

@media (max-width: 1024px) {
  .nav { padding: 16px 30px; }
  .nav.scrolled { padding: 12px 30px; }

  /* Home */
  .intro { padding: 80px 30px; gap: 50px; }
  .accommodation { padding: 80px 30px; }
  .location { padding: 80px 30px; }
  .room-cards { grid-template-columns: repeat(2, 1fr); }

  /* Room pages */
  .room-detail { padding: 60px 30px 0; }
  .room-facilities { margin-left: 30px; margin-right: 30px; }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .room-gallery { padding: 40px 30px 60px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .other-rooms { padding: 60px 30px 80px; }

  /* Gallery page */
  .gallery-section { padding: 50px 30px 20px; }
  .gallery-nav { padding: 14px 30px; }

  /* Facilities page */
  .facilities-intro { padding: 60px 30px 0; }
  .fac-sections { padding: 40px 30px 30px; }
  .fac-card.full-width .fac-items { grid-template-columns: repeat(3, 1fr); }

  /* Location page */
  .loc-description { padding: 60px 30px 0; }
  .loc-map { padding: 40px 30px 0; }
  .loc-distances { padding: 50px 30px 30px; }
  .dist-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact page */
  .contact-section { padding: 60px 30px; gap: 40px; }

  /* CTA */
  .cta-banner { padding: 60px 30px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

  /* Heroes */
  .hero { min-height: 600px; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .page-hero { height: 30vh; min-height: 250px; }
  .page-hero.with-image { height: 45vh; min-height: 320px; }
  .page-hero-meta { gap: 16px; flex-wrap: wrap; }

  /* Home */
  .intro { grid-template-columns: 1fr; padding: 60px 20px; gap: 40px; }
  .intro-visual { order: -1; }
  .intro-image-placeholder { aspect-ratio: 16/9; border-radius: 0 40px 0 40px; }
  .intro-features { grid-template-columns: 1fr; }
  .accommodation { padding: 60px 20px; }
  .room-cards { grid-template-columns: 1fr; }
  .location { padding: 60px 20px; }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .location-map-placeholder { border-radius: 40px 0 40px 0; }

  /* Room pages */
  .room-detail { padding: 40px 20px 0; }
  .room-facilities { margin-left: 0; margin-right: 0; padding: 30px 24px; }
  .facilities-grid { grid-template-columns: 1fr; }
  .room-gallery { padding: 30px 20px 50px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item.span-2 { grid-column: span 2; grid-row: span 1; }
  .other-rooms { padding: 50px 20px 60px; }
  .other-rooms-grid { grid-template-columns: 1fr; }

  /* Gallery page */
  .gallery-nav { padding: 12px 16px; gap: 6px; top: 58px; }
  .gallery-nav a { font-size: 0.65rem; padding: 6px 14px; letter-spacing: 1px; }
  .gallery-section { padding: 40px 16px 20px; }

  /* Facilities page */
  .facilities-intro { padding: 50px 20px 0; }
  .fac-sections { grid-template-columns: 1fr; padding: 30px 20px 20px; gap: 20px; }
  .fac-card { padding: 28px 24px; }
  .fac-card.full-width .fac-items { grid-template-columns: repeat(2, 1fr); }
  .fac-items { grid-template-columns: 1fr; }

  /* Location page */
  .loc-description { padding: 40px 20px 0; }
  .loc-map { padding: 30px 20px 0; }
  .loc-map-wrapper iframe { height: 300px; }
  .loc-distances { padding: 40px 20px 20px; }
  .dist-grid { grid-template-columns: 1fr; }
  .dist-item { padding: 14px 16px; }

  /* Contact page */
  .contact-section { grid-template-columns: 1fr; padding: 40px 20px; gap: 30px; }
  .contact-form-wrap { padding: 30px 24px; }
  .form-row { grid-template-columns: 1fr; }

  /* CTA & Footer */
  .cta-banner { padding: 60px 20px; }
  .footer { padding: 50px 20px 30px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}
