/* =========================================================
   NatureVR — Premium high-tech theme stylesheet
   ========================================================= */

:root {
    --bg-0: #f4faf7;
    --bg-1: #e9f2ec;
    --bg-2: #d9ebe1;
    --ink: #08231b;
    --ink-2: #11362b;
    --ink-soft: #3b5a51;
    --muted: #5a766c;
    --primary: #0e8b6b;
    --primary-2: #15b487;
    --primary-deep: #08533f;
    --accent: #f7c45a;
    --accent-2: #ff9e6b;
    --line: rgba(8, 35, 27, 0.12);
    --line-strong: rgba(8, 35, 27, 0.22);
    --surface: rgba(255, 255, 255, 0.78);
    --surface-glass: rgba(255, 255, 255, 0.6);
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 32px;
    --shadow-xs: 0 6px 16px rgba(8, 35, 27, 0.08);
    --shadow-sm: 0 14px 32px rgba(8, 35, 27, 0.1);
    --shadow-md: 0 26px 50px rgba(8, 35, 27, 0.16);
    --shadow-lg: 0 40px 90px rgba(8, 35, 27, 0.22);
    --grad-brand: linear-gradient(115deg, #0e8b6b 0%, #15b487 50%, #46d4a4 100%);
    --grad-warm: linear-gradient(120deg, #f7c45a 0%, #ff9e6b 100%);
    --grad-deep: linear-gradient(140deg, #082c22 0%, #0d4938 45%, #146b54 100%);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    position: relative;
    font-family: "Space Grotesk", sans-serif;
    color: var(--ink);
    line-height: 1.65;
    background: var(--bg-0);
}

/* Aurora background — soft organic light blobs, no grid */
.aurora {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    background: linear-gradient(180deg, #f7fbf9 0%, var(--bg-1) 55%, var(--bg-2) 100%);
}

.aurora::before,
.aurora::after,
.aurora-blob {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.85;
    will-change: transform;
}

.aurora::before {
    width: 60vw;
    height: 60vw;
    top: -22vw;
    left: -14vw;
    background: radial-gradient(circle at center, rgba(21, 180, 135, 0.45), transparent 62%);
    animation: float-a 22s ease-in-out infinite;
}

.aurora::after {
    width: 52vw;
    height: 52vw;
    top: -10vw;
    right: -16vw;
    background: radial-gradient(circle at center, rgba(247, 196, 90, 0.42), transparent 64%);
    animation: float-b 26s ease-in-out infinite;
}

.aurora-blob {
    width: 46vw;
    height: 46vw;
    bottom: -16vw;
    left: 30vw;
    background: radial-gradient(circle at center, rgba(70, 212, 164, 0.32), transparent 64%);
    animation: float-c 30s ease-in-out infinite;
}

@keyframes float-a {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(4vw, 3vw, 0) scale(1.05); }
}

@keyframes float-b {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-3vw, 4vw, 0) scale(1.07); }
}

@keyframes float-c {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-5vw, -2vw, 0) scale(1.08); }
}

/* Typography */
a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.24s ease;
}

a:hover { color: var(--primary-deep); }

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
}

h1, h2, h3, h4 {
    font-family: "Sora", sans-serif;
    line-height: 1.1;
    margin: 0 0 0.6em;
    letter-spacing: -0.03em;
    color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.6rem); }
h2 { font-size: clamp(1.55rem, 2.8vw, 2.7rem); }
h3 { font-size: clamp(1.1rem, 1.7vw, 1.45rem); }

p {
    margin: 0 0 1rem;
    color: var(--ink-2);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary-deep);
    margin-bottom: 1rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(21, 180, 135, 0.1);
    border: 1px solid rgba(21, 180, 135, 0.22);
}

.eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-2);
    box-shadow: 0 0 12px rgba(21, 180, 135, 0.7);
}

.gradient-text {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.section {
    position: relative;
    padding: clamp(64px, 10vw, 120px) 0;
}

.section-tight {
    padding: clamp(32px, 5vw, 56px) 0;
}

.section-head {
    margin-bottom: 2.4rem;
    max-width: 780px;
}

.section-head h2 { margin-bottom: 0.7rem; }

/* Header / nav */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px) saturate(140%);
    background: rgba(247, 251, 249, 0.78);
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 92px;
}

