/* ============================================================
   grandescapees.com.au — Main Stylesheet
   Premium Australian Hotel & Entertainment Resort Guide
   ============================================================ */

/* Fonts: premium system stack — no external requests */
/* Display: Didot-style serif fallback chain */
/* Body: geometric sans fallback chain */

/* ── CSS Custom Properties ── */
:root {
  --emerald:       #1A3D2B;
  --emerald-mid:   #234D38;
  --emerald-light: #2E6347;
  --bronze:        #B5935A;
  --bronze-light:  #D4B483;
  --bronze-dark:   #8C6E3C;
  --ivory:         #FAF7F2;
  --ivory-dark:    #F0EBE0;
  --parchment:     #E8E0D0;
  --text-dark:     #1A1A1A;
  --text-mid:      #3D3D3D;
  --text-light:    #6B6B6B;
  --border:        #D9CEB8;
  --white:         #FFFFFF;
  --shadow-sm:     0 2px 14px rgba(26,61,43,.07);
  --shadow-md:     0 6px 36px rgba(26,61,43,.13);
  --shadow-lg:     0 18px 60px rgba(26,61,43,.19);
  --radius-sm:     6px;
  --radius-md:     14px;
  --radius-lg:     24px;
  --font-display:  'Didot', 'Bodoni MT', 'Playfair Display', 'Book Antiqua', Palatino, 'Times New Roman', Georgia, serif;
  --font-body:     'Gill Sans', 'Gill Sans MT', 'Optima', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --ease:          cubic-bezier(.4,0,.2,1);
  --transition:    all .3s var(--ease);
}

/* ── Reset ── */
*, *::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: var(--ivory);
  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; }
p, li, a, button { overflow-wrap: anywhere; }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.2; color: var(--emerald); }
h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(2rem,  3.5vw, 3.2rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2.1rem); font-weight: 400; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { font-size: .96rem; color: var(--text-mid); line-height: 1.82; }

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  margin-bottom: .7rem;
}

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

/* ── Layout ── */
.container { width: 100%; max-width: 1200px; padding-inline: clamp(16px, 4vw, 48px); margin-inline: auto; }
.pad { padding: 100px 0; }
.pad-sm { padding: 64px 0; }
.tc { text-align: center; }

.about-grid > *, .resort-featured > *, .resort-grid > *,
.exp-grid > *, .dining-grid > *, .loc-cards > *,
.rev-grid > *, .info-grid > *, .resp-grid > *, .footer-top > * {
  min-width: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .88rem 2.3rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .87rem; font-weight: 500;
  letter-spacing: .07em; text-transform: uppercase;
  cursor: pointer; transition: var(--transition); border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--bronze), var(--bronze-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(181,147,90,.38);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--bronze-light), var(--bronze));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(181,147,90,.48);
}
.btn-outline {
  background: transparent; color: var(--emerald);
  border: 1.5px solid var(--parchment);
}
.btn-outline:hover { border-color: var(--bronze); color: var(--bronze-dark); }
.btn-ghost {
  background: rgba(255,255,255,.14); color: #fff;
  border: 1.5px solid rgba(255,255,255,.45);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.26); border-color: rgba(255,255,255,.8); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900; transition: var(--transition);
}
#site-header.scrolled {
  background: rgba(13,40,24,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,.28);
}
.nav-wrap {
  display: flex; align-items: center;
  justify-content: space-between; height: 78px;
}

