/* ============================================
   AuResorts.com.au — Main Stylesheet
   Premium Australian Casino Resort Reviews
   ============================================ */

@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');

/* ── CSS Variables ── */
:root {
  --navy:       #0c1628;
  --navy-mid:   #132240;
  --navy-light: #1e3460;
  --gold:       #c9a84c;
  --gold-light: #e8c878;
  --gold-pale:  #f5e8c0;
  --cream:      #f8f4ec;
  --white:      #ffffff;
  --text-dark:  #1a1a2e;
  --text-mid:   #4a4a6a;
  --text-light: #8a8aaa;
  --border:     rgba(201,168,76,0.25);
  --shadow-sm:  0 4px 20px rgba(12,22,40,0.12);
  --shadow-md:  0 8px 40px rgba(12,22,40,0.18);
  --shadow-lg:  0 20px 60px rgba(12,22,40,0.25);
  --radius:     4px;
  --radius-lg:  12px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

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

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

img { display: block; max-width: 100%; height: auto; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 500; }
p  { font-size: 1rem; font-weight: 300; color: var(--text-mid); }

.serif-italic { font-family: 'Cormorant Garamond', serif; font-style: italic; }
.lead { font-size: 1.15rem; font-weight: 400; color: var(--text-mid); }

/* ── Layout Helpers ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.flex { display: flex; }
.grid { display: grid; }

/* ── Section Label ── */
.section-eyebrow {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ── Gold Divider ── */
.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 18px auto 28px;
}
.gold-line.left { margin-left: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.4);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--navy);
  color: var(--gold);
  border: 1.5px solid var(--navy-light);
}
.btn-dark:hover {
  background: var(--navy-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   HEADER / NAVIGATION
══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(12,22,40,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  position: relative;
}
.logo-icon svg { width: 44px; height: 44px; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}
.logo-name span { color: var(--gold); }
.logo-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 300;
  margin-top: 2px;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-age-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12,22,40,0.82) 0%,
    rgba(12,22,40,0.55) 50%,
    rgba(12,22,40,0.72) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  padding: 100px 32px 48px;
  margin-left: clamp(20px, 8vw, 120px);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
}
.hero-description {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollPulse 2.5s infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: translateY(-50%); }
  50% { opacity: 1; transform: translateY(calc(-50% + 6px)); }
}
@keyframes scrollPulseMobile {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* Stats bar */
.hero-stats {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  background: rgba(12,22,40,0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 22px 28px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ══════════════════════════════════════
   INTRO / ABOUT SECTION
══════════════════════════════════════ */
.intro-section {
  background: var(--white);
  padding: 100px 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-image {
  position: relative;
}
.intro-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}
.intro-image-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--navy);
  color: var(--gold);
  padding: 20px 24px;
  text-align: center;
  border: 1px solid var(--border);
}
.intro-image-badge .badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  display: block;
}
.intro-image-badge .badge-txt {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 4px;
}
.intro-text h2 { margin-bottom: 8px; }
.intro-text p { margin-bottom: 18px; }
.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.95rem;
}
.feature-text h4 {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 2px;
}
.feature-text p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
}

/* ══════════════════════════════════════
   FEATURED RESORTS
══════════════════════════════════════ */
.resorts-section { background: var(--cream); }
.resorts-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.resorts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Resort Card */
.resort-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.resort-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.card-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.resort-card:hover .card-image img { transform: scale(1.06); }
.card-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(12,22,40,0.82);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-radius: var(--radius);
}
.card-location {
  position: absolute;
  bottom: 16px; left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 400;
}
.card-body { padding: 28px; }
.card-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.85rem;
}
.card-body h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}
.card-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.6;
}
.card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.amenity-tag {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  border-radius: 20px;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.card-rating {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.rating-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.rating-label {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 400;
}

/* ══════════════════════════════════════
   EXPERIENCE SECTION (dark bg)
══════════════════════════════════════ */
.experience-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.experience-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.experience-section h2,
.experience-section h3 { color: var(--white); }
.experience-section p { color: rgba(255,255,255,0.7); }
.experience-section .section-eyebrow { color: var(--gold); }
.experience-section .gold-line { background: linear-gradient(90deg, var(--gold), transparent); }

.experience-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: start;
}
.exp-big-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.exp-big-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: brightness(0.85);
}
.exp-image-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  background: linear-gradient(0deg, rgba(12,22,40,0.9) 0%, transparent 100%);
}
.exp-image-caption h3 { font-size: 1.4rem; margin-bottom: 6px; }
.exp-image-caption p { font-size: 0.85rem; margin: 0; }

