:root {
  --terracotta: #C4622D; --gold: #C9963A; --sand: #F0E2C4;
  --cream: #FAF6EE; --forest: #1E3D2F; --forest-light: #2D5A42;
  --ink: #1A1A18; --mist: #7A8C7E; --white: #FFFFFF;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Josefin Sans', sans-serif; background: var(--cream); color: var(--ink); overflow-x: hidden; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--terracotta); border-radius: 3px; }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 4rem; background: rgba(26,26,24,0.96); backdrop-filter: blur(8px); transition: padding 0.4s; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; color: var(--white); letter-spacing: 0.04em; text-decoration: none; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-family: 'Josefin Sans', sans-serif; font-size: 0.72rem; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.25s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { font-family: 'Josefin Sans', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; background: var(--terracotta); color: var(--white); border: none; padding: 0.65rem 1.6rem; cursor: pointer; transition: background 0.25s; text-decoration: none; }
.nav-cta:hover { background: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: white; display: block; }

.page-hero { position: relative; height: 52vh; min-height: 380px; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.2) 100%); }
.page-hero-content { position: relative; z-index: 2; max-width: 1200px; width: 100%; margin: 0 auto; padding: 3rem 4rem; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.8rem; }
.breadcrumb a, .breadcrumb span { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }
.page-hero-eyebrow { font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; display: block; }
.page-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 300; color: white; line-height: 1.1; }
.page-hero-title em { font-style: italic; color: var(--sand); }

/* DEST NAV TABS */
.dest-tabs { background: var(--ink); padding: 0 4rem; position: sticky; top: 64px; z-index: 100; }
.dest-tabs-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.dest-tabs-inner::-webkit-scrollbar { display: none; }
.dest-tab { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); padding: 1.1rem 1.8rem; cursor: pointer; text-decoration: none; transition: color 0.25s, border-color 0.25s; border-bottom: 2px solid transparent; white-space: nowrap; display: block; }
.dest-tab:hover { color: var(--gold); }
.dest-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

/* DESTINATION SECTIONS */
.dest-section { padding: 7rem 4rem; }
.dest-section:nth-child(even) { background: var(--sand); }
.dest-section:nth-child(odd) { background: var(--cream); }
.dest-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.dest-inner.reverse { direction: rtl; }
.dest-inner.reverse > * { direction: ltr; }
.dest-img-wrap { position: relative; }
.dest-img-main { width: 100%; height: 460px; overflow: hidden; }
.dest-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dest-img-main:hover img { transform: scale(1.04); }
.dest-region-badge { position: absolute; top: 1.5rem; left: 1.5rem; background: var(--terracotta); color: white; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.4rem 1rem; }
.dest-text {}
.dest-text .section-label { color: var(--terracotta); }
.dest-section:nth-child(even) .dest-text .section-label { color: var(--terracotta); }
.dest-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4vw, 3.8rem); font-weight: 300; color: var(--forest); line-height: 1; margin-bottom: 0.3rem; }
.dest-subtitle { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: var(--terracotta); margin-bottom: 1.4rem; }
.section-line { width: 56px; height: 2px; background: var(--gold); margin: 0 0 1.8rem; }
.dest-text p { font-size: 0.9rem; line-height: 1.9; color: #555; margin-bottom: 1.2rem; font-weight: 300; }
.dest-highlights { margin: 1.8rem 0; }
.dest-highlights h4 { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--forest); margin-bottom: 1rem; }
.dest-highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.highlight-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: #555; font-weight: 300; }
.highlight-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.dest-info-row { display: flex; gap: 2rem; margin: 1.8rem 0; padding: 1.5rem 0; border-top: 1px solid rgba(196,98,45,0.15); border-bottom: 1px solid rgba(196,98,45,0.15); }
.dest-info-item { }
.dest-info-item .label { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mist); display: block; margin-bottom: 0.3rem; }
.dest-info-item .value { font-size: 0.82rem; color: var(--forest); font-weight: 400; }
.btn-primary { font-family: 'Josefin Sans', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; padding: 1rem 2.4rem; background: var(--terracotta); color: white; border: none; cursor: pointer; text-decoration: none; transition: background 0.25s, transform 0.2s; display: inline-block; margin-right: 1rem; }
.btn-primary:hover { background: var(--forest); transform: translateY(-2px); }
.btn-outline-dark { font-family: 'Josefin Sans', sans-serif; font-size: 0.72rem; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; padding: 1rem 2.4rem; border: 1px solid var(--forest); color: var(--forest); background: transparent; cursor: pointer; text-decoration: none; transition: background 0.25s; display: inline-block; }
.btn-outline-dark:hover { background: var(--forest); color: white; }

/* CTA BAND */
.cta-band { background: var(--forest); padding: 5rem 4rem; text-align: center; }
.cta-band h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--sand); margin-bottom: 1rem; }
.cta-band p { font-size: 0.85rem; color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.9; font-weight: 300; }
.btn-gold { font-family: 'Josefin Sans', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; padding: 1rem 2.8rem; background: var(--gold); color: white; border: none; cursor: pointer; text-decoration: none; transition: background 0.25s, transform 0.2s; display: inline-block; }
.btn-gold:hover { background: var(--terracotta); transform: translateY(-2px); }

/* FOOTER */
footer { background: var(--ink); padding: 5rem 4rem 2rem; color: rgba(255,255,255,0.6); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 2.75rem; align-items: start; margin-bottom: 4rem; }
.footer-brand .nav-logo { font-size: 1.9rem; display: inline-block; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.8rem; line-height: 1.8; font-weight: 300; max-width: 280px; }
.footer-col h4 { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul a { font-size: 0.8rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; font-weight: 300; }
.footer-col ul a:hover { color: var(--sand); }
.footer-social { display: flex; gap: 1rem; margin-top: 1.8rem; }
.social-btn { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: rgba(255,255,255,0.5); cursor: pointer; transition: border-color 0.2s, color 0.2s; text-decoration: none; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.72rem; }
.footer-bottom .legal { display: flex; gap: 2rem; }
.footer-bottom .legal a { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom .legal a:hover { color: var(--sand); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }

.mobile-menu { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(26,26,24,0.98); flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--sand); text-decoration: none; letter-spacing: 0.06em; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 2rem; right: 2rem; font-size: 1.5rem; color: rgba(255,255,255,0.5); cursor: pointer; background: none; border: none; }

@media (max-width: 1024px) {
  .dest-section { padding: 5rem 2rem; }
  nav { padding: 1.2rem 2rem; }
  .dest-inner { grid-template-columns: 1fr; gap: 3rem; }
  .dest-inner.reverse { direction: ltr; }
  .dest-img-main { height: 320px; }
  .dest-tabs { padding: 0 2rem; top: 56px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .page-hero-content { padding: 2rem 2rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .dest-highlights-grid { grid-template-columns: 1fr; }
  .dest-info-row { flex-wrap: wrap; gap: 1rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}