/* Logo */
.logo-link { display: flex; align-items: center; gap: .8rem; }
.logo-emblem {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--bronze), var(--bronze-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
  box-shadow: 0 3px 14px rgba(181,147,90,.4);
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600;
  color: #fff; letter-spacing: .01em;
}
.logo-name span { color: var(--bronze-light); }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 2.4rem; }
.nav-links a {
  font-size: .82rem; font-weight: 500;
  letter-spacing: .09em; text-transform: uppercase;
  color: rgba(255,255,255,.78); transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; width: 0; height: 1.5px;
  background: var(--bronze); transition: width .3s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-pill {
  background: var(--bronze); color: var(--emerald);
  font-size: .65rem; font-weight: 700;
  padding: .22rem .6rem; border-radius: 20px;
  letter-spacing: .07em; text-transform: uppercase;
}

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
#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.06); transition: transform 9s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(13,40,24,.88) 0%,
    rgba(13,40,24,.55) 55%,
    rgba(13,40,24,.25) 100%
  );
}
.hero-content {
  position: relative; z-index: 2; max-width: 720px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: .8rem; margin-bottom: 1.5rem;
}
.hero-eye-line { width: 36px; height: 1.5px; background: var(--bronze); }
.hero-eye-text {
  font-size: .73rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--bronze-light);
}
.hero-title { color: #fff; margin-bottom: 1.5rem; text-shadow: 0 2px 24px rgba(0,0,0,.32); }
.hero-title em { font-style: italic; color: var(--bronze-light); }
.hero-sub {
  font-size: 1.06rem; color: rgba(255,255,255,.8);
  margin-bottom: 2.5rem; max-width: 540px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Scroll cue */
.scroll-cue {
  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;
}
.scroll-cue-text {
  font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.48);
}
.scroll-cue-mouse {
  width: 28px; height: 46px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 18px;
  display: flex; justify-content: center; padding-top: 7px;
}
.scroll-dot {
  width: 5px; height: 5px;
  background: var(--bronze); border-radius: 50%;
  animation: scrollDot 2.2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%  { transform: translateY(0);    opacity: 1; }
  60% { transform: translateY(15px); opacity: 0; }
  100%{ transform: translateY(0);    opacity: 0; }
}

/* ── Numbers Bar ── */
.numbers-bar { background: var(--emerald); padding: 2.8rem 0; }
.numbers-inner {
  display: flex; justify-content: space-around;
  align-items: center; flex-wrap: wrap; gap: 2rem;
}
.num-item { text-align: center; }
.num-val {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 700;
  color: var(--bronze); line-height: 1;
}
.num-label {
  font-size: .74rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-top: .4rem;
}
.num-divider { width: 1px; height: 44px; background: rgba(181,147,90,.22); }

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--ivory); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--bronze); color: var(--emerald);
  padding: 1.5rem; border-radius: var(--radius-md);
  text-align: center; box-shadow: var(--shadow-md);
}
.about-badge strong {
  display: block; font-family: var(--font-display);
  font-size: 2.1rem; font-weight: 700; line-height: 1;
}
.about-badge span {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  opacity: .8; margin-top: .3rem; display: block;
}
.about-text > * + * { margin-top: 1.2rem; }
.check-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-top: 1.6rem;
}
.check-item {
  display: flex; align-items: center; gap: .55rem;
  font-size: .88rem; font-weight: 500; color: var(--text-mid);
}
.check-item svg { flex-shrink: 0; color: var(--bronze); }

/* ============================================================
   RESORT REVIEWS
   ============================================================ */
#resorts { background: var(--ivory-dark); }
.resorts-intro { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }

/* Featured resort */
.resort-featured {
  display: grid; grid-template-columns: 1.15fr 1fr;
  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;
}
.resort-featured-img { position: relative; overflow: hidden; min-height: 420px; }
.resort-featured-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease;
}
.resort-featured:hover .resort-featured-img img { transform: scale(1.04); }
.ribbon {
  position: absolute; top: 1.5rem; left: -2.5rem;
  background: var(--bronze); color: var(--emerald);
  font-size: .66rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; padding: .4rem 3.2rem;
  transform: rotate(-45deg);
}
.resort-featured-body {
  padding: 3rem 2.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.resort-featured-body > * + * { margin-top: 1.1rem; }

/* Resort card grid */
.resort-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.resort-card {
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.resort-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.rc-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.rc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.resort-card:hover .rc-img img { transform: scale(1.06); }
.rc-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--bronze); color: var(--emerald);
  font-size: .67rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .28rem .8rem; border-radius: 20px;
}
.rc-body { padding: 1.75rem; }
.rc-location {
  display: flex; align-items: center; gap: .4rem;
  font-size: .76rem; font-weight: 500; color: var(--bronze-dark);
  letter-spacing: .07em; text-transform: uppercase; margin-bottom: .6rem;
}
.rc-title {
  font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 600;
  color: var(--emerald); margin-bottom: .75rem; line-height: 1.25;
}
.rc-desc { font-size: .87rem; color: var(--text-mid); line-height: 1.78; margin-bottom: 1.2rem; }
.rc-tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.4rem; }
.rc-tag {
  font-size: .7rem; font-weight: 500; color: var(--text-mid);
  background: var(--ivory-dark); border: 1px solid var(--border);
  padding: .26rem .72rem; border-radius: 20px;
}
.rc-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem; border-top: 1px solid var(--border);
}
.stars { display: flex; gap: 3px; color: var(--bronze); font-size: .9rem; }
.score { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--emerald); }
.score-label { font-size: .7rem; color: var(--text-light); margin-left: .25rem; }

