:root {
    --green: #7cb342;
    --green-dark: #2e7d32;
    --green-deep: #3c6a00;
    --gold: #d4a437;
    --gold-container: #cb9c30;
    --bg: #f8fbed;
    --surface-container-low: #f2f5e7;
    --surface-container: #edefe2;
    --surface-container-high: #e7eadc;
    --text: #191d15;
    --text-muted: #424939;
    --outline-variant: #c2c9b5;
    --white: #ffffff;
    --shadow: 0 12px 40px rgba(30, 60, 30, 0.08);
    --shadow-lg: 0 24px 60px rgba(30, 60, 30, 0.12);
    --radius: 16px;
    --radius-lg: 24px;
    --nav-height: 76px;
    --hero-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --reveal-duration: 0.65s;
    --section-pad: clamp(4rem, 8vw, 7rem);
    --container: min(1120px, calc(100% - 2.5rem));
    --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
    --font-arabic: "Noto Naskh Arabic", "Amiri", serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

body.is-nav-open {
    overflow: hidden;
}

::selection {
    background: rgba(124, 179, 66, 0.28);
    color: var(--text);
}

.skip-link {
    position: absolute;
    top: 0.75rem;
    inset-inline-start: 0.75rem;
    z-index: 300;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: var(--green-deep);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    transform: translateY(-160%);
    transition: transform 0.2s var(--hero-ease);
}

.skip-link:focus {
    transform: translateY(0);
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

body.is-rtl {
    direction: rtl;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.section {
    padding-block: var(--section-pad);
}

#video,
#quotes,
#explore,
#share {
    scroll-margin-top: calc(var(--nav-height) + 1rem);
}

.film-section,
#quotes,
.explore-section,
.share-section,
.site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 640px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    color: var(--text);
}

.section-lead {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-muted);
    max-width: 38rem;
    margin: 0;
}

/* Navbar */
.site-nav {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 100;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    background: rgba(248, 251, 237, 0.78);
    backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid rgba(194, 201, 181, 0.28);
    transition: background 0.4s var(--hero-ease), box-shadow 0.4s var(--hero-ease);
}

.site-nav.is-scrolled {
    background: rgba(248, 251, 237, 0.94);
    box-shadow: 0 8px 32px rgba(30, 60, 30, 0.06);
}

.nav-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    width: var(--container);
    margin-inline: auto;
    color: var(--text);
}

.nav-brand img {
    height: 40px;
    width: auto;
    max-width: min(220px, 42vw);
}

.nav-menu {
    justify-self: center;
}

.nav-menu__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.25rem 1.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu__link {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--text-muted);
    transition: color 0.25s var(--hero-ease);
}

.nav-menu__link:hover,
.nav-menu__link.is-active {
    color: var(--green-deep);
}

.nav-menu__link:focus-visible,
.nav-brand:focus-visible,
.lang-switcher__toggle:focus-visible,
.nav-toggle:focus-visible,
.btn:focus-visible,
.share-btn:focus-visible,
.explore-card:focus-visible,
.footer-links a:focus-visible,
.lang-switcher__menu a:focus-visible {
    outline: 2px solid var(--green-deep);
    outline-offset: 3px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-self: end;
}

.lang-switcher {
    position: relative;
}

.lang-switcher__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    border: 1px solid rgba(60, 106, 0, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--green-deep);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 2px 12px rgba(60, 106, 0, 0.08);
    transition: background 0.25s var(--hero-ease), border-color 0.25s var(--hero-ease), box-shadow 0.25s var(--hero-ease);
}

.lang-switcher__toggle:hover {
    background: var(--white);
    border-color: rgba(60, 106, 0, 0.28);
    box-shadow: 0 4px 16px rgba(60, 106, 0, 0.12);
}

.lang-switcher__menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    inset-inline-end: 0;
    min-width: 200px;
    max-height: min(70vh, 420px);
    overflow-y: auto;
    padding: 0.35rem;
    margin: 0;
    list-style: none;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 110;
}

.lang-switcher.is-open .lang-switcher__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-switcher__menu a {
    display: block;
    padding: 0.6rem 0.85rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text);
    transition: background 0.15s ease;
}

.lang-switcher__menu a:hover {
    background: var(--bg);
}

