/* NORMEXA – Food Safety Consulting · Clean editorial */

:root {
    --navy: #1A2F4F;
    --navy-700: #142440;
    --navy-900: #0d1a30;
    --green: #5BA84A;
    --green-600: #4d9a3d;
    --green-50: #eef7eb;
    --white: #ffffff;
    --bg: #ffffff;
    --soft: #f7f8fa;
    --line: #e5e8ee;
    --line-strong: #d3d8e1;
    --text: #1f2937;
    --muted: #6b7280;
    --max: 1180px;
    --r-sm: 8px;
    --r: 12px;
    --r-lg: 18px;
    --shadow-xs: 0 1px 2px rgba(15, 23, 42, .04);
    --shadow-sm: 0 6px 18px rgba(15, 23, 42, .05);
    --shadow: 0 14px 36px rgba(15, 23, 42, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--navy); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--green-600); }
::selection { background: var(--green); color: #fff; }

h1, h2, h3, h4 {
    color: var(--navy);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 .55em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
@media (max-width: 480px) { .container { padding: 0 1rem; } }
.section { padding: 6rem 0; }
.section--tight { padding: 3.5rem 0; }
@media (max-width: 900px) { .section { padding: 4rem 0; } .section--tight { padding: 2.5rem 0; } }
@media (max-width: 480px) { .section { padding: 3rem 0; } .section--tight { padding: 2rem 0; } }

/* Generic two-column split (collapses on tablet) */
.split-2 {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}
.split-2--reverse { grid-template-columns: 1.4fr 1fr; }
.split-2--equal { grid-template-columns: 1fr 1fr; }
@media (max-width: 900px) {
    .split-2,
    .split-2--reverse,
    .split-2--equal { grid-template-columns: 1fr; gap: 2rem; }
}
.section--soft { background: var(--soft); }
.section--dark { background: var(--navy); color: rgba(255,255,255,.78); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 1rem;
}
.eyebrow::before {
    content: '';
    width: 24px; height: 1px;
    background: currentColor;
    opacity: .55;
}
.lead { font-size: 1.12rem; color: var(--muted); max-width: 680px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .8rem 1.35rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: .96rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
    line-height: 1.2;
    font-family: inherit;
    white-space: nowrap;
}
.btn.btn--primary,
a.btn--primary,
button.btn--primary { background: var(--navy); color: #fff; }
.btn.btn--primary:hover,
a.btn--primary:hover,
button.btn--primary:hover { background: var(--navy-900); color: #fff; }

.btn.btn--green,
a.btn--green,
button.btn--green { background: var(--green); color: #fff; }
.btn.btn--green:hover,
a.btn--green:hover,
button.btn--green:hover { background: var(--green-600); color: #fff; }

.btn.btn--outline,
a.btn--outline,
button.btn--outline { background: #fff; color: var(--navy); border-color: var(--line-strong); }
.btn.btn--outline:hover,
a.btn--outline:hover,
button.btn--outline:hover { border-color: var(--navy); color: var(--navy); }

.btn.btn--ghost,
a.btn--ghost,
button.btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }
.btn.btn--ghost:hover,
a.btn--ghost:hover,
button.btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn--lg { padding: .95rem 1.6rem; font-size: 1rem; }
.btn-arrow { display: inline-block; transition: transform .15s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color .15s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 0;
    gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: .65rem; font-weight: 600; color: var(--navy); }
.brand__mark {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--navy);
    color: var(--green);
    display: grid; place-items: center;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: -.02em;
}
.brand__name { font-size: 1rem; font-weight: 700; line-height: 1; letter-spacing: -.005em; }
.brand__sub { font-size: .68rem; font-weight: 500; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a:not(.btn) { color: var(--text); font-weight: 500; font-size: .95rem; }
.nav a:not(.btn).active { color: var(--navy); }
.nav a:not(.btn):hover { color: var(--green-600); }
.lang-switch {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 3px;
    gap: 2px;
    background: var(--soft);
    margin-left: .5rem;
}
.nav .lang-switch__btn,
.lang-switch .lang-switch__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 28px;
    padding: 0 .55rem;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--muted);
    transition: background .15s ease, color .15s ease;
}
.nav .lang-switch__btn:hover,
.lang-switch .lang-switch__btn:hover { color: var(--navy); background: rgba(15,23,42,.04); }
.nav .lang-switch__btn.is-active,
.lang-switch .lang-switch__btn.is-active { background: var(--navy); color: #fff; }
.nav .lang-switch__btn.is-active:hover,
.lang-switch .lang-switch__btn.is-active:hover { color: #fff; background: var(--navy-900); }
@media (max-width: 960px) {
    .lang-switch { margin: .65rem 1.5rem; align-self: flex-start; }
}

.btn.nav__cta,
a.nav__cta {
    margin-left: .25rem;
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}
.btn.nav__cta:hover,
a.nav__cta:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    width: 40px; height: 40px;
    cursor: pointer;
    color: var(--navy);
    border-radius: 8px;
}
.nav-toggle:hover { background: var(--soft); }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    content: ''; display: block;
    width: 22px; height: 2px;
    background: currentColor;
    position: relative;
}
.nav-toggle span::before { top: -7px; position: absolute; }
.nav-toggle span::after { top: 7px; position: absolute; }

@media (max-width: 960px) {
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .nav {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: .5rem 0;
    }
    .nav a:not(.btn) { padding: .9rem 1.5rem; border-bottom: 1px solid var(--soft); }
    .nav__cta { margin: .75rem 1.5rem; }
    .site-header.is-open .nav { display: flex; }
}

/* Hero */
.hero {
    background: var(--bg);
    padding: 5rem 0 4rem;
    border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .hero { padding: 3rem 0 2.5rem; } }
@media (max-width: 480px) { .hero { padding: 2rem 0 2rem; } }
.hero__inner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--navy);
    background: var(--green-50);
    border: 1px solid rgba(91,168,74,.25);
    padding: .35rem .8rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}
.hero__tag::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--green);
}
.hero h1 { margin-bottom: 1rem; }
.hero h1 .accent { color: var(--green-600); }
.hero p { color: var(--muted); font-size: 1.12rem; max-width: 56ch; }
.hero__cta { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 2rem; }

