/* ==============================================
   ZANCLE SICILY TOUR — DESIGN TOKENS
============================================== */
:root {
  --stone: #F5F3EC;
  --stone-2: #EDE9DC;
  --paper: #FBFAF6;
  --navy: #12213B;
  --navy-2: #1B2E4D;
  --gold: #B4913F;
  --gold-lt: #CBA95F;
  --gold-text: #80621F;
  --ink: #2B2A28;
  --muted: #6E6C63;
  --line: #DFDAC9;
  --line-dark: rgba(245, 243, 236, 0.16);
  --white: #ffffff;
  --font-display: 'Fraunces', Georgia, serif;
  --font-sans: 'Work Sans', system-ui, sans-serif;
  --container: 1180px;
  --pad: clamp(24px, 5vw, 96px);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { font-family: var(--font-sans); background: var(--stone); color: var(--ink); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
#about, #tours, #contact, #tour-booking { scroll-margin-top: 96px; }

.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; padding: 10px 14px; background: var(--navy); color: var(--white); border-radius: 4px; transform: translateY(-160%); transition: transform .18s ease; }
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 3px solid var(--gold-text); outline-offset: 3px; }
.why :focus-visible, .footer :focus-visible, .mobile-menu :focus-visible, .cta-band :focus-visible { outline-color: var(--gold-lt); }

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

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 18px var(--pad); transition: background .3s ease, padding .3s ease, border-color .3s ease; background: rgba(245,243,236,.90); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(223,218,201,.72); }
.nav.scrolled { background: rgba(245,243,236,.97); padding: 13px var(--pad); border-bottom-color: var(--line); }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.nav-brand .brand-name { display: flex; flex-direction: column; line-height: 1.15; }
.brand-main { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--navy); }
.brand-sub { font-size: 11px; letter-spacing: .08em; color: var(--gold-text); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a:not(.nav-book) { font-size: 14px; color: var(--navy); position: relative; padding-bottom: 4px; }
.nav-links a:not(.nav-book)::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--gold-text); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.nav-links a:not(.nav-book):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-book { font-size: 14px; color: var(--navy); border: 1px solid var(--navy); padding: 9px 20px; border-radius: 999px; transition: background .2s ease, color .2s ease; }
.nav-book:hover { background: var(--navy); color: var(--stone); }
.nav-burger { display: none; flex-direction: column; gap: 5px; width: 32px; min-height: 32px; justify-content: center; }
.nav-burger span { height: 1px; background: var(--navy); transition: transform .25s ease, opacity .25s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu { position: fixed; inset: 0; z-index: 99; background: var(--navy); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px; transform: translateY(-100%); visibility: hidden; transition: transform .35s ease, visibility .35s ease; }
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-size: 26px; color: var(--stone); }
.mobile-menu a:hover { color: var(--gold-lt); }

/* HERO */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; align-items: stretch; padding: 0; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 140px var(--pad) 80px; gap: 26px; }
.hero-eyebrow { font-size: 13px; color: var(--gold-text); display: flex; align-items: center; gap: 10px; }
.hero-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold-text); }
.hero-copy h1 { font-size: clamp(42px,6vw,68px); color: var(--navy); max-width: 11ch; }
.hero-copy h1 em { font-style: italic; color: var(--gold-text); }
.hero-sub { font-size: 18px; color: var(--muted); max-width: 42ch; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 8px; }
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: var(--navy); color: var(--stone); padding: 15px 30px; border-radius: 999px; font-size: 14px; transition: background .2s ease, transform .2s ease; }
.btn-primary:hover { background: var(--gold); color: var(--navy); transform: translateY(-1px); }
.btn-ghost { font-size: 14px; color: var(--navy); border-bottom: 1px solid var(--navy); padding-bottom: 2px; transition: color .2s ease, border-color .2s ease; }
.btn-ghost:hover { color: var(--gold-text); border-color: var(--gold-text); }
.hero-ports { display: flex; flex-wrap: wrap; gap: 10px 18px; font-size: 13px; color: var(--muted); margin-top: 18px; }
.hero-ports strong { color: var(--navy); font-weight: 500; }
.hero-image { position: relative; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(18,33,59,.05) 0%,rgba(18,33,59,.25) 100%); pointer-events: none; }