.lang-switcher__menu a.is-active {
    background: rgba(124, 179, 66, 0.12);
    color: var(--green-dark);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(194, 201, 181, 0.5);
    border-radius: 12px;
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.nav-toggle__close {
    display: none;
}

.site-nav.is-menu-open .nav-toggle__open {
    display: none;
}

.site-nav.is-menu-open .nav-toggle__close {
    display: block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--green-deep);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(60, 106, 0, 0.22);
}

.btn-primary:hover {
    background: var(--green-dark);
    box-shadow: 0 12px 28px rgba(46, 125, 50, 0.28);
}

.btn-outline {
    background: transparent;
    color: var(--green-deep);
    border: 2px solid var(--green-deep);
}

.btn-outline:hover {
    background: rgba(60, 106, 0, 0.06);
}

.btn-gold {
    background: var(--gold);
    color: var(--text);
}

/* Hero — cinematic split */
.hero--cinematic {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 90% 70% at 0% 0%, rgba(124, 179, 66, 0.1), transparent 55%),
        radial-gradient(ellipse 80% 60% at 100% 100%, rgba(212, 164, 55, 0.07), transparent 50%),
        linear-gradient(165deg, #fafcf4 0%, var(--bg) 45%, var(--surface-container-low) 100%);
}

.hero__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 40%, rgba(60, 106, 0, 0.06), transparent 45%);
    pointer-events: none;
}

.hero__split {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(1.75rem, 4vw, 2.5rem);
    width: min(1560px, calc(100% - 2rem));
    margin-inline: auto;
    padding: calc(var(--nav-height) + 1.75rem) clamp(1rem, 2.5vw, 2rem) clamp(2.5rem, 5vw, 4rem);
}

.hero__copy {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
}

.hero__copy-inner {
    width: 100%;
    max-width: 34rem;
}

.hero__copy-inner > * {
    animation: hero-rise 0.9s var(--hero-ease) backwards;
}

.hero__eyebrow {
    animation-delay: 0.05s;
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-deep);
    margin-bottom: 1.125rem;
}

.hero__title {
    animation-delay: 0.12s;
    font-size: clamp(2.5rem, 5vw, 4.125rem);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.04em;
    color: var(--green-deep);
    margin: 0 0 1.25rem;
}

.hero__lead {
    animation-delay: 0.2s;
    font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
    font-weight: 400;
    color: var(--text-muted);
    margin: 0 0 2.25rem;
    max-width: 38ch;
    line-height: 1.72;
}

