:root {
    --bg: #efefef;
    --surface: #ffffff;
    --primary: #0f4d7a;
    --primary-dark: #0a3555;
    --accent: #f7b927;
    --accent-dark: #1f1f1f;
    --text: #24313a;
    --muted: #6b737b;
    --border: rgba(15, 77, 122, 0.12);
    --shadow: 0 18px 40px rgba(14, 31, 43, 0.16);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --max-width: 1600px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: var(--text);
    background: var(--bg);
}

body,
button,
input,
select,
textarea,
a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
label,
small,
strong,
span {
    font-family: "Poppins", sans-serif !important;
}

.site-header,
.site-header * {
    font-family: "Poppins", sans-serif !important;
}

/* Font Awesome icons need their own font family, otherwise they render as empty squares. */
.site-header i.fa-brands {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
    font-style: normal;
}

.site-header i.fa-solid {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-style: normal;
}

.site-header .lucide-icon,
.site-header svg.lucide {
    width: 1.2em;
    height: 1.2em;
    stroke-width: 2.1;
    display: inline-block;
    vertical-align: -0.12em;
}

.nav-link-caret,
.nav-caret {
    width: 0.95em !important;
    height: 0.95em !important;
    stroke-width: 2.35 !important;
}

.whatsapp-icon {
    width: 3rem;
    height: 3rem;
}

.whatsapp-icon i,
.whatsapp-icon svg {
    width: 1.45rem;
    height: 1.45rem;
    stroke-width: 2.4;
}

.nav-dropdown-icon,
.nav-dropdown-icon svg,
.nav-dropdown-icon .lucide-icon {
    width: 1.15rem;
    height: 1.15rem;
    stroke-width: 2.25;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
select {
    font: inherit;
}

.container {
    width: min(100%, var(--max-width));
    padding-inline: clamp(1.5rem, 4.5vw, 4rem);
    box-sizing: border-box;
    margin-inline: auto;
}

.page-contact .container {
    padding-inline: clamp(2.25rem, 6vw, 5rem);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.topbar {
    background: var(--primary-dark);
    color: #fff;
    font-size: 0.9rem;
}

.topbar-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0;
}

.topbar-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.language-form {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.language-form select {
    border: 0;
    border-radius: 6px;
    padding: 0.25rem 0.5rem;
    background: #fff;
    color: var(--text);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    width: 100%;
    min-height: 4rem;
    backdrop-filter: none;
    transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
    --header-font: "Poppins", sans-serif;
    will-change: transform, opacity, background-color, box-shadow;
}

.site-header--overlay {
    position: absolute;
    inset: 0 0 auto 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.84) 18%, rgba(0, 0, 0, 0.36) 72%, rgba(0, 0, 0, 0) 100%);
    box-shadow: none;
    min-height: 4rem;
}

.site-header--solid {
    position: sticky;
    background: rgba(0, 0, 0, 0.62);
    box-shadow: none;
    min-height: 4rem;
}

.site-header.is-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.92);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    animation: header-reveal 0.35s ease;
}

.site-header.is-hidden {
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
}

.site-header.is-scrolled .header-inner {
    min-height: 4.25rem;
    padding: 0.35rem 0;
}

@keyframes header-reveal {
    from {
        opacity: 0.92;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-header.is-scrolled .brand-logo {
    transform: scale(1.02);
}

.floating-actions {
    position: static;
    pointer-events: none;
}

.floating-action {
    position: fixed;
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    box-shadow: 0 14px 28px rgba(8, 14, 24, 0.24);
    opacity: 0;
    transform: translateY(12px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.floating-action.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.floating-action--top {
    right: 1rem;
    bottom: 1rem;
    background: #f7b927;
    color: #10243d;
}

.floating-action--whatsapp {
    left: 1rem;
    bottom: 1rem;
    background: #25d366;
    color: #fff;
}

.floating-action:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 16px 32px rgba(8, 14, 24, 0.28);
}

.floating-action--top {
    margin-left: 0;
}

.floating-action i {
    font-size: 1.15rem;
    line-height: 1;
}

@media (min-width: 721px) {
    .header-toggle--menu {
        display: none !important;
    }

    .nav-toggle {
        display: none !important;
    }

    .mobile-nav {
        display: none !important;
    }
}

.header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 1.25rem;
    align-items: center;
    min-height: 4rem;
    padding: 0.28rem 0;
    transition: min-height 0.28s ease, padding 0.28s ease;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 150px;
}

.brand-logo {
    width: 6.2rem;
    height: 4.4rem;
    object-fit: contain;
    transform: scale(1.12);
    transform-origin: left center;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: nowrap;
    min-width: 0;
    font-family: var(--header-font);
}

.nav-group {
    position: relative;
}

.nav-link {
    appearance: none;
    background: none;
    border: 0;
    color: #fff;
    font-family: var(--header-font);
    text-transform: uppercase;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 0 0 0.55rem;
    border-bottom: 4px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-link:hover,
.nav-link.is-active,
.nav-group.is-open .nav-link,
.nav-group:focus-within .nav-link {
    border-bottom-color: var(--accent);
}

.nav-caret {
    font-size: 0.72rem;
}

.nav-link-caret {
    font-size: 0.65rem;
    opacity: 0.85;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    min-width: 320px;
    padding: 0.6rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 77, 122, 0.08);
    box-shadow: 0 18px 40px rgba(14, 31, 43, 0.16);
    display: grid;
    gap: 0.15rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 50;
}

.nav-dropdown--hike {
    min-width: 19rem;
    width: 19rem;
    padding: 0.55rem;
    background: rgba(8, 22, 36, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 48px rgba(3, 10, 18, 0.22);
    backdrop-filter: blur(26px) saturate(125%);
    -webkit-backdrop-filter: blur(26px) saturate(125%);
}

.nav-dropdown a {
    padding: 0.8rem 0.9rem;
    border-radius: 12px;
    color: #fff;
    font-family: var(--header-font);
    font-weight: 700;
    text-transform: none;
    letter-spacing: normal;
}

.nav-dropdown a:hover {
    background: rgba(247, 185, 39, 0.12);
}

.nav-dropdown--hike .nav-dropdown-item {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 0.85rem;
    align-items: center;
    padding: 0.78rem 0.9rem;
    border-radius: 0;
    color: #fff;
    background: transparent;
    transition: background 0.18s ease, transform 0.18s ease;
}

.nav-dropdown--hike .nav-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(2px);
}

.nav-dropdown--hike .nav-dropdown-item + .nav-dropdown-item {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-dropdown-icon {
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    color: var(--accent);
    font-size: 0.84rem;
    transform: scale(0.86, 0.86);
    transform-origin: center;
    opacity: 0.92;
}

.nav-dropdown-copy {
    display: grid;
    gap: 0.2rem;
    min-width: 0;
}

.nav-dropdown-title {
    font-family: var(--header-font);
    font-size: 0.85rem;
    line-height: 1.2;
    font-weight: 500;
    color: #fff;
}

.nav-dropdown-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 0.12rem 0.38rem;
    border-radius: 999px;
    background: rgba(247, 185, 39, 0.14);
    border: 1px solid rgba(247, 185, 39, 0.22);
    color: var(--accent);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.nav-dropdown-footer {
    margin-top: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0.9rem 0.7rem;
    color: #d9ecff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: transparent;
    font-family: var(--header-font);
    font-weight: 500;
    font-size: 0.82rem;
}

.nav-dropdown-footer:hover {
    background: transparent;
    color: #fff;
}

.nav-dropdown-footer i {
    color: var(--accent);
    transition: transform 0.18s ease;
    font-size: 0.82rem;
}

.nav-dropdown-footer:hover i {
    transform: translateX(2px);
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown,
.nav-group.is-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    justify-self: end;
    font-family: var(--header-font);
}

.language-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.language-trigger {
    appearance: none;
    border: 1px solid rgba(247, 185, 39, 0.5);
    border-radius: 14px;
    background: rgba(11, 30, 50, 0.92);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 0.95rem;
    font-family: var(--header-font);
    font-weight: 400;
    letter-spacing: 0.05em;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    cursor: pointer;
}

.language-trigger:hover,
.language-switch.is-open .language-trigger {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(247, 185, 39, 0.3), 0 0 22px rgba(247, 185, 39, 0.18);
}

.language-trigger__flag {
    width: 1.2rem;
    height: 1.2rem;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    flex: 0 0 auto;
}

.language-trigger__flag img,
.language-option__flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.language-trigger__label {
    min-width: 1.4rem;
    text-align: center;
}

.language-menu {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    width: 13.5rem;
    padding: 0.45rem;
    border-radius: 18px;
    background: rgba(10, 27, 44, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 45px rgba(6, 16, 28, 0.26);
    display: grid;
    gap: 0.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 60;
}

.language-switch.is-open .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: grid;
    grid-template-columns: 1.7rem 1fr auto;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 0.8rem;
    border-radius: 14px;
    color: #fff;
    font-family: var(--header-font);
    font-weight: 600;
    transition: background 0.18s ease, transform 0.18s ease;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(2px);
}

.language-option.is-active {
    background: rgba(255, 255, 255, 0.08);
}

.language-option__flag {
    width: 1.7rem;
    height: 1.2rem;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 4px;
}

.language-option__check {
    color: var(--accent);
    opacity: 0;
}

.language-option.is-active .language-option__check {
    opacity: 1;
}

.language-option__label {
    line-height: 1.2;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    min-height: 2.95rem;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    background: var(--accent);
    color: #1d1d1d;
    font-family: var(--header-font);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 24px rgba(247, 185, 39, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(247, 185, 39, 0.3);
}

.header-toggle {
    display: none;
    appearance: none;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 12px;
    border: 1px solid rgba(247, 185, 39, 0.45);
    background: rgba(11, 30, 50, 0.92);
    color: #fff;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.header-toggle:hover {
    border-color: var(--accent);
}

.header-toggle--menu {
    margin-left: auto;
}

.nav-toggle {
    appearance: none;
    background: none;
    border: 0;
    color: #fff;
    width: 1.45rem;
    height: 1.45rem;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: 0 0 auto;
    margin-left: -0.2rem;
}

.nav-toggle .nav-caret {
    pointer-events: none;
    font-size: 0.66rem;
}

.whatsapp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #fff;
    font-family: var(--header-font);
    white-space: nowrap;
}

.whatsapp-icon {
    width: 3.15rem;
    height: 3.15rem;
    display: grid;
    place-items: center;
    border: 2px solid var(--accent);
    border-radius: 10px;
    color: var(--accent);
}

.whatsapp-icon i {
    font-size: 1.6rem;
}

.whatsapp-copy small {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.78);
}

.whatsapp-copy strong {
    display: block;
    font-family: var(--header-font);
    font-size: 0.92rem;
    font-weight: 400;
}

.home-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #12324d;
}

.slider-track {
    position: relative;
    min-height: inherit;
}

.slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    filter: none;
    transform-origin: center center;
    backface-visibility: hidden;
    will-change: opacity, transform, filter;
    transition: opacity 1.35s ease, transform 1.35s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 0;
}

.slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: left;
    display: grid;
    justify-items: start;
    gap: 1rem;
    padding-top: 0;
    min-height: 100vh;
    align-content: center;
    padding-bottom: 2rem;
}

.home-slider .slide-content {
    text-align: center;
    justify-items: center;
}

.slide-content h1 {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: clamp(1.85rem, 3.8vw, 3.35rem);
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.03;
}

.slide-content h2 {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 500;
    letter-spacing: 0.03em;
}

.slide-content p {
    margin: 0;
    max-width: 52rem;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

.page-home .slide-content p {
    max-width: 46rem;
}

.slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.home-slider .slide-actions {
    justify-content: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.1rem;
    padding: 0.75rem 1.3rem;
    border-radius: 9px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.slide-actions .button-primary:hover {
    background: #ffffff;
    color: #111;
    box-shadow: 0 10px 22px rgba(255, 255, 255, 0.18);
    transform: translateY(-3px) scale(1.03);
}

.slide-actions .button-outline:hover {
    background: #f7b927;
    color: #1d1d1d;
    border-color: #f7b927;
    box-shadow: 0 10px 22px rgba(247, 185, 39, 0.22);
    transform: translateY(-3px) scale(1.03);
}

.button-primary {
    background: var(--accent);
    color: #fff;
}

.button-outline {
    border: 2px solid var(--accent);
    color: #fff;
    background: transparent;
}

.button-dark {
    background: #2f2f2f;
    color: #fff;
    border-radius: 18px;
    min-height: 2.6rem;
    padding-inline: 1.15rem;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: var(--accent);
    font-size: 4rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.slider-prev {
    left: 1rem;
}

.slider-next {
    right: 1rem;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 1.6rem;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.dot {
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: rgba(255, 255, 255, 0.95);
    cursor: pointer;
}

.dot.is-active {
    background: var(--accent);
}

.welcome-section {
    position: relative;
    padding: 0 0 4.6rem;
    background: #ffffff;
    overflow: hidden;
}

.welcome-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 16%, rgba(247, 185, 39, 0.08), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.welcome-shell {
    position: relative;
    padding-top: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.welcome-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: min(58%, 560px);
    height: 3.55rem;
    background: var(--accent);
    border-bottom-right-radius: 2.2rem;
    box-shadow: 0 10px 20px rgba(247, 185, 39, 0.18);
}

.welcome-grid {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 4vw, 4.4rem);
    align-items: center;
    padding: clamp(1.6rem, 3.4vw, 3.2rem) 0 0;
}

.welcome-copy {
    width: min(100%, 33rem);
    justify-self: center;
    display: grid;
    justify-items: center;
    align-content: start;
    text-align: center;
}

.welcome-kicker {
    margin: 0 0 0.35rem;
    color: #7b7b7b;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    font-size: clamp(2rem, 3.1vw, 2.8rem);
    font-weight: 200;
    letter-spacing: 0.08em;
    text-align: right;
    width: 100%;
    justify-self: end;
    transform: translateY(0.2rem);
}

.welcome-title,
.section-title,
.internal-copy h1 {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--accent);
    font-size: clamp(2rem, 4vw, 3.45rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.95;
}

.welcome-title {
    max-width: none;
    margin-inline: 0 0;
    text-align: right;
    justify-self: end;
    white-space: nowrap;
    font-size: clamp(1.55rem, 2.55vw, 2.6rem);
}

.welcome-body,
.internal-lead,
.internal-panel p,
.section-intro,
.footer-grid p,
.footer-links {
    color: var(--muted);
    line-height: 1.75;
    font-size: 1rem;
    font-weight: 400;
}

.welcome-body {
    text-align: justify;
    text-justify: inter-word;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
    width: 100%;
    max-width: 32rem;
    margin-inline: 0;
    font-size: 1.02rem;
    line-height: 1.7;
}

.welcome-media {
    position: relative;
    min-height: 510px;
}

.welcome-photo {
    position: absolute;
    overflow: hidden;
    border-radius: 1.6rem;
    box-shadow: 0 18px 42px rgba(17, 25, 31, 0.18);
    background: #fff;
}

.welcome-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
    pointer-events: none;
}

.welcome-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.welcome-photo--back {
    top: 0.8rem;
    right: 0.15rem;
    width: min(86%, 39rem);
    height: 18.8rem;
    border-radius: 1.45rem 2.1rem 1.4rem 1.45rem;
    clip-path: inset(0 round 1.45rem 2.1rem 1.4rem 1.45rem);
}

.welcome-photo--front {
    right: 1.45rem;
    bottom: -0.35rem;
    width: min(72%, 32rem);
    height: 15.8rem;
    z-index: 2;
    border-radius: 1.1rem 1.35rem 2.3rem 2rem;
    clip-path: inset(0 round 1.1rem 1.35rem 2.3rem 2rem);
}

.highlights-section {
    padding: 4rem 0 5rem;
    background: #ededed;
}

.section-intro {
    position: relative;
    max-width: 46rem;
    margin: 0 auto 1.25rem;
    padding: 0.8rem 1.25rem 0.95rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1.55;
    color: #7a7a7a;
    border: 2px dashed rgba(95, 95, 95, 0.75);
    border-bottom: 0;
    background: rgba(255, 255, 255, 0.06);
}

.section-intro::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.15rem;
    height: 0.18rem;
    background: var(--accent);
}

.section-title {
    text-align: center;
    margin-bottom: 2.25rem;
    color: #7c7c7c;
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    text-transform: none;
    font-weight: 500;
}

.trek-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.7rem 2rem;
}

.page-home .trek-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
}

.trek-grid--page {
    padding-bottom: 4rem;
}

.trek-grid--hike-page {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
}

.hike-cards {
    padding: 0 0 3rem;
}

.trek-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 24px 24px 64px 24px;
    box-shadow: var(--shadow);
    background: #f4bb1c;
}

.trek-image {
    position: relative;
    min-height: 290px;
    background-position: center;
    background-size: cover;
    padding: 1rem 1rem 1.1rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    color: #fff;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    overflow: hidden;
}

.trek-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 14, 26, 0.10) 0%, rgba(8, 14, 26, 0.15) 34%, rgba(8, 14, 26, 0.36) 100%);
    transition: opacity 0.35s ease;
}

.trek-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    background-position: center;
    background-size: cover;
    transform: scale(1);
    transition: transform 0.55s ease;
    will-change: transform;
    z-index: 0;
}

.trek-card:hover .trek-image::before {
    transform: scale(1.08);
}

.trek-card:hover .trek-image-overlay {
    opacity: 0.92;
}

.duration-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem 0.5rem 0.7rem;
    border-radius: 0.75rem;
    background: rgb(223 172 29 / 71%);
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
    box-shadow: 0 14px 26px rgba(15, 16, 20, 0.12);
}

.duration-badge i {
    width: 1rem;
    height: 1rem;
    flex: 0 0 1rem;
}

.duration-badge svg {
    width: 100%;
    height: 100%;
    stroke-width: 2;
}

.trek-content {
    padding: 1.1rem 1.35rem 1.35rem;
    display: grid;
    gap: 0.65rem;
    color: #fff;
    background:
        radial-gradient(circle at top left, rgba(25, 54, 83, 0.42), transparent 42%),
        linear-gradient(180deg, rgba(6, 18, 31, 0.94) 0%, rgba(8, 18, 30, 0.98) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    position: relative;
}

.trek-card-title {
    margin: 0;
    color: #f5f5f5;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.15rem, 1.4vw, 1.55rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: none;
    white-space: nowrap;
}

.trek-card-location {
    margin: 0;
    color: #d9aa3a;
    font-family: "Poppins", sans-serif;
    font-size: clamp(0.9rem, 1.15vw, 1.05rem);
    line-height: 1.15;
    font-weight: 300;
    letter-spacing: 0;
}

.trek-card-divider {
    width: 3.9rem;
    height: 2px;
    background: rgba(255, 193, 33, 0.96);
    border-radius: 999px;
    margin-top: 0.08rem;
    margin-bottom: 0.22rem;
}

.trek-card-footer {
    display: grid;
    gap: 0.9rem;
}


.trek-meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 0.86rem;
    line-height: 1;
    font-weight: 300;
}


.trek-meta li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    padding-right: 0.8rem;
    margin-right: 0.8rem;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.trek-meta li:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
}


