:root {
    --bg: #f7faf7;
    --surface: rgba(255, 255, 255, 0.88);
    --surface-strong: #eef4eb;
    --line: #d5dfd2;
    --text: #162118;
    --muted: #4f6252;
    --accent: #436847;
    --accent-strong: #203828;
    --teal: #2b7d79;
    --amber: #a86f24;
    --max-width: 1120px;
    --sans: "Be Vietnam Pro", sans-serif;
    --display: "Sora", var(--sans);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --shadow-sm: 0 4px 14px rgba(29, 51, 36, 0.07);
    --shadow-md: 0 12px 30px rgba(29, 51, 36, 0.09);
    --shadow-lg: 0 24px 46px rgba(29, 51, 36, 0.13);
    --transition: 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--text);
    background: linear-gradient(180deg, #f9fcf8 0%, #f3f8f1 100%);
    overflow-x: clip;
}

/* ── AMBIENT ─────────────────────────────────── */
.ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(1px);
}

.orb-a {
    width: 480px;
    height: 480px;
    left: -140px;
    top: -160px;
    background: radial-gradient(circle, rgba(90, 126, 90, 0.28), transparent 70%);
    animation: floatA 16s ease-in-out infinite;
}

.orb-b {
    width: 380px;
    height: 380px;
    right: -120px;
    top: 100px;
    background: radial-gradient(circle, rgba(43, 125, 121, 0.2), transparent 72%);
    animation: floatB 17s ease-in-out infinite;
}

.orb-c {
    width: 340px;
    height: 340px;
    left: 50%;
    bottom: -200px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(168, 111, 36, 0.15), transparent 70%);
    animation: floatC 19s ease-in-out infinite;
}

.mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(67, 104, 71, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(67, 104, 71, 0.045) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 76%);
}

/* ── LAYOUT SHELL ────────────────────────────── */
.shell {
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto;
}

/* ── HEADER ──────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    width: 100%;
    background: rgba(249, 252, 248, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(213, 223, 210, 0.7);
    /* colored top border accent */
    box-shadow: inset 0 3px 0 0 rgba(67, 104, 71, 0.55);
}

.header-inner {
    width: min(calc(100% - 64px), var(--max-width));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
}

/* ── BRAND ───────────────────────────────────── */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.08em;
    font-size: 1rem;
}

.brand-mark {
    position: relative;
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
}

.brand-mark::before {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 999px;
    border: 1px dashed rgba(67, 104, 71, 0.36);
    transform: rotate(-12deg);
    transition: transform var(--transition), border-color var(--transition);
}

.mark-core {
    position: relative;
    width: 16px;
    height: 16px;
    border-radius: 5px;
    background: linear-gradient(135deg, #436847 0%, #2b7d79 55%, #a86f24 100%);
    box-shadow:
        0 0 0 1px rgba(32, 56, 40, 0.14),
        0 8px 18px rgba(36, 59, 43, 0.3);
    transition: transform var(--transition);
}

.mark-core::before,
.mark-core::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
}

.mark-core::before {
    top: 4px;
    width: 8px;
    height: 2px;
}

.mark-core::after {
    top: 8px;
    width: 6px;
    height: 2px;
}

.mark-orbit {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform var(--transition), border-color var(--transition);
}

.orbit-a {
    border-color: rgba(67, 104, 71, 0.44);
    transform: rotate(16deg);
}

.orbit-b {
    inset: 5px;
    border-color: rgba(43, 125, 121, 0.42);
    transform: rotate(-26deg);
}

.brand:hover .orbit-a,
.brand:focus-visible .orbit-a {
    transform: rotate(34deg) scale(1.07);
    border-color: rgba(67, 104, 71, 0.58);
}

.brand:hover .orbit-b,
.brand:focus-visible .orbit-b {
    transform: rotate(-36deg) scale(1.06);
    border-color: rgba(43, 125, 121, 0.56);
}

