/* ============================================================
   LE YOT HOTEL — Global Design System
   Palette: Teal #2B9DAA | Navy #1A2E44 | Gold #C9A96E
   Fonts: Cormorant Garamond (headings) | Jost (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --primary:       #2B9DAA;
  --primary-dark:  #1D7A86;
  --primary-light: #4fb9c5;
  --navy:          #1A2E44;
  --navy-light:    #253d57;
  --gold:          #C9A96E;
  --gold-dark:     #a8854a;
  --light:         #F7F5F0;
  --light-2:       #EFF0F0;
  --white:         #FFFFFF;
  --text:          #333333;
  --text-muted:    #6b7280;
  --border:        rgba(0,0,0,0.08);
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.15);
  --radius:        8px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --transition:    0.3s ease;
  --header-h:      80px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}
.serif { font-family: 'Cormorant Garamond', serif; }

/* ── Utilities ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-gold { color: var(--gold); }
.text-primary { color: var(--primary); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-muted); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* ── Section Layout ────────────────────────────────────────── */
.section { padding: 50px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }
.section-dark { background: var(--navy); color: #fff; }
.section-light { background: var(--light); }
.section-light-2 { background: var(--light-2); }

.section-tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(40px, 5vw, 55px);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-title-center .section-subtitle { margin: 0 auto; }
.title-line {
  width: 50px;
  height: 3px;
  background: var(--primary);
  margin: 20px auto;
  border-radius: 2px;
}
.title-line-left { margin: 20px 0; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-cachee {
  visibility: hidden;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43,157,170,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn-navy {
  background: var(--navy);
  color: #fff;
  border: 2px solid var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 11px; }
.btn-lg { padding: 18px 44px; font-size: 14px; }

/* ── Page Hero (Inner Pages) ───────────────────────────────── */
.page-hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy);
  overflow: hidden;
  margin-top: var(--header-h);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.page-hero-content { position: relative; z-index: 2; color: #fff; }
.page-hero-content h1 { font-size: clamp(38px, 5vw, 68px); color: #fff; margin-bottom: 12px; }
.page-hero-breadcrumb { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.page-hero-breadcrumb a { color: var(--gold); }
.page-hero-breadcrumb a:hover { color: var(--primary-light); }
.page-hero-breadcrumb span { margin: 0 8px; }

/* ── Header & Navigation ───────────────────────────────────── */
.topbar {
  position: relative;
  z-index: 1001;
  pointer-events: auto;
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; }
.topbar-left { display: flex; align-items: center; gap: 24px; }
.topbar-left a, .topbar-right a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.topbar-left a:hover, .topbar-right a:hover { color: var(--gold); }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-right a { font-size: 14px; }

.header {
  position: fixed;
  left: 0; right: 0; top: 0;
  z-index: 1000;
  transition: transform 0.4s ease, background 0.4s ease;
}
.header.hide {
  transform: translateY(-100%);
}
.header-inner {
  background: rgba(26, 46, 68, 0.99);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
}
.header.transparent .header-inner,
.header.transparent .topbar {
  background: transparent;
  border-bottom-color: transparent;
}

/* White text with a dark shadow for visibility */
.header.transparent .topbar,
.header.transparent .topbar a,
.header.transparent .nav a,
.header.transparent .nav-dropdown-toggle {
  color: #fff !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.85), 0 2px 8px rgba(0,0,0,0.6);
}

.header.transparent .logo img {
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.85)) drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}

.header.transparent .topbar-left a:hover,
.header.transparent .topbar-right a:hover,
.header.transparent .nav a:hover,
.header.transparent .nav a.active,
.header.transparent .nav-dropdown:hover .nav-dropdown-toggle,
.header.transparent .nav-dropdown.active .nav-dropdown-toggle { 
  color: var(--primary-light) !important; 
}

/* Keep 'Reserver' button without shadow since it has a colored background */
.header.transparent .nav .nav-book { 
  text-shadow: none !important; 
}
.header.scrolled .header-inner {
  background: rgba(26,46,68,0.99);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.header-inner .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.logo img { height: 160px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-radius: 4px;
  transition: all var(--transition);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 1px;
}
.nav a:hover, .nav a.active { color: #fff; }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--primary-light); }

.nav-book {
  margin-left: 12px;
  padding: 10px 22px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 1.2px;
}
.nav-book::after { display: none; }
.nav-book:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0 24px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.mobile-nav.active { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 24px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--primary-light); padding-left: 32px; }

/* ── Desktop Nav Dropdown ─────────────────────────────────── */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: 5px;
  padding: 8px 16px !important;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85) !important;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.nav-dropdown-toggle .icon-chevron-down,
.nav-dropdown-toggle .icon-arrow-down {
  font-size: 9px;
  transition: transform 0.3s cubic-bezier(0.215,0.61,0.355,1);
  display: inline-block;
}
.nav-dropdown:hover .nav-dropdown-toggle .icon-chevron-down,
.nav-dropdown:hover .nav-dropdown-toggle .icon-arrow-down { transform: rotate(180deg); }
.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 1px;
}
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.active .nav-dropdown-toggle { color: #fff !important; }
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.active .nav-dropdown-toggle::after { transform: scaleX(1); }

/* Dropdown panel */
.nav-dropdown-content {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 280px;
  background: rgba(22,38,58,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.215,0.61,0.355,1),
              transform 0.25s cubic-bezier(0.215,0.61,0.355,1);
  z-index: 200;
}
/* Tiny arrow */
.nav-dropdown-content::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(255,255,255,0.1);
}
/* Invisible bridge to prevent hover loss */
.nav-dropdown-content::after {
  content: '';
  position: absolute;
  top: -20px; left: 0;
  width: 100%; height: 20px;
}
.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-content a {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 12px 14px !important;
  border-radius: var(--radius);
  color: rgba(255,255,255,0.8) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px !important;
  text-transform: none !important;
  transition: background 0.2s ease, color 0.2s ease, padding 0s !important;
  border-bottom: none !important;
}
.nav-dropdown-content a::after { display: none !important; }
.nav-dropdown-content a:hover,
.nav-dropdown-content a.active {
  background: rgba(43,157,170,0.15);
  color: var(--primary-light) !important;
  padding-left: 14px !important;
}
.nav-dropdown-content a .icon-restaurant,
.nav-dropdown-content a .icon-gym {
  font-size: 18px;
  color: var(--gold);
  min-width: 20px;
  text-align: center;
}
.nav-dropdown-content a small {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 1px;
}

/* ── Mobile Nav Dropdown Accordion ───────────────────────── */
.mobile-nav-dropdown { }
.mobile-nav-dropdown-toggle {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  width: 100%;
  transition: color var(--transition);
}
.mobile-nav-dropdown-toggle:hover,
.mobile-nav-dropdown.active .mobile-nav-dropdown-toggle { color: var(--primary-light); }
.mobile-nav-dropdown .icon-arrow-down {
  font-size: 10px;
  transition: transform 0.3s cubic-bezier(0.215,0.61,0.355,1);
}
.mobile-nav-dropdown.open .icon-arrow-down { transform: rotate(180deg); }
.mobile-nav-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.215,0.61,0.355,1);
  background: rgba(0,0,0,0.15);
}
.mobile-nav-dropdown.open .mobile-nav-dropdown-content { max-height: 160px; }
.mobile-nav-dropdown-content a {
  padding-left: 40px !important;
  font-size: 13px !important;
  color: rgba(255,255,255,0.7) !important;
}
.mobile-nav-dropdown-content a:hover,
.mobile-nav-dropdown-content a.active {
  color: var(--primary-light) !important;
  padding-left: 52px !important;
}

