/* ============================================================
   Homepage v5 — slim (no stats, no newsletter)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --dh-forest: #1f3a2d;
    --dh-forest-2: #2d4f3e;
    --dh-cream: #f7f3ec;
    --dh-cream-2: #ede5d3;
    --dh-terracotta: #c2622d;
    --dh-terracotta-dark: #a04f1f;
    --dh-charcoal: #1a1714;
    --dh-muted: #6b6358;
    --dh-line: rgba(26, 23, 20, 0.12);

    --dh-font-display: 'Fraunces', Georgia, serif;
    --dh-font-body: 'Outfit', system-ui, sans-serif;

    --dh-radius-md: 14px;
    --dh-radius-lg: 24px;
    --dh-max: 1200px;
    --dh-header-height: 76px;
}

.dh {
    color: var(--dh-charcoal);
    font-family: var(--dh-font-body);
    font-size: 17px;
    line-height: 1.6;
    background: var(--dh-cream);
    overflow-x: hidden;
}
.dh * { box-sizing: border-box; }
.dh h1, .dh h2, .dh h3 {
    font-family: var(--dh-font-display);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}

/* HEADER */
.dh-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--dh-header-height);
    transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
    background: rgba(31, 58, 45, 0);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(0);
}
.dh-header.is-scrolled {
    background: rgba(247, 243, 236, 0.95);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--dh-line);
    box-shadow: 0 2px 12px rgba(26, 23, 20, 0.04);
}
.dh-header__inner {
    height: 100%; max-width: var(--dh-max); margin: 0 auto; padding: 0 6vw;
    display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.dh-header__logo {
    display: flex; align-items: center; gap: 0.7rem;
    text-decoration: none; color: var(--dh-cream);
    transition: color 0.35s ease;
}
.dh-header.is-scrolled .dh-header__logo { color: var(--dh-forest); }
.dh-header__logo-img {
    height: 46px; width: auto; display: block; flex-shrink: 0;
    filter: none;
    transition: filter .35s ease;
}
.dh-header.is-scrolled .dh-header__logo-img { filter: invert(1); }

.dh-header__nav { flex: 1; display: flex; justify-content: center; }
.dh-header__nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 2.25rem; }
.dh-header__nav a {
    color: var(--dh-cream); text-decoration: none;
    font-size: 0.95rem; font-weight: 500; letter-spacing: 0.01em;
    position: relative; padding: 0.35rem 0; transition: color 0.2s ease;
}
.dh-header.is-scrolled .dh-header__nav a { color: var(--dh-charcoal); }
.dh-header__nav a::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 0; height: 1.5px; background: var(--dh-terracotta);
    transition: width 0.25s ease;
}
.dh-header__nav a:hover::after { width: 100%; }
.dh-header__nav a:hover { color: var(--dh-terracotta); }

.dh-header__socials { display: flex; align-items: center; gap: 0.75rem; }
.dh-header__socials a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    color: var(--dh-cream); transition: all 0.2s ease;
    border: 1px solid rgba(247, 243, 236, 0.25);
}
.dh-header.is-scrolled .dh-header__socials a {
    color: var(--dh-forest); border-color: var(--dh-line);
}
.dh-header__socials a:hover {
    color: var(--dh-terracotta); border-color: var(--dh-terracotta);
    transform: translateY(-2px);
}
.dh-header__socials svg { width: 18px; height: 18px; }

.dh-header__toggle {
    display: none; background: transparent; border: none; cursor: pointer;
    width: 36px; height: 36px; padding: 0;
    flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.dh-header__toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--dh-cream); border-radius: 2px;
    transition: all 0.3s ease;
}
.dh-header.is-scrolled .dh-header__toggle span { background: var(--dh-charcoal); }
.dh-header__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.dh-header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.dh-header__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.dh-mobile-menu {
    position: fixed; top: var(--dh-header-height); left: 0; right: 0; bottom: 0;
    background: var(--dh-forest); z-index: 99;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    overflow-y: auto;
}
.dh-mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.dh-mobile-menu nav { padding: 3rem 2rem; }
.dh-mobile-menu ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.25rem; }
.dh-mobile-menu ul a {
    display: block; padding: 1rem 0;
    color: var(--dh-cream); text-decoration: none;
    font-family: var(--dh-font-display); font-size: 1.75rem; font-weight: 500;
    border-bottom: 1px solid rgba(247, 243, 236, 0.1);
    font-variation-settings: "opsz" 144;
}
.dh-mobile-menu__socials { display: flex; gap: 1.5rem; margin-top: 2.5rem; }
.dh-mobile-menu__socials a {
    color: rgba(247, 243, 236, 0.7); text-decoration: none;
    font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase;
    border-bottom: 1px solid rgba(247, 243, 236, 0.3); padding-bottom: 2px;
}

