/* ============================================
   MAS'TUL — Ultra Luxury Beach Bar & Grill
   Global Stylesheet — v2.0
   ============================================ */

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

/* ── CSS VARIABLES ── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dark:   #9A7230;
  --copper:      #B5651D;
  --ember:       #FF6B35;
  --night:       #12100C;
  --dark:        #1A1712;
  --charcoal:    #242018;
  --smoke:       #2E2920;
  --warm-white:  #F5EDD8;
  --cream:       #EDE0C4;
  --sand:        #D4BC8A;
  --text-light:  rgba(245,237,216,0.92);
  --text-muted:  rgba(245,237,216,0.65);
  --nav-height:  80px;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:  0.45s var(--ease);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--night);
  color: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  /* Always-on dark gradient — nav text readable over ANY video frame */
  background: linear-gradient(
    to bottom,
    rgba(8,6,4,0.72) 0%,
    rgba(8,6,4,0.38) 70%,
    rgba(8,6,4,0.00) 100%
  );
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(12,10,8,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(201,168,76,0.22);
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex-shrink: 0;
}
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 1px 12px rgba(0,0,0,0.7);
}
.nav-logo-tag {
  font-size: 0.44rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  color: rgba(245,237,216,0.78);
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.96);
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
  /* Strong shadow punches text out of any video background */
  text-shadow:
    0 1px 4px  rgba(0,0,0,0.9),
    0 2px 12px rgba(0,0,0,0.7),
    0 4px 24px rgba(0,0,0,0.5);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Reserve CTA */
.nav-reserve {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--night);
  background: var(--gold);
  padding: 11px 24px;
  border-radius: 1px;
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-reserve:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--gold-light);
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(18,16,12,0.99);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--warm-white);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold-light); }
.nav-mobile .mob-reserve {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--night);
  background: var(--gold);
  padding: 14px 36px;
  margin-top: 12px;
}

/* ============================================
   HERO — HOMEPAGE
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(1.15) saturate(1.6) hue-rotate(-8deg);
}



/* Overlay: dark left side for text legibility, NO dark bottom — let water breathe */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right,
      rgba(8,6,4,0.75) 0%,
      rgba(8,6,4,0.42) 40%,
      rgba(8,6,4,0.05) 100%
    ),
    linear-gradient(to bottom,
      rgba(8,6,4,0.28) 0%,
      rgba(8,6,4,0.0)  28%,
      rgba(8,6,4,0.0)  72%,
      rgba(8,6,4,0.18) 88%,
      rgba(8,6,4,0.22) 100%
    );
}

/* Vignette sides */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(8,6,4,0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 64px 90px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero-eyebrow {
  font-size: 0.54rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #F0D070;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  /* Multi-layer shadow — visible over bright amber sky AND dark areas */
  text-shadow:
    0 1px 3px  rgba(0,0,0,0.95),
    0 2px 10px rgba(0,0,0,0.80),
    0 4px 20px rgba(0,0,0,0.60);
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 7.5vw, 7.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  margin-bottom: 22px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55);
}
.hero-headline em {
  font-style: italic;
  color: #F0C96A;
  text-shadow: 0 2px 20px rgba(0,0,0,0.45);
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(245,237,216,0.92);
  margin-bottom: 40px;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* CTA Buttons */
.btn-gold {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--night);
  background: var(--gold);
  padding: 17px 40px;
  border: 1px solid var(--gold);
  border-radius: 1px;
  transition: all var(--transition);
  display: inline-block;
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.25);
}

.btn-outline {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(0,0,0,0.2);
  padding: 17px 40px;
  border: 1px solid rgba(245,237,216,0.65);
  border-radius: 1px;
  transition: all var(--transition);
  display: inline-block;
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  border-color: var(--warm-white);
  background: rgba(245,237,216,0.12);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  right: 56px;
  bottom: 36px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: scrollFloat 2.8s ease-in-out infinite;
}
.hero-scroll-text {
  font-size: 0.42rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}