/* ── Enhanced Reveal Animations (from sass/animations reference) ─ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal         { transform: translate3d(0, 36px, 0); }
.reveal-left    { transform: translate3d(-40px, 0, 0); }
.reveal-right   { transform: translate3d(40px, 0, 0); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ── Hero Slider ───────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0s linear 0.8s;
  will-change: opacity, visibility, z-index;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-slide.active { 
  opacity: 1; 
  visibility: visible;
  transition: opacity 0.8s ease-in-out, visibility 0s linear 0s;
  z-index: 2;
}
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,46,68,0.2) 0%,
    rgba(26,46,68,0.45) 50%,
    rgba(26,46,68,0.75) 100%
  );
}

/* Hero slider images */
.hero-slide-placeholder-1 { background-image: url('../../images/lobby(2).jpeg'); }
.hero-slide-placeholder-2 { background-image: url('../../images/others/chambre_noces(1).jpeg'); }
.hero-slide-placeholder-3 { background-image: url('../../images/restaurant.jpeg'); }

.hero-content {
  position: absolute;
  bottom: 28%;
  left: 50%; transform: translateX(-50%);
  width: 100%;
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 0 24px;
}
.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 2px 10px rgba(0,0,0,0.95), 0 0 4px rgba(0,0,0,0.8);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease 0.3s;
}
.hero-slide.active .hero-tag { opacity: 1; transform: translateY(0); }
.hero-title {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease 0.5s;
}
.hero-slide.active .hero-title { opacity: 1; transform: translateY(0); }
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-top: 16px;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease 0.7s;
}
.hero-slide.active .hero-subtitle { opacity: 1; transform: translateY(0); }
.hero-cta {
  margin-top: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease 0.9s;
}
.hero-slide.active .hero-cta { opacity: 1; transform: translateY(0); }