@media (max-width: 900px) {
    .dh-header__nav, .dh-header__socials { display: none; }
    .dh-header__toggle { display: flex; }
    .dh-header__inner { padding: 0 1.25rem; }
}

/* HERO */
.dh-hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: flex-end;
    background-color: var(--dh-forest);
    background-size: cover; background-position: center;
    color: var(--dh-cream);
    padding: calc(var(--dh-header-height) + 4rem) 6vw 5rem;
    overflow: hidden;
}
.dh-hero__veil {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(26, 23, 20, 0.25) 0%, rgba(26, 23, 20, 0.4) 50%, rgba(26, 23, 20, 0.75) 100%);
    z-index: 1;
}
.dh-hero__inner { position: relative; z-index: 2; max-width: 760px; }
.dh-hero__eyebrow {
    display: inline-block; font-family: var(--dh-font-body);
    font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--dh-cream); opacity: 0.85;
    padding-bottom: 0.4rem; border-bottom: 1px solid rgba(247, 243, 236, 0.4);
    margin-bottom: 1.5rem;
}
.dh-hero__title {
    font-size: clamp(2.5rem, 6.5vw, 5.5rem); color: var(--dh-cream);
    margin-bottom: 1.25rem; font-weight: 400; font-variation-settings: "opsz" 144;
}
.dh-hero__sub {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.55;
    max-width: 560px; opacity: 0.9; margin: 0 0 2.25rem; text-align: justify;
}
.dh-hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.dh-btn {
    display: inline-flex; align-items: center;
    padding: 0.95rem 1.75rem; border-radius: 999px;
    font-family: var(--dh-font-body); font-size: 0.95rem; font-weight: 500;
    text-decoration: none; transition: all 0.25s ease; cursor: pointer; border: none;
}
.dh-btn--primary { background: var(--dh-terracotta); color: var(--dh-cream); }
.dh-btn--primary:hover {
    background: var(--dh-terracotta-dark); color: var(--dh-cream);
    transform: translateY(-2px); box-shadow: 0 8px 20px rgba(194, 98, 45, 0.3);
}
.dh-btn--ghost { background: transparent; color: var(--dh-cream); border: 1px solid rgba(247, 243, 236, 0.5); }
.dh-btn--ghost:hover { background: rgba(247, 243, 236, 0.1); color: var(--dh-cream); border-color: var(--dh-cream); }
.dh-hero__scroll {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    z-index: 2; width: 1px; height: 50px;
    background: rgba(247, 243, 236, 0.3); overflow: hidden;
}
.dh-hero__scroll span {
    display: block; width: 100%; height: 50%;
    background: var(--dh-cream); animation: dh-scroll 2s ease-in-out infinite;
}
@keyframes dh-scroll { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }

/* Smooth anchor scroll */
html { scroll-behavior: smooth; scroll-padding-top: var(--dh-header-height); }

/* SECTION HEAD */
.dh-section__head { max-width: 720px; margin: 0 auto 3rem; text-align: center; padding: 0 6vw; }
.dh-section__head--light .dh-section__title { color: var(--dh-cream); }
.dh-section__head--light .dh-section__eyebrow { color: var(--dh-cream); opacity: 0.7; }
.dh-section__eyebrow {
    display: inline-block; font-size: 0.75rem; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--dh-terracotta);
    margin-bottom: 1rem; font-weight: 500;
}
.dh-section__title {
    font-size: clamp(2rem, 4vw, 3rem); color: var(--dh-forest);
    margin-bottom: 1rem; font-variation-settings: "opsz" 144;
}
.dh-section__sub { color: var(--dh-muted); font-size: 1.05rem; margin: 0; max-width: 620px; margin-inline: auto; }
.dh-section__cta { text-align: center; margin-top: 3rem; padding: 0 6vw; }
.dh-link-arrow {
    color: var(--dh-forest); font-weight: 500; text-decoration: none; font-size: 1rem;
    border-bottom: 1px solid var(--dh-forest); padding-bottom: 2px; transition: all 0.2s ease;
}
.dh-link-arrow:hover { color: var(--dh-terracotta); border-color: var(--dh-terracotta); }

