/* =====================================================
   ISLA AGUADA GLAMPING CO. — Main Stylesheet
   Safari/Jungle Expedition 1930s Aesthetic
   ===================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --jungle-green:   #1a3a2a;
  --aged-gold:      #c9a84c;
  --parchment:      #faf0dc;
  --dark-mahogany:  #2c1810;
  --light-parchment:#fdf8ee;
  --gold-light:     #e8c878;
  --green-mid:      #264d38;
  --green-dark:     #0f2318;
  --text-dark:      #1a1208;
  --text-mid:       #3a2c18;

  --font-heading: 'Cinzel', serif;
  --font-body:    'Libre Baskerville', Georgia, serif;

  --nav-height: 146px;
  --section-pad: 100px 0;
  --max-width: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--parchment);
  color: var(--text-dark);
  line-height: 1.75;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =====================================================
   NAVIGATION
   ===================================================== */

.site-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--jungle-green);
  border-bottom: none;
}

/* ROW 1 — logo + brand name */
.nav-row-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  height: 80px;
  width: auto;
  border-radius: 4px;
  display: block;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--aged-gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

/* ROW 2 — all nav links perfectly centered */
.nav-row-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0;
  border: none;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  gap: 0;
  width: 100%;
}

.nav-links li {
  display: flex;
  align-items: center;
  flex-shrink: 1;
}

.nav-links li a {
  font-family: var(--font-heading);
  font-size: clamp(0.7rem, 0.9vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 240, 220, 0.82);
  padding: 0 clamp(4px, 0.5vw, 10px);
  white-space: nowrap;
  line-height: 36px;
  display: block;
  transition: color 0.25s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--aged-gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--aged-gold);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Mobile (≤ 900px) ── */
@media (max-width: 900px) {
  :root { --nav-height: 70px; }

  .site-nav { overflow: visible; }

  .nav-row-1 {
    height: 70px;
    padding: 0 16px;
  }

  .nav-logo img  { height: 52px; width: 52px; }
  .nav-logo-text { font-size: 0.82rem; letter-spacing: 0.14em; }

  /* Show hamburger */
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  /* Hide the links list — becomes a dropdown below the bar */
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
    overflow: visible;
    background-color: var(--jungle-green);
    border-top: 1px solid rgba(201, 168, 76, 0.3);
    border-bottom: 2px solid var(--aged-gold);
    padding: 8px 0;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  }

  /* Open state */
  .nav-links.open { display: flex; }

  /* Dot separators: hide on mobile */
  /* dot separators removed */

  /* Full-width list items */
  .nav-links li { width: 100%; height: auto; flex-shrink: 0; }

  /* Full-width link rows */
  .nav-links li a {
    height: auto;
    padding: 13px 24px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    display: block;
  }

  /* No underline animation on mobile */
  .nav-links li a::after { display: none; }
}

/* ── Very small screens ── */
@media (max-width: 380px) {
  .nav-logo-text { display: none; }
  .nav-logo img  { height: 32px; }
}

/* =====================================================
   GOLD DIVIDER / ORNAMENT
   ===================================================== */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin: 24px 0;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--aged-gold), transparent);
}

.gold-divider .diamond {
  width: 8px;
  height: 8px;
  background-color: var(--aged-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.section-tag {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--aged-gold);
  display: block;
  margin-bottom: 10px;
}

/* =====================================================
   PAGE WRAPPER
   ===================================================== */
.page-wrap {
  padding-top: var(--nav-height);
  min-height: 100vh;
}

/* =====================================================
   HERO SECTION (Home)
   ===================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-jungle.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero:hover .hero-bg {
  transform: scale(1.0);
}

/* Dark overlay for text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 35, 24, 0.55) 0%,
    rgba(15, 35, 24, 0.35) 40%,
    rgba(15, 35, 24, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
}

.hero-logo {
  width: 220px;
  max-width: 60vw;
  margin: 0 auto 36px;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.5));
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--parchment);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  margin-bottom: 20px;
}

.hero-coords {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1rem;
  color: var(--aged-gold);
  letter-spacing: 0.08em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  margin-bottom: 40px;
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark-mahogany);
  background-color: var(--aged-gold);
  padding: 16px 40px;
  border: 2px solid var(--aged-gold);
  transition: background 0.3s, color 0.3s;
}

.hero-cta:hover {
  background-color: transparent;
  color: var(--aged-gold);
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero-scroll span {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--aged-gold);
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--aged-gold);
  border-bottom: 2px solid var(--aged-gold);
  transform: rotate(45deg);
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50% { transform: rotate(45deg) translateY(5px); opacity: 0.5; }
}

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--parchment);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  margin-bottom: 12px;
}

.page-hero-content p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--aged-gold);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* =====================================================
   HOME — INTRO STRIP
   ===================================================== */
.intro-strip {
  background-color: var(--jungle-green);
  padding: 60px 40px;
  text-align: center;
}

.intro-strip p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--parchment);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.85;
}