/* ============================================================
   EXPERIENCES
   ============================================================ */
#experiences {
  background: var(--emerald); position: relative; overflow: hidden;
}
#experiences::after {
  content: ''; position: absolute;
  bottom: -180px; left: -180px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(181,147,90,.07) 0%, transparent 70%);
  pointer-events: none;
}
.exp-hdr { text-align: center; margin-bottom: 4rem; }
.exp-hdr h2 { color: #fff; }
.exp-hdr p { color: rgba(255,255,255,.62); max-width: 560px; margin: .8rem auto 0; }

.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.exp-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 2.1rem 1.8rem;
  transition: var(--transition);
}
.exp-card:hover {
  background: rgba(181,147,90,.1);
  border-color: rgba(181,147,90,.38);
  transform: translateY(-4px);
}
.exp-ico {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--bronze), var(--bronze-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.3rem;
  box-shadow: 0 4px 16px rgba(181,147,90,.3);
}
.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,.6); line-height: 1.78; }

/* CTA bar */
.cta-bar {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(181,147,90,.2);
  border-radius: var(--radius-md);
  padding: 3rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
  flex-wrap: wrap; margin-top: 3.5rem;
}
.cta-bar-text h3 { color: #fff; font-size: 1.7rem; }
.cta-bar-text p  { color: rgba(255,255,255,.58); margin-top: .5rem; font-size: .9rem; }

/* ============================================================
   DINING
   ============================================================ */
#dining { background: var(--ivory); }
.dining-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 4.5rem; align-items: center;
}
.dining-imgs { position: relative; padding-bottom: 3rem; }
.dining-main {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.dining-inset {
  position: absolute; bottom: 0; right: -2rem;
  width: 54%; 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.2rem; }
.dining-list { margin-top: 1.5rem; }
.dining-item {
  display: flex; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.dining-item:last-child { border-bottom: none; }
.di-icon {
  width: 42px; height: 42px;
  background: var(--ivory-dark); 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;
}
.di-text h4 { font-size: .98rem; font-weight: 600; color: var(--emerald); margin-bottom: .2rem; }
.di-text p  { font-size: .83rem; color: var(--text-light); line-height: 1.55; }

/* ============================================================
   LOCATION
   ============================================================ */
#location { background: var(--ivory-dark); }
.loc-hdr { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.loc-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.8rem 1.5rem; text-align: center;
  border: 1px solid var(--border); transition: var(--transition);
}
.loc-card:hover { border-color: var(--bronze); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.loc-ico { font-size: 1.9rem; margin-bottom: .85rem; }
.loc-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--emerald); margin-bottom: .4rem; }
.loc-text  { font-size: .81rem; color: var(--text-light); line-height: 1.6; }

.map-box {
  border-radius: var(--radius-lg); overflow: hidden; height: 360px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-mid));
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.map-box-inner { text-align: center; color: rgba(255,255,255,.58); }
.map-box-inner .map-emoji { font-size: 3rem; margin-bottom: .75rem; }
.map-box-inner h3 { font-family: var(--font-display); font-size: 1.4rem; color: rgba(255,255,255,.8); }
.map-box-inner p  { font-size: .88rem; color: rgba(255,255,255,.4); margin-top: .5rem; font-family: var(--font-body); }

/* ============================================================
   GALLERY
   ============================================================ */
