/* ============================================================
   ROYAL SUIT HOTEL — Premium CSS Design System v2
   Fonts: Cormorant Garamond (display) + Jost (body)
   Icons: Phosphor Icons (CDN)
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  /* Color Palette */
  --gold:          #c9a96e;
  --gold-light:    #e4c896;
  --gold-dark:     #a07c46;
  --gold-muted:    rgba(201,169,110,0.15);
  --cream:         #f7f4ef;
  --cream-dark:    #ede9e0;
  --dark:          #0d0d0d;
  --dark-soft:     #161616;
  --dark-mid:      #242424;
  --dark-card:     #1e1e1e;
  --text:          #1a1a1a;
  --text-muted:    #707070;
  --text-light:    #9a9a9a;
  --white:         #ffffff;
  --border:        rgba(201,169,110,0.18);
  --border-light:  rgba(0,0,0,0.07);

  /* Typography */
  --font-display:  'Cormorant Garamond', 'Georgia', serif;
  --font-body:     'Jost', system-ui, sans-serif;

  /* Spacing */
  --section-py:    5.5rem;
  --container-w:   1220px;

  /* Transitions */
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:      cubic-bezier(0.0, 0.0, 0.2, 1);

  /* Shadows */
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.14);
  --shadow-gold:   0 8px 30px rgba(201,169,110,0.3);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container {
  width: min(var(--container-w), 100% - 2.5rem);
  margin-inline: auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 2.5rem;
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease), padding 0.45s var(--ease);
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(201,169,110,0.15), 0 4px 30px rgba(0,0,0,0.5);
  padding: 0.9rem 2.5rem;
}

.navbar-inner {
  max-width: var(--container-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-emblem {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: rgba(201,169,110,0.06);
}

.logo-emblem::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 0.5px solid rgba(201,169,110,0.4);
  border-radius: 50%;
}

.logo-emblem i {
  font-size: 1.5rem;
  color: var(--gold);
  filter: drop-shadow(0 0 6px rgba(201,169,110,0.4));
}

.logo:hover .logo-emblem {
  border-color: var(--gold-light);
  box-shadow: 0 0 20px rgba(201,169,110,0.25);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 0.1rem;
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: 0.03em;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ── Nav Links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  position: relative;
  padding-bottom: 0.3rem;
  transition: color 0.3s var(--ease);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.4s var(--ease);
}

.nav-link:hover,
.nav-link.active { color: var(--gold-light); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* ── Navbar CTA ── */
.navbar-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.5);
  padding: 0.55rem 1.25rem;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: background 0.3s var(--ease), border-color 0.3s, color 0.3s;
  white-space: nowrap;
}

.navbar-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.navbar-cta i { font-size: 1rem; }

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  z-index: 1001;
  position: relative;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.35s var(--ease), opacity 0.3s, width 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 16px; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

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

.hero-bg { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
  will-change: opacity;
}

.hero-slide.active { opacity: 1; animation: hero-ken-burns 10s ease-in-out forwards; }

@keyframes hero-ken-burns {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,10,10,0.2) 0%,
    rgba(10,10,10,0.55) 45%,
    rgba(10,10,10,0.8) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeInUp 0.9s 0.3s var(--ease) forwards;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.2);
  opacity: 0;
  animation: fadeInUp 0.9s 0.5s var(--ease) forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin: 0 auto 2.75rem;
  line-height: 1.9;
  opacity: 0;
  animation: fadeInUp 0.9s 0.7s var(--ease) forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.9s 0.9s var(--ease) forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.55), transparent);
  animation: scroll-anim 2.2s ease-in-out infinite;
}

