/* ============================================================
   Nordic Calm - Agnieszka Kaszuba
   Header / Footer / Strona glowna
   Paleta: #F8F6F2 tlo | #4F6B5A zielen | #A8B8A5 szalwia
           #DCCDB8 bez | #3F3B37 tekst | #B66A3C akcent CTA
   ============================================================ */

:root {
    --agk-bg:        #F8F6F2;
    --agk-green:     #4F6B5A;
    --agk-green-dk:  #3E5648;
    --agk-sage:      #A8B8A5;
    --agk-sage-soft: #EBEFE9;
    --agk-sand:      #DCCDB8;
    --agk-sand-soft: #F0E9DE;
    --agk-text:      #3F3B37;
    --agk-muted:     #6E685F;
    --agk-accent:    #B66A3C;
    --agk-accent-dk: #9C572E;
    --agk-line:      #E4DED4;
    --agk-shadow:    0 18px 40px -24px rgba(63, 59, 55, .35);
    --agk-radius:    14px;
    --agk-maxw:      1300px;
}

/* ---------- Reset / baza ---------- */
.agk *, .agk *::before, .agk *::after { box-sizing: border-box; }

body.agk-home {
    margin: 0;
    background: var(--agk-bg);
    color: var(--agk-text);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 400;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    font-size: 17px;
}

/* Sticky footer - stopka zawsze przyklejona do dolu (na kazdej stronie) */
body.agk {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
body.agk .agk-footer { margin-top: auto; }

.agk h1, .agk h2, .agk h3, .agk-brand {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -.01em;
    color: var(--agk-text);
    margin: 0;
}

.agk p { margin: 0 0 1.1em; }
/* .agk a (0,1,1) wygrywa z globalnym a{} motywu/kai (kolor Agnieszki, nie rozowy) */
.agk a { color: var(--agk-accent); text-decoration: none; transition: color .2s; }
.agk a:hover { color: var(--agk-accent-dk); }
.agk img { max-width: 100%; height: auto; display: block; }

.agk-container {
    width: 100%;
    max-width: var(--agk-maxw);
    margin-inline: auto;
    padding-inline: 24px;
}

/* ---------- Przyciski ---------- */
.agk-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--agk-accent);
    color: #fff;
    border: 1px solid var(--agk-accent);
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .01em;
    cursor: pointer;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 10px 22px -14px rgba(182, 106, 60, .8);
}
.agk-btn:hover { background: var(--agk-accent-dk); color: #fff; transform: translateY(-2px); }
.agk-btn-ghost {
    background: transparent;
    color: var(--agk-green);
    border-color: var(--agk-sage);
    box-shadow: none;
}
.agk-btn-ghost:hover { background: var(--agk-sage-soft); color: var(--agk-green-dk); }

/* przyciski-linki musza wygrac z .agk a (0,1,1) -> wyzsza specyficznosc (0,2,x) */
.agk a.agk-btn, .agk a.agk-btn:hover { color: #fff; }
.agk a.agk-btn-ghost { color: var(--agk-green); }
.agk a.agk-btn-ghost:hover { color: var(--agk-green-dk); }

.agk-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 15px;
    color: var(--agk-accent);
}
.agk-link-arrow span { transition: transform .2s; }
.agk-link-arrow:hover span { transform: translateX(4px); }

/* ============================================================
   HEADER
   ============================================================ */
.agk-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248, 246, 242, .88);
    backdrop-filter: saturate(1.2) blur(10px);
    -webkit-backdrop-filter: saturate(1.2) blur(10px);
    border-bottom: 1px solid var(--agk-line);
}
.agk-header__inner {
    max-width: 1600px;
    margin-inline: auto;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.agk-brand {
    font-size: 23px;
    color: var(--agk-green);
    white-space: nowrap;
    line-height: 1;
}
.agk-brand a { color: inherit; }
.agk-brand a:hover { color: var(--agk-green-dk); }
.agk-brand small {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--agk-muted);
    margin-top: 4px;
}

