/* =========================================================
   ChickenJetLog — Farm Produce (PL)
   Aesthetic: warm rustic authenticity + clean modern commerce
   ========================================================= */

:root {
    /* Palette */
    --bg: #faf6ef;
    --bg-soft: #f3ecdf;
    --surface: #ffffff;
    --surface-2: #fbf7f0;
    --green: #2d4a2b;
    --green-dark: #1f3320;
    --green-soft: #3d5e3a;
    --gold: #e8a838;
    --gold-soft: #f3c878;
    --brown: #3a2e22;
    --text: #3a2e22;
    --text-muted: #736154;
    --border: #e4d9c6;
    --border-soft: #efe7d8;
    --shadow: 0 8px 30px rgba(58, 46, 34, .08);
    --shadow-lg: 0 18px 50px rgba(58, 46, 34, .12);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 26px;

    /* Type */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

    /* Layout */
    --container: 1200px;
    --transition: .3s cubic-bezier(.4, .2, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--green-dark); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--alt { background: var(--bg-soft); }
.section--green { background: var(--green); color: #f6efe1; }
.section--green h2, .section--green h3 { color: #fff; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.eyebrow::before {
    content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px;
}

.section__title { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.section__lead { color: var(--text-muted); max-width: 60ch; margin-top: 14px; font-size: 1.05rem; }
.section__head { margin-bottom: 48px; max-width: 70ch; }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font-body); font-weight: 700;
    font-size: .92rem; letter-spacing: .03em;
    padding: 14px 28px; border-radius: 50px;
    transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
    will-change: transform;
}
.btn--primary { background: var(--gold); color: var(--brown); box-shadow: 0 6px 18px rgba(232,168,56,.35); }
.btn--primary:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn--dark { background: var(--green); color: #f6efe1; }
.btn--dark:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: inherit; border: 2px solid currentColor; }
.btn--ghost:hover { background: rgba(255,255,255,.08); }
.btn--light { background: #fff; color: var(--green-dark); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--sm { padding: 9px 18px; font-size: .82rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(250, 246, 239, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-soft);
    transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--green-dark); }
.logo__mark { flex-shrink: 0; }
.logo__text--accent { color: var(--gold); }
.logo--light { color: #f6efe1; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav__list { display: flex; align-items: center; gap: 6px; }
.nav__link { padding: 10px 14px; font-weight: 500; font-size: .95rem; color: var(--brown); border-radius: 8px; transition: color var(--transition), background var(--transition); position: relative; }
.nav__link:hover { color: var(--green); }
.nav__link--active { color: var(--green); font-weight: 700; }
.nav__link--active::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; background: var(--gold); border-radius: 2px; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 110; }
.burger__line { width: 26px; height: 3px; background: var(--green-dark); border-radius: 3px; transition: transform var(--transition), opacity var(--transition); }
.burger.active .burger__line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.active .burger__line:nth-child(2) { opacity: 0; }
.burger.active .burger__line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero__media { position: relative; min-height: clamp(440px, 62vh, 680px); display: flex; align-items: center; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(31,51,32,.78) 0%, rgba(31,51,32,.4) 55%, rgba(31,51,32,.1) 100%); z-index: 1; }
.hero__content { position: relative; z-index: 2; color: #f6efe1; padding: 70px 0; max-width: 640px; }
.hero__eyebrow { color: var(--gold-soft); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; font-size: .82rem; display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.hero__eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); }
.hero__title { color: #fff; font-size: clamp(2.3rem, 5.2vw, 4rem); line-height: 1.05; letter-spacing: -.01em; }
.hero__text { font-size: 1.12rem; margin-top: 20px; max-width: 52ch; color: rgba(246,239,225,.92); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__badge { position: absolute; right: 5%; bottom: 8%; z-index: 2; background: rgba(255,255,255,.95); color: var(--green-dark); padding: 18px 22px; border-radius: var(--radius); box-shadow: var(--shadow-lg); text-align: center; max-width: 200px; }
.hero__badge-num { font-family: var(--font-display); font-weight: 700; font-size: 2.1rem; color: var(--gold); line-height: 1; }
.hero__badge-label { font-size: .82rem; color: var(--text-muted); margin-top: 4px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 30px 18px; background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius); transition: transform var(--transition), box-shadow var(--transition); }
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--green); line-height: 1; }
.stat__label { color: var(--text-muted); font-size: .9rem; margin-top: 8px; }
.stat__icon { color: var(--gold); margin-bottom: 12px; display: inline-flex; }