.hero-scroll-bar {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.8), transparent);
}
@keyframes scrollFloat {
  0%, 100% { opacity: 0.45; transform: translateY(0); }
  50%       { opacity: 0.9;  transform: translateY(8px); }
}

/* ============================================
   DAY / NIGHT DUALITY SECTION (Homepage)
   ============================================ */
.duality {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  min-height: 68vh;
}

.duality-panel {
  position: relative;
  overflow: hidden;
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: flex var(--transition);
}

.duality-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: opacity var(--transition);
}

.duality-panel.day::before {
  background: linear-gradient(160deg, #4a3414 0%, #6b4a1e 35%, #4a3414 70%, #382510 100%);
}
.duality-panel.night::before {
  background: linear-gradient(160deg, #2a1f4a 0%, #3d2c6e 35%, #2e2258 70%, #1e1638 100%);
}

/* Texture overlays */
.duality-panel.day::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(180,100,30,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.duality-panel.night::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(255,107,53,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 25%, rgba(120,90,220,0.15) 0%, transparent 55%);
  pointer-events: none;
}

.duality-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3), transparent);
  position: relative;
  z-index: 2;
}

.duality-content {
  position: relative;
  z-index: 2; /* Above ::before (z:0) and ::after (z:1) */
}

.duality-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 200;
  color: rgba(245,237,216,0.07);
  position: absolute;
  top: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
}
.duality-panel.day .duality-time { left: 56px; }
.duality-panel.night .duality-time { right: 56px; text-align: right; }

.duality-tag {
  font-size: 0.48rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.duality-tag::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--gold);
}

.duality-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.duality-title em { font-style: italic; color: var(--gold-light); }

.duality-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245,237,216,0.90);
  max-width: 420px;
  margin-bottom: 32px;
}

.duality-link {
  font-size: 0.52rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: gap var(--transition), color var(--transition);
}
.duality-link::after {
  content: '→';
  transition: transform var(--transition);
}
.duality-panel:hover .duality-link { gap: 20px; color: var(--gold-light); }
.duality-panel:hover .duality-link::after { transform: translateX(4px); }

/* Duality feature list */
.duality-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.duality-features li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,237,216,0.88);
  letter-spacing: 0.02em;
  line-height: 1.4;
  padding-left: 4px;
}

/* ============================================
   SECTION SCAFFOLDING
   ============================================ */
.section-label {
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 22px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--warm-white);
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--gold-light); }

.section-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  font-weight: 300;
  line-height: 1.88;
  color: rgba(245,237,216,0.92);
}

.gold-rule {
  width: 48px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 24px 0;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: calc(var(--nav-height) + 60px) 64px 60px;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.2), transparent);
}
.page-hero .section-label  { justify-content: center; }
.page-hero .section-title  { margin-left: auto; margin-right: auto; }
.page-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(245,237,216,0.72);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   STORY / EXPERIENCE SECTION
   ============================================ */
.story {
  background: var(--dark);
  padding: 80px 64px;
}
.story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.story-left { position: sticky; top: 120px; }
.story-pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: var(--warm-white);
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin: 36px 0;
}
.story-right p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.14rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245,237,216,0.93);
  margin-bottom: 22px;
}

/* ============================================
   ETYMOLOGY
   ============================================ */
.etymology {
  background: var(--charcoal);
  padding: 72px 64px;
}
.etymology-inner { max-width: 1200px; margin: 0 auto; }
.etymology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.12);
  margin-top: 40px;
}
.etymology-card {
  background: var(--charcoal);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.etymology-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.etymology-card:hover { background: var(--smoke); }
.etymology-card:hover::before { opacity: 1; }
.ety-lang {
  font-size: 0.46rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.ety-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1;
  margin-bottom: 8px;
}
.ety-translation {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.ety-desc {
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.88;
  color: rgba(245,237,216,0.86);
}

/* ============================================
   THE SHOW — ACTS
   ============================================ */
.acts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.15);
}
.act-card {
  background: var(--smoke);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background var(--transition);
  border-top: 2px solid transparent;
}
.act-card:hover {
  background: var(--smoke);
  border-top-color: var(--gold);
}
.act-icon { font-size: 1.8rem; }
.act-badge {
  font-size: 0.44rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.act-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--warm-white);
  line-height: 1.15;
}
.act-body {
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245,237,216,0.88);
}