.agk-nav { display: flex; align-items: center; gap: 30px; }
.agk-nav ul { list-style: none; display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; }
.agk-nav li { position: relative; }
.agk-nav a {
    color: var(--agk-text);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.agk-nav a:hover, .agk-nav .current-menu-item > a { color: var(--agk-accent); }
.agk-nav .menu-item-has-children > a::after {
    content: "";
    width: 6px; height: 6px;
    border-right: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .2s;
}
/* Podmenu */
.agk-nav .sub-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 190px;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border: 1px solid var(--agk-line);
    border-radius: 12px;
    box-shadow: var(--agk-shadow);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, transform .2s;
}
.agk-nav .menu-item-has-children:hover .sub-menu {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
/* Niewidzialny "mostek" wypelniajacy przerwe - kursor nie gubi hover w drodze do podmenu */
.agk-nav .sub-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 14px;
}
.agk-nav .sub-menu li { width: 100%; }
.agk-nav .sub-menu a { display: block; padding: 9px 14px; border-radius: 8px; width: 100%; }
.agk-nav .sub-menu a:hover { background: var(--agk-sage-soft); color: var(--agk-green-dk); }

.agk-header__cta { display: flex; align-items: center; gap: 14px; }
.agk-header__cta .agk-btn { padding: 11px 22px; }

/* Koszyk w naglowku */
.agk-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    color: var(--agk-green);
    border: 1px solid var(--agk-line);
    border-radius: 10px;
    transition: color .2s, border-color .2s, background .2s;
    flex-shrink: 0;
}
.agk-cart:hover { color: var(--agk-accent); border-color: var(--agk-accent); background: var(--agk-sand-soft); }
.agk-cart svg { width: 20px; height: 20px; }
.agk-cart__n {
    position: absolute;
    top: -7px; right: -7px;
    min-width: 20px; height: 20px;
    padding: 0 5px;
    display: none;
    align-items: center; justify-content: center;
    background: var(--agk-accent);
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 11px; font-weight: 600; line-height: 1;
    border-radius: 99px;
}
.agk-cart__n.is-on { display: inline-flex; }

/* ── Formularz newslettera: zgody ────────────────────────────
   Formularz stoi na ciemnym (zielonym) tle - stad jasne teksty. */
.agk-nl-top { display: flex; gap: 10px; }
.agk-nl-top input[type="email"] { flex: 1; min-width: 0; }
.agk-nl-check {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 14px;
    cursor: pointer;
    text-align: left;
}
.agk-nl-check input[type="checkbox"] {
    width: 17px; height: 17px;
    margin: 2px 0 0;
    flex-shrink: 0;
    accent-color: var(--agk-accent);
    cursor: pointer;
}
.agk-nl-check span {
    font-family: "Inter", sans-serif;
    font-size: 12.5px;
    line-height: 1.55;
    color: rgba(242, 237, 227, .72);
}
.agk-nl-check a { color: rgba(242, 237, 227, .95); text-decoration: underline; }
.agk-nl-check a:hover { color: #fff; }
.agk-nl-check .agk-req { font-style: normal; color: var(--agk-accent); font-weight: 600; }
/* wariant na jasnym tle */
.agk-nl-light .agk-nl-check span { color: var(--agk-muted); }
.agk-nl-light .agk-nl-check a { color: var(--agk-accent-dk); }

@media (max-width: 600px) {
    .agk-nl-top { flex-direction: column; }
    .agk-nl-top button { width: 100%; }
}

/* ── Przyciski Tutor LMS ─────────────────────────────────────
   Globalne `.agk a { color: akcent }` (0,1,1) wygrywa z `.tutor-btn-primary` (0,1,0),
   przez co tekst na wypelnionym przycisku stawal sie miedziany na miedzianym tle.
   Wymuszamy czytelny kolor tylko dla wariantow z wypelnieniem. */
.agk a.tutor-btn-primary,
.agk a.tutor-btn-primary:hover,
.agk a.tutor-btn-primary:focus,
.agk .tutor-btn-primary,
.agk .tutor-btn-primary:hover,
.agk a.tutor-btn-secondary,
.agk a.tutor-btn-secondary:hover {
    color: #fff !important;
}
.agk a.tutor-btn-primary *,
.agk .tutor-btn-primary * { color: inherit !important; }

/* Ikony social w naglowku */
.agk-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    color: var(--agk-green);
    border: 1px solid var(--agk-line);
    border-radius: 10px;
    transition: color .2s, border-color .2s, background .2s;
    flex-shrink: 0;
}
.agk-social:hover { color: var(--agk-accent); border-color: var(--agk-accent); background: var(--agk-sand-soft); }
.agk-social svg { width: 19px; height: 19px; }