/* ---------- Cards / Products ---------- */
.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); display: flex; flex-direction: column; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-soft); }
.card__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--bg-soft); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__tag { position: absolute; top: 14px; left: 14px; background: var(--green); color: #f6efe1; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 6px 12px; border-radius: 50px; }
.card__body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.card__title { font-size: 1.35rem; margin-bottom: 10px; }
.card__text { color: var(--text-muted); font-size: .95rem; flex: 1; }
.card__meta { display: flex; gap: 16px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border-soft); font-size: .84rem; color: var(--text-muted); flex-wrap: wrap; }
.card__meta-item { display: inline-flex; align-items: center; gap: 6px; }
.card__footer { margin-top: 18px; }

/* ---------- Split (text + image) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; background: var(--bg-soft); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__content { max-width: 56ch; }
.split__title { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: 18px; }
.split__text { color: var(--text-muted); font-size: 1.02rem; }
.split__list { margin: 24px 0; display: grid; gap: 14px; }
.split__list li { display: flex; gap: 12px; align-items: flex-start; color: var(--brown); }
.split__list li svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }

/* ---------- Feature pills ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature { padding: 30px 26px; background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border-soft); transition: transform var(--transition); }
.feature:hover { transform: translateY(-4px); }
.feature__icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(232,168,56,.14); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature__title { font-size: 1.18rem; margin-bottom: 8px; }
.feature__text { color: var(--text-muted); font-size: .92rem; }

/* ---------- Product detail blocks ---------- */
.product { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 56px 0; border-bottom: 1px solid var(--border-soft); }
.product:last-child { border-bottom: none; }
.product--reverse .product__media { order: 2; }
.product__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5 / 4; box-shadow: var(--shadow-lg); background: var(--bg-soft); }
.product__media img { width: 100%; height: 100%; object-fit: cover; }
.product__title { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.product__subtitle { color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; margin-bottom: 8px; }
.product__text { color: var(--text-muted); margin: 16px 0 22px; }
.specs { display: grid; gap: 10px; margin: 22px 0; }
.specs__row { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px dashed var(--border); font-size: .94rem; }
.specs__row:last-child { border-bottom: none; }
.specs__key { color: var(--text-muted); }
.specs__val { font-weight: 600; color: var(--brown); }

/* ---------- CTA banner ---------- */
.cta { position: relative; overflow: hidden; color: #fff; text-align: center; }
.cta__media { position: absolute; inset: 0; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; }
.cta__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(31,51,32,.72), rgba(31,51,32,.82)); }
.cta__inner { position: relative; z-index: 2; padding: 90px 0; max-width: 680px; margin: 0 auto; }
.cta__title { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); }
.cta__text { color: rgba(255,255,255,.9); margin: 18px 0 30px; font-size: 1.08rem; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border: 1px solid var(--border-soft); border-radius: var(--radius-sm); background: var(--surface); margin-bottom: 14px; overflow: hidden; transition: box-shadow var(--transition); }
.faq__item--active { box-shadow: var(--shadow); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 26px; width: 100%; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--green-dark); }
.faq__q-icon { flex-shrink: 0; width: 24px; height: 24px; position: relative; transition: transform var(--transition); }
.faq__q-icon::before, .faq__q-icon::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; }
.faq__q-icon::before { width: 14px; height: 2px; top: 11px; left: 5px; }
.faq__q-icon::after { width: 2px; height: 14px; top: 5px; left: 11px; transition: transform var(--transition); }
.faq__item--active .faq__q-icon::after { transform: rotate(90deg); opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height var(--transition); color: var(--text-muted); }
.faq__a-inner { padding: 0 26px 24px; }

