/* ==========================================================================
   Nampelkafes — hoja de estilos unica (sin build step, sin Tailwind).
   Escrita a mano replicando los tokens de diseno del sitio original.
   ========================================================================== */

/* ---- Reset base -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--warm);
    color: var(--graphite);
    font-family: var(--font-sans);
    line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); color: var(--forest); }
p { margin: 0; }
::selection { background: var(--copper); color: #fff; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* ---- Tokens de diseno --------------------------------------------------- */
:root {
    --forest: #18372f;
    --copper: #b96535;
    --sand: #f4eadc;
    --warm: #fffaf3;
    --graphite: #252927;

    --font-brand: "Cinzel", "Palatino Linotype", "Book Antiqua", Georgia, serif;
    --font-display: "Cormorant Garamond", "Palatino Linotype", "Book Antiqua", Georgia, serif;
    --font-sans: "Inter", "Segoe UI", Arial, sans-serif;

    --shadow-soft: 0 16px 50px rgba(24, 55, 47, 0.12);

    --w-3xl: 768px;
    --w-4xl: 896px;
    --w-5xl: 1024px;
    --w-6xl: 1152px;
    --w-7xl: 1280px;
}

/* ---- Layout helpers ------------------------------------------------------ */
.container { width: 100%; max-width: var(--w-7xl); margin: 0 auto; padding: 0 1rem; }
.container--3xl { max-width: var(--w-3xl); }
.container--4xl { max-width: var(--w-4xl); }
.container--5xl { max-width: var(--w-5xl); }
.container--6xl { max-width: var(--w-6xl); }
.container--7xl { max-width: var(--w-7xl); }

.section { padding: 4rem 1rem; }
.section.bg-sand { background: var(--sand); }
.section.bg-warm { background: var(--warm); }

@media (min-width: 640px) {
    .container, .section { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
    .container, .section { padding-left: 2rem; padding-right: 2rem; }
}

/* ---- Tipografia ----------------------------------------------------------- */
.eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--copper);
}
.section-heading { max-width: var(--w-3xl); margin: 0 auto 2rem; text-align: center; }
.section-heading h2 { font-size: 2rem; font-weight: 600; }
.section-heading__text { margin-top: 1rem; font-size: 1rem; line-height: 1.7; color: rgba(37, 41, 39, 0.75); }
@media (min-width: 768px) {
    .section-heading h2 { font-size: 3rem; }
    .section-heading__text { font-size: 1.125rem; }
}

/* ---- Botones ---------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}
.btn--sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn--forest { background: var(--forest); color: #fff; }
.btn--forest:hover { background: var(--copper); }
.btn--copper { background: var(--copper); color: #fff; }
.btn--copper:hover { background: #fff; color: var(--forest); }
.btn--white { background: #fff; color: var(--forest); }
.btn--white:hover { background: var(--sand); }
.btn--outline { background: #fff; color: var(--forest); border: 1px solid rgba(24, 55, 47, 0.15); }
.btn--outline:hover { border-color: var(--copper); color: var(--copper); }

/* ---- Tarjetas ----------------------------------------------------------- */
.card {
    background: #fff;
    border: 1px solid rgba(24, 55, 47, 0.1);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-soft);
}