.hero__actions {
    animation-delay: 0.28s;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-hero-primary {
    padding: 0.95rem 1.75rem;
    border-radius: 999px;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    background: linear-gradient(145deg, var(--green-deep) 0%, #2e5f08 100%);
    color: var(--white);
    border: none;
    box-shadow:
        0 4px 20px rgba(60, 106, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition:
        transform 0.3s var(--hero-ease),
        box-shadow 0.3s var(--hero-ease),
        background 0.3s var(--hero-ease);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 32px rgba(60, 106, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: linear-gradient(145deg, #457a0a 0%, var(--green-deep) 100%);
}

.btn-hero-secondary {
    padding: 0.95rem 1.75rem;
    border-radius: 999px;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    background: rgba(255, 255, 255, 0.55);
    color: var(--green-deep);
    border: 1px solid rgba(60, 106, 0, 0.22);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(30, 60, 30, 0.06);
    transition:
        transform 0.3s var(--hero-ease),
        background 0.3s var(--hero-ease),
        border-color 0.3s var(--hero-ease),
        box-shadow 0.3s var(--hero-ease);
}

.btn-hero-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(60, 106, 0, 0.32);
    box-shadow: 0 8px 24px rgba(30, 60, 30, 0.1);
}

.hero__media {
    position: relative;
    margin: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: clamp(18px, 2vw, 24px);
    background: #141a12;
    box-shadow:
        0 4px 6px rgba(25, 29, 21, 0.04),
        0 24px 64px rgba(25, 29, 21, 0.14),
        0 48px 96px rgba(60, 106, 0, 0.08);
}

.hero__slides {
    position: absolute;
    inset: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    transition:
        opacity 2s var(--hero-ease),
        transform 10s linear;
}

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

.hero__media-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
    background:
        linear-gradient(105deg, rgba(25, 29, 21, 0.35) 0%, transparent 42%),
        linear-gradient(0deg, rgba(25, 29, 21, 0.55) 0%, transparent 45%),
        linear-gradient(180deg, rgba(25, 29, 21, 0.12) 0%, transparent 28%);
    box-shadow: inset 0 0 80px rgba(25, 29, 21, 0.15);
}

@keyframes hero-rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

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

@media (min-width: 900px) {
    .hero__split {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
        gap: clamp(1rem, 1.75vw, 1.75rem);
        align-items: center;
        min-height: max(580px, calc(100svh - var(--nav-height) - 2rem));
        padding-block: calc(var(--nav-height) + 2.5rem) clamp(3rem, 5vh, 4.5rem);
    }

    .hero__copy-inner {
        width: 100%;
        max-width: none;
        padding-inline-end: clamp(0.5rem, 2vw, 1.25rem);
    }

    .hero__lead {
        max-width: min(42ch, 100%);
    }

    .hero__media {
        min-height: auto;
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16 / 9;
        align-self: center;
    }
}

/* Film / video */
.film-section {
    padding-block: clamp(2.5rem, 5vw, var(--section-pad));
    background: linear-gradient(180deg, var(--bg) 0%, var(--surface-container-low) 100%);
}

.film-section__header {
    margin-bottom: 2rem;
}

.film-section__header .section-title {
    margin-bottom: 0;
}

.film-panel {
    display: flex;
    flex-direction: column;
    gap: clamp(1.75rem, 4vw, 2.5rem);
    padding: clamp(1.25rem, 3vw, 2rem);
    border-radius: var(--radius-lg);
    background: var(--surface-container);
    border: 1px solid rgba(194, 201, 181, 0.45);
    box-shadow: var(--shadow);
}

.film-panel__video {
    width: 100%;
}

.film-player-wrap {
    position: relative;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #0d120c;
    aspect-ratio: 16 / 9;
}

.film-player-wrap:not(.is-ready)::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.film-player-wrap:not(.is-ready)::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    border-style: solid;
    border-width: 0.6rem 0 0.6rem 1rem;
    border-color: transparent transparent transparent var(--green-deep);
    transform: translate(-38%, -50%);
    pointer-events: none;
}

.film-player-wrap:not(.is-ready) .film-player {
    cursor: pointer;
}

.film-player-wrap.is-ready::before,
.film-player-wrap.is-ready::after {
    display: none;
}

.film-player-wrap .film-player,
.film-player-wrap .video-js {
    width: 100%;
    height: 100%;
}

.film-player-wrap .vjs-theme-forest {
    --vjs-theme-city--brand: var(--green-deep);
}

.film-panel__followup {
    width: 100%;
    max-width: 52rem;
    margin-inline: auto;
    text-align: center;
}

.film-section__followup-label {
    margin: 0 0 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-dark);
}

.film-followup {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 1.75rem;
}

.film-followup p {
    margin: 0 0 1rem;
}

.film-followup p:last-child {
    margin-bottom: 0;
}

.film-panel__followup .btn {
    margin-top: 0.25rem;
    margin-inline: auto;
}

/* Section atmospheres */
#quotes {
    background: var(--surface-container-low);
}

/* Quotes */
.quotes-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .quotes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.quote-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid rgba(194, 201, 181, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quote-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.quote-card__type {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-container);
}

.quote-card__arabic {
    font-family: var(--font-arabic);
    font-size: clamp(1.45rem, 2.5vw, 1.65rem);
    font-weight: 600;
    line-height: 1.85;
    color: var(--green-deep);
    text-align: right;
}

body.is-rtl .quote-card__arabic {
    text-align: right;
}

.quote-card__text {
    color: var(--text-muted);
    margin: 0;
    flex: 1;
}

.quote-card__ref {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-dark);
}

/* Share */
.share-section {
    text-align: center;
    background: var(--surface-container-low);
}

.share-section__lead {
    margin-inline: auto;
    max-width: 38rem;
}

.share-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: var(--white);
    transition:
        transform 0.2s var(--hero-ease),
        opacity 0.2s var(--hero-ease),
        box-shadow 0.2s var(--hero-ease);
}

.share-btn:hover {
    transform: translateY(-3px);
    opacity: 0.92;
}

.share-btn:active {
    transform: translateY(-1px);
}

.share-btn--copy.is-copying {
    opacity: 0.72;
    pointer-events: none;
}