@keyframes scroll-anim {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-dots {
  position: absolute;
  right: 2.5rem;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 2;
  display: flex;
  gap: 0.6rem;
  flex-direction: column;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.4s var(--ease-spring), height 0.4s var(--ease-spring);
}

.dot.active {
  background: var(--gold);
  transform: scale(1.5);
  height: 20px;
  border-radius: 4px;
}

/* ── Keyframes ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  background-size: 200% 200%;
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  border-radius: 2px;
  transition: background-position 0.4s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s;
}

.btn-primary:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201,169,110,0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.35);
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,0.08);
  color: var(--gold-light);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 1rem 2.75rem;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(201,169,110,0.5);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.95rem 1.75rem;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  color: var(--white);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   SECTION TYPOGRAPHY
   ============================================================ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-eyebrow.light { color: var(--gold-light); }
.section-eyebrow.light::before { background: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-desc {
  font-size: 1.12rem; color: var(--text-muted); max-width: 580px; line-height: 1.85; font-weight: 400;
}

.section-header.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.75rem;
}

.section-header.centered .section-eyebrow {
  justify-content: center;
}

.section-header.centered .section-eyebrow::before { display: none; }
.section-header.centered .section-eyebrow::after {
  display: none;
}

.section-header.centered .section-eyebrow {
  gap: 0.8rem;
}

.section-header.centered .section-eyebrow::before,
.section-header.centered .section-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-header.centered .section-eyebrow.light::before,
.section-header.centered .section-eyebrow.light::after { background: var(--gold-light); }

/* ============================================================
   FEATURES BAR
   ============================================================ */
.features-bar {
  background: var(--dark);
  border-bottom: 1px solid rgba(201,169,110,0.12);
  padding: 0;
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 10;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 2rem 2.5rem;
  flex: 1;
  min-width: 180px;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
  cursor: default;
}

.feature-item:last-child { border-right: none; }

.feature-item:hover {
  background: rgba(201,169,110,0.06);
}

.feature-icon-wrap {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}

.feature-item:hover .feature-icon-wrap {
  border-color: var(--gold);
  background: rgba(201,169,110,0.1);
}

.feature-icon-wrap i {
  font-size: 1.25rem;
  color: var(--gold);
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.feature-text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
}

.feature-text span {
  font-size: 0.9rem; color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  font-weight: 300;
}

.feature-divider {
  display: none;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
}

.about-images { position: relative; }

.about-img-main {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.about-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 4px;
  pointer-events: none;
}

.about-img-main:hover img { transform: scale(1.04); }

.about-img-accent {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
}

.accent-card {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 1.75rem 2.25rem;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 16px 44px rgba(201,169,110,0.4);
}

.accent-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.accent-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.65);
  margin-top: 0.3rem;
  font-weight: 500;
}

.about-content { padding-left: 1rem; }

.about-text {
  color: var(--text-muted);
  line-height: 1.95;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  font-weight: 300;
}

.about-text p + p { margin-top: 1.1rem; }

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1.05rem; color: var(--text); font-weight: 500;
}

.highlight-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-muted);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon i {
  font-size: 0.9rem;
  color: var(--gold-dark);
}

/* ============================================================
   ROOMS SECTION
   ============================================================ */
.rooms-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.room-card {
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s;
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.room-card--featured {
  border-color: rgba(201,169,110,0.3);
  box-shadow: 0 4px 24px rgba(201,169,110,0.1);
}

.room-card--featured:hover {
  box-shadow: 0 24px 65px rgba(201,169,110,0.22);
}

.room-img-wrap {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.room-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

.room-card:hover .room-img-wrap img { transform: scale(1.08); }

.room-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--dark);
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  border: 1px solid rgba(201,169,110,0.3);
}

.room-badge--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border: none;
}

.room-body { padding: 1.85rem; }

.room-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.room-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.35rem;
  font-weight: 300;
}

.room-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-bottom: 1.6rem;
}

.room-amenities li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
}

.room-amenities li i {
  font-size: 1.15rem;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.room-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(160,124,70,0.4);
  transition: color 0.3s, gap 0.3s var(--ease-spring), border-color 0.3s;
}

.room-btn:hover {
  color: var(--gold);
  gap: 0.75rem;
  border-color: var(--gold);
}

.room-btn i { font-size: 0.85rem; transition: transform 0.3s var(--ease); }
.room-btn:hover i { transform: translateX(3px); }

