/* Farmore Limited — Bright farm editorial (logo green + orange accent) */

:root {
    --orange: #f55612;
    --orange-soft: rgba(245, 86, 18, 0.14);
    --green: #85c530;
    --green-deep: #3a6f14;
    --green-dark: #2d5610;
    --green-light: #a3d65a;
    --cream: #f7f6f2;
    --cream-2: #eeede8;
    --white: #ffffff;
    --ink: #1c2418;
    --ink-muted: #5a6654;
    --line: rgba(28, 36, 24, 0.08);
    --shadow: 0 20px 50px rgba(28, 36, 24, 0.08);
    --shadow-lg: 0 32px 80px rgba(28, 36, 24, 0.12);
    --font-display: 'Outfit', system-ui, sans-serif;
    --font-body: 'Source Sans 3', system-ui, sans-serif;
    --wrap: 1180px;
    --header-h: 80px;
    --radius: 16px;
    --radius-sm: 10px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
body.is-loading { overflow: hidden; }

/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.55s var(--ease), visibility 0.55s;
}
.preloader.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(133, 197, 48, 0.18) 0%, transparent 65%),
        linear-gradient(165deg, var(--cream) 0%, var(--white) 45%, var(--cream-2) 100%);
}
.preloader__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    animation: preloader-enter 0.7s var(--ease) both;
}
.preloader__logo-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 11rem;
    height: 11rem;
}
.preloader__rings {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.preloader__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--green);
    border-right-color: rgba(133, 197, 48, 0.35);
    animation: preloader-spin 1.1s linear infinite;
}
.preloader__ring--delay {
    inset: 0.9rem;
    border-top-color: var(--orange);
    border-right-color: rgba(245, 86, 18, 0.3);
    animation-duration: 1.45s;
    animation-direction: reverse;
}
.preloader__logo {
    position: relative;
    z-index: 1;
    width: auto;
    height: clamp(72px, 20vw, 120px);
    animation: preloader-logo 2s var(--ease) infinite;
}
.preloader__tagline {
    margin: 0;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-muted);
    animation: preloader-pulse-text 2s var(--ease) infinite;
}
@keyframes preloader-enter {
    from { opacity: 0; transform: translateY(12px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes preloader-spin {
    to { transform: rotate(360deg); }
}
@keyframes preloader-logo {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.04); opacity: 0.92; }
}
@keyframes preloader-pulse-text {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    .preloader__inner,
    .preloader__logo,
    .preloader__tagline,
    .preloader__ring { animation: none; }
    .preloader { transition-duration: 0.2s; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul { list-style: none; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

.skip-link {
    position: absolute; top: -100px; left: 1rem; z-index: 9999;
    padding: 0.55rem 1rem; background: var(--orange); color: #fff;
    font-weight: 700; font-size: 0.875rem; border-radius: 8px;
}
.skip-link:focus { top: 0.75rem; }

/* Labels & typography */
.section-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.65rem;
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.5rem, 7vw, 4.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.2rem; color: var(--green-deep); }

.lead, .prose {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--ink-muted);
    max-width: 65ch;
}
.text-muted { color: var(--ink-muted); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    box-shadow: 0 8px 28px var(--orange-soft);
}
.btn--primary:hover { color: #fff; filter: brightness(1.05); }
.btn--green {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    box-shadow: 0 8px 28px rgba(133, 197, 48, 0.25);
}
.btn--green:hover { background: var(--green-light); border-color: var(--green-light); color: #fff; }
.btn--ghost {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.28); color: #fff; }
.btn--outline {
    background: transparent;
    color: var(--green-deep);
    border-color: var(--green);
}
.btn--outline:hover { background: rgba(133, 197, 48, 0.12); }

/* Header — always white, sticky below top */
.header {
    position: sticky;
    top: 0;
    z-index: 200;
    height: var(--header-h);
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 2px 16px rgba(28, 36, 24, 0.05);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}
.header__logo img { height: 56px; width: auto; }

.header__nav { display: flex; align-items: center; gap: 0.15rem; }
.header__nav a:not(.btn) {
    padding: 0.5rem 1rem;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ink-muted);
    border-radius: 999px;
}
.header__nav a:not(.btn):hover { color: var(--green-deep); background: rgba(133, 197, 48, 0.1); }
.header__nav a[aria-current="page"] { color: var(--green-deep); font-weight: 600; }
.header__cta { margin-left: 0.75rem; }

.header__toggle {
    display: none;
    width: 46px; height: 46px;
    border: none;
    background: var(--cream);
    border-radius: 12px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.header__toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--green-deep);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}
.header__toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.header__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* Hero — full-cover background slider (below white header) */
.hero {
    position: relative;
    min-height: clamp(520px, 85vh, 760px);
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}
.hero__slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s var(--ease);
    pointer-events: none;
}
.hero__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}
.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(12, 22, 8, 0.9) 0%, rgba(12, 22, 8, 0.55) 42%, rgba(12, 22, 8, 0.25) 100%),
        linear-gradient(0deg, rgba(8, 14, 6, 0.5) 0%, transparent 50%);
}
.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 52rem;
    margin-right: auto;
    padding: clamp(3rem, 8vh, 5rem) 1.25rem clamp(3rem, 8vh, 5rem) clamp(1.25rem, 6vw, 5rem);
}
.hero__kicker {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
}
.hero__rule {
    width: 5rem;
    height: 4px;
    margin: 1rem 0 1.15rem;
    background: var(--orange);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(245, 86, 18, 0.45);
}
.hero__title {
    margin-top: 0;
    font-size: clamp(3rem, 9.5vw, 5.5rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: #fff;
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}
.hero__line { display: block; }
.hero__greener {
    color: var(--green-light);
    text-shadow: 0 2px 24px rgba(133, 197, 48, 0.35);
}
.hero__tomorrow {
    color: var(--orange);
}
.hero__meta {
    margin-top: 1.25rem;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
}
.hero__meta strong { color: #fff; font-weight: 600; }
.hero__meta-sep { margin: 0 0.35rem; opacity: 0.55; }
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.85rem;
}
.hero__dots {
    position: absolute;
    z-index: 3;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    padding: 0.4rem 0.65rem;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}
.hero__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}
.hero__dot.is-active {
    background: var(--orange);
    transform: scale(1.15);
}
.hero__dot:hover { background: #fff; }
@media (prefers-reduced-motion: reduce) {
    .hero__slide { transition: none; }
}

/* About showcase — side by side: copy + counters | photos */
.about-showcase {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    background: var(--cream);
}
.about-showcase__grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 960px) {
    .about-showcase__grid {
        grid-template-columns: 1fr 1.1fr;
        gap: 3rem;
    }
}
.about-showcase__copy h2 {
    margin-top: 0.15rem;
}
.about-showcase__copy .lead {
    margin-top: 1rem;
}
.about-showcase__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin-top: 1.75rem;
}
.about-stat {
    padding: 0.85rem 0.6rem;
    text-align: center;
    border-radius: var(--radius-sm);
    background: linear-gradient(160deg, var(--green-deep) 0%, var(--green-dark) 100%);
    color: #fff;
}
.about-stat__value {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.2vw, 1.6rem);
    font-weight: 700;
    line-height: 1;
    color: var(--green-light);
}
.about-stat__num { display: inline-block; min-width: 1.25ch; }
.about-stat__label {
    margin: 0.25rem 0 0;
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.88);
}
.about-showcase__photos {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: 1.15fr 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 320px;
}
.about-showcase__photo {
    margin: 0;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
}
.about-showcase__photo--lead {
    grid-row: span 2;
    min-height: 240px;
}
.about-showcase__photo:not(.about-showcase__photo--lead) {
    min-height: 120px;
}
.about-showcase__photo img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform 0.45s var(--ease);
}
.about-showcase__photo:hover img {
    transform: scale(1.04);
}
.about-showcase__photo figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem 0.75rem 0.7rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(0deg, rgba(12, 22, 8, 0.88) 0%, transparent 100%);
}
@media (max-width: 959px) {
    .about-showcase__photos {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    .about-showcase__photo--lead {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 220px;
    }
}

/* Sections */
.section {
    padding: clamp(4rem, 9vw, 6.5rem) 0;
}
.section--cream { background: var(--cream); }
.section--green-tint { background: linear-gradient(180deg, rgba(133, 197, 48, 0.08) 0%, var(--white) 100%); }
.section__head { margin-bottom: 2.5rem; max-width: 720px; }
.section__head h2 { margin-top: 0.15rem; }

/* Feature cards (services page) */
.features {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .features { grid-template-columns: repeat(3, 1fr); }
}
.feature {
    padding: 2rem 1.75rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.section--cream .feature { box-shadow: var(--shadow); }
.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.feature__num {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}
.feature h3 { margin-bottom: 0.5rem; }
.feature p { font-size: 0.9375rem; color: var(--ink-muted); line-height: 1.6; }

/* Our Focus — homepage */
.focus-section {
    padding: clamp(4rem, 9vw, 6.5rem) 0;
    background: var(--white);
    position: relative;
}
.focus-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.focus-section__header {
    max-width: 720px;
    margin-bottom: 2.5rem;
}
.focus-section__rule {
    width: 3.5rem;
    height: 4px;
    margin: 0.75rem 0 1rem;
    background: var(--orange);
    border-radius: 2px;
}
.focus-section__header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}
.focus-loop {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(133, 197, 48, 0.1) 0%, rgba(245, 86, 18, 0.06) 100%);
    border: 1px solid rgba(133, 197, 48, 0.2);
    border-radius: var(--radius);
}
@media (min-width: 768px) {
    .focus-loop {
        flex-direction: row;
        align-items: stretch;
        padding: 0;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        overflow: hidden;
    }
}
.focus-loop__step {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}
@media (min-width: 768px) {
    .focus-loop__step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.75rem 1.25rem;
        border-radius: 0;
        box-shadow: none;
        border: none;
        border-right: 1px solid var(--line);
    }
    .focus-loop__step:last-of-type { border-right: none; }
}
.focus-loop__num {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: var(--green);
    border-radius: 50%;
}
.focus-loop__step p {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--ink);
}
@media (min-width: 768px) {
    .focus-loop__step p { margin-top: 0.75rem; }
}
.focus-loop__connector {
    display: none;
}
@media (min-width: 768px) {
    .focus-loop__connector { display: none; }
}
.focus-section__intro {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: 1.75rem;
    letter-spacing: 0.02em;
}
.focus-cards {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .focus-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}
.focus-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transition: transform 0.35s var(--ease), box-shadow 0.35s;
    overflow: hidden;
}
.focus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 2;
    background: var(--green);
}
.focus-card--1::before { background: var(--orange); }
.focus-card--2::before { background: linear-gradient(90deg, var(--green) 0%, var(--orange) 100%); }
.focus-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.focus-card__media {
    position: relative;
    overflow: hidden;
}
.focus-card__media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.45s var(--ease);
}
.focus-card:hover .focus-card__media img {
    transform: scale(1.05);
}
.focus-card__badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    background: var(--green);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.focus-card--1 .focus-card__badge { background: var(--orange); }
.focus-card--2 .focus-card__badge {
    background: linear-gradient(135deg, var(--green) 0%, var(--orange) 100%);
}
.focus-card__body {
    padding: 1.35rem 1.5rem 1.5rem;
    flex: 1;
}
.focus-card h3 {
    margin-bottom: 0.45rem;
    font-size: 1.1rem;
}
.focus-card p {
    font-size: 0.9375rem;
    color: var(--ink-muted);
    line-height: 1.6;
    margin: 0;
}

