:root {
    --sea: #0B4F4A;
    --sea-dark: #073531;
    --gold: #C9953A;
    --clay: #A07A6A;
    --sun: #FFC93C;
    --sand: #FDF8F0;
    --ink: #1A1A1A;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Poppins', sans-serif; background: var(--sand); color: var(--ink); }
h1, h2, h3, .nav-logo-text { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.02em; }

/* ── Navigation ── */
nav {
    position: absolute; top: 0; left: 0; right: 0; z-index: 10;
    display: flex; align-items: center; justify-content: space-between;
    padding: 28px 60px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 52px; width: auto; border-radius: 8px; }
.nav-logo-text { color: var(--sand); font-size: 20px; font-weight: 600; line-height: 1.1; }
.nav-logo-text span { display: block; font-family: 'Poppins'; text-transform: none; font-size: 11px; letter-spacing: 0.15em; color: var(--sun); font-weight: 400; margin-top: 2px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { color: var(--sand); text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 0.03em; opacity: 0.92; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-cta { background: var(--gold); color: var(--sand); border: none; padding: 12px 26px; font-family: 'Poppins'; font-weight: 600; font-size: 14px; border-radius: 100px; cursor: pointer; letter-spacing: 0.02em; text-decoration: none; display: inline-block; transition: transform 0.2s, box-shadow 0.2s; }
.nav-cta.mobile-visible,
#langToggleMobile { display: none; }
.nav-cta:hover { box-shadow: 0 4px 14px rgba(201,149,58,0.4); }
.hamburger { display: none; background: none; border: none; color: var(--sand); font-size: 28px; cursor: pointer; padding: 4px; z-index: 20; }
.lang-toggle { background: rgba(253,248,240,0.15); border: 1px solid rgba(253,248,240,0.3); color: var(--sand); padding: 6px 14px; border-radius: 100px; font-family: 'Poppins'; font-size: 12px; font-weight: 600; cursor: pointer; letter-spacing: 0.05em; transition: background 0.2s; white-space: nowrap; }
.lang-toggle:hover { background: rgba(253,248,240,0.25); }
#langToggleMobile { margin-top: 16px; width: 100%; }
.lang-float { position: fixed; bottom: 24px; right: 24px; z-index: 100; background: var(--sea-dark); border: 1px solid rgba(253,248,240,0.2); color: var(--sand); padding: 10px 18px; border-radius: 100px; font-family: 'Poppins'; font-size: 13px; font-weight: 700; cursor: pointer; letter-spacing: 0.08em; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.lang-float:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.3); }

/* ── Hero ── */
.hero { position: relative; height: 100vh; min-height: 680px; display: flex; align-items: center; overflow: hidden; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,53,49,0.55) 0%, rgba(7,53,49,0.15) 35%, rgba(7,53,49,0.75) 100%); }
.hero-content { position: relative; z-index: 2; padding: 0 60px; max-width: 680px; }
.hero-eyebrow { color: var(--sun); font-weight: 600; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 18px; display: block; }
.hero h1 { color: var(--sand); font-size: 64px; line-height: 1.02; font-weight: 700; margin-bottom: 22px; text-shadow: 0 2px 24px rgba(0,0,0,0.25); }
.hero h1 em { color: var(--sun); font-style: normal; }
.hero p { color: var(--sand); font-size: 17px; line-height: 1.6; opacity: 0.94; max-width: 480px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: var(--sand); border: none; padding: 16px 34px; font-family: 'Poppins'; font-weight: 600; font-size: 15px; border-radius: 100px; cursor: pointer; text-decoration: none; display: inline-block; transition: transform 0.2s, box-shadow 0.2s; }
.btn-primary:hover { box-shadow: 0 4px 14px rgba(201,149,58,0.4); }
.btn-ghost { background: transparent; color: var(--sand); border: 1.5px solid rgba(253,248,240,0.5); padding: 16px 34px; font-family: 'Poppins'; font-weight: 600; font-size: 15px; border-radius: 100px; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s, border-color 0.2s; }
.btn-ghost:hover { background: rgba(253,248,240,0.1); border-color: var(--sand); }
.scroll-cue { position: absolute; bottom: 36px; left: 60px; z-index: 2; color: var(--sand); font-size: 12px; letter-spacing: 0.15em; opacity: 0.8; display: flex; align-items: center; gap: 10px; }
.scroll-cue::before { content: ''; width: 32px; height: 1px; background: var(--sand); opacity: 0.7; }

