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

.home-container {
    width: min(
        calc(100% - 60px),
        var(--aw-container)
    );

    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.home-hero {
    position: relative;

    width: 100%;

    height: 700px;

    overflow: hidden;

    background: var(--aw-dark);

    isolation: isolate;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.home-hero-media {
    position: absolute;

    inset: 0;

    z-index: -3;
}


.home-hero-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    animation: heroImageReveal 1.2s ease both;
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.home-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(8, 18, 11, 0.82) 0%,
            rgba(8, 18, 11, 0.63) 34%,
            rgba(8, 18, 11, 0.22) 68%,
            rgba(8, 18, 11, 0.08) 100%
        );
}


.home-hero-overlay::after {
    content: '';

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.30) 0%,
            transparent 35%,
            rgba(0, 0, 0, 0.18) 100%
        );
}


/* =========================================================
   HERO CONTENT
========================================================= */

.home-hero-content {
    position: relative;

    z-index: 2;

    height: 100%;

    display: flex;
    align-items: center;
}


.home-hero-copy {
    width: min(760px, 100%);

    padding-top: 45px;
}


/* =========================================================
   HERO EYEBROW
========================================================= */

.home-hero-eyebrow {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin: 0 0 20px;

    color: rgba(255, 255, 255, 0.90);

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 0.02em;
}


.home-hero-eyebrow::before {
    content: '';

    width: 32px;
    height: 2px;

    border-radius: 10px;

    background: var(--aw-green);
}


/* =========================================================
   HERO TITLE
========================================================= */

.home-hero h1 {
    max-width: 820px;

    margin: 0;

    color: #ffffff;

    font-size: clamp(44px, 5.2vw, 72px);

    line-height: 1.05;

    letter-spacing: -0.045em;

    font-weight: 700;

    text-wrap: balance;

    text-shadow:
        0 4px 25px rgba(0, 0, 0, 0.16);

    animation: heroContentUp 0.8s 0.15s ease both;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.home-hero-description {
    max-width: 650px;

    margin: 25px 0 0;

    color: rgba(255, 255, 255, 0.84);

    font-size: 16px;

    line-height: 1.8;

    animation: heroContentUp 0.8s 0.25s ease both;
}


/* =========================================================
   HERO BUTTON
========================================================= */

.home-hero-actions {
    display: flex;
    align-items: center;

    margin-top: 34px;

    animation: heroContentUp 0.8s 0.35s ease both;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    min-height: 54px;

    padding: 0 23px 0 25px;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.btn-primary {
    background: var(--aw-orange);
    color: #ffffff;

    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.20);
}


.btn-primary span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.18);

    font-size: 17px;

    transition:
        transform 0.25s ease;
}


.btn-primary:hover {
    transform: translateY(-3px);

    background: #ff7418;

    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.27);
}


.btn-primary:hover span {
    transform: translateX(3px);
}


/* =========================================================
   HERO BOTTOM
========================================================= */