/* Hero info card (replaces image) */
.hero__panel {
    position: relative;
    background: var(--navy);
    color: rgba(255,255,255,.85);
    border-radius: var(--r-lg);
    padding: 2.25rem;
    overflow: hidden;
    isolation: isolate;
}
@media (max-width: 480px) { .hero__panel { padding: 1.5rem; } }
.hero__panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: radial-gradient(380px 240px at 80% 0%, #000 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(380px 240px at 80% 0%, #000 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.hero__panel::after {
    content: '';
    position: absolute;
    width: 220px; height: 220px;
    top: -90px; right: -70px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(91,168,74,.3), transparent 70%);
    z-index: 0;
}
.hero__panel > * { position: relative; z-index: 1; }
.hero__panel-eyebrow {
    color: rgba(255,255,255,.55);
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.1rem;
    display: block;
}
.hero__panel-title {
    color: #fff;
    font-size: 1.45rem;
    line-height: 1.2;
    margin: 0 0 .55rem;
    letter-spacing: -.02em;
    font-weight: 600;
}
.hero__panel-lede {
    color: rgba(255,255,255,.7);
    font-size: .96rem;
    margin: 0 0 1.5rem;
    line-height: 1.55;
}
.hero__panel-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
    margin-bottom: 1.4rem;
}
.hero__panel-stat .num {
    display: block;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1;
    margin-bottom: .3rem;
}
.hero__panel-stat .label {
    color: rgba(255,255,255,.6);
    font-size: .82rem;
    letter-spacing: .04em;
}
.hero__panel-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .55rem;
}
.hero__panel-list li {
    display: flex; align-items: center; gap: .65rem;
    color: rgba(255,255,255,.85);
    font-size: .94rem;
}
.hero__panel-list li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(91,168,74,.18);
    flex: none;
}