/* What we do pills */
.pill-grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 640px) { .pill-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .pill-grid { grid-template-columns: repeat(4, 1fr); } }
.pill {
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 4px solid var(--green);
    box-shadow: var(--shadow);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink);
    line-height: 1.35;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
@media (min-width: 900px) {
    .gallery {
        grid-template-columns: 1.2fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
    .gallery__item:first-child {
        grid-row: span 2;
    }
}
.gallery__item {
    border: none;
    padding: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    position: relative;
}
.gallery__item:first-child { aspect-ratio: auto; min-height: 200px; }
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.35) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }

/* Grids */
.grid-2 { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.grid-3 { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* Cards (inner pages) */
.card {
    padding: 1.75rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.9375rem; color: var(--ink-muted); }

.card--media { padding: 0; overflow: hidden; }
.card--media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card--media .card__body { padding: 1.5rem 1.75rem; }

/* Stack / list */
.stack__item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--line);
}
.stack__item:first-child { padding-top: 0; }
.stack__num {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.stack__item h3 { margin-bottom: 0.4rem; }
.stack__item p { color: var(--ink-muted); font-size: 0.9375rem; }

.list-check li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1rem 1.15rem;
    margin-bottom: 0.5rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    color: var(--ink-muted);
    box-shadow: 0 2px 12px rgba(28, 36, 24, 0.04);
}
.list-check li::before {
    content: '';
    flex-shrink: 0;
    width: 10px; height: 10px;
    margin-top: 0.45rem;
    background: var(--green);
    border-radius: 50%;
}