.trek-meta i {
    width: 1.18rem !important;
    height: 1.18rem !important;
    min-width: 1.18rem;
    min-height: 1.18rem;
    color: var(--accent);
    stroke: var(--accent);
    flex: 0 0 1.18rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.trek-meta svg {
    width: 1.18rem !important;
    height: 1.18rem !important;
    min-width: 1.18rem;
    min-height: 1.18rem;
    stroke-width: 2.45 !important;
    color: var(--accent);
    stroke: var(--accent);
    display: block;
    flex: 0 0 1.18rem;
}

.trek-card-button {
    justify-self: center;
    background: #d9aa3a;
    color: #fff;
    min-width: 9.4rem;
    min-height: 2.65rem;
    border-radius: 1.45rem;
    font-size: 0.9rem;
    box-shadow: 0 16px 26px rgba(9, 10, 12, 0.18);
    white-space: nowrap;
}

.page-home .trek-card {
    border-radius: 20px 20px 48px 20px;
}

.page-home .trek-image {
    min-height: 170px;
    padding: 0.65rem 0.65rem 0.75rem;
}

.page-home .duration-badge {
    top: 0.7rem;
    right: 0.7rem;
    padding: 0.3rem 0.55rem;
    font-size: 0.72rem;
}

.page-home .duration-badge i {
    width: 0.9rem;
    height: 0.9rem;
    flex-basis: 0.9rem;
}

.page-home .trek-content {
    padding: 0.8rem 0.95rem 1rem;
    gap: 0.45rem;
}

.page-home .trek-card-title {
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
}

.page-home .trek-card-location {
    font-size: 0.75rem;
}

.page-home .trek-card-divider {
    width: 3rem;
    margin-bottom: 0.14rem;
}

.page-home .trek-meta {
    font-size: 0.72rem;
}

.page-home .trek-meta li {
    padding-right: 0.55rem;
    margin-right: 0.55rem;
}

.page-home .trek-meta i,
.page-home .trek-meta svg {
    width: 0.98rem !important;
    height: 0.98rem !important;
    min-width: 0.98rem;
    min-height: 0.98rem;
    flex-basis: 0.98rem;
}

.page-home .trek-card-button {
    min-width: 7.6rem;
    min-height: 2.35rem;
    padding: 0.55rem 0.95rem;
    font-size: 0.82rem;
}


.trek-card-button:hover {
    background: #e4b54a;
    color: #fff;
}

.trek-card-button__arrow {
    margin-left: 0.45rem;
    font-size: 0.95em;
    line-height: 1;
}

.hike-hero {
    position: relative;
    min-height: 33rem;
    display: flex;
    align-items: flex-end;
    padding: 6.75rem 0 3rem;
    background-color: #081a2e;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hike-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 25, 43, 0.93) 0%, rgba(7, 25, 43, 0.67) 42%, rgba(7, 25, 43, 0.15) 100%);
}

.hike-hero__content {
    position: relative;
    z-index: 1;
    max-width: 38rem;
    color: #fff;
}

.hike-hero__kicker {
    margin: 0 0 0.45rem;
    color: var(--accent);
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.hike-hero h1 {
    margin: 0;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.65rem, 3.6vw, 3.2rem);
    line-height: 0.95;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-transform: none;
    max-width: 18ch;
}

.hike-hero__subtitle {
    margin: 0.35rem 0 0;
    color: var(--accent);
    font-family: "Poppins", sans-serif;
    font-size: clamp(0.98rem, 1.6vw, 1.55rem);
    font-style: italic;
    font-weight: 500;
}

.hike-hero__line {
    width: 3rem;
    height: 3px;
    margin: 1rem 0 1rem;
    border-radius: 999px;
    background: var(--accent);
}

.hike-hero__text {
    margin: 0;
    max-width: 33rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.7;
}

.hike-hero__button {
    margin-top: 1.2rem;
    min-width: 10.25rem;
    min-height: 3rem;
    gap: 0.6rem;
}

.hike-stats {
    margin-top: -2.1rem;
    position: relative;
    z-index: 2;
}

.hike-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 1.25rem 1.35rem;
    border-radius: 2rem;
    background:
        radial-gradient(circle at top left, rgba(25, 54, 83, 0.45), transparent 42%),
        linear-gradient(180deg, #0a2340 0%, #0d2a4d 100%);
    box-shadow: 0 20px 42px rgba(11, 18, 30, 0.18);
}

.hike-stat {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.4rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
}

.hike-stat:last-child {
    border-right: 0;
}

.hike-stat__icon {
    display: grid;
    place-items: center;
    position: relative;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    color: var(--accent);
    background: rgba(247, 185, 39, 0.12);
    flex: 0 0 auto;
}

.hike-stat__icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 1.18rem;
    line-height: 1;
    transform: translate(-50%, -50%);
    margin: 0;
}

.hike-stat strong {
    display: block;
    color: var(--accent);
    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 800;
}

.hike-stat span {
    display: block;
    margin-top: 0.15rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.hike-filters {
    padding: 1.2rem 0 1.5rem;
}

.hike-filters__row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hike-filter {
    padding: 0.82rem 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(16, 36, 61, 0.12);
    background: #fff;
    color: var(--primary-dark);
    font-family: "Poppins", sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(11, 18, 30, 0.06);
}

.hike-filter.is-active {
    background: #0f2743;
    color: #fff;
    border-color: #0f2743;
}

.trek-card--hike {
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 16px 34px rgba(11, 18, 30, 0.12);
    height: 100%;
}

.trek-card--hike .trek-image {
    min-height: 13rem;
    padding: 0.85rem;
}

.trek-badge {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    z-index: 1;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: var(--accent);
    color: #0f2743;
    font-family: "Poppins", sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
}

.trek-content--hike {
    padding: 1rem 1rem 1.1rem;
    background: #fff;
    color: var(--primary-dark);
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.trek-content--hike .trek-card-title {
    color: var(--primary-dark);
    font-size: 1rem;
    line-height: 1.15;
    white-space: normal;
    text-transform: uppercase;
}

.trek-content--hike .trek-card-location {
    color: #5e6d82;
    font-size: 0.82rem;
}

.trek-hike-meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
    color: #1e3150;
    font-size: 0.84rem;
}

.trek-hike-meta li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trek-card-rating {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 0.15rem;
    color: var(--primary-dark);
}

.trek-card-rating__stars {
    display: inline-flex;
    align-items: center;
    gap: 0.12rem;
    color: #f7b927;
    font-size: 0.94rem;
    line-height: 1;
}

.trek-card-rating__value {
    color: #5d6a7f;
    font-family: "Poppins", sans-serif;
    font-size: 0.87rem;
    font-weight: 500;
}

.trek-card-button--hike {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 0.35rem;
    padding: 0;
    min-width: 0;
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #162e50;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
    margin-top: auto;
}

.trek-card-button--hike:hover {
    background: transparent;
    color: #0f2743;
    box-shadow: none;
    transform: none;
    text-decoration: none;
}

.trek-card-button--hike .trek-card-button__arrow {
    margin-left: 0.35rem;
    font-size: 1.08em;
}




.internal-hero {
    padding: 5rem 0 4rem;
    background: linear-gradient(180deg, #fff, #f0f0f0);
}

.internal-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.internal-copy h1 {
    color: var(--primary-dark);
}

.internal-panel {
    padding: 1.8rem;
    border-radius: 2rem;
    background: #fff;
    box-shadow: var(--shadow);
}

.about-hero {
    position: relative;
    min-height: 27rem;
    display: flex;
    align-items: flex-end;
    padding: 4rem 0 2.2rem;
    color: #fff;
    background-color: #07192b;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 25, 43, 0.92) 0%, rgba(7, 25, 43, 0.68) 48%, rgba(7, 25, 43, 0.18) 100%);
}

.about-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.4rem;
    align-items: end;
}

.about-hero__copy {
    max-width: 34rem;
    padding-top: 1rem;
}

.about-kicker {
    margin: 0 0 0.4rem;
    color: var(--accent) !important;
    font-family: "Poppins", sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.about-hero h1 {
    margin: 0;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.45rem, 3.1vw, 2.8rem);
    line-height: 0.95;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.about-hero__line {
    width: 2.6rem;
    height: 3px;
    margin: 0.75rem 0 0.75rem;
    border-radius: 999px;
    background: var(--accent);
}

.about-hero__copy p {
    margin: 0;
    max-width: 31rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    line-height: 1.7;
}

.about-hero__image {
    margin: 0;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.about-hero__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 20rem;
    object-fit: cover;
}

.about-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #fff 0%, #f3f5f8 100%);
}

.about-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: 1.6rem;
    align-items: center;
}

.about-story__text,
.about-story__media,
.about-stats,
.about-reasons,
.about-team,
.about-cta {
    border-radius: 1.9rem;
    background: #fff;
    box-shadow: var(--shadow);
}