.home-hero-scroll {
    position: absolute;

    left: 50%;

    bottom: 28px;

    z-index: 3;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 12px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 10px;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.home-hero-scroll span {
    position: relative;

    display: block;

    width: 30px;
    height: 1px;

    background: rgba(255, 255, 255, 0.55);
}


.home-hero-scroll span::after {
    content: '';

    position: absolute;

    right: 0;
    top: -2px;

    width: 5px;
    height: 5px;

    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;

    transform: rotate(45deg);
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes heroImageReveal {

    from {
        opacity: 0;
        transform: scale(1.04);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}


@keyframes heroContentUp {

    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .home-container {
        width: min(
            calc(100% - 40px),
            var(--aw-container)
        );
    }


    .home-hero {
        height: 680px;
    }


    .home-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(8, 18, 11, 0.82),
                rgba(8, 18, 11, 0.48)
            );
    }


    .home-hero-copy {
        padding-top: 35px;
    }


    .home-hero h1 {
        font-size: clamp(40px, 8vw, 60px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .home-container {
        width: calc(100% - 32px);
    }


    .home-hero {
        height: 680px;
    }


    .home-hero-media img {
        object-position: 58% center;
    }


    .home-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(8, 18, 11, 0.46) 0%,
                rgba(8, 18, 11, 0.62) 45%,
                rgba(8, 18, 11, 0.84) 100%
            );
    }


    .home-hero-content {
        align-items: flex-end;

        padding-bottom: 90px;
    }


    .home-hero-copy {
        padding-top: 0;
    }


    .home-hero-eyebrow {
        margin-bottom: 15px;

        font-size: 12px;
    }


    .home-hero-eyebrow::before {
        width: 24px;
    }


    .home-hero h1 {
        font-size: clamp(38px, 11vw, 50px);

        line-height: 1.08;

        letter-spacing: -0.04em;
    }


    .home-hero-description {
        margin-top: 18px;

        font-size: 14px;

        line-height: 1.7;
    }


    .home-hero-actions {
        margin-top: 25px;
    }


    .btn {
        min-height: 50px;

        padding-left: 21px;
        padding-right: 18px;
    }


    .home-hero-scroll {
        bottom: 25px;

        font-size: 8px;
    }

}

/* =========================================================
   QUICK SERVICES
========================================================= */

.quick-services {
    position: relative;

    z-index: 10;

    margin-top: -48px;

    padding-bottom: 30px;
}


.quick-services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
    position: relative;

    min-height: 190px;

    padding: 26px 25px 22px;

    display: flex;
    flex-direction: column;

    background:
        rgba(255, 255, 255, 0.96);

    border: 1px solid rgba(255, 255, 255, 0.85);

    border-radius: 18px;

    box-shadow:
        0 18px 50px rgba(20, 35, 24, 0.10);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.service-card::before {
    content: '';

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--aw-green),
            var(--aw-orange)
        );

    opacity: 0;

    transition: opacity 0.3s ease;
}


.service-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 24px 60px rgba(20, 35, 24, 0.14);
}


.service-card:hover::before {
    opacity: 1;
}


/* =========================================================
   ICON
========================================================= */

.service-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 18px;

    border-radius: 14px;

    background:
        rgba(1, 255, 0, 0.10);

    color: var(--aw-dark);

    font-size: 22px;

    line-height: 1;
}


/* =========================================================
   CONTENT
========================================================= */

.service-card-label {
    display: block;

    margin-bottom: 5px;

    color: var(--aw-muted);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.service-card-content h2 {
    margin: 0;

    color: var(--aw-dark);

    font-size: 20px;

    line-height: 1.25;

    letter-spacing: -0.025em;
}


.service-card-content p {
    max-width: 310px;

    margin: 8px 0 0;

    color: var(--aw-muted);

    font-size: 12px;

    line-height: 1.65;
}


/* =========================================================
   CARD LINK
========================================================= */

.service-card-link {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    align-self: flex-start;

    margin-top: auto;
    padding-top: 18px;

    color: var(--aw-orange);

    font-size: 12px;
    font-weight: 700;
}


.service-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    border-radius: 50%;

    background:
        rgba(255, 101, 0, 0.10);

    transition:
        transform 0.25s ease;
}


.service-card-link:hover .service-card-arrow {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .quick-services {
        margin-top: -35px;
    }


    .quick-services-grid {
        grid-template-columns:
            1fr;

        gap: 14px;
    }


    .service-card {
        min-height: 165px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .quick-services {
        margin-top: -25px;

        padding-bottom: 15px;
    }


    .service-card {
        min-height: 155px;

        padding: 22px 20px 19px;

        border-radius: 16px;
    }


    .service-card-icon {
        width: 43px;
        height: 43px;

        margin-bottom: 14px;

        border-radius: 12px;

        font-size: 19px;
    }


    .service-card-content h2 {
        font-size: 18px;
    }

}

/* =========================================================
   SECTION COMMON
========================================================= */

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 35px;
}


