/* ── VARIABLES ── */
:root {
  --navy:   #0a1628;
  --navy2:  #0e1f3a;
  --ocean:  #1A6FD4;
  --gold:   #C8A84B;
  --gold-l: #e8c87a;
  --white:  #ffffff;
  --tl: rgba(255,255,255,0.75);
  --tm: rgba(255,255,255,0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--navy); color: var(--white); font-family: 'DM Sans', sans-serif; overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(10,22,40,0.97);
  border-bottom: 1px solid rgba(200,168,75,0.2);
  transition: background 0.3s;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: var(--gold);
  text-decoration: none; flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 1.2rem; }
.nav-links a {
  font-size: 0.7rem; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--tl);
  text-decoration: none; white-space: nowrap; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  padding: 0.45rem 1rem; border-radius: 2px; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-l) !important; }

/* Hamburger (legacy) + What To Do–style nav-hamburger */
.hamburger,
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span,
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--gold); border-radius: 2px; }

/* Mobile menu (legacy + What To Do–style) */
.mobile-nav,
.nav-mobile {
  display: none; position: fixed; top: 56px; left: 0; right: 0;
  background: rgba(10,22,40,.98);
  border-bottom: 1px solid rgba(200,168,75,.15);
  padding: 1rem 2rem; flex-direction: column; gap: .8rem; z-index: 99;
}
.mobile-nav a,
.nav-mobile a {
  font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  padding: .5rem 0; border-bottom: none;
}
.mobile-nav a:last-child,
.nav-mobile a:last-child { border: none; }
.mobile-nav a:hover,
.nav-mobile a:hover { color: var(--gold-l); }
.mobile-nav .nav-cta,
.nav-mobile .nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  text-align: center; padding: .7rem; border-radius: 2px; border: none !important;
}
.mobile-nav.open,
.nav-mobile.open { display: flex; }

/* ── SHARED ── */
.save-strip {
  margin-top: 57px;
  background: linear-gradient(135deg, var(--ocean), #0d5ab0);
  text-align: center; padding: 0.55rem 1rem;
  font-size: 0.78rem; letter-spacing: 0.08em;
}
.save-strip strong { color: var(--gold-l); }

.btn-gold {
  background: var(--gold); color: var(--navy);
  padding: 0.85rem 2rem; border-radius: 2px; border: none;
  font-family: 'DM Sans', sans-serif; font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover { background: var(--gold-l); transform: translateY(-1px); }

.btn-outline {
  border: 1px solid rgba(200,168,75,0.5); color: var(--gold);
  padding: 0.85rem 2rem; border-radius: 2px;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; display: inline-block; background: transparent;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }

.sec { padding: 5rem 3rem; }
.sec-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: block; }
.sec-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,3.5vw,3rem); font-weight: 300; line-height: 1.2; margin-bottom: 1.4rem; }
.sec-desc { font-size: 0.95rem; color: var(--tl); line-height: 1.8; max-width: 600px; font-weight: 300; }

/* ── HERO ── */
@keyframes heroImgFade {
  from { opacity: 0; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes heroBodyFade {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero { position: relative; min-height: 92vh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.hero img {
  position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%;
  animation: heroImgFade 2.4s ease-out forwards;
}
.hero-ov { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,22,40,.1) 0%, rgba(10,22,40,.3) 40%, rgba(10,22,40,.8) 75%, rgba(10,22,40,.97) 100%); }
.hero-body {
  position: relative; z-index: 2; padding: 0 3rem 4rem; max-width: 820px;
  opacity: 0;
  animation: heroBodyFade 7s ease-out 1.2s forwards;
}
.eyebrow { font-size: 0.73rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; display: block; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem,5vw,4.5rem); font-weight: 300; line-height: 1.1; margin-bottom: 1.4rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 1rem; color: var(--tl); line-height: 1.7; max-width: 560px; margin-bottom: 2.5rem; font-weight: 300; }
.stats { display: flex; gap: 2.5rem; margin-bottom: 2.5rem; border-top: 1px solid rgba(200,168,75,.2); padding-top: 1.4rem; }
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-v { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; line-height: 1; color: var(--gold); }
.stat-l { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--tm); }
.hero-btns { display: flex; gap: 1rem; align-items: center; }

