/* ============================================================
   Gondwana Collection Namibia — Homepage Stylesheet
   ============================================================
   Table of contents
   1.  Gotham font stack
   2.  Design tokens (custom properties)
   3.  Base / reset            <-- SCOPED to .gcn-home-modules
   4.  Utility classes         <-- SCOPED to .gcn-home-modules
   5.  50 Lodges section
   6.  What's New section
   7.  Travel Services section
   8.  Values / Sustainability section
   9.  Gondwana News carousel
   10. Shared carousel controls
   11. Animations
   12. Responsive overrides
   13. Accessibility
   ============================================================
   FIX (2026-07-01): Sections 3 and 4 previously targeted html/body/*
   globally. Because this stylesheet only loads on the homepage, those
   rules were resetting margin/padding/box-sizing and overriding
   font-family/img/a/button styles sitewide — which broke the footer
   layout and image sizing on the homepage while every other page
   (which never loads this file) rendered correctly. All homepage
   sections are now wrapped in a single <div class="gcn-home-modules">
   in the HTML, and the rules below are scoped to that wrapper so they
   can never again affect the header, footer, or any component outside
   these 5 sections.
   ============================================================ */


/* ============================================================
   1. GOTHAM FONT STACK
   ============================================================ */

@font-face {
    font-family: 'Gotham';
    src: url('https://8820531.fs1.hubspotusercontent-na1.net/hubfs/8820531/01%20Gondwana%20Website/Gotham%20Fonts/Gotham-Book.woff2') format('woff2'),
         url('https://8820531.fs1.hubspotusercontent-na1.net/hubfs/8820531/01%20Gondwana%20Website/Gotham%20Fonts/Gotham-Book.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('https://8820531.fs1.hubspotusercontent-na1.net/hubfs/8820531/01%20Gondwana%20Website/Gotham%20Fonts/Gotham-BookItalic.woff2') format('woff2'),
         url('https://8820531.fs1.hubspotusercontent-na1.net/hubfs/8820531/01%20Gondwana%20Website/Gotham%20Fonts/Gotham-BookItalic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('https://8820531.fs1.hubspotusercontent-na1.net/hubfs/8820531/01%20Gondwana%20Website/Gotham%20Fonts/Gotham-Medium.woff2') format('woff2'),
         url('https://8820531.fs1.hubspotusercontent-na1.net/hubfs/8820531/01%20Gondwana%20Website/Gotham%20Fonts/Gotham-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('https://8820531.fs1.hubspotusercontent-na1.net/hubfs/8820531/01%20Gondwana%20Website/Gotham%20Fonts/Gotham-Bold.woff2') format('woff2'),
         url('https://8820531.fs1.hubspotusercontent-na1.net/hubfs/8820531/01%20Gondwana%20Website/Gotham%20Fonts/Gotham-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* ============================================================
   2. DESIGN TOKENS
   ============================================================ */

:root {
    /* Brand colours */
    --clr-amber:       #d57f0e;
    --clr-forest:      #2B4A3D;
    --clr-green:       #318f53;
    --clr-green-dark:  #1e8a4a;
    --clr-green-brand: #2e7d4f;

    /* Neutrals */
    --clr-ink:         #1a1a1a;
    --clr-charcoal:    #61514d;
    --clr-muted:       #555555;
    --clr-border:      #e8e8e8;
    --clr-bg-grey:     #eeeeee;
    --clr-bg-cream:    #F5F0E8;
    --clr-white:       #ffffff;

    /* Typography */
    --font-base:       'Gotham', Arial, sans-serif;

    /* Spacing scale */
    --space-xs:  0.5rem;   /*  8px */
    --space-sm:  1rem;     /* 16px */
    --space-md:  1.5rem;   /* 24px */
    --space-lg:  2rem;     /* 32px */
    --space-xl:  3rem;     /* 48px */
    --space-2xl: 4rem;     /* 64px */
    --space-3xl: 5rem;     /* 80px */

    /* Section horizontal padding */
    --section-px: 8%;

    /* Transitions */
    --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.35s var(--ease-out);

    /* Radii */
    --radius-sm:   8px;
    --radius-md:  12px;
    --radius-pill: 50px;

    /* Shadows */
    --shadow-card:  0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.14);
    --shadow-news:  0 8px 24px rgba(0, 0, 0, 0.18);
}


/* ============================================================
   3. BASE / RESET
   SCOPED to .gcn-home-modules — this is the block that was
   previously global (*, html, body, a, img, button, h1-h4) and
   was leaking onto the footer and other page components.
   ============================================================ */

:where(.gcn-home-modules),
:where(.gcn-home-modules) *,
:where(.gcn-home-modules) *::before,
:where(.gcn-home-modules) *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
/* NOTE: :where(.gcn-home-modules) is used instead of a plain
   ".gcn-home-modules" descendant combinator. :where() always
   contributes ZERO specificity, so every rule below matches
   exactly like the original global reset did (element-only
   specificity for "a", "img", "button", "h1-h4", etc.) — just
   scoped to stop it leaking onto the footer/header.
   A plain ".gcn-home-modules a" selector would add the class's
   specificity on top of the element, which is enough to start
   beating single-class component rules like ".values__link" or
   ".gcn-news__card-link" that set colors elsewhere in this file —
   which is exactly what caused those links to lose their intended
   green/amber color and caused heading line-height to shift.
   Do not replace :where() with a plain class selector here. */

/*
 * HubSpot's theme stylesheet loads after custom CSS and contains
 * high-specificity font-family rules. The !important below is
 * intentional — it is the same approach as the original codebase
 * and is the correct pattern for overriding a CMS theme. It is now
 * scoped to .gcn-home-modules so it only affects our own sections
 * and can no longer override fonts sitewide.
 * Do not remove it.
 */
:where(.gcn-home-modules),
:where(.gcn-home-modules) button,
:where(.gcn-home-modules) input,
:where(.gcn-home-modules) select,
:where(.gcn-home-modules) textarea {
    font-family: var(--font-base) !important;
}

:where(.gcn-home-modules) {
    color: var(--clr-ink);
    line-height: 1.6;
}

:where(.gcn-home-modules) h1,
:where(.gcn-home-modules) h2,
:where(.gcn-home-modules) h3,
:where(.gcn-home-modules) h4 {
    font-family: var(--font-base);
    font-weight: 700;
    line-height: 1.2;
}

:where(.gcn-home-modules) img {
    max-width: 100%;
    height: auto;
    display: block;
}

:where(.gcn-home-modules) a {
    text-decoration: none;
    color: inherit;
}

:where(.gcn-home-modules) button {
    cursor: pointer;
    border: none;
    background: none;
}

/* Visible focus ring — kept global intentionally. This rule only
   adds an outline on :focus-visible and never resets layout, so it
   is safe to apply sitewide and should not be scoped. */
:focus-visible {
    outline: 2px solid var(--clr-green);
    outline-offset: 3px;
}


/* ============================================================
   4. UTILITY CLASSES
   SCOPED to .gcn-home-modules (these are module-specific button /
   reveal styles, not generic sitewide utilities, so scoping is
   also more correct semantically, not just for the bug fix).
   ============================================================ */

:where(.gcn-home-modules) .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-base);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

:where(.gcn-home-modules) .btn--green {
    background: var(--clr-green);
    color: var(--clr-white);
    border: 2px solid var(--clr-green);
}

:where(.gcn-home-modules) .btn--green:hover {
    background: var(--clr-green-dark);
    border-color: var(--clr-green-dark);
    transform: translateY(-2px);
}

:where(.gcn-home-modules) .btn--outline-green {
    background: transparent;
    color: var(--clr-ink);
    border: 2px solid var(--clr-green-brand);
    font-size: 14px;
    font-weight: 500;
}

:where(.gcn-home-modules) .btn--outline-green:hover {
    background: var(--clr-green-brand);
    color: var(--clr-white);
}

/* Fade-in reveal (activated by IntersectionObserver in JS) */
:where(.gcn-home-modules) .js-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

:where(.gcn-home-modules) .js-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
   5. FIFTY LODGES SECTION
   ============================================================ */

.fifty-lodges {
    background: var(--clr-bg-grey);
    padding: 50px 0 80px;
}

.fifty-lodges__inner {
    max-width: 1260px;
    margin: 0 auto;
}

.fifty-lodges__heading {
    text-align: center;
    margin-bottom: 60px;
}

.fifty-lodges__heading h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--clr-ink);
    letter-spacing: -0.5px;
}

.fifty-lodges__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.fifty-lodges__content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: var(--space-lg);
    text-align: justify;
}