.room-btn--gold { color: var(--gold); border-color: rgba(201,169,110,0.4); }
.room-btn--gold:hover { color: var(--gold-light); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 7rem 2rem;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.94) 0%, rgba(40,24,8,0.94) 100%),
    url('../img/img_1.webp') center/cover no-repeat;
  will-change: transform;
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.1rem;
  letter-spacing: 0.01em;
}

.cta-title em { font-style: italic; color: var(--gold-light); }

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.75rem;
  font-weight: 300;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
  padding: var(--section-py) 0;
  background: var(--dark);
}

.gallery-section .section-title { color: var(--white); }
.gallery-section .section-eyebrow { color: var(--gold); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 0.6rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.gallery-item--large { grid-row: span 2; }
.gallery-item--large img { height: 100%; min-height: 468px; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--wide img { height: 230px; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.75) 0%,
    transparent 60%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gallery-overlay span i { font-size: 1rem; color: var(--gold); }

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }
.gallery-item:hover img { transform: scale(1.07); }

/* ============================================================
   ATTRACTIONS SECTION
   ============================================================ */
.attractions-section {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.attraction-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}

.attraction-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.attraction-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.attraction-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
  filter: brightness(0.88);
}

.attraction-card:hover .attraction-img img {
  transform: scale(1.08);
  filter: brightness(0.78);
}

.attraction-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,0.2);
  transition: background 0.3s;
}

.attraction-card:hover .attraction-img-overlay {
  background: rgba(10,10,10,0.4);
}

.attraction-icon-wrap {
  width: 50px;
  height: 50px;
  background: rgba(201,169,110,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.9);
  transition: transform 0.35s var(--ease-spring);
}

.attraction-card:hover .attraction-icon-wrap { transform: scale(1); }

.attraction-icon-wrap i {
  font-size: 1.4rem;
  color: var(--dark);
}

.attraction-body { padding: 1.25rem 1.5rem; }

.attraction-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.attraction-body p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   CONTACT STRIP (Homepage)
   ============================================================ */
.contact-strip {
  padding: 3.5rem 0;
  background: var(--dark-soft);
  border-top: 1px solid rgba(201,169,110,0.1);
}

.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.contact-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 0.5rem 0;
}

.cs-icon-wrap {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cs-icon-wrap i {
  font-size: 1.2rem;
  color: var(--gold);
}

.contact-strip-item h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.contact-strip-item p,
.contact-strip-item a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  font-weight: 300;
}

.contact-strip-item a:hover { color: var(--gold-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); }

.footer-top {
  padding: 4.5rem 0 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 3.5rem;
}

.footer-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.85;
  margin-top: 1.4rem;
  font-weight: 300;
  font-style: italic;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links h5,
.footer-contact h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--gold-light); }

.footer-links a { display: inline-flex; align-items: center; gap: 0.4rem; }
.footer-links a i { font-size: 0.8rem; color: var(--gold-dark); }

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.25);
  color: var(--gold);
  margin-top: 1.25rem;
  transition: background 0.3s, border-color 0.3s, transform 0.35s var(--ease-spring);
}

.footer-social i { font-size: 1.1rem; }

.footer-social:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: scale(1.12);
}

.footer-bottom {
  padding: 1.75rem 0;
  text-align: center;
}

.footer-bottom p { margin: 0; /* footer-p */ 
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.07em;
  font-weight: 300;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease);
  backdrop-filter: blur(12px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 4px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
  transform: scale(0.93);
  transition: transform 0.45s var(--ease);
}

.lightbox.active .lightbox-img { transform: scale(1); }

.lightbox-close {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s var(--ease-spring);
}

.lightbox-close i { font-size: 1.2rem; }
.lightbox-close:hover {
  background: rgba(201,169,110,0.25);
  transform: rotate(90deg);
}

/* ============================================================
   FLOATING BUTTONS (WhatsApp + Phone)
   ============================================================ */
.floating-btns {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s;
}

.float-btn:hover { transform: scale(1.12); color: var(--white); }

.float-btn-wa { background: #25d366; animation: float-pulse-green 3.5s ease-in-out infinite; }
.float-btn-phone { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); animation: float-pulse-gold 3.5s ease-in-out 1.75s infinite; }

