/* ==========================================================================
   Pakistan Bikers - homepage
   Palette is built out of the site's real brand green (#2b602c) so the page
   agrees with the navbar, the footer and every other route.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wdth,wght@100..125,400..800&family=IBM+Plex+Mono:wght@500&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

.home-modern {
    --pine: #16321a;
    --pine-soft: #1e4322;
    --green: #2b602c;
    --lift: #3f8b41;
    --haze: #e7ece6;
    --snow: #f7faf6;
    --ink: #131a15;
    --moss: #5c6b5e;
    --line: #cdd6cb;

    --display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
    --body: 'IBM Plex Sans', 'Barlow', system-ui, sans-serif;
    --mono: 'IBM Plex Mono', ui-monospace, 'Courier New', monospace;

    /* Sized so a section plus its padding lands inside one viewport on a
       1920x800 laptop; the old clamp maxed at 128px top AND bottom. */
    --gap: clamp(28px, 2.1vw, 38px);

    background: var(--snow);
    font-family: var(--body);
}

/* --------------------------------------------------------------------------
   Section rhythm
   -------------------------------------------------------------------------- */

.home-modern .package-area,
.home-modern .destination-area,
.home-modern .gallary-area,
.home-modern .testimonial-area,
.home-modern .blog-area {
    position: relative;
    padding-top: var(--gap);
    padding-bottom: var(--gap);
    margin-top: 0;
}

.home-modern .package-area { background: var(--snow); }
.home-modern .gallary-area { background: var(--haze); }
.home-modern .testimonial-area { background: var(--haze); }
.home-modern .blog-area { background: var(--snow); }

.home-modern .destination-area {
    background: var(--pine);
    color: var(--snow);
}

/* --------------------------------------------------------------------------
   Section headings
   -------------------------------------------------------------------------- */

/* style.css sets padding-bottom:50px here, which is most of the dead space
   between a heading and its content. */
.home-modern .section-head-alpha {
    padding-bottom: clamp(15px, 1.5vw, 22px);
}

/* The fixed 144px header covers the top of whatever is scrolled to, so any
   in-page jump has to clear it. */
.home-modern .package-area,
.home-modern .destination-area,
.home-modern .gallary-area,
.home-modern .testimonial-area,
.home-modern .blog-area,
.home-modern .newslatter-wrapper {
    scroll-margin-top: 156px;
}

.home-modern .section-head-alpha h2 {
    font-family: var(--display);
    font-variation-settings: 'wdth' 112, 'wght' 700;
    font-weight: 700;
    font-size: clamp(1.55rem, 2.1vw, 2.3rem);
    line-height: 1;
    letter-spacing: -.02em;
    text-transform: uppercase;
    color: var(--ink);
    /* Wide enough that the common headings stay on one line */
    max-width: 30ch;
    margin-bottom: 10px;
}

.home-modern .section-head-alpha p {
    max-width: 92ch;
    color: var(--moss);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 0;
}