/* Hamburger - wypelniony miedziany kwadrat (wzor Pauliny) */
.agk-burger {
    display: none;
    -webkit-appearance: none; appearance: none;
    -webkit-tap-highlight-color: transparent;
    width: 46px; height: 46px;
    flex: 0 0 46px;
    border: none;
    border-radius: 12px;
    background: var(--agk-accent) !important;
    cursor: pointer;
    padding: 0;
    position: relative;
    transition: background .2s;
}
@media (hover: hover) { .agk-burger:hover { background: var(--agk-accent-d) !important; } }
.agk-burger:focus { outline: none; }
.agk-burger:focus-visible { outline: 2px solid var(--agk-green); outline-offset: 2px; }
.agk-burger span, .agk-burger span::before, .agk-burger span::after {
    content: "";
    position: absolute;
    left: 13px;
    width: 20px; height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform .28s, opacity .2s;
}
.agk-burger span { top: 22px; }
.agk-burger span::before { top: -6px; }
.agk-burger span::after  { top: 6px; }
body.agk-nav-open .agk-burger span { background: transparent; }
body.agk-nav-open .agk-burger span::before { transform: translateY(6px) rotate(45deg); }
body.agk-nav-open .agk-burger span::after  { transform: translateY(-6px) rotate(-45deg); }

/* Przycisk Kontakt w drawerze - ukryty na desktopie */
.agk-nav__cta { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.agk-hero {
    position: relative;
    padding: 84px 0 92px;
    background:
        radial-gradient(1100px 520px at 78% -10%, var(--agk-sage-soft) 0%, rgba(235,239,233,0) 60%),
        radial-gradient(900px 480px at 8% 120%, var(--agk-sand-soft) 0%, rgba(240,233,222,0) 55%),
        var(--agk-bg);
    overflow: hidden;
}
.agk-hero__inner { max-width: 860px; }
.agk-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--agk-green);
    margin-bottom: 22px;
    padding: 6px 14px;
    border: 1px solid var(--agk-sage);
    border-radius: 99px;
    background: rgba(255,255,255,.5);
}
.agk-hero h1 {
    font-size: clamp(34px, 5vw, 56px);
    margin-bottom: 26px;
}
.agk-hero__lead {
    font-size: clamp(17px, 1.6vw, 20px);
    color: var(--agk-muted);
    max-width: 660px;
    margin-bottom: 36px;
}

/* ============================================================
   SEKCJE - wspolne
   ============================================================ */
.agk-section { padding: 92px 0; }
.agk-section--sage { background: var(--agk-sage-soft); }
.agk-section__head { max-width: 720px; margin-bottom: 52px; }
.agk-section__head.is-center { margin-inline: auto; text-align: center; }
.agk-kicker {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--agk-accent);
    margin-bottom: 14px;
}
.agk-section h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 18px; }
.agk-section__intro { font-size: 18px; color: var(--agk-muted); }

/* ---------- Trzy sciezki ---------- */
.agk-paths {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.agk-path {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--agk-line);
    border-radius: var(--agk-radius);
    padding: 38px 32px 34px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.agk-path:hover { transform: translateY(-6px); box-shadow: var(--agk-shadow); border-color: var(--agk-sage); }
.agk-path__icon {
    width: 58px; height: 58px;
    display: flex; align-items: center; justify-content: center;
    font-size: 27px;
    background: var(--agk-sage-soft);
    border-radius: 14px;
    margin-bottom: 22px;
}
.agk-path h3 { font-size: 23px; margin-bottom: 14px; }
.agk-path p { color: var(--agk-muted); font-size: 15.5px; }
.agk-path .agk-link-arrow { margin-top: auto; padding-top: 18px; }

/* ---------- O mnie ---------- */
.agk-about__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 58px;
    align-items: center;
}
.agk-about__photo {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--agk-shadow);
    background: var(--agk-sand);
}
.agk-about__photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top center; }
.agk-about__photo::after {
    content: "";
    position: absolute; inset: 0;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 18px;
    pointer-events: none;
}
.agk-about__text h2 { margin-bottom: 22px; }
.agk-about__text p { font-size: 17.5px; color: var(--agk-text); }
.agk-about__sign {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 20px;
    color: var(--agk-green);
    margin-top: 8px;
}