/* TRUST */
.trust-strip { background: var(--navy); color: var(--stone); padding: 18px var(--pad); display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 32px; font-size: 13px; letter-spacing: .02em; }
.trust-strip span { display: flex; align-items: center; gap: 8px; color: rgba(245,243,236,.88); }
.trust-strip span::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold-lt); }

/* SHARED SECTIONS */
section { padding: 110px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head--flush { margin-bottom: 0; }
.section-eyebrow { font-size: 13px; color: var(--gold-text); display: block; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(30px,4vw,44px); color: var(--navy); }
.section-head h2 em, .contact h2 em { font-style: italic; color: var(--gold-text); }
.section-head p { margin-top: 16px; color: var(--muted); font-size: 16px; max-width: 56ch; }
.rule { height: 1px; background: var(--line); border: none; }

/* ABOUT */
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-image-tag { position: absolute; bottom: -20px; left: -20px; background: var(--navy); color: var(--stone); padding: 18px 22px; font-family: var(--font-display); font-size: 14px; max-width: 240px; line-height: 1.4; }
.about-copy h2 { font-size: clamp(30px,4vw,44px); color: var(--navy); margin-bottom: 22px; }
.about-copy h2 em { color: var(--gold-text); font-style: italic; }
.about-copy p { color: var(--muted); margin-bottom: 18px; font-size: 16px; line-height: 1.75; max-width: 56ch; }
.about-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
.about-fact strong { display: block; font-family: var(--font-display); font-size: 26px; color: var(--navy); margin-bottom: 6px; }
.about-fact span { font-size: 13px; color: var(--muted); }

/* TOURS */
.tours { background: var(--stone); }
.tours-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.tour-card { background: var(--paper); display: flex; flex-direction: column; }
.tour-card-image { aspect-ratio: 4/3; overflow: hidden; }
.tour-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tour-card:hover .tour-card-image img { transform: scale(1.04); }
.tour-card-body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.tour-card-tag { font-size: 12px; color: var(--gold-text); margin-bottom: 10px; }
.tour-card-body h3 { font-size: 21px; color: var(--navy); margin-bottom: 10px; }
.tour-card-body p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; flex: 1; }
.tour-card-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; }
.tour-card-price { color: var(--navy); font-weight: 500; }
.tour-card-arrow { color: var(--gold-text); transition: transform .2s ease; }
.tour-card:hover .tour-card-arrow { transform: translateX(4px); }
.tours-note { margin-top: 28px; font-size: 13px; color: var(--muted); }
.tours-note a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }

/* WHY */
.why { background: var(--navy); color: var(--stone); }
.why .section-eyebrow { color: var(--gold-lt); }
.why .section-head h2 { color: var(--stone); }
.why .section-head h2 em { color: var(--gold-lt); }
.why .section-head p { color: rgba(245,243,236,.74); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; }
.why-item { border-top: 1px solid var(--line-dark); padding-top: 22px; }
.why-item-icon { width: 38px; height: 38px; margin-bottom: 20px; color: var(--gold-lt); }
.why-item h3 { font-size: 17px; color: var(--stone); margin-bottom: 10px; font-weight: 500; }
.why-item p { font-size: 14px; color: rgba(245,243,236,.72); line-height: 1.6; }

/* DESTINATION TEASER */
.dest-teaser { background: var(--paper); }
.dest-teaser-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
.dest-teaser-item { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.dest-teaser-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dest-teaser-item:hover img { transform: scale(1.06); }
.dest-teaser-item span { position: absolute; z-index: 1; left: 14px; bottom: 14px; color: var(--white); font-family: var(--font-display); font-size: 15px; }
.dest-teaser-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(18,33,59,0) 40%,rgba(18,33,59,.72) 100%); pointer-events: none; }
.dest-teaser-foot { margin-top: 32px; }

/* TESTIMONIALS */
.testimonials { background: var(--stone); }
.testimonials-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }
.testimonials-source { font-size: 13px; color: var(--gold-text); border-bottom: 1px solid var(--gold-text); padding-bottom: 2px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; }
.testimonial { border-top: 1px solid var(--line); padding-top: 24px; }
.testimonial-stars { color: var(--gold-text); font-size: 13px; margin-bottom: 16px; }
.testimonial p { font-family: var(--font-display); font-size: 18px; line-height: 1.5; color: var(--navy); margin-bottom: 18px; }
.testimonial cite { font-style: normal; font-size: 13px; color: var(--muted); }

