/* ==========================================================================
   Healthy Milk — Choudhary Ashraf Dairy Farm
   Single hand-written stylesheet. No framework, no CDN, no build step.
   Palette is taken from the printed pack and the logo.
   ========================================================================== */

:root {
    --green-900: #10471f;
    --green-800: #16632b;
    --green-700: #1f7a34;
    --green-600: #2b9243;
    --lime-500: #8dc63f;
    --lime-400: #a4d233;

    --ink: #161c17;
    --ink-soft: #47544a;
    --muted: #6d7a70;

    --cream: #fbfaf5;
    --surface: #ffffff;
    --tint: #f2f7f0;
    --line: #e2e8e1;

    --danger: #b3261e;
    --danger-bg: #fdecea;
    --success: #1f7a34;
    --success-bg: #e9f5ec;

    --radius: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 1px 2px rgba(16, 71, 31, .06), 0 4px 12px rgba(16, 71, 31, .06);
    --shadow-md: 0 10px 30px rgba(16, 71, 31, .10);
    --shadow-lg: 0 24px 60px rgba(16, 71, 31, .14);

    --wrap: 1180px;
    --header-h: 76px;

    --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

/* ---------------------------------------------------------------- reset -- */

*, *::before, *::after { box-sizing: border-box; }

/* Deliberately NOT `scroll-behavior: smooth` here: it stops the browser honouring a
   #fragment on page load, so deep links (/#products) and the no-JS form postback both
   land at the top of the page instead. site.js does the smooth scrolling for in-page
   link clicks instead, which leaves native fragment navigation working. */
html { scroll-padding-top: calc(var(--header-h) + 12px); }

body {
    margin: 0;
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }

a { color: var(--green-700); text-decoration-color: rgba(31, 122, 52, .35); text-underline-offset: 3px; }
a:hover { color: var(--green-800); text-decoration-color: currentColor; }

code {
    font-family: "Cascadia Mono", Consolas, "SF Mono", ui-monospace, monospace;
    font-size: .92em;
    background: var(--tint);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: .1em .45em;
}

:focus-visible {
    outline: 3px solid var(--lime-500);
    outline-offset: 2px;
    border-radius: 4px;
}

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

.muted { color: var(--muted); }

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

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 100;
    background: var(--green-800); color: #fff; padding: .75rem 1.25rem;
    border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------- header -- */

.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
    min-height: var(--header-h);
    display: flex; align-items: center; gap: 1rem;
}

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: inherit; }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 1.12rem; color: var(--green-800); letter-spacing: -.02em; }
.brand-text small { font-size: .74rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }

.primary-nav { margin-left: auto; display: flex; align-items: center; gap: .35rem; }
.primary-nav a {
    padding: .55rem .85rem; border-radius: 999px;
    font-size: .95rem; font-weight: 600; color: var(--ink-soft); text-decoration: none;
    transition: background .15s ease, color .15s ease;
}
.primary-nav a:hover { background: var(--tint); color: var(--green-800); }
.primary-nav .nav-cta {
    background: var(--green-700); color: #fff; margin-left: .4rem;
    box-shadow: 0 2px 8px rgba(31, 122, 52, .28);
}
.primary-nav .nav-cta:hover { background: var(--green-800); color: #fff; }

.nav-toggle {
    margin-left: auto; display: none;
    width: 46px; height: 42px; padding: 10px;
    background: var(--tint); border: 1px solid var(--line); border-radius: 12px; cursor: pointer;
}
.nav-toggle span {
    display: block; height: 2px; background: var(--green-800); border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------- buttons -- */

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .78rem 1.5rem; border: 1px solid transparent; border-radius: 999px;
    font: inherit; font-weight: 700; font-size: .97rem;
    text-decoration: none; cursor: pointer; white-space: nowrap;
    transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--green-700); color: #fff; box-shadow: 0 4px 14px rgba(31, 122, 52, .3); }
.btn-primary:hover { background: var(--green-800); color: #fff; }

.btn-ghost { background: transparent; color: var(--green-800); border-color: var(--green-700); }
.btn-ghost:hover { background: var(--tint); color: var(--green-900); }

.btn-small { padding: .5rem 1.05rem; font-size: .88rem; }
.btn-block { display: flex; width: 100%; }
.btn-block + .btn-block { margin-top: .6rem; }

/* ------------------------------------------------------------- sections -- */

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-tint { background: var(--tint); }

.section-head { max-width: 62ch; margin-bottom: 2.75rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; margin: 0; }

.eyebrow {
    margin: 0 0 .55rem;
    font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
    color: var(--green-600);
}

/* ------------------------------------------------------------------ hero -- */

.hero {
    position: relative; overflow: hidden;
    padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 8vw, 6rem);
    background:
        radial-gradient(1100px 520px at 12% -10%, rgba(141, 198, 63, .28), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
}

.hero-inner {
    display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.hero h1 { margin-bottom: .35em; color: var(--green-900); }

.hero-urdu {
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    color: var(--green-700); font-weight: 700; margin: 0 0 .8rem;
}

.lead { font-size: 1.1rem; color: var(--ink-soft); max-width: 54ch; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.6rem 0 1.8rem; }

.hero-badges {
    list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 0;
}
.hero-badges li {
    background: #fff; border: 1px solid var(--line); border-radius: 999px;
    padding: .38rem .9rem; font-size: .84rem; font-weight: 700; color: var(--green-800);
    box-shadow: var(--shadow-sm);
}
.hero-badges li::before { content: "✓"; margin-right: .4rem; color: var(--lime-500); }

.hero-art { position: relative; }
.hero-art > img {
    border-radius: 26px; box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3; object-fit: cover;
}
.hero-stamp {
    position: absolute; left: -22px; bottom: -22px;
    width: 128px; height: 128px; padding: 10px;
    background: #fff; border-radius: 50%; box-shadow: var(--shadow-md);
    display: grid; place-items: center;
}
.hero-stamp img { width: 100%; height: 100%; object-fit: contain; }

/* ----------------------------------------------------------------- about -- */

.about-grid {
    display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 3.5rem);
    align-items: start;
}
.about-art img { border-radius: 22px; box-shadow: var(--shadow-md); }

.about-copy p { color: var(--ink-soft); }
.about-thanks {
    font-weight: 700; color: var(--green-800);
    border-left: 4px solid var(--lime-500); padding-left: 1rem; margin: 1.4rem 0;
}

.pillars { list-style: none; padding: 0; margin: 1.75rem 0 0; display: grid; gap: .9rem; }
.pillars li {
    display: flex; gap: .9rem; align-items: flex-start;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: .95rem 1.1rem; box-shadow: var(--shadow-sm);
}
.pillar-mark {
    flex: none; width: 40px; height: 40px; border-radius: 12px;
    background: var(--tint); display: grid; place-items: center; font-size: 1.15rem;
}
.pillars li span:last-child { font-size: .95rem; color: var(--ink-soft); }
.pillars li strong { display: block; color: var(--ink); }

/* -------------------------------------------------------------- products -- */

.product-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
}

.product-card {
    display: flex; flex-direction: column; overflow: hidden;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform .18s ease, box-shadow .18s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.product-media { position: relative; background: #fff; }
.product-media img { aspect-ratio: 4 / 3; object-fit: contain; width: 100%; padding: 1rem; }

.product-flag {
    position: absolute; top: .8rem; left: .8rem;
    background: var(--danger); color: #fff; border-radius: 999px;
    padding: .25rem .75rem; font-size: .75rem; font-weight: 700;
}

.product-body { display: flex; flex-direction: column; flex: 1; padding: 1.25rem 1.35rem 1.35rem; border-top: 1px solid var(--line); }
.product-body h3 { margin-bottom: .15rem; color: var(--green-900); }
.product-pack { margin: 0 0 .7rem; font-size: .82rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--green-600); }
.product-desc { font-size: .95rem; color: var(--ink-soft); }

.product-features { list-style: none; padding: 0; margin: 0 0 1.1rem; display: grid; gap: .3rem; }
.product-features li { font-size: .88rem; color: var(--ink-soft); padding-left: 1.35rem; position: relative; }
.product-features li::before {
    content: "✓"; position: absolute; left: 0; top: 0;
    color: var(--green-600); font-weight: 800;
}

.product-foot {
    margin-top: auto; padding-top: 1rem; border-top: 1px dashed var(--line);
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.product-price { margin: 0; display: flex; flex-direction: column; line-height: 1.2; }
.price { font-size: 1.3rem; font-weight: 800; color: var(--green-800); }
.price-unit { font-size: .78rem; color: var(--muted); }

.quality-note {
    margin-top: 2.5rem; padding: 1.6rem 1.8rem;
    background: var(--green-900); color: #fff; border-radius: var(--radius);
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
    background-image: linear-gradient(120deg, var(--green-900), var(--green-700));
}
.quality-note h3 { color: #fff; margin-bottom: .3rem; }
.quality-note p { margin: 0; color: rgba(255, 255, 255, .82); max-width: 60ch; font-size: .96rem; }
.quality-note .btn-primary { background: #fff; color: var(--green-900); }
.quality-note .btn-primary:hover { background: var(--lime-400); color: var(--green-900); }

/* -------------------------------------------------------------- location -- */

.map-panel { display: grid; grid-template-columns: 1.6fr .9fr; gap: 1.5rem; align-items: stretch; }

.map-frame {
    overflow: hidden; border-radius: var(--radius);
    border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--tint);
}
.map-frame iframe { display: block; width: 100%; height: 100%; min-height: 460px; }

.map-side {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.6rem; box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column;
}
.map-side h3 { color: var(--green-900); }

.map-facts { margin: 1.2rem 0 1.5rem; display: grid; gap: .8rem; }
.map-facts > div { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px dashed var(--line); padding-bottom: .55rem; }
.map-facts dt { font-size: .85rem; color: var(--muted); }
.map-facts dd { margin: 0; font-size: .9rem; font-weight: 600; text-align: right; }
.map-facts code { font-size: .78rem; }
.map-side .btn-block:first-of-type { margin-top: auto; }

/* --------------------------------------------------------------- contact -- */

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 1.5rem; align-items: start; }

.contact-cards { display: grid; gap: .8rem; }
.contact-card {
    display: flex; align-items: center; gap: 1rem; text-decoration: none; color: inherit;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.05rem 1.2rem; box-shadow: var(--shadow-sm);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.contact-card:hover { transform: translateX(3px); border-color: var(--green-600); box-shadow: var(--shadow-md); color: inherit; }
.contact-icon {
    flex: none; width: 44px; height: 44px; border-radius: 12px;
    background: var(--tint); color: var(--green-700);
    display: grid; place-items: center; font-size: 1.2rem;
}
.contact-card span:last-child { display: flex; flex-direction: column; font-size: .95rem; color: var(--ink-soft); }
.contact-card strong { color: var(--ink); font-size: 1rem; }

.contact-form-panel {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow-sm);
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.field label { font-size: .87rem; font-weight: 700; color: var(--ink-soft); margin-bottom: .35rem; }

.field input, .field textarea, .lookup input {
    font: inherit; font-size: 1rem; color: var(--ink);
    padding: .72rem .9rem;
    background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
    transition: border-color .15s ease, box-shadow .15s ease;
    width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .lookup input:focus {
    outline: none; border-color: var(--green-600);
    box-shadow: 0 0 0 4px rgba(43, 146, 67, .14);
}
.field input.input-validation-error, .field textarea.input-validation-error { border-color: var(--danger); }

.field-error { display: block; margin-top: .3rem; font-size: .82rem; color: var(--danger); }
.field-error:empty { display: none; }

.form-note { margin: .85rem 0 0; font-size: .82rem; color: var(--muted); text-align: center; }

/* Honeypot — off-screen rather than display:none, which some bots detect. */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { border-radius: var(--radius-sm); padding: .9rem 1.1rem; margin: 0 0 1.25rem; font-size: .95rem; }
.alert-success { background: var(--success-bg); border: 1px solid rgba(31, 122, 52, .3); color: var(--green-900); }
.alert-error { background: var(--danger-bg); border: 1px solid rgba(179, 38, 30, .28); color: var(--danger); }
.alert-error:empty, .alert-error ul:empty { display: none; }
.alert-error ul { margin: 0; padding-left: 1.2rem; }

/* ---------------------------------------------------------------- footer -- */

.site-footer { background: var(--green-900); color: rgba(255, 255, 255, .78); padding: 3.5rem 0 1.5rem; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 2rem; }
.site-footer h3 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .9rem; }
.site-footer p { font-size: .93rem; margin: 0 0 .45rem; }
.site-footer a { color: var(--lime-400); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer .muted { color: rgba(255, 255, 255, .55); }

.footer-brand img { background: #fff; border-radius: 14px; padding: 6px; margin-bottom: .9rem; }
.footer-slogan { font-weight: 700; color: #fff; letter-spacing: .04em; text-transform: uppercase; font-size: .8rem !important; }
.footer-urdu { font-size: 1.15rem !important; color: var(--lime-400); }

.footer-bottom {
    margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255, 255, 255, .14);
    display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { font-size: .84rem; margin: 0; }
.footer-strap { color: var(--lime-400); font-weight: 700; letter-spacing: .05em; }

/* ---------------------------------------------------------- whatsapp fab -- */

.whatsapp-fab {
    position: fixed; right: 20px; bottom: 20px; z-index: 40;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25d366; color: #fff;
    display: grid; place-items: center;
    box-shadow: 0 8px 22px rgba(37, 211, 102, .45);
    transition: transform .15s ease;
}
.whatsapp-fab:hover { transform: scale(1.07); color: #fff; }

/* ============================ REPORT PAGE ================================ */

.report-hero {
    padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 5vw, 3rem);
    background:
        radial-gradient(900px 420px at 85% -20%, rgba(141, 198, 63, .3), transparent 60%),
        linear-gradient(180deg, #ffffff, var(--cream));
    border-bottom: 1px solid var(--line);
}
.report-hero h1 { color: var(--green-900); }
.report-hero .lead { max-width: 62ch; }

.lookup { display: flex; gap: .6rem; max-width: 540px; margin-top: 1.6rem; flex-wrap: wrap; }
.lookup input { flex: 1 1 260px; font-family: "Cascadia Mono", Consolas, ui-monospace, monospace; letter-spacing: .04em; }

.recent-batches { margin-top: 1.1rem; font-size: .88rem; display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.recent-batches span { color: var(--muted); }
.recent-batches a {
    background: #fff; border: 1px solid var(--line); border-radius: 999px;
    padding: .28rem .8rem; text-decoration: none; font-family: "Cascadia Mono", Consolas, ui-monospace, monospace;
    font-size: .8rem; color: var(--green-800);
}
.recent-batches a:hover { border-color: var(--green-600); background: var(--tint); }

.report-missing { max-width: 62ch; }
.report-missing h2 { font-size: 1.25rem; margin-bottom: .4rem; color: inherit; }
.report-missing p { margin: 0; color: var(--ink-soft); }

.report-section { padding-top: 2.5rem; }

.report-sheet {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-md); overflow: hidden;
}

.report-head {
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
    padding: 1.5rem clamp(1.2rem, 3vw, 2rem);
    border-bottom: 3px solid var(--green-700);
    background: linear-gradient(180deg, #fff, var(--tint));
}
.report-head-brand { display: flex; align-items: center; gap: 1rem; }
.report-head-brand img { width: 64px; height: 64px; object-fit: contain; }
.report-lab { margin: 0; font-weight: 800; color: var(--green-900); font-size: 1.02rem; }
.report-no { margin: 0; font-size: .85rem; color: var(--muted); }

.verdict {
    display: flex; flex-direction: column; align-items: flex-end;
    padding: .6rem 1.2rem; border-radius: var(--radius-sm); min-width: 200px;
}
.verdict-pass { background: var(--success-bg); border: 1.5px solid var(--green-600); }
.verdict-fail { background: var(--danger-bg); border: 1.5px solid var(--danger); }
.verdict-label { font-size: 1.7rem; font-weight: 900; letter-spacing: .1em; line-height: 1.1; }
.verdict-pass .verdict-label { color: var(--green-700); }
.verdict-fail .verdict-label { color: var(--danger); }
.verdict-sub { font-size: .78rem; color: var(--ink-soft); }

.report-meta {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.1rem 1.5rem; margin: 0;
    padding: 1.5rem clamp(1.2rem, 3vw, 2rem);
    background: var(--tint); border-bottom: 1px solid var(--line);
}
.report-meta dt { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .2rem; }
.report-meta dd { margin: 0; font-weight: 700; font-size: .97rem; color: var(--ink); }

.result-group { padding: 1.6rem clamp(1.2rem, 3vw, 2rem) .4rem; }
.result-group h2 {
    font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
    color: var(--green-700); margin-bottom: .8rem;
    padding-bottom: .5rem; border-bottom: 1px solid var(--line);
}

.table-scroll { overflow-x: auto; }

.result-table { width: 100%; border-collapse: collapse; font-size: .93rem; min-width: 640px; }
.result-table thead th {
    text-align: left; font-size: .73rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--muted); font-weight: 700; padding: .5rem .75rem; white-space: nowrap;
}
.result-table tbody th, .result-table tbody td {
    padding: .7rem .75rem; border-top: 1px solid var(--line); vertical-align: top; text-align: left;
}
.result-table tbody th { font-weight: 600; color: var(--ink); }
.result-table tbody tr:hover { background: var(--tint); }
.result-table .row-fail { background: var(--danger-bg); }
.cell-value { font-weight: 800; color: var(--green-900); white-space: nowrap; }
.cell-value .unit { font-weight: 500; color: var(--muted); font-size: .86em; margin-left: .15rem; }

.pill {
    display: inline-block; padding: .2rem .7rem; border-radius: 999px;
    font-size: .76rem; font-weight: 800; letter-spacing: .04em;
}
.pill-pass { background: var(--success-bg); color: var(--green-800); border: 1px solid rgba(31, 122, 52, .3); }
.pill-fail { background: var(--danger-bg); color: var(--danger); border: 1px solid rgba(179, 38, 30, .3); }

.report-remarks { padding: 1.2rem clamp(1.2rem, 3vw, 2rem) 0; }
.report-remarks h2 { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--green-700); }
.report-remarks p { color: var(--ink-soft); font-size: .95rem; max-width: 80ch; }

.report-foot {
    margin-top: 1.2rem; padding: 1.4rem clamp(1.2rem, 3vw, 2rem);
    border-top: 1px solid var(--line); background: var(--tint);
    display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap;
}
.report-foot p { margin: 0; font-size: .84rem; max-width: 62ch; }
.report-actions { display: flex; gap: .6rem; flex-wrap: wrap; }

.how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.how-step {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.6rem; box-shadow: var(--shadow-sm);
}
.how-num {
    display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
    background: var(--green-700); color: #fff; font-weight: 800; margin-bottom: .9rem;
}
.how-step h2 { font-size: 1.1rem; color: var(--green-900); }
.how-step p { margin: 0; font-size: .93rem; color: var(--ink-soft); }

/* ------------------------------------------------------------ responsive -- */

@media (max-width: 960px) {
    .hero-inner, .about-grid, .map-panel, .contact-grid { grid-template-columns: 1fr; }
    .hero-art { order: -1; }
    .hero-stamp { width: 96px; height: 96px; left: auto; right: -10px; bottom: -18px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .map-side .btn-block:first-of-type { margin-top: 1rem; }
}

@media (max-width: 720px) {
    body { font-size: 16px; }

    .nav-toggle { display: block; }

    .primary-nav {
        position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: .2rem;
        padding: .75rem 1.25rem 1.1rem;
        background: #fff; border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-md);
        display: none;
    }
    .primary-nav.is-open { display: flex; }
    .primary-nav a { padding: .8rem 1rem; border-radius: var(--radius-sm); }
    .primary-nav .nav-cta { margin: .3rem 0 0; text-align: center; }

    .field-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .verdict { align-items: flex-start; width: 100%; }
    .report-head { flex-direction: column; align-items: flex-start; }
    .whatsapp-fab { width: 50px; height: 50px; right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
    /* site.js also drops to instant jumps for in-page links when this matches. */
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ----------------------------------------------------------------- print -- */

@media print {
    .site-header, .site-footer, .whatsapp-fab, .report-hero, .no-print, .skip-link { display: none !important; }

    body { background: #fff; font-size: 12px; }
    .section, .report-section { padding: 0; }
    .wrap { width: 100%; }

    .report-sheet { border: none; box-shadow: none; border-radius: 0; }
    .report-head { border-bottom: 2px solid #000; background: none; }
    .report-meta, .report-foot { background: none; }
    .result-table { min-width: 0; font-size: 11px; }
    .result-table tbody tr:hover { background: none; }
    .result-group { break-inside: avoid; padding-inline: 0; }

    a[href]::after { content: ""; }
}
