﻿:root {
    --moss: #3F4B3D;
    --adventure: #7C2A23;
    --ochre: #7C2A23;
    --terracotta-light: #A3554C;
    --charcoal: #3B3B3B;
    --snow: #F7F5E9;
    --sand: #E4E2D6;
    --cliff: #5B4A42;
    --shadow: 0 18px 60px rgba(41, 31, 28, 0.2);
    --radius-lg: 32px;
    --radius-md: 24px;
    --radius-sm: 16px;
    --container: min(1180px, calc(100vw - 40px));
    --page-bg-current: #cdcdac;
    --section-bg-light: #f7f5e9;
    --section-bg-moss: #f7f5e9;
}

* {
    box-sizing: border-box;
}

:root {
    --topbar-offset: 84px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--charcoal);
    background: var(--page-bg-current);
    padding-top: var(--topbar-offset);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.site-shell {
    position: relative;
    overflow: clip;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    margin: 0;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid rgba(63, 75, 61, 0.12);
    border-radius: 0;
    background: rgba(244, 247, 246, 0.98);
    box-shadow: 0 10px 24px rgba(59, 59, 59, 0.1);
}

.topbar.is-scrolled {
    background: rgba(244, 247, 246, 1);
    border-radius: 0;
    border-color: rgba(63, 75, 61, 0.14);
    box-shadow: 0 10px 24px rgba(59, 59, 59, 0.14);
}

.topbar .brand-copy {
    min-width: 0;
}

.topbar .brand-name {
    font-size: 0.96rem;
}

.topbar .brand-copy small {
    font-size: 0.7rem;
    letter-spacing: 0.02em;
    line-height: 1.25;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(63, 75, 61, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--charcoal);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 220ms ease, opacity 220ms ease;
}

.topbar.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.topbar.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.topbar.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.brand-mark {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0;
    background: none;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-copy strong {
    font-family: "Herculanum", "Copperplate Gothic", "Copperplate", "Palatino Linotype", serif;
    font-size: 1rem;
}

.brand-name {
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.92rem;
}

.brand-copy small {
    color: rgba(59, 59, 59, 0.72);
}

.topnav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.95rem;
}

.topnav a {
    position: relative;
}

.topnav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--ochre);
    transition: transform 180ms ease;
}

.topnav a:hover::after,
.topnav a:focus-visible::after {
    transform: scaleX(1);
}

.topnav-mobile-brand {
    display: none;
}

.topnav-close {
    display: none;
}

