/* =========================================================
   Happylightwave — Scandinavian Light Luxury
   Luxury hotel + casino-inspired atmosphere
   ========================================================= */

:root {
  --bg: #FAF8F4;
  --bg-alt: #F2EEE7;
  --surface: #FFFFFF;
  --ink: #1C1B19;
  --ink-soft: #4A4844;
  --muted: #8A8680;
  --line: #E6E1D8;
  --gold: #B08D4F;
  --gold-soft: #C9A876;
  --gold-pale: #E8D9B8;
  --sage: #DCE0D8;
  --shadow: 0 18px 50px rgba(28, 27, 25, 0.10);
  --shadow-sm: 0 8px 24px rgba(28, 27, 25, 0.08);
  --radius: 4px;
  --radius-lg: 10px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --maxw: 1240px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

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

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.2px;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }

p { color: var(--ink-soft); }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--alt { background: var(--bg-alt); }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }

.section-head { max-width: 680px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section-head p { margin-top: 1rem; font-size: 1.05rem; }

.gold-line {
  width: 56px; height: 2px; background: var(--gold);
  margin: 1.2rem auto; display: block;
}
.gold-line--left { margin-left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 15px 34px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease); z-index: -1;
}
.btn:hover { color: #fff; border-color: var(--gold); }
.btn:hover::after { transform: scaleX(1); }
.btn--solid { background: var(--gold); color: #fff; }
.btn--solid::after { background: var(--ink); }
.btn--solid:hover { color: #fff; border-color: var(--ink); }
.btn--light { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn--light::after { background: #fff; }
.btn--light:hover { color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 248, 244, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(250, 248, 244, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 30px rgba(28,27,25,0.05);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 46px; height: 46px; border-radius: 6px; }
.brand-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; letter-spacing: 0.5px; color: var(--ink); }
.brand-name span { color: var(--gold); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft); position: relative; padding: 6px 0; transition: color 0.3s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-contact { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.04em; line-height: 1.4; text-align: right; }
.header-contact strong { color: var(--ink); font-weight: 500; display: block; }

.burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 8px; z-index: 120;
}
.burger span { width: 26px; height: 2px; background: var(--ink); transition: all 0.35s var(--ease); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 110;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex; flex-direction: column;
  padding: 90px 32px 40px;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  font-family: var(--serif); font-size: 1.8rem; color: var(--ink);
  padding: 14px 0; border-bottom: 1px solid var(--line);
  transition: color 0.3s, padding-left 0.3s;
}
.mobile-menu nav a:hover { color: var(--gold); padding-left: 10px; }
.mobile-menu .mm-contact { margin-top: 32px; font-size: 0.9rem; color: var(--ink-soft); }
.mobile-menu .mm-contact p { margin-bottom: 6px; }
.mobile-menu .mm-cta { margin-top: 24px; }
.menu-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; cursor: pointer; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}
.menu-close span { position: relative; width: 26px; height: 2px; background: var(--ink); transform: rotate(45deg); }
.menu-close span::after { content: ""; position: absolute; inset: 0; background: var(--ink); transform: rotate(90deg); }
body.menu-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,18,15,0.55) 0%, rgba(20,18,15,0.45) 50%, rgba(20,18,15,0.72) 100%);
}
.hero-inner { max-width: var(--maxw); margin: 0 auto; padding: 140px 24px 90px; width: 100%; }
.hero h1 { color: #fff; max-width: 880px; }
.hero h1 em { font-style: italic; color: var(--gold-pale); }
.hero-lead { margin-top: 1.4rem; max-width: 560px; font-size: 1.1rem; color: rgba(255,255,255,0.9); font-weight: 300; }
.hero-actions { margin-top: 2.2rem; display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 1.6rem; padding: 9px 18px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08); backdrop-filter: blur(6px);
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: #fff; border-radius: 2px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-soft); box-shadow: 0 0 12px var(--gold-soft); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-disclaimer {
  margin-top: 2rem; padding: 14px 20px; max-width: 620px;
  border-left: 2px solid var(--gold-soft);
  background: rgba(0,0,0,0.25); font-size: 0.82rem; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.92); text-transform: uppercase;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative; padding: 150px 0 70px; color: #fff; overflow: hidden;
}
.page-hero .hero-bg { z-index: -2; }
.page-hero .hero-overlay { z-index: -1; }
.page-hero-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,0.9); margin-top: 1rem; max-width: 600px; }
.page-hero--plain {
  background: linear-gradient(135deg, #2a2723 0%, #3a352e 55%, #1f1d1a 100%);
}
.page-hero--plain .deco {
  position: absolute; border-radius: 50%; border: 1px solid rgba(201,168,118,0.25);
  pointer-events: none;
}
.page-hero--plain .deco.d1 { width: 320px; height: 320px; right: -80px; top: -60px; }
.page-hero--plain .deco.d2 { width: 180px; height: 180px; left: 8%; bottom: -50px; border-color: rgba(255,255,255,0.1); }
.breadcrumb { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 1rem; }
.breadcrumb a { color: var(--gold-pale); }
.breadcrumb a:hover { color: #fff; }

/* ---------- Intro / feature blocks ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.split-media img { width: 100%; height: 100%; object-fit: cover; 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 rgba(255,255,255,0.25);
  border-radius: var(--radius-lg); pointer-events: none; margin: 12px;
}
.split-text h2 { margin-bottom: 1.2rem; }
.split-text p { margin-bottom: 1.1rem; }
.split-text .btn { margin-top: 1.4rem; }

.feature-list { list-style: none; margin-top: 1.6rem; }
.feature-list li {
  display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line);
  font-size: 0.95rem; color: var(--ink-soft);
}
.feature-list li::before {
  content: "✦"; color: var(--gold); flex-shrink: 0; font-size: 0.9rem; padding-top: 2px;
}

/* ---------- Room cards ---------- */
.room-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.room-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-8px); 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-tag {
  position: absolute; top: 14px; left: 14px; padding: 6px 12px;
  background: rgba(255,255,255,0.92); color: var(--ink); font-size: 0.68rem;
  letter-spacing: 0.16em; text-transform: uppercase; border-radius: 2px;
}
.room-card-media--plain {
  background: linear-gradient(160deg, var(--bg-alt), var(--sage));
  display: flex; align-items: center; justify-content: center;
}
.room-card-glyph {
  font-family: var(--serif); font-size: 3.4rem; color: var(--gold);
  opacity: 0.55; letter-spacing: 0.05em;
}
.room-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.room-card-body h3 { margin-bottom: 0.5rem; }
.room-card-meta {
  display: flex; flex-wrap: wrap; gap: 14px; margin: 12px 0 14px;
  font-size: 0.78rem; color: var(--muted); letter-spacing: 0.04em;
}
.room-card-meta span { display: inline-flex; align-items: center; gap: 6px; }
.room-card-meta span::before { content: "·"; color: var(--gold); }
.room-card-price { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.room-card-price .price { font-family: var(--serif); font-size: 1.5rem; color: var(--gold); }
.room-card-price .price small { font-size: 0.78rem; color: var(--muted); font-family: var(--sans); }
.room-card-price .old { font-size: 0.85rem; color: var(--muted); text-decoration: line-through; }
.room-card .btn { margin-top: 16px; align-self: flex-start; padding: 12px 26px; font-size: 0.74rem; }

/* ---------- Rooms page detailed ---------- */
.room-detail {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 64px);
  align-items: center; margin-bottom: clamp(50px, 8vw, 90px);
}
.room-detail:nth-child(even) .room-detail-media { order: 2; }
.room-detail-media { position: relative; overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 5/4; }
.room-detail-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.room-detail:hover .room-detail-media img { transform: scale(1.05); }
.room-detail-body h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 0.8rem; }
.room-detail-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin: 1.2rem 0; }
.room-detail-specs div { font-size: 0.85rem; }
.room-detail-specs div span { display: block; color: var(--muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }
.room-detail-specs div strong { font-weight: 500; color: var(--ink); }
.room-detail-amenities { display: flex; flex-wrap: wrap; gap: 8px; margin: 1rem 0 1.4rem; }
.room-detail-amenities span { font-size: 0.75rem; padding: 5px 12px; border: 1px solid var(--line); border-radius: 20px; color: var(--ink-soft); }
.room-detail-price { display: flex; align-items: baseline; gap: 14px; margin-bottom: 1.2rem; }
.room-detail-price .price { font-family: var(--serif); font-size: 2rem; color: var(--gold); }
.room-detail-price .old { color: var(--muted); text-decoration: line-through; font-size: 1rem; }
.room-detail-price .save { font-size: 0.74rem; color: var(--gold); border: 1px solid var(--gold); padding: 3px 9px; border-radius: 20px; }

/* ---------- Amenities grid ---------- */
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.amenity {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 24px; text-align: center; transition: all 0.45s var(--ease);
}
.amenity:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); border-color: var(--gold-pale); }
.amenity .ic { font-size: 1.8rem; color: var(--gold); margin-bottom: 14px; }
.amenity h4 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.amenity p { font-size: 0.85rem; }

