*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0C1B2E;
  --navy-light: #132440;
  --navy-mid: #1A2F48;
  --cream: #F5F0E8;
  --cream-dark: #EDE8DF;
  --cream-deeper: #E3DDCF;
  --text-body: #3A3020;
  --text-muted: #7A6E60;
  --gold: #C9A045;
  --gold-light: #E2BC6A;
  --white: #FFFFFF;
  --off-white: #FAF8F4;
  --border: rgba(12, 27, 46, 0.14);
  --border-subtle: rgba(12, 27, 46, 0.08);
  --border-gold: rgba(201, 160, 69, 0.35);
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text-body);
  font-family: 'Optima', 'Optima Nova', 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: 'ITC New Baskerville', 'Baskerville', 'Libre Baskerville', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.4rem; }

p { color: var(--text-body); }

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

/* ─── Layout ─── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 3rem 0; }

/* ─── Nav ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
  transition: transform 0.3s ease;
}

nav.nav--hidden {
  transform: translateY(-100%);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Optima', 'Optima Nova', 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 8px;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-links .nav-cta {
  color: var(--gold);
  border: 1px solid rgba(201, 160, 69, 0.4);
  padding: 0.45rem 1.1rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.nav-links .nav-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ─── Hero ─── */
.hero {
  background: var(--cream);
  display: flex;
  align-items: center;
  padding-top: calc(68px + 2rem);
  padding-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 50%, rgba(201, 160, 69, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { max-width: 700px; }

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  color: var(--text-muted);
}

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

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  font-family: 'Optima', 'Optima Nova', 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--navy);
  color: var(--cream);
}

.btn-primary:hover { background: var(--navy-mid); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--cream);
}

/* ─── Section headers ─── */
.section-header { margin-bottom: 3.5rem; }

.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-header h2 { margin-bottom: 1rem; }

.section-header p {
  font-size: 1rem;
  max-width: 520px;
  color: var(--text-muted);
}

/* ─── Divider ─── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* ─── Destinations ─── */
#destinations { background: var(--cream); }

/* ─── Destinations carousel ─── */
.dest-carousel {
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin: 2.5rem auto 0;
}

.dest-carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.dest-carousel-slide {
  min-width: 100%;
}

.dest-card {
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  border: none;
  transition: box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.dest-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.dest-card:hover { box-shadow: none; }

.dest-card-cover {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.25s;
}

.dest-card:hover .dest-card-cover { opacity: 0.92; }

.dest-card h3 { font-size: 1.8rem; margin-bottom: 0.5rem; }

.dest-card-sub {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.dest-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  flex: 1;
  color: var(--text-muted);
}

.dest-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.tag {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 1px;
}

.dest-card-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  transition: gap 0.2s;
  padding: 1rem 0;
  background: transparent;
}

.dest-card:hover .dest-card-link { gap: 14px; }
.dest-card-link::after { content: '→'; }

/* ─── About ─── */
#about { background: var(--cream); }

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