/* â”€â”€ Dropdown de expediciones â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.topnav-dropdown {
    position: relative;
}

.topnav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 0.95rem;
    color: var(--charcoal);
    cursor: pointer;
    transition: color 160ms ease;
}

.topnav-dropdown-trigger:hover,
.topnav-dropdown-trigger:focus-visible {
    color: var(--moss);
    outline: none;
}

.topnav-dropdown-caret {
    font-size: 0.7rem;
    transition: transform 220ms ease;
    display: inline-block;
}

.topnav-dropdown.is-open .topnav-dropdown-caret {
    transform: rotate(180deg);
}

.topnav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    margin: 0;
    padding: 8px;
    list-style: none;
    border-radius: 18px;
    border: 1px solid rgba(63, 75, 61, 0.12);
    background: rgba(244, 247, 246, 0.97);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 36px rgba(59, 59, 59, 0.14);
    z-index: 30;
}

.topnav-dropdown.is-open .topnav-dropdown-menu {
    display: grid;
    gap: 2px;
    animation: dropdown-in 180ms ease;
}

@keyframes dropdown-in {
    from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.topnav-dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--charcoal);
    transition: background 150ms ease, color 150ms ease;
}

.topnav-dropdown-menu a::after {
    display: none;
}

.topnav-dropdown-menu a:hover,
.topnav-dropdown-menu a:focus-visible {
    background: rgba(63, 75, 61, 0.1);
    color: var(--moss);
    outline: none;
}

.topnav-docs-dropdown .topnav-dropdown-menu {
    min-width: 220px;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border-radius: 999px;
    border: 1px solid rgba(63, 75, 61, 0.18);
    background: rgba(255, 255, 255, 0.82);
}

.lang-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    min-width: 44px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--moss);
    font: inherit;
    font-weight: 800;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease;
}

.lang-button img {
    width: 22px;
    height: 16px;
    display: block;
    border-radius: 2px;
    object-fit: cover;
}

.lang-button.is-active {
    background: var(--moss);
    color: var(--snow);
}

#google_translate_element {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

body > .skiptranslate,
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: #fff;
    background: var(--adventure);
    
}

.button-secondary {
    color: var(--moss);
    border-color: rgba(63, 75, 61, 0.16);
    background: rgba(244, 247, 246, 0.6);
}

.button-compact {
    min-height: 44px;
    padding: 0 18px;
}

.hero {
    position: relative;
    width: var(--container);
    min-height: calc(100vh - 110px);
    margin: 22px auto 0;
    padding: 84px 56px 52px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.7fr);
    align-items: end;
    gap: 28px;
    border-radius: 44px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: linear-gradient(180deg, rgba(21, 34, 28, 0.14), rgba(21, 34, 28, 0.42));
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-slide,
.hero-ridge {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 900ms ease;
    overflow: hidden;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-slide-1 {
    background: none;
}

.hero-slide-1::after {
    background:
        linear-gradient(180deg, rgba(10, 18, 14, 0.22) 0%, rgba(10, 18, 14, 0.62) 100%),
        linear-gradient(130deg, rgba(244, 247, 246, 0.1), rgba(124, 42, 35, 0.1) 40%, rgba(63, 75, 61, 0.5));
}

.hero-slide-2 {
    background: none;
}

.hero-slide-2::after {
    background:
        linear-gradient(180deg, rgba(15, 24, 20, 0.24) 0%, rgba(15, 24, 20, 0.68) 100%),
        radial-gradient(circle at 76% 18%, rgba(244, 247, 246, 0.28), transparent 18%);
}

.hero-slide-3 {
    background: none;
}

.hero-slide-3::after {
    background:
        linear-gradient(180deg, rgba(11, 15, 22, 0.24) 0%, rgba(11, 15, 22, 0.62) 100%),
        radial-gradient(circle at 32% 24%, rgba(124, 42, 35, 0.26), transparent 16%);
}

.hero-ridge-back {
    inset: auto -5% -4% -5%;
    height: 43%;
    background: linear-gradient(180deg, rgba(56, 74, 62, 0.22), rgba(29, 46, 35, 0.9));
    clip-path: polygon(0% 100%, 0% 62%, 11% 48%, 23% 56%, 34% 31%, 49% 58%, 63% 39%, 74% 51%, 88% 26%, 100% 58%, 100% 100%);
}

.hero-ridge-front {
    inset: auto -5% -2% -5%;
    height: 32%;
    background: linear-gradient(180deg, rgba(134, 103, 64, 0.25), rgba(48, 35, 23, 0.86));
    clip-path: polygon(0% 100%, 0% 80%, 14% 62%, 29% 74%, 45% 51%, 58% 76%, 71% 60%, 83% 76%, 100% 50%, 100% 100%);
}

.hero-content,
.hero-panel {
    position: relative;
    z-index: 1;
}

.hero-content {
    align-self: start;
    margin-top: 28px;
}

.eyebrow {
    margin: 0 0 14px;
    color: rgba(244, 247, 246, 0.82);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 800;
}

.hero h1,
.section h2,
.panel-card h2,
.cta-shell h2 {
    margin: 0;
    font-family: "Herculanum", "Copperplate Gothic", "Copperplate", "Palatino Linotype", serif;
    font-weight: 700;
    line-height: 0.98;
}

.hero h1 {
    max-width: 10ch;
    color: #fff;
    font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.hero-title {
    font-family: "Herculanum", "Copperplate Gothic", "Copperplate", "Palatino Linotype", serif;
}

.hero-copy {
    max-width: 56ch;
    margin: 20px 0 0;
    font-size: 1.08rem;
    line-height: 1.72;
    color: rgba(244, 247, 246, 0.86);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-highlights {
    display: grid;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    color: rgba(244, 247, 246, 0.92);
}

.hero-highlights li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.hero-highlights li::before {
    content: "";
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    margin-top: 0.45rem;
    border-radius: 999px;
    background: var(--adventure);
}

.hero-panel {
    display: grid;
    gap: 16px;
    align-self: start;
    margin-top: 8px;
}

.hero-panel .hero-actions {
    margin-top: 0;
    display: grid;
    gap: 12px;
}

.hero-panel .hero-actions .button {
    width: 100%;
}

.panel-card {
    padding: 26px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-card-live {
    color: var(--snow);
    background: linear-gradient(180deg, rgba(59, 59, 59, 0.46), rgba(59, 59, 59, 0.18));
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.panel-card-proof {
    background: rgba(244, 247, 246, 0.88);
}

.panel-kicker,
.proof-tag,
.story-label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
}

.panel-kicker {
    background: rgba(244, 247, 246, 0.14);
}

.proof-tag {
    color: var(--moss);
    background: rgba(124, 42, 35, 0.18);
}

.panel-card p {
    margin: 14px 0 0;
    line-height: 1.7;
}

.trust-strip,
.section,
.footer {
    width: var(--container);
    margin-inline: auto;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.trust-strip div {
    padding: 22px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(63, 75, 61, 0.08);
}

.trust-strip strong,
.testimonial cite,
.story-copy h3,
.experience-card h3,
.feature-list h3,
.visual-card h3 {
    display: block;
    font-weight: 800;
}

.trust-strip span {
    display: block;
    margin-top: 8px;
    color: rgba(59, 59, 59, 0.78);
    line-height: 1.65;
}

.section {
    padding: 28px 28px 28px;
    margin-top: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(63, 75, 61, 0.08);
    background: var(--section-bg-light);
    box-shadow: 0 18px 36px rgba(59, 59, 59, 0.06);
}

main > .section:nth-of-type(even) {
    background: var(--section-bg-moss);
    border-color: rgba(63, 75, 61, 0.22);
}

.section-heading {
    max-width: 760px;
}

.section-heading .eyebrow,
.section-cta .eyebrow,
.differential-copy .eyebrow {
    color: var(--ochre);
}

.section h2,
.cta-shell h2 {
    font-size: clamp(2.3rem, 4vw, 4rem);
    color: var(--charcoal);
}

.section-heading p:not(.eyebrow),
.differential-copy > p,
.cta-shell > div > p:last-child {
    color: rgba(59, 59, 59, 0.78);
    line-height: 1.8;
    font-size: 1.04rem;
}

.experience-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 40px) / 3);
    gap: 20px;
    margin-top: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    scrollbar-color: transparent transparent;
    padding: 2px 2px 8px;
    scroll-padding-inline: 2px;
}

.experience-carousel {
    position: relative;
    margin-top: 34px;
    padding-inline: 42px;
    padding-top: 8px;
    padding-bottom: 12px;
    overflow: hidden;
}

.experience-grid::-webkit-scrollbar {
    display: none;
}

.experience-grid::-webkit-scrollbar-track {
     background: transparent; 
}

.experience-grid::-webkit-scrollbar-thumb {
     background: var(--ochre); 
    border-radius: 999px;
}

.experience-grid .experience-card {
    scroll-snap-align: start;
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(63, 75, 61, 0.14);
    box-shadow: none;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.experience-grid .experience-card:hover,
.experience-grid .experience-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(59, 59, 59, 0.08);
}

.section-experiences .section-heading {
    max-width: none;
    width: 100%;
}

.section-instagram .section-heading {
    max-width: none;
    width: 100%;
}

.section-testimonials .section-heading {
    max-width: none;
    width: 100%;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(63, 75, 61, 0.2);
    border-radius: 999px;
    background: rgba(244, 247, 246, 0.9);
    backdrop-filter: blur(12px);
    color: var(--charcoal);
    font-size: 1.15rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(59, 59, 59, 0.18);
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.carousel-arrow-prev {
    left: 0;
}

.carousel-arrow-next {
    right: 0;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
    transform: translateY(calc(-50% - 1px));
    background: rgba(124, 42, 35, 0.18);
    border-color: rgba(124, 42, 35, 0.52);
    box-shadow: 0 14px 28px rgba(59, 59, 59, 0.24);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 34px;
}

.section-instagram {
    padding-top: 72px;
}

.instagram-carousel {
    position: relative;
}

.instagram-carousel-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(124, 42, 35, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--adventure);
    font-size: 1rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(59, 59, 59, 0.16);
}

.instagram-carousel-arrow-prev {
    left: 8px;
}

.instagram-carousel-arrow-next {
    right: 8px;
}

.instagram-carousel-arrow.is-hidden {
    visibility: hidden;
    pointer-events: none;
}

.instagram-row-shell {
    margin-top: 30px;
    padding: 26px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(63, 75, 61, 0.08);
    background:
        radial-gradient(circle at top left, rgba(124, 42, 35, 0.12), transparent 26%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(237, 242, 239, 0.9));
    box-shadow: 0 18px 36px rgba(59, 59, 59, 0.06);
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--ochre) transparent;
}

.instagram-row-shell::-webkit-scrollbar {
    height: 6px;
}

.instagram-row-shell::-webkit-scrollbar-track {
    background: transparent;
}

.instagram-row-shell::-webkit-scrollbar-thumb {
    background: var(--ochre);
    border-radius: 999px;
}

.instagram-post-slot {
    flex: 0 0 calc(20% - 13px);
    min-width: 260px;
    scroll-snap-align: start;
}

.instagram-post-slot .instagram-media {
    width: 100% !important;
    min-width: unset !important;
    max-width: unset !important;
    margin: 0 !important;
    border-radius: 18px !important;
}

.instagram-fallback {
    margin: 14px 0 0;
    text-align: center;
    color: rgba(59, 59, 59, 0.78);
}

.instagram-fallback a {
    color: var(--moss);
    font-weight: 700;
}

.experience-card,
.testimonial,
.story-card,
.cta-shell,
.differential-copy,
.differential-visual {
    border: 1px solid rgba(63, 75, 61, 0.08);
}

.experience-card,
.testimonial,
.story-card,
.cta-shell,
.differential-copy,
.differential-visual {
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 18px 36px rgba(59, 59, 59, 0.06);
}

.experience-card {
    padding: 28px;
}

.expedition-thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 16px;
    display: block;
}

.card-index {
    display: flex;
    min-height: 34px;
    padding: 0 12px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 999px;
    color: var(--snow);
    background: linear-gradient(145deg, var(--adventure) );
    font-weight: 800;
    font-size: 0.76rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.experience-card p,
.experience-card li,
.testimonial p,
.story-copy p,
.feature-list p,
.visual-card p {
    color: rgba(59, 59, 59, 0.78);
    line-height: 1.75;
}

.experience-card ul {
    margin: 18px 0 0;
    padding-left: 18px;
}

.differential-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 22px;
    align-items: stretch;
}

.differential-copy,
.differential-visual,
.cta-shell {
    padding: 30px;
}

.differential-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 560px;
    margin: 0 auto;
    }

    .differential-copy p {
        max-width: 100%;
    }

    .differential-copy p + p {
        margin-top: 1.1rem;
    }

    .feature-list {
        display: grid;
        gap: 18px;
        margin-top: 28px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: var(--snow);
    background:
        linear-gradient(180deg, rgba(59, 59, 59, 0.08), rgba(59, 59, 59, 0.76));
    border: none;
    border-radius: 28px;
    overflow: hidden;
}

.visual-card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 28px;
}

.visual-card-main > * {
    position: relative;
    z-index: 1;
}

.visual-card-main p,
.visual-card-main h3,
.visual-card-main span {
    color: inherit;
}

.visual-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.visual-card-alt {
    aspect-ratio: 16 / 9;
    min-height: auto;
    border-radius: 24px;
    overflow: hidden;
}

.visual-card-alt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.stories-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 20px;
    margin-top: 34px;
}

.story-card {
    overflow: hidden;
}

.story-card-wide {
    grid-row: span 2;
}

.story-media {
    min-height: 240px;
}

.story-card-wide .story-media {
    min-height: 100%;
}

.story-media-dawn {
    background:
        linear-gradient(180deg, rgba(20, 28, 37, 0.08), rgba(20, 28, 37, 0.56)),
        radial-gradient(circle at 28% 24%, rgba(124, 42, 35, 0.24), transparent 16%);
}

.story-media-faces {
    background: linear-gradient(180deg, rgba(59, 59, 59, 0.12), rgba(59, 59, 59, 0.34));
}

.story-media-summit {
    background: linear-gradient(180deg, rgba(32, 40, 50, 0.12), rgba(32, 40, 50, 0.5));
}

.story-copy {
    padding: 24px;
}

.story-label {
    color: var(--moss);
    background: rgba(124, 42, 35, 0.16);
}

.testimonial {
    padding: 26px;
}

.testimonial p {
    margin: 0;
    font-size: 1.03rem;
}

.testimonial cite {
    margin-top: 18px;
    color: var(--moss);
    font-style: normal;
}

.section-cta {
    padding-bottom: 92px;
}

.cta-shell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 38px;
    text-align: center;
    
}

.cta-copy-block {
    max-width: 640px;
}

.contact-form {
    width: min(100%, 420px);
    display: grid;
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 700;
    color: var(--charcoal);
}

.contact-form span {
    font-size: 0.92rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid rgba(63, 75, 61, 0.15);
    border-radius: 18px;
    font: inherit;
    color: var(--charcoal);
    background: rgba(244, 247, 246, 0.92);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(124, 42, 35, 0.22);
    border-color: rgba(124, 42, 35, 0.48);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.footer {
    margin-top: 26px;
    padding: 34px 0 28px;
    color: rgba(59, 59, 59, 0.82);
    border-top: 1px solid rgba(63, 75, 61, 0.1);
}

.footer-minimal {
    display: flex;
    justify-content: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--charcoal);
}

.footer-logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 50%;
}

.footer-logo {
    display: block;
    font-family: "Fraunces", serif;
    font-size: 1.6rem;
    color: var(--charcoal);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 14px;
}

.footer-social a {
    font-weight: 700;
    color: var(--moss);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(63, 75, 61, 0.3);
    padding-bottom: 2px;
    transition: border-color 180ms ease;
}

.footer-social a:hover {
    border-color: var(--moss);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* â”€â”€ Stats strip â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    width: var(--container);
    margin: 18px auto 0;
}

.stat-item {
    padding: 28px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(63, 75, 61, 0.08);
    text-align: center;
}

.stat-item strong {
    display: block;
    font-family: "Fraunces", serif;
    font-size: clamp(1.7rem, 2.8vw, 2.6rem);
    font-weight: 700;
    color: var(--moss);
    line-height: 1.05;
}

.stat-item strong small {
    font-size: 0.52em;
    vertical-align: super;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
}

.stat-item span {
    display: block;
    margin-top: 6px;
    color: rgba(59, 59, 59, 0.68);
    font-size: 0.86rem;
    line-height: 1.5;
}

/* â”€â”€ Hero panel: prÃ³ximas salidas â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.upcoming-list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.upcoming-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.upcoming-date {
    flex: 0 0 auto;
    font-size: 0.78rem;
    font-weight: 800;
    color: #c19939;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.upcoming-name {
    font-size: 0.88rem;
    color: rgba(244, 247, 246, 0.9);
    line-height: 1.35;
}

.panel-cta {
    width: 100%;
    margin-top: auto;
}

/* â”€â”€ Paquetes â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
    align-items: start;
}

.package-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(63, 75, 61, 0.08);
    box-shadow: 0 18px 36px rgba(59, 59, 59, 0.06);
    display: flex;
    flex-direction: column;
}

.package-card-featured {
    background: linear-gradient(180deg, var(--moss) 0%, #5B4A42 100%);
    border-color: transparent;
    box-shadow: 0 24px 52px rgba(63, 75, 61, 0.32);
}

.package-tier {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--moss);
    background: rgba(63, 75, 61, 0.1);
    margin-bottom: 14px;
    align-self: flex-start;
}

.package-card-featured .package-tier {
    color: var(--adventure);
    background: rgba(124, 42, 35, 0.2);
}

.package-card h3 {
    font-family: "Fraunces", serif;
    font-size: 1.45rem;
    font-weight: 700;
    margin: 0 0 22px;
    color: var(--charcoal);
    line-height: 1.15;
}

.package-card-featured h3 {
    color: var(--snow);
}

.package-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: grid;
    gap: 10px;
    flex: 1;
}

.package-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.94rem;
    color: rgba(59, 59, 59, 0.8);
    line-height: 1.45;
}

.package-includes li::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 999px;
    background: var(--adventure);
}

.package-card-featured .package-includes li {
    color: rgba(244, 247, 246, 0.88);
}

.package-card .button {
    width: 100%;
}

/* â”€â”€ Card link en experience-card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.card-link {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--moss);
    gap: 4px;
    transition: gap 160ms ease;
}

.card-link:hover {
    gap: 8px;
}

/* â”€â”€ CTA: botones de contacto rÃ¡pido â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    justify-content: center;
}

/* ── Expeditions pages ─────────────────────────────────────────────── */
.exp-main {
    padding-bottom: 60px;
}