.section-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 10px;

    color: var(--aw-orange);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.10em;

    text-transform: uppercase;
}


.section-eyebrow::before {
    content: '';

    width: 24px;
    height: 2px;

    border-radius: 10px;

    background: var(--aw-green);
}


.section-heading h2 {
    margin: 0;

    color: var(--aw-dark);

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.1;

    letter-spacing: -0.045em;
}


.section-heading > p {
    max-width: 470px;

    margin: 0;

    color: var(--aw-muted);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   FEATURED DESTINATIONS
========================================================= */

.featured-destinations {
    padding: 95px 0 100px;

    background: var(--aw-bg);
}


/* =========================================================
   EDITORIAL GRID
========================================================= */

.destinations-editorial {
    display: grid;

    grid-template-columns:
        minmax(0, 1.55fr)
        minmax(0, 1fr);

    gap: 18px;

    min-height: 580px;
}


/* =========================================================
   DESTINATION FEATURED
========================================================= */

.destination-featured,
.destination-small {
    position: relative;

    display: block;

    overflow: hidden;

    border-radius: 22px;

    background: var(--aw-dark);
}


.destination-featured img,
.destination-small img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(.2,.7,.2,1);
}


.destination-featured {
    min-height: 580px;
}


.destination-featured:hover img,
.destination-small:hover img {
    transform: scale(1.055);
}


/* =========================================================
   DESTINATION OVERLAY
========================================================= */

.destination-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(10, 20, 12, 0.04) 20%,
            rgba(10, 20, 12, 0.18) 45%,
            rgba(10, 20, 12, 0.82) 100%
        );
}


/* =========================================================
   FEATURED INFO
========================================================= */

.destination-info {
    position: absolute;

    left: 34px;
    right: 34px;
    bottom: 32px;

    z-index: 2;
}


.destination-info > span,
.destination-small-info > span {
    display: block;

    margin-bottom: 8px;

    color: var(--aw-green);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.09em;

    text-transform: uppercase;
}


.destination-info h3 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(30px, 4vw, 48px);

    line-height: 1.05;

    letter-spacing: -0.04em;
}


.destination-info p {
    max-width: 560px;

    margin: 13px 0 17px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 13px;

    line-height: 1.7;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.destination-info strong {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: #ffffff;

    font-size: 12px;
}


.destination-info strong b {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: var(--aw-orange);

    font-size: 15px;

    transition:
        transform 0.25s ease;
}


.destination-featured:hover
.destination-info strong b {
    transform: translateX(4px);
}


/* =========================================================
   SECONDARY DESTINATIONS
========================================================= */

.destination-secondary {
    display: grid;

    grid-template-rows:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}


.destination-small {
    min-height: 0;
}


.destination-small-info {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 24px;

    z-index: 2;
}


.destination-small-info h3 {
    margin: 0 0 9px;

    color: #ffffff;

    font-size: 24px;

    line-height: 1.1;

    letter-spacing: -0.03em;
}


.destination-small-info b {
    color: rgba(255, 255, 255, 0.85);

    font-size: 11px;

    font-weight: 600;
}


/* =========================================================
   EMPTY
========================================================= */

.empty-section {
    padding: 50px;

    border: 1px solid var(--aw-border);

    border-radius: 18px;

    background: #ffffff;

    color: var(--aw-muted);

    text-align: center;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .featured-destinations {
        padding: 75px 0 80px;
    }


    .section-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;

        margin-bottom: 28px;
    }


    .destinations-editorial {
        min-height: 500px;

        grid-template-columns:
            1.35fr
            1fr;
    }


    .destination-featured {
        min-height: 500px;
    }


    .destination-info {
        left: 25px;
        right: 25px;
        bottom: 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .featured-destinations {
        padding: 65px 0 70px;
    }


    .section-heading h2 {
        font-size: 32px;
    }


    .section-heading > p {
        font-size: 13px;
    }


    .destinations-editorial {
        display: grid;

        grid-template-columns: 1fr;

        gap: 14px;

        min-height: auto;
    }


    .destination-featured {
        min-height: 420px;

        border-radius: 18px;
    }


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

        grid-template-rows: 210px;

        gap: 14px;
    }


    .destination-small {
        border-radius: 16px;
    }


    .destination-info {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }


    .destination-info h3 {
        font-size: 32px;
    }


    .destination-info p {
        font-size: 12px;
    }


    .destination-small-info {
        left: 17px;
        right: 17px;
        bottom: 17px;
    }


    .destination-small-info h3 {
        font-size: 18px;
    }

}