/* DEPARTURES */
.dh-departures { padding: 7rem 0 6rem; background: var(--dh-cream); }
.dh-departures__grid {
    max-width: var(--dh-max); margin: 0 auto; padding: 0 6vw;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
@media (max-width: 860px) { .dh-departures__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .dh-departures__grid { grid-template-columns: 1fr; } }
.dh-card {
    background: #fff; border-radius: var(--dh-radius-md); overflow: hidden;
    text-decoration: none; color: inherit;
    box-shadow: 0 2px 12px rgba(26, 23, 20, 0.06);
    transition: all 0.3s ease; display: flex; flex-direction: column;
}
.dh-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(26, 23, 20, 0.14); }
.dh-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--dh-forest); }
.dh-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dh-card:hover .dh-card__media img { transform: scale(1.06); }
.dh-card__date {
    position: absolute; top: 1rem; left: 1rem;
    background: var(--dh-cream); color: var(--dh-forest);
    padding: 0.4rem 0.85rem; border-radius: 999px;
    font-size: 0.8rem; font-weight: 600; box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.dh-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.dh-card__dest {
    font-size: 0.75rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--dh-terracotta);
    margin-bottom: 0.5rem; font-weight: 500;
}
.dh-card__title { font-size: 1.4rem; margin-bottom: 1rem; color: var(--dh-forest); font-weight: 500; }
.dh-card__meta {
    margin-top: auto; display: flex; justify-content: space-between;
    align-items: baseline; color: var(--dh-muted); font-size: 0.9rem;
    padding-top: 1rem; border-top: 1px solid var(--dh-line);
}
.dh-card__price {
    color: var(--dh-forest); font-weight: 600;
    font-family: var(--dh-font-display); font-size: 1.1rem;
}
.dh-empty { text-align: center; max-width: 500px; margin: 0 auto; color: var(--dh-muted); }
.dh-empty a { color: var(--dh-terracotta); }

/* VIAGGIO SU MISURA */
.dh-custom-trip { padding: 6rem 6vw; background: var(--dh-forest); text-align: center; color: var(--dh-cream); }
.dh-custom-trip__wrap { max-width: 640px; margin: 0 auto; }
.dh-custom-trip .dh-section__eyebrow { color: rgba(247,243,236,.6); margin-bottom: .75rem; }
.dh-custom-trip__icon { width: 56px; height: 56px; margin: 0 auto 1.75rem; color: rgba(247,243,236,.38); }
.dh-custom-trip__icon svg { width: 100%; height: 100%; }
.dh-custom-trip__title {
    font-family: var(--dh-font-display); font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 400;
    color: var(--dh-cream); letter-spacing: -0.02em; line-height: 1.1;
    margin: 0 0 1.25rem; font-variation-settings: "opsz" 100;
}
.dh-custom-trip__text { font-size: 1.1rem; color: rgba(247,243,236,.78); line-height: 1.7; margin: 0 0 2.5rem; }
.dh-btn--lg { padding: 1.1rem 2.5rem; font-size: 1rem; }
@media (max-width: 600px) { .dh-custom-trip { padding: 4.5rem 1.5rem; } }

/* GALLERY */
.dh-gallery { padding: 5rem 0 7rem; background: var(--dh-cream); }
.dh-gallery__grid {
    max-width: var(--dh-max); margin: 0 auto; padding: 0 6vw;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: .9rem;
}
.dh-gallery__item {
    overflow: hidden; border-radius: var(--dh-radius-md);
    cursor: pointer; padding: 0; border: none; background: var(--dh-forest);
    display: block; position: relative;
}
.dh-gallery__item:first-child { grid-row: 1 / 3; }
.dh-gallery__item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .55s ease;
}
.dh-gallery__item:hover img { transform: scale(1.06); }
.dh-gallery__item::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(31,58,45,0);
    transition: background .3s ease;
    pointer-events: none;
}
.dh-gallery__item:hover::after { background: rgba(31,58,45,.18); }
@media (max-width: 768px) {
    .dh-gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px;
    }
    .dh-gallery__item:first-child { grid-row: 1 / 3; }
}
@media (max-width: 480px) {
    .dh-gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 220px);
    }
    .dh-gallery__item:first-child { grid-row: auto; }
}