/* ---------- Values / about ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value { text-align: center; padding: 36px 24px; }
.value__icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(232,168,56,.14); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.value__title { font-size: 1.25rem; margin-bottom: 8px; }
.value__text { color: var(--text-muted); font-size: .94rem; }

.gallery { display: grid; grid-template-columns: 1.5fr 1fr; gap: 20px; }
.gallery__img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow); }
.gallery__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery__img:hover img { transform: scale(1.04); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
.form { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.form__group { margin-bottom: 20px; }
.form__label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 8px; color: var(--brown); }
.form__input, .form__textarea, .form__select {
    width: 100%; padding: 13px 16px; font-family: inherit; font-size: .95rem;
    background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm);
    color: var(--text); transition: border-color var(--transition), box-shadow var(--transition);
}
.form__input:focus, .form__textarea:focus, .form__select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232,168,56,.18); }
.form__textarea { min-height: 130px; resize: vertical; }
.form__consent { font-size: .84rem; color: var(--text-muted); margin: 16px 0 22px; }
.form__consent a { color: var(--green); text-decoration: underline; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.contact-info { background: var(--green); color: #f6efe1; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.contact-info h3 { color: #fff; margin-bottom: 22px; }
.contact-info__item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-info__icon { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.contact-info__label { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(246,239,225,.6); margin-bottom: 2px; }
.contact-info__value { font-weight: 600; }
.contact-info__value a:hover { text-decoration: underline; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal--open { display: flex; }
.modal__overlay { position: absolute; inset: 0; background: rgba(31,51,32,.6); backdrop-filter: blur(3px); }
.modal__dialog { position: relative; z-index: 2; background: var(--surface); border-radius: var(--radius-lg); padding: 44px 36px; max-width: 440px; text-align: center; box-shadow: var(--shadow-lg); animation: pop .3s ease; }
.modal__close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; background: var(--bg-soft); color: var(--brown); display: inline-flex; align-items: center; justify-content: center; transition: background var(--transition); }
.modal__close:hover { background: var(--border); }
.modal__icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(45,74,43,.1); color: var(--green); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.modal__title { font-size: 1.5rem; margin-bottom: 10px; }
.modal__text { color: var(--text-muted); margin-bottom: 24px; }

/* ---------- Cookie banner ---------- */
.cookie { position: fixed; bottom: 0; left: 0; right: 0; z-index: 190; background: var(--green-dark); color: #f6efe1; transform: translateY(120%); transition: transform .45s cubic-bezier(.4,.2,.2,1); box-shadow: 0 -8px 30px rgba(0,0,0,.2); }
.cookie--show { transform: translateY(0); }
.cookie__inner { display: flex; align-items: center; gap: 24px; padding: 20px 24px; flex-wrap: wrap; }
.cookie__text { flex: 1; min-width: 280px; font-size: .9rem; color: rgba(246,239,225,.85); }
.cookie__text a { color: var(--gold-soft); text-decoration: underline; }
.cookie__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--green); color: #f6efe1; padding: 70px 0 60px; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; top: -40%; right: -10%; width: 480px; height: 480px; background: radial-gradient(circle, rgba(232,168,56,.18), transparent 70%); }
.page-hero__title { color: #fff; font-size: clamp(2rem, 4.5vw, 3.2rem); position: relative; }
.page-hero__text { color: rgba(246,239,225,.85); max-width: 60ch; margin-top: 14px; position: relative; font-size: 1.05rem; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: rgba(246,239,225,.6); margin-bottom: 16px; position: relative; }
.breadcrumb a:hover { color: var(--gold-soft); }

/* ---------- Prose (legal pages) ---------- */
.prose { max-width: 780px; margin: 0 auto; color: var(--text); }
.prose h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 8px; }
.prose h2 { font-size: 1.4rem; margin: 36px 0 12px; color: var(--green-dark); }
.prose p { margin-bottom: 16px; color: var(--text-muted); }
.prose ul { margin: 0 0 18px; padding-left: 0; }
.prose ul li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--text-muted); }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.prose .updated { font-size: .85rem; color: var(--text-muted); margin-bottom: 30px; }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: 100px 0; }
.notfound__code { font-family: var(--font-display); font-weight: 700; font-size: clamp(4rem, 14vw, 9rem); color: var(--gold); line-height: 1; }
.notfound__title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 10px 0 14px; }
.notfound__text { color: var(--text-muted); margin-bottom: 28px; }