.brand {
    position: relative;
    display: inline-block;
}

.brand img {
    width: clamp(132px, 18vw, 196px);
    border-radius: 0;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.menu {
    list-style: none;
    display: flex;
    gap: 0.25rem;
    margin: 0;
    padding: 4px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--line);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.menu li { margin: 0; }

.menu a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.92rem;
    transition: background 0.24s ease, color 0.24s ease;
}

.menu a:hover,
.menu .current-menu-item > a,
.menu .current_page_item > a {
    background: var(--grad-brand);
    color: #fff;
    box-shadow: 0 6px 18px rgba(14, 139, 107, 0.3);
}

.header-lang {
    display: inline-flex;
    align-items: center;
    padding-left: 0.4rem;
    border-left: 1px solid var(--line);
    margin-left: 0.25rem;
}

.header-lang .nvr-lang-switcher {
    display: inline-flex;
    gap: 0.3rem;
    align-items: center;
    font-size: 0.84rem;
}

.header-lang .nvr-lang-switcher select {
    min-height: 34px;
    padding: 0.3rem 1.6rem 0.3rem 0.65rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    outline: none;
    cursor: pointer;
}

.header-lang .nvr-lang-switcher select:focus {
    border-color: rgba(14, 139, 107, 0.55);
    box-shadow: 0 0 0 3px rgba(14, 139, 107, 0.18);
}

/* Language item inside .menu pill */
.menu-item-lang {
    display: flex;
    align-items: center;
    padding: 0 0.3rem 0 0.55rem;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    margin-left: 0.2rem;
}

.menu-item-lang .nvr-lang-switcher select {
    min-height: 32px;
    padding: 0.25rem 1.4rem 0.25rem 0.6rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--ink);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    outline: none;
    cursor: pointer;
    appearance: auto;
}

.menu-item-lang .nvr-lang-switcher select:hover,
.menu-item-lang .nvr-lang-switcher select:focus {
    border-color: rgba(14, 139, 107, 0.4);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 0 3px rgba(14, 139, 107, 0.15);
}

.menu-item-lang .nvr-lang-switcher form { margin: 0; }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.85);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
    border-radius: 2px;
}

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Hero */
.hero {
    position: relative;
    padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 9vw, 110px);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2.6rem, 6vw, 5.1rem);
    line-height: 1.04;
}

.hero-copy h1 em,
h1 em, h2 em {
    font-style: normal;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy > p {
    font-size: clamp(1.02rem, 1.2vw, 1.15rem);
    max-width: 56ch;
    color: var(--ink-2);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.8rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    margin-top: 2.2rem;
    padding-top: 1.4rem;
    border-top: 1px dashed var(--line-strong);
}

.hero-meta div strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 1.5rem;
    color: var(--primary-deep);
    line-height: 1;
}

.hero-meta div span {
    font-size: 0.85rem;
    color: var(--muted);
}

.hero-media {
    position: relative;
    aspect-ratio: 4 / 5;
    max-height: 640px;
}

.hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: -22px;
    border-radius: calc(var(--radius-lg) + 22px);
    border: 1px solid rgba(21, 180, 135, 0.28);
    pointer-events: none;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: -42px;
    border-radius: calc(var(--radius-lg) + 42px);
    border: 1px dashed rgba(21, 180, 135, 0.22);
    pointer-events: none;
}

/* Floating glass cards on hero image */
.hero-chip {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius);
    padding: 0.85rem 1.05rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.86rem;
    color: var(--ink-2);
    max-width: 230px;
}

.hero-chip strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 1.05rem;
    color: var(--ink);
}

.hero-chip .dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--grad-brand);
    flex: none;
    box-shadow: 0 6px 14px rgba(14, 139, 107, 0.4);
}

.hero-chip.top-left {
    top: 7%;
    left: -10%;
    animation: floatY 6s ease-in-out infinite;
}

.hero-chip.bottom-right {
    bottom: 8%;
    right: -8%;
    animation: floatY 7s ease-in-out 1.2s infinite;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid transparent;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease;
    cursor: pointer;
}

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