/* ── GALLERY ── */
.gw { max-width: 1100px; margin: 0 auto; }
.gfull { position: relative; width: 100%; height: 500px; border-radius: 3px; overflow: hidden; cursor: pointer; margin-bottom: 0.7rem; }
.gfull img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; display: block; }
.gfull:hover img { transform: scale(1.02); }
.grow { display: grid; gap: 0.7rem; margin-bottom: 0.7rem; }
.g2  { grid-template-columns: 1fr 1fr; }
.g3  { grid-template-columns: repeat(3,1fr); }
.g4  { grid-template-columns: repeat(4,1fr); }
.g2L { grid-template-columns: 3fr 2fr; }
.gc { border-radius: 3px; overflow: hidden; position: relative; cursor: pointer; }
.gc.ht { height: 300px; }
.gc.hm { height: 210px; }
.gc img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s; }
.gc:hover img { transform: scale(1.04); }
.glbl {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,22,40,.85));
  padding: 1.4rem 0.8rem 0.55rem;
  font-size: 0.63rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.65);
}
.gfull .glbl { padding: 2.5rem 1.2rem 0.9rem; font-size: 0.7rem; }

/* ── LIGHTBOX ── */
.lb { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(5,10,20,.96); align-items: center; justify-content: center; }
.lb.on { display: flex; }
.lb img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 2px; }
.lb-x { position: absolute; top: 1.5rem; right: 2rem; font-size: 2.5rem; color: rgba(255,255,255,.55); cursor: pointer; line-height: 1; z-index: 1000; }
.lb-x:hover { color: #fff; }
.lb-p, .lb-n { position: absolute; top: 50%; transform: translateY(-50%); font-size: 3rem; color: rgba(255,255,255,.4); cursor: pointer; padding: 1rem; z-index: 1000; line-height: 1; user-select: none; }
.lb-p:hover, .lb-n:hover { color: #fff; }
.lb-p { left: 0.3rem; }
.lb-n { right: 0.3rem; }
.lb-cap { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.4); white-space: nowrap; }
.lb-num { position: absolute; top: 1.5rem; left: 2rem; font-size: 0.73rem; color: rgba(255,255,255,.3); }

/* ── BOOKING ── */
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; max-width: 1100px; margin: 0 auto; }
.steps { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.4rem; }
.step { display: flex; gap: 1.1rem; align-items: flex-start; }
.step-n { min-width: 36px; height: 36px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--gold); flex-shrink: 0; }
.step-t h4 { font-size: 0.83rem; font-weight: 500; margin-bottom: 0.25rem; }
.step-t p { font-size: 0.78rem; color: var(--tm); line-height: 1.6; }
.bform { display: flex; flex-direction: column; gap: 1rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 0.35rem; }
.fg label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tm); }
.fg input, .fg select, .fg textarea { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 2px; color: var(--white); padding: 0.72rem 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; transition: border-color 0.2s; outline: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg select option { background: var(--navy2); }
.fg textarea { resize: vertical; min-height: 90px; }
.price-box { background: rgba(200,168,75,.07); border: 1px solid rgba(200,168,75,.2); border-radius: 2px; padding: 1.1rem; margin: 0.4rem 0; }
.pr { display: flex; justify-content: space-between; align-items: center; font-size: 0.83rem; margin-bottom: 0.35rem; }
.pr.tot { border-top: 1px solid rgba(200,168,75,.2); padding-top: 0.55rem; margin-top: 0.35rem; font-weight: 500; }
.pr.sav { color: #5cc47a; font-size: 0.76rem; }
.pv { color: var(--gold); }
.agr { font-size: 0.76rem; color: var(--tm); line-height: 1.6; }
.agr-row { display: flex; gap: 0.6rem; align-items: flex-start; }
.agr-row input { margin-top: 0.15rem; accent-color: var(--gold); }
.cal-note { font-size: 0.78rem; color: var(--tm); margin-top: 1rem; line-height: 1.6; padding: 0.75rem; border: 1px solid rgba(255,255,255,.06); border-radius: 2px; }

/* ── BEDROOMS ── */
.rooms { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin-top: 2.5rem; max-width: 1100px; }
.room { border: 1px solid rgba(200,168,75,.15); border-radius: 3px; overflow: hidden; background: rgba(255,255,255,.02); transition: border-color 0.2s; }
.room:hover { border-color: rgba(200,168,75,.35); }
.room-img { height: 215px; overflow: hidden; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.room:hover .room-img img { transform: scale(1.05); }
.room-body { padding: 1.4rem; }
.room-name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 400; margin-bottom: 0.35rem; }
.room-tag { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.9rem; }
.room-feats { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
.room-feats li { font-size: 0.8rem; color: var(--tl); display: flex; align-items: center; gap: 0.45rem; }
.room-feats li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── AMENITIES ── */
.amen { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2.4rem; max-width: 900px; }
.am { display: flex; align-items: center; gap: 0.75rem; padding: 0.95rem 1.1rem; border-radius: 2px; border: 1px solid rgba(255,255,255,.06); font-size: 0.83rem; color: var(--tl); background: rgba(255,255,255,.02); }

/* ── WHY DIRECT ── */
.why { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 2.4rem; max-width: 900px; }
.wc { text-align: center; padding: 2.4rem 1.4rem; }
.wn { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 0.45rem; }
.wt { font-size: 0.83rem; font-weight: 500; margin-bottom: 0.45rem; }
.wd { font-size: 0.78rem; color: var(--tm); line-height: 1.7; }

/* ── LOCATION ── */
.loc { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 900px; margin-top: 2.4rem; align-items: start; }
.dist-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.di { display: flex; justify-content: space-between; align-items: center; padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 0.83rem; }
.di .p { color: var(--tl); }
.di .d { color: var(--gold); font-size: 0.78rem; }
.rests { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.5rem; }
.rest { padding: 0.75rem 0.95rem; border: 1px solid rgba(255,255,255,.06); border-radius: 2px; }
.rest-n { font-size: 0.83rem; font-weight: 500; margin-bottom: 0.2rem; }
.rest-d { font-size: 0.73rem; color: var(--tm); }

/* ── REVIEWS ── */
.revs { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.4rem; margin-top: 2.4rem; max-width: 1100px; }
.rev { padding: 1.7rem; border: 1px solid rgba(255,255,255,.07); border-radius: 3px; background: rgba(255,255,255,.02); }
.rev-stars { color: var(--gold); font-size: 0.78rem; margin-bottom: 0.75rem; }
.rev-text { font-size: 0.86rem; color: var(--tl); line-height: 1.7; font-style: italic; margin-bottom: 0.9rem; }
.rev-auth { font-size: 0.72rem; color: var(--tm); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── RULES ── */
.rules { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2rem; max-width: 900px; }
.rule { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1.1rem; border: 1px solid rgba(255,255,255,.06); border-radius: 2px; }
.rule-ico { font-size: 1.15rem; margin-top: 0.1rem; opacity: 0.75; }
.rule-t { font-size: 0.8rem; color: var(--tl); line-height: 1.5; }
.rule-t strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); margin-bottom: 0.2rem; }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg,#0d1e35,#0e2a4a); text-align: center; padding: 5rem 3rem; border-top: 1px solid rgba(200,168,75,.15); border-bottom: 1px solid rgba(200,168,75,.15); }
.cta-band h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.7rem; font-weight: 300; margin-bottom: 0.9rem; }
.cta-band p { font-size: 0.93rem; color: var(--tl); margin-bottom: 2rem; font-weight: 300; }

/* ── FOOTER ── */
footer { background: #050e1c; padding: 2.8rem; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.06); flex-wrap: wrap; gap: 1.4rem; }
.flogo { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--gold); }
.finfo { font-size: 0.75rem; color: var(--tm); text-align: center; line-height: 1.8; }
.flinks { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.flinks a { font-size: 0.72rem; color: var(--tm); text-decoration: none; text-transform: uppercase; letter-spacing: 0.1em; }
.flinks a:hover { color: var(--gold); }

/* ── WHAT-TO-DO PAGE ── */
.hub-hero { position: relative; min-height: 60vh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; margin-top: 57px; }
.hub-hero img { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }
.hub-hero-ov { position: absolute; inset: 0; background: linear-gradient(to bottom,rgba(10,22,40,.1) 0%,rgba(10,22,40,.6) 60%,rgba(10,22,40,.97) 100%); }
.hub-hero-body { position: relative; z-index: 2; padding: 0 3rem 4rem; max-width: 800px; }
/* Wrapper for destination cards so they're visible and centered */
.cards-section-wrap { max-width: 1100px; margin: 0 auto; }
.dest-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 2rem; }
.dest-card { border: 1px solid rgba(200,168,75,.15); border-radius: 4px; overflow: hidden; background: rgba(255,255,255,.02); text-decoration: none; color: var(--white); transition: border-color 0.2s, transform 0.2s; display: block; min-height: 1px; }
.dest-card:hover { border-color: rgba(200,168,75,.5); transform: translateY(-3px); }
.dest-card-img { overflow: hidden; position: relative; background: var(--navy2); }
.dest-card-img img { width: 100%; height: auto; display: block; vertical-align: top; transition: transform 0.6s; }
.dest-card:hover .dest-card-img img { transform: scale(1.05); }
.dest-tag { position: absolute; top: 1rem; left: 1rem; background: var(--gold); color: var(--navy); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 2px; }
.dest-body { padding: 1.8rem; }
.dest-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; margin-bottom: 0.6rem; }
.dest-body p { font-size: 0.85rem; color: var(--tl); line-height: 1.7; margin-bottom: 1.2rem; }
.dest-link { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); }
.dest-link::after { content: ' →'; }

