/* ============================================================
   aussieveenues.com — Main Stylesheet
   Premium Australian Hotel & Entertainment Venue Guide
   ============================================================ */

/* ── Google Fonts alternative: self-contained font stacks ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --gold:         #C9A84C;
  --gold-light:   #E8D08A;
  --gold-dark:    #9A7B2F;
  --navy:         #0F1B2D;
  --navy-mid:     #162235;
  --cream:        #F8F4EE;
  --cream-dark:   #EDE6D9;
  --warm-white:   #FDFBF8;
  --text-dark:    #1C1C1C;
  --text-mid:     #4A4A4A;
  --text-light:   #7A7A7A;
  --border:       #DDD4C0;
  --shadow-sm:    0 2px 12px rgba(0,0,0,.07);
  --shadow-md:    0 6px 32px rgba(0,0,0,.12);
  --shadow-lg:    0 16px 56px rgba(0,0,0,.18);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', Arial, sans-serif;
  --transition:   all .3s cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background-color: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Prevent common mobile overflow from long inline content */
p, li, a, button { overflow-wrap: anywhere; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem);   font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 400; }
h4 { font-size: 1.2rem; font-weight: 600; }

p  { font-size: .975rem; color: var(--text-mid); line-height: 1.8; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .75rem;
}

.gold-rule {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1rem auto 1.5rem;
  border-radius: 2px;
}
.gold-rule.left { margin-left: 0; }

/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: 1200px;
  padding-inline: clamp(16px, 4vw, 48px);
  margin-inline: auto;
}

/* Critical children in flex/grid layouts must be shrinkable */
.grid-2 > *, .grid-3 > *, .grid-4 > *,
.about-grid > *, .dining-grid > *, .info-grid > *,
.resp-inner > *, .footer-top > * {
  min-width: 0;
}

.section-padding { padding: 96px 0; }
.section-padding-sm { padding: 64px 0; }

.text-center { text-align: center; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2.2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  box-shadow: 0 4px 18px rgba(201,168,76,.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.45);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(201,168,76,.06);
}

.btn-ghost {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.7);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: var(--transition);
}

#site-header.scrolled {
  background: rgba(15,27,45,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.nav-logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .02em;
}
.nav-logo-text span {
  color: var(--gold-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: .83rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .3s ease;
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-badge {
  background: var(--gold);
  color: var(--navy);
  font-size: .65rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: rgba(15, 27, 45, 0.92);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 6px;
}
.nav-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.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(15,27,45,.82) 0%,
    rgba(15,27,45,.55) 50%,
    rgba(15,27,45,.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.hero-eyebrow-line {
  width: 32px;
  height: 1.5px;
  background: var(--gold);
}

.hero-eyebrow-text {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-title {
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 2;
  cursor: pointer;
}

.hero-scroll-text {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.hero-scroll-icon {
  width: 30px;
  height: 48px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%   { transform: translateY(0);   opacity: 1; }
  60%  { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0);   opacity: 0; }
}

/* ── Stats Strip ── */
.stats-strip {
  background: var(--navy);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(201,168,76,.2);
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: .4rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,.25);
}

/* ============================================================
   INTRO / ABOUT
   ============================================================ */
#about {
  background: var(--warm-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-image-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-image-badge span {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .8;
  margin-top: .3rem;
  display: block;
}

.about-text > * + * { margin-top: 1.25rem; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin-top: 1.75rem;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-mid);
}

.about-feature-item svg {
  flex-shrink: 0;
  color: var(--gold);
}

/* ============================================================
   HOTEL REVIEWS — Main Section
   ============================================================ */
#hotels {
  background: var(--cream);
}

.hotels-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.hotel-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,.06);
}

.hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.hotel-card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.hotel-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.hotel-card:hover .hotel-card-image img {
  transform: scale(1.06);
}

.hotel-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 20px;
}

.hotel-card-body {
  padding: 1.75rem;
}

.hotel-card-location {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}

.hotel-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .75rem;
  line-height: 1.25;
}

.hotel-card-desc {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.hotel-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.amenity-tag {
  font-size: .72rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--cream);
  border: 1px solid var(--border);
  padding: .28rem .75rem;
  border-radius: 20px;
}

.hotel-card-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.rating-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: .9rem;
}

.rating-score {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.rating-label {
  font-size: .72rem;
  color: var(--text-light);
  margin-left: .3rem;
}

/* ── Featured Hotel (Large Card) ── */
.hotel-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 3rem;
  border: 1px solid rgba(0,0,0,.06);
  background: #fff;
}

.hotel-featured-image {
  position: relative;
  overflow: hidden;
}

.hotel-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.hotel-featured:hover .hotel-featured-image img {
  transform: scale(1.04);
}

.hotel-featured-ribbon {
  position: absolute;
  top: 1.5rem;
  left: -2.5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .4rem 3rem;
  transform: rotate(-45deg);
}

.hotel-featured-body {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hotel-featured-body > * + * {
  margin-top: 1.1rem;
}

/* ============================================================
   EXPERIENCES SECTION
   ============================================================ */
#experiences {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#experiences::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  pointer-events: none;
}

.experiences-header {
  text-align: center;
  margin-bottom: 4rem;
}

.experiences-header h2 { color: #fff; }
.experiences-header p { color: rgba(255,255,255,.65); max-width: 560px; margin: .8rem auto 0; }

.experience-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: var(--transition);
}

.experience-card:hover {
  background: rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.35);
  transform: translateY(-4px);
}

.exp-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.exp-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .65rem;
}

.exp-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.62);
  line-height: 1.75;
}

/* ============================================================
   DINING SECTION
   ============================================================ */
#dining {
  background: var(--warm-white);
}

