/* ============================================
   AZURA — Marmaris Bay Hotel
   Modern coastal / Mediterranean design system
   ============================================ */

:root {
  /* Core palette — Aegean coast */
  --ink:        #0B1F2A;   /* deep ocean — primary text */
  --marine:     #143A52;   /* navy — headings, footer */
  --aegean:     #2A6F89;   /* mid blue — links */
  --wave:       #87B8CC;   /* soft surf — accents */
  --sky:        #DCEAF1;   /* mist — backgrounds */
  --pearl:      #F8F5EE;   /* off-white — body bg */
  --sand:       #EFE4CC;   /* warm sand — sections */
  --linen:      #E7DDC4;   /* deeper sand */
  --sun:        #C9A24B;   /* burnished gold */
  --sun-soft:   #E0BE74;
  --coral:      #D97757;   /* warm accent — sparingly */
  --olive:      #6E7A4F;   /* pine green */
  --slate:      #4A5965;   /* secondary text */

  --shadow-1: 0 2px 16px rgba(11, 31, 42, 0.06);
  --shadow-2: 0 12px 40px rgba(11, 31, 42, 0.10);
  --shadow-3: 0 24px 64px rgba(11, 31, 42, 0.18);

  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  --max: 1280px;
  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 24px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }
*::selection { background: var(--marine); color: var(--pearl); }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--pearl);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--marine);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

img { display: block; max-width: 100%; height: auto; }

/* ===== Section spacing & layout ===== */
.section { padding: 6rem 0; }
@media (max-width: 768px) { .section { padding: 4rem 0; } }
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.divider-line { width: 56px; height: 1px; background: var(--sun); }

/* Numbered section label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--aegean);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: attr(data-num);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--sun);
  letter-spacing: 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--marine);
  color: var(--pearl);
}
.btn-primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.btn-gold {
  background: var(--sun);
  color: var(--marine);
}
.btn-gold:hover {
  background: var(--sun-soft);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--pearl);
  border-color: rgba(248, 245, 238, 0.5);
  backdrop-filter: blur(6px);
}
.btn-outline-light:hover {
  background: var(--pearl);
  color: var(--marine);
  border-color: var(--pearl);
}
.btn-ghost {
  background: transparent;
  color: var(--marine);
  border-color: var(--marine);
}
.btn-ghost:hover {
  background: var(--marine);
  color: var(--pearl);
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--marine);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--marine);
  padding-bottom: 2px;
  transition: all 0.3s;
}
.btn-link:hover { color: var(--sun); border-color: var(--sun); gap: 0.8rem; }

/* ===== Top bar ===== */
.top-bar {
  background: var(--ink);
  color: rgba(248, 245, 238, 0.85);
  font-size: 0.78rem;
}
.top-bar a {
  color: rgba(248, 245, 238, 0.85);
  text-decoration: none;
  transition: color 0.25s;
}
.top-bar a:hover { color: var(--sun-soft); }

/* ===== Navbar ===== */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 245, 238, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s;
}
.navbar.scrolled {
  background: rgba(248, 245, 238, 0.96);
  border-bottom-color: rgba(11, 31, 42, 0.06);
  box-shadow: var(--shadow-1);
}
.nav-link {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.25s;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--sun);
  transition: width 0.4s var(--ease);
}
.nav-link:hover { color: var(--marine); }
.nav-link:hover::after { width: 100%; }

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  background: var(--marine);
}
/* Slide'ları clip etmek için ayrı wrapper — booking bar hero'yu taşabilsin */
.hero-slides-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
  transform: scale(1.06);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.6s var(--ease), transform 9s linear;
}
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 31, 42, 0.15) 0%, rgba(11, 31, 42, 0.3) 50%, rgba(11, 31, 42, 0.7) 100%),
    linear-gradient(90deg, rgba(11, 31, 42, 0.35) 0%, rgba(11, 31, 42, 0) 60%);
}

.hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 clamp(1.5rem, 5vw, 5rem) clamp(11rem, 22vh, 16rem);
  color: var(--pearl);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--sun-soft);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.2s var(--ease) 0.1s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--sun);
}

.hero-title {
  font-size: clamp(2.8rem, 8vw, 7.2rem);
  line-height: 0.95;
  font-weight: 400;
  color: var(--pearl);
  max-width: 1100px;
  margin: 0 0 1.5rem;
  letter-spacing: -0.025em;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.4s var(--ease) 0.3s forwards;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--sun-soft);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  max-width: 580px;
  color: rgba(248, 245, 238, 0.88);
  font-weight: 300;
  margin: 0 0 2.5rem;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 1.4s var(--ease) 0.55s forwards;
}

.hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.4s var(--ease) 0.8s forwards;
}