.float-btn-wa:hover { box-shadow: 0 8px 30px rgba(37,211,102,0.55); animation: none; }
.float-btn-phone:hover { box-shadow: 0 8px 30px rgba(201,169,110,0.55); animation: none; }

.float-btn i { font-size: 1.5rem; }

@keyframes float-pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.08); }
}

@keyframes float-pulse-gold {
  0%, 100% { box-shadow: 0 4px 20px rgba(201,169,110,0.35); }
  50%       { box-shadow: 0 4px 28px rgba(201,169,110,0.6), 0 0 0 8px rgba(201,169,110,0.08); }
}

.float-tooltip {
  position: absolute;
  right: 66px;
  background: rgba(13,13,13,0.92);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s var(--ease);
  transform: translateX(6px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: rgba(13,13,13,0.85);
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.3s, border-color 0.3s;
}

.scroll-top i { font-size: 1.1rem; }

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-4px);
}

/* ============================================================
   PAGE HERO (Inner pages)
   ============================================================ */
.page-hero {
  height: 48vh;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3.75rem;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(10,10,10,0.45) 0%,
    rgba(10,10,10,0.82) 100%
  );
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 0 2rem;
  max-width: var(--container-w);
  margin-inline: auto;
  width: 100%;
}

.page-hero-content .section-eyebrow { color: var(--gold); margin-bottom: 0.65rem; }

.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.65rem;
}

.page-hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  font-weight: 300;
}

/* ============================================================
   ROOM DETAIL (Odalar page)
   ============================================================ */
.room-detail-section { padding: var(--section-py) 0; background: var(--white); }

.room-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.room-detail-grid:first-child { padding-top: 0; }
.room-detail-grid:last-child { border-bottom: none; }

.room-detail-grid.reverse { direction: rtl; }
.room-detail-grid.reverse > * { direction: ltr; }

.room-detail-img {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.room-detail-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 6px;
  pointer-events: none;
}

.room-detail-img img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

.room-detail-img:hover img { transform: scale(1.04); }

.room-detail-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.95;
  margin-bottom: 1.1rem;
  font-weight: 300;
}

.room-amenities-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 2.25rem;
  list-style: none;
}

.room-amenities-detail li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.87rem;
  color: var(--text);
  padding: 0.65rem 0.9rem;
  background: var(--cream);
  border-radius: 4px;
  border-left: 2px solid var(--gold);
  font-weight: 400;
}

.room-amenities-detail li i {
  font-size: 1rem;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.gold-badge-inline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  padding: 0.2rem 0.65rem;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 0.6rem;
}

/* ============================================================
   CONTACT MAIN (Contact page)
   ============================================================ */
.contact-main { padding: 1rem 0 5rem; }

.contact-cards-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.contact-card-big {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  transition: border-color 0.3s, transform 0.4s var(--ease), box-shadow 0.4s;
}

.contact-card-big:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.ccb-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--gold-muted);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}

.ccb-icon-wrap i { font-size: 1.3rem; color: var(--gold-dark); }

.contact-card-big:hover .ccb-icon-wrap {
  background: var(--gold);
  border-color: var(--gold);
}

.contact-card-big:hover .ccb-icon-wrap i { color: var(--dark); }

.ccb-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.ccb-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.25rem;
  font-weight: 300;
}

.ccb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.3s, gap 0.3s var(--ease-spring);
}

.ccb-link i { font-size: 0.8rem; transition: transform 0.3s; }
.ccb-link:hover { color: var(--gold); gap: 0.65rem; }
.ccb-link:hover i { transform: translateX(3px); }

.ccb-link-big {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 0.5rem;
  transition: color 0.3s;
}

.ccb-link-big.small { font-size: 1rem; word-break: break-all; }
.ccb-link-big:hover { color: var(--gold-dark); }

.ccb-wa-btn { margin-top: 1rem; padding: 0.6rem 1.25rem; font-size: 0.8rem; }