.dining-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.dining-image-stack {
  position: relative;
  padding-bottom: 3rem;
}

.dining-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.dining-img-inset {
  position: absolute;
  bottom: 0;
  right: -2rem;
  width: 55%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 4px solid #fff;
}

.dining-content > * + * { margin-top: 1.15rem; }

.dining-feature-list {
  margin-top: 1.5rem;
}

.dining-feature-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.dining-feature-item:last-child { border-bottom: none; }

.dining-feat-icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.dining-feat-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .2rem;
}

.dining-feat-text p {
  font-size: .83rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================================
   LOCATION / SURROUNDINGS
   ============================================================ */
#location {
  background: var(--cream);
}

.location-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.loc-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.loc-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.loc-card-icon {
  font-size: 1.8rem;
  margin-bottom: .85rem;
}

.loc-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
}

.loc-card-text {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── Map placeholder ── */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 360px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  position: relative;
}

.map-placeholder-text {
  text-align: center;
  color: rgba(255,255,255,.6);
  font-family: var(--font-display);
  font-size: 1.4rem;
}

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
  background: var(--warm-white);
  padding-bottom: 0;
}

.gallery-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 260px;
  gap: 8px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item:nth-child(1) { grid-column: span 5; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 3; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-item:nth-child(6) { grid-column: span 5; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#reviews {
  background: var(--cream);
}

.reviews-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-quote {
  font-size: 3rem;
  font-family: var(--font-display);
  color: var(--gold);
  line-height: .8;
  margin-bottom: .75rem;
}

.testimonial-text {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
}

.testimonial-from {
  font-size: .78rem;
  color: var(--text-light);
}

/* ============================================================
   INFO / FAQ
   ============================================================ */
#info {
  background: var(--warm-white);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition);
}

.accordion-trigger:hover { color: var(--gold-dark); }

.accordion-icon {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: .8rem;
  color: var(--text-light);
}

.accordion-item.active .accordion-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.accordion-body p {
  padding-bottom: 1.25rem;
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── Info Side ── */
.info-side > * + * { margin-top: 1.25rem; }

.info-cta-box {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-top: 2rem;
}

.info-cta-box h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: .75rem;
}

.info-cta-box p {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  margin-bottom: 1.5rem;
}

/* ============================================================
   RESPONSIBLE SECTION (18+)
   ============================================================ */
#responsible {
  background: var(--cream);
  border-top: 3px solid var(--gold);
}

.resp-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3.5rem;
  align-items: center;
}

.resp-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.age-badge {
  width: 100px;
  height: 100px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-md);
}

.age-badge-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
}

.resp-content > * + * { margin-top: .9rem; }
.resp-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.resp-link {
  font-size: .82rem;
  font-weight: 500;
  color: var(--navy);
  padding: .4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: var(--transition);
}

.resp-link:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding-top: 60px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col-title {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: .65rem; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .75rem;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: .15rem; color: var(--gold); }

.footer-bottom {
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  transition: var(--transition);
}
.footer-legal-links a:hover { color: var(--gold-light); }

/* ============================================================
   AGE GATE MODAL
   ============================================================ */
#age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,18,32,.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

#age-gate-overlay.hidden { display: none; }

.age-gate-box {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  border-top: 4px solid var(--gold);
  animation: gateIn .4s cubic-bezier(.34,1.56,.64,1);
}

@keyframes gateIn {
  from { opacity: 0; transform: scale(.9) translateY(20px); }
  to   { opacity: 1; transform: scale(1)  translateY(0); }
}

.age-gate-icon {
  width: 72px;
  height: 72px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  border: 2.5px solid var(--gold);
}

.age-gate-box h2 {
  font-size: 1.8rem;
  margin-bottom: .65rem;
}

.age-gate-box p {
  font-size: .9rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.age-gate-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.age-gate-actions .btn {
  min-width: 160px;
  justify-content: center;
}

.age-gate-disclaimer {
  margin-top: 1.5rem;
  font-size: .76rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(740px, 94vw);
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  z-index: 8000;
  box-shadow: 0 8px 40px rgba(0,0,0,.35);
  border: 1px solid rgba(201,168,76,.25);
  animation: slideUp .4s ease;
}

#cookie-banner.hidden { display: none; }

@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(30px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.cookie-text {
  flex: 1;
  min-width: 240px;
  font-size: .83rem;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--gold);
  color: var(--navy);
  font-size: .8rem;
  font-weight: 600;
  padding: .6rem 1.4rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-accept:hover { background: var(--gold-light); }

.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,.55);
  font-size: .8rem;
  padding: .6rem 1rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,.4); }

/* ============================================================
   UTILITY ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }

/* ── Highlight bar ── */
.highlight-bar {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-md);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.highlight-bar-text h3 { color: #fff; font-size: 1.7rem; }
.highlight-bar-text p  { color: rgba(255,255,255,.6); margin-top: .5rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .grid-4, .location-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hotel-featured { grid-template-columns: 1fr; }
  .hotel-featured-image { height: 300px; }
}

@media (max-width: 900px) {
  .grid-3, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .dining-grid, .resp-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .info-grid { grid-template-columns: 1fr; }
  .dining-img-inset { display: none; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item { grid-column: span 1 !important; aspect-ratio: 4/3; }
  .about-image-badge { bottom: .5rem; right: .5rem; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: rgba(15,27,45,.98);
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(201,168,76,.2);
  }
  .nav-menu-btn { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .location-cards { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-grid { flex-direction: column; gap: 1.25rem; }
  .stat-divider { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .highlight-bar { flex-direction: column; text-align: center; }
  .age-gate-box { padding: 2.5rem 1.75rem; }
  .section-padding { padding: 64px 0; }
  .gallery-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .location-cards { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; }
}