/* ---------- Filozofia ---------- */
.agk-philosophy {
    background: var(--agk-green);
    color: #fff;
    padding: 96px 0;
    text-align: center;
}
.agk-philosophy .agk-kicker { color: var(--agk-sand); }
.agk-philosophy__quote {
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: clamp(23px, 3vw, 34px);
    line-height: 1.35;
    font-weight: 500;
}
.agk-philosophy__quote strong { color: var(--agk-sand); font-weight: 600; }

/* ---------- Strefa wiedzy + Newsletter (split) ---------- */
.agk-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}
.agk-card-lg {
    border-radius: 18px;
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
}
.agk-card-lg.is-knowledge { background: var(--agk-sand-soft); border: 1px solid var(--agk-sand); }
.agk-card-lg.is-news { background: var(--agk-green-dk); color: #fff; }
.agk-card-lg h2 { font-size: 30px; margin-bottom: 16px; }
.agk-card-lg.is-news h2 { color: #fff; }
.agk-card-lg p { color: var(--agk-muted); margin-bottom: 28px; }
.agk-card-lg.is-news p { color: rgba(255,255,255,.8); }

/* Newsletter form */
/* kontener nie jest juz rzedem - rzedem jest tylko .agk-nl-top (email + przycisk) */
.agk-newsletter-form { display: block; margin-top: auto; }
.agk-newsletter-form input[type=email] {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 8px;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 15px;
    font-family: "Inter", sans-serif;
}
.agk-newsletter-form input::placeholder { color: rgba(255,255,255,.55); }
.agk-newsletter-form input:focus { outline: none; border-color: var(--agk-sand); background: rgba(255,255,255,.16); }
.agk-newsletter__msg { margin-top: 14px; font-size: 14px; min-height: 20px; color: var(--agk-sand); }

/* ============================================================
   FOOTER
   ============================================================ */
/* Nordic Editorial - zielen jak hero, miedziane akcenty, edytorska typografia */
.agk-footer {
    --nhf-cream: #F2EDE3;
    --nhf-mute: rgba(242,237,227,.6);
    --nhf-line: rgba(242,237,227,.14);
    background:
        radial-gradient(900px 500px at 85% -20%, rgba(168,184,165,.13), transparent 60%),
        linear-gradient(168deg, #2E4034, #233329);
    color: var(--nhf-mute);
    padding: 88px 0 34px;
    font-size: 15px;
}
.agk-footer__inner { max-width: 1240px; margin-inline: auto; padding-inline: 40px; }
.agk-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 52px 40px;
    padding-bottom: 52px;
    border-bottom: 1px solid var(--nhf-line);
}
.agk-footer__brand .agk-brand {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--nhf-cream);
    font-size: 27px;
    line-height: 1.15;
}
.agk-footer__tagline {
    font-family: "Inter", sans-serif;
    font-size: 10.5px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(242,237,227,.5);
    margin: 14px 0 20px;
}
.agk-footer__brand p { margin: 0 0 18px; max-width: 340px; color: var(--nhf-mute); font-size: 14.5px; }
.agk-footer__brand a { color: rgba(242,237,227,.85); }
.agk-footer__brand a:hover { color: var(--agk-accent); }
.agk-footer h4 {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--agk-accent);
    margin: 0 0 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 11px;
}
.agk-footer h4::before { content: ""; width: 18px; height: 1.5px; background: var(--agk-accent); flex-shrink: 0; }
.agk-footer ul { list-style: none; margin: 0; padding: 0; }
.agk-footer li { margin-bottom: 12px; }
.agk-footer li a { color: var(--nhf-mute); transition: color .2s; }
.agk-footer li a:hover { color: var(--nhf-cream); }
.agk-footer__social { display: flex; gap: 10px; margin-top: 4px; }
.agk-footer__social .agk-social {
    width: 38px; height: 38px;
    border-color: var(--nhf-line);
    border-radius: 2px;
    color: rgba(242,237,227,.8);
}
.agk-footer__social .agk-social:hover {
    color: #fff;
    border-color: var(--agk-accent);
    background: rgba(182,106,60,.2);
}
.agk-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px 26px;
    padding-top: 30px;
    font-size: 12.5px;
    color: rgba(242,237,227,.42);
    line-height: 1.7;
}
.agk-footer__bottom a { color: rgba(242,237,227,.55); }
.agk-footer__bottom a:hover { color: var(--nhf-cream); }