.ccb-ig-preview {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.ccb-ig-preview img { border-radius: 50%; }

.contact-map-full { margin-bottom: 4rem; }

.map-header { margin-bottom: 1.75rem; }
.map-header p { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.5rem; font-weight: 300; }

.map-embed {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

/* ============================================================
   ABOUT PAGE (Hakkımızda)
   ============================================================ */
.about-page-section { padding: var(--section-py) 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}

.value-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.25rem 2rem;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
}

.value-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold-muted), rgba(201,169,110,0.08));
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: background 0.3s, border-color 0.3s;
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
}

.value-icon i {
  font-size: 1.6rem;
  color: var(--gold-dark);
  transition: color 0.3s;
}

.value-card:hover .value-icon i { color: var(--dark); }

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.85;
  font-weight: 300;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: var(--section-py) 0;
}

.story-img {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

.story-img:hover img { transform: scale(1.04); }

.story-content .about-text { margin-bottom: 2rem; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 4rem 0;
  background: var(--dark);
}

.stat-item {
  text-align: center;
  padding: 2rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.8s;
  transition-timing-function: var(--ease-out);
}

[data-reveal="up"]    { transform: translateY(32px); }
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(0.95); }
[data-reveal="fade"]  { }

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .attractions-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-grid > :first-child { grid-column: span 2; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar.scrolled { padding: 0.9rem 1.5rem !important; }

  :root { --section-py: 3.75rem; }

  .navbar { padding: 1.1rem 1.5rem; }
  .navbar-cta { display: none; }

  /* Mobile menu — solid background, full panel */
  .nav-links { position: fixed; top: 0; right: -100%; height: 100dvh; bottom: 0;
    width: min(320px, 88vw);
    background: rgba(13, 13, 13, 0.99);
    backdrop-filter: none; /* solid bg, no blur needed */
    flex-direction: column;
    padding: 6rem 2.5rem 2rem;
    gap: 1.75rem;
    align-items: flex-start;
    transition: right 0.45s var(--ease);
    box-shadow: -8px 0 50px rgba(0,0,0,0.5);
    z-index: 999;
    border-left: 1px solid rgba(201,169,110,0.12);
  }

  .nav-links.open { right: 0; }

  .nav-link {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.88);
    letter-spacing: 0.1em;
  }

  .hamburger { display: flex; }

  /* Overlay when menu open */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-accent { bottom: -1.5rem; right: 1rem; }
  .about-content { padding-left: 0; }

  .rooms-grid { grid-template-columns: 1fr; }

  .contact-strip-grid { grid-template-columns: 1fr 1fr; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--large { grid-row: unset; }
  .gallery-item--large img { min-height: unset; height: 220px; }
  .gallery-item--wide { grid-column: span 2; }

  .attractions-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid > :first-child { grid-column: unset; }

  .features-bar { flex-wrap: wrap; }
  .feature-item { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }

  .room-detail-grid {
    grid-template-columns: 1fr;
    direction: ltr !important;
    padding: 2.75rem 0;
    gap: 2.25rem;
  }
  .room-detail-grid > * { direction: ltr !important; }
  .room-detail-img img { height: 290px; }
  .room-amenities-detail { grid-template-columns: 1fr; }

  .contact-cards-full { grid-template-columns: 1fr; }

  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-img img { height: 300px; }

  .values-grid { grid-template-columns: 1fr; }

  .stats-row { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3rem; }
  .hero-actions { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: unset; }
  .gallery-item img, .gallery-item--large img { height: 200px; min-height: unset; }
  .attractions-grid { grid-template-columns: 1fr; }
  .contact-strip-grid { grid-template-columns: 1fr; }
  .feature-item { min-width: 100%; }
  .floating-btns { bottom: 1.5rem; right: 1.5rem; }
  .scroll-top { bottom: 1.5rem; left: 1.5rem; }
}

.float-btn-maps { background: #4285F4; color: var(--white); }
.float-btn-maps:hover { background: #3367d6; box-shadow: 0 10px 30px rgba(66,133,244,0.4); transform: translateY(-4px); }