/* Slider */
.fifty-lodges__slider {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    min-height: 380px;
    visibility: hidden;
    opacity: 0;
}
.fifty-lodges__slider.slick-initialized {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.fifty-lodges__slider img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.fifty-lodges__slider .slick-list {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.fifty-lodges__slider .slick-slide { margin: 0; }

/* Slider arrows */
.fifty-lodges__slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 20;
    font-size: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
    border: none;
}

.fifty-lodges__slider .slick-arrow:hover {
    background: var(--clr-white);
    transform: translateY(-50%) scale(1.08);
}

.fifty-lodges__slider .slick-prev { left: 18px; }
.fifty-lodges__slider .slick-next { right: 18px; }

.fifty-lodges__slider .slick-prev::before,
.fifty-lodges__slider .slick-next::before { display: none; }

.fifty-lodges__slider .slick-prev::after {
    content: '‹';
    font-size: 38px;
    color: #222;
    font-weight: 300;
    line-height: 1;
}

.fifty-lodges__slider .slick-next::after {
    content: '›';
    font-size: 38px;
    color: #222;
    font-weight: 300;
    line-height: 1;
}

.fifty-lodges__slider .slick-dots { display: none !important; }


/* ============================================================
   6. WHAT'S NEW SECTION
   ============================================================ */

.gcn-wn {
    padding: 72px var(--section-px) 80px;
}

.gcn-wn__header {
    text-align: center;
    margin-bottom: 48px;
}

.gcn-wn__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #7a7a7a;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.gcn-wn__title span {
    color: var(--clr-ink);
}

