/* ============================================
   Vividcelebration — Luxury Casino Hotel
   Scandinavian Boutique × Gold Accents
   ============================================ */

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

:root {
  --bg: #FAF8F5;
  --bg-alt: #F2EEE7;
  --surface: #FFFFFF;
  --dark: #1C1C1E;
  --dark-soft: #2A2A2D;
  --text: #2C2C2C;
  --text-muted: #7A7670;
  --gold: #C9A048;
  --gold-light: #E5D5A8;
  --gold-dark: #A8842F;
  --border: #E8E4DD;
  --shadow: 0 8px 40px rgba(28, 28, 30, 0.08);
  --shadow-lg: 0 20px 60px rgba(28, 28, 30, 0.14);
  --radius: 6px;
  --radius-lg: 16px;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --maxw: 1280px;
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  font-weight: 300;
}

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

a { color: var(--gold-dark); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--gold); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.2; color: var(--dark); }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Layout Helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }
.section--tight { padding: 70px 0; }
.section--dark { background: var(--dark); color: #E8E4DD; }
.section--dark h2, .section--dark h3 { color: #F5F0E6; }
.section--alt { background: var(--bg-alt); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-block;
}

.section-title {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 50px;
  font-weight: 300;
}
.section--dark .section-subtitle { color: #B0AAA0; }

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* Gold divider */
.divider {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 20px 0;
}
.text-center .divider { margin: 20px auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 36px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .4s var(--ease);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 160, 72, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
}
.btn--light {
  background: transparent;
  color: #F5F0E6;
  border-color: rgba(245, 240, 230, 0.3);
}
.btn--light:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: all .4s var(--ease);
}
.site-header.scrolled {
  height: 68px;
  background: rgba(250, 248, 245, 0.96);
  box-shadow: 0 4px 20px rgba(28, 28, 30, 0.06);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.logo-link { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-link img { width: 44px; height: 44px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .lt-main {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.5px;
}
.logo-text .lt-sub {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-dark); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-right { display: flex; align-items: center; gap: 20px; }
.header-contact { display: flex; flex-direction: column; line-height: 1.3; text-align: right; }
.header-contact .hc-phone {
  font-size: 14px; font-weight: 500; color: var(--dark);
}
.header-contact .hc-label {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted);
}

/* Burger */
.burger {
  display: none;
  width: 40px; height: 40px;
  position: relative;
  z-index: 1100;
}
.burger span {
  display: block;
  position: absolute;
  left: 8px;
  width: 24px; height: 2px;
  background: var(--dark);
  transition: all .35s var(--ease);
  border-radius: 2px;
}
.burger span:nth-child(1) { top: 13px; }
.burger span:nth-child(2) { top: 19px; }
.burger span:nth-child(3) { top: 25px; }
.burger.open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ---------- Mobile Menu ---------- */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--dark);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  padding: 100px 36px 40px;
  transition: right .45s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(28, 28, 30, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease);
}
.mobile-menu-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: 24px;
  color: #F5F0E6;
  padding: 14px 0;
  border-bottom: 1px solid rgba(245, 240, 230, 0.1);
  transition: color .3s, padding-left .3s;
}
.mobile-menu nav a:hover { color: var(--gold); padding-left: 10px; }
.mobile-menu .mm-contact {
  margin-top: 30px;
  color: #B0AAA0;
  font-size: 13px;
  line-height: 1.8;
}
.mobile-menu .mm-contact strong { color: var(--gold); display: block; margin-bottom: 6px; letter-spacing: 2px; font-size: 11px; text-transform: uppercase; font-weight: 400; }
.mobile-menu .btn { margin-top: 24px; }

body.menu-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #F5F0E6;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,28,30,0.72) 0%, rgba(28,28,30,0.45) 60%, rgba(28,28,30,0.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 40px 0;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  color: #F5F0E6;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero p {
  font-size: 18px;
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 36px;
  color: #D8D3C9;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(201, 160, 72, 0.15);
  border: 1px solid rgba(201, 160, 72, 0.4);
  border-radius: 50px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  font-weight: 400;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero for inner pages */
.hero--inner { min-height: 60vh; }
.hero--inner .hero-content { max-width: 800px; }

/* ---------- Intro / About Preview ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.intro-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.intro-img:hover img { transform: scale(1.05); }
.intro-text p { margin-bottom: 20px; color: var(--text-muted); font-size: 16px; }
.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-item .stat-num {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--gold);
  font-weight: 600;
}
.stat-item .stat-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Room Cards ---------- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.room-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.room-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.room-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.room-card:hover .room-card-img img { transform: scale(1.08); }
.room-card-tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 16px;
  background: rgba(28, 28, 30, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
}
.room-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.room-card-body h3 { font-size: 24px; margin-bottom: 10px; }
.room-card-body .rc-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex: 1;
}
.room-card-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.room-card-meta span {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.room-card-meta svg { width: 15px; height: 15px; stroke: var(--gold); }
.room-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.room-price { display: flex; flex-direction: column; }
.room-price .rp-old { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }
.room-price .rp-now { font-family: var(--serif); font-size: 26px; color: var(--dark); font-weight: 600; }
.room-price .rp-unit { font-size: 11px; color: var(--text-muted); letter-spacing: 1px; }

/* ---------- Amenities / Features Grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-item {
  text-align: center;
  padding: 36px 24px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all .4s var(--ease);
}
.feature-item:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.feature-item .fi-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-alt);
  transition: background .4s var(--ease);
}
.feature-item:hover .fi-icon { background: rgba(201, 160, 72, 0.12); }
.feature-item .fi-icon svg { width: 26px; height: 26px; stroke: var(--gold); }
.feature-item h4 { font-size: 18px; margin-bottom: 8px; }
.feature-item p { font-size: 13px; color: var(--text-muted); }

/* ---------- Experience / Split Section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.split-img { overflow: hidden; min-height: 480px; }
.split-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.split-img:hover img { transform: scale(1.06); }
.split-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-content--dark { background: var(--dark); color: #D8D3C9; }
.split-content--dark h2 { color: #F5F0E6; }
.split-content--dark p { color: #B0AAA0; }
.split-content p { margin-bottom: 20px; font-size: 16px; }
.split-list { margin: 24px 0 32px; }
.split-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(232, 228, 221, 0.15);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.split-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.split-content--light .split-list li { border-bottom-color: var(--border); }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: var(--surface);
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.testimonial-card .tc-quote {
  font-family: var(--serif);
  font-size: 60px;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.5;
  position: absolute;
  top: 30px; right: 24px;
}
.testimonial-card .tc-stars { color: var(--gold); margin-bottom: 16px; letter-spacing: 3px; font-size: 14px; }
.testimonial-card .tc-text { font-size: 15px; color: var(--text); margin-bottom: 24px; font-style: italic; font-weight: 300; }
.testimonial-card .tc-author { display: flex; align-items: center; gap: 14px; }
.testimonial-card .tc-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.testimonial-card .tc-name { font-size: 15px; font-weight: 500; color: var(--dark); }
.testimonial-card .tc-location { font-size: 12px; color: var(--text-muted); }

/* ---------- CTA Section ---------- */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: var(--dark);
  text-align: center;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 160, 72, 0.12) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { font-size: clamp(30px, 4vw, 48px); color: #F5F0E6; margin-bottom: 20px; }
.cta-section p { font-size: 17px; color: #B0AAA0; max-width: 560px; margin: 0 auto 36px; }
.cta-section .hero-cta { justify-content: center; }

/* ---------- Booking Form ---------- */
.booking-form-wrap {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 44px;
  max-width: 880px;
  margin: 0 auto;
}
.booking-form-wrap h3 { font-size: 28px; margin-bottom: 8px; text-align: center; }
.booking-form-wrap .bf-sub { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 32px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field { display: flex; flex-direction: column; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 400;
}
.form-field label .req { color: var(--gold); }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  transition: border-color .3s, box-shadow .3s;
  font-weight: 300;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 160, 72, 0.12);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-error {
  font-size: 12px;
  color: #C44;
  margin-top: 6px;
  display: none;
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #C44;
}
.form-field.has-error .form-error { display: block; }

/* ---------- Contact Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-info-card h3 { font-size: 24px; margin-bottom: 24px; }
.ci-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.ci-item:last-child { border-bottom: none; }
.ci-item .ci-icon { flex-shrink: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--bg-alt); }
.ci-item .ci-icon svg { width: 20px; height: 20px; stroke: var(--gold); }
.ci-item .ci-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.ci-item .ci-value { font-size: 15px; color: var(--dark); font-weight: 400; }
.ci-item .ci-value a { color: var(--dark); }
.ci-item .ci-value a:hover { color: var(--gold); }

/* ---------- Map ---------- */
.map-wrap {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 420px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Opening Hours ---------- */
.hours-list { display: flex; flex-direction: column; gap: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .hl-day { color: var(--text); }
.hours-list .hl-time { color: var(--text-muted); }

/* ---------- Room Detail (Rooms page) ---------- */
.room-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
}
.room-detail:nth-child(even) .room-detail-img { order: 2; }
.room-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.room-detail-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.room-detail-img:hover img { transform: scale(1.05); }
.room-detail-content h3 { font-size: 32px; margin-bottom: 8px; }
.room-detail-content .rd-area { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.room-detail-content p { color: var(--text-muted); margin-bottom: 24px; font-size: 15px; }
.room-detail-amenities { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.room-detail-amenities span {
  font-size: 12px;
  padding: 6px 14px;
  background: var(--bg-alt);
  border-radius: 50px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.room-detail-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid var(--border); }
.room-detail-price .rdp-old { font-size: 15px; color: var(--text-muted); text-decoration: line-through; }
.room-detail-price .rdp-now { font-family: var(--serif); font-size: 34px; color: var(--dark); font-weight: 600; }
.room-detail-price .rdp-unit { font-size: 12px; color: var(--text-muted); }

/* ---------- Services List ---------- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}
.service-block:nth-child(even) .service-block-img { order: 2; }
.service-block-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.service-block-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.service-block-img:hover img { transform: scale(1.05); }
.service-block-content h3 { font-size: 30px; margin-bottom: 8px; }
.service-block-content .sb-eyebrow { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.service-block-content p { color: var(--text-muted); margin-bottom: 20px; font-size: 15px; }
.service-block-content ul { margin-bottom: 24px; }
.service-block-content ul li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-block-content ul li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ---------- Legal Pages ---------- */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 26px; margin: 40px 0 16px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 20px; margin: 28px 0 12px; }
.legal-content p { margin-bottom: 16px; color: var(--text); font-size: 15px; }
.legal-content ul { margin: 16px 0 24px; padding-left: 0; }
.legal-content ul li { padding: 6px 0 6px 24px; position: relative; font-size: 15px; }
.legal-content ul li::before { content: ''; position: absolute; left: 0; top: 14px; width: 8px; height: 2px; background: var(--gold); }
.legal-content .updated { font-size: 13px; color: var(--text-muted); margin-bottom: 30px; font-style: italic; }

/* ---------- Disclaimer ---------- */
.disclaimer {
  background: var(--bg-alt);
  border-left: 3px solid var(--gold);
  padding: 28px 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 40px 0;
}
.disclaimer p { font-size: 14px; color: var(--text); margin: 0; }
.disclaimer strong { color: var(--dark); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: #B0AAA0;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h4 {
  color: #F5F0E6;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #B0AAA0; font-size: 14px; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col p { font-size: 14px; line-height: 1.8; margin-bottom: 8px; }
.footer-col .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-col .footer-logo img { width: 40px; height: 40px; }
.footer-col .footer-logo .fl-text { font-family: var(--serif); font-size: 18px; color: #F5F0E6; font-weight: 600; }
.footer-col .footer-logo .fl-sub { font-size: 8px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }

.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(245, 240, 230, 0.15);
  transition: all .35s var(--ease);
}
.footer-social a:hover { border-color: var(--gold); background: rgba(201, 160, 72, 0.1); }
.footer-social a svg { width: 20px; height: 20px; fill: #B0AAA0; transition: fill .35s; }
.footer-social a:hover svg { fill: var(--gold); }

.footer-legal { font-size: 12px; line-height: 1.8; color: #8A8680; margin-top: 16px; }
.footer-legal p { margin-bottom: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 230, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: #8A8680; }
.footer-bottom .fb-links { display: flex; gap: 20px; }
.footer-bottom .fb-links a { font-size: 12px; color: #8A8680; }
.footer-bottom .fb-links a:hover { color: var(--gold); }

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  border-top: 1px solid rgba(201, 160, 72, 0.3);
  padding: 24px 32px;
  z-index: 1200;
  transform: translateY(100%);
  transition: transform .5s var(--ease);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner p { font-size: 13px; color: #B0AAA0; flex: 1; min-width: 280px; }
.cookie-banner p a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-actions .btn { padding: 11px 24px; font-size: 12px; }
.cookie-actions .cookie-decline {
  background: transparent;
  color: #F5F0E6;
  border-color: rgba(245, 240, 230, 0.4);
}
.cookie-actions .cookie-decline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---------- Success Popup ---------- */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 30, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease);
  padding: 20px;
}
.popup-overlay.show { opacity: 1; visibility: visible; }
.popup-box {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  transform: scale(0.9);
  transition: transform .4s var(--ease);
  box-shadow: var(--shadow-lg);
}
.popup-overlay.show .popup-box { transform: scale(1); }
.popup-icon {
  width: 70px; height: 70px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(201, 160, 72, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-icon svg { width: 36px; height: 36px; stroke: var(--gold); }
.popup-box h3 { font-size: 26px; margin-bottom: 12px; }
.popup-box p { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; }

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-slide-left { opacity: 0; transform: translateX(-50px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-slide-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-slide-right { opacity: 0; transform: translateX(50px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-slide-right.revealed { opacity: 1; transform: translateX(0); }

/* ---------- Breadcrumbs / Page Header ---------- */
.page-header-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(201, 160, 72, 0.15);
  border: 1px solid rgba(201, 160, 72, 0.3);
  border-radius: 50px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .main-nav, .header-contact { display: none; }
  .burger { display: block; }
  .header-right { gap: 0; }
  .intro-grid, .split, .contact-grid, .room-detail, .service-block { grid-template-columns: 1fr; gap: 40px; }
  .split-img { min-height: 340px; }
  .split-content { padding: 50px 32px; }
  .room-detail:nth-child(even) .room-detail-img,
  .service-block:nth-child(even) .service-block-img { order: 0; }
  .section { padding: 70px 0; }
  .hero { min-height: 90vh; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .booking-form-wrap { padding: 28px 20px; }
  .intro-stats { grid-template-columns: 1fr; gap: 20px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .cookie-banner-inner { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
  .section-title { font-size: 28px; }
  .room-detail-footer { flex-direction: column; align-items: flex-start; gap: 16px; }
  .room-card-footer { flex-direction: column; align-items: flex-start; gap: 14px; }
  .room-card-footer .btn { width: 100%; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-slide-left, .reveal-slide-right { opacity: 1; transform: none; }
}
