.home-hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--header-height));
    background: #060606;
    overflow: hidden;
    border-bottom: none;
}

.home-hero__grid {
    min-height: calc(100vh - var(--header-height));
    display: grid;
    grid-template-columns: 44% 56%;
    align-items: stretch;
}

.home-hero__content-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: clamp(24px, 5vw, 84px);
    padding-right: clamp(20px, 3vw, 40px);
    background: #060606;
    position: relative;
    z-index: 2;
}

.home-hero__content {
    max-width: 560px;
    width: 100%;
    position: relative;
}

.home-hero__eyebrow {
    margin: 0 0 20px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.82rem;
    font-weight: 700;
}

.home-hero__title {
    margin: 0 0 24px;
    max-width: 8.2ch;
    font-family: Georgia, serif;
    font-size: clamp(3.2rem, 6vw, 6rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
    color: var(--text);
    text-wrap: balance;
}

.home-hero__text {
    margin: 0 0 32px;
    max-width: 34ch;
    color: var(--text-soft);
    font-size: 1.08rem;
    line-height: 1.65;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    border: 1px solid var(--border-strong);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.07);
}

.home-hero__media {
    position: relative;
    overflow: hidden;
    min-height: 100%;
	isolation: isolate;
}
	
.home-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(6, 6, 6, 1.00) 0%,
            rgba(6, 6, 6, 0.34) 10%,
            rgba(6, 6, 6, 0.00) 20%
        ),
        linear-gradient(
            to top,
            #060606 0%,
            rgba(6, 6, 6, 1.00) 0%,
            rgba(6, 6, 6, 0.52) 10%,
            rgba(6, 6, 6, 0.00) 20%
        ),
        linear-gradient(
            to left,
            rgba(6, 6, 6, 1.00) 0%,
            rgba(6, 6, 6, 0.08) 12%,
            rgba(6, 6, 6, 0.00) 24%
        );
    z-index: 3;
    pointer-events: none;
}

.home-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.home-hero__slide.is-active {
    opacity: 1;
}

.home-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: scale(1);
    transition: transform 8s ease;
    filter: brightness(0.72) saturate(0.95);
}

.home-hero__slide.is-active img {
    transform: scale(1.05);
}

.home-hero__media-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            #060606 0%,
            rgba(6, 6, 6, 0.99) 5%,
            rgba(6, 6, 6, 0.96) 12%,
            rgba(6, 6, 6, 0.86) 22%,
            rgba(6, 6, 6, 0.58) 34%,
            rgba(6, 6, 6, 0.22) 48%,
            rgba(6, 6, 6, 0.08) 64%,
            rgba(6, 6, 6, 0.00) 82%
        );
    z-index: 1;
    pointer-events: none;
}

.home-hero__content::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 58%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(211, 189, 145, 0.35) 18%,
        rgba(211, 189, 145, 0.15) 82%,
        transparent 100%
    );
}

@media (max-width: 1100px) {
    .home-hero__grid {
        grid-template-columns: 46% 54%;
    }

    .home-hero__title {
        font-size: clamp(2.8rem, 6vw, 5rem);
    }
}

@media (max-width: 820px) {
    .home-hero {
        min-height: auto;
    }

    .home-hero__grid {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .home-hero__media {
        min-height: 46vh;
        order: 1;
    }

    .home-hero__content-wrap {
        order: 2;
        padding: 36px 24px 48px;
    }

    .home-hero__content::before {
        display: none;
    }

    .home-hero__media-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(6, 6, 6, 0.18) 0%,
                rgba(6, 6, 6, 0.48) 55%,
                rgba(6, 6, 6, 0.82) 100%
            );
    }
}
	@media (max-width: 820px) {
    .home-hero__media::before {
        height: 180px;
        opacity: 0.85;
    }

    .home-hero__media::after {
        height: 160px;
    }
	
	@media (max-width: 820px) {
    .home-hero__media::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        height: 140px;
        background: linear-gradient(
            to top,
            #060606 0%,
            rgba(6, 6, 6, 0.92) 18%,
            rgba(6, 6, 6, 0.58) 46%,
            rgba(6, 6, 6, 0.00) 100%
        );
        z-index: 3;
        pointer-events: none;
    }
}

	@media (max-width: 820px) {
    .home-hero__media-overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(6, 6, 6, 1.00) 0%,
                rgba(6, 6, 6, 0.16) 16%,
                rgba(6, 6, 6, 0.00) 34%
            ),
            linear-gradient(
                180deg,
                rgba(6, 6, 6, 0.12) 0%,
                rgba(6, 6, 6, 0.06) 100%
            );
    }
}


    .home-hero__title {
        max-width: 9ch;
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .home-hero__text {
        max-width: 42ch;
        font-size: 1rem;
    }
}