.gcn-wn__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1260px;
    margin: 0 auto;
}

.gcn-wn__card {
    display: flex;
    flex-direction: column;
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.gcn-wn__card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.gcn-wn__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    flex-shrink: 0;
}

.gcn-wn__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s var(--ease-out);
    border-radius: 6px 6px 0 0 !important;
}

.gcn-wn__card:hover .gcn-wn__img img {
    transform: scale(1.02);
}

.gcn-wn__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px 22px 28px;

}

/* Collapse any empty block elements HubSpot may inject between card children */
.gcn-wn__body > *:empty {
    display: none;
}

.gcn-wn__heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-ink);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gcn-wn__desc {
    font-size: 15px;
    color: var(--clr-muted);
    line-height: 1.5;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gcn-wn__btn {
    display: inline-block;
    align-self: flex-start;
    margin-top: var(--space-xs);
    padding: 10px 24px;
    border: 2px solid var(--clr-green-brand);
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    color: var(--clr-ink);
    transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
    white-space: nowrap;
}

.gcn-wn__btn:hover {
    background: var(--clr-green-brand);
    color: var(--clr-white);
}


/* ============================================================
   7. TRAVEL SERVICES SECTION
   ============================================================ */

.services {
    padding: 60px 0 80px;
    background: var(--clr-bg-grey);
}

.services__title {
    font-size: clamp(1.5rem, 3vw, 40px);
    text-align: center;
    margin-bottom: var(--space-2xl);
    color: var(--clr-ink);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    max-width: 1260px;
    margin: 0 auto;
}

.services__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--clr-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.3s var(--ease-out);
}

.services__card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.services__image {
    min-height: 250px;
    overflow: hidden;
}