/* ---- Header / nav -------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 250, 243, 0.95);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(24, 55, 47, 0.1);
}
.site-header__bar {
    max-width: var(--w-7xl);
    margin: 0 auto;
    padding: 0 1rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.75rem; color: var(--forest); min-width: 0; }
.brand img { width: 56px; height: 56px; border-radius: 999px; object-fit: contain; flex-shrink: 0; }
.brand span {
    font-family: var(--font-brand);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nav-desktop { display: none; align-items: center; gap: 1.5rem; font-size: 0.9rem; font-weight: 600; color: var(--graphite); }
.nav-desktop a:hover { color: var(--copper); }
.header-actions { display: none; align-items: center; gap: 0.75rem; }
.header-actions .icon-btn {
    display: inline-flex;
    border-radius: 999px;
    border: 1px solid rgba(24, 55, 47, 0.15);
    padding: 0.5rem;
    color: var(--forest);
}
.header-actions .icon-btn:hover { color: var(--copper); }

.hamburger-btn {
    display: inline-flex;
    border: none;
    background: none;
    border-radius: 999px;
    padding: 0.5rem;
    color: var(--forest);
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
}
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(24, 55, 47, 0.4);
    display: none;
}
.mobile-drawer.is-open { display: block; }
.mobile-drawer__panel {
    margin-left: auto;
    width: 320px;
    max-width: 88vw;
    height: 100%;
    background: var(--warm);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}
.mobile-drawer__close {
    margin-left: auto;
    border: none;
    background: none;
    border-radius: 999px;
    padding: 0.5rem;
    color: var(--forest);
    font-size: 1.5rem;
    cursor: pointer;
}
.mobile-drawer nav { margin-top: 2rem; display: grid; gap: 1rem; font-size: 1.1rem; font-weight: 600; color: var(--forest); }
.mobile-drawer nav a.btn { text-align: center; }

@media (min-width: 768px) {
    .nav-desktop, .header-actions { display: flex; }
    .mobile-menu-trigger { display: none; }
}

/* ---- Hero --------------------------------------------------------------- */
.hero { position: relative; min-height: 78vh; overflow: hidden; background: var(--forest); color: #fff; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(24,55,47,0.92), rgba(24,55,47,0.55) 55%, rgba(24,55,47,0));
}
.hero__content { position: relative; min-height: 78vh; display: flex; align-items: center; padding-top: 4rem; padding-bottom: 4rem; }
.hero__box { max-width: 640px; }
.hero__eyebrow { margin-bottom: 1rem; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--sand); }
.hero h1 { font-size: 2.75rem; font-weight: 600; line-height: 1.1; color: #fff; }
.hero__subtext { margin-top: 1.5rem; max-width: 560px; font-size: 1.1rem; line-height: 1.7; color: rgba(255,255,255,0.88); }
.hero__cta { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.hero__fineprint { margin-top: 1rem; font-size: 0.85rem; color: rgba(255,255,255,0.75); }
@media (min-width: 640px) {
    .hero__cta { flex-direction: row; }
}
@media (min-width: 768px) {
    .hero h1 { font-size: 4.5rem; }
}

/* Traslados / experiencia / destino hero band (mas bajo que el hero de portada) */
.page-hero {
    position: relative;
    min-height: 46vh;
    background: var(--forest);
    color: #fff;
    display: flex;
    align-items: flex-end;
}
.page-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.page-hero__overlay { position: absolute; inset: 0; background: rgba(24, 55, 47, 0.6); }
.page-hero__content { position: relative; padding: 3.5rem 0; }
.page-hero h1 { color: #fff; font-size: 2.5rem; font-weight: 600; }
.page-hero p { margin-top: 1rem; max-width: 640px; font-size: 1.1rem; color: rgba(255,255,255,0.85); }
@media (min-width: 768px) {
    .page-hero h1 { font-size: 4rem; }
}

/* ---- Grillas de secciones ------------------------------------------------- */
.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
    .grid--2 { grid-template-columns: repeat(2, 1fr); }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .grid--3 { grid-template-columns: repeat(3, 1fr); }
    .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.cta-strip { padding: 2rem 1rem; }
.cta-strip .grid { max-width: var(--w-5xl); margin: 0 auto; }
.cta-strip a {
    display: flex; align-items: center; justify-content: center; gap: 0.75rem;
    border-radius: 0.75rem; padding: 1.25rem; font-weight: 700; color: #fff;
}

/* ---- Service card --------------------------------------------------------- */
.service-card { padding: 1.5rem; }
.service-card__icon {
    display: inline-flex; margin-bottom: 1.25rem; border-radius: 999px;
    background: var(--sand); padding: 0.75rem; font-size: 1.25rem;
}
.service-card h3 { font-size: 1.4rem; font-weight: 600; }
.service-card p { margin-top: 0.75rem; line-height: 1.7; color: rgba(37, 41, 39, 0.72); }

/* ---- Destination / experience card ----------------------------------------- */
.destination-card, .experience-card { overflow: hidden; }
.destination-card__image, .experience-card__image { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sand); }
.experience-card__image { aspect-ratio: 4 / 3; }
.destination-card__image img, .experience-card__image img { width: 100%; height: 100%; object-fit: cover; }
.destination-card__body, .experience-card__body { padding: 1.25rem; }
.destination-card__body h3, .experience-card__body h3 { margin-top: 0.5rem; font-size: 1.4rem; font-weight: 600; }
.destination-card__body p, .experience-card__body p { margin-top: 0.75rem; font-size: 0.9rem; line-height: 1.6; color: rgba(37, 41, 39, 0.72); }
.destination-card__actions { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
@media (min-width: 640px) {
    .destination-card__actions { flex-direction: row; }
}
.experience-card__meta { margin-top: 0.75rem; display: grid; gap: 0.35rem; font-size: 0.85rem; color: rgba(37, 41, 39, 0.72); }

/* ---- Trust section -------------------------------------------------------- */
.trust-section { display: grid; gap: 0.75rem; grid-template-columns: 1fr; }
.trust-item {
    display: flex; align-items: center; gap: 0.75rem;
    background: #fff; border-radius: 0.75rem; padding: 1rem;
    color: var(--forest); font-weight: 700; box-shadow: var(--shadow-soft);
}
@media (min-width: 640px) { .trust-section { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-section { grid-template-columns: repeat(4, 1fr); } }

/* ---- Empty state / partners ------------------------------------------------ */
.empty-state { border: 1px solid rgba(24, 55, 47, 0.15); background: #fff; border-radius: 0.75rem; padding: 2rem; text-align: center; }
.empty-state h3 { font-size: 1.5rem; }
.empty-state p { margin-top: 0.5rem; color: rgba(37, 41, 39, 0.7); }
.partner-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .partner-grid { grid-template-columns: repeat(3, 1fr); } }
.partner-card { padding: 1.25rem; text-align: center; font-weight: 700; color: var(--forest); }
.partner-section__pitch { margin-top: 1.5rem; text-align: center; font-size: 1.1rem; font-weight: 600; color: var(--forest); }

/* ---- FAQ (details/summary) ------------------------------------------------ */
.faq-accordion { max-width: var(--w-3xl); margin: 0 auto; border: 1px solid rgba(24, 55, 47, 0.1); border-radius: 0.75rem; background: #fff; overflow: hidden; }
.faq-accordion__item { border-bottom: 1px solid rgba(24, 55, 47, 0.1); }
.faq-accordion__item:last-child { border-bottom: none; }
.faq-accordion__item summary {
    padding: 1rem 1.25rem; font-weight: 700; color: var(--forest); cursor: pointer;
    list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-accordion__item summary::-webkit-details-marker { display: none; }
.faq-accordion__item summary::after { content: "▾"; transition: transform 0.15s ease; color: var(--copper); }
.faq-accordion__item[open] summary::after { transform: rotate(180deg); }
.faq-accordion__item p { padding: 0 1.25rem 1.25rem; line-height: 1.7; color: rgba(37, 41, 39, 0.72); }

/* ---- Gallery preview (portada) --------------------------------------------- */
.gallery-preview { column-count: 1; column-gap: 1rem; }
.gallery-preview__item { break-inside: avoid; margin-bottom: 1rem; border-radius: 0.75rem; overflow: hidden; position: relative; background: var(--sand); }
.gallery-preview__item figcaption {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 0.5rem 0.75rem;
    background: linear-gradient(to top, rgba(24,55,47,0.75), transparent);
    color: #fff; font-size: 0.8rem; font-weight: 600;
}
@media (min-width: 640px) { .gallery-preview { column-count: 2; } }
@media (min-width: 1024px) { .gallery-preview { column-count: 3; } }

/* ---- Newsletter / CTA final ------------------------------------------------ */
.newsletter-section { background: var(--forest); color: #fff; padding: 3.5rem 1rem; }
.newsletter-section__inner { text-align: center; }
.newsletter-section h2 { color: #fff; font-size: 2rem; }
.newsletter-section p { margin-top: 1rem; color: rgba(255,255,255,0.75); }
@media (min-width: 768px) { .newsletter-section h2 { font-size: 3rem; } }

/* ---- Politicas (terminos / privacidad / cancelaciones) --------------------- */
.policy-list { padding: 1.5rem; }
.policy-list ul { display: grid; gap: 1rem; color: rgba(37, 41, 39, 0.75); }
.policy-list li { padding-bottom: 1rem; border-bottom: 1px solid rgba(24, 55, 47, 0.1); }
.policy-list li:last-child { border-bottom: none; padding-bottom: 0; }

/* ---- Footer --------------------------------------------------------------- */
.site-footer { background: var(--forest); color: #fff; }
.site-footer__grid { max-width: var(--w-7xl); margin: 0 auto; padding: 3rem 1rem; display: grid; gap: 2rem; grid-template-columns: 1fr; }
.site-footer .brand-block { display: flex; align-items: center; gap: 0.75rem; }
.site-footer .brand-block img { width: 76px; height: 76px; border-radius: 999px; background: #fff; object-fit: contain; }
.site-footer .brand-block p { font-family: var(--font-brand); font-size: 1.5rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.28em; }
.site-footer__desc { margin-top: 1rem; max-width: 420px; color: rgba(255,255,255,0.75); }
.site-footer__legal { margin-top: 1.25rem; font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.site-footer h4 { color: #fff; font-family: var(--font-sans); font-weight: 700; }
.site-footer__links { margin-top: 1rem; display: grid; gap: 0.5rem; color: rgba(255,255,255,0.75); }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1rem; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }

/* ---- Boton flotante de WhatsApp --------------------------------------------- */
.whatsapp-float {
    position: fixed; bottom: 1rem; right: 1rem; z-index: 40;
    display: inline-flex; align-items: center; gap: 0.5rem;
    height: 48px; padding: 0 1rem; border-radius: 999px;
    background: var(--forest); color: #fff; font-weight: 700; font-size: 0.9rem;
    box-shadow: var(--shadow-soft);
}
.whatsapp-float:hover { background: var(--copper); }
.whatsapp-float span { display: none; }
@media (min-width: 640px) {
    .whatsapp-float { height: 56px; padding: 0 1.25rem; }
    .whatsapp-float span { display: inline; }
}

/* ---- Banner de cookies ------------------------------------------------------ */
.cookie-banner {
    position: fixed; bottom: 1rem; left: 1rem; z-index: 40; max-width: 380px;
    border: 1px solid rgba(24, 55, 47, 0.1); background: #fff; border-radius: 0.75rem;
    padding: 1rem; font-size: 0.9rem; color: var(--graphite); box-shadow: var(--shadow-soft);
    display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner button {
    margin-top: 0.75rem; border: none; border-radius: 999px; background: var(--forest);
    color: #fff; font-weight: 700; padding: 0.5rem 1rem; cursor: pointer;
}

/* ---- Formularios (contacto / reserva) --------------------------------------- */
.form-card { background: #fff; border: 1px solid rgba(24, 55, 47, 0.1); border-radius: 0.75rem; padding: 1.25rem; box-shadow: var(--shadow-soft); }
.form-field { display: block; font-size: 0.9rem; font-weight: 700; color: var(--forest); margin-top: 1rem; }
.form-field:first-child { margin-top: 0; }
.form-field input, .form-field select, .form-field textarea {
    margin-top: 0.35rem; width: 100%; border-radius: 0.5rem; border: 1px solid rgba(24, 55, 47, 0.15);
    padding: 0.75rem; font-family: inherit; font-size: 1rem; background: #fff; color: var(--graphite);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none; border-color: var(--copper); box-shadow: 0 0 0 3px rgba(185, 101, 53, 0.2);
}
.form-field textarea { min-height: 7rem; }
.form-error { display: block; margin-top: 0.35rem; font-size: 0.85rem; color: #b91c1c; }
.form-note { margin-top: 0.75rem; font-size: 0.9rem; line-height: 1.6; color: rgba(37, 41, 39, 0.7); }
.honeypot-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.checkbox-field { margin-top: 1.25rem; font-size: 0.9rem; color: rgba(37, 41, 39, 0.8); }
.checkbox-field label { display: flex; align-items: flex-start; gap: 0.6rem; }
.checkbox-field input { margin-top: 0.2rem; }
@media (min-width: 768px) {
    .span-2 { grid-column: 1 / -1; }
}

/* ---- Filtros por categoria (experiencias / galeria) -------------------------- */
.filter-row { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin: 0 auto 2rem; max-width: var(--w-7xl); }
.filter-pill {
    border: 1px solid rgba(24, 55, 47, 0.15); background: #fff; color: var(--forest);
    border-radius: 999px; padding: 0.5rem 1.1rem; font-size: 0.85rem; font-weight: 700;
    cursor: pointer; transition: all 0.15s ease;
}
.filter-pill:hover { border-color: var(--copper); color: var(--copper); }
.filter-pill.is-active { background: var(--forest); border-color: var(--forest); color: #fff; }

/* ---- Pagina de detalle (destino / experiencia) -------------------------------- */
.detail-layout { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .detail-layout { grid-template-columns: 1fr 360px; align-items: start; } }
.detail-block { margin-bottom: 2.5rem; }
.detail-block h2 { font-size: 1.9rem; font-weight: 600; }
.detail-block > .detail-block__body { margin-top: 1.25rem; }
.detail-block__text { display: grid; gap: 1rem; font-size: 1.1rem; line-height: 1.8; color: rgba(37, 41, 39, 0.75); }
.icon-list { margin-top: 1.25rem; display: grid; gap: 0.75rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .icon-list { grid-template-columns: repeat(2, 1fr); } }
.icon-list__item {
    display: flex; align-items: center; gap: 0.75rem; border-radius: 0.75rem;
    background: #fff; padding: 1rem; color: var(--forest); font-weight: 600; box-shadow: var(--shadow-soft);
}
.icon-list__item .icon { color: var(--copper); }
.info-list { margin-top: 1.5rem; }
.info-list h3 { font-size: 1.3rem; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; }
.info-list h3 .icon { color: var(--copper); }
.info-list ul { margin-top: 0.75rem; display: grid; gap: 0.5rem; font-size: 0.9rem; color: rgba(37, 41, 39, 0.75); }
.info-list li { background: var(--sand); border-radius: 0.5rem; padding: 0.6rem 0.75rem; }
.info-list--white li { background: #fff; box-shadow: var(--shadow-soft); }
.detail-gallery { margin-top: 1.25rem; display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .detail-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .detail-gallery { grid-template-columns: repeat(3, 1fr); } }
.detail-gallery__item { aspect-ratio: 4 / 3; overflow: hidden; border-radius: 0.75rem; background: var(--sand); }
.detail-gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.detail-gallery--2col { grid-template-columns: 1fr; }
@media (min-width: 640px) { .detail-gallery--2col { grid-template-columns: repeat(2, 1fr); } }

.detail-sidebar {
    border: 1px solid rgba(24, 55, 47, 0.1); background: #fff; border-radius: 0.75rem;
    padding: 1.5rem; box-shadow: var(--shadow-soft);
}
@media (min-width: 1024px) { .detail-sidebar { position: sticky; top: 6rem; } }
.detail-sidebar h2 { font-size: 1.7rem; }
.detail-sidebar__note {
    margin-top: 1.25rem; display: flex; gap: 0.75rem; align-items: flex-start;
    border: 1px solid rgba(185, 101, 53, 0.25); background: var(--sand); border-radius: 0.75rem; padding: 1rem;
}
.detail-sidebar__note p { font-size: 0.9rem; line-height: 1.6; color: rgba(37, 41, 39, 0.75); }
.detail-sidebar dl { margin: 1.25rem 0 0; display: grid; gap: 0.75rem; font-size: 0.9rem; color: rgba(37, 41, 39, 0.75); }
.detail-sidebar dt { font-weight: 700; color: var(--forest); }
.detail-sidebar dd { margin: 0.15rem 0 0; }
.detail-sidebar .btn { width: 100%; margin-top: 0.75rem; }

.faq-box { margin-top: 2rem; background: var(--sand); border-radius: 0.75rem; padding: 1.5rem; }
.faq-box h2 { font-size: 1.8rem; }
.faq-box__item { margin-top: 1rem; }
.faq-box__item h3 { font-weight: 700; color: var(--forest); }
.faq-box__item p { margin-top: 0.25rem; color: rgba(37, 41, 39, 0.72); }

.closing-cta { background: var(--forest); color: #fff; padding: 4rem 1rem; text-align: center; }
.closing-cta__inner { max-width: var(--w-4xl); margin: 0 auto; }
.closing-cta .icon { color: var(--copper); }
.closing-cta h2 { color: #fff; font-size: 2.2rem; }
.closing-cta p { margin-top: 1rem; color: rgba(255,255,255,0.75); }
.closing-cta .btn { margin-top: 2rem; }

/* ---- Galeria completa: grilla filtrable + lightbox (galeria.php) ------------- */
.gallery-grid { column-count: 1; column-gap: 1rem; margin-top: 0; }
.gallery-grid__item {
    display: block; width: 100%; break-inside: avoid; margin-bottom: 1rem;
    border-radius: 0.75rem; overflow: hidden; position: relative; background: var(--sand);
    border: none; padding: 0; cursor: pointer; font: inherit; text-align: left;
}
.gallery-grid__item img { width: 100%; display: block; }
.gallery-grid__caption {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 0.5rem 0.75rem;
    background: linear-gradient(to top, rgba(24,55,47,0.75), transparent);
    color: #fff; font-size: 0.8rem; font-weight: 600;
}
@media (min-width: 640px) { .gallery-grid { column-count: 2; } }
@media (min-width: 1024px) { .gallery-grid { column-count: 3; } }

.gallery-lightbox {
    display: none;
    position: fixed; inset: 0; z-index: 60;
    background: rgba(24, 55, 47, 0.92);
    align-items: center; justify-content: center;
    padding: 1.5rem;
}
.gallery-lightbox:not([hidden]) { display: flex; }
.gallery-lightbox__figure { max-width: 64rem; width: 86vw; text-align: center; }
.gallery-lightbox__figure img { max-height: 72vh; width: 100%; object-fit: contain; margin: 0 auto; }
.gallery-lightbox__figure figcaption { margin-top: 1rem; color: #fff; font-size: 0.9rem; }
.gallery-lightbox__close {
    position: absolute; top: 1rem; right: 1rem; border: none; background: rgba(255,255,255,0.1);
    color: #fff; width: 44px; height: 44px; border-radius: 999px; font-size: 1.25rem; cursor: pointer;
}
.gallery-lightbox__nav {
    position: absolute; top: 50%; transform: translateY(-50%); border: none; background: rgba(255,255,255,0.1);
    color: #fff; width: 48px; height: 48px; border-radius: 999px; font-size: 1.75rem; cursor: pointer; line-height: 1;
}
.gallery-lightbox__nav--prev { left: 1rem; }
.gallery-lightbox__nav--next { right: 1rem; }
.gallery-lightbox__close:hover, .gallery-lightbox__nav:hover { background: var(--copper); }

/* ---- Info page grids (contacto) --------------------------------------------- */
.info-links { display: grid; gap: 1rem; }
.info-links a { display: flex; align-items: center; gap: 0.75rem; border-radius: 0.75rem; padding: 1.25rem; font-weight: 700; }
.info-links a.is-primary { background: var(--forest); color: #fff; }
.info-links a.is-secondary { background: #fff; color: var(--forest); box-shadow: var(--shadow-soft); }
.info-box { background: var(--sand); border-radius: 0.75rem; padding: 1.25rem; color: rgba(37, 41, 39, 0.75); }
.info-box strong { color: var(--forest); }
.two-col { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; align-items: start; } }