.btn-primary {
    background: var(--grad-brand);
    color: #fff;
    box-shadow: 0 14px 30px rgba(14, 139, 107, 0.32);
}

.btn-primary:hover { box-shadow: 0 18px 36px rgba(14, 139, 107, 0.42); }

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--line-strong);
    color: var(--ink);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.55);
    border-color: var(--line);
    color: var(--ink);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--line-strong);
}

/* Trust strip */
.trust-strip {
    margin-top: clamp(36px, 6vw, 64px);
    padding: 1.1rem 1.4rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.6rem;
    box-shadow: var(--shadow-xs);
}

.trust-strip .label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--muted);
}

.trust-strip ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.4rem;
}

.trust-strip li {
    font-family: "Sora", sans-serif;
    font-weight: 600;
    color: var(--ink-2);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.2rem;
}

.trust-strip li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-2);
}

/* Stats panel */
.stats {
    padding-top: 0;
}

.stats-panel {
    position: relative;
    padding: clamp(1.4rem, 3vw, 2.4rem);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.stats-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 0%, rgba(21, 180, 135, 0.14), transparent 40%),
        radial-gradient(circle at 88% 100%, rgba(247, 196, 90, 0.18), transparent 45%);
    pointer-events: none;
}

.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
}

.stats-grid article {
    padding: 0.4rem 1rem;
    border-right: 1px solid var(--line);
}

.stats-grid article:last-child { border-right: none; }

.stats-grid strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.4rem, 2.4vw, 2.1rem);
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}

.stats-grid span {
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.4;
    display: block;
}

.stats-grid.compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Pillars */
.pillars .two-col {
    gap: clamp(1.2rem, 3vw, 2.4rem);
}

.pillar-card {
    position: relative;
    padding: clamp(1.6rem, 2.6vw, 2.4rem);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.pillar-card .pillar-num {
    font-family: "Sora", sans-serif;
    font-size: clamp(3rem, 6vw, 4.4rem);
    line-height: 1;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    letter-spacing: -0.04em;
    display: block;
    margin-bottom: 0.5rem;
}

.pillar-card.warm .pillar-num {
    background: var(--grad-warm);
    -webkit-background-clip: text;
    background-clip: text;
}

.pillar-card .tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.3rem 0.7rem;
    background: rgba(8, 35, 27, 0.06);
    border-radius: 999px;
    font-size: 0.82rem;
    color: var(--ink-soft);
    font-weight: 600;
}

/* Two-column generic */
.two-col,
.contact-grid,
.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.2rem, 3vw, 2.6rem);
    align-items: center;
}

/* Feature cards */
.features-grid,
.partner-grid,
.resource-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

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

.feature-card {
    position: relative;
    padding: 1.6rem 1.5rem 1.55rem;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xs);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    counter-increment: feature;
}

.features-grid { counter-reset: feature; }

.features-grid .feature-card::before {
    content: counter(feature, decimal-leading-zero);
    position: absolute;
    top: 1.1rem;
    right: 1.2rem;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    color: var(--primary-deep);
    opacity: 0.65;
}

.feature-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--grad-brand);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(21, 180, 135, 0.35);
}

.feature-card:hover::after { transform: scaleX(1); }

.feature-card h3 {
    margin-bottom: 0.5rem;
}

.feature-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

/* Partner cards */
.partner-card {
    padding-bottom: 1.4rem;
}

.partner-card h2 {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--accent-2);
    letter-spacing: -0.01em;
    margin-bottom: 0.25rem;
}

.partner-card .partner-meta {
    color: var(--muted);
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.partner-card a {
    display: inline-block;
    margin-top: 0.6rem;
    font-weight: 600;
    border-bottom: 1px solid currentColor;
}

/* Visual band */
.visual-band {
    padding-top: 0;
    padding-bottom: clamp(60px, 8vw, 110px);
}

.visual-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 1.2rem;
}

.visual-grid img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.visual-grid img:nth-child(2) {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
}

/* CTA strip */
.cta-strip {
    border-top: none;
    padding-bottom: clamp(80px, 10vw, 140px);
}