.exp-hero {
    position: relative;
    width: var(--container);
    margin: 22px auto 0;
    min-height: 380px;
    padding: 52px 56px;
    display: grid;
    align-content: end;
    color: #f4f7f6;
    border-radius: 44px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: none;
}

.exp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 29, 23, 0.18), rgba(18, 29, 23, 0.72));
    z-index: 1;
}

.exp-hero > * {
    position: relative;
    z-index: 2;
}

.exp-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.exp-hero h1 {
    margin: 8px 0 0;
    font-family: "Fraunces", serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1;
}

.exp-body {
    width: var(--container);
    margin: 20px auto 0;
    padding: 40px;
    border-radius: 32px;
    border: 1px solid rgba(45, 70, 54, 0.08);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 36px rgba(44, 62, 80, 0.06);
    display: grid;
    gap: 20px;
    color: rgba(44, 62, 80, 0.88);
}

.exp-list {
    margin: 0;
    padding-left: 20px;
    line-height: 1.9;
}

.exp-back {
    width: fit-content;
}

.exp-back-wrap {
    width: var(--container);
    margin: 28px auto 0;
}

.exp-cards {
    width: var(--container);
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.exp-card {
    padding: 32px 28px;
    border-radius: 24px;
    border: 1px solid rgba(45, 70, 54, 0.10);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 28px rgba(44, 62, 80, 0.07);
    display: grid;
    gap: 10px;
}

.exp-card h2 {
    font-family: "Fraunces", serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--moss);
    margin: 0;
}