.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1.25rem; font-size: 0.95rem; color: var(--text-muted); }

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.value-item {
  background: var(--off-white);
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.value-icon {
  font-size: 1.1rem;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
}

.value-item h4 {
  font-family: 'Optima', 'Optima Nova', 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.value-item p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ─── Golden Paw Scale ─── */
#scale { background: var(--cream); }

.scale-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.scale-tag--gold   { border: 1.5px solid #C9A045; color: #9A7320; background: rgba(201, 160, 69, 0.1); }
.scale-tag--silver { border: 1.5px solid #9B9B9B; color: #666;    background: rgba(155, 155, 155, 0.1); }
.scale-tag--bronze { border: 1.5px solid #CD7F32; color: #8B5010; background: rgba(205, 127, 50, 0.1); }

/* ─── Scale Carousel ─── */
.scale-carousel {
  max-width: 620px;
  margin: 2.5rem auto 0;
  position: relative;
  overflow: hidden;
}

.scale-carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-carousel-slide {
  min-width: 100%;
}

.scale-carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.scale-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.carousel-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  transition: border-color 0.2s, background 0.2s;
}

.carousel-btn:hover {
  border-color: var(--gold);
  background: rgba(201, 160, 69, 0.08);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot--active {
  background: var(--gold);
  transform: scale(1.3);
}

.scale-footer-tagline {
  text-align: center;
  font-family: 'ITC New Baskerville', 'Baskerville', 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 2.5rem;
  opacity: 0.7;
}

/* ─── Shop ─── */
#shop { background: var(--cream-dark); }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
}

.shop-item {
  background: var(--off-white);
  padding: 2.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.shop-item:hover { box-shadow: 0 4px 20px rgba(12,27,46,0.08); }

.shop-item-icon { font-size: 1.6rem; margin-bottom: 1.5rem; line-height: 1; }

.shop-item h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }

.shop-item-price {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.shop-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.shop-item .btn { align-self: flex-start; }

.shop-item-coming { opacity: 0.5; }
.shop-item-coming .btn { pointer-events: none; }

/* ─── Instagram strip ─── */
.instagram-strip {
  padding: 4rem 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.instagram-strip p {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.instagram-strip a {
  font-family: 'ITC New Baskerville', 'Baskerville', 'Libre Baskerville', Georgia, serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--navy);
  transition: opacity 0.2s;
}

.instagram-strip a:hover { opacity: 0.6; }

/* ─── Footer ─── */
footer {
  background: var(--navy);
  padding: 4rem 0 2.5rem;
  border-top: 1px solid rgba(245,240,232,0.1);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo { font-size: 1.1rem; margin-bottom: 0.75rem; }

.footer-brand p {
  font-size: 0.85rem;
  max-width: 240px;
  line-height: 1.6;
  color: rgba(245,240,232,0.6);
}

.footer-nav h4 {
  font-family: 'Optima', 'Optima Nova', 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.6);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(245,240,232,0.1);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.35);
}

/* ─── Destination page ─── */
.dest-hero {
  padding-top: 68px;
  background: var(--cream);
}

.dest-hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.dest-intro {
  background: var(--cream);
  padding-top: calc(68px + 3rem);
}

.dest-intro--no-hero { padding-top: calc(68px + 3rem); }

.dest-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.dest-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 400;
  padding: 0.4rem 0;
}

.dest-breadcrumb a:hover { color: var(--gold); }
.dest-breadcrumb span { color: var(--text-muted); opacity: 0.4; }

.dest-intro h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  margin-bottom: 1rem;
}

.dest-intro-desc {
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.dest-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.dest-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dest-stat-number {
  font-family: 'ITC New Baskerville', 'Baskerville', 'Libre Baskerville', Georgia, serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
}

.dest-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Venue sections ─── */
.venue-section {
  border-bottom: 1px solid var(--border);
}

.venue-section { background: var(--cream); }

.venue-section-header { margin-bottom: 3rem; }

.venue-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.venue-card {
  background: var(--off-white);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.2s;
}

.venue-card:hover { box-shadow: 0 4px 20px rgba(12,27,46,0.08); }

.venue-card { background: var(--off-white); }

.venue-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.venue-card h3 {
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0;
  color: var(--navy);
}

.venue-neighbourhood {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.venue-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.venue-card-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.venue-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.venue-btn:hover {
  border-color: var(--navy);
  color: var(--cream);
  background: var(--navy);
}

/* ─── Rating tags ─── */
.rating-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.rating-tag--gold   { border: 1.5px solid #C9A045; color: #9A7320; background: rgba(201,160,69,0.1); }
.rating-tag--silver { border: 1.5px solid #9B9B9B; color: #555555; background: rgba(155,155,155,0.1); }
.rating-tag--bronze { border: 1.5px solid #CD7F32; color: #7A4010; background: rgba(205,127,50,0.1); }

/* ─── Itinerary hero image ─── */
.itinerary-hero {
  width: 90%;
  max-width: 860px;
  margin: 0 auto;
}

.itinerary-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── Itinerary ─── */
.itinerary-card {
  background: var(--off-white);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 2rem;
}

.itinerary-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.itinerary-theme {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.itinerary-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.itinerary-glance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin: 1rem 0 2rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
}

.itinerary-glance span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.itinerary-stops {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.itinerary-stop {
  padding-left: 1.25rem;
  border-left: 2px solid var(--border-gold);
}

.itinerary-stop-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.itinerary-stop h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.itinerary-stop p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ─── Destination CTA ─── */
.dest-cta {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
}

.dest-cta h2 { margin-bottom: 1rem; color: var(--cream); }

.dest-cta p {
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.7);
}

.dest-cta .section-eyebrow { justify-content: center; color: var(--gold); }
.dest-cta .section-eyebrow::before { background: var(--gold); }

/* ─── Map ─── */
.venue-map-wrap {
  width: 100%;
  height: 400px;
  background: var(--cream);
}

#map {
  width: 100%;
  height: 100%;
}

/* ─── Neighbourhood groups ─── */
.venue-group { margin-bottom: 3rem; }
.venue-group:last-child { margin-bottom: 0; }

.venue-group-heading {
  font-family: 'Optima', 'Optima Nova', 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.venue-card h4 {
  font-family: 'ITC New Baskerville', 'Baskerville', 'Libre Baskerville', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  margin: 0;
}

/* ─── Destination sub-page cards ─── */
.dest-subpages {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dest-subpage-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s;
  position: relative;
}

.dest-subpage-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.dest-subpage-card:hover { box-shadow: 0 4px 20px rgba(12,27,46,0.1); border-color: var(--border-gold); }
.dest-subpage-card:hover::before { transform: scaleX(1); }

.dest-subpage-icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  width: 2.5rem;
  text-align: center;
}

.dest-subpage-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0;
  color: var(--navy);
}

.dest-subpage-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.dest-subpage-card .dest-card-link {
  margin-left: auto;
  color: var(--navy);
}

.dest-subpage-card--coming-soon {
  opacity: 0.5;
  pointer-events: none;
}
.dest-subpage-card--coming-soon .dest-card-link {
  color: var(--text-muted);
  font-style: italic;
}

/* ─── Hamburger ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  section { padding: 2rem 0; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .dest-stats { gap: 1.5rem; }
  .venue-card-top { flex-direction: column; }
  .dest-cta { padding: 3rem 0; }

  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: var(--navy);
    padding: 1.5rem 2rem 2rem;
    gap: 0;
    border-top: 1px solid rgba(245, 240, 232, 0.1);
    z-index: 99;
  }
  .nav-links.nav-links--open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(245, 240, 232, 0.08); }
  .nav-links a { display: block; padding: 0.85rem 0; font-size: 1rem; }
  .nav-links .nav-cta {
    margin-top: 0.5rem;
    border: none;
    padding: 0.85rem 0;
    background: none;
    color: var(--gold);
  }
}
