/* ============================================================
   Thelinnaeuscourt — Luxury Casino Hotel
   Scandinavian Boutique / Light Minimalism
   ============================================================ */

:root {
  --bg: #FAF8F4;
  --bg-alt: #F2EEE6;
  --surface: #FFFFFF;
  --ink: #1C1C1C;
  --ink-soft: #4A4A4A;
  --muted: #8A8478;
  --line: #E4DFD4;
  --gold: #B08D4F;
  --gold-soft: #C9A961;
  --gold-deep: #8A6B33;
  --sage: #4A5A4F;
  --charcoal: #232220;
  --shadow: 0 18px 50px -24px rgba(35, 34, 32, 0.45);
  --shadow-sm: 0 8px 24px -16px rgba(35, 34, 32, 0.35);
  --radius: 4px;
  --radius-lg: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --maxw: 1240px;
}

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

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--bg-alt); }
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
  display: inline-block;
}
.section-title { font-size: clamp(30px, 4vw, 46px); margin-bottom: 18px; }
.section-intro { max-width: 640px; color: var(--ink-soft); font-size: 17px; }
.center { text-align: center; }
.center .section-intro { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 16px 34px; border-radius: var(--radius);
  transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(176, 141, 79, 0.6); }
.btn--outline { border: 1px solid var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--light { border: 1px solid rgba(255,255,255,0.6); color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); }
.btn--ghost { color: var(--gold-deep); padding: 10px 0; border-bottom: 1px solid var(--gold); border-radius: 0; }
.btn--ghost:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- Header ---------- */
.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);
}
.header.scrolled { background: rgba(250, 248, 244, 0.96); border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo__img { width: 44px; height: 44px; border-radius: 6px; object-fit: cover; }
.logo__text { font-family: var(--serif); font-size: 19px; font-weight: 600; letter-spacing: 0.5px; line-height: 1; }
.logo__text small { display: block; font-family: var(--sans); font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-deep); font-weight: 500; margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav__link { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; font-weight: 500; color: var(--ink-soft); position: relative; padding: 6px 0; transition: color 0.3s; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.35s var(--ease); }
.nav__link:hover, .nav__link.active { color: var(--ink); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.header__right { display: flex; align-items: center; gap: 20px; }
.header__contact { font-size: 12px; color: var(--muted); line-height: 1.4; text-align: right; }
.header__contact strong { color: var(--ink); font-weight: 600; display: block; font-size: 13px; }
.burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.burger span { width: 24px; height: 2px; background: var(--ink); transition: all 0.35s 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(380px, 86vw); height: 100vh;
  background: var(--surface); z-index: 200; transform: translateX(100%);
  transition: transform 0.5s var(--ease); display: flex; flex-direction: column;
  box-shadow: -20px 0 60px -30px rgba(0,0,0,0.4); padding: 28px 28px 40px;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__close { align-self: flex-end; width: 40px; height: 40px; font-size: 22px; color: var(--ink); }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 4px; margin-top: 12px; }
.mobile-menu__link { font-family: var(--serif); font-size: 24px; padding: 14px 0; border-bottom: 1px solid var(--line); transition: color 0.3s, padding-left 0.3s; }
.mobile-menu__link:hover { color: var(--gold-deep); padding-left: 10px; }
.mobile-menu__contact { margin-top: auto; padding-top: 28px; color: var(--ink-soft); font-size: 14px; }
.mobile-menu__contact p { margin-bottom: 8px; }
.overlay { position: fixed; inset: 0; background: rgba(28,28,28,0.5); z-index: 150; opacity: 0; visibility: hidden; transition: all 0.4s; }
.overlay.open { opacity: 1; visibility: visible; }
body.menu-open, body.locked { 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: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,20,20,0.55) 0%, rgba(20,20,20,0.45) 50%, rgba(20,20,20,0.7) 100%); }
.hero__inner { position: relative; z-index: 2; padding: 120px 0 80px; width: 100%; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 20px; border-radius: 40px; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 28px; backdrop-filter: blur(8px);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-soft); box-shadow: 0 0 12px var(--gold-soft); }
.hero h1 { font-size: clamp(38px, 6vw, 72px); max-width: 900px; margin-bottom: 24px; font-weight: 500; }
.hero__lead { font-size: clamp(16px, 2vw, 20px); max-width: 560px; color: rgba(255,255,255,0.88); margin-bottom: 36px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__disclaimer {
  margin-top: 40px; max-width: 560px; padding: 18px 22px;
  border-left: 3px solid var(--gold-soft); background: rgba(0,0,0,0.25);
  font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.85);
}
.hero__disclaimer strong { color: var(--gold-soft); letter-spacing: 1px; }