.exp-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(44, 62, 80, 0.80);
}

.exp-card-highlight {
    margin: 0;
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c95b4b;
}

.exp-card--image .exp-card-highlight {
    color: #ffb4a2;
}

.exp-card--image {
    position: relative;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    background: none;
    border-color: rgba(255, 255, 255, 0.32);
    color: #fff;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.exp-card--image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 29, 23, 0.35), rgba(18, 29, 23, 0.72));
    z-index: 1;
}

.exp-card--image > * {
    position: relative;
    z-index: 2;
}

.exp-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.exp-card--image h2,
.exp-card--image p {
    color: inherit;
    text-shadow: inherit;
}

.exp-card--image .exp-card-btn,
.exp-card--image .exp-card-btn-secondary {
    border-color: rgba(244, 247, 246, 0.92);
    color: #f4f7f6;
    background: rgba(18, 29, 23, 0.22);
}

.exp-card--image .exp-card-btn:hover,
.exp-card--image .exp-card-btn-secondary:hover {
    background: rgba(244, 247, 246, 0.96);
    color: #1f3126;
}

.exp-card--image .exp-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.exp-card--image .exp-card-actions .exp-card-btn {
    margin-top: 0;
}

.exp-card--image.exp-card-borderless {
    border-color: transparent;
}