/* LIGHTBOX */
.dh-lightbox {
    border: none; padding: 0; margin: auto;
    background: transparent; max-width: 100vw; max-height: 100vh;
    width: 100vw; height: 100vh;
    display: none; align-items: center; justify-content: center;
}
.dh-lightbox[open] { display: flex; }
.dh-lightbox::backdrop { background: rgba(10,8,6,.92); }
.dh-lightbox__img {
    max-width: min(92vw, 1200px); max-height: 88vh;
    object-fit: contain; border-radius: var(--dh-radius-md);
    box-shadow: 0 30px 80px rgba(0,0,0,.5);
    display: block;
}
.dh-lightbox__close {
    position: fixed; top: 1.25rem; right: 1.25rem;
    background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%; width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: #fff; transition: background .2s ease; z-index: 1;
}
.dh-lightbox__close:hover { background: rgba(255,255,255,.28); }
.dh-lightbox__close svg { width: 20px; height: 20px; }

/* ABOUT */
.dh-about { padding: 7rem 0; background: var(--dh-cream-2); }
.dh-about__wrap {
    max-width: var(--dh-max); margin: 0 auto; padding: 0 6vw;
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: center;
}
.dh-about__text .dh-section__title { text-align: left; margin-bottom: 1.5rem; }
.dh-about__body { color: var(--dh-charcoal); line-height: 1.75; max-width: 680px; text-align: justify; }
.dh-about__body p { margin: 0 0 1rem; }
.dh-about blockquote { border-left: none; padding-left: 0; background: none; margin: 0; }
.dh-quote { margin: 2rem 0 0; padding: 1.5rem 0 0; border-top: 1px solid var(--dh-line); }
.dh-quote p {
    font-family: var(--dh-font-display); font-size: 1.35rem; font-style: italic;
    color: var(--dh-forest) !important; margin: 0; line-height: 1.4;
}
.dh-about__media {
    margin: 0; border-radius: var(--dh-radius-lg); overflow: hidden;
    aspect-ratio: 4/5; box-shadow: 0 30px 60px rgba(31, 58, 45, 0.2);
}
.dh-about__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
    .dh-about__wrap { grid-template-columns: 1fr; gap: 3rem; }
    .dh-about__media { aspect-ratio: 16/10; max-height: 400px; }
}

/* TEAM */
.dh-team { padding: 7rem 0; background: var(--dh-cream); }
.dh-team__grid {
    max-width: var(--dh-max); margin: 0 auto; padding: 0 6vw;
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2.5rem 2rem;
}
.dh-team__card { text-align: center; transition: transform 0.3s ease; }
.dh-team__photo {
    aspect-ratio: 4/5; overflow: hidden;
    border-radius: var(--dh-radius-md);
    transform: rotate(var(--tilt, 0deg)); transition: transform 0.4s ease;
    background: var(--dh-forest); margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(26, 23, 20, 0.12);
}
.dh-team__photo img {
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(0.9) contrast(1.05);
    transition: filter 0.3s ease, transform 0.6s ease;
}
.dh-team__card:hover .dh-team__photo { transform: rotate(0deg); }
.dh-team__card:hover .dh-team__photo img { filter: saturate(1.1) contrast(1.05); transform: scale(1.04); }
.dh-team__name { font-size: 1.25rem; color: var(--dh-forest); margin-bottom: 0.25rem; }
.dh-team__role { font-size: 0.85rem; letter-spacing: 0.05em; color: var(--dh-muted); font-style: italic; }