/* =========================================================
   TOUR TYPES
========================================================= */

.tour-types {
    padding: 100px 0;

    background: #ffffff;
}


.tour-types-heading {
    margin-bottom: 38px;
}


/* =========================================================
   TYPE LIST
========================================================= */

.tour-types-list {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;
}


/* =========================================================
   TYPE CARD
========================================================= */

.tour-type-card {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 118px;

    padding: 20px 20px;

    border: 1px solid var(--aw-border);

    border-radius: 16px;

    background: #ffffff;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.tour-type-card::before {
    content: '';

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 3px;

    background:
        linear-gradient(
            180deg,
            var(--aw-green),
            var(--aw-orange)
        );

    transform: scaleY(0);

    transform-origin: center;

    transition:
        transform 0.3s ease;
}


.tour-type-card:hover {
    transform: translateY(-4px);

    border-color: rgba(255, 101, 0, 0.18);

    box-shadow:
        0 15px 35px rgba(23, 32, 24, 0.08);
}


.tour-type-card:hover::before {
    transform: scaleY(1);
}


/* =========================================================
   NUMBER
========================================================= */

.tour-type-number {
    flex-shrink: 0;

    width: 40px;

    color: rgba(23, 32, 24, 0.25);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.04em;
}


/* =========================================================
   CONTENT
========================================================= */

.tour-type-content {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 5px;
}


.tour-type-content strong {
    display: block;

    color: var(--aw-dark);

    font-size: 16px;

    line-height: 1.3;

    letter-spacing: -0.02em;
}


.tour-type-content small {
    display: -webkit-box;

    max-width: 235px;

    overflow: hidden;

    color: var(--aw-muted);

    font-size: 12.5px;

    line-height: 1.6;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


/* =========================================================
   ARROW
========================================================= */

.tour-type-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 32px;
    height: 32px;

    margin-left: auto;

    border-radius: 50%;

    background: rgba(255, 101, 0, 0.08);

    color: var(--aw-orange);

    font-size: 16px;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.tour-type-card:hover .tour-type-arrow {
    transform: translateX(4px);

    background: var(--aw-orange);

    color: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .tour-types {
        padding: 80px 0;
    }


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

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .tour-types {
        padding: 65px 0;
    }


    .tour-types-list {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .tour-type-card {
        min-height: 95px;

        padding: 17px 18px;
    }


    .tour-type-number {
        width: 34px;
    }

}

/* =========================================================
   FEATURED TOURS
========================================================= */

.featured-tours {
    padding: 105px 0 110px;

    background:
        var(--aw-bg);
}


.featured-tours-heading {
    margin-bottom: 38px;
}


/* =========================================================
   TOUR GRID
========================================================= */

.featured-tours-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================================
   TOUR CARD
========================================================= */

.tour-card {
    overflow: hidden;

    border:
        1px solid
        var(--aw-border);

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 10px 35px rgba(23, 32, 24, 0.055);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.tour-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 22px 55px rgba(23, 32, 24, 0.12);
}


/* =========================================================
   IMAGE
========================================================= */

.tour-card-image {
    position: relative;

    display: block;

    height: 245px;

    overflow: hidden;

    background: #e9eee9;
}


.tour-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.65s cubic-bezier(.2,.7,.2,1);
}


.tour-card:hover .tour-card-image img {
    transform: scale(1.055);
}


.tour-card-image-label {
    position: absolute;

    top: 17px;
    left: 17px;

    padding: 7px 11px;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.92);

    color: var(--aw-dark);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.06em;

    text-transform: uppercase;

    backdrop-filter: blur(8px);
}