@media (max-width: 560px) {
    .home-hero__media {
        min-height: 40vh;
    }

    .home-hero__content-wrap {
        padding: 28px 20px 40px;
    }

    .home-hero__eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.12em;
    }

    .home-hero__title {
        max-width: 10ch;
        font-size: clamp(2.2rem, 11vw, 3.4rem);
        margin-bottom: 18px;
    }

    .home-hero__text {
        margin-bottom: 24px;
        font-size: 0.96rem;
    }

    .home-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .home-hero__actions .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__slide,
    .home-hero__slide img {
        transition: none;
    }

    .home-hero__slide.is-active img {
        transform: scale(1);
    }
}

/* =========================
   HOME FEATURES
   ========================= */

.home-features {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0)),
        #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.00);
    border-bottom: 1px solid rgba(211, 189, 145, 0.18);
    padding: 0px 0;
}

.home-features__grid {
    display: grid;
    gap: 0;
    align-items: stretch;
}

.home-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 26px;
    min-height: 140px;
}

.home-feature__icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(211, 189, 145, 0.28);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1.55rem;
    line-height: 1;
}

.home-feature__icon span {
    display: inline-block;
    transform: translateY(-1px);
}

.home-feature__body h2 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-feature__body p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.97rem;
    line-height: 1.65;
    max-width: 22ch;
}

/* Desktop */
@media (min-width: 1101px) {
    .home-features__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .home-feature + .home-feature {
        border-left: 1px solid rgba(211, 189, 145, 0.18);
    }
}

/* Tablet */
@media (min-width: 681px) and (max-width: 1100px) {
    .home-features__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-feature:nth-child(2n) {
        border-left: 1px solid rgba(211, 189, 145, 0.18);
    }

    .home-feature:nth-child(n + 3) {
        border-top: 1px solid rgba(211, 189, 145, 0.18);
    }
}

/* Mobile */
@media (max-width: 680px) {
    .home-features {
        padding: 10px 0;
    }

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

    .home-feature {
        padding: 18px 4px;
        min-height: auto;
    }

    .home-feature + .home-feature {
        border-top: 1px solid rgba(211, 189, 145, 0.14);
    }

    .home-feature__body p {
        max-width: none;
    }
}

/* =========================
   HOME LATEST MAPS
   ========================= */
/* =========================
   HOME LATEST MAPS
   ========================= */

.home-latest {
    padding: 24px 26px 72px;
    background: #070707;
}

.home-latest .container {
    width: min(100%, 1560px);
    padding-inline: 24px;
}

.home-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.home-section-head__eyebrow {
    margin: 0 0 8px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
}

.home-section-head__title {
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.05;
    color: var(--text);
}

.home-section-head__link {
    color: var(--accent);
    font-weight: 600;
    white-space: nowrap;
}

.home-latest__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.home-map-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(211, 189, 145, 0.10);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-map-card:hover {
    transform: translateY(-3px);
    border-color: rgba(211, 189, 145, 0.24);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.25);
}

.home-map-card__thumb {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #111;
}

.home-map-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-map-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    backdrop-filter: blur(8px);
}

.home-map-card__badge.is-premium {
    background: rgba(211, 189, 145, 0.92);
    color: #17140f;
}

.home-map-card__badge.is-free {
    background: rgba(255, 255, 255, 0.88);
    color: #111;
}

.home-map-card__body {
    padding: 12px 12px 14px;
}

.home-map-card__meta {
    margin: 0 0 6px;
    color: var(--text-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-map-card__title {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.3;
}

.home-map-card__title a {
    color: var(--text);
}

.home-map-card__title a:hover {
    color: var(--accent);
}

/* optional tags below title */
.home-map-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.home-map-card__tag {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-soft);
    font-size: 0.68rem;
    line-height: 1;
}

/* large tablet / small desktop */
@media (max-width: 1400px) {
    .home-latest__grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

/* tablet landscape */
@media (max-width: 1160px) {
    .home-latest__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* tablet portrait */
@media (max-width: 820px) {
    .home-latest__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* mobile */
@media (max-width: 680px) {
    .home-latest {
        padding: 42px 0 56px;
    }

    .home-latest .container {
        padding-inline: 20px;
    }

    .home-section-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 22px;
    }

    .home-latest__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* =========================
   HOME ADVENTURES
   ========================= */

.home-adventures {
    padding: 24px 26px 72px;
    background: #070707;
}

.home-adventures__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.home-adventure-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(211, 189, 145, 0.14);
    background: rgba(255, 255, 255, 0.02);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-adventure-card:hover {
    transform: translateY(-3px);
    border-color: rgba(211, 189, 145, 0.24);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.24);
}

.home-adventure-card__link {
    display: block;
    position: relative;
    color: inherit;
}

.home-adventure-card__image {
    position: relative;
    aspect-ratio: 4 / 5.5;
    overflow: hidden;
    background: #111;
}

.home-adventure-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 260ms ease;
}

.home-adventure-card:hover .home-adventure-card__image img {
    transform: scale(1.04);
}

.home-adventure-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(6, 6, 6, 0.06) 0%,
            rgba(6, 6, 6, 0.12) 48%,
            rgba(6, 6, 6, 0.34) 100%
        );
}