/* Acts — full page rows */
.show-act-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 52px 0;
  align-items: start;
}
.show-act-row:last-child { border-bottom: none; }
.act-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.1);
  line-height: 1;
}
.act-content {
  padding-left: 44px;
  border-left: 1px solid rgba(201,168,76,0.12);
}
.act-badge-full {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.46rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.18);
  background: rgba(201,168,76,0.06);
  padding: 8px 16px;
  margin-bottom: 22px;
}
.act-big-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--warm-white);
  margin-bottom: 22px;
  line-height: 1.1;
}
.act-big-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245,237,216,0.9);
  max-width: 680px;
  margin-bottom: 16px;
}

/* ============================================
   DAY EXPERIENCE SECTION
   ============================================ */
.day-experience {
  background: var(--charcoal);
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}
.day-experience::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(201,168,76,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(180,140,60,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.day-experience-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.day-experience-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.day-experience-header .section-title {
  margin-bottom: 0;
}
.day-experience-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  font-weight: 300;
  line-height: 1.88;
  color: rgba(245,237,216,0.88);
}

/* Service cards grid */
.day-services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.12);
}
.day-service-card {
  background: var(--smoke);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background var(--transition);
  border-top: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.day-service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.2), transparent);
}
.day-service-card:hover {
  background: var(--charcoal);
  border-top-color: var(--gold);
}
.day-service-icon {
  font-size: 1.9rem;
  line-height: 1;
}
.day-service-label {
  font-size: 0.44rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.day-service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--warm-white);
  line-height: 1.2;
}
.day-service-body {
  font-size: 0.7rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245,237,216,0.82);
  flex: 1;
}

/* ============================================
   MID-WEEK SESSIONS
   ============================================ */
.midweek { background: var(--charcoal); padding: 72px 64px; }
.midweek-inner { max-width: 1200px; margin: 0 auto; }
.midweek-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 40px;
  align-items: start;
}
.midweek-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245,237,216,0.9);
  margin-bottom: 20px;
}
.sessions-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(201,168,76,0.15);
}
.session-card {
  background: var(--smoke);
  padding: 28px 32px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: background var(--transition);
}
.session-card:hover { background: #3a3228; }
.session-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.session-label {
  font-size: 0.46rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.session-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 7px;
}
.session-body {
  font-size: 0.70rem;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(245,237,216,0.86);
}

/* ============================================
   HOURS BANNER
   ============================================ */
.hours-banner {
  background: var(--smoke);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 56px 64px;
}
.hours-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 160px 1px 1fr 1px 160px;
  align-items: center;
  gap: 60px;
}
.hours-block { text-align: center; }
.hours-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.hours-label {
  font-size: 0.48rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.78);
}
.hours-vr {
  height: 110px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.25), transparent);
}
.hours-schedule { display: flex; flex-direction: column; gap: 14px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.hours-day {
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.82);
  min-width: 110px;
}
.hours-event {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--warm-white);
  text-align: right;
}
.hours-event.fire { color: var(--gold-light); }

/* ============================================
   BIG QUOTE
   ============================================ */
.quote-section {
  background: var(--dark);
  padding: 80px 64px;
  text-align: center;
}
.quote-section-inner { max-width: 820px; margin: 0 auto; position: relative; }
.big-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: var(--warm-white);
  position: relative;
}
.open-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 9rem;
  line-height: 0;
  color: var(--gold-dark);
  opacity: 0.4;
  position: absolute;
  top: 36px; left: -20px;
  pointer-events: none;
  user-select: none;
}
.quote-attr {
  font-size: 0.5rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.quote-attr::before, .quote-attr::after {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--gold-dark);
}