/* =====================================================
   SECTION CONTAINERS
   ===================================================== */
.section {
  padding: var(--section-pad);
}

.section--dark {
  background-color: var(--jungle-green);
  color: var(--parchment);
}

.section--cream {
  background-color: var(--light-parchment);
}

.section--mahogany {
  background-color: var(--dark-mahogany);
  color: var(--parchment);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--jungle-green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
}

.section--dark .section-header h2,
.section--mahogany .section-header h2 {
  color: var(--aged-gold);
}

.section-header p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 680px;
  margin: 20px auto 0;
  line-height: 1.85;
}

.section--dark .section-header p,
.section--mahogany .section-header p {
  color: rgba(250, 240, 220, 0.85);
}

/* =====================================================
   HOME — FEATURES GRID
   ===================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--aged-gold);
}

.feature-item {
  padding: 50px 36px;
  text-align: center;
  border-right: 1px solid rgba(201, 168, 76, 0.3);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.feature-item:nth-child(3n) {
  border-right: none;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.feature-item h3 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aged-gold);
  margin-bottom: 12px;
}

.feature-item p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(250, 240, 220, 0.8);
  line-height: 1.7;
}

/* =====================================================
   HOME — PREVIEW CARDS
   ===================================================== */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.preview-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  max-height: 480px;
}

.preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.preview-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 28px;
  background: linear-gradient(
    to top,
    rgba(10, 25, 14, 0.97) 0%,
    rgba(10, 25, 14, 0.92) 50%,
    rgba(10, 25, 14, 0.55) 80%,
    transparent 100%
  );
  /* enough height so text never sits over the image without backing */
  padding-top: 60px;
}

.preview-card-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aged-gold);
  margin-bottom: 6px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}

.preview-card-overlay p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--parchment);
  font-style: italic;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.preview-card-link {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aged-gold);
  border-bottom: 1px solid var(--aged-gold);
  padding-bottom: 2px;
  transition: color 0.3s;
}

.preview-card-link:hover {
  color: var(--gold-light);
}

/* =====================================================
   VISION PAGE
   ===================================================== */
.vision-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vision-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--aged-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.25;
}

.vision-text p {
  font-size: 1rem;
  color: rgba(250, 240, 220, 0.88);
  line-height: 1.9;
  margin-bottom: 18px;
}

.vision-image {
  position: relative;
}

.vision-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border: 3px solid var(--aged-gold);
}



.vision-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.stat-box {
  background-color: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 40px 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--aged-gold);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--parchment);
}

.vision-expedition {
  margin-top: 80px;
  text-align: center;
}

.expedition-border {
  border: 1px solid var(--aged-gold);
  padding: 60px 80px;
  position: relative;
}

.expedition-border::before {
  content: '◆';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--jungle-green);
  padding: 0 16px;
  color: var(--aged-gold);
  font-size: 1rem;
}

.expedition-border h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--aged-gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.expedition-border p {
  font-size: 1rem;
  color: rgba(250, 240, 220, 0.85);
  line-height: 1.9;
  max-width: 700px;
  margin: 0 auto;
}

/* =====================================================
   ACCOMMODATIONS PAGE
   ===================================================== */
.tent-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

.tent-showcase.reverse {
  direction: rtl;
}

.tent-showcase.reverse > * {
  direction: ltr;
}

.tent-image-wrap {
  position: relative;
  overflow: hidden;
}

.tent-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tent-image-wrap:hover img {
  transform: scale(1.04);
}

.tent-image-caption {
  background-color: var(--dark-mahogany);
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aged-gold);
}