.services__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-out);
    border-radius: 6px 0 0 6px;
}

.services__card:hover .services__image img {
    transform: scale(1.04);
}

.services__content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: -15px;

}

.services__label {
    font-size: 0.8rem;
    color: var(--clr-amber);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 2px;
}

.services__name {
    font-size: 1.5rem;
    color: var(--clr-ink);
}

.services__desc {
    font-size: 0.9375rem;
    color: var(--clr-charcoal);
    line-height: 1.4;
}

.services__content .btn--green {
    align-self: flex-start;
    padding: 0.5rem 1.25rem;
    font-size: 13px;
    font-weight: 500;
    margin-top: 10px;
}

.services__content .btn--green:hover {
    background: #4b3d3a;
    transform: translateX(3px);
    border-color: #4b3d3a;
    color: #fff;
}


/* ============================================================
   8. VALUES / SUSTAINABILITY SECTION
   ============================================================ */

.values {
    padding: var(--space-3xl) var(--section-px);
    text-align: center;
}

.values__title {
    font-size: clamp(1.5rem, 3vw, 40px);
    color: #7a7a7a;
    margin-bottom: var(--space-2xl);
}

.values__title span {
    color: var(--clr-charcoal);
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    max-width: 1300px;
    margin: 0 auto;
}

.values__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.values__icon {
    width: 20%;
    margin-bottom: var(--space-md);
    animation: float 3s ease-in-out infinite;
}

.values__name {
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
    color: var(--clr-ink);
}

.values__desc {
    font-size: 1rem;
    color: var(--clr-charcoal);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.values__link {
    color: var(--clr-green);
    font-weight: 500;
    font-size:15px;
    transition: var(--transition);
    display: inline-block;
}

.values__link:hover {
    transform: translateX(5px);
}

.values__inline-link {
    color: var(--clr-green);
    text-decoration: underline;
    text-underline-offset: 2px;
}


/* ============================================================
   9. GONDWANA NEWS CAROUSEL
   ============================================================ */

.gcn-news {
    padding: var(--space-3xl) var(--section-px);
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
        url('https://gondwana-collection.com/hubfs/01%20Gondwana%20Website/01%20HOME/News-bg-img.webp')
        center / cover no-repeat;
    /* NOTE: background-attachment: fixed removed — it is not supported on iOS/Safari
             and causes compositing issues. Use a JS parallax if scrolling motion is needed. */
    position: relative;
}

.gcn-news__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.gcn-news__title {
    font-size: clamp(1.75rem, 3vw, 40px);
    color: var(--clr-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Carousel wrapper */
.gcn-news__carousel-wrap {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
}

.carousel-inner { padding: var(--space-sm) 0; }

/* Slick track — equal-height slides */
.gcn-news__slider .slick-track {
    display: flex !important;
    align-items: stretch !important;
}

.gcn-news__slider .slick-slide {
    display: flex !important;
    height: auto !important;
    margin: 0 var(--space-sm);
}

.gcn-news__slider .slick-slide > div {
    display: flex !important;
    flex: 1;
    width: 100%;
}

.gcn-news__slider .slick-list {
    margin: 0 calc(-1 * var(--space-sm));
    overflow: hidden;
}

/* News card */
.gcn-news__card {
    background: var(--clr-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-news);
    display: flex !important;
    flex-direction: column;
    width: 100%;
    height: 100% !important;
    min-height: 360px;
    transition: var(--transition);
}

.gcn-news__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.3);
}

.gcn-news__card--empty {
    align-items: center;
    justify-content: center;
}

.gcn-news__card--empty p {
    color: var(--clr-charcoal);
    padding: var(--space-2xl);
}

/* Card image — fixed height, never stretches */
.gcn-news__card-image {
    width: 100%;
    height: 210px;
    flex: 0 0 210px;
    overflow: hidden;
}

.gcn-news__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: var(--transition);
    border-radius: 6px 6px 0 0 !important;
}