.figure {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.figure img { width: 100%; object-fit: cover; }
.figure--portrait img { aspect-ratio: 4/5; }
.figure--landscape img { aspect-ratio: 16/10; }

/* Page intro (inner pages) */
.page-intro {
    padding: calc(var(--header-h) + 3rem) 0 clamp(2.5rem, 5vw, 3.5rem);
    background: var(--cream);
    border-bottom: 1px solid var(--line);
}
.page-intro h1 { margin-top: 0.25rem; }
.page-intro .breadcrumb {
    font-size: 0.875rem;
    color: var(--ink-muted);
    margin-bottom: 1rem;
}
.page-intro .breadcrumb a:hover { color: var(--orange); }

/* CTA band */
.cta-band {
    padding: clamp(3.5rem, 7vw, 5rem) 0;
    text-align: center;
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
    color: #fff;
}
.cta-band h2, .cta-band .lead { color: #fff; }
.cta-band .lead { margin: 0.75rem auto 1.75rem; opacity: 0.92; }
.cta-band--orange {
    background: linear-gradient(135deg, var(--orange) 0%, #d94a0e 100%);
}

.highlight-quote {
    margin-top: 2rem;
    padding: 1.75rem 2rem;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 4px solid var(--orange);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--green-deep);
    box-shadow: var(--shadow);
}

/* —— Contact page —— */
.contact-intro {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    background: var(--white);
}
.contact-intro__inner { max-width: 720px; }
.contact-intro .lead {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--ink-muted);
}
.contact-main {
    padding: clamp(3rem, 7vw, 5rem) 0 clamp(4rem, 9vw, 6rem);
    background: var(--cream);
}
.contact-main__grid {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}
@media (min-width: 960px) {
    .contact-main__grid {
        grid-template-columns: 1fr 1.05fr;
        gap: 3rem;
    }
}
.contact-reasons {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.contact-reasons li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1rem 1.15rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    line-height: 1.5;
    box-shadow: var(--shadow);
}
.contact-reasons li::before {
    content: '';
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.1rem;
    background: var(--green);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l5 5L19 7'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l5 5L19 7'/%3E%3C/svg%3E") center / contain no-repeat;
}
.contact-closing {
    margin: 1.25rem 0 0;
    font-weight: 600;
    color: var(--green-deep);
    line-height: 1.5;
}
.contact-details {
    margin-top: 1.75rem;
    padding: 1.5rem 1.5rem 0.25rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.contact-details__row {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}
.contact-details__row:last-child { border-bottom: none; }
.contact-details__label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.35rem;
}
.contact-details__row strong {
    display: block;
    font-size: 1rem;
    color: var(--ink);
}
.contact-details__row span,
.contact-details__row a {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.9375rem;
    color: var(--ink-muted);
}
.contact-details__row a:hover { color: var(--orange); }
.contact-visit {
    margin: 1.25rem 0 0;
    font-size: 0.9375rem;
    color: var(--ink-muted);
    line-height: 1.6;
}
.contact-main__figure {
    margin: 1.5rem 0 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
}
.contact-main__figure img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
}
.contact-form.form {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
}
.contact-form__title {
    margin: 0;
    font-size: 1.35rem;
}
.contact-form__hint {
    margin: 0.35rem 0 0.25rem;
    font-size: 0.875rem;
    color: var(--ink-muted);
}
.contact-form__submit { width: 100%; margin-top: 0.25rem; }
@media (max-width: 959px) {
    .contact-form.form { position: static; }
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.field label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: 0.35rem;
}
.field input, .field textarea, .field select {
    width: 100%;
    padding: 0.8rem 1rem;
    font: inherit;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--cream);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(133, 197, 48, 0.2);
    background: var(--white);
}
.field textarea { min-height: 130px; resize: vertical; }