/* ============================================================
   RESPONSYWNOSC
   ============================================================ */
@media (max-width: 980px) {
    .agk-paths { grid-template-columns: 1fr; }
    .agk-about__grid { grid-template-columns: 1fr; gap: 36px; }
    .agk-about__photo { max-width: 360px; }
    .agk-split { grid-template-columns: 1fr; }
    .agk-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
    .agk-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
    /* na mobile zostaje sam koszyk obok hamburgera, przycisk Kontakt jest w menu */
    .agk-header__cta { display: flex; order: 2; margin-left: auto; margin-right: 10px; }
    .agk-header__cta .agk-btn,
    .agk-header__cta .agk-social { display: none; }
    .agk-cart { width: 44px; height: 44px; }
    .agk-burger { display: block; order: 3; }
    .agk-nav {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--agk-bg);
        border-top: 1px solid var(--agk-line);
        box-shadow: 0 26px 44px -24px rgba(63, 59, 55, .4);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 8px 22px 22px;
        gap: 0;
        max-height: calc(100vh - 130px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity .26s ease, transform .26s cubic-bezier(.2,.7,.2,1), visibility .26s;
    }
    body.agk-nav-open .agk-nav {
        opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
    }
    .agk-nav ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
    .agk-nav li { border-bottom: 1px solid var(--agk-line); position: relative; }
    .agk-nav a { padding: 16px 2px; font-size: 16px; color: var(--agk-text); }
    .agk-nav .current-menu-item > a { color: var(--agk-accent); }
    /* Kontakt jest przyciskiem na dole - ukryj z listy */
    .agk-nav .menu-item-873 { display: none; }
    /* podmenu: prefiks "-", miedziany, bez karty; visibility dziedziczy z drawera */
    .agk-nav .sub-menu,
    .agk-nav .menu-item-has-children:hover .sub-menu {
        position: static; transform: none; opacity: 1; visibility: inherit;
        background: transparent; box-shadow: none; border: none; border-radius: 0;
        padding: 0 0 8px 8px; margin: 0; min-width: 0;
    }
    .agk-nav .sub-menu::before { display: none; }
    .agk-nav .sub-menu li { border-bottom: none; }
    .agk-nav .sub-menu a {
        padding: 12px 2px; font-size: 15px; color: var(--agk-accent-d);
        display: flex; align-items: baseline; gap: 8px;
    }
    .agk-nav .sub-menu a::before { content: "-"; color: var(--agk-accent); font-weight: 600; }
    .agk-nav .sub-menu a:hover { background: transparent; color: var(--agk-accent); }
    .agk-nav .menu-item-has-children > a::after { margin-left: auto; }
    /* przycisk Kontakt na dole listy */
    .agk-nav__cta { display: block; flex-shrink: 0; padding-top: 16px; }
    .agk-nav__cta .agk-btn {
        width: 100%; justify-content: center; padding: 16px 24px; font-size: 15px; border-radius: 12px;
    }
}

@media (max-width: 640px) {
    body.agk-home { font-size: 16px; }
    .agk-header__inner { padding: 14px 22px; }
    .agk-hero { padding: 66px 0 74px; }
    .agk-section { padding: 66px 0; }
    .agk-philosophy { padding: 72px 0; }
    .agk-card-lg { padding: 38px 28px; }
    .agk-footer__grid { grid-template-columns: 1fr; }
    .agk-nl-top { flex-direction: column; }
    .agk-container, .agk-footer__inner, .agk-header__inner { padding-inline: 22px; }
}