/* ============================================
   DINING PAGE
   ============================================ */
.dining-lead {
  background: var(--dark);
  padding: 72px 64px;
}
.dining-lead-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.featured-cocktail {
  background: var(--charcoal);
  padding: 44px;
  position: relative;
}
.featured-cocktail::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  border-right: 1px solid rgba(201,168,76,0.18);
  border-bottom: 1px solid rgba(201,168,76,0.18);
}
.cocktail-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.cocktail-ingredients {
  font-size: 0.54rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.78);
  margin-bottom: 18px;
}
.cocktail-story {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,237,216,0.9);
}

/* Menu tabs */
.menu-section { background: var(--night); padding: 72px 64px; }
.menu-section-inner { max-width: 1200px; margin: 0 auto; }
.menu-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.menu-tab {
  font-size: 0.52rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.72);
  padding: 14px 26px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition);
  cursor: pointer;
}
.menu-tab.active, .menu-tab:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(201,168,76,0.15);
}
.menu-item {
  background: var(--dark);
  padding: 26px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  transition: background var(--transition);
}
.menu-item:hover { background: var(--smoke); }
.menu-item-info { flex: 1; }
.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 5px;
}
.menu-item-desc {
  font-size: 0.62rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(245,237,216,0.80);
}
.menu-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
/* Dinner menu category headers — span full grid width */
.menu-category-header {
  grid-column: 1 / -1;
  padding: 28px 32px 12px;
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.18);
  display: flex;
  align-items: center;
  gap: 20px;
}
.menu-category-header:first-child { border-top: none; }
.menu-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
.menu-category-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(201,168,76,0.35), transparent);
}
.menu-category-note {
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(245,237,216,0.55);
  font-style: italic;
  grid-column: 1 / -1;
  background: var(--dark);
  padding: 0 32px 20px;
}

/* ============================================
   PAVILION REVEAL — Day & Night Concept Images
   ============================================ */

/* ── Day/Night Split Reveal (index.html) ── */
.pavilion-reveal {
  display: grid;
  grid-template-columns: 1fr 4px 1fr;
  min-height: 52vh;
  position: relative;
  overflow: hidden;
}
.pavilion-reveal-panel {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.pavilion-reveal-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.pavilion-reveal-panel:hover img { transform: scale(1.04); }
.pavilion-reveal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(8,6,4,0.82) 0%,
    rgba(8,6,4,0.28) 50%,
    rgba(8,6,4,0.0)  100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 40px;
  transition: background 0.5s ease;
}
.pavilion-reveal-panel:hover .pavilion-reveal-overlay {
  background: linear-gradient(to top,
    rgba(8,6,4,0.92) 0%,
    rgba(8,6,4,0.38) 55%,
    rgba(8,6,4,0.05) 100%
  );
}
.pavilion-reveal-tag {
  font-size: 0.48rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.pavilion-reveal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}