.brand:hover .mark-core,
.brand:focus-visible .mark-core {
    transform: scale(1.1);
}

.brand:hover .brand-mark::before,
.brand:focus-visible .brand-mark::before {
    transform: rotate(6deg) scale(1.03);
    border-color: rgba(67, 104, 71, 0.5);
}

.brand-text {
    font-family: var(--display);
    letter-spacing: 0.095em;
    font-size: 1.04rem;
    font-weight: 800;
    background: linear-gradient(90deg, #203828 0%, #2b7d79 62%, #436847 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ── NAV ─────────────────────────────────────── */
.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    padding: 9px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.93rem;
    transition: color var(--transition), background-color var(--transition), transform var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--accent-strong);
    background: rgba(67, 104, 71, 0.09);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--accent-strong);
    background: rgba(67, 104, 71, 0.12);
    font-weight: 700;
}

/* Nav CTA pill */
.nav-cta {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    padding: 9px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    box-shadow: 0 6px 18px rgba(32, 56, 40, 0.22);
    transition: transform var(--transition), box-shadow var(--transition);
}

.nav-cta:hover,
.nav-cta:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(32, 56, 40, 0.28);
}

/* Mobile menu button */
.menu-button {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.86);
    padding: 0;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
}

.menu-button:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(67, 104, 71, 0.28);
}

.menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
    border-radius: 2px;
    transition: transform 200ms ease, opacity 200ms ease;
}

/* ── HERO ────────────────────────────────────── */
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 32px;
    align-items: start;
    padding: 88px 0 64px;
}

.hero-copy {
    max-width: 42rem;
}

/* Labels */
.eyebrow,
.block-label,
.panel-label {
    margin: 0 0 14px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.73rem;
    font-weight: 700;
}

/* Headings */
.display,
.highlight-card h2,
.media-copy h2,
.statement-card h2 {
    margin: 0;
    font-family: var(--display);
    letter-spacing: -0.03em;
    color: var(--accent-strong);
    text-wrap: balance;
}

.display {
    max-width: 12ch;
    line-height: 1.07;
    font-size: clamp(2.2rem, 4.2vw, 3.7rem);
}

/* Body text */
.lead,
.highlight-card p,
.media-copy p,
.statement-card p,
.panel-text {
    color: var(--muted);
    line-height: 1.78;
    font-size: 1.02rem;
}

.lead {
    margin: 20px 0 0;
    max-width: 39rem;
    text-wrap: pretty;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

/* ── TRUST BADGES ────────────────────────────── */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 13px;
    border-radius: 999px;
    border: 1px solid rgba(67, 104, 71, 0.2);
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.81rem;
    font-weight: 600;
    color: var(--accent-strong);
    backdrop-filter: blur(6px);
}

.trust-badge svg {
    width: 13px;
    height: 13px;
    fill: var(--accent);
    flex-shrink: 0;
}

/* ── BUTTONS ─────────────────────────────────── */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: #f4fbf2;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    box-shadow: 0 8px 22px rgba(32, 56, 40, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
    box-shadow: 0 14px 30px rgba(32, 56, 40, 0.3);
}

.button-ghost {
    color: var(--accent-strong);
    border-color: rgba(67, 104, 71, 0.28);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
    border-color: rgba(67, 104, 71, 0.5);
    background: rgba(255, 255, 255, 0.9);
}

/* ── HERO VISUAL ──────────────────────────────── */
.hero-visual {
    position: relative;
    border: 1px solid rgba(213, 223, 210, 0.9);
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(238, 244, 235, 0.92));
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow var(--transition);
}

.hero-visual:hover {
    box-shadow: 0 36px 52px rgba(29, 51, 36, 0.16);
}

.hero-visual img {
    width: 100%;
    height: auto;
    padding: 16px;
    display: block;
    object-fit: contain;
}