/* CONTACT */
.contact { background: var(--stone-2); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; }
.contact-copy h2 { font-size: clamp(30px,4vw,44px); color: var(--navy); margin-bottom: 20px; }
.contact-copy p { color: var(--muted); max-width: 56ch; margin-bottom: 16px; }
.contact-note { font-size: 13px; }
.contact-options { display: grid; gap: 12px; }
.contact-card { display: grid; grid-template-columns: 110px 1fr; gap: 4px 20px; padding: 22px 24px; background: var(--paper); border: 1px solid var(--line); transition: transform .2s ease, border-color .2s ease; }
.contact-card:hover { transform: translateY(-2px); border-color: #B9AF94; }
.contact-card span { grid-row: 1 / span 2; font-size: 12px; color: var(--gold-text); text-transform: uppercase; letter-spacing: .06em; }
.contact-card strong { color: var(--navy); font-weight: 500; overflow-wrap: anywhere; }
.contact-card small { color: var(--muted); font-size: 12px; }

/* CTA */
.cta-band { background: var(--navy); color: var(--stone); padding: 90px 0; text-align: center; }
.cta-band h2 { font-size: clamp(28px,4vw,42px); margin-bottom: 18px; }
.cta-band h2 em { font-style: italic; color: var(--gold-lt); }
.cta-band p { color: rgba(245,243,236,.74); max-width: 50ch; margin: 0 auto 32px; }
.cta-band .btn-primary { background: var(--gold-lt); color: var(--navy); }
.cta-band .btn-primary:hover { background: var(--stone); }

/* FOOTER */
.footer { background: var(--navy); color: rgba(245,243,236,.78); padding: 64px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid var(--line-dark); }
.footer-brand { display: flex; align-items: flex-start; gap: 14px; }
.footer-brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.footer-brand strong { display: block; color: var(--stone); font-family: var(--font-display); font-size: 17px; margin-bottom: 6px; }
.footer-brand p { font-size: 13px; line-height: 1.6; max-width: 30ch; }
.footer-col h4 { font-size: 13px; color: var(--gold-lt); font-weight: 500; margin-bottom: 18px; font-family: var(--font-sans); }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; transition: color .2s ease; }
.footer-col a:hover { color: var(--gold-lt); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding: 24px 0; font-size: 12px; color: rgba(245,243,236,.58); }
.footer-bottom a { color: rgba(245,243,236,.72); }
.footer-bottom a:hover { color: var(--gold-lt); }

/* WHATSAPP */
.float-wa { position: fixed; right: 24px; bottom: 24px; z-index: 90; width: 54px; height: 54px; border-radius: 50%; background: var(--navy); color: var(--stone); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(18,33,59,.25); transition: background .2s ease, transform .2s ease; }
.float-wa:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* TOUR DETAIL */
.tour-hero { position: relative; height: 62vh; min-height: 420px; display: flex; align-items: flex-end; padding: 0; }
.tour-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tour-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(18,33,59,.15) 0%,rgba(18,33,59,.78) 100%); pointer-events: none; }
.tour-hero-content { position: relative; z-index: 1; padding: 0 var(--pad) 56px; color: var(--stone); max-width: var(--container); margin: 0 auto; width: 100%; }
.tour-hero-tag { font-size: 13px; color: var(--gold-lt); margin-bottom: 14px; display: block; }
.tour-hero-content h1 { font-size: clamp(34px,5vw,54px); margin-bottom: 14px; }
.tour-hero-content p { max-width: 56ch; color: rgba(245,243,236,.88); margin-bottom: 20px; }
.tour-hero-meta { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13px; }
.tour-hero-meta span { border: 1px solid rgba(245,243,236,.42); border-radius: 999px; padding: 7px 16px; }
.tour-body { padding: 90px 0; }
.tour-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: start; }
.tour-overview span.section-eyebrow { margin-bottom: 14px; }
.tour-overview h2 { font-size: 30px; color: var(--navy); margin-bottom: 20px; max-width: 20ch; }
.tour-overview p { color: var(--muted); margin-bottom: 18px; line-height: 1.75; max-width: 58ch; }
.tour-overview h3 { font-size: 16px; color: var(--navy); margin: 32px 0 14px; font-weight: 500; }
.tour-includes { display: grid; gap: 10px; }
.tour-includes li { font-size: 14px; color: var(--muted); display: flex; gap: 10px; align-items: flex-start; }
.tour-includes li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-text); margin-top: 8px; flex-shrink: 0; }
.tour-itinerary { display: grid; gap: 18px; margin-top: 4px; }
.tour-itinerary-step { display: grid; grid-template-columns: 60px 1fr; gap: 16px; border-top: 1px solid var(--line); padding-top: 16px; }
.itinerary-number { font-family: var(--font-display); color: var(--gold-text); font-size: 14px; }
.tour-itinerary-step p { font-size: 14px; color: var(--muted); margin: 0; }
.tour-itinerary-step strong { display: block; color: var(--navy); font-weight: 500; margin-bottom: 4px; font-size: 15px; }