@media (max-width: 900px) {
    .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Standards row (static, no animation) */
.standards {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 1.75rem 0;
    background: var(--bg);
}
.standards__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 3rem;
}
.standards__label {
    color: var(--muted);
    font-size: .78rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 600;
}
.standards span:not(.standards__label) {
    font-weight: 600;
    color: var(--navy);
    letter-spacing: .02em;
    font-size: 1.02rem;
}
@media (max-width: 600px) {
    .standards__inner { gap: .75rem 1.5rem; }
}

/* Stats row */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.stat {
    padding: 2.25rem 1.5rem;
    border-right: 1px solid var(--line);
    text-align: left;
}
.stat:last-child { border-right: 0; }
.stat__num {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -.03em;
    margin-bottom: .35rem;
}
.stat__label { color: var(--muted); font-size: .92rem; }
@media (max-width: 800px) {
    .stats { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2n) { border-right: 0; }
    .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* Grid + cards */
.grid { display: grid; gap: 1.25rem; }
.grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (max-width: 1000px) { .grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 900px) { .grid--3 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px) { .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; } }

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 1.75rem;
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
    display: flex;
    flex-direction: column;
}
@media (max-width: 480px) { .card { padding: 1.25rem; } }
.card:hover { border-color: var(--line-strong); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.card__icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: grid; place-items: center;
    background: var(--green-50);
    color: var(--green-600);
    margin-bottom: 1.1rem;
}
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); margin-bottom: 1rem; font-size: .96rem; }
.card__cta {
    margin-top: auto;
    color: var(--navy);
    font-weight: 500;
    font-size: .92rem;
    display: inline-flex; align-items: center; gap: .35rem;
    border-bottom: 1px solid transparent;
    align-self: flex-start;
}
.card__cta::after { content: '→'; transition: transform .15s ease; }
.card:hover .card__cta { color: var(--green-600); }
.card:hover .card__cta::after { transform: translateX(3px); }

/* Industry card */
.industry-card { padding: 1.5rem; }
.industry-card__icon {
    width: 40px; height: 40px;
    background: var(--soft);
    color: var(--navy);
    border-radius: 8px;
    display: grid; place-items: center;
    margin-bottom: .85rem;
}
.industry-card h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.industry-card p { font-size: .92rem; color: var(--muted); margin: 0; }

/* Why list — numbered */
.why-list { display: grid; gap: 0; counter-reset: why; }
.why-list li {
    list-style: none;
    counter-increment: why;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    align-items: baseline;
}
.why-list li:last-child { border-bottom: 0; }
.why-list li::before {
    content: counter(why, decimal-leading-zero);
    font-size: .82rem;
    font-weight: 600;
    color: var(--green-600);
    letter-spacing: .12em;
}
.why-list strong { color: var(--navy); display: block; margin-bottom: .25rem; font-weight: 600; font-size: 1.05rem; }
.why-list span { color: var(--muted); font-size: .96rem; }

/* Founder */
.founder {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
}
.founder__card {
    position: relative;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    overflow: hidden;
}
.founder__card::before {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    top: -120px; right: -100px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(91,168,74,.18), transparent 70%);
    pointer-events: none;
}
.founder__monogram {
    position: relative;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: grid; place-items: center;
    margin: 0 auto 1.25rem;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: -.02em;
    box-shadow: 0 0 0 6px #fff, 0 0 0 7px var(--line);
}
.founder__monogram img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    border-radius: 50%;
    display: block;
}
.founder__monogram::after {
    z-index: 2;
}
.founder__monogram::after {
    content: '';
    position: absolute;
    bottom: -2px; right: 6px;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--green);
    border: 4px solid #fff;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 12 10 18 20 6'/></svg>");
    background-size: 60% 60%;
    background-position: center;
    background-repeat: no-repeat;
}
.founder__card-name {
    position: relative;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 .25rem;
    letter-spacing: -.01em;
}
.founder__card-role {
    position: relative;
    font-size: .9rem;
    color: var(--muted);
    margin: 0 0 1.25rem;
}
.founder__card-list {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 1.25rem 0 0;
    border-top: 1px solid var(--line);
    display: grid;
    gap: .55rem;
    text-align: left;
}
.founder__card-list li {
    display: flex; align-items: center; gap: .65rem;
    color: var(--text);
    font-size: .92rem;
}
.founder__card-list li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    flex: none;
}

