:root {
  --bg: #fffaf0;
  --paper: #ffffff;
  --ink: #13221a;
  --muted: #607064;
  --green: #0b7a4b;
  --green-dark: #075436;
  --yellow: #f6c54f;
  --blue: #0667a6;
  --coral: #e85d4f;
  --sand: #f2e4c6;
  --shadow: 0 24px 60px rgba(5, 49, 33, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: #fff;
  padding: .8rem 1rem;
  border-radius: 999px;
  z-index: 1000;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}
.container.narrow { max-width: 860px; }
.section { padding: 92px 0; }
.section-heading { margin-bottom: 36px; }
.section-heading h2 { max-width: 850px; }
.section-heading p { max-width: 780px; color: var(--muted); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 16px 20px;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.scrolled, .site-header.compact {
  background: rgba(255, 250, 240, .88);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 35px rgba(19, 34, 26, .08);
}
.nav {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.02em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #082a1b;
  background: linear-gradient(135deg, var(--yellow), #20c573 52%, #1194d6);
  box-shadow: 0 10px 26px rgba(15, 110, 64, .25);
}
.brand-text { font-size: 1.02rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  text-decoration: none;
  font-weight: 750;
  font-size: .95rem;
  padding: .68rem .88rem;
  border-radius: 999px;
  color: rgba(19, 34, 26, .86);
}
.nav-links a:hover { background: rgba(255,255,255,.72); }
.pill-link {
  background: var(--ink) !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(19, 34, 26, .18);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(19,34,26,.12);
  padding: 10px;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 150px 20px 70px;
  overflow: hidden;
  isolation: isolate;
}
.hero-media, .hero-overlay { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); }
.hero-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 25% 25%, rgba(246, 197, 79, .56), transparent 28%),
    linear-gradient(90deg, rgba(5, 36, 25, .86), rgba(5, 36, 25, .48) 46%, rgba(5, 36, 25, .1)),
    linear-gradient(0deg, rgba(5, 36, 25, .72), transparent 42%);
}
.hero-content {
  width: min(1080px, 100%);
  margin: 0 auto;
  color: #fff;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 950;
  font-size: .78rem;
  color: var(--green);
  margin: 0 0 12px;
}
.hero .eyebrow { color: var(--yellow); }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.045em; margin: 0; }
h1 { font-size: clamp(3.2rem, 8vw, 7.5rem); max-width: 980px; }
h2 { font-size: clamp(2.2rem, 5vw, 4.7rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 2rem); }
.hero-lead {
  max-width: 760px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255,255,255,.9);
  margin: 26px 0 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: .86rem 1.25rem;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 15px 30px rgba(0,0,0,.12);
}
.btn.primary { background: linear-gradient(135deg, var(--yellow), #34d079); color: #082a1b; }
.btn.ghost { background: rgba(255,255,255,.14); color: currentColor; border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(10px); }
.btn.small { min-height: 40px; padding: .65rem 1rem; font-size: .92rem; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
  gap: 12px;
  margin-top: 42px;
}
.hero-stats div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
}
.hero-stats strong { display: block; font-size: 2.1rem; line-height: 1; }
.hero-stats span { display: block; color: rgba(255,255,255,.82); font-size: .92rem; margin-top: 6px; }

.two-col {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.align-start { align-items: start; }
.rich-text p { margin: 0 0 1.1rem; color: var(--muted); font-size: 1.04rem; }
.rich-text h1 { font-size: clamp(2.6rem, 6vw, 5rem); margin-bottom: 20px; }
.rich-text h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin: 2rem 0 .8rem; }
.rich-text a { color: var(--green-dark); font-weight: 800; }

.feature-strip {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 0 42px;
}
.feature-strip article {
  background: var(--paper);
  border: 1px solid rgba(19, 34, 26, .07);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(19,34,26,.07);
}
.icon { font-size: 2rem; display: block; margin-bottom: 18px; }
.feature-strip h3 { font-size: 1.25rem; margin-bottom: 8px; }
.feature-strip p { color: var(--muted); margin: 0; font-size: .96rem; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.destination-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(19,34,26,.08);
  border: 1px solid rgba(19,34,26,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.destination-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.destination-card.large { grid-column: span 2; }
.destination-card img { width: 100%; height: 270px; object-fit: cover; }
.destination-card.large img { height: 390px; }
.card-body { padding: 26px; }
.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: .34rem .7rem;
  background: #e5f7ed;
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 900;
  margin-bottom: 14px;
}
.card-body p { color: var(--muted); margin: 14px 0 0; }

.dark {
  background: #071e17;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.dark::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -120px;
  top: 60px;
  background: radial-gradient(circle, rgba(246, 197, 79, .25), transparent 64%);
}
.dark .eyebrow { color: var(--yellow); }
.dark .section-heading p { color: rgba(255,255,255,.72); }
.itinerary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}
.itinerary {
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 26px;
  backdrop-filter: blur(10px);
}
.itinerary.featured { background: linear-gradient(160deg, rgba(246,197,79,.2), rgba(52,208,121,.1)); border-color: rgba(246,197,79,.34); }
.itinerary-top span {
  display: inline-flex;
  background: var(--yellow);
  color: #102116;
  border-radius: 999px;
  padding: .28rem .68rem;
  font-weight: 950;
  margin-bottom: 16px;
}
.itinerary h3 { margin-bottom: 18px; }
.itinerary ol { padding-left: 1.2rem; margin: 0; }
.itinerary li { margin: 0 0 14px; color: rgba(255,255,255,.82); }
.itinerary p { color: rgba(255,255,255,.72); margin: 18px 0 0; }

.sticky-title { position: sticky; top: 110px; }
.experience-list { display: grid; gap: 18px; }
.experience-list article {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid rgba(19,34,26,.06);
  box-shadow: 0 14px 32px rgba(19,34,26,.06);
}
.experience-list p { color: var(--muted); margin-bottom: 0; }

.gallery-section { background: #f2ead9; }
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.gallery-item {
  grid-column: span 3;
  min-height: 230px;
  border: 0;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 16px 38px rgba(19,34,26,.11);
  background: #ddd;
}
.gallery-item:nth-child(1), .gallery-item:nth-child(8) { grid-column: span 6; }
.gallery-item:nth-child(4), .gallery-item:nth-child(6), .gallery-item:nth-child(11) { grid-column: span 4; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.08); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: rgba(5, 14, 10, .86);
  padding: 34px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-height: 78vh;
  max-width: min(1100px, 96vw);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.lightbox p { color: #fff; font-weight: 800; text-align: center; margin: 18px 0 0; }
.lightbox-close, .modal-close {
  position: absolute;
  right: 24px;
  top: 24px;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 1.7rem;
  cursor: pointer;
}

.tips-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 50px;
  align-items: start;
}
.accordion { display: grid; gap: 12px; }
.accordion-item {
  background: var(--paper);
  border: 1px solid rgba(19,34,26,.07);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(19,34,26,.06);
}
.accordion-item button {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 22px 24px;
  text-align: left;
  font-weight: 950;
  cursor: pointer;
}
.accordion-panel {
  display: none;
  padding: 0 24px 24px;
  color: var(--muted);
}
.accordion-item.open .accordion-panel { display: block; }
.accordion-panel p { margin: 0; }

.planning {
  background:
    linear-gradient(135deg, rgba(11,122,75,.12), rgba(6,103,166,.12)),
    var(--bg);
}
.planning-card {
  background: #ffffff;
  border-radius: 36px;
  padding: clamp(28px, 5vw, 56px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow);
}
.planner {
  background: #f6f1e6;
  padding: 18px;
  border-radius: 28px;
}
.planner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.planner-buttons button {
  border: 0;
  border-radius: 999px;
  background: #fff;
  padding: .7rem 1rem;
  font-weight: 950;
  cursor: pointer;
}
.planner-buttons button.active { background: var(--green); color: #fff; }
.planner-result {
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  min-height: 165px;
}
.planner-result h3 { margin-bottom: 10px; }
.planner-result p { color: var(--muted); margin: 0; }

.credits { background: #fff; }
.credits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.credits-grid a {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f7f2e9;
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 800;
  border: 1px solid rgba(19,34,26,.06);
}
.credits-grid a:hover { background: #e9f7ee; }

.footer {
  background: #061a14;
  color: #fff;
  padding: 56px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr 1fr;
  gap: 36px;
}
.footer p { color: rgba(255,255,255,.72); margin-bottom: 0; }
.footer h3 { font-size: 1.1rem; margin-bottom: 14px; }
.footer a { color: #fff; text-decoration: none; display: block; margin: 8px 0; }
.footer-brand { margin-bottom: 14px; }

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(19,34,26,.09);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}
.cookie-banner.show { display: grid; }
.cookie-banner h2 { font-size: 1.15rem; letter-spacing: -.02em; margin-bottom: 4px; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: .95rem; }
.cookie-banner a { color: var(--green-dark); font-weight: 900; }
.cookie-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.cookie-actions .ghost { color: var(--ink); border-color: rgba(19,34,26,.15); background: #f5f0e6; }
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(5,14,10,.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.cookie-modal.open { opacity: 1; pointer-events: auto; }
.cookie-modal-card {
  position: relative;
  width: min(620px, 100%);
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.cookie-modal-card h2 { font-size: 2rem; margin-bottom: 10px; }
.cookie-modal-card p { color: var(--muted); }
.switch-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(19,34,26,.1);
}
.switch-row small { display: block; color: var(--muted); margin-top: 2px; }
.switch-row input { width: 22px; height: 22px; accent-color: var(--green); }
.modal-actions { margin-top: 18px; }

.policy-page { background: #fffaf0; }
.policy-main { padding-top: 130px; }
.always-visible { display: flex; }
code {
  background: rgba(11,122,75,.11);
  color: var(--green-dark);
  padding: .15rem .35rem;
  border-radius: 6px;
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links:not(.always-visible) {
    position: fixed;
    inset: 76px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(255,250,240,.96);
    backdrop-filter: blur(16px);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  body.nav-open .nav-links { display: flex; }
  .nav-links a { padding: 1rem; }
  .two-col, .tips-layout, .planning-card { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .destination-card.large { grid-column: span 2; }
  .itinerary-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item:nth-child(4), .gallery-item:nth-child(6), .gallery-item:nth-child(11) { grid-column: span 6; }
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-actions { justify-content: flex-start; }
  .sticky-title { position: static; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 70px 0; }
  .hero { padding: 130px 14px 44px; }
  .hero-stats { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: 1fr; width: min(100% - 28px, 1240px); }
  .cards-grid { grid-template-columns: 1fr; }
  .destination-card.large { grid-column: auto; }
  .destination-card.large img, .destination-card img { height: 250px; }
  .gallery { gap: 10px; }
  .gallery-item, .gallery-item:nth-child(1), .gallery-item:nth-child(8), .gallery-item:nth-child(4), .gallery-item:nth-child(6), .gallery-item:nth-child(11) { grid-column: span 12; min-height: 230px; }
  .credits-grid { grid-template-columns: 1fr; }
  .cookie-banner { left: 14px; right: 14px; bottom: 14px; width: calc(100% - 28px); }
  .cookie-actions .btn { flex: 1 1 100%; }
  .brand-text { display: none; }
}
