/* ============================================================
   Digital Grand Resort & Entertainment — Main Stylesheet
   Color Palette:
     Deep Navy   #0A0E1A
     Midnight    #111827
     Gold        #C9A84C
     Gold Light  #F2D06B
     Champagne   #F5E6C3
     Slate       #1E2A3A
     Mist        #8A9BB0
     White       #FFFFFF
   ============================================================ */

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

:root {
  --navy:      #0A0E1A;
  --midnight:  #111827;
  --slate:     #1E2A3A;
  --gold:      #C9A84C;
  --gold-lt:   #F2D06B;
  --champagne: #F5E6C3;
  --mist:      #8A9BB0;
  --white:     #FFFFFF;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--midnight);
  color: var(--champagne);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }

.serif-italic { font-family: 'Playfair Display', serif; font-style: italic; }
.gold-text    { color: var(--gold); }
.champagne    { color: var(--champagne); }
.mist-text    { color: var(--mist); }

/* ---- LINKS ---- */
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-lt); }

/* ---- UTILITIES ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }
.divider-gold {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}
.divider-gold.left { margin-left: 0; }

.label-tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
  z-index: -1;
}
.btn:hover { color: var(--navy); }
.btn:hover::before { transform: scaleX(1); transform-origin: left; }

.btn-solid {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: var(--navy);
  border-color: transparent;
}
.btn-solid::before { background: var(--navy); }
.btn-solid:hover { color: var(--gold-lt); border-color: var(--gold-lt); }

/* ---- AGE VERIFICATION POPUP ---- */
#age-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.age-box {
  background: linear-gradient(145deg, var(--slate) 0%, var(--navy) 100%);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  padding: 3rem 3.5rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}
.age-box .age-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.age-box h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.age-box p {
  font-size: 0.9rem;
  color: var(--mist);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.age-box .age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.age-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.age-buttons .btn { min-width: 140px; }

/* ---- COOKIE BANNER ---- */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(10,14,26,0.97);
  border-top: 1px solid rgba(201,168,76,0.25);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { font-size: 0.83rem; color: var(--mist); flex: 1; min-width: 250px; }
#cookie-banner p a { color: var(--gold); }
.cookie-btns { display: flex; gap: 0.75rem; }

/* ---- HEADER / NAV ---- */
#main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#main-header.scrolled {
  background: rgba(10,14,26,0.97);
  padding: 0.9rem 0;
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.site-logo img { width: 40px; height: 40px; }
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.logo-text span { color: var(--gold); display: block; font-size: 0.65rem; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; }

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}
.main-nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,230,195,0.75);
  padding: 0.5rem 0.9rem;
  position: relative;
  transition: color var(--transition);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: left var(--transition), right var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--gold); }
.main-nav a:hover::after,
.main-nav a.active::after { left: 0.9rem; right: 0.9rem; }

.nav-cta { margin-left: 1.5rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 28px; height: 2px;
  background: var(--champagne);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- MOBILE NAV ---- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--champagne);
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: var(--mist); font-size: 1.5rem; cursor: pointer;
}

/* ---- HERO ---- */
#hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.5);
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,14,26,0.85) 0%,
    rgba(10,14,26,0.4) 60%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-content .label-tag { font-size: 0.72rem; }
.hero-content h1 {
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.hero-content p {
  font-size: 1.05rem;
  color: rgba(245,230,195,0.8);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 50px; }
  50% { opacity: 0.4; height: 30px; }
}

/* ---- QUICK STATS BAR ---- */
.stats-bar {
  background: var(--slate);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 1.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: 0.5rem; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: 0.35rem;
}

/* ---- SECTION HEADER ---- */
.section-header { margin-bottom: 4rem; }
.section-header p {
  color: var(--mist);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.8;
}
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ---- FEATURES GRID ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.feature-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.55);
}
.feature-card:hover img { transform: scale(1.08); filter: brightness(0.7); }
.feature-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(10,14,26,0.9) 0%, transparent 60%);
}
.feature-info h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.feature-info p { font-size: 0.82rem; color: var(--mist); }
.feature-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 1.2rem;
}

/* ---- TWO-COL LAYOUT ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.img-frame {
  position: relative;
}
.img-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.img-frame::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 1px solid rgba(201,168,76,0.3);
  z-index: -1;
  pointer-events: none;
}
.img-frame-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: var(--navy);
  padding: 1.2rem 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}
.img-frame-badge span { display: block; font-size: 2rem; font-weight: 700; }

/* ---- ROOMS GRID ---- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.room-card {
  background: var(--slate);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.room-card img {
  width: 100%; height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover img { transform: scale(1.06); }
.room-body {
  padding: 1.75rem;
}
.room-meta {
  display: flex;
  gap: 1rem;
  margin: 0.75rem 0 1.2rem;
  flex-wrap: wrap;
}
.room-tag {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
  border: 1px solid rgba(138,155,176,0.3);
  padding: 0.25rem 0.7rem;
}

/* ---- TESTIMONIALS ---- */
.testimonials-bg {
  background: var(--slate);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: rgba(10,14,26,0.6);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: rgba(201,168,76,0.12);
  position: absolute;
  top: -0.5rem; left: 1.5rem;
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; }
.testimonial-text {
  font-size: 0.9rem;
  color: var(--champagne);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.4);
  background: var(--slate);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
}
.author-name { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.author-location { font-size: 0.72rem; color: var(--mist); }

/* ---- DINING SECTION ---- */
.dining-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3px;
}
.dining-main { position: relative; height: 600px; overflow: hidden; }
.dining-main img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); }
.dining-side { display: grid; grid-template-rows: 1fr 1fr; gap: 3px; }
.dining-side-item { position: relative; overflow: hidden; }
.dining-side-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); transition: transform 0.6s ease; }
.dining-side-item:hover img { transform: scale(1.06); }
.dining-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(10,14,26,0.88) 0%, transparent 55%);
}
.dining-overlay h3 { font-size: 1.6rem; }
.dining-overlay p { font-size: 0.82rem; color: var(--mist); margin-top: 0.4rem; }