/* BOOKING CARD */
.booking-card { background: var(--paper); border: 1px solid var(--line); padding: 36px; position: sticky; top: 100px; }
.booking-card-head { margin-bottom: 24px; }
.booking-card-head span { font-size: 12px; color: var(--gold-text); }
.booking-card-head h2 { font-size: 22px; color: var(--navy); margin-top: 6px; }
.booking-field { margin-bottom: 18px; }
.booking-field label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 7px; letter-spacing: .02em; }
.booking-field input, .booking-field select { width: 100%; border: 1px solid var(--line); background: var(--white); padding: 12px 14px; font-size: 14px; color: var(--ink); border-radius: 2px; transition: border-color .2s ease, box-shadow .2s ease; }
.booking-field input[readonly] { background: var(--stone); color: var(--muted); }
.booking-field input:focus-visible, .booking-field select:focus-visible, .booking-form-field input:focus-visible, .booking-form-field textarea:focus-visible { outline: none; border-color: var(--gold-text); box-shadow: 0 0 0 3px rgba(128,98,31,.18); }
.booking-price-summary { background: var(--stone); padding: 18px 20px; margin: 22px 0; display: grid; gap: 10px; }
.booking-price-summary div { display: flex; justify-content: space-between; gap: 18px; font-size: 13px; color: var(--muted); }
.booking-price-summary strong { color: var(--navy); font-weight: 500; text-align: right; }
.booking-price-basis { align-items: flex-start; }
.booking-price-basis strong { max-width: 70%; }
.booking-price-note { font-size: 12px; color: var(--muted); margin-bottom: 20px; line-height: 1.5; }
.booking-submit { width: 100%; background: var(--navy); color: var(--stone); padding: 16px; border-radius: 2px; font-size: 14px; transition: background .2s ease; }
.booking-submit:hover:not(:disabled) { background: var(--gold); color: var(--navy); }
.booking-submit:disabled { background: var(--line); color: var(--muted); cursor: not-allowed; }
.booking-disclaimer { font-size: 12px; color: var(--muted); text-align: center; margin-top: 14px; }