/* ---------- Services list ---------- */
.service-row {
  display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: start;
  padding: 36px 0; border-bottom: 1px solid var(--line);
}
.service-row:last-child { border-bottom: none; }
.service-row-media { overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.service-row-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.service-row:hover .service-row-media img { transform: scale(1.06); }
.service-row-body h3 { margin-bottom: 0.6rem; }
.service-row-body p { margin-bottom: 0.8rem; }
.service-row-body ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 0.6rem; }
.service-row-body ul li { font-size: 0.8rem; color: var(--ink-soft); position: relative; padding-left: 16px; }
.service-row-body ul li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; }
.service-price { margin-top: 14px; display: flex; align-items: baseline; gap: 10px; }
.service-price .price { font-family: var(--serif); font-size: 1.3rem; color: var(--gold); }
.service-price .unit { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.04em; }
.service-row-media--plain {
  background: linear-gradient(160deg, var(--bg-alt), var(--sage));
  display: flex; align-items: center; justify-content: center;
}
.service-row-media--plain .glyph {
  font-family: var(--serif); font-size: 3rem; color: var(--gold); opacity: 0.5;
}

.service-group { margin-bottom: clamp(40px, 6vw, 70px); }
.service-group-head { display: flex; align-items: center; gap: 18px; margin-bottom: 30px; }
.service-group-head .num { font-family: var(--serif); font-size: 1.4rem; color: var(--gold); }
.service-group-head h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.service-group-head .line { flex: 1; height: 1px; background: var(--line); }