.home-modern .destination-area .section-head-alpha h2 { color: var(--snow); }
.home-modern .destination-area .section-head-alpha p { color: #b6c6b6; }

/* A centred head has to centre its own boxes, or the accent rule and the
   max-width copy stay stuck to the left edge. */
.home-modern .section-head-alpha.text-center h2,
.home-modern .section-head-alpha.text-center p {
    margin-inline: auto;
}

.home-modern .section-head-alpha.text-center h2::before {
    margin-inline: auto;
}

/* Mono eyebrow rule, matching the hero kicker */
.home-modern .section-head-alpha h2::before {
    content: '';
    display: block;
    width: 34px;
    height: 2px;
    background: var(--lift);
    margin-bottom: 14px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.home-modern .button-fill-primary,
.home-modern .package-btn a {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    background: var(--green);
    border-radius: 8px;
    border: 1px solid var(--green);
    transition: background .28s ease, border-color .28s ease, transform .28s ease;
}

.home-modern .button-fill-primary:hover,
.home-modern .package-btn a:hover {
    background: var(--lift);
    border-color: var(--lift);
    transform: translateY(-2px);
}

.home-modern .book-btn a {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    border-radius: 8px;
}

.home-modern .book-btn a i {
    transition: transform .28s ease;
}

.home-modern .book-btn a:hover i {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Cards - one shared system for tours, blogs and testimonials
   -------------------------------------------------------------------------- */

.home-modern .package-card-alpha,
.home-modern .blog-card-alpha,
.home-modern .testimonial-card-alpha {
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(19, 26, 21, .05);
    transition: transform .38s cubic-bezier(.22, .68, .28, 1),
                box-shadow .38s ease,
                border-color .38s ease;
}

.home-modern .package-card-alpha:hover,
.home-modern .blog-card-alpha:hover,
.home-modern .testimonial-card-alpha:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(19, 26, 21, .13);
    border-color: #b4c4b3;
}

.home-modern .package-thumb,
.home-modern .blog-thumb {
    overflow: hidden;
}

.home-modern .package-thumb img,
.home-modern .blog-thumb img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.home-modern .package-card-alpha:hover .package-thumb img,
.home-modern .blog-card-alpha:hover .blog-thumb img {
    transform: scale(1.06);
}

.home-modern .package-card-body { padding: 15px 18px 17px; }

/* style.css targets these at .package-card-alpha .package-card-body .p-card-title
   (0,3,0) with the anchor at (0,4,0), so these have to match that depth or the
   type scale silently loses. */
.home-modern .package-card-alpha .package-card-body .p-card-title {
    font-family: var(--display);
    font-variation-settings: 'wdth' 108, 'wght' 600;
    font-weight: 600;
    font-size: clamp(1.2rem, 1.6vw, 1.5rem);
    line-height: 1.08;
    letter-spacing: -.012em;
    text-transform: uppercase;
    color: var(--ink);
    padding-top: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-modern .package-card-alpha .package-card-body .p-card-title a {
    color: var(--ink);
    transition: color .25s ease;
}

.home-modern .package-card-alpha .package-card-body .p-card-title a:hover {
    color: var(--green);
}

/* Duration chip, price and byline all carry data - so they get the mono face */
.home-modern .card-lavel,
.home-modern .blog-lavel a,
.home-modern .blog-writer,
.home-modern .blog-comments,
.home-modern .p-card-info span,
.home-modern .p-card-info small {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* The stock chip hangs below the thumb, which the zoom-crop overflow would
   clip - so it sits inside the image instead. */
.home-modern .package-thumb { position: relative; }

.home-modern .package-card-alpha .card-lavel {
    position: absolute;
    left: 14px;
    bottom: 14px;
    top: auto;
    right: auto;
    margin: 0;
    padding: 7px 12px;
    background: rgba(19, 26, 21, .84);
    color: var(--snow);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

/* Price: "From" over the figure over the unit, right-aligned, so it never
   collides with the View Details link on a narrow card. */
.home-modern .package-card-alpha .p-card-bottom {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 11px;
    margin-top: 12px;
}

.home-modern .package-card-alpha .p-card-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1px;
    min-width: 0;
}

.home-modern .package-card-alpha .p-card-info h6 {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin: 0;
    font-family: var(--display);
    font-variation-settings: 'wdth' 106, 'wght' 700;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.05;
    color: var(--ink);
}

.home-modern .package-card-alpha .p-card-info h6 span {
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--moss);
}

.home-modern .package-card-alpha .p-card-info > span {
    color: var(--moss);
}

.home-modern .package-card-alpha .p-card-info small {
    color: var(--moss);
    opacity: .8;
}

.home-modern .blog-content { padding: 14px 17px 17px; }

/* --------------------------------------------------------------------------
   Destinations
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   Blog - editorial layout

   One lead article beside a compact index. Headings are sentence case in a
   normal-width cut of the display face: these are article titles people read,
   not marketing shouts, and uppercase costs scan-ability for nothing.
   -------------------------------------------------------------------------- */

.home-modern .blog-editorial {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 16px;
    align-items: stretch;
}

/* Only one post published: the feature uses the full width rather than
   sitting beside an empty column. */
.home-modern .blog-editorial-solo {
    grid-template-columns: minmax(0, 1fr);
}

.home-modern .blog-feature,
.home-modern .blog-row {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .34s cubic-bezier(.22, .68, .28, 1),
                box-shadow .34s ease,
                border-color .34s ease;
}

.home-modern .blog-feature:hover,
.home-modern .blog-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(19, 26, 21, .12);
    border-color: #b4c4b3;
}

.home-modern .blog-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    min-height: 300px;
}

.home-modern .blog-feature-media,
.home-modern .blog-row-media {
    display: block;
    overflow: hidden;
    background: var(--haze);
}

.home-modern .blog-feature-media img,
.home-modern .blog-row-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.home-modern .blog-feature:hover .blog-feature-media img,
.home-modern .blog-row:hover .blog-row-media img {
    transform: scale(1.05);
}

.home-modern .blog-feature-body {
    padding: clamp(18px, 1.6vw, 26px);
    display: flex;
    flex-direction: column;
}

/* Meta line: category chip plus a real <time> element */
.home-modern .blog-meta {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 11px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--moss);
}