/* BOOKING MODAL */
.booking-modal { position: fixed; inset: 0; z-index: 200; display: none; }
.booking-modal.open { display: block; }
.booking-modal-backdrop { position: absolute; inset: 0; background: rgba(18,33,59,.68); }
.booking-modal-panel { position: relative; z-index: 1; background: var(--paper); max-width: 620px; margin: 40px auto; max-height: calc(100vh - 80px); overflow-y: auto; padding: 40px; box-shadow: 0 24px 80px rgba(18,33,59,.28); }
.booking-modal-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 26px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.booking-modal-header h2 { font-size: 19px; color: var(--navy); }
.booking-modal-header button { font-size: 28px; line-height: 1; color: var(--muted); min-width: 36px; min-height: 36px; }
.full-booking-form { display: flex; flex-direction: column; gap: 18px; }
.booking-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-form-field label, .booking-fieldset legend { display: block; font-size: 12px; color: var(--muted); margin-bottom: 7px; }
.booking-form-field input, .booking-form-field textarea { width: 100%; border: 1px solid var(--line); background: var(--white); padding: 12px 14px; font-size: 14px; border-radius: 2px; }
.booking-form-field input[readonly] { background: var(--stone); color: var(--muted); }
.booking-fieldset { border: 0; min-width: 0; }
.booking-radio-group { display: flex; gap: 24px; flex-wrap: wrap; }
.booking-radio-group label { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink); margin: 0; }
.booking-radio-group input { width: auto; }
.privacy-check { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: var(--muted); line-height: 1.55; }
.privacy-check input { margin-top: 3px; flex: 0 0 auto; }
.privacy-check a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.modal-submit-button { background: var(--navy); color: var(--stone); padding: 16px; border-radius: 2px; font-size: 14px; margin-top: 6px; transition: background .2s ease; }
.modal-submit-button:hover:not(:disabled) { background: var(--gold); color: var(--navy); }
.modal-submit-button:disabled { opacity: .65; cursor: wait; }
.modal-form-note { font-size: 12px; color: var(--muted); text-align: center; }
.booking-form-message { padding: 14px 16px; font-size: 13px; border-radius: 2px; }
.booking-form-message--success { background: #E9F0E4; color: #3B5A2C; }
.booking-form-message--error { background: #F5E4E0; color: #8A3B26; }
.hp-field { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; clip-path: inset(50%) !important; white-space: nowrap !important; }

/* DESTINATIONS PAGE */
.page-hero { padding: 160px var(--pad) 70px; max-width: var(--container); margin: 0 auto; }
.page-hero span { font-size: 13px; color: var(--gold-text); }
.page-hero h1 { font-size: clamp(36px,5vw,56px); color: var(--navy); margin: 14px 0 16px; }
.page-hero p { color: var(--muted); max-width: 60ch; font-size: 17px; }
.dest-group { padding-top: 0; padding-bottom: 70px; }
.dest-group h2 { font-size: 22px; color: var(--navy); margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.dest-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.dest-card { display: block; }
.dest-card-img { aspect-ratio: 5/4; overflow: hidden; margin-bottom: 14px; }
.dest-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dest-card:hover .dest-card-img img { transform: scale(1.05); }
.dest-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 6px; }
.dest-card p { font-size: 13px; color: var(--muted); }
.dest-card-link { display: inline-block; margin-top: 10px; color: var(--gold-text); font-size: 12px; font-weight: 500; }
.dest-page-cta { background: var(--paper); text-align: center; padding: 72px 0; }
.dest-page-cta h2 { color: var(--navy); font-size: 28px; margin-bottom: 12px; }
.dest-page-cta p { color: var(--muted); max-width: 52ch; margin: 0 auto 24px; }

/* LEGAL */
.legal { padding: 160px var(--pad) 100px; max-width: 760px; margin: 0 auto; }
.legal h1 { font-size: 34px; color: var(--navy); margin-bottom: 30px; }
.legal h2 { font-size: 19px; color: var(--navy); margin: 34px 0 12px; }
.legal p, .legal li { color: var(--muted); font-size: 15px; line-height: 1.75; margin-bottom: 12px; }
.legal ul { padding-left: 20px; list-style: disc; }
.legal a:not(.btn-ghost) { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; overflow-wrap: anywhere; }
.legal-note { background: var(--paper); border-left: 3px solid var(--gold-text); padding: 14px 16px; margin-top: 28px; }

/* RESPONSIVE */
@media (max-width: 1000px) { .nav-links { gap: 20px; } }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 80px; }
  .hero-copy { padding: 48px 24px 56px; order: 2; }
  .hero-image { height: 52vh; min-height: 360px; order: 1; }
  .about-grid, .contact-grid, .tour-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-image-tag { position: static; margin-top: 16px; max-width: none; }
  .about-facts { grid-template-columns: 1fr; gap: 18px; }
  .tours-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .dest-teaser-grid { grid-template-columns: repeat(3,1fr); }
  .testimonials-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .booking-card { position: static; }
  .tour-hero { height: 58vh; }
  .tour-hero-content { padding-bottom: 40px; }
}
@media (max-width: 600px) {
  section { padding: 76px 0; }
  .hero-copy h1 { max-width: none; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .tours-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .dest-teaser-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .booking-form-row { grid-template-columns: 1fr; }
  .booking-modal-panel { padding: 28px 22px; margin: 12px; max-height: calc(100vh - 24px); }
  .booking-card { padding: 26px 22px; }
  .booking-price-summary div { display: grid; grid-template-columns: 1fr; gap: 3px; }
  .booking-price-summary strong, .booking-price-basis strong { text-align: left; max-width: 100%; }
  .dest-cards { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; gap: 4px; }
  .contact-card span { grid-row: auto; margin-bottom: 4px; }
  .page-hero { padding-top: 140px; }
  .float-wa { right: 16px; bottom: 16px; }
}
@media (max-width: 560px) { .dest-teaser-grid { grid-template-columns: repeat(2,1fr); } }