.gcn-news__card:hover .gcn-news__card-image img {
    transform: scale(1.03);
}

/* Card content */
.gcn-news__card-content {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
}

/* Collapse any empty block elements HubSpot may inject between card children */
.gcn-news__card-content > *:empty {
    display: none;
}

.gcn-news__tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--clr-amber);
    margin-bottom: 6px;
}

.gcn-news__card-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--clr-ink);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 0 0 auto;
}

.gcn-news__card-desc {
    font-size: 0.95rem;
    color: var(--clr-charcoal);
    line-height: 1.5;
    flex: 1 1 auto;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: -30px;
}

.gcn-news__card-link {
    color: var(--clr-amber);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
    text-align: right;
    margin-top: auto;
    flex: 0 0 auto;
}

.gcn-news__card-link:hover {
    transform: translateX(5px);
}

/* Dots */
.gcn-news__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: var(--space-lg);
}


/* ============================================================
   10. SHARED CAROUSEL CONTROLS
   ============================================================ */

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--clr-green);
    color: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    z-index: 10;
    /* Hidden by default; JS adds .is-visible when there are slides to scroll */
    opacity: 0;
    pointer-events: none;
}

.carousel-nav.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.carousel-nav:hover {
    background: var(--clr-green-dark);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.gcn-news__prev { left: -28px; }
.gcn-news__next { right: -28px; }

/* Dot indicators */
.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid var(--clr-green);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

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

.carousel-dot.is-active {
    background: var(--clr-green);
    width: 24px;
    border-radius: 5px;
}


/* ============================================================
   11. ANIMATIONS
   ============================================================ */

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   12. RESPONSIVE OVERRIDES
   ============================================================ */

/* ── Large tablets (≤ 1200px) ── */
@media (max-width: 1200px) {
    .gcn-news__card-image {
        height: 200px;
        flex: 0 0 200px;
    }
}

/* ── Tablets (≤ 992px) ── */
@media (max-width: 992px) {
    .fifty-lodges__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Put image above text on tablet */
    .fifty-lodges__content { order: 2; }
    .fifty-lodges__slider  { order: 1; }

    .fifty-lodges__heading { margin-bottom: var(--space-2xl); }

    .gcn-wn__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

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

/* ── Small tablets / large phones (≤ 768px) ── */
@media (max-width: 768px) {
    .fifty-lodges__slider img { height: 320px; }

    .fifty-lodges__content .btn--outline-green { width: 100%; }
}

/* ── Phones (≤ 640px) ── */
@media (max-width: 640px) {
    :root {
        --section-px: 5%;
    }

    .fifty-lodges,
    .gcn-wn,
    .services,
    .values,
    .gcn-news {
        padding-left: var(--section-px);
        padding-right: var(--section-px);
    }

    .gcn-wn {
        padding-top: 48px;
        padding-bottom: 56px;
    }

    .gcn-wn__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .gcn-news__card-image {
        height: 180px;
        flex: 0 0 180px;
    }

    .gcn-news__card { min-height: 360px; }

    .gcn-news__prev { left: -15px; }
    .gcn-news__next { right: -15px; }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }
}


/* ============================================================
   13. ACCESSIBILITY
   ============================================================ */

/* Skip link — kept global intentionally, this is a sitewide a11y
   pattern and not part of the homepage module markup. */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--clr-amber);
    color: var(--clr-white);
    padding: 8px 16px;
    z-index: 9999;
    border-radius: 0 0 4px 0;
    font-weight: 600;
}

.skip-link:focus { top: 0; }

/* Reduced motion — kept global intentionally, this only reduces
   animation duration and never resets layout, so it is safe to
   apply sitewide. */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .values__icon { animation: none !important; }
}

.ft_footercontactus_btn .ft_newsletter_btn {
  max-width: 15px !important;
}

.footer-btn-wrapper {
    display: inline-block !important;
}

@media (max-width: 768px) {
    .footer-btn-wrapper {
        display: block !important;
        width: 100% !important;
    }
}