/* COLLABORATORI */
.dh-collabs { padding: 7rem 0; background: var(--dh-cream-2); }
.dh-collabs__grid {
    max-width: var(--dh-max); margin: 0 auto; padding: 0 6vw;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 2rem;
}
.dh-collab-card {
    background: #fff; border-radius: var(--dh-radius-md);
    overflow: visible; box-shadow: 0 2px 14px rgba(26,23,20,.07);
    display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
    text-align: center; padding: 1.75rem 1.25rem 1.5rem;
    transition: transform .3s ease, box-shadow .3s ease;
}
.dh-collab-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(26,23,20,.12); }
.dh-collab-card__photo {
    width: 130px; height: 130px; flex-shrink: 0;
    border-radius: 50%; overflow: hidden;
    background: var(--dh-forest);
    border: 3px solid var(--dh-forest);
    box-shadow: 0 4px 16px rgba(31,58,45,.15);
    margin-bottom: 1.1rem;
    transition: box-shadow .3s ease;
}
.dh-collab-card:hover .dh-collab-card__photo { box-shadow: 0 8px 24px rgba(31,58,45,.22); }
.dh-collab-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.dh-collab-card:hover .dh-collab-card__photo img { transform: scale(1.06); }
.dh-collab-card__body { padding: 0; display: flex; flex-direction: column; align-items: center; flex: 1; }
.dh-collab-card__name { font-size: 1.05rem; color: var(--dh-forest); font-weight: 500; margin: 0 0 .3rem; line-height: 1.2; }
.dh-collab-card__desc { font-size: .82rem; color: var(--dh-muted); line-height: 1.55; margin: 0; }
.dh-collab-card__social {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; border-radius: 50%;
    border: 1.5px solid var(--dh-line); color: var(--dh-forest);
    margin-top: .75rem; transition: all .2s ease;
}
.dh-collab-card__social:hover { border-color: var(--dh-terracotta); color: var(--dh-terracotta); transform: translateY(-2px); }
.dh-collab-card__social svg { width: 14px; height: 14px; }
@media (max-width: 860px) { .dh-collabs__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .dh-collabs__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }

/* REVIEWS */
.dh-reviews { padding: 7rem 0; background: var(--dh-forest); color: var(--dh-cream); }
.dh-reviews__grid {
    max-width: var(--dh-max); margin: 0 auto; padding: 0 6vw;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem;
}
.dh-review {
    background: rgba(247, 243, 236, 0.05);
    border: 1px solid rgba(247, 243, 236, 0.12);
    border-radius: var(--dh-radius-md); padding: 2rem; margin: 0;
    backdrop-filter: blur(8px); transition: all 0.3s ease;
}
.dh-review:hover { transform: translateY(-4px); background: rgba(247, 243, 236, 0.08); }
.dh-review__stars { color: var(--dh-terracotta); font-size: 1.1rem; letter-spacing: 0.1em; margin-bottom: 1.25rem; }
.dh-review__text {
    font-family: var(--dh-font-display); font-size: 1.1rem; text-align: justify;
    line-height: 1.5; font-style: italic;
    color: var(--dh-cream); margin: 0 0 1.5rem;
}
.dh-review__text p { margin: 0; }
.dh-review__caption {
    display: flex; flex-direction: column; gap: 0.15rem;
    padding-top: 1rem; border-top: 1px solid rgba(247, 243, 236, 0.15); font-size: 0.9rem;
}
.dh-review__caption strong { font-weight: 600; color: var(--dh-cream); }
.dh-review__caption span { color: rgba(247, 243, 236, 0.65); font-size: 0.85rem; font-style: italic; }
.dh-reviews .dh-link-arrow { color: var(--dh-cream); border-color: var(--dh-cream); }
.dh-reviews .dh-link-arrow:hover { color: var(--dh-terracotta); border-color: var(--dh-terracotta); }

/* CTA */
.dh-cta { padding: 7rem 6vw; background: var(--dh-cream); text-align: center; }
.dh-cta__wrap { max-width: 720px; margin: 0 auto; }
.dh-cta__title {
    font-size: clamp(2.25rem, 5vw, 3.75rem); color: var(--dh-forest);
    margin-bottom: 1.25rem; font-variation-settings: "opsz" 144;
}
.dh-cta__text { font-size: 1.15rem; color: var(--dh-muted); margin: 0 0 2.5rem; line-height: 1.6; }
.dh-cta__contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.dh-cta__pill {
    display: flex; flex-direction: column; align-items: flex-start;
    padding: 1.25rem 2rem; background: #fff; border: 1px solid var(--dh-line);
    border-radius: var(--dh-radius-md); text-decoration: none;
    color: var(--dh-charcoal); transition: all 0.25s ease; min-width: 220px;
}
.dh-cta__pill:hover {
    border-color: var(--dh-terracotta); transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06); color: var(--dh-charcoal);
}
.dh-cta__pill-label {
    font-size: 0.7rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--dh-muted); margin-bottom: 0.25rem;
}
.dh-cta__pill-value { font-size: 1.05rem; font-weight: 500; color: var(--dh-forest); }