/* smaller hero for inner pages */
.hero--inner { min-height: 62vh; }
.hero--inner h1 { font-size: clamp(34px, 5vw, 58px); }

/* ---------- Intro ---------- */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.intro-grid__media { position: relative; }
.intro-grid__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.intro-grid__media .badge-float {
  position: absolute; bottom: -28px; left: -28px; background: var(--surface);
  padding: 24px 30px; border-radius: var(--radius); box-shadow: var(--shadow);
  text-align: center;
}
.badge-float .num { font-family: var(--serif); font-size: 40px; color: var(--gold-deep); line-height: 1; }
.badge-float .lbl { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.intro-grid p { color: var(--ink-soft); margin-bottom: 18px; font-size: 17px; }
.intro-features { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 26px; }
.intro-feature { display: flex; gap: 12px; align-items: flex-start; }
.intro-feature .ic { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.intro-feature h4 { font-family: var(--sans); font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.intro-feature p { font-size: 13px; color: var(--muted); margin: 0; }

/* ---------- Room cards ---------- */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.room-card { background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); 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 0.7s var(--ease); }
.room-card:hover .room-card__media img { transform: scale(1.08); }
.room-card__tag { position: absolute; top: 16px; left: 16px; background: var(--surface); color: var(--ink); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; padding: 7px 14px; border-radius: 40px; font-weight: 600; }
.room-card__tag.gold { background: var(--gold); color: #fff; }
.room-card__body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.room-card h3 { font-size: 26px; margin-bottom: 8px; }
.room-card__desc { color: var(--ink-soft); font-size: 14px; margin-bottom: 18px; }
.room-card__specs { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.room-card__spec { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.room-card__spec svg { color: var(--gold); }
.room-card__foot { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; }
.room-card__price { font-family: var(--serif); }
.room-card__price .from { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); display: block; }
.room-card__price .val { font-size: 28px; color: var(--ink); }
.room-card__price .old { font-size: 15px; color: var(--muted); text-decoration: line-through; margin-left: 8px; }
.room-card__price .unit { font-size: 13px; color: var(--muted); font-family: var(--sans); }

/* ---------- Experience / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.split__media { position: relative; overflow: hidden; min-height: 480px; }
.split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split__content { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.split--reverse .split__media { order: 2; }
.split--reverse .split__content { order: 1; }
.split h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 22px; }
.split p { color: var(--ink-soft); margin-bottom: 16px; font-size: 16px; }
.split__list { margin: 24px 0 32px; display: grid; gap: 14px; }
.split__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.split__list li svg { color: var(--gold); flex-shrink: 0; margin-top: 4px; }

/* ---------- Amenities ---------- */
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.amenity { background: var(--surface); padding: 36px 28px; border-radius: var(--radius); border: 1px solid var(--line); transition: all 0.4s var(--ease); text-align: center; }
.amenity:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.amenity .ic { width: 54px; height: 54px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; color: var(--gold); border: 1px solid var(--line); border-radius: 50%; transition: all 0.4s; }
.amenity:hover .ic { background: var(--gold); color: #fff; border-color: var(--gold); }
.amenity h4 { font-family: var(--sans); font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.amenity p { font-size: 13px; color: var(--muted); }

/* ---------- Casino-inspired ---------- */
.casino-band { background: var(--charcoal); color: #fff; position: relative; overflow: hidden; }
.casino-band .container { position: relative; z-index: 2; }
.casino-band__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.casino-band h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); }
.casino-band .eyebrow { color: var(--gold-soft); }
.casino-band p { color: rgba(255,255,255,0.78); margin-bottom: 16px; }
.casino-chips { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 28px; }
.casino-chip { width: 92px; height: 92px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-direction: column; font-family: var(--serif); border: 4px dashed rgba(255,255,255,0.25); position: relative; transition: transform 0.5s var(--ease); }
.casino-chip:hover { transform: rotate(12deg) scale(1.05); }
.casino-chip .v { font-size: 22px; }
.casino-chip .l { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; font-family: var(--sans); }
.chip-gold { background: radial-gradient(circle at 30% 30%, #d8b56a, var(--gold-deep)); color: #2a1f08; }
.chip-sage { background: radial-gradient(circle at 30% 30%, #6b8073, var(--sage)); color: #fff; }
.chip-cream { background: radial-gradient(circle at 30% 30%, #fff, #e4dfd4); color: var(--ink); }

/* ---------- Restaurant ---------- */
.rest-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; }
.rest-grid__main { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 460px; }
.rest-grid__main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rest-grid__main .cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; background: linear-gradient(transparent, rgba(0,0,0,0.7)); color: #fff; }
.rest-grid__side { display: grid; gap: 24px; }
.rest-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; min-height: 218px; }
.rest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.rest-card:hover img { transform: scale(1.07); }
.rest-card .cap { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 22px; background: linear-gradient(transparent 40%, rgba(0,0,0,0.65)); color: #fff; }
.rest-card .cap h4 { font-size: 22px; }

/* ---------- Events ---------- */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.event-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; aspect-ratio: 3/4; }
.event-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.event-card:hover img { transform: scale(1.06); }
.event-card .cap { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; background: linear-gradient(transparent 30%, rgba(20,20,20,0.8)); color: #fff; }
.event-card .eyebrow { color: var(--gold-soft); margin-bottom: 10px; }
.event-card h3 { color: #fff; font-size: 26px; margin-bottom: 8px; }
.event-card p { color: rgba(255,255,255,0.82); font-size: 14px; }

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tst-card { background: var(--surface); padding: 36px 30px; border-radius: var(--radius); border: 1px solid var(--line); position: relative; transition: transform 0.4s var(--ease); }
.tst-card:hover { transform: translateY(-5px); }
.tst-card .quote { font-family: var(--serif); font-size: 56px; color: var(--gold-soft); line-height: 0.6; height: 30px; }
.tst-card p { color: var(--ink-soft); font-style: italic; margin-bottom: 22px; font-size: 15px; }
.tst-card .who { display: flex; align-items: center; gap: 14px; }
.tst-card .av { width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 20px; flex-shrink: 0; }
.tst-card .who strong { display: block; font-size: 14px; }
.tst-card .who span { font-size: 12px; color: var(--muted); }
.stars { color: var(--gold-soft); letter-spacing: 2px; margin-bottom: 12px; font-size: 14px; }

/* ---------- CTA ---------- */
.cta-band { position: relative; padding: 110px 0; color: #fff; text-align: center; overflow: hidden; }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: rgba(20,20,20,0.6); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(30px, 5vw, 52px); margin-bottom: 18px; }
.cta-band p { max-width: 540px; margin: 0 auto 32px; color: rgba(255,255,255,0.85); font-size: 17px; }

/* ---------- Booking form ---------- */
.booking { background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 40px; }
.booking__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.booking__grid .full { grid-column: span 4; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.field label .req { color: var(--gold-deep); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15px; 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%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176,141,79,0.12); outline: none; }
.field textarea { resize: vertical; min-height: 90px; }
.field__error { color: #b03a3a; font-size: 12px; min-height: 14px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b03a3a; }
.field.invalid .field__error { display: block; }
.booking__submit { margin-top: 24px; width: 100%; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact-info { display: grid; gap: 26px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.contact-item .ic { width: 48px; height: 48px; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-item h4 { font-family: var(--sans); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; font-weight: 600; }
.contact-item p { font-size: 16px; color: var(--ink); }
.contact-item a.maplink { color: var(--gold-deep); border-bottom: 1px solid var(--gold); font-size: 14px; }
.contact-item a.maplink:hover { color: var(--ink); }
.map-embed { margin-top: 8px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 280px; border: 0; display: block; }
.hours-list { display: grid; gap: 6px; font-size: 14px; }
.hours-list .row { display: flex; justify-content: space-between; }
.hours-list .row span:last-child { color: var(--ink-soft); }

/* ---------- Legal pages ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: 26px; margin: 40px 0 14px; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-family: var(--sans); font-size: 16px; font-weight: 600; margin: 26px 0 10px; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 12px; font-size: 15px; }
.legal ul { padding-left: 22px; list-style: disc; margin-bottom: 14px; }
.legal ul li { margin-bottom: 8px; }
.legal .updated { font-size: 13px; color: var(--muted); margin-bottom: 30px; font-style: italic; }

/* ---------- Footer ---------- */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 72px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; margin-bottom: 50px; }
.footer .logo__text { color: #fff; }
.footer h4 { font-family: var(--sans); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 20px; font-weight: 600; }
.footer__nav { display: grid; gap: 11px; }
.footer__nav a { font-size: 14px; transition: color 0.3s, padding-left 0.3s; }
.footer__nav a:hover { color: #fff; padding-left: 6px; }
.footer__about p { font-size: 14px; margin-bottom: 18px; line-height: 1.7; }
.footer__contact { display: grid; gap: 12px; font-size: 14px; }
.footer__contact p { line-height: 1.5; }
.footer__contact .lbl { color: var(--gold-soft); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; display: block; margin-bottom: 2px; }
.footer__social { display: flex; gap: 12px; margin-top: 16px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.8); transition: all 0.35s; }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-3px); }
.footer__legal { font-size: 12px; line-height: 1.7; color: rgba(255,255,255,0.5); border-top: 1px solid rgba(255,255,255,0.12); padding-top: 26px; }
.footer__legal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 30px; margin-bottom: 18px; }
.footer__legal-grid div span { color: var(--gold-soft); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(255,255,255,0.45); border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; }
.footer__bottom a:hover { color: #fff; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: var(--charcoal); color: rgba(255,255,255,0.85);
  padding: 22px 24px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  box-shadow: 0 -10px 40px -20px rgba(0,0,0,0.5);
  transform: translateY(100%); transition: transform 0.5s var(--ease);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 13px; flex: 1; min-width: 240px; }
.cookie-banner p a { color: var(--gold-soft); border-bottom: 1px solid rgba(201,169,97,0.5); }
.cookie-banner__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .cbtn { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; padding: 11px 22px; border-radius: var(--radius); transition: all 0.3s; }
.cbtn--accept { background: var(--gold); color: #fff; }
.cbtn--accept:hover { background: var(--gold-deep); }
.cbtn--decline { border: 1px solid rgba(255,255,255,0.3); color: #fff; }
.cbtn--decline:hover { background: rgba(255,255,255,0.1); }

/* ---------- Success popup ---------- */
.popup-overlay { position: fixed; inset: 0; background: rgba(20,20,20,0.6); z-index: 400; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.35s; padding: 24px; }
.popup-overlay.open { opacity: 1; visibility: visible; }
.popup { background: var(--surface); border-radius: var(--radius-lg); padding: 48px 40px; max-width: 440px; width: 100%; text-align: center; transform: translateY(20px) scale(0.96); transition: transform 0.4s var(--ease); box-shadow: var(--shadow); }
.popup-overlay.open .popup { transform: translateY(0) scale(1); }
.popup__icon { width: 72px; height: 72px; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--gold); }
.popup h3 { font-size: 28px; margin-bottom: 12px; }
.popup p { color: var(--ink-soft); font-size: 15px; margin-bottom: 26px; }

/* ---------- Cookie confirm toast ---------- */
.cookie-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--charcoal); color: #fff; padding: 14px 26px; border-radius: 40px;
  font-size: 13px; z-index: 350; transition: transform 0.45s var(--ease); box-shadow: var(--shadow);
}
.cookie-toast.show { transform: translateX(-50%) translateY(0); }

/* ---------- Animations ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-l.in { opacity: 1; transform: none; }
.reveal-r { opacity: 0; transform: translateX(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-r.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }
.reveal-d4 { transition-delay: 0.48s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-l, .reveal-r { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Page-specific: rooms list ---------- */
.rooms-list { display: grid; gap: 56px; }
.room-detail { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.room-detail:nth-child(even) .room-detail__media { order: 2; }
.room-detail__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.room-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.room-detail__body h3 { font-size: 34px; margin-bottom: 6px; }
.room-detail__body .tagline { color: var(--gold-deep); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.room-detail__body p { color: var(--ink-soft); margin-bottom: 18px; font-size: 16px; }
.room-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 24px; }
.room-spec { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--ink-soft); }
.room-spec svg { color: var(--gold); flex-shrink: 0; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.room-amenities span { font-size: 12px; padding: 6px 14px; background: var(--bg-alt); border-radius: 40px; color: var(--ink-soft); }
.room-price-bar { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.room-price-bar .val { font-family: var(--serif); font-size: 34px; }
.room-price-bar .old { font-size: 18px; color: var(--muted); text-decoration: line-through; margin-left: 10px; }
.room-price-bar .unit { font-size: 13px; color: var(--muted); }
.room-price-bar .save { background: var(--gold); color: #fff; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: 40px; font-weight: 600; }

/* ---------- Services page ---------- */
.svc-block { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.svc-block:nth-child(even) .svc-block__media { order: 2; }
.svc-block__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.svc-block__media img { width: 100%; height: 100%; object-fit: cover; }
.svc-block__body h3 { font-size: 32px; margin-bottom: 16px; }
.svc-block__body p { color: var(--ink-soft); margin-bottom: 16px; }
.svc-list { display: grid; gap: 12px; margin: 22px 0 28px; }
.svc-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.svc-list li svg { color: var(--gold); flex-shrink: 0; margin-top: 4px; }

/* ---------- About stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 30px 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.stat .num { font-family: var(--serif); font-size: 44px; color: var(--gold-deep); line-height: 1; }
.stat .lbl { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

/* ---------- Breadcrumb-ish spacer for fixed header ---------- */
.spacer { height: 84px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .nav, .header__contact { display: none; }
  .burger { display: flex; }
  .intro-grid, .split, .casino-band__grid, .rest-grid, .contact-grid, .room-detail, .svc-block { grid-template-columns: 1fr; gap: 36px; }
  .split__content { padding: 56px 24px; }
  .split--reverse .split__media, .room-detail:nth-child(even) .room-detail__media, .svc-block:nth-child(even) .svc-block__media { order: 0; }
  .rooms-grid, .events-grid, .tst-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .booking__grid { grid-template-columns: 1fr 1fr; }
  .booking__grid .full { grid-column: span 2; }
  .section { padding: 72px 0; }
  .hero__inner { padding: 110px 0 60px; }
}
@media (max-width: 620px) {
  .rooms-grid, .events-grid, .tst-grid, .amenities-grid, .stats, .booking__grid, .footer__grid, .footer__legal-grid { grid-template-columns: 1fr; }
  .booking__grid .full { grid-column: span 1; }
  .room-specs, .intro-features { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .booking, .split__content { padding: 28px 22px; }
  .container { padding: 0 18px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner__btns { justify-content: center; }
}