/* ---------- Footer ---------- */
.footer { background: var(--green-dark); color: rgba(246,239,225,.8); padding-top: 64px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr 1fr; gap: 36px; padding-bottom: 48px; }
.footer__col--brand { max-width: 320px; }
.footer__about { font-size: .9rem; margin-top: 16px; color: rgba(246,239,225,.65); line-height: 1.7; }
.footer__title { color: #fff; font-size: 1rem; margin-bottom: 16px; font-family: var(--font-body); font-weight: 700; letter-spacing: .04em; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { font-size: .9rem; color: rgba(246,239,225,.7); transition: color var(--transition); }
.footer__links a:hover { color: var(--gold-soft); }
.footer__contact { font-size: .9rem; line-height: 1.9; }
.footer__contact a:hover { color: var(--gold-soft); }
.footer__company { font-weight: 700; color: #fff; }
.footer__bottom { border-top: 1px solid rgba(246,239,225,.12); padding: 22px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: rgba(246,239,225,.55); }
.footer__legal a { color: rgba(246,239,225,.7); }
.footer__legal a:hover { color: var(--gold-soft); }

/* ---------- Animations ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pop { from { opacity: 0; transform: scale(.92); } to { opacity: 1; transform: scale(1); } }
.reveal { opacity: 0; }
.reveal.is-visible { animation: fadeUp .7s cubic-bezier(.2,.6,.2,1) forwards; }
.reveal[data-delay="1"].is-visible { animation-delay: .1s; }
.reveal[data-delay="2"].is-visible { animation-delay: .2s; }
.reveal[data-delay="3"].is-visible { animation-delay: .3s; }
.reveal[data-delay="4"].is-visible { animation-delay: .4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer__col--brand { grid-column: 1 / -1; }
    .features { grid-template-columns: repeat(2, 1fr); }
    .values { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .nav {
        position: fixed; top: 0; right: 0; height: 100vh; width: min(82vw, 340px);
        background: var(--bg); flex-direction: column; justify-content: center; gap: 24px;
        transform: translateX(100%); transition: transform var(--transition);
        box-shadow: -10px 0 40px rgba(0,0,0,.15); z-index: 105;
    }
    .nav--open { transform: translateX(0); }
    .nav__list { flex-direction: column; gap: 4px; width: 100%; }
    .nav__item { width: 100%; }
    .nav__link { display: block; padding: 14px 18px; font-size: 1.1rem; }
    .nav__link--active::after { display: none; }
    .nav__cta { width: 100%; }
    .burger { display: flex; }
    body.nav-open { overflow: hidden; }

    .grid--3, .grid--2 { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .features, .values { grid-template-columns: 1fr; }
    .split, .product { grid-template-columns: 1fr; gap: 28px; }
    .split--reverse .split__media, .product--reverse .product__media { order: 0; }
    .contact-grid { grid-template-columns: 1fr; }
    .form__row { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: 1fr; }
    .hero__badge { display: none; }
    .form, .contact-info { padding: 28px; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .footer__bottom-inner { flex-direction: column; gap: 6px; }
}

@media (max-width: 480px) {
    .stats { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; }
}