.hero-side {
  position: absolute;
  right: clamp(1.5rem, 4vw, 4rem);
  bottom: clamp(7rem, 14vh, 11rem);
  z-index: 3;
  text-align: right;
  color: rgba(248, 245, 238, 0.7);
}
.hero-side .label { font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; }
.hero-side .value { font-family: var(--font-display); font-size: 1.5rem; color: var(--pearl); margin-top: 0.25rem; }

.hero-nav {
  position: absolute;
  left: clamp(1.5rem, 5vw, 5rem);
  bottom: clamp(8rem, 18vh, 12rem);
  display: flex;
  gap: 0.6rem;
  z-index: 3;
}
.hero-dot {
  width: 40px;
  height: 2px;
  background: rgba(248, 245, 238, 0.25);
  border: none;
  cursor: pointer;
  transition: background 0.4s;
}
.hero-dot.active { background: var(--sun); }

.hero-scroll-cue {
  position: absolute;
  right: clamp(1.5rem, 5vw, 5rem);
  bottom: 2.5rem;
  z-index: 3;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(248, 245, 238, 0.7);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-scroll-cue .line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, rgba(248,245,238,0.5), transparent);
  animation: slideRight 2.5s ease-in-out infinite;
}
@keyframes slideRight {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(8px); opacity: 1; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Booking bar — hero içinde, %50 aşağı taşar ===== */
.hero-booking {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: calc(100% - 3rem);
  max-width: var(--max);
  z-index: 20;
}
.hero-booking__inner {
  background: rgba(248, 245, 238, 0.96);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(248, 245, 238, 0.7);
  border-radius: 20px;
  box-shadow:
    0 30px 60px rgba(11, 31, 42, 0.25),
    0 8px 24px rgba(11, 31, 42, 0.12);
  padding: 1.5rem 1.75rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  align-items: center;
  gap: 0;
}

@media (max-width: 900px) {
  .hero-booking {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: calc(100% - 2rem);
    margin: 0 auto;
  }
  .hero-booking__inner {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-booking__inner {
    grid-template-columns: 1fr;
  }
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.25rem 1.4rem;
  border-right: 1px solid rgba(11, 31, 42, 0.1);
}
.hero-booking__inner .booking-field:first-child { padding-left: 0.5rem; }
.hero-booking__inner .booking-field:nth-child(4) { border-right: none; }

@media (max-width: 900px) {
  .booking-field {
    border-right: none;
    border-bottom: 1px solid rgba(11, 31, 42, 0.08);
    padding: 0.5rem 0;
  }
  .hero-booking__inner .booking-field:first-child { padding-left: 0; }
}

.booking-field label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aegean);
  font-weight: 600;
}
.booking-field input,
.booking-field select {
  border: none;
  background: transparent;
  padding: 0.15rem 0;
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--ink);
  outline: none;
  width: 100%;
}

.hero-booking__btn {
  margin-left: 1.25rem;
  height: 100%;
  min-height: 56px;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .hero-booking__btn { margin-left: 0; grid-column: 1 / -1; width: 100%; }
}

/* Push next section down to compensate for floating booking bar */
.hero + section,
.hero ~ section:first-of-type {
  padding-top: 5rem;
}
@media (max-width: 900px) {
  .hero + section,
  .hero ~ section:first-of-type {
    padding-top: 2rem;
  }
}

/* ===== Cards ===== */
.card {
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--pearl);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease);
  position: relative;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2);
}
.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: var(--radius-m);
}
.card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out-expo);
}
.card:hover .card-image img { transform: scale(1.08); }

.tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(248, 245, 238, 0.95);
  color: var(--marine);
  font-weight: 600;
  backdrop-filter: blur(8px);
}

/* Room card */
.room-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  color: var(--slate);
  font-size: 0.84rem;
}
.room-card .meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.feature-pill {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(11, 31, 42, 0.15);
  color: var(--slate);
  border-radius: var(--radius-pill);
}

/* ===== Bento amenities ===== */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
@media (max-width: 900px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .bento { grid-template-columns: 1fr; } }

.bento-tile {
  position: relative;
  border-radius: var(--radius-m);
  padding: 1.75rem;
  overflow: hidden;
  background: var(--pearl);
  border: 1px solid rgba(11, 31, 42, 0.06);
  transition: all 0.5s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bento-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.bento-tile h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--marine);
  margin: 0 0 0.4rem;
  line-height: 1.15;
}
.bento-tile p { font-size: 0.88rem; color: var(--slate); margin: 0; line-height: 1.5; }