.exp-features-list { display: flex; flex-direction: column; gap: 24px; }
.exp-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition);
}
.exp-feature:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.35);
}
.exp-feat-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}
.exp-feat-text h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.exp-feat-text p { font-size: 0.87rem; margin: 0; line-height: 1.65; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.reviews-section { background: var(--white); }
.reviews-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  position: relative;
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 16px;
  opacity: 0.7;
}
.review-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}
.author-info h4 { font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.author-info p { font-size: 0.75rem; color: var(--text-light); margin: 0; }
.review-stars { color: var(--gold); font-size: 0.78rem; display: flex; gap: 2px; }

/* ══════════════════════════════════════
   LOCATION MAP TEASER
══════════════════════════════════════ */
.location-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}
.location-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.location-text .section-eyebrow { display: block; }
.location-map {
  background: var(--navy);
  border-radius: var(--radius-lg);
  height: 380px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--gold);
}
.map-dots {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(201,168,76,0.6) 2px, transparent 2px);
  background-size: 30px 30px;
  opacity: 0.15;
}
.map-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform var(--transition);
}
.map-pin:hover { transform: scale(1.15) translateY(-4px); }
.pin-dot {
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.3);
}
.pin-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(12,22,40,0.85);
  padding: 3px 8px;
  border-radius: 3px;
  margin-top: 6px;
  white-space: nowrap;
}
/* Pin positions (rough AU map) */
.pin-sydney { top: 52%; left: 72%; }
.pin-melbourne { top: 65%; left: 64%; }
.pin-goldcoast { top: 42%; left: 76%; }

/* ══════════════════════════════════════
   NEWSLETTER / CTA BANNER
══════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  opacity: 0.12;
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-inner h2 { color: var(--white); margin-bottom: 14px; }
.cta-inner p { color: rgba(255,255,255,0.75); margin-bottom: 36px; }
.cta-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}
.cta-form input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  outline: none;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.5); }
.cta-form input:focus { border-color: var(--gold); background: rgba(255,255,255,0.15); }
.cta-form .btn {
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 24px;
  font-size: 0.8rem;
}
.cta-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  padding: 70px 0 0;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 22px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: all var(--transition);
  text-decoration: none;
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.12);
}
.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.footer-contact p span { color: var(--gold); font-size: 0.95rem; flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold); }
.footer-age {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.age-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

/* ══════════════════════════════════════
   AGE GATE MODAL
══════════════════════════════════════ */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(12,22,40,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}
.age-gate-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.5s ease;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.age-gate-header {
  background: var(--navy);
  padding: 36px 40px 28px;
  text-align: center;
  border-bottom: 2px solid var(--gold);
}
.age-gate-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.age-gate-logo span { color: var(--gold); }
.age-gate-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 300;
}
.age-gate-body { padding: 36px 40px; text-align: center; }
.age-gate-icon {
  width: 72px; height: 72px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}
.age-gate-body h2 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.age-gate-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.65;
}
.age-gate-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.age-gate-buttons .btn { justify-content: center; }
.age-gate-note {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ══════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 8000;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 18px 24px;
  display: none;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
}
.cookie-banner.visible { display: flex; }
.cookie-text {
  flex: 1;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.75);
  min-width: 260px;
  line-height: 1.55;
}
.cookie-text a { color: var(--gold); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 22px; font-size: 0.78rem; }