.exp-card-btn {
    margin-top: auto;
    width: auto;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1.5px solid var(--moss);
    background: transparent;
    color: var(--moss);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    align-self: start;
    white-space: nowrap;
    line-height: 1.2;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
}

.exp-card-btn:hover {
    background: var(--moss);
    color: #fff;
}

.exp-card-btn-secondary {
    background: rgba(244, 247, 246, 0.16);
    border-color: rgba(244, 247, 246, 0.92);
    color: #f4f7f6;
}

.exp-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(18, 29, 23, 0.62);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.exp-modal-backdrop.is-open {
    display: flex;
}

.exp-modal {
    background: #fff;
    border-radius: 28px;
    padding: 44px 40px;
    max-width: 560px;
    width: 100%;
    box-shadow: 0 32px 64px rgba(18, 29, 23, 0.22);
    position: relative;
    display: grid;
    gap: 16px;
}

.exp-modal h3 {
    font-family: "Fraunces", serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--moss);
    margin: 0;
}

.exp-modal p {
    margin: 0;
    line-height: 1.75;
    color: rgba(44, 62, 80, 0.85);
}

.exp-modal ul,
.exp-modal ol {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 6px;
    color: rgba(44, 62, 80, 0.85);
    line-height: 1.65;
    font-size: 0.9rem;
}