.tent-info {
  padding: 20px 0;
}

.tent-info h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--jungle-green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.25;
}

.tent-info p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  margin-top: 24px;
  color: var(--text-mid);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: inherit;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '◆';
  color: var(--aged-gold);
  font-size: 0.55rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Full-width tent image */
.tent-full {
  position: relative;
  overflow: hidden;
  margin: 60px 0 0;
}

.tent-full img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.tent-full-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 52%;
  background: linear-gradient(to right, rgba(10, 25, 14, 1) 60%, rgba(10, 25, 14, 0.92) 80%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 64px;
}

.tent-full-overlay h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--aged-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.3;
}

.tent-full-overlay p {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.85;
  font-weight: 400;
}

/* =====================================================
   AMENITIES PAGE
   ===================================================== */
.amenity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.amenity-card {
  display: flex;
  flex-direction: column;
}

.amenity-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: left center;
  border-bottom: 4px solid var(--aged-gold);
}

.amenity-card-body {
  background-color: var(--jungle-green);
  padding: 36px 32px;
  flex: 1;
}

.amenity-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aged-gold);
  margin-bottom: 14px;
}

.amenity-card-body p {
  font-size: 0.92rem;
  color: rgba(250, 240, 220, 0.85);
  line-height: 1.8;
}

/* Reception — full width */
.reception-full {
  position: relative;
  overflow: hidden;
}

.reception-full img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.reception-info {
  background-color: var(--dark-mahogany);
  padding: 60px;
}

.reception-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--aged-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.25;
}

.reception-info p {
  font-size: 1rem;
  color: rgba(250, 240, 220, 0.88);
  line-height: 1.9;
  margin-bottom: 16px;
  max-width: 820px;
}

.reception-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.rec-feature {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.rec-feature .icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}

.rec-feature h4 {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aged-gold);
  margin-bottom: 8px;
}

.rec-feature p {
  font-size: 0.82rem;
  color: rgba(250, 240, 220, 0.7);
  margin: 0;
}

/* =====================================================
   DINING & BEACH PAGE
   ===================================================== */

/* ── Cinematic full-bleed hero (replaces old duplicate image) ── */
.dining-hero {
  position: relative;
  height: 92vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.dining-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/beach-bar.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 10s ease;
}

.dining-hero:hover .dining-hero-bg {
  transform: scale(1.0);
}

.dining-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 25, 14, 0.96) 0%,
    rgba(10, 25, 14, 0.55) 45%,
    rgba(10, 25, 14, 0.15) 100%
  );
}

.dining-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px 70px;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.dining-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--parchment);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.dining-hero-content > p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(250,240,220,0.80);
  font-style: italic;
  margin-bottom: 36px;
}

/* Stats strip inside hero */
.dining-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(201,168,76,0.35);
  padding-top: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.dhs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
}

.dhs-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--aged-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.dhs-label {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,240,220,0.70);
}

.dhs-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.35);
  flex-shrink: 0;
}

.dining-info {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.dining-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--aged-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.25;
}

.dining-text p {
  font-size: 1rem;
  color: rgba(250, 240, 220, 0.88);
  line-height: 1.9;
  margin-bottom: 18px;
}

.dining-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.dining-spec-item {
  background-color: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 24px 20px;
  text-align: center;
}

.dining-spec-item .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--aged-gold);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.dining-spec-item .label {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--parchment);
}

.beach-features {
  padding: 80px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.beach-features h3 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--aged-gold);
  margin-bottom: 40px;
  text-align: center;
}

.beach-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.beach-feature-item {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background-color: rgba(26, 58, 42, 0.04);
}

.beach-feature-item .icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.beach-feature-item h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--jungle-green);
  margin-bottom: 10px;
}

.beach-feature-item p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* =====================================================
   MASTER PLAN PAGE
   ===================================================== */
.plan-image-section {
  background-color: var(--dark-mahogany);
  padding: 80px 40px;
}

.plan-image-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--aged-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.plan-image-wrap {
  max-width: 1000px;
  margin: 48px auto 0;
  position: relative;
}

.plan-image-wrap img {
  width: 100%;
  border: 3px solid var(--aged-gold);
}

.plan-image-caption {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aged-gold);
  margin-top: 20px;
}