/* ══════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════ */
.legal-hero {
  background: var(--navy);
  padding: 120px 0 60px;
  text-align: center;
}
.legal-hero h1 { color: var(--white); font-size: 2.6rem; }
.legal-hero .section-eyebrow { color: var(--gold); }
.legal-content {
  background: var(--white);
  padding: 70px 0 90px;
}
.legal-body {
  max-width: 820px;
  margin: 0 auto;
}
.legal-body h2 {
  font-size: 1.5rem;
  margin: 36px 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.legal-body h3 { font-size: 1.15rem; margin: 22px 0 8px; }
.legal-body p {
  margin-bottom: 16px;
  font-size: 0.93rem;
  line-height: 1.8;
}
.legal-body ul, .legal-body ol {
  margin: 12px 0 18px 24px;
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.legal-body strong { color: var(--navy); font-weight: 600; }
.legal-meta {
  background: rgba(201,168,76,0.08);
  border-left: 3px solid var(--gold);
  padding: 16px 22px;
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 36px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ══════════════════════════════════════
   HOTEL DETAIL PAGES
══════════════════════════════════════ */
.hotel-hero {
  position: relative;
  height: 65vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hotel-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hotel-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12,22,40,0.85) 0%, rgba(12,22,40,0.3) 60%, transparent 100%);
}
.hotel-hero-content {
  position: relative;
  padding: 48px 0;
  width: 100%;
}
.hotel-hero-content .container { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; }
.hotel-title-block .section-eyebrow { color: var(--gold-light); margin-bottom: 8px; }
.hotel-title-block h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); }
.hotel-quick-info {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hotel-quick-info .info-item {
  text-align: center;
  color: var(--white);
}
.hotel-quick-info .info-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hotel-quick-info .info-label {
  font-size: 0.67rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.hotel-content { background: var(--white); }
.hotel-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  padding: 70px 0 90px;
  align-items: start;
}
.hotel-main h2 { margin-bottom: 14px; }
.hotel-main p { margin-bottom: 18px; font-size: 0.95rem; line-height: 1.8; }
.hotel-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 36px 0;
}
.hotel-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform var(--transition);
}
.hotel-gallery img:hover { transform: scale(1.03); }
.hotel-gallery img:first-child {
  grid-column: span 2;
  height: 300px;
}
.hotel-sidebar { position: sticky; top: 100px; }
.hotel-info-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}
.hotel-info-card h4 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  gap: 12px;
}
.info-row:last-child { border-bottom: none; }
.info-row .lbl {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 400;
  flex-shrink: 0;
}
.info-row .val {
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 500;
  text-align: right;
}
.amenity-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.amenity-item span { color: var(--gold); font-size: 1rem; }

/* ══════════════════════════════════════
   UNDERAGED / RESTRICTED PAGE
══════════════════════════════════════ */
.restricted-page {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}
.restricted-box {
  max-width: 500px;
}
.restricted-box h1 { color: var(--white); font-size: 2rem; margin-bottom: 16px; }
.restricted-box p { color: rgba(255,255,255,0.65); margin-bottom: 28px; }
.restricted-icon {
  font-size: 4rem;
  margin-bottom: 24px;
  display: block;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .resorts-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .intro-grid { gap: 48px; }
}

@media (max-width: 900px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-image { order: -1; }
  .intro-image img { height: 360px; }
  .experience-grid { grid-template-columns: 1fr; }
  .location-inner { grid-template-columns: 1fr; }
  .hotel-layout { grid-template-columns: 1fr; }
  .hotel-sidebar { position: static; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 700px) {
  .resorts-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { margin-left: 0; padding: 100px 20px 40px; }
  .hero-stats { display: none; }
  .hero-scroll {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 32px;
    transform: translateX(-50%);
    animation-name: scrollPulseMobile;
  }
  .section { padding: 60px 0; }
  .age-gate-buttons { grid-template-columns: 1fr; }
  .intro-features { grid-template-columns: 1fr; }
  .cta-form { flex-direction: column; }
  .cta-form input { border-right: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius); }
  .cta-form .btn { border-radius: var(--radius); }
}

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ── Mobile nav ── */
.mobile-nav {
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: rgba(12,22,40,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 850;
  display: none;
  flex-direction: column;
  gap: 16px;
  transform: translateY(-100%);
  transition: transform var(--transition);
}
.mobile-nav.open { display: flex; transform: translateY(0); }
.mobile-nav .nav-link {
  font-size: 1rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.8);
}

/* Responsible Gambling badge */
.rg-banner {
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.rg-banner .rg-icon { font-size: 1.5rem; color: var(--gold); }
.rg-banner p { font-size: 0.82rem; color: var(--text-mid); margin: 0; line-height: 1.5; }