/* ── Tours Section ── */
.tours { padding: 110px 60px; background: var(--sand); }
.tours-head { max-width: 600px; margin-bottom: 56px; }
.tours-eyebrow { color: var(--clay); font-weight: 600; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; }
.tours-head h2 { font-size: 40px; color: var(--sea-dark); margin-top: 14px; line-height: 1.1; }
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.tour-card { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 1px 3px rgba(11,79,74,0.08); transition: transform 0.2s ease; }
.tour-card:hover { transform: translateY(-4px); }

.tour-img-wrap { position: relative; height: 230px; overflow: hidden; }
.img-carousel { position: relative; width: 100%; height: 100%; }
.img-carousel .slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.6s ease; pointer-events: none; }
.img-carousel .slide.active { opacity: 1; pointer-events: auto; }
.carousel-arrows { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); display: flex; justify-content: space-between; padding: 0 8px; pointer-events: none; z-index: 2; }
.carousel-arrow { background: rgba(255,255,255,0.8); border: none; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 16px; color: var(--sea-dark); pointer-events: auto; transition: background 0.2s; box-shadow: 0 2px 6px rgba(0,0,0,0.15); }
.carousel-arrow:hover { background: #fff; }
.carousel-dots-mini { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }
.carousel-dots-mini button { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,0.6); cursor: pointer; padding: 0; transition: background 0.2s, width 0.2s; }
.carousel-dots-mini button.active { background: #fff; width: 20px; border-radius: 10px; }
.tour-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }
.tour-price { color: var(--sea); font-weight: 600; font-size: 13px; }
.tour-price strong { color: var(--gold); font-size: 17px; }
.tour-body { padding: 26px 26px 28px; }
.tour-body .tour-loc { font-size: 12px; color: var(--clay); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.tour-body h3 { font-size: 22px; color: var(--sea-dark); margin-bottom: 10px; }
.tour-meta { display: flex; gap: 16px; margin-bottom: 16px; }
.tour-meta span { font-size: 12.5px; color: #6b6b68; display: flex; align-items: center; gap: 5px; }
.tour-body p.desc { font-size: 13.5px; color: #55554f; line-height: 1.6; margin-bottom: 20px; }
.tour-cta { display: inline-flex; align-items: center; gap: 8px; color: var(--sea); font-weight: 600; font-size: 14px; text-decoration: none; border-bottom: 2px solid var(--gold); padding-bottom: 3px; }

/* ── Reviews ── */
.reviews { padding: 100px 60px; background: var(--sand); }
.reviews-head { text-align: center; margin-bottom: 56px; }
.reviews-head .tours-eyebrow { color: var(--clay); }
.reviews-head h2 { font-size: 36px; color: var(--sea-dark); margin-top: 14px; line-height: 1.1; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card { background: #fff; padding: 32px; border-radius: 18px; box-shadow: 0 1px 3px rgba(11,79,74,0.08); }
.review-stars { color: var(--sun); font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.review-card blockquote { font-size: 14px; line-height: 1.7; color: #55554f; font-style: italic; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--sea); color: var(--sand); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 16px; }
.review-author-info strong { display: block; font-size: 13px; color: var(--sea-dark); }
.review-author-info span { font-size: 11px; color: #8a8a86; }

/* ── Strip (Culinary) ── */
.strip { display: grid; grid-template-columns: 1fr 1fr; align-items: center; background: var(--sea); color: var(--sand); }
.strip-img { height: 460px; overflow: hidden; }
.strip-img img { width: 100%; height: 100%; object-fit: cover; }
.strip-text { padding: 60px 70px; }
.strip-text .tours-eyebrow { color: var(--sun); }
.strip-text h2 { font-size: 34px; margin: 14px 0 20px; line-height: 1.15; }
.strip-text p { font-size: 15px; line-height: 1.7; opacity: 0.88; max-width: 420px; }

/* ── Footer ── */
footer { background: var(--sea-dark); color: var(--sand); padding: 60px 60px 0; font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-grid h4 { font-family: 'Oswald', sans-serif; text-transform: uppercase; font-size: 14px; letter-spacing: 0.08em; margin-bottom: 16px; color: var(--sun); }
.footer-grid p { opacity: 0.8; line-height: 1.8; }
.footer-grid a { color: var(--sand); opacity: 0.8; text-decoration: none; display: block; line-height: 2; transition: opacity 0.2s; }
.footer-grid a:hover { opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(253,248,240,0.1); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; opacity: 0.7; font-size: 12px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .tours-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links { position: fixed; top: 0; right: -280px; width: 280px; height: 100vh; background: var(--sea-dark); flex-direction: column; gap: 0; padding: 100px 36px 36px; transition: right 0.35s ease; z-index: 15; }
    .nav-links.open { right: 0; }
    .nav-links a { font-size: 17px; padding: 14px 0; border-bottom: 1px solid rgba(253,248,240,0.08); }
    nav > .nav-cta { display: none; }
    nav .nav-cta.mobile-visible { display: inline-block; margin-top: 20px; text-align: center; }
    .nav-links.open #langToggleMobile { display: block; }
    .lang-float.menu-open { display: none; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 680px) {
    .tours-grid { grid-template-columns: 1fr; }
    .tours { padding: 80px 24px; }
    .reviews { padding: 80px 24px; }
    .reviews-head h2 { font-size: 28px; }
    nav { padding: 20px 24px; }
    .nav-links { display: none; }
    .nav-links.open { display: flex; }
    .hero-content { padding: 0 24px; }
    .hero h1 { font-size: 38px; }
    .hero p { font-size: 15px; }
    .hero-actions { flex-direction: column; }
    .hero-actions a, .hero-actions button { width: 100%; text-align: center; }
    .strip { grid-template-columns: 1fr; }
    .strip-img { height: 240px; }
    .strip-text { padding: 40px 28px; }
    .strip-text h2 { font-size: 26px; }
    footer { padding: 40px 24px 0; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Botón Reservar ── */
.btn-reservar {
    width: 100%; margin-top: 14px; background: var(--sea); color: var(--sand);
    border: none; padding: 13px; border-radius: 100px; font-family: 'Poppins';
    font-weight: 600; font-size: 14px; cursor: pointer; transition: background 0.2s;
}
.btn-reservar:hover { background: var(--sea-dark); }

/* ── Modal de reserva ── */
.booking-overlay {
    display: none; position: fixed; inset: 0; z-index: 200;
    background: rgba(7,53,49,0.65); align-items: center; justify-content: center;
    padding: 20px;
}
.booking-overlay.open { display: flex; }
.booking-modal {
    background: var(--sand); border-radius: 20px; padding: 36px 32px;
    max-width: 440px; width: 100%; max-height: 90vh; overflow-y: auto;
    position: relative;
}
.booking-close {
    position: absolute; top: 18px; right: 18px; background: none; border: none;
    font-size: 18px; color: var(--sea-dark); cursor: pointer; opacity: 0.6;
}
.booking-close:hover { opacity: 1; }
.booking-tour-name {
    display: block; color: var(--clay); font-weight: 600; font-size: 12px;
    letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px;
}
.booking-modal h3 {
    font-size: 24px; color: var(--sea-dark); margin-bottom: 22px; text-transform: none;
}
.booking-modal label {
    display: block; font-size: 12.5px; font-weight: 600; color: var(--sea-dark);
    margin: 14px 0 6px;
}
.booking-modal input {
    width: 100%; padding: 11px 14px; border-radius: 10px; border: 1.5px solid #e3ddd0;
    font-family: 'Poppins'; font-size: 14px; color: var(--ink); background: #fff;
}
.booking-modal input:focus { outline: none; border-color: var(--gold); }
.booking-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.booking-row label { margin-top: 0; }
.booking-total {
    display: flex; justify-content: space-between; align-items: center;
    background: var(--sea); color: var(--sand); padding: 16px 18px; border-radius: 12px;
    margin-top: 22px; font-size: 13px; font-weight: 600;
}
.booking-total strong { font-size: 22px; color: var(--sun); }
.booking-submit {
    width: 100%; margin-top: 18px; background: #25D366; color: #fff; border: none;
    padding: 15px; border-radius: 100px; font-family: 'Poppins'; font-weight: 600;
    font-size: 15px; cursor: pointer; transition: filter 0.2s;
}
.booking-submit:hover { filter: brightness(0.95); }
.booking-note { font-size: 11.5px; color: #8a8a86; text-align: center; margin-top: 12px; line-height: 1.5; }

@media (max-width: 680px) {
    .booking-modal { padding: 28px 22px; }
    .booking-row { grid-template-columns: 1fr; gap: 0; }
}