.exp-modal .button,
.exp-modal .button-compact {
    width: auto;
    display: inline-flex;
    justify-self: start;
}

.exp-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: rgba(44, 62, 80, 0.5);
    line-height: 1;
}

.exp-modal-close:hover {
    color: var(--moss);
}

.exp-modal--rich {
    max-width: 680px;
    max-height: 88vh;
    overflow-y: auto;
    scrollbar-width: thin;
    gap: 0;
}

.exp-modal--rich ul {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 6px;
    color: rgba(44, 62, 80, 0.85);
    line-height: 1.65;
    font-size: 0.9rem;
}

.exp-modal--rich .button {
    margin-top: 24px;
    width: fit-content;
}

.exp-modal-alt {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ochre, #B58B4C);
    margin-top: 4px;
}

.exp-modal-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 4px;
}

.exp-badge {
    padding: 4px 14px;
    border-radius: 999px;
    border: 1px solid rgba(63, 75, 61, 0.12);
    background: rgba(63, 75, 61, 0.08);
    color: var(--moss);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.exp-modal-section {
    margin-top: 22px;
}

.exp-modal-section h4 {
    font-family: "Fraunces", serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--moss);
    margin: 0 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(45, 70, 54, 0.12);
}

.exp-modal-itinerary {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 6px;
    color: rgba(44, 62, 80, 0.85);
    line-height: 1.65;
    font-size: 0.9rem;
}

.exp-modal-spaced {
    margin-top: 10px;
}

