/* =========================================================
   Openverdictlabs — Black Glass Premium
   Luxury Casino Hotel · Sydney, Australia
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --bg: #0a0a0c;
  --bg-2: #101015;
  --bg-3: #15151c;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-strong: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.10);
  --gold: #c9a24b;
  --gold-soft: #d8bd7a;
  --gold-deep: #a07f2c;
  --text: #f4f1ea;
  --text-muted: #a9a39a;
  --text-dim: #6f6a62;
  --line: rgba(201, 162, 75, 0.22);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Cormorant Garamond", "Times New Roman", serif;
  --font-ui: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font); font-weight: 600; line-height: 1.15; letter-spacing: 0.3px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }
.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-block;
}
.section-title { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 18px; }
.section-intro { color: var(--text-muted); max-width: 640px; font-size: 1.05rem; }
.text-gold { color: var(--gold); }
.center { text-align: center; }
.center .section-intro { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  will-change: transform;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  color: #1a1407;
  box-shadow: 0 10px 30px rgba(201, 162, 75, 0.28);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(201, 162, 75, 0.42); }
.btn--ghost {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom-color: var(--glass-border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; border-radius: 10px; object-fit: cover; }
.brand-name { font-family: var(--font); font-size: 1.32rem; letter-spacing: 0.06em; color: var(--text); }
.brand-name span { color: var(--gold); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.35s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--text); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { font-size: 0.9rem; color: var(--text-muted); letter-spacing: 0.02em; white-space: nowrap; }

.burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
}
.burger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(86vw, 380px);
  height: 100vh;
  background: var(--bg-2);
  border-left: 1px solid var(--glass-border);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 88px 28px 32px;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); box-shadow: -30px 0 80px rgba(0,0,0,0.6); }
.mobile-menu-close {
  position: absolute; top: 22px; right: 22px;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--glass-border); background: var(--glass);
  color: var(--text); font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  font-family: var(--font);
  font-size: 1.5rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text);
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.mobile-menu nav a:hover { color: var(--gold); padding-left: 8px; }
.mobile-menu .mm-contact { margin-top: 28px; color: var(--text-muted); font-size: 0.9rem; }
.mobile-menu .mm-contact p { margin-bottom: 6px; }
.mobile-menu .btn { margin-top: 22px; }
.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
  z-index: 1050;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.menu-overlay.open { opacity: 1; visibility: visible; }
body.menu-locked { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.08);
  will-change: transform;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0.78) 60%, var(--bg) 100%);
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
  transform: scale(1.08);
  will-change: transform;
}
.hero > .hero-bg-img + .container { position: relative; z-index: 2; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0.78) 60%, var(--bg) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 22px;
  line-height: 1.08;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { font-size: 1.18rem; color: var(--text-muted); max-width: 600px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.offline-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(201, 162, 75, 0.12);
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 26px;
  backdrop-filter: blur(8px);
}
.offline-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Hero for inner pages */
.hero--inner { min-height: 62vh; padding: 150px 0 70px; }
.hero--inner h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }

/* ---------- Glass cards ---------- */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
}

/* ---------- Intro / about blocks ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.split-media img { width: 100%; transition: transform 1.2s var(--ease); }
.split-media:hover img { transform: scale(1.05); }
.split-media::after {
  content: ""; position: absolute; inset: 0;
  border: 1px solid var(--line); border-radius: var(--radius-lg); pointer-events: none;
}
.split-text h2 { margin-bottom: 20px; }
.split-text p { color: var(--text-muted); margin-bottom: 16px; }
.split-text ul.checklist { margin: 22px 0; }
.checklist li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--text-muted); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 16px; height: 16px; border: 1px solid var(--gold); border-radius: 50%;
  background: radial-gradient(circle at center, var(--gold) 0 4px, transparent 5px);
}

/* ---------- Room cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.room-card {
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-8px); border-color: var(--line); box-shadow: var(--shadow); }
.room-card-media { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.room-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.room-card:hover .room-card-media img { transform: scale(1.08); }
.room-card-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.room-card-body h3 { font-size: 1.6rem; margin-bottom: 8px; }
.room-card-body .room-meta { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 14px; display: flex; gap: 14px; flex-wrap: wrap; }
.room-card-body .room-meta span { display: inline-flex; align-items: center; gap: 6px; }
.room-card-body p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 18px; flex: 1; }
.room-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; border-top: 1px solid var(--glass-border); padding-top: 18px; }
.room-price { font-family: var(--font); font-size: 1.5rem; color: var(--gold); }
.room-price small { color: var(--text-dim); font-size: 0.8rem; font-family: var(--font-ui); display: block; }
.room-price .old { color: var(--text-dim); text-decoration: line-through; font-size: 1rem; margin-right: 6px; }

/* ---------- Amenities / feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.feature {
  padding: 30px 26px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), background 0.45s var(--ease);
}
.feature:hover { transform: translateY(-6px); border-color: var(--line); background: var(--glass-strong); }
.feature .ico { width: 48px; height: 48px; margin-bottom: 18px; color: var(--gold); }
.feature h3 { font-size: 1.3rem; margin-bottom: 8px; }
.feature p { color: var(--text-muted); font-size: 0.92rem; }
.service-price { color: var(--gold) !important; font-size: 0.85rem !important; font-weight: 600; margin-top: 10px; letter-spacing: 0.02em; }
.media-row-text .service-price { margin-top: 14px; }

/* ---------- Media feature (image + text rows) ---------- */
.media-row { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; margin-bottom: 64px; }
.media-row:last-child { margin-bottom: 0; }
.media-row.reverse .media-row-img { order: 2; }
.media-row-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.media-row-img img { width: 100%; transition: transform 1.2s var(--ease); }
.media-row-img:hover img { transform: scale(1.06); }
.media-row-text h3 { font-size: 1.9rem; margin-bottom: 16px; }
.media-row-text p { color: var(--text-muted); margin-bottom: 14px; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.testi {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  position: relative;
}
.testi::before {
  content: "“";
  font-family: var(--font);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.35;
  position: absolute; top: 8px; left: 20px; line-height: 1;
}
.testi p { color: var(--text-muted); font-style: italic; margin-bottom: 22px; padding-top: 20px; }
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .who .av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep)); display: flex; align-items: center; justify-content: center; color: #1a1407; font-weight: 700; font-family: var(--font-ui); }
.testi .who strong { display: block; font-family: var(--font-ui); font-weight: 600; }
.testi .who span { color: var(--text-dim); font-size: 0.85rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  padding: 90px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,162,75,0.14), transparent 70%);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 18px; }
.cta-band p { color: var(--text-muted); max-width: 560px; margin: 0 auto 30px; }