.tour-card-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(1, 255, 0, 0.12),
            rgba(255, 101, 0, 0.12)
        );

    color: var(--aw-dark);

    font-size: 14px;

    font-weight: 700;
}


/* =========================================================
   CARD BODY
========================================================= */

.tour-card-body {
    padding: 23px 22px 20px;
}


.tour-card-destination {
    display: block;

    margin-bottom: 7px;

    color: var(--aw-orange);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.06em;

    text-transform: uppercase;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}


.tour-card h3 {
    margin: 0;

    color: var(--aw-dark);

    font-size: 20px;

    line-height: 1.3;

    letter-spacing: -0.025em;
}


.tour-card h3 a {
    transition:
        color 0.25s ease;
}


.tour-card h3 a:hover {
    color: var(--aw-orange);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.tour-card-description {
    display: -webkit-box;

    margin: 10px 0 0;

    overflow: hidden;

    color: var(--aw-muted);

    font-size: 12px;

    line-height: 1.65;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


/* =========================================================
   META
========================================================= */

.tour-card-meta {
    display: flex;
    align-items: center;

    margin-top: 15px;

    padding-top: 14px;

    border-top:
        1px solid
        var(--aw-border);
}


.tour-card-meta span {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--aw-muted);

    font-size: 11px;

    font-weight: 500;
}


.tour-card-meta i {
    font-style: normal;

    color: var(--aw-orange);

    font-size: 14px;
}


/* =========================================================
   CARD FOOTER
========================================================= */

.tour-card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 15px;

    margin-top: 18px;
}


.tour-card-price {
    display: flex;
    flex-direction: column;

    gap: 2px;
}


.tour-card-price small {
    color: var(--aw-muted);

    font-size: 9px;

    font-weight: 600;
}


.tour-card-price strong {
    color: var(--aw-dark);

    font-size: 18px;

    line-height: 1.2;

    letter-spacing: -0.025em;
}


/* =========================================================
   DETAIL LINK
========================================================= */

.tour-card-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--aw-orange);

    font-size: 11px;

    font-weight: 700;

    white-space: nowrap;
}