.hero-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  padding: 0 40px;
  justify-content: space-between;
  z-index: 5;
  display: none;
  pointer-events: none;
}
.hero-nav-btn {
  pointer-events: auto;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: #fff;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.hero-nav-btn:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 16px;
  align-items: center;
}
.hero-dot {
  position: relative;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dot.active {
  background: #fff;
}
.hero-dot.active::after {
  content: '';
  position: absolute;
  top: -7px; left: -7px; right: -7px; bottom: -7px;
  border: 1.5px solid #fff;
  border-radius: 50%;
}

/* ── Booking Bar ───────────────────────────────────────────── */
.booking-bar {
  position: relative;
  z-index: 10;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.booking-bar-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.booking-field {
  flex: 1;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.booking-field:last-of-type { border-right: none; }
.booking-field label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.booking-field input,
.booking-field select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 15px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  padding: 0;
  cursor: pointer;
}
.booking-field input::placeholder { color: rgba(255,255,255,0.5); }
.booking-field select option { background: var(--navy); color: #fff; }
.booking-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.6;
  cursor: pointer;
}
.booking-btn-wrap {
  padding: 16px 24px;
  display: flex;
  align-items: center;
}
.booking-btn-wrap .btn { height: 100%; padding: 16px 36px; }

/* ── Cards: Rooms ──────────────────────────────────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.room-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.room-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--light-2);
}
.room-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.05); }
.room-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--light-2), var(--light));
  color: var(--text-muted);
  font-size: 48px;
}
.room-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 3px;
  text-transform: uppercase;
}
.room-price-tag {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  font-family: 'Cormorant Garamond', serif;
  border-radius: var(--radius) 0 0 0;
}
.room-price-tag .from { font-size: 11px; opacity: 0.7; display: block; }
.room-price-tag .amount { font-size: 22px; font-weight: 700; }
.room-price-tag .currency { font-size: 14px; }
.room-price-tag .per { font-size: 11px; opacity: 0.7; }

.room-card-body { padding: 24px; }
.room-card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}
.room-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.room-amenities {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.room-amenity {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
.room-amenity i { color: var(--primary); font-size: 15px; }

.room-card-footer { display: flex; align-items: center; justify-content: space-between; }

/* ── Services/Icons Grid ───────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 24px;
}
.service-card {
  text-align: center;
  padding: 48px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: default;
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(43,157,170,0.08);
  transform: translateY(-4px);
}
.service-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(43,157,170,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 32px;
  color: var(--primary);
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
}
.service-card h4 {
  font-size: 18px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.service-card p { font-size: 13px; color: var(--text-muted); }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--light-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--primary);
}
.testimonial-name { font-weight: 600; font-size: 14px; color: var(--navy); }
.testimonial-loc { font-size: 12px; color: var(--text-muted); }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  background: var(--navy);
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><radialGradient id="g" cx="50%25" cy="50%25" r="50%25"><stop offset="0%25" stop-color="%232B9DAA" stop-opacity="0.3"/><stop offset="100%25" stop-color="%231A2E44" stop-opacity="0"/></radialGradient></defs><rect width="200" height="200" fill="url(%23g)"/></svg>') center/cover;
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { font-size: clamp(36px, 5vw, 60px); color: #fff; margin-bottom: 16px; }
.cta-banner p { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: #0f1e2e;
  color: rgba(255,255,255,0.7);
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo img { height: 160px; }
.footer-about { font-size: 14px; line-height: 1.75; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-col h5 {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--primary-light); }
.footer-contact { font-size: 14px; display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact-item i { color: var(--primary); margin-top: 2px; min-width: 16px; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--primary-light); }

/* ── Blog Cards ────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card-img {
  height: 220px;
  background: var(--light-2);
  overflow: hidden;
  position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #d4e8ea, #eaf4f5);
  font-size: 48px;
}
.blog-img-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
}
.blog-card-body { padding: 24px; }
.blog-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; display: flex; gap: 12px; align-items: center; }
.blog-meta i { color: var(--primary); }
.blog-card-title { font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.blog-read-more { color: var(--primary); font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; display: flex; align-items: center; gap: 6px; }
.blog-read-more:hover { color: var(--primary-dark); }

/* ── Stats Strip ───────────────────────────────────────────── */
.stats-strip { background: var(--primary); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item {}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-label { font-size: 13px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-top: 8px; }

/* ── Team Grid ─────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.team-card { text-align: center; }
.team-photo {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--light-2);
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
  border: 4px solid var(--primary);
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--primary); font-weight: 500; letter-spacing: 1px; }

/* ── Gallery Mosaic ────────────────────────────────────────── */
.gallery-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 240px); gap: 12px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; background: var(--light-2); position: relative; }
.gallery-item:first-child { grid-column: 1 / 3; grid-row: 1 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  color: var(--primary);
  background: linear-gradient(135deg, var(--light-2), var(--light));
}

/* ── Menu Preview ──────────────────────────────────────────── */
.menu-tabs { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.menu-tab {
  padding: 10px 24px;
  border: 2px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
}
.menu-tab.active, .menu-tab:hover { border-color: var(--primary); color: var(--primary); background: rgba(43,157,170,0.06); }
.menu-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--gold);
}
.menu-item-info h4 { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.menu-item-info p { font-size: 13px; color: var(--text-muted); }
.menu-item-price { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--primary); white-space: nowrap; margin-left: 16px; }