/* ---------- Forms ---------- */
.form-wrap { padding: 38px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; letter-spacing: 0.04em; color: var(--text-muted); }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,0.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a24b' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d9534f; box-shadow: 0 0 0 3px rgba(217,83,79,0.15); }
.field .err { color: #e57373; font-size: 0.8rem; display: none; }
.field.invalid .err { display: block; }

/* ---------- Success popup ---------- */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 1300;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
  padding: 24px;
}
.popup-overlay.open { opacity: 1; visibility: visible; }
.popup {
  max-width: 440px; width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.45s var(--ease);
  box-shadow: var(--shadow);
}
.popup-overlay.open .popup { transform: translateY(0) scale(1); }
.popup .check {
  width: 70px; height: 70px; margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  display: flex; align-items: center; justify-content: center;
  color: #1a1407;
}
.popup .check svg { width: 36px; height: 36px; }
.popup h3 { font-size: 1.8rem; margin-bottom: 12px; }
.popup p { color: var(--text-muted); margin-bottom: 26px; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 24px; bottom: 24px;
  max-width: 380px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  z-index: 1200;
  box-shadow: var(--shadow);
  transform: translateY(140%);
  transition: transform 0.5s var(--ease);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner h4 { font-size: 1.2rem; margin-bottom: 8px; }
.cookie-banner p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 18px; }
.cookie-banner p a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions button { flex: 1; padding: 11px 14px; border-radius: 8px; font-size: 0.85rem; font-weight: 600; }
.cookie-actions .ck-accept { background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep)); color: #1a1407; }
.cookie-actions .ck-decline { background: var(--glass); border: 1px solid var(--glass-border); color: var(--text); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--glass-border); padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-col h4 { font-family: var(--font-ui); font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col p, .footer-col li { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 10px; }
.footer-col a { transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { max-width: 280px; }
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--glass); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.social-row a:hover { color: var(--gold); border-color: var(--line); transform: translateY(-3px); }
.social-row svg { width: 22px; height: 22px; }
.legal-block { font-size: 0.8rem; color: var(--text-dim); line-height: 1.7; }
.legal-block p { margin-bottom: 4px; }
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--text-dim);
}
.disclaimer-box {
  margin-top: 8px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(201,162,75,0.05);
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.disclaimer-box strong { color: var(--gold); }

/* ---------- Legal pages ---------- */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 1.7rem; margin: 36px 0 14px; }
.legal-content h3 { font-size: 1.3rem; margin: 26px 0 10px; color: var(--gold-soft); }
.legal-content p, .legal-content li { color: var(--text-muted); margin-bottom: 12px; }
.legal-content ul { list-style: disc; padding-left: 22px; }
.legal-content ul li { margin-bottom: 8px; }

/* ---------- Contact specifics ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-info .info-item .ico { width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px; background: var(--glass); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.contact-info .info-item .ico svg { width: 22px; height: 22px; }
.contact-info .info-item h4 { font-family: var(--font-ui); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 4px; }
.contact-info .info-item p { color: var(--text); font-size: 1.02rem; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--glass-border); margin-top: 36px; }
.map-wrap iframe { width: 100%; height: 340px; border: 0; display: block; filter: grayscale(0.3) contrast(1.05); }

/* ---------- Decorative ---------- */
.deco-line { width: 60px; height: 1px; background: var(--gold); margin: 22px 0; }
.bg-grain::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 3px 3px; opacity: 0.6;
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }
/* Fallback: show content if JS fails or is slow */
html:not(.js) .reveal, .reveal-fallback .reveal { opacity: 1 !important; transform: none !important; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 28px; }
.stat .num { font-family: var(--font); font-size: 2.6rem; color: var(--gold); }
.stat .lbl { color: var(--text-muted); font-size: 0.88rem; letter-spacing: 0.04em; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .split, .media-row, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split-media, .media-row.reverse .media-row-img { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav, .header-phone { display: none; }
  .burger { display: flex; }
  .section { padding: 72px 0; }
}
@media (max-width: 620px) {
  .container { padding: 0 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { min-height: 92vh; }
  .cookie-banner { left: 14px; right: 14px; max-width: none; bottom: 14px; }
  .room-card-foot { flex-direction: column; align-items: flex-start; gap: 16px; }
  .room-card-foot .btn { width: 100%; justify-content: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