/* ---------- Casino-inspired block ---------- */
.casino-band {
  position: relative; color: #fff; overflow: hidden;
  background: #1f1d1a;
}
.casino-band .hero-bg { z-index: 0; }
.casino-band .hero-overlay { z-index: 1; background: linear-gradient(120deg, rgba(20,18,15,0.85), rgba(20,18,15,0.55)); }
.casino-band .container { position: relative; z-index: 2; }
.casino-band h2 { color: #fff; }
.casino-band p { color: rgba(255,255,255,0.88); }
.casino-chips { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 1.8rem; }
.casino-chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  border: 1px solid rgba(201,168,118,0.5); border-radius: 30px;
  font-size: 0.78rem; letter-spacing: 0.1em; color: var(--gold-pale);
}
.casino-chip::before { content: "◉"; color: var(--gold-soft); }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; position: relative; transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.testi:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.testi .quote { font-family: var(--serif); font-size: 3rem; color: var(--gold-pale); line-height: 1; }
.testi p { font-style: italic; margin: 0.4rem 0 1.4rem; color: var(--ink-soft); }
.testi .who { display: flex; flex-direction: column; gap: 2px; }
.testi .who strong { font-weight: 500; color: var(--ink); }
.testi .who span { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.06em; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; color: #fff; overflow: hidden; text-align: center;
}
.cta-band .hero-bg { z-index: 0; }
.cta-band .hero-overlay { z-index: 1; background: rgba(20,18,15,0.7); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 1rem auto 2rem; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.form-field label .req { color: var(--gold); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--sans); font-size: 0.95rem; font-weight: 300;
  padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg); color: var(--ink); transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}
.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(176,141,79,0.12);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field .err {
  font-size: 0.75rem; color: #b0413e; display: none; letter-spacing: 0.02em;
}
.form-field.invalid input, .form-field.invalid select, .form-field.invalid textarea { border-color: #b0413e; }
.form-field.invalid .err { display: block; }
.form-submit { margin-top: 24px; display: flex; justify-content: flex-start; }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 14px; }