.plan-zones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.zone-card {
  padding: 48px 40px;
  text-align: center;
}

.zone-card.beach {
  background-color: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.zone-card.glamping {
  background-color: rgba(26, 58, 42, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.zone-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.zone-card h3 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aged-gold);
  margin-bottom: 12px;
}

.zone-card .dimensions {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--parchment);
  margin-bottom: 16px;
  display: block;
}

.zone-card p {
  font-size: 0.88rem;
  color: rgba(250, 240, 220, 0.75);
  line-height: 1.75;
}

.plan-highway-note {
  text-align: center;
  margin-top: 48px;
  padding: 28px 40px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.plan-highway-note p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(250, 240, 220, 0.7);
  line-height: 1.8;
}

.plan-highway-note strong {
  color: var(--aged-gold);
  font-style: normal;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background-color: var(--green-dark);
  border-top: 2px solid var(--aged-gold);
  padding: 60px 40px 36px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 70px;
  margin-bottom: 20px;
  border-radius: 50%;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(250, 240, 220, 0.65);
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aged-gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(250, 240, 220, 0.65);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--aged-gold);
}

.footer-col address {
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(250, 240, 220, 0.65);
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 240, 220, 0.4);
}

/* =====================================================
   QUOTE / PULL SECTIONS
   ===================================================== */
.pull-quote {
  background-color: var(--jungle-green);
  padding: 80px 40px;
  text-align: center;
}

.pull-quote blockquote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--parchment);
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.7;
}

.pull-quote blockquote::before,
.pull-quote blockquote::after {
  content: '';
}

.pull-quote cite {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aged-gold);
  margin-top: 28px;
  font-style: normal;
}

/* =====================================================
   UTILITY
   ===================================================== */
.text-gold { color: var(--aged-gold); }
.text-center { text-align: center; }
.mb-sm { margin-bottom: 20px; }
.mb-md { margin-bottom: 40px; }
.mb-lg { margin-bottom: 60px; }

.btn-gold {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 36px;
  background-color: var(--aged-gold);
  color: var(--dark-mahogany);
  border: 2px solid var(--aged-gold);
  transition: background 0.3s, color 0.3s;
}

.btn-gold:hover {
  background-color: transparent;
  color: var(--aged-gold);
}

.btn-outline {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 36px;
  background-color: transparent;
  color: var(--aged-gold);
  border: 2px solid var(--aged-gold);
  transition: background 0.3s, color 0.3s;
}