.cta-wrap {
    position: relative;
    overflow: hidden;
    background: var(--grad-deep);
    color: #fff;
    border-radius: clamp(24px, 3vw, 36px);
    padding: clamp(1.8rem, 4vw, 3.4rem);
    display: grid;
    grid-template-columns: 1.2fr auto;
    align-items: center;
    gap: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 40px 80px rgba(8, 35, 27, 0.4);
}

.cta-wrap::before {
    content: "";
    position: absolute;
    width: 60%;
    aspect-ratio: 1;
    right: -16%;
    top: -70%;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(247, 196, 90, 0.55), transparent 64%);
}

.cta-wrap::after {
    content: "";
    position: absolute;
    width: 40%;
    aspect-ratio: 1;
    left: -10%;
    bottom: -60%;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(70, 212, 164, 0.45), transparent 64%);
}

.cta-wrap > * { position: relative; z-index: 1; }

.cta-wrap h2 {
    color: #f8fffb;
    font-size: clamp(1.6rem, 2.6vw, 2.4rem);
}

.cta-wrap p {
    color: rgba(244, 255, 251, 0.84);
    margin: 0;
    max-width: 60ch;
}

.cta-wrap .btn-primary {
    background: #fff;
    color: var(--primary-deep);
    box-shadow: 0 18px 36px rgba(8, 35, 27, 0.32);
}

.cta-wrap .btn-primary:hover { box-shadow: 0 22px 42px rgba(8, 35, 27, 0.4); }

/* Quote */
.quote-block {
    position: relative;
}

.quote-block blockquote {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.4rem, 2.4vw, 2.1rem);
    line-height: 1.32;
    margin: 0;
    padding: 2rem 2.4rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line);
    border-left: 5px solid var(--accent);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    max-width: 920px;
    color: var(--ink);
}

/* Lists / split */
.split-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.split-list ul,
.result-list,
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.7rem;
}

.split-list li,
.result-list li,
.contact-list li {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    position: relative;
    padding-left: 2.2rem;
    color: var(--ink-2);
}

.split-list li::before,
.result-list li::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 1.15rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--grad-brand);
    box-shadow: 0 0 10px rgba(21, 180, 135, 0.5);
}

.contact-list li { padding-left: 1rem; }
.contact-list li::before { display: none; }

/* Chips (resource filters) */
.chips {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
}

.chips span {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.84);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.45rem 0.9rem;
    color: var(--ink-2);
    transition: background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
    cursor: default;
}

.chips span:hover {
    background: var(--grad-brand);
    color: #fff;
    border-color: transparent;
}

/* Inner page hero */
.inner-hero {
    padding-top: clamp(60px, 8vw, 100px);
    padding-bottom: clamp(40px, 6vw, 70px);
}

.inner-hero img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Page section (fallback) */
.page-section .prose {
    max-width: 78ch;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.4rem, 3vw, 2.4rem);
    box-shadow: var(--shadow-xs);
}

/* Footer */
.site-footer {
    margin-top: clamp(80px, 10vw, 130px);
    color: rgba(248, 252, 250, 0.85);
    background: var(--grad-deep);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 14% 0%, rgba(21, 180, 135, 0.32), transparent 50%),
        radial-gradient(circle at 90% 100%, rgba(247, 196, 90, 0.22), transparent 55%);
    pointer-events: none;
}

.site-footer > * { position: relative; }

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1.4fr 0.9fr 0.9fr;
    gap: 1.5rem;
    padding: clamp(2.4rem, 5vw, 4rem) 0 1.4rem;
}

.footer-grid p,
.footer-grid a {
    color: rgba(248, 252, 250, 0.78);
}

.footer-grid a:hover { color: #fff; }

.footer-title {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    color: rgba(248, 252, 250, 0.9);
    margin-bottom: 0.7rem;
}

.footer-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 1.1rem 0 1.6rem;
    font-size: 0.84rem;
    color: #ffffff !important;
}

.footer-meta p {
    color: #ffffff !important;
}

.footer-eu {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding: 1.6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    flex-wrap: wrap;
}