/* Success popup */
.popup-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(20,18,15,0.6);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
  backdrop-filter: blur(4px);
}
.popup-overlay.show { opacity: 1; visibility: visible; }
.popup {
  background: var(--surface); border-radius: var(--radius-lg); max-width: 460px; width: 100%;
  padding: 40px 34px; text-align: center; transform: translateY(20px) scale(0.97);
  transition: transform 0.4s var(--ease); border: 1px solid var(--line);
}
.popup-overlay.show .popup { transform: translateY(0) scale(1); }
.popup .ic {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
  border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.8rem;
}
.popup h3 { margin-bottom: 0.6rem; }
.popup p { color: var(--ink-soft); font-size: 0.95rem; }
.popup .btn { margin-top: 22px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(36px, 5vw, 60px); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-item { padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: none; }
.contact-item .lbl { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.contact-item .val { font-size: 1.05rem; color: var(--ink); font-weight: 400; }
.contact-item .val a { color: var(--gold); border-bottom: 1px solid var(--gold-pale); transition: color 0.3s; }
.contact-item .val a:hover { color: var(--ink); }
.map-wrap { margin-top: 36px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- Legal pages ---------- */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; margin: 2rem 0 0.8rem; }
.legal-content h3 { font-size: 1.15rem; margin: 1.4rem 0 0.6rem; }
.legal-content p { margin-bottom: 1rem; }
.legal-content ul { margin: 0 0 1rem 1.2rem; }
.legal-content ul li { margin-bottom: 0.5rem; color: var(--ink-soft); }
.legal-content .updated { font-size: 0.8rem; color: var(--muted); margin-bottom: 2rem; }

/* ---------- Footer ---------- */
.site-footer { background: #1c1b19; color: #c9c5be; padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand img { width: 48px; height: 48px; border-radius: 6px; margin-bottom: 16px; }
.footer-brand .fn { font-family: var(--serif); font-size: 1.3rem; color: #fff; margin-bottom: 12px; }
.footer-brand .fn span { color: var(--gold-soft); }
.footer-brand p { font-size: 0.88rem; color: #a8a39a; }
.footer-col h4 { color: #fff; font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; font-family: var(--sans); font-weight: 500; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a, .footer-col ul li { font-size: 0.88rem; color: #a8a39a; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold-soft); }
.footer-contact li { margin-bottom: 10px; line-height: 1.5; }
.footer-contact .lbl { color: #6f6b64; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; display: block; }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #c9c5be;
  transition: all 0.35s var(--ease);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-3px); }
.footer-social a:hover svg { filter: brightness(0) invert(1); }
.footer-social svg { width: 22px; height: 22px; }
.footer-legal { font-size: 0.8rem; color: #8a857c; line-height: 1.7; margin-top: 14px; }
.footer-bottom {
  margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.8rem; color: #8a857c;
}
.footer-bottom a { color: #a8a39a; }
.footer-bottom a:hover { color: var(--gold-soft); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: #1c1b19; color: #d8d4cc; padding: 22px 24px;
  transform: translateY(100%); transition: transform 0.5s var(--ease);
  border-top: 2px solid var(--gold);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-inner p { font-size: 0.85rem; color: #b8b3a9; flex: 1; min-width: 240px; }
.cookie-inner p a { color: var(--gold-soft); border-bottom: 1px solid rgba(201,168,118,0.4); }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-actions .btn { padding: 11px 22px; font-size: 0.72rem; color: #fff; border-color: rgba(255,255,255,0.4); }
.cookie-actions .btn::after { background: #fff; }
.cookie-actions .btn:hover { color: var(--ink); border-color: #fff; }
.cookie-actions .btn.btn--solid { color: #fff; }
.cookie-actions .btn.btn--solid::after { background: var(--ink); }
.cookie-actions .btn.btn--solid:hover { color: #fff; border-color: var(--ink); }
.cookie-msg {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  z-index: 160; background: var(--surface); border: 1px solid var(--gold-pale);
  padding: 14px 24px; border-radius: 30px; box-shadow: var(--shadow);
  font-size: 0.85rem; color: var(--ink); opacity: 0; visibility: hidden;
  transition: all 0.4s var(--ease);
}
.cookie-msg.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* ---------- Decorative ---------- */
.deco-chip {
  position: absolute; border-radius: 50%; border: 2px solid var(--gold-pale);
  opacity: 0.5; pointer-events: none;
}

/* ---------- Scroll animations ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-left.in { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-right.in { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat .num { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); color: var(--gold); }
.stat .lbl { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav, .header-cta .header-contact { display: none; }
  .burger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .room-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .room-detail, .room-detail:nth-child(even) { grid-template-columns: 1fr; }
  .room-detail:nth-child(even) .room-detail-media { order: 0; }
  .service-row { grid-template-columns: 1fr; }
  .service-row-media { max-width: 320px; }
}
@media (max-width: 620px) {
  .room-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { flex: 1; }
  .room-detail-specs { grid-template-columns: 1fr; }
}

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