.about-story__text {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.about-section-title {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.about-section-title__icon {
    display: inline-grid;
    place-items: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 0.85rem;
    background: var(--accent);
    color: #fff;
    flex: 0 0 auto;
}

.about-section-title h2 {
    margin: 0;
    color: var(--primary-dark);
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
}

.about-story__text p {
    margin: 0 0 1rem;
    color: #1e3150;
    line-height: 1.85;
    text-align: justify;
}

.about-signature {
    margin-top: 1rem;
    color: #0f2340;
    font-family: "Segoe Script", "Brush Script MT", cursive;
    font-size: 1.75rem;
    font-weight: 600;
}

.about-story__media {
    padding: 0.85rem;
    background: #e9edf2;
}

.about-story__media img {
    display: block;
    width: 100%;
    min-height: 20rem;
    object-fit: cover;
    border-radius: 1.45rem;
}

.about-stats {
    margin-top: 1.4rem;
    padding: 1.2rem 1.4rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    background: linear-gradient(180deg, #0a2240 0%, #0f2949 100%);
    color: #fff;
}

.about-stat {
    padding: 0.3rem 0.8rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.about-stat:last-child {
    border-right: 0;
}

.about-stat strong {
    display: block;
    color: var(--accent);
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2.6rem);
    line-height: 1;
    font-weight: 800;
}

.about-stat span {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.92rem;
    line-height: 1.5;
}

.about-reasons {
    margin-top: 1.4rem;
    padding: 1.7rem 1.8rem 1.9rem;
}

.about-reasons__title {
    margin: 0 0 1.1rem;
    color: var(--primary-dark);
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.8rem);
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
}

.about-reasons__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.about-reason {
    padding: 0.8rem 0.6rem;
    text-align: center;
    border-right: 1px solid rgba(18, 35, 59, 0.08);
}

.about-reason:last-child {
    border-right: 0;
}

.about-reason__icon {
    display: grid;
    place-items: center;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 0.85rem;
    border-radius: 50%;
    background: rgba(247, 185, 39, 0.13);
    color: var(--primary-dark);
}

.about-reason__icon i {
    font-size: 1.5rem;
}

.about-reason h3 {
    margin: 0 0 0.4rem;
    color: var(--primary-dark);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
}

.about-reason p {
    margin: 0;
    color: #1e3150;
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-team {
    margin-top: 1.4rem;
    padding: 1.7rem 1.8rem 1.9rem;
}

.about-team__title {
    margin: 0 0 1.1rem;
    color: var(--primary-dark);
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.8rem);
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
}

.about-team__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.about-team-card {
    overflow: hidden;
    border-radius: 1.2rem;
    background: #fff;
    border: 1px solid rgba(18, 35, 59, 0.08);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.about-team-card__visual {
    min-height: 12rem;
    background:
        linear-gradient(180deg, rgba(7, 25, 43, 0.12), rgba(7, 25, 43, 0.36)),
        linear-gradient(135deg, #cfd9e8, #8aa3be);
    display: grid;
    place-items: center;
    color: #fff;
}

.about-team-card__visual i {
    font-size: 3rem;
}

.about-team-card__body {
    padding: 1rem 1rem 1.1rem;
}

.about-team-card h3 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 1rem;
    font-weight: 800;
}

.about-team-card span {
    display: block;
    margin-top: 0.25rem;
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 700;
}

.about-team-card p {
    margin: 0.7rem 0 0;
    color: #1e3150;
    font-size: 0.92rem;
    line-height: 1.65;
}

.about-cta {
    margin-top: 1.4rem;
    padding: 1.5rem 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background:
        linear-gradient(90deg, rgba(9, 33, 59, 0.96), rgba(16, 58, 108, 0.96)),
        url("../img/treking-huayhuash-10-dias/trekking-huayhuash-10dias.jfif");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.about-cta h2 {
    margin: 0;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.3rem, 2vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
}

.about-cta p {
    margin: 0.45rem 0 0;
    max-width: 38rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
}

.services-section,
.gallery-section,
.contact-section {
    padding: 0 0 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.service-card {
    padding: 1.4rem;
    border-radius: 1.5rem;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.service-card h2 {
    margin: 0 0 0.7rem;
    font-family: "Inter", sans-serif;
    font-size: 1.15rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.gallery-item {
    margin: 0;
    overflow: hidden;
    border-radius: 1.25rem;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 1rem;
    align-items: start;
}

.blog-section {
    padding: 0 0 4rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.blog-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1.4rem;
    box-shadow: var(--shadow);
    padding: 1.4rem;
}

.blog-card h2 {
    margin: 0 0 0.7rem;
    font-family: "Inter", sans-serif;
    color: var(--primary-dark);
    font-size: 1.35rem;
    font-weight: 700;
}

.contact-hero {
    position: relative;
    min-height: 31rem;
    padding: 7rem 0 3.2rem;
    background-position: center;
    background-size: cover;
    color: #fff;
    overflow: hidden;
}

.contact-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 20, 38, 0.94) 0%, rgba(6, 20, 38, 0.82) 42%, rgba(6, 20, 38, 0.2) 100%),
        linear-gradient(180deg, rgba(6, 20, 38, 0.18), rgba(6, 20, 38, 0.45));
}

.contact-hero__inner {
    position: relative;
    z-index: 1;
    min-height: 22rem;
    display: flex;
    align-items: center;
}

.contact-hero__copy {
    max-width: 35rem;
}

.contact-hero__kicker {
    margin: 0 0 0.55rem;
    color: var(--accent);
    font-family: "Poppins", sans-serif;
    font-size: clamp(0.8rem, 1.1vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-hero h1 {
    margin: 0;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.35rem, 4.3vw, 4.1rem);
    line-height: 0.96;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.contact-hero__lead {
    margin: 1rem 0 0;
    max-width: 33rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.08rem;
    line-height: 1.8;
}

.contact-hero__note {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.5rem;
    color: #fff;
    font-size: 1.02rem;
    font-weight: 600;
}

.contact-hero__note i {
    width: 2.2rem;
    height: 2.2rem;
    color: var(--accent);
}

.contact-section {
    padding: 0 0 1.6rem;
    background: linear-gradient(180deg, #fff 0%, #f6f6f3 100%);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
    gap: 1.5rem;
    align-items: start;
    padding-top: 1.2rem;
}

.contact-message,
.contact-info {
    min-width: 0;
}

.section-heading--contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.section-heading--contact h2 {
    margin: 0;
}

.contact-section__text {
    margin: 0 0 1rem;
    max-width: 38rem;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.75;
}

.contact-form {
    display: grid;
    gap: 0.9rem;
}

.contact-form--flat {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(15, 77, 122, 0.1);
    border-radius: 16px;
    padding: 1rem 1.05rem;
    background: #fff;
    font: inherit;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.contact-form textarea {
    min-height: 12.5rem;
    resize: vertical;
}

.contact-form__button {
    min-width: 12.5rem;
    width: fit-content;
    min-height: 2.65rem;
    padding: 0.62rem 1.2rem;
    border: 0 !important;
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(247, 185, 39, 0.18);
    letter-spacing: 0.02em;
    gap: 0.55rem;
}

.contact-form__button i {
    font-size: 0.92rem;
    margin-right: 0.15rem;
}

.contact-form__button:hover,
.contact-form__button:focus-visible {
    background: #ffbf2f;
    color: #0f2a4a;
    box-shadow: 0 14px 28px rgba(247, 185, 39, 0.28);
    transform: translateY(-2px) scale(1.01);
}

.contact-form__button:hover i,
.contact-form__button:focus-visible i {
    transform: translateX(-1px);
}

.contact-form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.contact-form__captcha {
    display: flex;
    justify-content: flex-start;
    margin: 0.15rem 0 0.25rem;
}

.contact-form__status {
    margin: 0.1rem 0 0;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    font-size: 0.94rem;
    line-height: 1.45;
}

.contact-form__status--success {
    background: rgba(39, 211, 102, 0.12);
    color: #157347;
}

.contact-form__status--error {
    background: rgba(200, 59, 41, 0.1);
    color: #a62d20;
}

.contact-toast[hidden] {
    display: none !important;
}

.contact-toast {
    position: fixed;
    left: 50%;
    bottom: 1.25rem;
    z-index: 1400;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    width: min(28rem, calc(100vw - 1.5rem));
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(12, 32, 58, 0.98);
    color: #fff;
    box-shadow: 0 22px 50px rgba(7, 18, 35, 0.32);
    transform: translate(-50%, 20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.contact-toast.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}

.contact-toast--success {
    border: 1px solid rgba(40, 209, 118, 0.22);
}

.contact-toast--error {
    border: 1px solid rgba(255, 107, 107, 0.22);
}

.contact-toast__icon {
    display: none;
    flex: 0 0 auto;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #f7b927;
}

.contact-toast--success .contact-toast__icon--success,
.contact-toast--error .contact-toast__icon--error {
    display: inline-flex;
}

.contact-toast--success .contact-toast__icon--success {
    color: #2fd67d;
}

.contact-toast--error .contact-toast__icon--error {
    color: #ff6b6b;
}

.contact-toast__body {
    flex: 1 1 auto;
    min-width: 0;
    display: grid;
    gap: 0.18rem;
}

.contact-toast__title {
    font-size: 0.98rem;
    line-height: 1.2;
    font-weight: 700;
}

.contact-toast__message {
    font-size: 0.92rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.82);
}

.contact-toast__close {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.contact-toast__close:hover,
.contact-toast__close:focus-visible {
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
    transform: scale(1.04);
}

.contact-form__secure {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0.2rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.contact-form__secure i {
    width: 1rem;
    height: 1rem;
    color: var(--primary-dark);
}

.contact-info__list {
    display: grid;
    gap: 0.9rem;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem 1.1rem;
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.contact-info__icon {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #0f2a4a;
    color: #fff;
    flex: 0 0 auto;
}

.contact-info__icon--whatsapp {
    background: linear-gradient(180deg, #27d366 0%, #19b955 100%);
    box-shadow: 0 10px 22px rgba(25, 185, 85, 0.26);
}

.contact-info__icon i {
    width: 1.2rem;
    height: 1.2rem;
}

.contact-info__icon--whatsapp i {
    width: 1.45rem;
    height: 1.45rem;
    font-size: 1.45rem;
    color: #fff;
}

.contact-info__copy strong {
    display: block;
    color: var(--primary-dark);
    font-size: 1rem;
    font-weight: 700;
}

.contact-info__copy span {
    display: block;
    color: var(--muted);
    line-height: 1.55;
}

.contact-secondary {
    padding: 0.4rem 0 1.3rem;
    background: linear-gradient(180deg, #f6f6f3 0%, #f3f2ee 100%);
}

.contact-secondary__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
    gap: 1rem;
}

.contact-map {
    position: relative;
    min-height: 18rem;
    overflow: hidden;
    border-radius: 1.5rem;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.95), transparent 28%),
        radial-gradient(circle at 65% 55%, rgba(247, 185, 39, 0.42), transparent 10%),
        linear-gradient(135deg, #e7f0e3 0%, #f6f1df 44%, #efe8d8 100%);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.contact-map::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
    background-size: 3.5rem 3.5rem;
    opacity: 0.45;
}

.contact-map__pin {
    position: absolute;
    left: 61%;
    top: 44%;
    display: grid;
    place-items: center;
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 50%;
    background: #f7b927;
    color: #fff;
    box-shadow: 0 12px 24px rgba(247, 185, 39, 0.32);
    transform: translate(-50%, -50%);
}

.contact-map__pin i {
    width: 1.35rem;
    height: 1.35rem;
}

.contact-map__copy {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    z-index: 1;
    max-width: 22.5rem;
    padding: 1.1rem 1.2rem;
    border-radius: 1.35rem;
    background: #0b2340;
    color: #fff;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.2);
}

.contact-map__copy h2 {
    margin: 0 0 0.45rem;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.1;
    text-transform: none;
}

.contact-map__copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-cta {
    position: relative;
    min-height: 18rem;
    overflow: hidden;
    border-radius: 1.5rem;
    background:
        linear-gradient(90deg, rgba(8, 19, 35, 0.88), rgba(20, 46, 81, 0.88)),
        url("../img/home/trekking-huayhuash-10dias.jfif") center/cover no-repeat;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.contact-cta__inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1rem;
    align-content: center;
    justify-items: start;
    min-height: 18rem;
    padding: 1.35rem 1.45rem;
    color: #fff;
}

.contact-cta__icon {
    display: grid;
    place-items: center;
    width: 3.35rem;
    height: 3.35rem;
    border-radius: 50%;
    background: #f7b927;
    color: #fff;
}

.contact-cta__icon i {
    width: 1.4rem;
    height: 1.4rem;
}

.contact-cta__copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.25rem, 2vw, 2rem);
    line-height: 1.08;
    text-transform: uppercase;
}

.contact-cta__copy p {
    margin: 0.45rem 0 0;
    max-width: 28rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-cta__button {
    min-width: 16rem;
}

.contact-benefits {
    padding: 0.2rem 0 2.8rem;
    background: linear-gradient(180deg, #f3f2ee 0%, #fff 100%);
}

.contact-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    padding: 0.75rem 0.9rem;
    border-radius: 1.4rem;
    background: linear-gradient(90deg, #0b2340 0%, #0d294a 100%);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.contact-benefits__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 6.75rem;
    padding: 1.15rem 1.75rem;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-benefits__item:first-child {
    padding-left: 2.35rem;
}

.contact-benefits__item:last-child {
    border-right: 0;
}

.contact-benefits__item i {
    width: 2.35rem;
    height: 2.35rem;
    color: #f7b927;
    flex: 0 0 auto;
}

.contact-benefits__item strong {
    display: block;
    color: #fff;
    font-size: 1.02rem;
    font-weight: 700;
}

.contact-benefits__item span {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.45;
    font-size: 0.92rem;
}

.site-footer {
    padding: 3.25rem 0 1.5rem;
    background: linear-gradient(180deg, #081626 0%, #0d1f33 48%, #08121f 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(247, 185, 39, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 24%);
    pointer-events: none;
}

.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.75fr 0.95fr 0.95fr;
    gap: 2rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid h3 {
    margin: 0 0 0.8rem;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--accent);
    font-weight: 700;
}

.footer-brand {
    position: relative;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.9rem;
}

.footer-logo img {
    display: block;
    width: 8rem;
    height: auto;
}

.footer-brand p {
    margin: 0;
    max-width: 22rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.footer-links a {
    color: #fff;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.95rem;
}

.footer-contact li {
    display: grid;
    gap: 0.2rem;
}

.footer-contact__label {
    color: rgba(247, 185, 39, 0.92);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}

.footer-contact__value {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer-bottom {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 1rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    text-align: center;
}

@media (max-width: 1100px) {
    .container {
        padding-inline: clamp(1.75rem, 6vw, 4rem);
    }

    .welcome-grid,
    .internal-hero-grid,
    .contact-layout,
    .contact-secondary__grid,
    .contact-benefits__grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .main-nav {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .header-actions {
        justify-self: start;
        flex-wrap: wrap;
    }

    .about-hero {
        min-height: 22rem;
        padding: 3rem 0 2rem;
    }

    .about-hero h1 {
        font-size: clamp(1.35rem, 8vw, 2.2rem);
        font-weight: 600;
    }

    .about-story,
    .about-stats,
    .about-reasons__grid,
    .about-team__grid {
        grid-template-columns: 1fr;
    }

    .about-stat,
    .about-reason {
        border-right: 0;
        border-bottom: 1px solid rgba(18, 35, 59, 0.08);
        padding-bottom: 0.8rem;
    }

    .about-stat:last-child,
    .about-reason:last-child {
        border-bottom: 0;
    }

    .about-cta {
        padding: 1.4rem;
    }

    .trek-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-home .trek-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-grid,
    .gallery-grid,
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .about-hero__inner {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        min-height: 28rem;
        padding: 6.8rem 0 3rem;
    }

    .contact-hero__inner {
        min-height: 18rem;
    }

    .contact-hero h1 {
        font-size: clamp(2.2rem, 7vw, 3.5rem);
    }

    .contact-form__grid {
        grid-template-columns: 1fr;
    }

    .contact-form__button,
    .contact-cta__button {
        width: 100%;
        min-width: 0;
    }

    .about-story,
    .about-stats,
    .about-reasons__grid,
    .about-team__grid {
        grid-template-columns: 1fr;
    }

    .about-story {
        gap: 1rem;
    }

    .about-story__media {
        padding: 0.65rem;
    }

    .about-story__media img {
        min-height: 14rem;
    }

    .about-reasons,
    .about-team {
        padding: 1.2rem 1rem 1.35rem;
    }

    .about-reason {
        border-right: 0;
        border-bottom: 1px solid rgba(18, 35, 59, 0.08);
    }

    .about-team-card__visual {
        min-height: 9.5rem;
    }

    .about-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-intro {
        max-width: 100%;
        padding: 0.75rem 0.9rem 0.85rem;
        font-size: 0.95rem;
    }
}


@media (max-width: 720px) {
    .container {
        width: min(100% - 1.25rem, var(--max-width));
    }

    .contact-hero {
        min-height: 24rem;
        padding: 6.1rem 0 2.2rem;
    }

    .contact-hero__copy {
        max-width: none;
    }

    .contact-hero__lead {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .contact-hero__note {
        font-size: 0.92rem;
    }

    .contact-section {
        padding-bottom: 1.2rem;
    }

    .contact-section__text {
        max-width: none;
        font-size: 0.94rem;
    }

    .contact-form input,
    .contact-form textarea {
        border-radius: 14px;
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    }

    .contact-info__item {
        padding: 0.9rem 1rem;
        border-radius: 1.1rem;
    }

    .contact-map,
    .contact-cta {
        min-height: 15rem;
        border-radius: 1.2rem;
    }

    .contact-map__copy,
    .contact-cta__inner {
        padding: 1rem 1.05rem;
    }

    .contact-benefits {
        padding-bottom: 2rem;
    }

    .contact-benefits__grid {
        grid-template-columns: 1fr;
    }

    .contact-benefits__item {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .contact-benefits__item:last-child {
        border-bottom: 0;
    }

    .header-inner {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        min-height: 4.9rem;
        padding: 0.65rem 0;
    }

    .brand {
        order: 1;
        min-width: 0;
    }

    .header-actions {
        order: 2;
        margin-left: auto;
        gap: 0.55rem;
    }

    .header-toggle {
        order: 3;
        display: inline-flex;
    }

    .main-nav {
        order: 4;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.3rem;
        padding: 0.8rem;
        margin-top: 0.25rem;
        border-radius: 18px;
    background: rgba(0, 0, 0, 0.68);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    }

    .site-header.is-menu-open .main-nav {
        display: flex;
    }

    .nav-group {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 0.35rem;
    }

    .nav-link {
        flex: 1 1 auto;
        justify-content: space-between;
        padding: 0.95rem 0.9rem;
        border: 0;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.03);
    }

    .nav-link:hover,
    .nav-link.is-active,
    .nav-group.is-open .nav-link,
    .nav-group:focus-within .nav-link {
        background: rgba(247, 185, 39, 0.1);
    }

    .nav-toggle {
        display: inline-flex;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.03);
        width: 2.9rem;
        height: 2.9rem;
    }

    .nav-dropdown {
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 0.35rem;
        padding: 0.4rem;
        border-radius: 14px;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.02);
        border-color: rgba(255, 255, 255, 0.05);
        transform: none;
    }

    .nav-dropdown--hike {
        width: 100%;
        padding: 0.5rem;
        background: rgba(0, 0, 0, 0.72);
    }

    .nav-dropdown--hike .nav-dropdown-item,
    .nav-dropdown--hike .nav-dropdown-footer {
        width: 100%;
    }

    .language-menu {
        right: 0;
        width: min(14rem, calc(100vw - 1.5rem));
    }

    .whatsapp-copy {
        display: none;
    }

    .whatsapp-badge {
        gap: 0;
    }

    .whatsapp-icon {
        width: 2.6rem;
        height: 2.6rem;
    }

    .topbar-grid,
    .topbar-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-slider {
        min-height: 680px;
    }

    .slide-content {
        padding-top: 6rem;
    }

    .slide-content p {
        font-size: 0.92rem;
    }

    .welcome-section {
        padding: 0 0 3.4rem;
    }

    .welcome-shell {
        padding-top: 0;
        width: 100vw;
        margin-left: calc(50% - 50vw);
    }

    .welcome-accent {
        left: 0;
        width: min(76%, 380px);
        height: 2.8rem;
        border-bottom-right-radius: 1.5rem;
    }

    .welcome-grid {
        width: calc(100% - 1.25rem);
        margin-inline: auto;
        padding: 2.8rem 0 0 1rem;
        gap: 1.6rem;
    }

    .welcome-copy {
        max-width: none;
        width: 100%;
        text-align: center;
        justify-items: center;
        padding-top: 0.35rem;
    }

    .welcome-kicker {
        font-size: 1.35rem;
        letter-spacing: 0.1em;
        text-align: center;
        width: 100%;
        justify-self: center;
        transform: none;
    }

    .welcome-title {
        max-width: none;
        font-size: clamp(1.85rem, 7vw, 2.45rem);
        text-align: center;
        white-space: normal;
        justify-self: center;
    }

    .welcome-media {
        min-height: 390px;
    }

    .welcome-photo--back {
        top: 0;
        right: 0;
        width: 94%;
        height: 210px;
        border-radius: 1.1rem 1.7rem 1.2rem 1.1rem;
        clip-path: inset(0 round 1.1rem 1.7rem 1.2rem 1.1rem);
    }

    .welcome-photo--front {
        right: 0.8rem;
        bottom: -0.2rem;
        width: 76%;
        height: 154px;
        border-radius: 0.95rem 1.15rem 2rem 1.8rem;
        clip-path: inset(0 round 0.95rem 1.15rem 2rem 1.8rem);
    }

    .welcome-body {
        font-size: 0.98rem;
        line-height: 1.75;
        text-align: justify;
        text-justify: inter-word;
        hyphens: none;
        overflow-wrap: normal;
        word-break: normal;
        max-width: none;
    }

    .reveal-on-scroll {
        transform: translateY(18px) scale(0.99);
        filter: blur(2.5px);
    }

    .trek-grid {
        grid-template-columns: 1fr;
    }

    .page-home .trek-grid {
        grid-template-columns: 1fr;
    }

    .trek-content {
        padding: 1rem 1.05rem 1.15rem;
        gap: 0.55rem;
    }

    .trek-card-title {
        font-size: clamp(1rem, 4.8vw, 1.25rem);
    }

    .trek-card-location {
        font-size: 0.92rem;
    }

    .trek-meta {
        flex-wrap: wrap;
        gap: 0.45rem 0.7rem;
        font-size: 0.84rem;
    }

    .trek-meta li {
        padding-right: 0.75rem;
        margin-right: 0.75rem;
    }

    .trek-meta i {
        width: 1.05rem !important;
        height: 1.05rem !important;
        min-width: 1.05rem;
        min-height: 1.05rem;
        flex-basis: 1.05rem;
    }

    .trek-meta svg {
        width: 1.05rem !important;
        height: 1.05rem !important;
        min-width: 1.05rem;
        min-height: 1.05rem;
        stroke-width: 2.35 !important;
    }

    .trek-card-button {
        min-width: 9.4rem;
        min-height: 2.7rem;
        font-size: 0.9rem;
    }


.site-header .nav-link {
    font-size: 14px;
    letter-spacing: 0.06em;
}

.site-header .nav-dropdown--hike {
    width: 19rem;
    min-width: 19rem;
    padding: 0.55rem;
    background: rgba(0, 0, 0, 0.68);
    box-shadow: 0 24px 48px rgba(3, 10, 18, 0.26);
}

.site-header .nav-dropdown--hike .nav-dropdown-item {
    padding: 0.78rem 0.9rem;
}

.site-header .nav-dropdown-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.site-header .nav-dropdown-footer {
    padding: 0.75rem 0.9rem 0.7rem;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
}

.slide-actions .button {
    cursor: pointer;
}

.slide-actions .button:hover,
.slide-actions .button:focus-visible {
    transform: translateY(-2px) scale(1.02) !important;
}

.slide-actions .button.is-hovered {
    transform: translateY(-2px) scale(1.02) !important;
}

.slide-actions .button-primary:hover,
.slide-actions .button-primary:focus-visible {
    background: #ffffff !important;
    color: #111 !important;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.18) !important;
}

.slide-actions .button-outline:hover,
.slide-actions .button-outline:focus-visible {
    background: #f7b927 !important;
    color: #1d1d1d !important;
    border-color: #f7b927 !important;
    box-shadow: 0 10px 20px rgba(247, 185, 39, 0.2) !important;
}

.home-slider .slide-actions .button.button-primary:hover,
.home-slider .slide-actions .button.button-primary:focus-visible {
    background: #ffffff !important;
    color: #111 !important;
    border-color: #ffffff !important;
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.22) !important;
}

.home-slider .slide-actions .button.button-primary.is-hovered {
    background: #ffffff !important;
    color: #111 !important;
    border-color: #ffffff !important;
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.22) !important;
}

.home-slider .slide-actions .button.button-outline:hover,
.home-slider .slide-actions .button.button-outline:focus-visible {
    background: #f7b927 !important;
    color: #1d1d1d !important;
    border-color: #f7b927 !important;
    box-shadow: 0 12px 24px rgba(247, 185, 39, 0.26) !important;
}

.home-slider .slide-actions .button.button-outline.is-hovered {
    background: #f7b927 !important;
    color: #1d1d1d !important;
    border-color: #f7b927 !important;
    box-shadow: 0 12px 24px rgba(247, 185, 39, 0.26) !important;
}

@media (max-width: 1100px) {
    .header-inner {
        grid-template-columns: auto 1fr auto !important;
        column-gap: 0.75rem !important;
    }

    .main-nav {
        justify-content: center !important;
        gap: 0.8rem !important;
    }

    .header-actions {
        justify-self: end !important;
        gap: 0.45rem !important;
    }
}

@media (max-width: 720px) {
    .site-header {
        z-index: 80;
    }

    .header-inner {
        gap: 0.35rem !important;
    }

    .header-actions {
        gap: 0.3rem !important;
    }

    .header-toggle {
        width: 2.6rem !important;
        height: 2.6rem !important;
    }

    .nav-toggle {
        width: 2.4rem !important;
        height: 2.4rem !important;
    }

    .whatsapp-badge {
        gap: 0.35rem !important;
    }

    .whatsapp-icon {
        width: 2.8rem !important;
        height: 2.8rem !important;
        border-width: 2px !important;
    }

    .whatsapp-icon i {
        font-size: 1.25rem !important;
    }

    .site-header.is-menu-open .main-nav {
        display: grid !important;
        grid-template-columns: 1fr !important;
        align-items: stretch !important;
        position: fixed !important;
        top: 5rem !important;
        left: 0.5rem !important;
        right: 0.5rem !important;
        bottom: 0.5rem !important;
        width: auto !important;
        margin: 0 !important;
        padding: 0.8rem !important;
        background: rgba(6, 10, 16, 0.96) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 18px !important;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        max-height: none !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        z-index: 120 !important;
    }

    .site-header.is-menu-open .nav-group {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        grid-template-areas:
            "link toggle"
            "dropdown dropdown" !important;
        align-items: center !important;
        gap: 0.4rem !important;
        width: 100% !important;
    }

    .site-header.is-menu-open .nav-link {
        grid-area: link !important;
        width: 100% !important;
        justify-content: space-between !important;
        background: rgba(255, 255, 255, 0.04) !important;
        border-radius: 14px !important;
        padding: 0.82rem 0.95rem !important;
    }

    .site-header.is-menu-open .nav-link-caret {
        display: none !important;
    }

    .site-header.is-menu-open .nav-link > svg[data-lucide="chevron-down"] {
        display: none !important;
    }

    .site-header.is-menu-open .nav-toggle {
        grid-area: toggle !important;
        display: inline-flex !important;
        width: 2.35rem !important;
        height: 2.35rem !important;
        border-radius: 12px !important;
        background: rgba(255, 255, 255, 0.04) !important;
        align-self: center !important;
        margin-left: 0 !important;
    }

    .site-header.is-menu-open .nav-dropdown {
        grid-area: dropdown !important;
        width: 100% !important;
        margin-top: 0.35rem !important;
        border-radius: 14px !important;
        background: rgba(255, 255, 255, 0.03) !important;
    }

    .site-header.is-menu-open .nav-dropdown--hike {
        width: 100% !important;
        min-width: 0 !important;
        padding: 0.35rem !important;
    }

    .site-header.is-menu-open .nav-dropdown--hike .nav-dropdown-item {
        padding: 0.7rem 0.75rem !important;
    }

}

.slider-dots {
    gap: 0.9rem;
}

.dot {
    width: 1rem;
    height: 1rem;
    min-width: 1rem;
    min-height: 1rem;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
    padding: 0;
    display: block;
    flex: 0 0 auto;
    border-radius: 50%;
    border: 4px solid rgba(247, 185, 39, 0.9);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.dot:hover {
    transform: scale(1.1);
    border-color: rgba(247, 185, 39, 1);
    background: rgba(255, 255, 255, 0.88);
}

.dot.is-active {
    transform: scale(1.15);
    border-color: rgba(247, 185, 39, 1);
    background: rgba(255, 255, 255, 0.92);
}

.dot.is-active:hover {
    transform: scale(1.2);
}

.language-trigger,
.language-option,
.language-option__label {
    font-weight: 400 !important;
}

.slider-social {
    position: absolute;
    right: 1rem;
    bottom: 4.2rem;
    transform: none;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    gap: 0.16rem;
    z-index: 12;
    background: transparent;
    border: 0;
    box-shadow: none;
    line-height: 0;
}

.slider-social__link {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.96);
    color: #111;
    box-shadow: none;
    opacity: 0;
    transform: translateX(22px) scale(0.88);
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.75s ease, background 0.2s ease, color 0.2s ease;
    font-size: 0.8rem;
    line-height: 1;
}

.slider-social__link:hover {
    transform: translateY(-2px) scale(1.1);
    background: rgba(247, 185, 39, 0.95);
    color: #fff;
    box-shadow: 0 8px 18px rgba(247, 185, 39, 0.28);
}

.slider-social__link i {
    font-size: 0.85rem;
    line-height: 1;
    display: block;
}

.slider-social.is-visible .slider-social__link {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.slider-social.is-visible .slider-social__link:nth-child(1) {
    transition-delay: 0.16s;
}

.slider-social.is-visible .slider-social__link:nth-child(2) {
    transition-delay: 0.28s;
}

.slider-social.is-visible .slider-social__link:nth-child(3) {
    transition-delay: 0.4s;
}

.home-slider .slide-content,
.home-slider .slide-actions,
.home-slider .slide-actions .button {
    pointer-events: auto !important;
}

.home-slider .slide-actions {
    position: relative !important;
    z-index: 10 !important;
}

.home-slider .slide-actions .button {
    position: relative !important;
    z-index: 11 !important;
}

@media (max-width: 720px) {
    .slider-control {
        display: none !important;
    }

    .slide-content {
        min-height: 100vh;
        justify-items: start;
        align-content: center;
        text-align: left;
        padding-inline: 1.15rem;
        padding-bottom: 4rem;
    }

    .home-slider .slide-content {
        text-align: center;
        justify-items: center;
    }

    .slide-content h1 {
        font-size: clamp(1.35rem, 5.8vw, 1.85rem);
        line-height: 1.02;
    }

    .slide-content p {
        max-width: 100%;
        font-size: 0.9rem;
    }

    .slide-content h2 {
        font-size: clamp(0.86rem, 3.4vw, 0.98rem);
    }

    .slide-actions {
        width: 100%;
        justify-content: flex-start;
        padding-inline: 0;
    }

    .home-slider .slide-actions {
        justify-content: center;
    }

    .slide-actions .button {
        min-width: 0;
        width: auto;
        padding-inline: 1.05rem;
    }
}

.slide-content h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.05;
}

.slide-content h2 {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    font-weight: 500;
}

.slide-content p {
    font-size: 0.96rem;
}

.slide-content h1,
.slide-content h2,
.slide-content p,
.slide-actions {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 1.05s ease 0.3s, transform 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.slide.is-active .slide-content h1,
.slide.is-active .slide-content h2,
.slide.is-active .slide-content p,
.slide.is-active .slide-actions {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.slide.is-active .slide-content h2 {
    transition-delay: 0.48s;
}

.slide.is-active .slide-content p {
    transition-delay: 0.6s;
}

.slide.is-active .slide-actions {
    transition-delay: 0.72s;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    filter: blur(4px);
    transition:
        opacity 0.85s ease,
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.85s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.welcome-copy.reveal-on-scroll,
.welcome-media.reveal-on-scroll,
.highlights-section .section-intro.reveal-on-scroll,
.highlights-section .section-title.reveal-on-scroll,
.trek-card.reveal-on-scroll {
    transition-property: opacity, transform, filter;
}

.slider-control {
    opacity: 0.7;
    transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}

.slider-control:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
    color: #ffd24d;
}

.mobile-nav {
    display: none;
}

@media (max-width: 720px) {
    #primary-navigation,
    .main-nav,
    .site-header.is-menu-open .main-nav {
        display: none !important;
    }

    .mobile-nav {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        position: fixed !important;
        top: 5rem !important;
        left: 0.5rem !important;
        right: 0.5rem !important;
        width: auto !important;
        height: auto !important;
        max-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 18px !important;
        background: rgba(6, 10, 16, 0.98) !important;
        border: 1px solid transparent !important;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0) !important;
        overflow-y: hidden !important;
        overflow-x: hidden !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateY(-10px) scale(0.98) !important;
        transform-origin: top center !important;
        transition: opacity 0.24s ease, transform 0.24s ease, max-height 0.28s ease, visibility 0.24s ease, padding 0.24s ease, margin 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease !important;
        z-index: 260 !important;
    }

    .site-header.is-menu-open .mobile-nav {
        max-height: calc(100dvh - 5.75rem) !important;
        padding: 0.85rem !important;
        border-color: rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42) !important;
        overflow-y: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) scale(1) !important;
        z-index: 260 !important;
    }

    .site-header.is-menu-open .mobile-nav-group {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.35rem !important;
        width: 100% !important;
    }

    .site-header.is-menu-open .mobile-nav-row {
        display: flex !important;
        align-items: center !important;
        gap: 0.45rem !important;
        width: 100% !important;
    }

    .site-header.is-menu-open .mobile-nav-link {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        min-width: 0 !important;
        padding: 0.92rem 1rem !important;
        border-radius: 14px !important;
        background: rgba(255, 255, 255, 0.04) !important;
        color: #fff !important;
        font-family: var(--header-font) !important;
        text-transform: uppercase !important;
        letter-spacing: 0.08em !important;
        font-weight: 500 !important;
    }

    .site-header.is-menu-open .mobile-nav-toggle {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 2.35rem !important;
        height: 2.35rem !important;
        border: 0 !important;
        border-radius: 12px !important;
        background: rgba(255, 255, 255, 0.04) !important;
        color: #fff !important;
        flex: 0 0 auto !important;
    }

    .site-header.is-menu-open .mobile-nav-dropdown {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.08rem !important;
        width: 100% !important;
        padding: 0 0.2rem !important;
        margin-top: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-8px) scale(0.985) !important;
        transform-origin: top center !important;
        border-radius: 16px !important;
        border: 1px solid rgba(255, 255, 255, 0) !important;
        background: linear-gradient(180deg, rgba(247, 185, 39, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0) !important;
        transition: max-height 0.38s ease, opacity 0.26s ease, transform 0.26s ease, visibility 0.26s ease, margin-top 0.26s ease, padding 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease !important;
    }

    .site-header.is-menu-open .mobile-nav-group.is-open .mobile-nav-dropdown {
        max-height: 420px !important;
        margin-top: 0.35rem !important;
        padding: 0.45rem 0.35rem 0.3rem !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) scale(1) !important;
        border-color: rgba(255, 255, 255, 0.08) !important;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 16px 28px rgba(0, 0, 0, 0.22) !important;
    }

    .site-header.is-menu-open .mobile-nav-sublink,
    .site-header.is-menu-open .mobile-nav-footer {
        display: flex !important;
        align-items: center !important;
        gap: 0.75rem !important;
        padding: 0.76rem 0.85rem !important;
        border-radius: 12px !important;
        color: #fff !important;
        font-family: var(--header-font) !important;
        font-size: 0.88rem !important;
        opacity: 0 !important;
        transform: translateX(-10px) !important;
        transition: opacity 0.28s ease, transform 0.28s ease, background 0.18s ease, box-shadow 0.18s ease !important;
    }

    .site-header.is-menu-open .mobile-nav-sublink {
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        padding-left: 0.95rem !important;
        margin-left: 0.35rem !important;
        background: rgba(255, 255, 255, 0.02) !important;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02) !important;
    }

    .site-header.is-menu-open .mobile-nav-sublink__icon {
        width: 1rem !important;
        height: 1rem !important;
        color: var(--accent) !important;
        flex: 0 0 auto !important;
    }

    .site-header.is-menu-open .mobile-nav-footer {
        justify-content: space-between !important;
        margin-top: 0.2rem !important;
        margin-left: 0.35rem !important;
        padding-left: 0.95rem !important;
        background: rgba(247, 185, 39, 0.08) !important;
    }

    .site-header.is-menu-open .mobile-nav-group.is-open .mobile-nav-dropdown > * {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }

    .site-header.is-menu-open .mobile-nav-group.is-open .mobile-nav-dropdown > *:nth-child(1) {
        transition-delay: 0.04s !important;
    }

    .site-header.is-menu-open .mobile-nav-group.is-open .mobile-nav-dropdown > *:nth-child(2) {
        transition-delay: 0.08s !important;
    }

    .site-header.is-menu-open .mobile-nav-group.is-open .mobile-nav-dropdown > *:nth-child(3) {
        transition-delay: 0.12s !important;
    }

    .site-header.is-menu-open .mobile-nav-group.is-open .mobile-nav-dropdown > *:nth-child(4) {
        transition-delay: 0.16s !important;
    }

    .site-header.is-menu-open .mobile-nav-group.is-open .mobile-nav-dropdown > *:nth-child(5) {
        transition-delay: 0.2s !important;
    }

    .site-header.is-menu-open .mobile-nav-group.is-open .mobile-nav-dropdown > *:nth-child(6) {
        transition-delay: 0.24s !important;
    }
}

@media (max-width: 720px) {
    .site-header.is-menu-open .main-nav {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        position: fixed !important;
        top: 5rem !important;
        left: 0.5rem !important;
        right: 0.5rem !important;
        bottom: 0.5rem !important;
        width: auto !important;
        margin: 0 !important;
        padding: 0.85rem !important;
        background: rgba(6, 10, 16, 0.98) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 18px !important;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        z-index: 200 !important;
    }

    .site-header.is-menu-open .main-nav > * {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    .site-header.is-menu-open .nav-group {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        margin-bottom: 0.45rem !important;
    }

    .site-header.is-menu-open .nav-link {
        display: flex !important;
        width: 100% !important;
        align-items: center !important;
        justify-content: space-between !important;
        min-width: 0 !important;
        padding: 0.92rem 1rem !important;
        border-radius: 14px !important;
        background: rgba(255, 255, 255, 0.04) !important;
    }

    .site-header.is-menu-open .nav-link-caret,
    .site-header.is-menu-open .nav-link > svg[data-lucide="chevron-down"] {
        display: none !important;
    }

    .site-header.is-menu-open .nav-toggle {
        display: inline-flex !important;
        position: static !important;
        width: 2.35rem !important;
        height: 2.35rem !important;
        margin: 0.2rem 0 0 auto !important;
        border-radius: 12px !important;
        background: rgba(255, 255, 255, 0.04) !important;
    }

    .site-header.is-menu-open .nav-dropdown {
        position: static !important;
        width: 100% !important;
        margin-top: 0.45rem !important;
    }

    .site-header.is-menu-open .nav-dropdown--hike {
        min-width: 0 !important;
        padding: 0.35rem !important;
        background: rgba(0, 0, 0, 0.72) !important;
    }
}

@media (max-width: 720px) {
    .site-header.is-menu-open .header-inner {
        align-items: flex-start !important;
    }

    .site-header.is-menu-open .container.header-inner > .main-nav {
        order: 4 !important;
        display: flex !important;
        position: fixed !important;
        top: 4.85rem !important;
        left: 0.5rem !important;
        right: 0.5rem !important;
        width: auto !important;
        min-height: 0 !important;
        height: auto !important;
        max-height: calc(100vh - 5.4rem) !important;
        padding: 0.85rem !important;
        margin: 0 !important;
        background: rgba(6, 10, 16, 0.98) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 18px !important;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        z-index: 220 !important;
    }

    .site-header.is-menu-open .container.header-inner > .main-nav > * {
        width: 100% !important;
        min-width: 0 !important;
    }

    .site-header.is-menu-open .nav-group {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.35rem !important;
        width: 100% !important;
    }

    .site-header.is-menu-open .nav-link {
        display: flex !important;
        width: 100% !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0.92rem 1rem !important;
        border-radius: 14px !important;
        background: rgba(255, 255, 255, 0.04) !important;
    }

    .site-header.is-menu-open .nav-toggle {
        display: inline-flex !important;
        position: static !important;
        align-self: flex-end !important;
        width: 2.35rem !important;
        height: 2.35rem !important;
        margin: 0 !important;
    }

    .site-header.is-menu-open .nav-dropdown {
        position: static !important;
        width: 100% !important;
    }
}

@media (max-width: 720px) {
    .header-toggle--menu.is-open {
        background: rgba(255, 255, 255, 0.06) !important;
    }

    #primary-navigation {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
    }

    .main-nav,
    .site-header.is-menu-open .main-nav {
        display: none !important;
    }

    .mobile-nav-group {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        width: 100%;
    }

    .mobile-nav-row {
        display: flex;
        align-items: center;
        gap: 0.45rem;
        width: 100%;
    }

    .mobile-nav-link {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.75rem;
        width: 100%;
        padding: 0.82rem 0.95rem;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.04);
        color: #fff;
        font-family: var(--header-font);
        text-transform: none;
        letter-spacing: 0;
        font-weight: 500;
        font-size: 0.92rem;
    }

    .mobile-nav-toggle {
        appearance: none;
        border: 0;
        background: rgba(255, 255, 255, 0.04);
        color: #fff;
        width: 2.35rem;
        height: 2.35rem;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-nav-link__icon {
        width: 1rem;
        height: 1rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        flex: 0 0 auto;
    }

    .mobile-nav-dropdown {
        display: flex;
        flex-direction: column;
        gap: 0.08rem;
        width: 100%;
        padding: 0 0.2rem;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px) scale(0.985);
        transform-origin: top center;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0);
        background:
            linear-gradient(180deg, rgba(247, 185, 39, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
        transition:
            max-height 0.38s ease,
            opacity 0.26s ease,
            transform 0.26s ease,
            visibility 0.26s ease,
            margin-top 0.26s ease,
            padding 0.26s ease,
            border-color 0.26s ease,
            box-shadow 0.26s ease;
        will-change: max-height, opacity, transform;
    }

    .mobile-nav-group.is-open .mobile-nav-dropdown {
        max-height: 420px;
        margin-top: 0.35rem;
        padding: 0.45rem 0.35rem 0.3rem;
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 16px 28px rgba(0, 0, 0, 0.22);
    }

    .mobile-nav-sublink,
    .mobile-nav-footer {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.76rem 0.85rem;
        border-radius: 12px;
        color: #fff;
        font-family: var(--header-font);
        font-size: 0.88rem;
        opacity: 0;
        transform: translateX(-10px);
        transition:
            opacity 0.28s ease,
            transform 0.28s ease,
            background 0.18s ease,
            box-shadow 0.18s ease;
    }

    .mobile-nav-sublink {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding-left: 0.95rem;
        margin-left: 0.35rem;
        background: rgba(255, 255, 255, 0.02);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    }

    .mobile-nav-sublink__icon {
        width: 0.9rem;
        height: 0.9rem;
        color: var(--accent);
        flex: 0 0 auto;
    }

    .mobile-nav-footer {
        justify-content: space-between;
        margin-top: 0.2rem;
        background: rgba(247, 185, 39, 0.08);
        margin-left: 0.35rem;
        padding-left: 0.95rem;
    }

    .mobile-nav-group.is-open .mobile-nav-dropdown > * {
        opacity: 1;
        transform: translateX(0);
    }

    .mobile-nav-group.is-open .mobile-nav-dropdown > *:nth-child(1) {
        transition-delay: 0.04s;
    }

    .mobile-nav-group.is-open .mobile-nav-dropdown > *:nth-child(2) {
        transition-delay: 0.08s;
    }

    .mobile-nav-group.is-open .mobile-nav-dropdown > *:nth-child(3) {
        transition-delay: 0.12s;
    }

    .mobile-nav-group.is-open .mobile-nav-dropdown > *:nth-child(4) {
        transition-delay: 0.16s;
    }

    .mobile-nav-group.is-open .mobile-nav-dropdown > *:nth-child(5) {
        transition-delay: 0.2s;
    }

    .mobile-nav-group.is-open .mobile-nav-dropdown > *:nth-child(6) {
        transition-delay: 0.24s;
    }

    .site-header.is-menu-open .container.header-inner > .main-nav {
        display: none !important;
    }

.site-header.is-menu-open .header-inner {
        flex-direction: row !important;
        align-items: center !important;
        overflow: visible !important;
    }
}

.itinerary-hero {
    position: relative;
    min-height: 42rem;
    display: flex;
    align-items: flex-end;
    padding: 2.75rem 0 3rem;
    color: #fff;
    background-color: #10243d;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.itinerary-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 7rem;
    background: linear-gradient(180deg, rgba(8, 17, 30, 0), rgba(8, 17, 30, 0.82));
    pointer-events: none;
}

.itinerary-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.48fr);
    gap: 1.5rem;
    align-items: start;
}

.itinerary-hero__copy {
    max-width: 58rem;
}

.itinerary-kicker {
    margin: 0 0 0.5rem;
    color: var(--accent);
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.05rem, 1.7vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.itinerary-hero h1 {
    margin: 0;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: clamp(3rem, 7vw, 6.1rem);
    line-height: 0.92;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.itinerary-hero__duration {
    margin-top: 0.55rem;
    color: var(--accent);
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.4rem, 6vw, 5.2rem);
    line-height: 0.95;
    font-weight: 800;
    text-transform: uppercase;
}

.itinerary-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1rem;
    margin-top: 1.45rem;
}

.itinerary-fact {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 10rem;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: rgba(7, 18, 32, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.itinerary-fact i {
    width: 1.7rem;
    height: 1.7rem;
    color: var(--accent);
    flex: 0 0 auto;
}

.itinerary-fact span {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.itinerary-fact strong {
    display: block;
    color: #fff;
    font-size: 0.98rem;
    font-weight: 700;
}

.itinerary-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    justify-self: end;
    width: min(100%, 21rem);
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(8, 17, 30, 0.86);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.itinerary-whatsapp__icon {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 1.5rem;
    flex: 0 0 auto;
}

.itinerary-whatsapp__copy span {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
}

.itinerary-whatsapp__copy strong {
    display: block;
    margin-top: 0.25rem;
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.1;
    font-weight: 800;
}

.itinerary-overview,
.itinerary-panels,
.itinerary-cta {
    padding: 2rem 0;
    background: #f6f4ef;
}

.itinerary-overview .container,
.itinerary-panels .container,
.itinerary-cta .container {
    padding-inline: clamp(2rem, 5vw, 4.5rem);
}

.itinerary-overview__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: 1.4rem;
    align-items: stretch;
}

.card-panel,
.itinerary-panel {
    border-radius: 26px;
    background: linear-gradient(180deg, #fff 0%, #f8f5ee 100%);
    box-shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
    border: 1px solid rgba(18, 35, 59, 0.08);
    overflow: hidden;
}

.itinerary-copy {
    padding: 1.4rem 1.5rem;
}

.section-heading--itinerary {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.section-heading--itinerary h2,
.itinerary-panel__head h2 {
    margin: 0;
    color: #1e3150;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.3rem, 2vw, 1.9rem);
    line-height: 1.05;
    font-weight: 800;
    text-transform: uppercase;
}

.section-heading__icon,
.itinerary-panel__icon {
    display: inline-grid;
    place-items: center;
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    flex: 0 0 auto;
}

.itinerary-copy p {
    margin: 0;
    color: #20324f;
    font-size: 1rem;
    line-height: 1.8;
}

.itinerary-photo {
    min-height: 100%;
    padding: 0.8rem;
}

.itinerary-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 18rem;
    object-fit: cover;
    border-radius: 20px;
}

.itinerary-panels__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.itinerary-panel {
    padding: 1.1rem 1.1rem 1.2rem;
}

.itinerary-panel__head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.itinerary-panel--schedule {
    background: linear-gradient(180deg, #dfeefe 0%, #f9fbff 100%);
}

.itinerary-panel--included {
    background: linear-gradient(180deg, #d8f0da 0%, #f8fff8 100%);
}

.itinerary-panel--excluded {
    background: linear-gradient(180deg, #fde0d5 0%, #fff7f4 100%);
}

.itinerary-panel--equipment {
    background: linear-gradient(180deg, #e4effc 0%, #f8fbff 100%);
}

.itinerary-schedule {
    display: grid;
    gap: 0.7rem;
}

.itinerary-schedule__row {
    display: grid;
    grid-template-columns: 4.8rem minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
    padding: 0.7rem 0.8rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 35, 59, 0.06);
}

.itinerary-schedule__day {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.45rem;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
}

.itinerary-schedule__row p {
    margin: 0;
    color: #1e3150;
    font-size: 0.96rem;
    line-height: 1.5;
    font-weight: 500;
}

.itinerary-list,
.itinerary-equipment {
    display: grid;
    gap: 0.55rem;
}

.itinerary-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.itinerary-list li,
.itinerary-equipment__item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: #1e3150;
    font-size: 0.96rem;
    line-height: 1.5;
}

.itinerary-list li i {
    margin-top: 0.12rem;
    color: #1f8f2f;
}

.itinerary-list--excluded li i {
    color: #c83b29;
}

.itinerary-equipment__item i {
    margin-top: 0.08rem;
    color: #1e3f7a;
}

.itinerary-cta {
    padding-top: 0;
}

.itinerary-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.3rem;
    border-radius: 26px;
    background: linear-gradient(90deg, #0b2340 0%, #163a63 100%);
    box-shadow: 0 18px 40px rgba(8, 18, 32, 0.22);
}

.itinerary-cta__copy h2 {
    margin: 0;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.2rem, 2vw, 2rem);
    line-height: 1.05;
    font-weight: 800;
    text-transform: uppercase;
}

.itinerary-cta__copy p {
    margin: 0.45rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 42rem;
}

.itinerary-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 13.5rem;
    justify-content: center;
    white-space: nowrap;
}

.itinerary-cta__button i {
    font-size: 1.15rem;
}

@media (max-width: 1100px) {
    .itinerary-hero__inner,
    .itinerary-overview__grid,
    .itinerary-panels__grid,
    .itinerary-cta__inner {
        grid-template-columns: 1fr;
    }

    .itinerary-whatsapp {
        justify-self: start;
    }

    .itinerary-cta__inner {
        display: grid;
    }
}

@media (max-width: 720px) {
    .itinerary-hero {
        min-height: 34rem;
        padding: 2.1rem 0 2.3rem;
    }

    .itinerary-hero h1 {
        font-size: clamp(2.5rem, 16vw, 4rem);
    }

    .itinerary-hero__duration {
        font-size: clamp(2rem, 12vw, 3.5rem);
    }

    .itinerary-fact {
        width: 100%;
    }

    .itinerary-photo img {
        min-height: 14rem;
    }

    .itinerary-schedule__row {
        grid-template-columns: 1fr;
    }

    .itinerary-schedule__day {
        justify-self: start;
    }

    .itinerary-cta__button {
        width: 100%;
    }
}

@media (max-width: 1100px) {
    .hike-hero {
        min-height: 28rem;
        padding: 4rem 0 2.5rem;
    }

    .hike-hero h1 {
        font-size: clamp(1.55rem, 4.8vw, 2.7rem);
    }

    .hike-hero__subtitle {
        font-size: clamp(1rem, 2.7vw, 1.55rem);
    }

    .hike-hero__text {
        max-width: 32rem;
        font-size: 0.96rem;
    }

    .hike-stats__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hike-stat {
        padding: 0.45rem 0.85rem;
    }

    .hike-stat:nth-child(2n) {
        border-right: 0;
    }

    .hike-stat:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hike-filters__row {
        justify-content: center;
    }

    .trek-grid--hike-page {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .hike-hero {
        min-height: 24rem;
        padding: 6.1rem 0 1.8rem;
        align-items: flex-start;
    }

    .hike-hero__content {
        width: 100%;
        max-width: none;
        padding-top: 1rem;
    }

    .hike-hero__kicker {
        font-size: 0.74rem;
    }

    .hike-hero h1 {
        max-width: 12ch;
        font-size: clamp(1.55rem, 7.2vw, 2rem);
        line-height: 0.96;
    }

    .hike-hero__subtitle {
        font-size: clamp(0.88rem, 4.2vw, 1.02rem);
    }

    .hike-hero__text {
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .hike-stats {
        margin-top: -1.1rem;
    }

    .hike-stats__grid {
        grid-template-columns: 1fr;
        padding: 1rem 1rem 0.85rem;
        gap: 0.7rem;
    }

    .hike-stat {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding: 0 0 0.75rem;
    }

    .hike-stat:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .hike-stat__icon {
        width: 2.35rem;
        height: 2.35rem;
    }

    .hike-stat strong {
        font-size: 1.45rem;
    }

    .hike-filters {
        padding: 1rem 0 1.2rem;
    }

    .hike-filters__row {
        justify-content: flex-start;
        gap: 0.6rem;
        overflow-x: auto;
        padding-bottom: 0.2rem;
        scrollbar-width: none;
    }

    .hike-filters__row::-webkit-scrollbar {
        display: none;
    }

    .hike-filter {
        flex: 0 0 auto;
        padding: 0.72rem 1rem;
        font-size: 0.84rem;
    }

    .trek-grid--hike-page {
        grid-template-columns: 1fr;
    }

    .trek-card--hike .trek-image {
        min-height: 11.5rem;
    }

    .floating-actions {
        position: static;
    }

    .floating-action {
        width: 2.75rem;
        height: 2.75rem;
    }

    .floating-action--top {
        right: 0.75rem;
        bottom: 0.75rem;
    }

    .floating-action--whatsapp {
        left: 0.75rem;
        bottom: 0.75rem;
    }
}