/* ── DESTINATION PAGES ── */
.page-hero { position: relative; min-height: 68vh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; margin-top: 57px; }
.page-hero img { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }
.page-hero-ov { position: absolute; inset: 0; background: linear-gradient(to bottom,rgba(10,22,40,.1) 0%,rgba(10,22,40,.55) 50%,rgba(10,22,40,.97) 100%); }
.page-hero-body { position: relative; z-index: 2; padding: 0 3rem 4rem; max-width: 820px; }
.breadcrumb { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tm); margin-bottom: 1rem; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.article { padding: 4.5rem 3rem; max-width: 860px; margin: 0 auto; }
.article h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 300; margin: 3rem 0 1rem; line-height: 1.2; }
.article h3 { font-size: 1rem; font-weight: 500; margin: 2rem 0 0.6rem; color: #e8c87a; }
.article p { font-size: 0.96rem; color: var(--tl); line-height: 1.9; margin-bottom: 1.2rem; font-weight: 300; }
.act-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin: 1.5rem 0 2rem; }
.act-card { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: 3px; padding: 1.4rem; }
.act-card h4 { font-size: 0.85rem; font-weight: 500; color: var(--white); margin-bottom: 0.4rem; }
.act-card p { font-size: 0.8rem; color: var(--tm); line-height: 1.6; margin: 0; }
.page-stats { display: flex; gap: 3rem; padding: 2.5rem 0; border-top: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); margin: 2rem 0; flex-wrap: wrap; }
.ps-val { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--gold); line-height: 1; display: block; }
.ps-lbl { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--tm); display: block; }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--tm); text-decoration: none; margin-bottom: 2.5rem; transition: color 0.2s; }
.back-link:hover { color: var(--gold); }
.back-link::before { content: '←'; }
.inline-cta { background: rgba(200,168,75,.06); border: 1px solid rgba(200,168,75,.2); border-radius: 3px; padding: 2rem 2.5rem; margin: 2.5rem 0; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.inline-cta p { font-size: 0.9rem; color: var(--tl); line-height: 1.6; max-width: 480px; margin: 0; }

/* ── RESPONSIVE (mobile only; desktop unchanged) ── */
/* Mobile: match What To Do page header (nav + dropdown) */
@media (max-width: 860px) {
  nav {
    z-index: 100;
    padding: 1rem 2rem;
    background: rgba(10,22,40,.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200,168,75,.15);
  }
  .nav-links { display: none; }
  .hamburger,
  .nav-hamburger { display: flex; }
  .mobile-nav,
  .nav-mobile {
    top: 56px;
    background: rgba(10,22,40,.98);
    border-bottom: 1px solid rgba(200,168,75,.15);
    padding: 1rem 2rem;
    gap: .8rem;
    z-index: 99;
  }
  .mobile-nav a,
  .nav-mobile a {
    padding: .5rem 0;
    border-bottom: none;
    font-size: .8rem;
    letter-spacing: .08em;
    color: var(--gold);
  }
  .mobile-nav a:hover,
  .nav-mobile a:hover { color: var(--gold-l); }
  .mobile-nav .nav-cta,
  .nav-mobile .nav-cta {
    text-align: center;
    padding: .7rem;
    border-radius: 2px;
    color: var(--navy) !important;
    background: var(--gold) !important;
  }
}
@media (max-width: 768px) {
  body { overflow-x: hidden; word-wrap: break-word; }
  .sec { padding: 3.5rem 1.5rem; }
  .hero-body { padding: 0 1.5rem 3rem; }
  .book-grid, .rooms, .amen, .why, .loc, .revs, .rules { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  /* Mobile gallery: single column, full viewport width, taller images */
  .g2, .g3, .g4, .g2L { grid-template-columns: 1fr; }
  .gfull { height: 360px; }
  .gc.ht { height: 300px; }
  .gc.hm { height: 240px; }
  .dest-grid, .act-grid { grid-template-columns: 1fr; }
  .page-stats { gap: 2rem; }
  .inline-cta { flex-direction: column; }
  .inline-cta p { max-width: none; }
  .article { padding: 3rem 1.5rem; }
  footer { flex-direction: column; text-align: center; }
  .hub-hero-body, .page-hero-body { padding: 0 1.5rem 3rem; }
  /* Mobile: gallery section full-bleed; keep padding on title only */
  #gallery.sec { padding-left: 0; padding-right: 0; }
  #gallery.sec .sec-label,
  #gallery.sec .sec-title { padding-left: 1.5rem; padding-right: 1.5rem; }
  .gw { padding-left: 0; padding-right: 0; max-width: 100%; }
  .cards-section-wrap { padding-left: 1rem; padding-right: 1rem; max-width: 100%; }
  .gfull img, .gc img { width: 100%; height: 100%; object-fit: cover; max-width: 100%; }
  .hero img, .page-hero img, .hub-hero img { min-height: 100%; min-width: 100%; object-fit: cover; }
  .dest-card-img img { max-width: 100%; height: auto; }
  .room-img img { max-width: 100%; }
  .cta-band { padding: 3rem 1.5rem; }
  .cta-band h2 { font-size: 1.75rem; }
  .save-strip { padding: 0.5rem 0.75rem; font-size: 0.72rem; }
  .hero { min-height: 85vh; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
}
@media (max-width: 480px) {
  .sec { padding: 2.5rem 1rem; }
  #gallery.sec { padding-left: 0; padding-right: 0; }
  #gallery.sec .sec-label,
  #gallery.sec .sec-title { padding-left: 1rem; padding-right: 1rem; }
  .hero-body, .hub-hero-body, .page-hero-body { padding: 0 1rem 2.5rem; }
  .article { padding: 2.5rem 1rem; }
  .g2, .g3, .g4, .g2L { grid-template-columns: 1fr; }
  .gfull { height: 300px; }
  .gc.ht { height: 260px; }
  .gc.hm { height: 220px; }
  .gw { padding-left: 0; padding-right: 0; }
  .cards-section-wrap { padding-left: 0.75rem; padding-right: 0.75rem; }
  .cta-band { padding: 2.5rem 1rem; }
  .cta-band h2 { font-size: 1.5rem; }
  .hero h1 { font-size: 1.75rem; }
  .sec-title { font-size: 1.6rem; }
  .page-hero-body h1 { font-size: 1.65rem !important; }
  footer { padding: 2rem 1rem; }
  .dest-body { padding: 1.2rem; }
  .dest-body h3 { font-size: 1.35rem; }
}