/* ---- LOCATION SECTION ---- */
.location-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.location-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/australia-aerial.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.location-list { list-style: none; margin: 2rem 0; }
.location-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  font-size: 0.9rem;
  color: var(--champagne);
}
.location-list li .loc-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.9rem;
}

/* ---- ENTERTAINMENT ---- */
.ent-hero {
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ent-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}
.ent-hero-content {
  position: relative;
  z-index: 2;
}

/* ---- REGULATORS ---- */
.regulators-section {
  background: var(--slate);
  border-top: 1px solid rgba(201,168,76,0.15);
}
.regulators-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 2rem auto 0;
}
.regulator-card {
  background: rgba(10,14,26,0.5);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 1.8rem 2rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: border-color var(--transition);
}
.regulator-card:hover { border-color: rgba(201,168,76,0.5); }
.reg-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.reg-info h4 { font-family: 'Jost', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; }
.reg-info p { font-size: 0.75rem; color: var(--mist); line-height: 1.6; }
.reg-info a { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.05em; }

/* ---- FOOTER ---- */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.footer-brand .logo-text { font-size: 1.1rem; }
.footer-brand p {
  font-size: 0.82rem;
  color: var(--mist);
  line-height: 1.8;
  margin: 1.2rem 0;
  max-width: 280px;
}
.footer-col h5 {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--mist);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--champagne); }
.footer-contact { list-style: none; }
.footer-contact li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
  font-size: 0.82rem;
  color: var(--mist);
}
.footer-contact li i { color: var(--gold); width: 16px; flex-shrink: 0; margin-top: 0.15rem; }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: var(--mist); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { font-size: 0.72rem; color: var(--mist); transition: color var(--transition); }
.footer-legal a:hover { color: var(--gold); }
.age-badge-footer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-weight: 600;
  border-radius: 2px;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  height: 55vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,14,26,1) 0%, rgba(10,14,26,0.2) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
}
.page-hero-content h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.72rem;
  color: var(--mist);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--mist); }

/* ---- LEGAL PAGES ---- */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 2rem;
}
.legal-content h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.5rem; }
.legal-content .update-date { font-size: 0.78rem; color: var(--mist); margin-bottom: 3rem; }
.legal-content h2 { font-size: 1.3rem; margin: 2.5rem 0 1rem; color: var(--gold-lt); }
.legal-content p { font-size: 0.9rem; color: var(--champagne); line-height: 1.85; margin-bottom: 1.2rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.legal-content ul li { font-size: 0.9rem; color: var(--champagne); line-height: 1.85; margin-bottom: 0.5rem; }
.legal-content a { color: var(--gold); }

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--slate);
  padding: 3rem;
  border: 1px solid rgba(201,168,76,0.15);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 0.6rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(10,14,26,0.6);
  border: 1px solid rgba(138,155,176,0.25);
  color: var(--champagne);
  padding: 0.85rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 140px; resize: vertical; }
.contact-info-list { list-style: none; }
.contact-info-list li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.contact-info-list li i {
  color: var(--gold);
  font-size: 1.1rem;
  width: 20px;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.ci-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mist); }
.ci-value { font-size: 0.9rem; color: var(--champagne); margin-top: 0.25rem; }

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ---- RESPONSIBLE GAMBLING ---- */
.rg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}
.rg-card {
  background: var(--slate);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 2rem;
  text-align: center;
}
.rg-card i { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.rg-card h3 { font-size: 1.1rem; margin-bottom: 0.8rem; }
.rg-card p { font-size: 0.85rem; color: var(--mist); line-height: 1.7; }
.rg-hotline {
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.04) 100%);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
}
.rg-hotline .hotline-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin: 0.5rem 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { gap: 3rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .dining-grid { grid-template-columns: 1fr; }
  .dining-main { height: 400px; }
  .dining-side { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dining-side-item { height: 280px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; direction: ltr; gap: 2rem; }
  .rooms-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .location-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .regulators-grid { grid-template-columns: 1fr; }
  .rg-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .img-frame img { height: 320px; }
  .img-frame::before { display: none; }
  .img-frame-badge { display: none; }
}