.founder__credentials {
    display: flex; flex-wrap: wrap; gap: .4rem;
    margin: 1.25rem 0 1.5rem;
}
.founder__credentials span {
    background: var(--soft);
    color: var(--navy);
    padding: .35rem .75rem;
    border-radius: 6px;
    font-size: .82rem;
    font-weight: 500;
    border: 1px solid var(--line);
}
@media (max-width: 800px) { .founder { grid-template-columns: 1fr; gap: 2rem; } }

/* Page hero (interior) */
.page-hero {
    background: var(--bg);
    padding: 4rem 0 2.5rem;
    border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .page-hero { padding: 2.5rem 0 1.75rem; } }
@media (max-width: 480px) { .page-hero { padding: 1.75rem 0 1.25rem; } }
.page-hero h1 { margin-bottom: .65rem; }
.page-hero p { color: var(--muted); max-width: 680px; font-size: 1.1rem; }
.breadcrumbs {
    color: var(--muted);
    font-size: .85rem;
    margin-bottom: 1.25rem;
}
.breadcrumbs a { color: var(--text); }
.breadcrumbs a:hover { color: var(--green-600); }
.breadcrumbs span { margin: 0 .4rem; opacity: .5; }

/* Content prose */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 1.8rem; color: var(--navy); }
.prose ul { padding-left: 1.2rem; }
.prose ul li { margin-bottom: .35rem; }
.prose ul.checks { list-style: none; padding-left: 0; }
.prose ul.checks li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: .55rem;
}
.prose ul.checks li::before {
    content: '';
    position: absolute; left: 0; top: .55em;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
}

/* Cookie table */
.cookie-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1rem 0 1.75rem; }
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .92rem;
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    min-width: 560px;
}
.cookie-table th, .cookie-table td {
    padding: .75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}
.cookie-table thead th {
    background: var(--soft);
    color: var(--navy);
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.cookie-table tbody tr:last-child td { border-bottom: 0; }
.cookie-table code {
    background: var(--soft);
    padding: .15rem .4rem;
    border-radius: 4px;
    font-size: .88em;
    color: var(--navy);
}

/* Service / training detail layout */
.detail-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 320px;
    gap: 3.5rem;
    align-items: start;
}
@media (max-width: 980px) { .detail-layout { grid-template-columns: 1fr; } }
.aside-card {
    position: sticky; top: 90px;
    background: var(--soft);
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 1.75rem;
}
@media (max-width: 980px) { .aside-card { position: static; top: auto; } }
@media (max-width: 480px) { .aside-card { padding: 1.25rem; } }
.aside-card h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: .85rem; }
.aside-card .meta { font-size: .92rem; color: var(--muted); }
.aside-card .meta strong { color: var(--navy); display: block; margin-top: .9rem; font-weight: 600; }
.aside-card .meta a { color: var(--navy); }
.aside-card .btn { margin-top: 1.4rem; width: 100%; justify-content: center; }