/* ── STATS ROW ───────────────────────────────── */
.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0 0 64px;
    padding: 36px 40px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(238, 244, 235, 0.85) 100%);
    box-shadow: var(--shadow-sm);
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 0 16px;
}

.stat-number {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--accent-strong);
    line-height: 1;
}

.stat-plus {
    font-size: 0.65em;
    color: var(--accent);
    vertical-align: super;
    letter-spacing: 0;
}

.stat-label {
    margin: 8px 0 0;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-divider {
    width: 1px;
    height: 56px;
    background: linear-gradient(180deg, transparent, var(--line), transparent);
    flex-shrink: 0;
}

/* ── HIGHLIGHT GRID ──────────────────────────── */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding: 16px 0 64px;
}

.highlight-card {
    position: relative;
    padding: 32px 28px 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    /* colored top border */
    border-top-width: 3px;
}

.accent-moss {
    border-top-color: var(--accent);
}

.accent-teal {
    border-top-color: var(--teal);
}

.accent-amber {
    border-top-color: var(--amber);
}

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

.highlight-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    margin-bottom: 16px;
}

.highlight-icon svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.highlight-card h2 {
    font-size: 1.33rem;
    line-height: 1.2;
}

.highlight-card p {
    margin: 12px 0 0;
    font-size: 0.96rem;
}

/* Arrow indicator */
.card-arrow {
    display: inline-block;
    margin-top: 16px;
    font-size: 1.15rem;
    font-weight: 700;
    opacity: 0.35;
    transition: opacity var(--transition), transform var(--transition);
}

.highlight-card:hover .card-arrow {
    opacity: 0.9;
    transform: translateX(4px);
}

.accent-moss .highlight-icon {
    color: var(--accent-strong);
    background: rgba(67, 104, 71, 0.12);
}

.accent-teal .highlight-icon {
    color: #145f5b;
    background: rgba(43, 125, 121, 0.14);
}

.accent-amber .highlight-icon {
    color: #855318;
    background: rgba(168, 111, 36, 0.15);
}

/* ── MEDIA SECTION ───────────────────────────── */
.media-section {
    display: grid;
    gap: 24px;
    padding: 16px 0 64px;
}

.media-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.media-card:hover {
    box-shadow: var(--shadow-md);
}

.media-card img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: contain;
    background: linear-gradient(150deg, #edf4ea, #e3f0ec);
    display: block;
    padding: 24px;
}

.media-copy {
    padding: 40px 36px;
    align-content: center;
    display: grid;
    gap: 16px;
}

.media-copy h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    line-height: 1.18;
}

.media-copy p {
    margin: 0;
}

.media-card-alt {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
}

/* Topic tags */
.topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.topic-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(67, 104, 71, 0.22);
    background: rgba(67, 104, 71, 0.06);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-strong);
    letter-spacing: 0.02em;
}

/* Media read-more link */
.media-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: gap var(--transition), color var(--transition);
}

.media-link:hover,
.media-link:focus-visible {
    color: var(--accent-strong);
    gap: 10px;
}

/* ── STATEMENT ───────────────────────────────── */
.statement {
    padding: 24px 0 88px;
}

.statement-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 48px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(238, 244, 235, 0.96));
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
    gap: 36px;
    align-items: center;
}

.statement-card h2 {
    max-width: 20ch;
    line-height: 1.1;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.statement-main p {
    margin-top: 12px;
    max-width: 64ch;
}

.statement-cta {
    margin-top: 24px;
}

.statement-aside {
    border: 1px solid rgba(213, 223, 210, 0.9);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.8);
    padding: 20px 20px 20px 22px;
    box-shadow: var(--shadow-sm);
}

.statement-aside-title {
    margin: 0;
    font-family: var(--display);
    font-size: 1rem;
    letter-spacing: 0.02em;
    color: var(--accent-strong);
}

.statement-points {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    display: grid;
    gap: 12px;
    font-size: 0.94rem;
    line-height: 1.66;
}

