:root {
  --ink: #162522;
  --muted: #5f6f6b;
  --cream: #f7f3e9;
  --paper: #fffdf8;
  --green: #155f54;
  --green-dark: #0c433c;
  --coral: #e86e4d;
  --gold: #d2a94b;
  --line: #dfe6e2;
  --white: #fff;
  --shadow: 0 14px 42px rgba(19, 61, 54, .11);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, .button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(232,110,77,.45); outline-offset: 3px; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 100; padding: 10px 14px; background: var(--white); border-radius: 10px; }
.skip-link:focus { top: 12px; }
.container { width: min(var(--max), calc(100% - 36px)); margin-inline: auto; }
.section { padding: 78px 0; }
.section-sm { padding: 48px 0; }
.eyebrow { margin: 0 0 10px; color: var(--coral); font-weight: 800; font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; line-height: 1.13; letter-spacing: -.025em; }
h1 { font-size: clamp(2.35rem, 6vw, 5.2rem); }
h2 { font-size: clamp(1.85rem, 4vw, 3.15rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
.lead { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.27rem); max-width: 760px; }
.muted { color: var(--muted); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.section-head > div { max-width: 760px; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,253,248,.94); border-bottom: 1px solid rgba(22,37,34,.08); backdrop-filter: blur(14px); }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -.02em; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a:not(.button) { color: #33433f; font-weight: 650; }
.nav-links a[aria-current="page"], .nav-links a:hover { color: var(--green); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); color: var(--ink); }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 11px 20px; border: 1px solid transparent; border-radius: 999px; background: var(--coral); color: var(--white); font-weight: 800; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); background: #d75e40; box-shadow: 0 9px 24px rgba(232,110,77,.23); }
.button.secondary { color: var(--green-dark); background: var(--white); border-color: var(--line); }
.button.secondary:hover { background: var(--cream); box-shadow: none; }
.button.whatsapp { background: #137a56; }
.button.small { min-height: 42px; padding: 8px 16px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.hero { position: relative; min-height: 640px; display: grid; align-items: center; overflow: hidden; color: var(--white); background: #123d37; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,37,33,.92), rgba(7,37,33,.55) 55%, rgba(7,37,33,.16)); }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-content { position: relative; z-index: 1; max-width: 780px; padding: 90px 0; }
.hero .lead { color: rgba(255,255,255,.86); margin-top: 20px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.trust-row span { padding: 7px 12px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; background: rgba(255,255,255,.09); font-size: .9rem; }
.page-hero { padding: 88px 0 70px; background: linear-gradient(135deg, var(--cream), #e9f3ef); }
.breadcrumbs { display: flex; gap: 8px; align-items: center; color: var(--muted); font-size: .9rem; margin-bottom: 20px; }
.breadcrumbs a { color: var(--green); }
.destination-hero { padding: 42px 0 58px; background: var(--cream); }
.destination-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.destination-hero img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.fact-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.fact-chip { padding: 8px 12px; background: rgba(21,95,84,.1); color: var(--green-dark); border-radius: 12px; font-size: .91rem; font-weight: 750; }

.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 26px rgba(20,58,51,.06); }
.card-content { padding: 22px; }
.destination-card { display: flex; flex-direction: column; height: 100%; }
.destination-card img { width: 100%; aspect-ratio: 1.46; object-fit: cover; }
.destination-card .card-content { display: flex; flex-direction: column; flex: 1; }
.destination-card p { color: var(--muted); }
.destination-card .button-row { margin-top: auto; padding-top: 8px; }
.meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.meta span { padding: 5px 9px; border-radius: 8px; background: var(--cream); color: #455652; font-size: .81rem; font-weight: 700; }
.text-link { color: var(--green); font-weight: 800; }
.text-link:hover { text-decoration: underline; }
.feature-card { padding: 25px; }
.feature-card .number { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 16px; border-radius: 50%; background: var(--green); color: var(--white); font-weight: 900; }
.feature-card p { margin-bottom: 0; color: var(--muted); }
.soft { background: var(--cream); }
.dark { color: var(--white); background: var(--green-dark); }
.dark .lead, .dark .muted { color: rgba(255,255,255,.76); }

.style-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.filter-button { padding: 9px 15px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--ink); font-weight: 750; }
.filter-button.active { color: var(--white); background: var(--green); border-color: var(--green); }
.destination-card[hidden] { display: none; }

.detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 38px; align-items: start; }
.content-block + .content-block { margin-top: 46px; }
.content-block h2 { margin-bottom: 18px; font-size: clamp(1.6rem, 3vw, 2.35rem); }
.content-block h3 { margin: 22px 0 8px; }
.clean-list { padding: 0; margin: 16px 0 0; list-style: none; }
.clean-list li { position: relative; padding: 10px 0 10px 28px; border-bottom: 1px solid var(--line); }
.clean-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.info-panel { padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.info-panel.sticky { position: sticky; top: 98px; }
.info-item { padding: 13px 0; border-bottom: 1px solid var(--line); }
.info-item:last-of-type { border-bottom: 0; }
.info-item strong { display: block; font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.info-item span { display: block; margin-top: 3px; font-weight: 750; }
.note { padding: 16px 18px; border-left: 4px solid var(--gold); border-radius: 0 12px 12px 0; background: #fff8df; color: #564819; }
.route-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.route { padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.route p { margin: 7px 0 0; color: var(--muted); }
.season-table { display: grid; gap: 10px; }
.season-row { display: grid; grid-template-columns: 130px 1fr; gap: 18px; padding: 14px 16px; border-radius: 14px; background: var(--cream); }
.season-row strong { color: var(--green-dark); }

.planner-shell { display: grid; grid-template-columns: .75fr 1.25fr; gap: 34px; align-items: start; }
.planner-intro { position: sticky; top: 100px; }
.planner-form { padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field.full { grid-column: 1 / -1; }
label { display: block; margin-bottom: 7px; font-weight: 750; }
input, select, textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: var(--paper); border: 1px solid #cfd9d5; border-radius: 12px; }
textarea { min-height: 125px; resize: vertical; }
.choice-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { display: inline-block; padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); }
.choice input:checked + span { color: var(--white); background: var(--green); border-color: var(--green); }
.form-help { margin-top: 14px; color: var(--muted); font-size: .9rem; }

.faq details { padding: 18px 0; border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 800; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--coral); font-size: 1.3rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 12px 0 0; color: var(--muted); }
.cta-band { padding: 38px; border-radius: 28px; background: linear-gradient(125deg, var(--green-dark), var(--green)); color: var(--white); }
.cta-band .lead { color: rgba(255,255,255,.82); }

.site-footer { padding: 56px 0 24px; color: rgba(255,255,255,.8); background: #092f2b; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 28px; }
.site-footer h3 { color: var(--white); margin-bottom: 13px; }
.site-footer a:hover { color: var(--white); }
.footer-links { display: grid; gap: 8px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 26px; margin-top: 34px; border-top: 1px solid rgba(255,255,255,.14); font-size: .88rem; }
.mobile-cta { display: none; }
.notice { padding: 12px 0; text-align: center; color: #5b4a12; background: #fff2bd; font-size: .9rem; }

@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .destination-hero-grid, .detail-grid, .planner-shell { grid-template-columns: 1fr; }
  .info-panel.sticky, .planner-intro { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-toggle { display: grid; place-items: center; }
  .nav-links { position: absolute; left: 18px; right: 18px; top: 68px; display: none; align-items: stretch; flex-direction: column; gap: 3px; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 12px; }
  .nav-links .button { margin-top: 6px; }
}

@media (max-width: 640px) {
  body { padding-bottom: 68px; }
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 58px 0; }
  .hero { min-height: 590px; }
  .hero-content { padding: 70px 0; }
  .section-head { align-items: start; flex-direction: column; }
  .grid-3, .grid-4, .route-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .destination-hero-grid { gap: 28px; }
  .destination-hero { padding-top: 24px; }
  .destination-hero img { border-radius: 20px; }
  .season-row { grid-template-columns: 1fr; gap: 4px; }
  .planner-form { padding: 20px; }
  .cta-band { padding: 28px 22px; }
  .footer-bottom { flex-direction: column; }
  .mobile-cta { position: fixed; z-index: 45; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 9px 12px; border-top: 1px solid var(--line); background: rgba(255,253,248,.97); }
  .mobile-cta .button { min-height: 48px; padding: 8px 10px; font-size: .9rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