/* Prossime escursioni — homepage */
.dh-hikes { padding: 5rem 0 4rem; background: var(--dh-cream-2); }
.dh-hikes__grid {
    max-width: var(--dh-max); margin: 0 auto; padding: 0 6vw;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
@media (max-width: 860px) { .dh-hikes__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .dh-hikes__grid { grid-template-columns: 1fr; } }

.dh-hike-card {
    background: #fff; border-radius: var(--dh-radius-lg);
    overflow: hidden; display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    transition: transform .3s ease, box-shadow .3s ease;
}
.dh-hike-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.1); }
.dh-hike-card__media {
    position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.dh-hike-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dh-hike-card:hover .dh-hike-card__media img { transform: scale(1.04); }
.dh-hike-card__diff {
    position: absolute; top: .65rem; left: .65rem;
    font-size: .68rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; padding: .22rem .6rem; border-radius: 999px;
}
.dh-hike-card__body { padding: 1.1rem 1.25rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
.dh-hike-card__luogo {
    font-size: .75rem; color: var(--dh-terracotta); font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase; margin-bottom: .3rem;
}
.dh-hike-card__title {
    font-family: var(--dh-font-display); font-size: 1.1rem;
    color: var(--dh-charcoal); font-weight: 500; line-height: 1.2;
    margin: 0 0 .7rem;
}
.dh-hike-card__meta {
    display: flex; flex-wrap: wrap; gap: .4rem .75rem;
    font-size: .78rem; color: var(--dh-muted); margin-top: auto;
}

/* Banner escursioni */
.dh-hikes-banner {
    background: var(--dh-terracotta); padding: 2.5rem 0;
}
.dh-hikes-banner__inner {
    max-width: var(--dh-max); margin: 0 auto; padding: 0 6vw;
    display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.dh-hikes-banner__icon {
    flex-shrink: 0; color: rgba(255,255,255,.85);
    width: 48px; height: 48px;
}
.dh-hikes-banner__icon svg { width: 100%; height: 100%; }
.dh-hikes-banner__title {
    font-family: var(--dh-font-display); font-size: 1.5rem;
    color: #fff; margin: 0 0 .2rem; font-weight: 500;
}
.dh-hikes-banner__sub { color: rgba(255,255,255,.75); font-size: .95rem; margin: 0; }
.dh-hikes-banner .dh-btn--primary {
    margin-left: auto; flex-shrink: 0;
    background: #fff; color: var(--dh-terracotta); border-color: #fff;
}
.dh-hikes-banner .dh-btn--primary:hover {
    background: var(--dh-charcoal); color: #fff; border-color: var(--dh-charcoal);
}
@media (max-width: 600px) {
    .dh-hikes-banner__inner { flex-direction: column; align-items: flex-start; }
    .dh-hikes-banner .dh-btn--primary { margin-left: 0; }
}

/* Partner */
.dh-partners { padding: 3.5rem 0; background: #fff; }
.dh-partners .dh-section__head { padding-bottom: 2rem; }
.dh-partners__logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem 3.5rem;
    max-width: var(--dh-max);
    margin: 0 auto;
    padding: 0 6vw;
}
.dh-partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.dh-partner-logo img {
    max-height: 72px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .55;
    transition: filter .3s ease, opacity .3s ease;
}
.dh-partner-logo:hover img,
.dh-partner-logo[href]:focus-visible img {
    filter: grayscale(0);
    opacity: 1;
}

/* Scroll reveal */
.dh-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.dh-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Footer */
.dh-footer {
    background: #0a0806;
    padding: .85rem 6vw;
    text-align: center;
}
.dh-footer__text {
    font-family: var(--dh-font-body);
    font-size: .78rem;
    color: rgba(255,255,255,.45);
    margin: 0;
    letter-spacing: .03em;
}