.share-btn--facebook { background: #1877f2; }
.share-btn--twitter { background: #000; }
.share-btn--whatsapp { background: #25d366; }
.share-btn--telegram { background: #0088cc; }
.share-btn--copy { background: var(--green-deep); border: none; cursor: pointer; }

.share-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.share-toast {
    position: fixed;
    left: 50%;
    bottom: 1.5rem;
    z-index: 200;
    transform: translateX(-50%) translateY(0.75rem);
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    background: var(--green-deep);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    pointer-events: none;
    opacity: 0;
    transition:
        opacity 0.25s var(--hero-ease),
        transform 0.25s var(--hero-ease);
}

.share-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.share-toast.is-error {
    background: #6b3a3a;
}

/* Explore more */
.explore-section {
    padding-block: var(--section-pad);
}

.explore-panel {
    max-width: min(72rem, 100%);
    margin-inline: auto;
    padding: clamp(2rem, 5vw, 3rem);
    text-align: center;
    background: rgba(124, 179, 66, 0.08);
    border: 1px solid rgba(60, 106, 0, 0.12);
    border-radius: var(--radius-lg);
}

.explore-panel__lead {
    margin-inline: auto;
    max-width: 36rem;
}

.explore-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .explore-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .explore-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.explore-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(194, 201, 181, 0.5);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.explore-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.explore-card img {
    width: 8rem;
    height: 8rem;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

.explore-card__name {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.explore-card__cta {
    font-weight: 700;
    color: var(--green);
}

.explore-card__arrow {
    display: inline-block;
    transition: transform 0.2s var(--hero-ease);
}

.explore-card:hover .explore-card__arrow {
    transform: translateX(3px);
}

body.is-rtl .explore-card__arrow {
    transform: scaleX(-1);
}

body.is-rtl .explore-card:hover .explore-card__arrow {
    transform: scaleX(-1) translateX(3px);
}

.explore-card--chat .explore-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    height: 8rem;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background: rgba(60, 106, 0, 0.08);
    color: var(--green-deep);
}

.explore-card--chat .explore-card__cta {
    color: var(--green-deep);
}

/* Footer */
.site-footer {
    background: var(--surface-container-low);
    color: var(--text);
    padding-block: 3.5rem 2rem;
    border-top: 1px solid rgba(194, 201, 181, 0.45);
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
        align-items: start;
    }
}

.footer-brand img {
    height: 48px;
    margin-bottom: 1rem;
}

.footer-brand p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 22rem;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-deep);
    margin: 0 0 1rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links--columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.5rem;
    row-gap: 0.5rem;
}

.footer-links--columns li {
    margin-bottom: 0;
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: var(--green-deep);
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(194, 201, 181, 0.35);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

.footer-custom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-custom a {
    color: var(--green-deep);
}

.footer-custom p {
    margin: 0.35rem 0;
}

/* Chat CTA strip */
.chat-strip {
    text-align: center;
    padding-block: 2rem;
}

/* Mobile */
@media (max-width: 991px) {
    .nav-inner {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }

    .nav-brand {
        flex: 1 1 auto;
    }

    .nav-menu {
        position: fixed;
        inset-inline: 0;
        top: var(--nav-height);
        z-index: 99;
        flex: 1 1 100%;
        order: 3;
        background: rgba(248, 251, 237, 0.98);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(194, 201, 181, 0.35);
        padding: 1rem 1.25rem 1.5rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    }

    .site-nav.is-menu-open .nav-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-menu__link {
        display: block;
        padding: 0.85rem 0;
        border-bottom: 1px solid rgba(194, 201, 181, 0.25);
    }

    .nav-menu__list li:last-child .nav-menu__link {
        border-bottom: none;
    }

    .nav-toggle {
        display: inline-flex;
    }
}

@media (max-width: 767px) {
    .lang-switcher__toggle span.lang-label {
        display: none;
    }

    .hero__split {
        padding-inline: 1.25rem;
    }

    .hero__copy {
        order: 1;
    }

    .hero__media {
        order: 2;
        min-height: auto;
        aspect-ratio: 16 / 9;
        max-height: none;
    }

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

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Scroll reveal */
.scroll-reveal {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition:
        opacity var(--reveal-duration) var(--hero-ease),
        transform var(--reveal-duration) var(--hero-ease);
    transition-delay: var(--reveal-delay, 0ms);
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.scroll-reveal.is-locked {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }

    .hero__slide,
    .hero__copy-inner > * {
        animation: none;
        transition: none;
        transform: none;
    }

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

    .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