.home-adventure-card__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    pointer-events: none;
}

.home-adventure-card__panel {
    position: relative;
    width: 100%;
    padding: 16px 16px 14px;
    border-radius: 18px;
    background: linear-gradient(
        180deg,
        rgba(8, 8, 8, 0.16) 0%,
        rgba(8, 8, 8, 0.32) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 10px 24px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px) saturate(110%);
    -webkit-backdrop-filter: blur(10px) saturate(110%);
    pointer-events: auto;
}

.home-adventure-card__title {
    margin: 0 0 14px;
    color: var(--text);
    font-family: Georgia, serif;
    font-size: 1.25rem;
    line-height: 1.02;
    /*max-width: 10ch;*/
    text-wrap: balance;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.home-adventure-card__button {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid rgba(211, 189, 145, 0.42);
    background: rgba(0, 0, 0, 0.18);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* large tablets / smaller desktop */
@media (max-width: 1400px) {
    .home-adventures__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* tablet */
@media (max-width: 1100px) {
    .home-adventures__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-adventure-card__title {
        font-size: 1.05rem;
    }
}

/* small tablet / mobile landscape */
@media (max-width: 820px) {
    .home-adventures__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* mobile portrait */
@media (max-width: 680px) {
    .home-adventures {
        padding: 12px 0 56px;
    }

    .home-adventures__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-adventure-card__title {
        font-size: 1.05rem;
        margin-bottom: 12px;
    }

    .home-adventure-card__content {
        padding: 14px;
    }
	    .home-adventure-card__panel {
        padding: 14px 14px 12px;
        border-radius: 16px;
    }
}



/* =========================
   HOME SUPPORT / STATS
   ========================= */

.home-support {
    padding: 24px 26px 80px;
    background: #070707;
}

.home-support__grid {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 0;
    border: 1px solid rgba(211, 189, 145, 0.14);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.home-support__cta {
    position: relative;
    background:
        linear-gradient(180deg, rgba(220, 200, 160, 0.98), rgba(210, 190, 150, 0.96));
    color: #1d1812;
    min-height: 280px;
}

.home-support__cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(29, 24, 18, 0.00) 0%, rgba(29, 24, 18, 0.00) 58%, rgba(29, 24, 18, 0.08) 100%);
    pointer-events: none;
}

.home-support__cta-inner {
    position: relative;
    z-index: 2;
    padding: 34px 34px 34px 34px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
    justify-content: center;
}

.home-support__cta h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.02;
    color: #1d1812;
    max-width: 10ch;
}

.home-support__cta p {
    margin: 0;
    color: rgba(29, 24, 18, 0.88);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 28ch;
}

.btn-dark {
    align-self: flex-start;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 12px;
    background: #111;
    color: #f3efe6;
    border: 1px solid rgba(17, 17, 17, 0.9);
    font-weight: 700;
}

.home-support__stats {
    position: relative;
    background:
        radial-gradient(circle at right center, rgba(211, 189, 145, 0.05), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0)),
        #0b0b0a;
}

.home-support__stats-inner {
    padding: 34px 34px 34px 34px;
}

.home-support__stats h2 {
    margin: 0 0 12px;
    font-family: Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    line-height: 1.05;
    color: var(--text);
}

.home-support__stats p {
    margin: 0 0 26px;
    color: var(--text-soft);
    line-height: 1.7;
    max-width: 58ch;
}

.home-support__numbers {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.home-support__number {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 4px;
}

.home-support__number strong {
    color: var(--accent);
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1;
    font-weight: 700;
}

.home-support__number span {
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.76rem;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .home-support__grid {
        grid-template-columns: 1fr;
    }

    .home-support__numbers {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .home-support__numbers {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .home-support {
        padding: 16px 0 56px;
    }

    .home-support__cta-inner,
    .home-support__stats-inner {
        padding: 24px 20px;
    }

    .home-support__numbers {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .home-support__cta h2,
    .home-support__stats h2 {
        max-width: none;
    }
}