/* â”€â”€ WhatsApp FAB â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 100;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.42);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.whatsapp-fab:hover {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.54);
}

/* â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1080px) {
    .topbar {
        border-radius: 0;
        padding: 16px 18px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 74px 28px 28px;
    }

    .lang-switch {
        order: 3;
    }

    .hero-panel,
    .topnav,
    .stats-strip,
    .packages-grid,
    .testimonial-grid,
    .stories-grid,
    .differential-layout,
    .footer,
    .cta-shell {
        grid-template-columns: 1fr;
    }

    .experience-grid {
        grid-auto-columns: calc((100% - 20px) / 2);
    }

    .experience-carousel {
    overflow: visible;
    padding-top: 15px;
    padding-bottom: 12px;
    padding-inline: 42px;
}
    .hero-panel {
        align-self: auto;
        margin-top: 0;
    }

    .stats-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-contact-links {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    :root {
        --container: min(100vw - 24px, 100vw - 24px);
        --topbar-offset: 72px;
    }

    .topbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        margin: 0;
        border-radius: 0;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 10px 12px;
        min-height: auto;
        background: rgba(244, 247, 246, 0.98);
        box-shadow: 0 10px 24px rgba(59, 59, 59, 0.1);
    }

    .menu-toggle {
        display: inline-flex;
        order: 1;
        flex: 0 0 auto;
    }

    .brand {
        order: 2;
        flex: 1 1 minmax(0, 1fr);
        min-width: 0;
    }

    .brand-copy {
        min-width: 0;
    }

    .lang-switch {
        order: 3;
        flex: 0 0 auto;
        width: auto;
        justify-content: flex-end;
        padding: 4px 6px;
        gap: 6px;
    }

    .lang-button {
        min-width: 28px;
        min-height: 28px;
        padding: 4px;
    }

    .lang-button img {
        width: 18px;
        height: 12px;
    }

    .topnav {
        display: none;
        position: fixed;
        inset: 0;
        top: 0;
        z-index: 25;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: calc(72px + env(safe-area-inset-top)) 18px 24px;
        border-radius: 0;
        background: rgba(244, 247, 246, 0.98);
        border: none;
        overflow-y: auto;
        backdrop-filter: blur(10px);
    }

    .topnav-close {
        position: absolute;
        top: calc(14px + env(safe-area-inset-top));
        right: calc(14px + env(safe-area-inset-right));
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.42);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.22));
        backdrop-filter: blur(14px) saturate(140%);
        -webkit-backdrop-filter: blur(14px) saturate(140%);
        box-shadow: 0 10px 24px rgba(59, 59, 59, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.38);
        color: var(--charcoal);
        cursor: pointer;
        transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
    }

    .topnav-close svg {
        width: 18px;
        height: 18px;
    }

    .topnav-close path {
        stroke: currentColor;
        stroke-width: 2.4;
        stroke-linecap: round;
    }

    .topnav-close:hover,
    .topnav-close:focus-visible {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(124, 42, 35, 0.12));
        box-shadow: 0 14px 28px rgba(59, 59, 59, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.44);
        transform: scale(1.03);
        outline: none;
    }

    .brand-copy {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .brand-name {
        font-size: 0.92rem;
    }

    .brand-copy small {
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        font-size: 0.72rem;
        letter-spacing: 0.04em;
        line-height: 1.3;
        color: rgba(59, 59, 59, 0.72);
        max-height: 2.6rem;
    }

    .lang-switch {
        order: 3;
        flex: 0 0 auto;
        width: auto;
        justify-content: flex-end;
        padding: 4px 6px;
        gap: 6px;
    }

    .lang-button {
        min-width: 28px;
        min-height: 26px;
        padding: 4px;
    }

    .lang-button img {
        width: 18px;
        height: 12px;
    }

    .topbar.menu-open .topnav {
        display: flex;
    }

    .topnav-mobile-brand {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: auto;
        padding: 14px 2px 2px;
        border-top: 1px solid rgba(63, 75, 61, 0.14);
    }

    .topnav .topnav-mobile-brand {
        width: 100%;
        border-radius: 0;
        background: transparent;
    }

    .topnav .topnav-mobile-brand::after {
        display: none;
    }

    .topnav .topnav-mobile-brand:hover,
    .topnav .topnav-mobile-brand:focus-visible {
        background: transparent;
    }

    .topnav-mobile-brand .brand-mark {
        width: 46px;
        height: 46px;
        flex: 0 0 auto;
    }

    .topnav-mobile-brand .brand-copy {
        min-width: 0;
    }

    .topnav-mobile-brand .brand-name {
        font-size: 0.88rem;
        letter-spacing: 0.05em;
    }

    .topnav-mobile-brand .brand-copy small {
        max-height: none;
        line-clamp: unset;
        -webkit-line-clamp: unset;
        display: block;
    }

    .topnav-dropdown {
        width: 100%;
    }

    .topnav-dropdown-trigger {
        width: 100%;
        padding: 12px 14px;
        border-radius: 16px;
        justify-content: space-between;
        border: 1px solid rgba(63, 75, 61, 0.1);
        background: rgba(255, 255, 255, 0.9);
    }

    .topnav-dropdown-trigger:hover,
    .topnav-dropdown-trigger:focus-visible {
        background: rgba(124, 42, 35, 0.08);
    }

    .topnav-dropdown-menu {
        position: static;
        transform: none;
        min-width: unset;
        width: 100%;
        border-radius: 16px;
        margin-top: 8px;
        box-shadow: none;
        border-color: rgba(63, 75, 61, 0.1);
        background: rgba(255, 255, 255, 0.96);
        max-height: none;
        overflow: visible;
        padding: 8px;
        display: none;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .topnav-dropdown-menu a {
        white-space: normal;
        line-height: 1.35;
        display: block;
        width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .topnav-dropdown.is-open .topnav-dropdown-menu {
        display: grid;
        gap: 6px;
        animation: none;
    }

    .topnav a {
        width: 100%;
        padding: 12px 14px;
        border-radius: 16px;
    }

    .topnav a:hover,
    .topnav a:focus-visible {
        background: rgba(124, 42, 35, 0.08);
    }

    .hero {
        margin-top: 14px;
        padding: 52px 18px 18px;
        border-radius: 28px;
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .hero h1 {
        max-width: 12ch;
        font-size: clamp(2.8rem, 16vw, 4.2rem);
    }

    .hero-copy {
        font-size: 1rem;
        margin-bottom: 22px;
    }

    .hero-content {
        margin-top: 16px;
    }

    .hero-panel {
        align-self: auto;
        margin-top: 18px;
    }

    .hero-actions {
        margin-top: 18px;
        gap: 12px;
    }

    .panel-card,
    .experience-card,
    .package-card,
    .testimonial,
    .instagram-row-shell,
    .story-copy,
    .differential-copy,
    .differential-visual,
    .cta-shell {
        padding: 20px;
    }

    .panel-card {
        overflow: hidden;
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .panel-card-live .panel-cta {
        width: auto;
        margin-top: 14px;
        padding: 10px 14px;
        font-size: 0.95rem;
        background: rgba(255, 255, 255, 0.14);
        border-color: rgba(255, 255, 255, 0.18);
        color: rgba(255, 255, 255, 0.92);
        box-shadow: none;
    }

    .hero-actions .button-secondary {
        background: rgba(255, 255, 255, 0.18);
        border-color: rgba(255, 255, 255, 0.16);
        color: rgba(255, 255, 255, 0.96);
    }

    .panel-card {
        min-height: auto;
    }

    .panel-card-live {
        min-height: auto;
    }

    .button,
    .button-compact {
        width: 100%;
    }

    .hero-actions,
    .cta-contact-links {
        flex-direction: column;
    }

    .visual-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .story-media,
    .story-card-wide .story-media,
    .visual-card-main {
        min-height: 260px;
        max-height: 70vh;
    }

    .experience-grid {
        grid-auto-columns: 85%;
    }

    .experience-carousel {
        padding-inline: 24px;
    }

    .carousel-arrow {
        display: none;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 72px 16px 20px;
    }

    .stats-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer {
        display: grid;
        gap: 12px;
        padding: 24px 0 18px;
    }

    .footer-brand,
    .footer-links,
    .footer-bottom {
        display: grid;
        gap: 8px;
    }

    .footer-brand p,
    .footer-links strong,
    .footer-bottom p {
        margin: 0;
    }

    .footer-links nav {
        display: grid;
        gap: 8px;
    }

    .footer-bottom {
        justify-items: center;
        text-align: center;
    }

    .footer-bottom p {
        opacity: 0.84;
        line-height: 1.4;
    }

    .whatsapp-fab {
        bottom: calc(18px + env(safe-area-inset-bottom));
        right: calc(18px + env(safe-area-inset-right));
        width: 52px;
        height: 52px;
        z-index: 90;
    }
}

@media (max-width: 480px) {
    .topbar {
        padding: 10px 12px;
        gap: 10px;
    }

    .topnav {
        padding: calc(64px + env(safe-area-inset-top)) 14px 18px;
    }

    .hero {
        padding: 54px 14px 18px;
        border-radius: 22px;
    }

    .hero h1 {
        font-size: clamp(2.4rem, 14vw, 2.6rem);
    }

    .hero-copy {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .panel-card,
    .experience-card,
    .package-card,
    .testimonial,
    .instagram-row-shell,
    .story-copy,
    .differential-copy,
    .differential-visual,
    .cta-shell {
        padding: 16px;
    }

    .upcoming-list li {
        padding: 10px 12px;
        flex-wrap: nowrap;
        align-items: flex-start;
        min-width: 0;
    }

    .upcoming-date {
        flex: 0 0 auto;
        min-width: 0;
    }

    .upcoming-name {
        min-width: 0;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .experience-grid {
        grid-auto-columns: 90%;
    }

    .instagram-carousel {
        padding-inline: 30px;
    }

    .instagram-carousel-arrow {
        display: inline-flex;
    }

    .instagram-row-shell {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .instagram-row-shell::-webkit-scrollbar {
        display: none;
    }

    .instagram-post-slot {
        flex: 0 0 100%;
        min-width: 100%;
        width: 100%;
        scroll-snap-align: start;
    }

    .visual-mini-grid {
        grid-template-columns: 1fr;
    }

    .cta-shell {
        padding: 28px 16px;
    }

    .section {
        padding: 28px 14px 20px;
    }

    .footer {
        padding: 28px 0 20px;
    }

    .whatsapp-fab {
        bottom: calc(14px + env(safe-area-inset-bottom));
        right: calc(14px + env(safe-area-inset-right));
    }
}