.home-modern .blog-chip {
    background: #e7f0e6;
    color: #1f4a20;
    border-radius: 20px;
    padding: 3px 9px;
    white-space: nowrap;
}

.home-modern .blog-heading {
    font-family: var(--display);
    font-variation-settings: 'wdth' 100, 'wght' 600;
    font-weight: 600;
    font-size: clamp(1.1rem, 1.35vw, 1.5rem);
    line-height: 1.24;
    letter-spacing: -.014em;
    text-transform: none;
    margin: 0 0 10px;
    padding-top: 0;
}

.home-modern .blog-heading a {
    color: var(--ink);
    transition: color .25s ease;
}

.home-modern .blog-heading a:hover {
    color: var(--green);
}

.home-modern .blog-heading-sm {
    font-size: clamp(.94rem, 1vw, 1.04rem);
    line-height: 1.3;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-modern .blog-excerpt {
    font-size: 13.5px;
    line-height: 1.66;
    color: var(--moss);
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-modern .blog-foot {
    margin: auto 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--moss);
}

.home-modern .blog-more {
    color: var(--green);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.home-modern .blog-more span {
    transition: transform .3s ease;
}

.home-modern .blog-feature:hover .blog-more span {
    transform: translateX(4px);
}

/* Compact index rows */
.home-modern .blog-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Only while the two-column layout exists: there the index rows share the lead
   article's height instead of leaving a gap. Stacked, a zero flex-basis would
   collapse them to slivers, so they size to their content again. */
@media (min-width: 1101px) {
    .home-modern .blog-list .blog-row {
        flex: 1 1 0;
        min-height: 0;
    }
}

.home-modern .blog-row {
    display: grid;
    grid-template-columns: 168px minmax(0, 1fr);
    align-items: stretch;
}

.home-modern .blog-row-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-modern .blog-row .blog-meta {
    margin-bottom: 7px;
}

/* --------------------------------------------------------------------------
   Destinations - a grid, not a carousel

   The old build hid ten destinations behind a slider whose arrows were shared
   with the testimonials block. Showing all of them at once removes the
   interaction entirely and puts every route on screen.
   -------------------------------------------------------------------------- */

.home-modern .dest-shell {
    width: min(1760px, 100% - 4vw);
    margin-inline: auto;
}

.home-modern .dest-head {
    margin-bottom: 0;
}

.home-modern .dest-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.home-modern .dest-tile {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #0d1510;
    isolation: isolate;
    transition: transform .42s cubic-bezier(.22, .68, .28, 1);
}

.home-modern .dest-tile:hover {
    transform: translateY(-4px);
}

.home-modern .dest-tile-media {
    display: block;
    aspect-ratio: 16 / 10;
}

.home-modern .dest-tile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.home-modern .dest-tile:hover .dest-tile-media img {
    transform: scale(1.07);
}

.home-modern .dest-tile-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(8, 14, 9, .92) 0%,
        rgba(8, 14, 9, .55) 34%,
        rgba(8, 14, 9, .08) 68%,
        rgba(8, 14, 9, 0) 100%);
    transition: background .42s ease;
}