#gallery { background: var(--ivory); }
.gallery-hdr { text-align: center; margin-bottom: 2.5rem; }
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 260px;
  gap: 8px;
}
.gal-item { overflow: hidden; border-radius: 4px; cursor: pointer; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gal-item:hover img { transform: scale(1.07); }
.gal-item:nth-child(1) { grid-column: span 5; }
.gal-item:nth-child(2) { grid-column: span 4; }
.gal-item:nth-child(3) { grid-column: span 3; }
.gal-item:nth-child(4) { grid-column: span 3; }
.gal-item:nth-child(5) { grid-column: span 5; }
.gal-item:nth-child(6) { grid-column: span 4; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#reviews { background: var(--ivory-dark); }
.rev-hdr { text-align: center; margin-bottom: 3.5rem; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.rev-card {
  background: #fff; border-radius: var(--radius-md);
  padding: 2.1rem; border: 1px solid var(--border); transition: var(--transition);
}
.rev-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.rev-quote { font-family: var(--font-display); font-size: 3rem; color: var(--bronze); line-height: .8; margin-bottom: .7rem; }
.rev-text  { font-size: .9rem; color: var(--text-mid); line-height: 1.78; font-style: italic; margin-bottom: 1.5rem; }
.rev-author { display: flex; align-items: center; gap: .8rem; }
.rev-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bronze), var(--bronze-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.rev-name { font-weight: 600; font-size: .9rem; color: var(--emerald); }
.rev-from { font-size: .78rem; color: var(--text-light); }

/* ============================================================
   FAQ / INFO
   ============================================================ */
#info { background: var(--ivory); }
.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.3rem 0;
  cursor: pointer; background: none; border: none;
  text-align: left; font-family: var(--font-body);
  font-size: .95rem; font-weight: 500; color: var(--emerald);
  transition: var(--transition);
}
.accordion-trigger:hover { color: var(--bronze-dark); }
.acc-icon {
  width: 23px; height: 23px; border: 1.5px solid var(--border);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  font-size: .82rem; color: var(--text-light); transition: var(--transition);
}
.accordion-item.active .acc-icon {
  background: var(--bronze); border-color: var(--bronze);
  color: #fff; transform: rotate(45deg);
}
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.accordion-body p { padding-bottom: 1.3rem; font-size: .88rem; color: var(--text-mid); line-height: 1.78; }

.info-side > * + * { margin-top: 1.2rem; }
.contact-row {
  display: flex; align-items: center; gap: .75rem;
  font-size: .9rem; color: var(--text-mid);
}
.contact-row svg { color: var(--bronze); flex-shrink: 0; }

.info-cta {
  background: var(--emerald); border-radius: var(--radius-md);
  padding: 2.1rem; margin-top: 2rem;
}
.info-cta h3 { color: #fff; font-size: 1.55rem; margin-bottom: .7rem; }
.info-cta p  { color: rgba(255,255,255,.62); font-size: .88rem; margin-bottom: 1.5rem; }

/* ============================================================
   RESPONSIBLE
   ============================================================ */
#responsible {
  background: var(--ivory-dark);
  border-top: 3px solid var(--bronze);
}
.resp-grid {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 3.5rem; align-items: center;
}
.resp-badge-wrap { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.age-circle {
  width: 104px; height: 104px;
  background: var(--emerald); 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(--bronze); border: 3px solid var(--bronze);
  box-shadow: var(--shadow-md);
}
.age-circle-label {
  font-size: .7rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: var(--text-light);
}
.resp-text > * + * { margin-top: .9rem; }
.resp-pills { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }
.resp-pill {
  font-size: .82rem; font-weight: 500; color: var(--emerald);
  padding: .4rem 1.1rem; border: 1px solid var(--border);
  border-radius: 20px; transition: var(--transition);
}
.resp-pill:hover { border-color: var(--bronze); color: var(--bronze-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer { background: var(--emerald); color: rgba(255,255,255,.68); padding-top: 64px; }
.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-desc {
  font-size: .87rem; color: rgba(255,255,255,.52);
  line-height: 1.78; margin-top: 1rem; max-width: 280px;
}
.footer-col-ttl {
  font-size: .73rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--bronze-light); margin-bottom: 1.3rem;
}
.footer-links { display: flex; flex-direction: column; gap: .65rem; }
.footer-links a { font-size: .87rem; color: rgba(255,255,255,.52); transition: var(--transition); }
.footer-links a:hover { color: var(--bronze-light); }
.footer-contact-line {
  display: flex; gap: .65rem; align-items: flex-start;
  font-size: .87rem; color: rgba(255,255,255,.52); margin-bottom: .8rem;
}
.footer-contact-line svg { flex-shrink: 0; margin-top: .15rem; color: var(--bronze); }

.footer-bottom {
  padding: 1.8rem 0;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: .79rem; color: rgba(255,255,255,.32); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { font-size: .77rem; color: rgba(255,255,255,.38); transition: var(--transition); }
.footer-legal a:hover { color: var(--bronze-light); }

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

.age-gate-box {
  background: var(--ivory); border-radius: var(--radius-lg);
  padding: 3.8rem 3.2rem; max-width: 520px; width: 100%;
  text-align: center; box-shadow: 0 32px 90px rgba(0,0,0,.55);
  border-top: 4px solid var(--bronze);
  animation: popIn .4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popIn {
  from { opacity: 0; transform: scale(.88) translateY(24px); }
  to   { opacity: 1; transform: scale(1)  translateY(0); }
}
.gate-icon {
  width: 76px; height: 76px; background: var(--emerald);
  border-radius: 50%; border: 2.5px solid var(--bronze);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.8rem;
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 700;
  color: var(--bronze);
}
.age-gate-box h2 { font-size: 1.85rem; margin-bottom: .65rem; color: var(--emerald); }
.age-gate-box p  { font-size: .9rem; color: var(--text-mid); margin-bottom: 2rem; line-height: 1.72; }
.gate-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.gate-actions .btn { min-width: 160px; justify-content: center; }
.gate-note { margin-top: 1.5rem; font-size: .75rem; color: var(--text-light); line-height: 1.65; }
.gate-note a { color: var(--bronze-dark); text-decoration: underline; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  width: min(740px, 94vw);
  background: var(--emerald); border-radius: var(--radius-md);
  padding: 1.4rem 1.8rem;
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap; z-index: 8000;
  box-shadow: 0 8px 44px rgba(0,0,0,.38);
  border: 1px solid rgba(181,147,90,.28);
  animation: slideUp .4s ease;
}
#cookie-banner.hidden { display: none; }
@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(28px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-txt {
  flex: 1; min-width: 240px;
  font-size: .83rem; color: rgba(255,255,255,.7); line-height: 1.6;
}
.cookie-txt a { color: var(--bronze-light); text-decoration: underline; text-underline-offset: 2px; }
.cookie-btns { display: flex; gap: .75rem; flex-shrink: 0; }
.btn-ck-yes {
  background: var(--bronze); color: var(--emerald);
  font-size: .8rem; font-weight: 600;
  padding: .62rem 1.4rem; border-radius: var(--radius-sm);
  border: none; cursor: pointer; transition: var(--transition);
}
.btn-ck-yes:hover { background: var(--bronze-light); }
.btn-ck-no {
  background: transparent; color: rgba(255,255,255,.52);
  font-size: .8rem; padding: .62rem 1rem;
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--transition);
}
.btn-ck-no:hover { color: #fff; border-color: rgba(255,255,255,.45); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .loc-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .resort-featured { grid-template-columns: 1fr; }
  .resort-featured-img { height: 320px; min-height: unset; }
}
@media (max-width: 900px) {
  .resort-grid { grid-template-columns: 1fr 1fr; }
  .exp-grid    { grid-template-columns: 1fr 1fr; }
  .rev-grid    { grid-template-columns: 1fr 1fr; }
  .about-grid, .dining-grid, .resp-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .info-grid   { grid-template-columns: 1fr; }
  .dining-inset { display: none; }
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gal-item { grid-column: span 1 !important; aspect-ratio: 4/3; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 78px; left: 0; right: 0;
    background: rgba(13,40,24,.98); padding: 2rem; gap: 1.5rem;
    border-top: 1px solid rgba(181,147,90,.2);
  }
  .nav-burger { display: flex; }
  .resort-grid { grid-template-columns: 1fr; }
  .exp-grid    { grid-template-columns: 1fr; }
  .rev-grid    { grid-template-columns: 1fr; }
  .loc-cards   { grid-template-columns: 1fr 1fr; }
  .footer-top  { grid-template-columns: 1fr; }
  .numbers-inner { flex-direction: column; gap: 1.2rem; }
  .num-divider { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-bar  { flex-direction: column; text-align: center; }
  .pad { padding: 64px 0; }
  .gallery-mosaic { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .loc-cards { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal  { justify-content: center; }
  .age-gate-box  { padding: 2.5rem 1.75rem; }
}