.bento-tile.tile-wide { grid-column: span 2; }
.bento-tile.tile-tall { grid-row: span 2; }
.bento-tile.tile-image {
  color: var(--pearl);
  border-color: transparent;
}
.bento-tile.tile-image::before {
  content: '';
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.bento-tile.tile-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,42,0.1), rgba(11,31,42,0.75));
  z-index: -1;
}
.bento-tile.tile-image h4 { color: var(--pearl); font-size: 1.6rem; }
.bento-tile.tile-image p { color: rgba(248,245,238,0.85); }

.bento-tile .bento-icon {
  width: 44px; height: 44px;
  background: rgba(42, 111, 137, 0.1);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--marine);
  margin-bottom: 1rem;
}
.bento-tile.tile-image .bento-icon {
  background: rgba(248, 245, 238, 0.15);
  color: var(--pearl);
  backdrop-filter: blur(8px);
}
@media (max-width: 520px) {
  .bento-tile.tile-wide, .bento-tile.tile-tall { grid-column: span 1; grid-row: span 1; }
}

/* ===== Stat counter ===== */
.stat {
  border-left: 1px solid rgba(11, 31, 42, 0.12);
  padding-left: 1.5rem;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--marine);
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}
.stat .num small { font-size: 0.5em; color: var(--sun); margin-left: 0.2em; }
.stat .lbl {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 0.6rem;
}

/* ===== Parallax/atmosphere section ===== */
.atmosphere {
  position: relative;
  min-height: 620px;
  background-image:
    linear-gradient(135deg, rgba(11,31,42,0.55), rgba(20,58,82,0.6)),
    url('/images/genel/veranda-bozburun-drone-3.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--pearl);
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .atmosphere { background-attachment: scroll; min-height: 480px; }
}

/* ===== Reviews ===== */
.review-card {
  background: var(--pearl);
  border: 1px solid rgba(11, 31, 42, 0.08);
  border-radius: var(--radius-m);
  padding: 2.25rem;
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s;
}
.review-card:hover {
  border-color: var(--sun);
  box-shadow: var(--shadow-1);
}
.stars { color: var(--sun); letter-spacing: 0.2em; font-size: 0.95rem; }

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 160px;
  gap: 10px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-s);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(11,31,42,0); transition: background 0.35s;
}
.gallery-item:hover::after { background: rgba(11,31,42,0.18); }
.g-span-2 { grid-column: span 2; }
.g-span-3 { grid-column: span 3; }
.g-row-2 { grid-row: span 2; }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-span-2, .g-span-3 { grid-column: span 2; }
  .g-row-2 { grid-row: span 1; }
}

/* ===== Floating WhatsApp ===== */
.fab-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  z-index: 40;
  transition: transform 0.3s;
}
.fab-wa:hover { transform: scale(1.08); }
.fab-wa::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%; background: #25D366; opacity: 0.4;
  animation: pulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (max-width: 768px) {
  .fab-wa { bottom: 80px; right: 16px; width: 52px; height: 52px; }
}

/* ===== Mobile action bar ===== */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--pearl);
  border-top: 1px solid rgba(11, 31, 42, 0.08);
  display: none;
  z-index: 40;
  box-shadow: 0 -8px 24px rgba(11, 31, 42, 0.08);
}
.mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 0.85rem 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--marine);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}
.mobile-bar a:last-child { background: var(--marine); color: var(--pearl); }
.mobile-bar a:last-child svg { color: var(--sun); }
@media (max-width: 768px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 64px; }
}

/* ===== Mobile menu ===== */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--marine);
  z-index: 60;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 1.25rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  color: var(--pearl);
  font-family: var(--font-display);
  font-size: 1.75rem;
  text-decoration: none;
}
.mobile-menu a:hover { color: var(--sun-soft); }
.mobile-menu-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: transparent; border: none; color: var(--pearl); cursor: pointer;
}

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: rgba(248, 245, 238, 0.8);
}
.footer h4 {
  color: var(--pearl);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.footer a {
  color: rgba(248, 245, 238, 0.7);
  text-decoration: none;
  transition: color 0.25s;
  display: inline-block;
  padding: 0.2rem 0;
  font-size: 0.92rem;
}
.footer a:hover { color: var(--sun-soft); }
.footer-bottom {
  border-top: 1px solid rgba(248, 245, 238, 0.1);
  color: rgba(248, 245, 238, 0.5);
  font-size: 0.82rem;
}

/* ===== Marquee ===== */
.marquee {
  overflow: hidden;
  background: var(--marine);
  color: var(--pearl);
  padding: 1.1rem 0;
  border-top: 1px solid rgba(248, 245, 238, 0.08);
  border-bottom: 1px solid rgba(248, 245, 238, 0.08);
}
.marquee-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 300;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 4rem;
  color: rgba(248, 245, 238, 0.85);
}
.marquee-track .dot {
  width: 6px; height: 6px;
  background: var(--sun);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Helpers ===== */
.lift { transition: transform 0.4s var(--ease); }
.lift:hover { transform: translateY(-4px); }
.eyecap {
  color: var(--sun);
  font-family: var(--font-display);
  font-style: italic;
}

/* ============================================
   PREMIUM ROOM CARD
   ============================================ */
.room-luxe {
  position: relative;
  background: var(--pearl);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.55s var(--ease-out-expo), box-shadow 0.55s var(--ease), border-color 0.4s;
  box-shadow: 0 1px 2px rgba(11,31,42,0.04), 0 8px 24px rgba(11,31,42,0.06);
  border: 1px solid rgba(11,31,42,0.05);
  display: flex;
  flex-direction: column;
}
.room-luxe:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(11,31,42,0.16);
  border-color: rgba(201,162,75,0.35);
}