.home-modern .dest-tile:hover .dest-tile-scrim {
    background: linear-gradient(to top,
        rgba(8, 14, 9, .94) 0%,
        rgba(22, 50, 26, .68) 44%,
        rgba(8, 14, 9, .22) 80%,
        rgba(8, 14, 9, .06) 100%);
}

.home-modern .dest-tile-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px 16px 15px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.home-modern .dest-tile-name {
    font-family: var(--display);
    font-variation-settings: 'wdth' 108, 'wght' 700;
    font-weight: 700;
    font-size: clamp(1rem, 1.15vw, 1.28rem);
    line-height: 1.04;
    letter-spacing: -.012em;
    text-transform: uppercase;
    color: #fff;
}

.home-modern .dest-tile-go {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #bcd3ba;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .34s ease, transform .34s ease;
}

.home-modern .dest-tile:hover .dest-tile-go,
.home-modern .dest-tile:focus-visible .dest-tile-go {
    opacity: 1;
    transform: none;
}

.home-modern .dest-tile-arrow {
    transition: transform .34s ease;
}

.home-modern .dest-tile:hover .dest-tile-arrow {
    transform: translateX(4px);
}

/* Route line, echoing the rail under the hero */
.home-modern .dest-tile-rule {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: var(--lift);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .48s cubic-bezier(.22, .68, .28, 1);
}

.home-modern .dest-tile:hover .dest-tile-rule,
.home-modern .dest-tile:focus-visible .dest-tile-rule {
    transform: scaleX(1);
}

.home-modern .dest-tile:focus-visible {
    outline: 2px solid var(--lift);
    outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Tour-type block (was the orange newsletter strip)
   -------------------------------------------------------------------------- */

.home-modern .newslatter-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--pine);
    padding: var(--gap) 0;
    margin-top: 0;
}

.home-modern .newslatter-wrapper::before {
    content: 'PAKISTAN';
    position: absolute;
    right: -3vw;
    bottom: -.14em;
    font-family: var(--display);
    font-variation-settings: 'wdth' 120, 'wght' 800;
    font-size: clamp(7rem, 21vw, 20rem);
    line-height: .7;
    color: rgba(247, 250, 246, .045);
    letter-spacing: -.02em;
    pointer-events: none;
}

.home-modern .newslatter-side,
.home-modern .achievement-counter-side {
    position: relative;
    z-index: 1;
}

.home-modern .newslatter-side h2 {
    font-family: var(--display);
    font-variation-settings: 'wdth' 112, 'wght' 700;
    font-weight: 700;
    font-size: clamp(1.7rem, 2.4vw, 2.5rem);
    line-height: 1;
    letter-spacing: -.02em;
    color: var(--snow);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.home-modern .newslatter-side p {
    color: #b6c6b6;
    max-width: 46ch;
    font-size: 15px;
    line-height: 1.7;
}

.home-modern .achievement-box-style-one {
    height: 100%;
    min-height: 0;
    padding: 20px;
    background: rgba(247, 250, 246, .05);
    border: 1px solid rgba(247, 250, 246, .16);
    border-radius: 12px;
    color: var(--snow);
    transition: transform .34s ease, background .34s ease, border-color .34s ease;
}

.home-modern .achievement-box-style-one:hover {
    transform: translateY(-5px);
    background: rgba(63, 139, 65, .18);
    border-color: rgba(63, 139, 65, .55);
}

.home-modern .achievement-box-content h4 {
    font-family: var(--display);
    font-variation-settings: 'wdth' 106, 'wght' 600;
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.12;
    text-transform: uppercase;
    color: var(--snow);
    margin-bottom: 8px;
}

.home-modern .achievement-box-content p {
    font-size: 12.5px;
    line-height: 1.6;
    color: #b6c6b6 !important;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   "Why ride Pakistan" feature block
   -------------------------------------------------------------------------- */

.home-modern .why-ride-media {
    position: relative;
    height: 100%;
    min-height: 260px;
    border-radius: 14px;
    overflow: hidden;
}

.home-modern .why-ride-media img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.home-modern .why-ride-media:hover img {
    transform: scale(1.04);
}

.home-modern .why-ride-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 1.8vw, 26px);
    height: 100%;
    align-content: center;
}