.footer-eu-logo {
    flex: 0 0 auto;
    width: 180px;
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.footer-eu-disclaimer {
    flex: 1 1 320px;
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(248, 252, 250, 0.72);
}

@media (max-width: 640px) {
    .footer-eu { justify-content: center; text-align: center; }
    .footer-eu-logo { width: 160px; }
}

/* Contact form */
.contact-form { display: grid; gap: 0.9rem; margin-top: 0.8rem; }
.contact-form label { display: grid; gap: 0.35rem; font-weight: 600; font-size: 0.92rem; color: #1f3a2c; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    font: inherit;
    padding: 0.65rem 0.8rem;
    border: 1px solid rgba(31, 58, 44, 0.18);
    border-radius: 10px;
    background: #fff;
    color: #1f3a2c;
}
.contact-form textarea { resize: vertical; }
.contact-form button { justify-self: start; }
.form-success { background: #e7f5ec; color: #1d5b34; padding: 0.8rem 1rem; border-radius: 10px; }
.form-error { background: #fde7e7; color: #842121; padding: 0.8rem 1rem; border-radius: 10px; }
.form-hint { font-size: 0.82rem; color: rgba(31, 58, 44, 0.65); margin-top: 0.6rem; }

/* EU acknowledgement (in-page) */
.eu-acknowledgement .eu-ack-wrap {
    display: flex; gap: 1.6rem; align-items: center; flex-wrap: wrap;
    padding: 1.6rem; border-radius: 18px;
    background: linear-gradient(135deg, #003399 0%, #1a3fa3 100%);
    color: #fff;
}
.eu-acknowledgement img { width: 200px; max-width: 100%; height: auto; border-radius: 0; box-shadow: none; background: transparent; }
.eu-acknowledgement p { flex: 1 1 320px; margin: 0; line-height: 1.55; font-size: 0.92rem; }

/* Legal pages (privacy/cookie/accessibility) */
.legal-page .legal-wrap { display: grid; gap: 1.2rem; max-width: 920px; margin: 0 auto; }
.legal-block h2 { margin: 0 0 0.6rem; font-size: 1.35rem; }
.legal-block h3 { margin: 1.2rem 0 0.4rem; font-size: 1.05rem; }
.legal-block ul { padding-left: 1.2rem; }
.legal-block li { margin-bottom: 0.35rem; line-height: 1.55; }
.legal-block p { line-height: 1.65; }
.cookie-table { width: 100%; border-collapse: collapse; margin: 0.6rem 0 1rem; font-size: 0.9rem; }
.cookie-table th,
.cookie-table td { padding: 0.55rem 0.7rem; border: 1px solid rgba(31, 58, 44, 0.12); text-align: left; vertical-align: top; }
.cookie-table thead th { background: #f1f6f2; }

/* Cookie banner */
.nvr-cookie-banner {
    position: fixed; left: 1rem; right: 1rem; bottom: 1rem;
    max-width: 720px; margin: 0 auto;
    background: #1f3a2c; color: #f8fcfa;
    padding: 1rem 1.2rem; border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    z-index: 9999;
    display: none;
    gap: 0.8rem; flex-wrap: wrap; align-items: center; justify-content: space-between;
    font-size: 0.9rem; line-height: 1.5;
}
.nvr-cookie-banner.is-visible { display: flex; }
.nvr-cookie-banner p { margin: 0; flex: 1 1 280px; color: #f8fcfa; }
.nvr-cookie-banner a { color: #cdeacc; text-decoration: underline; }
.nvr-cookie-banner .nvr-cookie-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.nvr-cookie-banner button {
    font: inherit; cursor: pointer;
    padding: 0.5rem 0.95rem; border-radius: 999px; border: 0;
    background: #cdeacc; color: #1f3a2c; font-weight: 600;
}
.nvr-cookie-banner button.secondary { background: transparent; color: #f8fcfa; border: 1px solid rgba(255,255,255,0.4); }

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    animation: revealUp 0.9s 0.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-delay {
    opacity: 0;
    transform: translateY(28px);
    animation: revealUp 0.9s 0.28s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

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

/* Responsive */
@media (max-width: 1100px) {
    .stats-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .stats-grid article {
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        padding: 1rem;
    }
    .stats-grid article:nth-child(3n) { border-right: none; }
    .stats-grid article:nth-last-child(-n+3) { border-bottom: none; }

    .features-grid,
    .partner-grid,
    .resource-grid,
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

    .hero-grid { grid-template-columns: 1fr; }
    .hero-media { max-height: 520px; aspect-ratio: 5 / 4; }
    .hero-chip.top-left { left: 4%; }
    .hero-chip.bottom-right { right: 4%; }
}

@media (max-width: 780px) {
    .menu-toggle { display: inline-block; }

    .main-nav {
        position: absolute;
        top: 92px;
        left: 0;
        right: 0;
        background: rgba(247, 252, 250, 0.98);
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        padding: 0.8rem 4vw;
        display: none;
        flex-direction: column;
    }

    .main-nav.is-open { display: block; }

    .menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0.3rem;
        background: transparent;
        border: 0;
        padding: 0;
    }

    .menu a { width: 100%; }

    .header-lang {
        width: 100%;
        order: 3;
        border-left: 0;
        border-top: 1px solid var(--line);
        padding-left: 0;
        padding-top: 0.5rem;
        margin-left: 0;
        margin-top: 0.25rem;
    }

    .menu-item-lang {
        border-left: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        padding: 0.4rem 0 0 0;
        margin-left: 0;
        margin-top: 0.2rem;
    }

    .menu-item-lang .nvr-lang-switcher select {
        width: 100%;
        max-width: 220px;
    }

    .header-lang .nvr-lang-switcher {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .header-lang .nvr-lang-switcher select {
        width: 100%;
        max-width: 220px;
    }

    .hero-grid,
    .two-col,
    .contact-grid,
    .visual-grid,
    .split-list,
    .stats-grid,
    .stats-grid.compact,
    .features-grid,
    .partner-grid,
    .resource-grid,
    .news-grid,
    .footer-grid,
    .cta-wrap {
        grid-template-columns: 1fr;
    }

    .stats-grid article {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }
    .stats-grid article:last-child { border-bottom: none; }

    .hero-chip { display: none; }

    .hero-media { aspect-ratio: 4 / 3; max-height: 380px; }

    .quote-block blockquote { padding: 1.4rem 1.4rem; }

    .section { padding: 64px 0; }
}

/* News card date */
.news-date {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
}

/* News card layout */
.news-card {
    display: flex;
    flex-direction: column;
    padding: 0; /* image goes edge-to-edge; body div holds padding */
}

/* Image container — aspect ratio enforced HERE, not on <img> */
.news-card-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    flex-shrink: 0;
    line-height: 0;
    background: var(--bg-2);
}

.news-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
    transition: transform 0.4s ease;
}

.news-card:hover .news-card-thumb img {
    transform: scale(1.04);
}

/* Card text body */
.news-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.3rem 1.4rem 1.4rem;
}

.news-card-body h2 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-body > p:not(.news-date) {
    flex: 1;
    font-size: 0.91rem;
    color: var(--ink-soft);
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-body .btn-ghost {
    align-self: flex-start;
    margin-top: 1.1rem;
    padding: 0.45rem 0.95rem;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Single post */
.single-post-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.single-post-thumb {
    margin-bottom: 2rem;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    background: var(--bg-2);
}

.single-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.single-post-header {
    margin-bottom: 1.6rem;
}

.single-post-content {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.4rem, 3vw, 2.4rem);
    box-shadow: var(--shadow-xs);
}

.single-post-content p,
.single-post-content li {
    line-height: 1.75;
    color: var(--ink-2);
}

.single-post-content h2,
.single-post-content h3 {
    margin-top: 1.8rem;
}

.single-post-content img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    margin: 1rem 0;
}

.single-post-back {
    margin-top: 2rem;
    font-weight: 600;
}

/* Footer social links */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: 0.1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(248, 252, 250, 0.78);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.24s ease, gap 0.24s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #fff;
    gap: 0.75rem;
}

.social-link svg {
    flex: none;
    opacity: 0.85;
}

.social-link:hover svg {
    opacity: 1;
}