/* Footer */
.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.78);
    padding: 3.5rem 0 0;
}
.footer__grid {
    display: grid;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
}
@media (min-width: 900px) {
    .footer__grid { grid-template-columns: 1.35fr 0.85fr 0.95fr 1fr; }
}
.footer__brand img { height: 44px; margin-bottom: 0.75rem; }
.footer__photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 0.35rem;
}
.footer__photo {
    display: block;
    padding: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: border-color 0.25s, transform 0.25s var(--ease);
}
.footer__photo:hover {
    border-color: var(--green-light);
    transform: translateY(-2px);
}
.footer__photo img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}
.footer__brand p { font-size: 0.9375rem; line-height: 1.5; }
.footer__heading {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 0.85rem;
}
.footer a {
    display: block;
    font-size: 0.9375rem;
    padding: 0.25rem 0;
    color: rgba(255, 255, 255, 0.72);
}
.footer a:hover { color: #fff; }
.footer__bar {
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 300;
    background: rgba(20, 30, 15, 0.94);
    display: flex; align-items: center; justify-content: center;
    padding: 2rem;
    opacity: 0; visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: var(--radius-sm); }
.lightbox__close {
    position: absolute; top: 1rem; right: 1rem;
    width: 48px; height: 48px;
    border: none; background: var(--orange); color: #fff;
    font-size: 1.5rem; border-radius: 12px; cursor: pointer;
}

[data-reveal] { opacity: 1; transform: none; }

/* —— About page —— */
.page-hero {
    position: relative;
    min-height: clamp(300px, 42vw, 460px);
    padding: calc(var(--header-h) + 2.75rem) 0 clamp(2.5rem, 5vw, 3.75rem);
    background-color: var(--green-deep);
    background-image:
        linear-gradient(120deg, rgba(18, 42, 14, 0.88) 0%, rgba(28, 58, 22, 0.72) 45%, rgba(12, 28, 10, 0.55) 100%),
        var(--page-hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    display: flex;
    align-items: flex-end;
}
.page-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
}
.page-hero__eyebrow {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-light);
}
.page-hero__rule {
    width: 3.5rem;
    height: 4px;
    margin: 0.75rem 0 1rem;
    background: var(--orange);
    border-radius: 2px;
}
.page-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3rem);
}
.page-hero__sub {
    margin-top: 0.65rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
}
.services-hero .page-hero__inner { max-width: 780px; }
.services-hero h1 { font-size: clamp(1.85rem, 4.5vw, 2.85rem); }
.about-intro {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    background: var(--white);
}
.about-intro__grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 960px) {
    .about-intro__grid {
        grid-template-columns: 1fr 1.1fr;
        gap: 3rem;
    }
}
.about-intro__copy h2 {
    font-size: clamp(1.65rem, 3.5vw, 2.15rem);
}
.about-intro__copy .lead { margin-top: 1rem; }
.about-intro__photos {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: 1.15fr 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 320px;
}
.about-intro__photo {
    margin: 0;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
}
.about-intro__photo--lead {
    grid-row: span 2;
    min-height: 240px;
}
.about-intro__photo:not(.about-intro__photo--lead) {
    min-height: 120px;
}
.about-intro__photo img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}
.about-intro__photo figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem 0.75rem 0.7rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(0deg, rgba(12, 22, 8, 0.88) 0%, transparent 100%);
}
@media (max-width: 959px) {
    .about-intro__photos {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    .about-intro__photo--lead {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 220px;
    }
}
.about-block {
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}
.about-block--vision { background: var(--cream); }
.about-block--system { background: var(--green-mist); }
.about-block--community { background: var(--white); }
.about-block__grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 900px) {
    .about-block__grid { grid-template-columns: 1fr 0.95fr; gap: 3.5rem; }
}
.about-block__copy h2 {
    font-size: clamp(1.65rem, 3.5vw, 2.15rem);
}
.about-block__copy .lead { margin-top: 1rem; }
.about-block__figure {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
}
.about-block__figure img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.about-stats {
    padding: 0 0 clamp(3rem, 6vw, 4rem);
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}
.about-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--line);
    box-shadow: var(--shadow-lg);
}
@media (min-width: 768px) {
    .about-stats__grid { grid-template-columns: repeat(4, 1fr); }
}
.about-stats__item {
    padding: 1.1rem 0.85rem;
    text-align: center;
    background: var(--white);
}
.about-stats__value {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--green-deep);
    line-height: 1;
}
.about-stats__label {
    margin: 0.3rem 0 0;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ink-muted);
}
.about-vision__card {
    margin-top: 1rem;
    padding: clamp(2rem, 4vw, 2.75rem);
    background: var(--white);
    border-radius: var(--radius);
    border-left: 4px solid var(--green);
    box-shadow: var(--shadow);
}
.about-vision__card h2 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}
.about-vision__card p {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--ink-muted);
}
.about-block__header { max-width: 680px; margin-bottom: 2.25rem; }
.about-block__rule {
    width: 3.5rem;
    height: 4px;
    margin: 0.75rem 0 1rem;
    background: var(--orange);
    border-radius: 2px;
}
.about-block__header h2 { margin-top: 0; }
.about-block__header .text-muted,
.about-block__header .lead { margin-top: 0.75rem; }
.about-objectives {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 900px) {
    .about-objectives { grid-template-columns: repeat(3, 1fr); }
}
.about-objective {
    padding: 1.75rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.about-block--system .about-objective { background: var(--white); }
.about-objective:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.about-objective__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    background: var(--orange);
    border-radius: 8px;
}
.about-objective h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}
.about-objective p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--ink-muted);
    line-height: 1.6;
}
.about-system {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .about-system { grid-template-columns: repeat(2, 1fr); }
}
.about-system__card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.about-system__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.about-system__media img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.45s var(--ease);
}
.about-system__card:hover .about-system__media img {
    transform: scale(1.04);
}
.about-system__body {
    padding: 1.35rem 1.5rem 1.5rem;
    border-top: 3px solid var(--green);
}
.about-system__body h3 { margin-bottom: 0.4rem; font-size: 1.1rem; }
.about-system__body p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--ink-muted);
    line-height: 1.55;
}
.about-community__grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 900px) {
    .about-community__grid { grid-template-columns: 1.05fr 0.9fr; gap: 3rem; }
}
.about-community__list {
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}
.about-community__list li {
    position: relative;
    padding: 0.85rem 0 0.85rem 1.35rem;
    font-size: 0.9375rem;
    color: var(--ink-muted);
    border-bottom: 1px solid var(--line);
}
.about-community__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.15rem;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
}
.about-community__quote {
    margin: 1.75rem 0 1.5rem;
    padding: 1.5rem 1.25rem;
    font-size: 1.0625rem;
    font-weight: 600;
    font-style: normal;
    line-height: 1.55;
    color: var(--green-deep);
    background: var(--cream);
    border-left: 4px solid var(--orange);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.about-community__figure {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-community__figure img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

/* —— Services page —— */
.services-intro {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    background: var(--white);
}
.services-intro__inner {
    max-width: 720px;
}
.services-intro .lead {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--ink-muted);
}
.services-why {
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
    background: var(--cream);
}
.services-modules {
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
    background: var(--white);
}
.services-section__head {
    max-width: 640px;
    margin-bottom: 2.25rem;
}
.services-section__head h2 {
    font-size: clamp(1.65rem, 3.5vw, 2.15rem);
}
.services-section__lead {
    margin: 0.75rem 0 0;
    font-size: 1.0625rem;
    color: var(--ink-muted);
}
.services-why__layout {
    display: grid;
    gap: 2rem;
    align-items: start;
}
@media (min-width: 960px) {
    .services-why__layout {
        grid-template-columns: 0.95fr 1.05fr;
        gap: 2.5rem;
    }
}
.services-why__figure {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
}
.services-why__figure img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}
.services-why__cards {
    display: grid;
    gap: 1rem;
}
@media (min-width: 640px) {
    .services-why__cards { grid-template-columns: repeat(2, 1fr); }
}
.services-card {
    padding: 1.5rem 1.35rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.services-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.services-card__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.85rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    background: var(--orange);
    border-radius: 8px;
}
.services-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
}
.services-card p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--ink-muted);
    line-height: 1.6;
}
.services-modules__grid {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .services-modules__grid { grid-template-columns: repeat(2, 1fr); }
}
.services-module {
    padding: 1.75rem 1.5rem 1.65rem;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    border-top: 3px solid var(--green);
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.services-module:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.services-module__num {
    display: block;
    margin-bottom: 0.65rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--orange);
}
.services-module h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.services-module p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--ink-muted);
    line-height: 1.6;
}
.services-consultancy {
    margin: 2rem 0 0;
    padding: 1.35rem 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--green-deep);
    background: var(--green-mist);
    border-left: 4px solid var(--green);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.cta-band__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}
.cta-band__text {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-weight: 600;
    color: #fff;
    max-width: 36ch;
}

/* Mobile nav */
@media (max-width: 899px) {
    .header__toggle { display: flex; }
    .header__nav {
        position: fixed;
        top: var(--header-h); left: 1rem; right: 1rem;
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem;
        background: var(--white);
        border-radius: var(--radius);
        border: 1px solid var(--line);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.35s var(--ease), opacity 0.3s, visibility 0.3s;
    }
    .header__nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
    .header__nav a:not(.btn) { padding: 0.9rem 1rem; }
    .header__cta { margin: 0.75rem 0 0; width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .btn:hover, .feature:hover, .focus-card:hover, .about-objective:hover,
    .about-system__card:hover, .services-card:hover, .services-module:hover,
    .footer__photo:hover, .card:hover, .gallery__item:hover img { transform: none; }
}