.tour-card-link b {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 27px;
    height: 27px;

    border-radius: 50%;

    background:
        rgba(255, 101, 0, 0.09);

    font-size: 15px;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.tour-card-link:hover b {
    transform: translateX(4px);

    background: var(--aw-orange);

    color: #ffffff;
}


/* =========================================================
   VIEW ALL
========================================================= */

.featured-tours-more {
    display: flex;
    justify-content: center;

    margin-top: 38px;
}


.outline-button {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    min-height: 50px;

    padding: 0 20px;

    border:
        1px solid
        var(--aw-dark);

    border-radius: 999px;

    color: var(--aw-dark);

    font-size: 12px;

    font-weight: 700;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.outline-button b {
    font-size: 16px;

    transition:
        transform 0.25s ease;
}


.outline-button:hover {
    transform: translateY(-2px);

    background: var(--aw-dark);

    color: #ffffff;
}


.outline-button:hover b {
    transform: translateX(3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .featured-tours {
        padding: 85px 0 90px;
    }


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

        gap: 16px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .featured-tours {
        padding: 65px 0 75px;
    }


    .featured-tours-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .tour-card-image {
        height: 225px;
    }


    .tour-card-body {
        padding: 21px 19px 19px;
    }


    .tour-card h3 {
        font-size: 19px;
    }


    .tour-card-footer {
        margin-top: 16px;
    }

}

/* =========================================================
   WHY AURORA
========================================================= */

.why-aurora {
    padding: 115px 0;

    background: #ffffff;
}


.why-aurora-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    gap: 100px;

    align-items: start;
}


/* =========================================================
   INTRO
========================================================= */

.why-aurora-intro {
    max-width: 520px;
}


.why-aurora-intro h2 {
    margin: 0;

    color: var(--aw-dark);

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.08;

    letter-spacing: -0.045em;
}


.why-aurora-intro > p {
    max-width: 490px;

    margin: 24px 0 0;

    color: var(--aw-muted);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   LINK
========================================================= */

.why-aurora-link {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-top: 30px;

    color: var(--aw-dark);

    font-size: 12px;

    font-weight: 700;
}


.why-aurora-link b {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: var(--aw-orange);

    color: #ffffff;

    font-size: 15px;

    transition:
        transform 0.25s ease;
}


.why-aurora-link:hover b {
    transform: translateX(4px);
}


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

.why-aurora-features {
    border-top:
        1px solid
        var(--aw-border);
}


.why-feature {
    display: grid;

    grid-template-columns: 50px 1fr;

    gap: 25px;

    padding: 27px 0;

    border-bottom:
        1px solid
        var(--aw-border);
}


.why-feature-number {
    padding-top: 3px;

    color: var(--aw-orange);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.05em;
}


.why-feature h3 {
    margin: 0;

    color: var(--aw-dark);

    font-size: 17px;

    line-height: 1.35;

    letter-spacing: -0.02em;
}


.why-feature p {
    max-width: 560px;

    margin: 7px 0 0;

    color: var(--aw-muted);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   HOVER
========================================================= */

.why-feature {
    transition:
        padding-left 0.3s ease;
}


.why-feature:hover {
    padding-left: 8px;
}


.why-feature:hover
.why-feature-number {
    color: var(--aw-green);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .why-aurora {
        padding: 85px 0;
    }


    .why-aurora-layout {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .why-aurora-intro {
        max-width: 700px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .why-aurora {
        padding: 70px 0;
    }


    .why-aurora-layout {
        gap: 40px;
    }


    .why-aurora-intro h2 {
        font-size: 34px;
    }


    .why-aurora-intro > p {
        font-size: 13px;
    }


    .why-feature {
        grid-template-columns: 35px 1fr;

        gap: 15px;

        padding: 22px 0;
    }


    .why-feature h3 {
        font-size: 16px;
    }


    .why-feature p {
        font-size: 12px;
    }

}

/* =========================================================
   TRAVEL INSPIRATION
========================================================= */

.travel-inspiration {
    padding: 110px 0;

    background: var(--aw-bg);
}


.travel-heading {
    margin-bottom: 38px;
}


/* =========================================================
   EDITORIAL BLOG
========================================================= */

.blog-editorial {
    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(0, 0.92fr);

    gap: 20px;
}


/* =========================================================
   FEATURED ARTICLE
========================================================= */

.blog-featured {
    overflow: hidden;

    border-radius: 20px;

    background: #ffffff;

    border:
        1px solid
        var(--aw-border);

    box-shadow:
        0 10px 35px rgba(23, 32, 24, 0.05);
}


.blog-featured-image {
    display: block;

    height: 330px;

    overflow: hidden;

    background: #e9eee9;
}


.blog-featured-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.65s cubic-bezier(.2,.7,.2,1);
}


.blog-featured:hover
.blog-featured-image img {
    transform: scale(1.045);
}


.blog-featured-body {
    padding: 24px 25px 25px;
}


.blog-featured-body time,
.blog-small-body time {
    color: var(--aw-orange);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.05em;

    text-transform: uppercase;
}


.blog-featured-body h3 {
    margin: 8px 0 0;

    color: var(--aw-dark);

    font-size: 25px;

    line-height: 1.25;

    letter-spacing: -0.03em;
}


.blog-featured-body h3 a {
    transition:
        color 0.25s ease;
}


.blog-featured-body h3 a:hover {
    color: var(--aw-orange);
}


.blog-featured-body p {
    max-width: 680px;

    margin: 11px 0 0;

    color: var(--aw-muted);

    font-size: 12px;

    line-height: 1.7;

    display: -webkit-box;

    overflow: hidden;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


/* =========================================================
   READ MORE
========================================================= */

.blog-read-more {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-top: 18px;

    color: var(--aw-dark);

    font-size: 11px;

    font-weight: 700;
}


.blog-read-more b {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 27px;
    height: 27px;

    border-radius: 50%;

    background:
        rgba(255, 101, 0, 0.10);

    color: var(--aw-orange);

    font-size: 15px;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.blog-read-more:hover b {
    transform: translateX(4px);

    background: var(--aw-orange);

    color: #ffffff;
}


/* =========================================================
   SECONDARY ARTICLES
========================================================= */

.blog-secondary {
    display: grid;

    grid-template-rows:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}


.blog-small {
    display: grid;

    grid-template-columns:
        42% minmax(0, 58%);

    overflow: hidden;

    border-radius: 18px;

    border:
        1px solid
        var(--aw-border);

    background: #ffffff;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.blog-small:hover {
    transform: translateY(-4px);

    box-shadow:
        0 16px 40px rgba(23, 32, 24, 0.09);
}


.blog-small-image {
    display: block;

    min-height: 100%;
    height: 100%;

    overflow: hidden;

    background: #e9eee9;
}


.blog-small-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s cubic-bezier(.2,.7,.2,1);
}


.blog-small:hover
.blog-small-image img {
    transform: scale(1.055);
}


.blog-small-body {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    padding: 22px 19px;
}


.blog-small-body h3 {
    margin: 8px 0 0;

    color: var(--aw-dark);

    font-size: 16px;

    line-height: 1.4;

    letter-spacing: -0.02em;

    display: -webkit-box;

    overflow: hidden;

    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}


.blog-small-body h3 a {
    transition:
        color 0.25s ease;
}


.blog-small-body h3 a:hover {
    color: var(--aw-orange);
}


.blog-small-link {
    margin-top: auto;

    padding-top: 12px;

    color: var(--aw-orange);

    font-size: 10px;

    font-weight: 700;
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.blog-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(1, 255, 0, 0.10),
            rgba(255, 101, 0, 0.10)
        );

    color: var(--aw-dark);

    font-size: 12px;

    font-weight: 700;
}


/* =========================================================
   MORE
========================================================= */

.blog-more {
    display: flex;

    justify-content: center;

    margin-top: 38px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .travel-inspiration {
        padding: 85px 0 90px;
    }


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


    .blog-featured-image {
        height: 360px;
    }


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

        grid-template-rows: none;
    }


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


    .blog-small-image {
        height: 190px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .travel-inspiration {
        padding: 70px 0;
    }


    .blog-featured-image {
        height: 250px;
    }


    .blog-featured-body {
        padding: 21px 19px;
    }


    .blog-featured-body h3 {
        font-size: 21px;
    }


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

        gap: 14px;
    }


    .blog-small {
        grid-template-columns:
            125px minmax(0, 1fr);

        border-radius: 16px;
    }


    .blog-small-image {
        height: 155px;
    }


    .blog-small-body {
        padding: 17px 15px;
    }


    .blog-small-body h3 {
        font-size: 14px;

        -webkit-line-clamp: 3;
    }

}

/* =========================================================
   HOME CTA
========================================================= */

.home-cta {
    padding: 8px 0 32px;
    background: var(--aw-bg);
}

.home-blog {
    padding-bottom: 8px;
}

.home-blog + .home-cta {
    padding-top: 0;
}

.home-cta + .site-footer {
    margin-top: 0;
}

.home-cta .container {
    max-width: var(--aw-container);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================================
   CTA BOX
========================================================= */

.home-cta-box {
    position: relative;

    display: grid;
    grid-template-columns: 110px minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: center;

    gap: 30px;

    min-height: 175px;

    padding: 28px 42px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid var(--aw-border);
    border-radius: 20px;

    box-shadow:
        0 12px 35px rgba(23, 32, 24, 0.055);
}


/* =========================================================
   DECORATIVE LIGHT
========================================================= */

.home-cta-box::before {
    content: "";

    position: absolute;

    left: -60px;
    bottom: -70px;

    width: 190px;
    height: 150px;

    background: radial-gradient(
        circle,
        rgba(1, 255, 0, 0.13),
        transparent 68%
    );

    pointer-events: none;
}

.home-cta-box::after {
    content: "";

    position: absolute;

    right: -50px;
    top: -65px;

    width: 180px;
    height: 150px;

    background: radial-gradient(
        circle,
        rgba(255, 101, 0, 0.08),
        transparent 68%
    );

    pointer-events: none;
}


/* =========================================================
   CTA ICON
========================================================= */

.home-cta-icon {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 78px;
    height: 78px;

    margin: 0 auto;

    color: var(--aw-orange);

    background: rgba(255, 101, 0, 0.10);

    border-radius: 50%;
}

.home-cta-icon svg {
    width: 37px;
    height: 37px;
}


/* =========================================================
   CTA CONTENT
========================================================= */

.home-cta-content {
    position: relative;
    z-index: 2;
}

.home-cta-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 8px;

    color: var(--aw-orange);

    font-size: 10px;
    font-weight: 700;

    line-height: 1.2;
    letter-spacing: 0.055em;

    text-transform: uppercase;
}

.home-cta-label::before {
    content: "";

    width: 22px;
    height: 2px;

    background: var(--aw-green);
}

.home-cta-content h2 {
    margin: 0;

    max-width: 470px;

    color: var(--aw-dark);

    font-size: 34px;
    font-weight: 700;

    line-height: 1.17;

    letter-spacing: -0.035em;
}


/* =========================================================
   CTA ACTION
========================================================= */

.home-cta-action {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home-cta-description {
    max-width: 420px;

    margin: 0 0 17px;

    color: var(--aw-muted);

    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.home-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    min-width: 194px;
    height: 46px;

    padding: 0 7px 0 20px;

    color: #ffffff;

    background: var(--aw-orange);

    border-radius: 999px;

    font-size: 12px;
    font-weight: 600;

    white-space: nowrap;

    box-shadow:
        0 8px 20px rgba(255, 101, 0, 0.22);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.home-cta-button:hover {
    background: #f45c00;

    transform: translateY(-2px);

    box-shadow:
        0 12px 26px rgba(255, 101, 0, 0.28);
}

.home-cta-button-text {
    display: inline-block;
}

.home-cta-button-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    background: rgba(255, 255, 255, 0.18);

    border-radius: 50%;

    font-size: 16px;
    line-height: 1;
}


/* =========================================================
   BLOG → CTA
========================================================= */

.home-blog {
    padding-bottom: 8px;
}

.home-blog + .home-cta {
    padding-top: 0;
}

/* CTA → Footer */
.home-cta + .site-footer {
    margin-top: 0;
}


/* =========================================================
   CTA → FOOTER
========================================================= */

.home-cta + .site-footer {
    margin-top: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .home-cta-box {
        grid-template-columns: 90px minmax(0, 1fr);
        gap: 24px;

        padding: 30px 32px;
    }

    .home-cta-action {
        grid-column: 2;
    }

    .home-cta-content h2 {
        font-size: 30px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

     .home-cta {
        padding: 8px 0 10px;
    }

    .home-blog {
        padding-bottom: 8px;
    }

    .home-cta .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .home-cta-box {
        display: flex;
        flex-direction: column;
        align-items: flex-start;

        gap: 18px;

        min-height: auto;

        padding: 28px 24px;

        border-radius: 18px;
    }

    .home-cta-icon {
        width: 64px;
        height: 64px;

        margin: 0;
    }

    .home-cta-icon svg {
        width: 30px;
        height: 30px;
    }

    .home-cta-content h2 {
        font-size: 27px;
        line-height: 1.2;
    }

    .home-cta-description {
        font-size: 12.5px;
        line-height: 1.65;

        margin-bottom: 16px;
    }

    .home-cta-action {
        width: 100%;
    }

    .home-cta-button {
        width: 100%;
    }
}