.home-modern .why-ride-item {
    padding-top: 15px;
    border-top: 1px solid var(--line);
}

.home-modern .why-ride-index {
    display: block;
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--lift);
    margin-bottom: 10px;
}

.home-modern .why-ride-item h3 {
    font-family: var(--display);
    font-variation-settings: 'wdth' 108, 'wght' 600;
    font-weight: 600;
    font-size: 1.02rem;
    line-height: 1.15;
    letter-spacing: -.01em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 10px;
}

.home-modern .why-ride-item p {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--moss);
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   Testimonials - equal-height cards in a coverflow carousel

   Swiper sizes slides by width only, so a short review produced a short card
   next to a tall one. Stretching the slides and letting the card fill its
   slide makes every card the same height whatever the quote length.
   -------------------------------------------------------------------------- */

.home-modern .pb-testi {
    /* Clipped, or every looped slide spills across the page. The vertical
       padding keeps the active card's shadow from being cut off. */
    overflow: hidden;
    padding: 10px 0 16px;
}

/* Fades the clipped edges into the section so the cut-off neighbours read as
   depth rather than as a slider that ran out of room. */
.home-modern .pb-testi::before,
.home-modern .pb-testi::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 9%;
    z-index: 3;
    pointer-events: none;
}

.home-modern .pb-testi::before {
    left: 0;
    background: linear-gradient(to right, var(--haze) 12%, transparent);
}

.home-modern .pb-testi::after {
    right: 0;
    background: linear-gradient(to left, var(--haze) 12%, transparent);
}

.home-modern .pb-testi .swiper-wrapper {
    align-items: stretch;
}

.home-modern .pb-testi .swiper-slide {
    height: auto;
    display: flex;
    transition: opacity .5s ease, filter .5s ease;
}

/* The centre card is the one being read; neighbours recede. */
.home-modern .pb-testi .swiper-slide:not(.swiper-slide-active) {
    opacity: .58;
}

.home-modern .pb-testi .swiper-slide-active {
    opacity: 1;
    z-index: 2;
}

.home-modern .pb-testi .testimonial-card-alpha {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.home-modern .pb-testi .testimonial-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

/* Pins the name and stars to the bottom edge of every card, so they line up
   across the row instead of floating wherever the quote happens to end. */
.home-modern .pb-testi .testimonial-bottom {
    margin-top: auto;
}

.home-modern .pb-testi .swiper-slide-active .testimonial-card-alpha {
    box-shadow: 0 26px 60px rgba(19, 26, 21, .17);
    border-color: #a9bda8;
}

.home-modern .testimonial-body p {
    font-size: 13.5px;
    line-height: 1.7;
    color: #46554a;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-modern .testimonial-card-alpha .testimonial-body .testimonial-bottom .reviewer-info .reviewer-name {
    font-family: var(--display);
    font-variation-settings: 'wdth' 106, 'wght' 600;
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: -.005em;
    color: var(--ink);
}

.home-modern .testimonial-bottom h6 {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--moss);
}

.home-modern .testimonial-count {
    font-family: var(--display);
    font-variation-settings: 'wdth' 118, 'wght' 700;
    color: rgba(43, 96, 44, .16);
}

.home-modern .qoute-icon { color: var(--lift); }