/* ── Contact ───────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-md); }
.contact-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: rgba(43,157,170,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-info-card h4 { font-size: 15px; font-family: 'Jost', sans-serif; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { font-size: 14px; color: var(--text-muted); }
.contact-info-card a:hover { color: var(--primary); }

.contact-form { background: var(--white); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  font-family: 'Jost', sans-serif;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(43,157,170,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Map ───────────────────────────────────────────────────── */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; height: 400px; box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.map-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #d4e8ea 0%, #bcd9db 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  color: var(--primary);
  opacity: 0.7;
}

/* ── Scroll Animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── Sidebar (Blog) ────────────────────────────────────────── */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.sidebar > * + * { margin-top: 32px; }
.sidebar-widget { background: var(--white); padding: 28px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.sidebar-widget h4 { font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--primary); }
.sidebar-search { display: flex; gap: 8px; }
.sidebar-search input { flex: 1; padding: 10px 14px; border: 2px solid var(--border); border-radius: var(--radius); font-size: 14px; outline: none; transition: border-color var(--transition); }
.sidebar-search input:focus { border-color: var(--primary); }
.sidebar-search .btn { padding: 10px 16px; }
.sidebar-cats { display: flex; flex-direction: column; gap: 8px; }
.sidebar-cat {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text);
  transition: all var(--transition);
}
.sidebar-cat:hover { background: rgba(43,157,170,0.08); color: var(--primary); }
.sidebar-cat span { background: var(--light-2); padding: 2px 8px; border-radius: 100px; font-size: 11px; font-weight: 700; }
.sidebar-recent { display: flex; flex-direction: column; gap: 14px; }
.sidebar-recent-item { display: flex; gap: 12px; align-items: center; }
.sidebar-recent-thumb { width: 56px; height: 56px; border-radius: var(--radius); background: var(--light-2); flex-shrink: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--primary); }
.sidebar-recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-recent-text h5 { font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.sidebar-recent-text p { font-size: 11px; color: var(--text-muted); }

/* ── Table / Planning ──────────────────────────────────────── */
.schedule-table { width: 100%; border-collapse: collapse; }
.schedule-table th { background: var(--navy); color: #fff; padding: 14px 20px; text-align: left; font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
.schedule-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 14px; }
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:nth-child(even) td { background: var(--light); }

/* ── Toast / Alerts ────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 9999;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  transform: translateX(150%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.toast.show { transform: translateX(0); }
.toast.toast-success { border-color: #22c55e; }
.toast.toast-error { border-color: #ef4444; }
.toast i { font-size: 20px; }
.toast.toast-success i { color: #22c55e; }
.toast.toast-error i { color: #ef4444; }

/* ── Feature Split Section ─────────────────────────────────── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-img { border-radius: var(--radius-xl); overflow: hidden; position: relative; }
.split-img-inner {
  height: 480px;
  background: var(--light-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  color: var(--primary);
}
.split-img-inner img { width: 100%; height: 100%; object-fit: cover; }
.split-img::before {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  border: 3px solid var(--primary);
  border-radius: var(--radius-xl);
  inset: -16px auto auto -16px;
  z-index: -1;
  opacity: 0.4;
}
.split-content h2 { font-size: clamp(30px, 3.5vw, 46px); margin-bottom: 16px; }
.split-content p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.split-features { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.split-feature { display: flex; gap: 14px; align-items: flex-start; }
.split-feature-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(43,157,170,0.1); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.split-feature h4 { font-family: 'Jost', sans-serif; font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.split-feature p { font-size: 13px; color: var(--text-muted); }

/* ── Equipment Card (Gym) ──────────────────────────────────── */
.equipment-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.equipment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--primary);
  transition: all var(--transition);
}
.equipment-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.equipment-icon { font-size: 40px; margin-bottom: 12px; }
.equipment-card h4 { font-family: 'Jost', sans-serif; font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.equipment-card p { font-size: 12px; color: var(--text-muted); }

/* ── Filter Bar (Chambres) ─────────────────────────────────── */
.filter-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-group { flex: 1; min-width: 140px; }
.filter-group label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.filter-group select {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition);
}
.filter-group select:focus { border-color: var(--primary); }