/* Forms */
.form { display: grid; gap: 1.1rem; }
.form-row { display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field label {
    display: block; font-weight: 500; margin-bottom: .35rem; color: var(--navy);
    font-size: .92rem;
}
.field input, .field select, .field textarea {
    width: 100%;
    padding: .8rem .95rem;
    border-radius: 8px;
    border: 1px solid var(--line-strong);
    background: #fff;
    font: inherit;
    color: var(--text);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: 0;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(91,168,74,.15);
}
.field--check { display: flex; gap: .65rem; align-items: flex-start; }
.field--check input { width: 18px; height: 18px; margin-top: 3px; flex: none; }
.field--check label { font-weight: 400; color: var(--muted); font-size: .9rem; margin: 0; }
.honeypot { position: absolute; left: -9999px; }

.alert {
    padding: 1rem 1.2rem;
    border-radius: 8px;
    background: var(--green-50);
    border: 1px solid rgba(91,168,74,.3);
    color: var(--navy-900);
    margin-bottom: 1.5rem;
}
.alert--error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

/* Footer */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,.7);
    padding: 4rem 0 2rem;
}
@media (max-width: 900px) { .site-footer { padding: 3rem 0 1.75rem; } }
@media (max-width: 480px) { .site-footer { padding: 2.25rem 0 1.25rem; } }
.site-footer h4 {
    color: #fff;
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}
.site-footer a { color: rgba(255,255,255,.7); }
.site-footer a:hover { color: var(--green); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer-brand p { font-size: .92rem; line-height: 1.55; margin-top: .85rem; }
.footer-bottom {
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    font-size: .85rem;
    color: rgba(255,255,255,.5);
}
.footer-bottom nav { display: flex; gap: 1.25rem; }

/* Cookie consent */
.cc[hidden] { display: none !important; }
.cc__banner {
    position: fixed;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    max-width: 980px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 1.5rem 1.75rem;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: center;
    z-index: 100;
    animation: cc-slide .25s ease;
}
@keyframes cc-slide { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cc__banner-text h3 {
    font-size: 1.05rem;
    margin: 0 0 .35rem;
    color: var(--navy);
}
.cc__banner-text p {
    margin: 0;
    font-size: .92rem;
    color: var(--muted);
    line-height: 1.55;
}
.cc__banner-text a { color: var(--navy); text-decoration: underline; }
.cc__banner-text a:hover { color: var(--green-600); }
.cc__banner-actions {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}
.cc__banner-actions .btn { padding: .7rem 1.1rem; font-size: .9rem; }
@media (max-width: 800px) {
    .cc__banner { grid-template-columns: 1fr; padding: 1.25rem; }
    .cc__banner-actions { width: 100%; }
    .cc__banner-actions .btn { flex: 1 1 calc(50% - .25rem); justify-content: center; }
}

/* Modal */
.cc__overlay {
    position: fixed; inset: 0;
    background: rgba(15, 23, 42, .55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 200;
    display: none;
    animation: cc-fade .2s ease;
}
@keyframes cc-fade { from { opacity: 0; } to { opacity: 1; } }
.cc__modal {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: min(640px, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    background: #fff;
    border-radius: var(--r-lg);
    box-shadow: 0 30px 80px rgba(15, 23, 42, .25);
    z-index: 201;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: cc-pop .25s ease;
}
@keyframes cc-pop { from { transform: translate(-50%, -48%); opacity: 0; } to { transform: translate(-50%, -50%); opacity: 1; } }
.cc.is-modal-open .cc__overlay,
.cc.is-modal-open .cc__modal { display: flex; }
.cc.is-modal-open .cc__banner { display: none; }
.cc.is-hidden .cc__banner { display: none; }

.cc__modal-head {
    padding: 1.4rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
}
.cc__modal-head h3 { margin: 0; font-size: 1.15rem; color: var(--navy); }
.cc__close {
    background: transparent;
    border: 0;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--muted);
    cursor: pointer;
    padding: .35rem .55rem;
    border-radius: 6px;
}
.cc__close:hover { background: var(--soft); color: var(--navy); }

.cc__modal-body {
    padding: 1.4rem 1.75rem;
    overflow: auto;
    flex: 1 1 auto;
}
.cc__modal-body > p:first-child {
    color: var(--muted);
    font-size: .94rem;
    margin: 0 0 1.25rem;
}

.cc__list {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: grid;
    gap: .75rem;
}
.cc__cat {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 1rem 1.2rem;
}
.cc__cat-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
}
.cc__cat strong {
    display: block;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: .25rem;
    font-size: .98rem;
}
.cc__cat span {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.5;
}

/* Toggle switch */
.cc__toggle {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    cursor: pointer;
    user-select: none;
}
.cc__toggle input { position: absolute; opacity: 0; pointer-events: none; }
.cc__track {
    position: relative;
    width: 44px;
    height: 24px;
    background: #d3d8e1;
    border-radius: 999px;
    transition: background .15s ease;
    flex: none;
}
.cc__thumb {
    position: absolute;
    top: 3px; left: 3px;
    width: 18px; height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform .18s ease;
    box-shadow: 0 1px 3px rgba(15, 23, 42, .25);
}
.cc__toggle input:checked + .cc__track { background: var(--green); }
.cc__toggle input:checked + .cc__track .cc__thumb { transform: translateX(20px); }
.cc__toggle input:focus-visible + .cc__track { box-shadow: 0 0 0 3px rgba(91,168,74,.25); }
.cc__toggle em {
    font-style: normal;
    font-size: .78rem;
    color: var(--muted);
    letter-spacing: .04em;
    text-transform: uppercase;
    font-weight: 600;
}
.cc__toggle--locked { cursor: not-allowed; opacity: .85; }

.cc__legal {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
    padding: .85rem 1rem;
    background: var(--soft);
    border-left: 3px solid var(--green);
    border-radius: 6px;
}

.cc__modal-foot {
    padding: 1rem 1.75rem;
    border-top: 1px solid var(--line);
    display: flex;
    gap: .55rem;
    justify-content: flex-end;
    flex-wrap: wrap;
    background: #fff;
}
@media (max-width: 540px) {
    .cc__modal-head, .cc__modal-body, .cc__modal-foot { padding-left: 1.25rem; padding-right: 1.25rem; }
    .cc__modal-foot { justify-content: stretch; }
    .cc__modal-foot .btn { flex: 1 1 100%; justify-content: center; }
    .cc__cat-row { grid-template-columns: 1fr; }
}

/* CTA strip */
.cta-strip {
    background: var(--navy);
    color: #fff;
    padding: 4.5rem 0;
    text-align: center;
}
@media (max-width: 900px) { .cta-strip { padding: 3rem 0; } }
@media (max-width: 480px) { .cta-strip { padding: 2.25rem 0; } }
.cta-strip h2 { color: #fff; margin-bottom: .85rem; }
.cta-strip p { color: rgba(255,255,255,.78); max-width: 600px; margin: 0 auto 2rem; }
.cta-strip .btn--green { background: var(--green); }
.cta-strip .btn--green:hover { background: var(--green-600); }

/* Tagline strip */
.tagline-banner {
    background: var(--green-50);
    color: var(--navy);
    padding: 1rem 0;
    text-align: center;
    font-weight: 500;
    font-size: .98rem;
    border-top: 1px solid rgba(91,168,74,.18);
    border-bottom: 1px solid rgba(91,168,74,.18);
}

/* SEO footer block */
.seo-block {
    background: var(--soft);
    padding: 3rem 0;
    color: var(--muted);
    font-size: .94rem;
    border-top: 1px solid var(--line);
}
.seo-block p:last-child { margin: 0; }

/* Section head */
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.section-head__intro { max-width: 620px; }
@media (max-width: 640px) { .section-head { margin-bottom: 2rem; } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .07s; }
.reveal[data-delay="2"] { transition-delay: .14s; }
.reveal[data-delay="3"] { transition-delay: .21s; }
.reveal[data-delay="4"] { transition-delay: .28s; }

/* Legislation block */
.legislation-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}
@media (max-width: 720px) { .legislation-grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.legislation-block {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 1.5rem;
}
.legislation-block h3 {
    font-size: 1rem;
    color: var(--navy);
    margin: 0 0 1rem;
    padding-bottom: .65rem;
    border-bottom: 1px solid var(--line);
}
.legislation-list { display: grid; gap: .55rem; }
.legislation-list li {
    color: var(--text);
    font-size: .92rem;
    line-height: 1.5;
    padding-left: 1rem;
    position: relative;
}
.legislation-list li::before {
    content: '';
    position: absolute; left: 0; top: .65em;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--green);
}
.legislation-note {
    margin-top: 2rem;
    color: var(--muted);
    font-size: .88rem;
    font-style: italic;
}
.legislation-source {
    color: var(--muted);
    font-size: .85rem;
    margin: .25rem 0 0;
}
.legislation-source a { color: var(--navy); text-decoration: underline; }
.legislation-source a:hover { color: var(--green-600); }

/* Misc */
.text-center { text-align: center; }
.center-narrow { max-width: 720px; margin: 0 auto; text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.list-plain { list-style: none; padding: 0; margin: 0; }

/* Print */
@media print {
    .site-header, .site-footer, .cookie-banner, .cta-strip, .tagline-banner { display: none; }
}