.pavilion-reveal-title em { color: var(--gold-light); font-style: italic; }
.pavilion-reveal-body {
  font-size: 0.62rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,237,216,0.82);
  max-width: 360px;
  margin-bottom: 18px;
}
.pavilion-reveal-divider {
  width: 4px;
  background: linear-gradient(to bottom,
    transparent,
    var(--gold) 30%,
    var(--gold) 70%,
    transparent
  );
  z-index: 2;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .pavilion-reveal { grid-template-columns: 1fr; grid-template-rows: 1fr 4px 1fr; }
  .pavilion-reveal-divider { width: 100%; height: 4px;
    background: linear-gradient(to right, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  }
  .pavilion-reveal-panel { min-height: 50vw; }
}

/* ============================================
   RESERVE PAGE
   ============================================ */
.reserve-tiers {
  background: var(--dark);
  padding: 72px 64px;
}
.reserve-tiers-inner { max-width: 1100px; margin: 0 auto; }
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.18);
  margin-top: 44px;
}
.tier-card {
  background: var(--charcoal);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: background var(--transition);
}
.tier-card.featured {
  background: var(--smoke);
}
.tier-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.tier-card:hover { background: var(--smoke); }
.tier-icon { font-size: 2rem; margin-bottom: 4px; }
.tier-label {
  font-size: 0.46rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
}
.tier-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.1;
}
.tier-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,237,216,0.72);
  flex: 1;
}
.tier-cta {
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--night);
  background: var(--gold);
  padding: 14px 0;
  text-align: center;
  transition: all var(--transition);
  display: block;
  margin-top: 8px;
}
.tier-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.tier-cta.outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
}
.tier-cta.outline:hover {
  background: rgba(201,168,76,0.08);
  color: var(--gold-light);
  border-color: var(--gold);
}

/* Reserve form */
.reserve-form-section { background: var(--charcoal); padding: 72px 64px; }
.reserve-form-inner {
  max-width: 680px;
  margin: 0 auto;
}
.form-group { margin-bottom: 28px; }
.form-label {
  display: block;
  font-size: 0.48rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--warm-white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  padding: 14px 18px;
  border-radius: 1px;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(201,168,76,0.5);
}
.form-input::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { cursor: pointer; }
.form-select option { background: var(--dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-submit {
  width: 100%;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--night);
  background: var(--gold);
  border: none;
  padding: 18px;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.form-submit:disabled {
  cursor: wait;
  opacity: 0.82;
  transform: none;
}
.form-status {
  min-height: 1.4em;
  margin-top: 18px;
  color: var(--gold-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-align: center;
}
.form-status.error { color: #f2a99c; }
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-section { background: var(--dark); padding: 72px 64px; }
.gallery-inner { max-width: 1300px; margin: 0 auto; }
/* Gallery filter and grid styles are defined inline in gallery.html */

/* ============================================
   LOCATION PAGE
   ============================================ */
.location-section { background: var(--dark); padding: 72px 64px; }
.location-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.info-block { margin-bottom: 44px; }
.info-block:last-child { margin-bottom: 0; }
.info-block-title {
  font-size: 0.46rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-block-title::before {
  content: '';
  width: 14px; height: 1px;
  background: var(--gold);
}
.info-block-content {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245,237,216,0.9);
}
.info-block-content strong {
  color: var(--warm-white);
  font-weight: 400;
}
.map-embed {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.12);
}
.map-embed iframe {
  width: 100%;
  height: 420px;
  border: none;
  filter: grayscale(70%) contrast(1.05) brightness(0.65) sepia(20%);
}
.map-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,6,4,0.95), transparent);
  padding: 24px 24px 20px;
}
.map-label-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold-light);
}
.map-label-address {
  font-size: 0.52rem;
  letter-spacing: 0.15em;
  color: rgba(245,237,216,0.80);
  margin-top: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--night);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 64px 64px 36px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.footer-brand-sub {
  font-size: 0.46rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.footer-brand-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,237,216,0.72);
  max-width: 270px;
}
.footer-col-title {
  font-size: 0.46rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col ul li a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245,237,216,0.75);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 0.46rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.footer-isla {
  font-size: 0.46rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  transition: color var(--transition);
}
.footer-isla:hover { color: var(--gold-light); }

/* ============================================
   LOCATION STRIP (homepage)
   ============================================ */