/* ── Booking Form Card (Chambres) ──────────────────────────── */
.booking-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 36px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.booking-card h3 { font-size: 26px; color: #fff; margin-bottom: 8px; }
.booking-card .form-group label { color: rgba(255,255,255,0.7); }
.booking-card input, .booking-card select {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}
.booking-card input:focus, .booking-card select:focus { border-color: var(--primary); background: rgba(255,255,255,0.12); }
.booking-card input::placeholder { color: rgba(255,255,255,0.4); }
.booking-card select option { background: var(--navy); }

/* ── Article / Rich Text ───────────────────────────────────── */
.article-content { max-width: 720px; }
.article-content h2, .article-content h3 { margin: 32px 0 12px; }
.article-content p { font-size: 16px; line-height: 1.8; color: var(--text); margin-bottom: 16px; }
.article-content ul { padding-left: 24px; margin-bottom: 16px; }
.article-content ul li { font-size: 16px; line-height: 1.8; color: var(--text); list-style: disc; margin-bottom: 6px; }
.article-content blockquote { border-left: 4px solid var(--primary); padding: 16px 24px; background: var(--light); border-radius: 0 var(--radius) var(--radius) 0; margin: 24px 0; font-style: italic; color: var(--text-muted); font-size: 17px; }
.article-img { border-radius: var(--radius-lg); overflow: hidden; margin: 32px 0; }
.article-img img { width: 100%; height: 420px; object-fit: cover; }

/* ── Cafeteria Chalkboard ──────────────────────────────────── */
.chalkboard {
  background: #2c3e36;
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
  border: 6px solid #4a5e52;
}
.chalkboard::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 28px,
    rgba(255,255,255,0.03) 28px,
    rgba(255,255,255,0.03) 29px
  );
}
.chalkboard-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  color: rgba(255,255,255,0.9);
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}
.chalk-menu { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; position: relative; }
.chalk-item { text-align: center; padding: 20px; }
.chalk-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: #fff; margin-bottom: 6px; }
.chalk-item .chalk-price { color: var(--gold); font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.chalk-item p { font-size: 13px; color: rgba(255,255,255,0.6); }
.chalk-divider { width: 60%; height: 1px; background: rgba(255,255,255,0.15); margin: 16px auto; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .split-section.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: 1 / 3; grid-row: auto; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .topbar { display: none; }
  .header { top: 0; }
  .page-hero { margin-top: 80px; }
  
  .hero { height: auto; min-height: auto; overflow: visible; }
  .hero-slides { position: relative; height: 65vh; min-height: 480px; }
  .booking-bar { position: relative; bottom: auto; }
  .hero-content { bottom: auto; top: 50%; transform: translate(-50%, -50%); }

  .booking-bar-inner { flex-direction: column; }
  .booking-field { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 14px 20px; }
  .booking-btn-wrap { padding: 16px 20px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .menu-items { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: auto; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-nav { bottom: 24px; right: 24px; }
  .split-img-inner { height: 300px; }
  .chalkboard { padding: 28px; }
  .booking-card { padding: 24px; }
  .contact-form { padding: 24px; }
  .section { padding: 60px 0; }
  .section-lg { padding: 80px 0; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-dots { display: none; }
}

/* -- Blog Preview (Homepage) -------------------------------- */
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.blog-preview-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.215,0.61,0.355,1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.blog-preview-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-preview-img-wrap { position: relative; display: block; height: 220px; overflow: hidden; }
.blog-preview-img-wrap img { transition: transform 0.5s cubic-bezier(0.215,0.61,0.355,1); width:100%; height:100%; object-fit:cover; display:block; }
.blog-preview-card:hover .blog-preview-img-wrap img { transform: scale(1.06); }
.blog-cat-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--primary); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}
.blog-preview-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-preview-meta { font-size: 12px; color: var(--text-muted); letter-spacing: 0.5px; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.blog-preview-title { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600; color: var(--navy); line-height: 1.35; margin-bottom: 10px; }
.blog-preview-title a { color: inherit; text-decoration: none; transition: color var(--transition); }
.blog-preview-title a:hover { color: var(--primary); }
.blog-preview-excerpt { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; flex: 1; margin-bottom: 18px; }
.blog-preview-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; color: var(--primary); text-decoration: none; transition: gap 0.25s ease, color 0.25s ease; }
.blog-preview-link:hover { color: var(--primary-dark); gap: 10px; }
@media (max-width: 900px) { .blog-preview-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-preview-grid { grid-template-columns: 1fr; } }