/* Media area */
.room-luxe__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--marine);
}
.room-luxe__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out-expo), filter 0.5s;
}
.room-luxe:hover .room-luxe__media img {
  transform: scale(1.08);
}
.room-luxe__media::before,
.room-luxe__media::after {
  content: '';
  position: absolute;
  z-index: 2;
  width: 28px; height: 28px;
  border: 2px solid var(--sun);
  opacity: 0;
  transition: all 0.5s var(--ease-out-expo);
  pointer-events: none;
}
.room-luxe__media::before {
  top: 16px; left: 16px;
  border-right: none;
  border-bottom: none;
  transform: translate(-8px, -8px);
}
.room-luxe__media::after {
  bottom: 16px; right: 16px;
  border-left: none;
  border-top: none;
  transform: translate(8px, 8px);
}
.room-luxe:hover .room-luxe__media::before,
.room-luxe:hover .room-luxe__media::after {
  opacity: 1;
  transform: translate(0, 0);
}

/* Tag pill */
.room-luxe__tag {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--marine);
  color: var(--pearl);
  padding: 0.5rem 0.95rem;
  border-radius: 100px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(11,31,42,0.25);
}
.room-luxe__tag--coral { background: var(--coral); }
.room-luxe__tag--gold  { background: var(--sun); color: var(--marine); }
.room-luxe__tag::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--sun-soft);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
.room-luxe__tag--gold::before { background: var(--marine); }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* Favorite button */
.room-luxe__fav {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 3;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(248,245,238,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  color: var(--marine);
  cursor: pointer;
  border: none;
  transition: all 0.35s var(--ease);
}
.room-luxe__fav:hover {
  background: var(--coral);
  color: var(--pearl);
  transform: scale(1.1);
}
.room-luxe__fav.active { background: var(--coral); color: var(--pearl); }
.room-luxe__fav.active svg { fill: currentColor; }

/* Body */
.room-luxe__body {
  padding: 1.85rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-luxe__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--aegean);
  font-weight: 600;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.room-luxe__eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--sun);
}

.room-luxe__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2vw, 1.95rem);
  line-height: 1.1;
  color: var(--marine);
  margin: 0 0 1.25rem;
  letter-spacing: -0.015em;
  font-weight: 500;
  transition: color 0.3s;
}
.room-luxe:hover .room-luxe__title { color: var(--ink); }

.room-luxe__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px dashed rgba(11,31,42,0.14);
}
.room-luxe__meta > span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.83rem;
  color: var(--slate);
  font-weight: 500;
}
.room-luxe__meta svg {
  color: var(--sun);
  flex-shrink: 0;
}

.room-luxe__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
}
.room-luxe__feature {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  background: rgba(220,234,241,0.55);
  color: var(--marine);
  border-radius: 7px;
  font-weight: 600;
  transition: background 0.3s;
}
.room-luxe__feature::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--sun);
  border-radius: 50%;
}
.room-luxe:hover .room-luxe__feature { background: rgba(220,234,241,0.9); }

.room-luxe__footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(11,31,42,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.room-luxe__price {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.room-luxe__price-label {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.35rem;
  font-weight: 500;
}
.room-luxe__price-value {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--marine);
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  letter-spacing: -0.01em;
}
.room-luxe__price-value small {
  font-size: 0.62rem;
  color: var(--slate);
  font-weight: 400;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.room-luxe__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.82rem 1.25rem;
  background: var(--marine);
  color: var(--pearl);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.room-luxe__cta:hover {
  background: var(--sun);
  color: var(--marine);
  gap: 0.85rem;
}
.room-luxe__cta svg { transition: transform 0.3s; }
.room-luxe__cta:hover svg { transform: translateX(2px); }

@media (max-width: 640px) {
  .room-luxe__body { padding: 1.5rem 1.35rem 1.4rem; }
  .room-luxe__title { font-size: 1.55rem; }
}