.home-modern .testimonial-rating i,
.home-modern .d-rating i {
    color: var(--lift);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.home-modern .faq-wrapper:not(.pb-block-faq) {
    background: var(--pine);
    color: var(--snow);
    padding-top: var(--gap);
    padding-bottom: var(--gap);
}

.home-modern .faq-wrapper .section-head-alpha h2 { color: var(--snow); }
.home-modern .faq-wrapper .section-head-alpha p { color: #b6c6b6; }

.home-modern .faq-wrapper .accordion-item {
    background: transparent;
    border-color: rgba(247, 250, 246, .16);
}

.home-modern .faq-wrapper .accordion-button {
    background: transparent;
    color: var(--snow);
    font-family: var(--display);
    font-variation-settings: 'wdth' 106, 'wght' 600;
    font-weight: 600;
    font-size: 1.12rem;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: -.005em;
    box-shadow: none;
    padding-block: 22px;
}

.home-modern .faq-wrapper .accordion-button:not(.collapsed) { color: #9fd39f; }

.home-modern .faq-wrapper .accordion-button::after { filter: invert(1); }

.home-modern .faq-wrapper .accordion-body {
    color: #b6c6b6;
    font-size: 14px;
    line-height: 1.75;
}

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */

.home-modern [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .72s cubic-bezier(.22, .68, .28, 1),
                transform .72s cubic-bezier(.22, .68, .28, 1);
    transition-delay: calc(var(--reveal-step, 0) * 80ms);
}

.home-modern [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* --------------------------------------------------------------------------
   Focus
   -------------------------------------------------------------------------- */

.home-modern a:focus-visible,
.home-modern button:focus-visible {
    outline: 2px solid var(--lift);
    outline-offset: 3px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1399px) {
    .home-modern .dest-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 1100px) {
    .home-modern .dest-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1100px) {
    .home-modern .blog-editorial { grid-template-columns: minmax(0, 1fr); }
    .home-modern .blog-feature { min-height: 0; }
}

@media (max-width: 991px) {
    .home-modern .why-ride-media {
        min-height: 260px;
        margin-bottom: 28px;
    }

    .home-modern .why-ride-media img { min-height: 260px; }

    .home-modern .destination-area .slider-arrows,
    .home-modern .testimonial-area .slider-arrows {
        justify-content: flex-start !important;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .home-modern {
        --gap: clamp(40px, 9vw, 56px);
    }

    .home-modern .dest-shell { width: min(1760px, 100% - 8vw); }

    .home-modern .dest-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .home-modern .dest-tile-body { padding: 12px 12px 11px; }

    /* Stack the lead article; a side-by-side split is unreadable this narrow */
    .home-modern .blog-feature { grid-template-columns: minmax(0, 1fr); }
    .home-modern .blog-feature-media { aspect-ratio: 16 / 9; }
    .home-modern .blog-row { grid-template-columns: 104px minmax(0, 1fr); }
    .home-modern .blog-foot { font-size: 10px; }

    /* No hover on touch, so the route line and the cue stay visible */
    .home-modern .dest-tile-go { opacity: 1; transform: none; }
    .home-modern .dest-tile-rule { transform: scaleX(1); }

    .home-modern .section-head-alpha h2 {
        font-size: clamp(1.9rem, 8.4vw, 2.5rem);
        max-width: none;
    }

    .home-modern .section-head-alpha p { font-size: 14px; }

    .home-modern .why-ride-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .home-modern .newslatter-wrapper::before { right: -22vw; }

    .home-modern .newslatter-side {
        margin-bottom: 34px;
    }

    .home-modern .achievement-box-style-one {
        min-height: 0;
        padding: 20px;
    }

    .home-modern .faq-wrapper .accordion-button {
        font-size: 1rem;
        padding-right: 46px;
    }

    .home-modern .package-card-body { padding: 20px; }

    /* A 3:4 card is half the screen tall on a phone - square reads better */
    .home-modern .destination-card-style-one .d-card-thumb img {
        aspect-ratio: 1 / 1;
    }

    .home-modern .package-card-alpha .p-card-info h6 { font-size: 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
    .home-modern [data-reveal],
    .home-modern [data-reveal].is-visible {
        opacity: 1;
        transform: none;
        transition: none;
        transition-delay: 0s;
    }

    .home-modern *,
    .home-modern *::before,
    .home-modern *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}