.btn-outline:hover {
  background-color: var(--aged-gold);
  color: var(--dark-mahogany);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .vision-intro {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .vision-image {
    order: -1;
  }

  .vision-image img {
    height: 360px;
  }

  .tent-showcase,
  .tent-showcase.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }

  .tent-image-wrap img {
    height: 380px;
  }

  .amenity-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dining-hero {
    height: 80vh;
  }

  .dhs-item {
    padding: 0 22px;
  }

  .dining-info {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .reception-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .beach-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-zones {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    border-right: none;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 60px 0;
    /* nav-height already set to 70px in the 900px block above */
  }

  .container {
    padding: 0 20px;
  }

  .page-hero {
    height: 280px;
  }

  .vision-stats {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .expedition-border {
    padding: 40px 24px;
  }

  .tent-full img {
    height: 400px;
  }

  .tent-full-overlay {
    width: 100%;
    padding: 32px 24px;
    background: linear-gradient(to top, rgba(26, 58, 42, 0.92) 60%, transparent);
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    flex-direction: column;
    justify-content: flex-end;
  }

  .dining-hero {
    height: 70vh;
    min-height: 480px;
  }

  .dining-hero-content {
    padding: 0 20px 48px;
  }

  .dining-hero-content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .dhs-item {
    padding: 0 18px;
  }

  .dhs-number {
    font-size: 1.5rem;
  }

  .dining-info {
    padding: 48px 20px;
  }

  .beach-features {
    padding: 48px 20px;
  }

  .beach-feature-grid {
    grid-template-columns: 1fr;
  }

  .reception-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .reception-info {
    padding: 40px 24px;
  }

  .plan-image-section {
    padding: 48px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .vision-expedition {
    margin-top: 48px;
  }

  .dining-specs {
    grid-template-columns: 1fr 1fr;
  }

  .intro-strip {
    padding: 40px 20px;
  }

  .pull-quote {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    width: 160px;
  }

  .reception-features {
    grid-template-columns: 1fr;
  }

  .dining-specs {
    grid-template-columns: 1fr;
  }

  .vision-stats {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   GLOBAL OVERFLOW & SCROLL LOCK
   Prevents any element from pushing the page wider
   than the viewport and causing horizontal scroll.
   ===================================================== */
*, *::before, *::after {
  max-width: 100%;
}

/* Images and media never overflow — iframe excluded so hurricane viewport works */
img, video, embed, object {
  max-width: 100%;
  height: auto;
}

/* =====================================================
   INLINE GRID RESPONSIVE HELPERS
   These utility classes / attribute selectors target
   all the inline-style grids used throughout the pages
   and collapse them to single columns on small screens.
   ===================================================== */

/* ── Tablet (≤ 900px) ── */
@media (max-width: 900px) {

  /* Staff split-panels (index, amenities, nature, dining, wellness, masterplan) */
  section[style*="grid-template-columns:1fr 1fr"],
  section[style*="grid-template-columns: 1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    min-height: auto !important;
  }

  /* Any div with a 2-col inline grid */
  div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns:1fr 1fr"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* 2-col with unequal widths */
  div[style*="grid-template-columns: 1.2fr 1fr"],
  div[style*="grid-template-columns: 1.1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1.2fr"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* 3-col inline grids → 1 col */
  div[style*="grid-template-columns: 1fr 1fr 1fr"],
  div[style*="grid-template-columns: repeat(3, 1fr)"],
  div[style*="grid-template-columns:repeat(3,1fr)"] {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }

  /* 4-col inline grids → 2 col */
  div[style*="grid-template-columns: repeat(4, 1fr)"],
  div[style*="grid-template-columns:repeat(4,1fr)"] {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }

  /* contact.html sidebar — fixed px column → 1 col */
  .contact-wrap {
    grid-template-columns: 1fr !important;
  }

  /* Reassurance strip in contact.html */
  div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* masterplan peninsula diagram */
  div[style*="grid-template-columns: 1fr 60px 1fr"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  /* General large gaps → tighter on tablet */
  div[style*="gap: 80px"],
  div[style*="gap: 60px"] {
    gap: 32px !important;
  }
}

/* ── Mobile (≤ 600px) ── */
@media (max-width: 600px) {

  /* All multi-column inline grids collapse to 1 */
  div[style*="grid-template-columns"],
  section[style*="grid-template-columns"] {
    display: flex !important;
    flex-direction: column !important;
    min-height: auto !important;
    gap: 0 !important;
  }

  /* Restore gap as margin so items don't touch */
  div[style*="grid-template-columns"] > *,
  section[style*="grid-template-columns"] > * {
    margin-bottom: 2px;
  }

  /* Contact wrap */
  .contact-wrap {
    grid-template-columns: 1fr !important;
  }

  /* Contact reassurance strip → 2 col even on mobile */
  div[style*="grid-template-columns:repeat(4,1fr)"] {
    display: grid !important;
    flex-direction: unset !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2px !important;
  }

  /* Dining min-width pills (opening hours) */
  div[style*="min-width: 160px"] {
    min-width: 0 !important;
    width: 100% !important;
  }

  /* Wellness package pill min-width */
  div[style*="min-width: 150px"] {
    min-width: 0 !important;
  }

  /* Full-bleed staff image panels */
  .staff-split {
    flex-direction: column !important;
  }

  .staff-split > div,
  .staff-split > figure {
    width: 100% !important;
    min-height: 280px;
  }

  /* Hero text tighten */
  .page-hero-content h1 {
    font-size: clamp(1.4rem, 7vw, 2.2rem);
  }

  /* Sections: reduce padding */
  .section {
    padding: 48px 0;
  }

  .container {
    padding: 0 16px;
  }

  /* Pull quote */
  .pull-quote {
    padding: 48px 16px;
  }

  /* Footer tighten */
  .site-footer {
    padding: 40px 16px 28px;
  }

  /* Reception info */
  .reception-info {
    padding: 32px 16px;
  }

  /* Expedition border */
  .expedition-border {
    padding: 32px 16px;
  }
}