.statement-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.point-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(67, 104, 71, 0.14);
    color: var(--accent-strong);
    font-size: 0.72rem;
    font-weight: 800;
    display: grid;
    place-items: center;
    margin-top: 2px;
}

/* ── FOOTER ──────────────────────────────────── */
/* ── FOOTER ──────────────────────────────────── */
.site-footer {
    padding: 64px 0 24px;
    border-top: 1px solid var(--line);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand {
    display: grid;
    gap: 16px;
    align-content: start;
}

.footer-brand-link {
    pointer-events: auto;
}

.footer-tagline {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.6;
    color: var(--muted);
    max-width: 38ch;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-nav {
    display: grid;
    gap: 14px;
    align-content: start;
}

.footer-nav-title {
    margin: 0 0 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
}

.footer-nav-link {
    display: inline-flex;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color var(--transition), transform var(--transition);
}

.footer-nav-link:hover,
.footer-nav-link:focus-visible {
    color: var(--accent-strong);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(213, 223, 210, 0.6);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.85rem;
    color: var(--muted);
}

.footer-legal-links a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-legal-links a:hover {
    color: var(--accent-strong);
}

/* ── SCROLL TO TOP ───────────────────────────── */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(67, 104, 71, 0.22);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 22px rgba(32, 56, 40, 0.16);
    cursor: pointer;
    display: grid;
    place-items: center;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-top:hover {
    box-shadow: 0 12px 28px rgba(32, 56, 40, 0.22);
    transform: translateY(-2px);
}

.scroll-top svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-strong);
}

/* ── REVEAL ANIMATION ────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── KEYFRAMES ───────────────────────────────── */
@keyframes floatA {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(24px, 14px, 0);
    }
}

@keyframes floatB {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-20px, 10px, 0);
    }
}

@keyframes floatC {

    0%,
    100% {
        transform: translate3d(-50%, 0, 0);
    }

    50% {
        transform: translate3d(-48%, -16px, 0);
    }
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 960px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 64px 0 56px;
    }

    .hero-visual {
        min-height: 360px;
    }

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

    .media-card,
    .media-card-alt {
        grid-template-columns: 1fr;
    }

    .media-card img {
        max-height: 270px;
    }

    .statement-card {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .statement-main p {
        max-width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
        margin-bottom: 48px;
    }

    .stats-row {
        gap: 8px;
        padding: 22px 20px;
    }
}

@media (max-width: 760px) {
    .shell {
        width: min(calc(100% - 24px), var(--max-width));
    }

    .header-inner {
        width: min(calc(100% - 32px), var(--max-width));
        padding: 14px 0;
    }

    .menu-button {
        display: inline-block;
        z-index: 20;
    }

    .brand {
        gap: 10px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
    }

    .brand-text {
        font-size: 0.96rem;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        display: grid;
        gap: 6px;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 18px 36px rgba(29, 51, 36, 0.12);
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 200ms ease, transform 200ms ease;
        backdrop-filter: blur(16px);
    }

    .site-nav.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-link,
    .nav-cta {
        text-align: center;
        margin: 0;
        border-radius: 12px;
    }

    .nav-cta {
        margin-top: 4px;
    }

    .menu-button[aria-expanded="true"] span:first-child {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-button[aria-expanded="true"] span:last-child {
        transform: translateY(-7px) rotate(-45deg);
    }

    .display {
        max-width: 100%;
        font-size: clamp(2rem, 9.5vw, 3.1rem);
    }

    .lead {
        font-size: 0.97rem;
    }

    .hero-visual {
        min-height: 300px;
    }

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

    .statement-card {
        padding: 26px;
        border-radius: 26px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .stats-row {
        flex-direction: column;
        gap: 20px;
        padding: 24px 20px;
    }

    .stat-divider {
        width: 56px;
        height: 1px;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .scroll-top {
        transition: none;
    }
}