.location-strip {
  background: var(--smoke);
  border-top: 1px solid rgba(201,168,76,0.18);
  padding: 44px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.loc-item { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.loc-icon { font-size: 1.3rem; }
.loc-label { font-size: 0.44rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.loc-value { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; font-weight: 300; color: var(--warm-white); }

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

.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}
.fade-in.visible { opacity: 1; }

/* ============================================
   PILLAR ROWS — The Experience page
   ============================================ */
.pillar-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ============================================
   GLAMPING CALLOUT — Location page
   ============================================ */
.glamping-callout-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .story-inner              { grid-template-columns: 1fr; gap: 56px; }
  .story-left               { position: static; }
  .etymology-grid           { grid-template-columns: 1fr 1fr; }
  .acts-grid                { grid-template-columns: 1fr 1fr; }
  .tiers-grid               { grid-template-columns: 1fr; gap: 1px; }
  .footer-top               { grid-template-columns: 1fr 1fr; }
  .hours-inner              { grid-template-columns: 1fr; gap: 40px; }
  .hours-vr                 { width: 60px; height: 1px; margin: 0 auto; }
  .dining-lead-inner        { grid-template-columns: 1fr; }
  .location-inner           { grid-template-columns: 1fr; }
  .midweek-grid             { grid-template-columns: 1fr; }
  .day-services-grid        { grid-template-columns: 1fr 1fr 1fr; }
  .day-experience-header    { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  .nav { padding: 0 20px; }
  .nav-links, .nav-reserve { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content         { padding: 0 24px 64px; }
  .hero-scroll          { display: none; }
  .duality              { grid-template-columns: 1fr; }
  .duality-divider      { width: 100%; height: 1px; }
  .duality-panel        { padding: 56px 28px; min-height: 44vh; }

  .story, .etymology, .quote-section,
  .hours-banner, .location-strip,
  .show-acts-full, .midweek, .dining-lead,
  .menu-section, .reserve-tiers, .reserve-form-section,
  .gallery-section, .location-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .etymology-grid           { grid-template-columns: 1fr; }
  .acts-grid                { grid-template-columns: 1fr; }
  .show-act-row             { grid-template-columns: 1fr; }
  .act-number               { display: none; }
  .act-content              { padding-left: 0; border-left: none; padding-top: 0; }
  .footer-top               { grid-template-columns: 1fr; gap: 36px; }
  .menu-grid                { grid-template-columns: 1fr; }
  .gallery-grid             { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall, .gallery-item.wide { grid-column: auto; grid-row: auto; aspect-ratio: 4/3; }
  .form-row                 { grid-template-columns: 1fr; }
  footer                    { padding-left: 24px; padding-right: 24px; }
  .page-hero                { padding-left: 24px; padding-right: 24px; }
  .location-strip           { gap: 36px; padding: 40px 24px; }
  .open-quote               { left: 0; font-size: 5rem; }
  .day-services-grid        { grid-template-columns: 1fr 1fr; }
  .day-experience           { padding-left: 20px; padding-right: 20px; }

  /* The Experience — pillars section */
  .pillars-section          { padding: 56px 20px !important; }
  .pillar-row               { grid-template-columns: 1fr; gap: 28px; }
  .pillar-row [style*="order:1"],
  .pillar-row [style*="order: 1"] { order: 2; }
  .pillar-row [style*="order:2"],
  .pillar-row [style*="order: 2"] { order: 1; }

  /* Location — Isla Glamping callout */
  .glamping-callout-inner   { grid-template-columns: 1fr; gap: 28px; }

  /* ── Global inline-padding rescue ──
     Many sections across pages use inline style="padding:XX 64px"
     This forces horizontal padding to be safe on mobile for any direct
     children of <body> that carry inline left/right padding of 64px */
  [style*="padding:64px 64px"],
  [style*="padding: 64px 64px"],
  [style*="padding:56px 64px"],
  [style*="padding: 56px 64px"],
  [style*="padding:60px 64px"],
  [style*="padding: 60px 64px"],
  [style*="padding:36px 64px"],
  [style*="padding: 36px 64px"] {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Preserve gallery.html inline padding override */
  .gallery-section[style],
  .gallery-inner { padding-left: 20px; padding-right: 20px; }

  /* Day-experience page section padding */
  [style*="padding:64px"] { padding-left: 20px !important; padding-right: 20px !important; }
}
