/* =====================================================================
   KmsDev Agency — Design System « Studio éditorial »
   Vanilla CSS. Base ivoire + encre, signature vert forêt + laiton.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
    /* Surfaces */
    --paper:      #F3F1EA;   /* fond */
    --paper-hi:   #FBFAF6;   /* surface surélevée */
    --paper-lo:   #ECE8DD;   /* surface creusée */
    --line:       #DED8C9;   /* filets / bordures */

    /* Encre */
    --ink:        #141410;   /* texte principal */
    --ink-soft:   #423D34;   /* texte secondaire fort */
    --muted:      #6F695C;   /* texte secondaire */

    /* Signature */
    --forest:     #1E4D3A;
    --forest-hi:  #2A6A50;   /* hover */
    --forest-lo:  #163B2C;   /* actif / profond */
    --brass:      #B08D57;
    --brass-hi:   #C9A876;

    /* Typo */
    --font-display: "Bricolage Grotesque", Georgia, serif;
    --font-body:    "Hanken Grotesk", system-ui, sans-serif;

    /* Échelle fluide */
    --step--1: clamp(0.83rem, 0.8rem + 0.15vw, 0.9rem);
    --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
    --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
    --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
    --step-3:  clamp(2rem, 1.6rem + 2vw, 3.1rem);
    --step-4:  clamp(2.6rem, 1.9rem + 3.4vw, 4.6rem);
    --step-5:  clamp(3.2rem, 2.1rem + 5vw, 6.2rem);

    /* Layout */
    --container: 1200px;
    --gutter: clamp(1.25rem, 4vw, 3rem);
    --radius: 14px;
    --radius-lg: 22px;

    /* Motion */
    --ease: cubic-bezier(.22, .7, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: var(--step-0);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.02; letter-spacing: -0.02em; margin: 0; }
.hero-title, .page-title, .display-2, .display-3, .statement, .cta-band h2 { text-wrap: balance; }

/* ---------- Grain (très léger, "sans abuser") ---------- */
.grain {
    position: fixed; inset: 0; z-index: 1; pointer-events: none;
    opacity: 0.035; mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; z-index: 2; padding-block: clamp(2.75rem, 5.5vw, 4.5rem); }
.section--tight { padding-block: clamp(1.75rem, 3.5vw, 3rem); }

.eyebrow {
    display: inline-flex; align-items: center; gap: .6rem;
    font-family: var(--font-body); font-size: var(--step--1); font-weight: 600;
    letter-spacing: .14em; text-transform: uppercase; color: var(--forest);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--brass); }

.section-head { display: grid; gap: 1.1rem; max-width: 60ch; }
.section-num {
    font-family: var(--font-display); font-size: var(--step--1); font-weight: 600;
    color: var(--brass); letter-spacing: .05em;
}
.display-2 { font-size: var(--step-3); }
.display-3 { font-size: var(--step-2); }
.lead { font-size: var(--step-1); color: var(--ink-soft); line-height: 1.4; max-width: 46ch; }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
    --pad-y: .85rem; --pad-x: 1.5rem;
    display: inline-flex; align-items: center; gap: .6rem;
    padding: var(--pad-y) var(--pad-x); border-radius: 999px;
    font-weight: 600; font-size: var(--step-0); border: 1.5px solid transparent;
    transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
    will-change: transform;
}
.btn svg { width: 1em; height: 1em; }
.btn-solid { background: var(--forest); color: var(--paper-hi); }
.btn-solid:hover { background: var(--forest-hi); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn-brass { background: var(--brass); color: var(--ink); }
.btn-brass:hover { background: var(--brass-hi); transform: translateY(-2px); }

.link-arrow {
    display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--forest);
    transition: gap .25s var(--ease);
}
.link-arrow:hover { gap: .85rem; }
.link-arrow svg { width: .9em; height: .9em; }

/* ---------- Header / Nav ---------- */
.site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 40;
    transition: background .3s, border-color .3s, backdrop-filter .3s;
    border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
    background: color-mix(in srgb, var(--paper) 88%, transparent);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-block: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand-mark { width: 34px; height: 34px; flex: none; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; letter-spacing: -.02em; line-height: 1; }
.brand-name span { color: var(--forest); }
.brand-sub { display: block; font-family: var(--font-body); font-size: .62rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-link { position: relative; font-size: var(--step--1); font-weight: 500; color: var(--ink-soft); padding-block: .3rem; }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--forest); transition: width .3s var(--ease); }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { width: 100%; }
.nav-link[aria-current="page"] { color: var(--ink); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1.5px solid var(--ink); border-radius: 12px; background: transparent; }
.nav-toggle svg { width: 20px; height: 20px; }

/* Mobile menu */
.mobile-menu {
    position: fixed; inset: 0; z-index: 39; background: var(--paper);
    transform: translateY(-100%); transition: transform .45s var(--ease); visibility: hidden;
    display: flex; flex-direction: column; justify-content: center; padding: var(--gutter);
}
.mobile-menu.open { transform: none; visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-size: var(--step-3); padding-block: .35rem; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-actions { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Hero ---------- */
.hero { position: relative; z-index: 2; padding-top: clamp(7rem, 14vh, 11rem); padding-bottom: clamp(3rem, 7vw, 6rem); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.hero-title { font-size: var(--step-5); margin: 1.4rem 0 0; }
.hero-title em { font-style: normal; color: var(--forest); position: relative; }
.hero-title .brass { color: var(--brass); }
.hero-lead { margin-top: 1.6rem; }
.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-meta { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1.4rem 2.2rem; align-items: center; border-top: 1px solid var(--line); padding-top: 1.6rem; }
.hero-meta-item { display: grid; gap: .1rem; }
.hero-meta-item b { font-family: var(--font-display); font-size: var(--step-1); line-height: 1; }
.hero-meta-item span { font-size: var(--step--1); color: var(--muted); }

.hero-visual { position: relative; aspect-ratio: 1 / 1; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-visual-fallback {
    position: absolute; inset: 0; border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, var(--forest-hi), var(--forest-lo) 70%);
    opacity: 0; transition: opacity .6s;
}
.hero-badge {
    position: absolute; z-index: 3; background: var(--paper-hi); border: 1px solid var(--line);
    border-radius: 14px; padding: .8rem 1.1rem; box-shadow: 0 18px 40px -24px rgba(20,20,16,.4);
    display: flex; align-items: center; gap: .7rem; font-size: var(--step--1);
}
.hero-badge svg { width: 20px; height: 20px; color: var(--forest); }
.hero-badge--tl { top: 6%; left: -4%; }
.hero-badge--br { bottom: 8%; right: -2%; }

/* ---------- Services (liste éditoriale, pas de cards glass) ---------- */
.svc-list { list-style: none; margin: clamp(1.75rem, 3.5vw, 2.75rem) 0 0; padding: 0; border-top: 1px solid var(--line); }
.svc-row {
    display: grid; grid-template-columns: auto 1fr auto auto; align-items: center;
    gap: clamp(1rem, 3vw, 2.5rem); padding: clamp(1.6rem, 3vw, 2.4rem) 0;
    border-bottom: 1px solid var(--line);
    transition: padding .55s var(--ease), background-color .55s var(--ease);
}
.svc-row:hover {
    padding-left: clamp(.75rem, 2vw, 1.75rem);
    padding-right: clamp(.5rem, 1.5vw, 1rem);
    background-color: color-mix(in srgb, var(--forest) 4%, transparent);
}
.svc-idx { font-family: var(--font-display); font-size: var(--step--1); color: var(--brass); font-weight: 600; }
.svc-title { font-size: var(--step-2); }
.svc-desc { margin: .5rem 0 0; color: var(--muted); max-width: 42ch; }
.svc-tags { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: flex-end; }
.svc-tags span { font-size: var(--step--1); color: var(--ink-soft); border: 1px solid var(--line); border-radius: 999px; padding: .3rem .8rem; white-space: nowrap; }
.svc-arrow {
    width: 52px; height: 52px; flex: none; display: grid; place-items: center;
    border: 1.5px solid var(--ink); border-radius: 50%; color: var(--ink);
    transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease), transform .5s var(--ease);
}
.svc-arrow svg { width: 20px; height: 20px; transition: transform .5s var(--ease); }
.svc-row:hover .svc-arrow { background: var(--forest); border-color: var(--forest); color: var(--paper-hi); }
.svc-row:hover .svc-arrow svg { transform: translate(2px, -2px); }

@media (max-width: 860px) {
    .svc-row { grid-template-columns: auto 1fr auto; }
    .svc-tags { display: none; }
}
@media (max-width: 560px) {
    .svc-row { grid-template-columns: 1fr auto; grid-template-areas: "idx arrow" "main main"; row-gap: .8rem; }
    .svc-idx { grid-area: idx; }
    .svc-arrow { grid-area: arrow; }
    .svc-main { grid-area: main; }
}

/* ---------- Page hero (sous-pages) ---------- */
.page-hero { padding-top: clamp(8rem, 16vh, 12rem); padding-bottom: clamp(2rem, 5vw, 4rem); }
.page-title { font-size: var(--step-4); margin-top: 1.1rem; max-width: 18ch; }
.page-hero .lead { margin-top: 1.5rem; }

/* ---------- Sector chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip {
    border: 1px solid var(--line); border-radius: 999px; padding: .5rem 1.1rem;
    font-size: var(--step--1); background: var(--paper-hi); color: var(--ink-soft);
    transition: border-color .4s var(--ease), color .4s, transform .4s var(--ease);
}
.chip:hover { border-color: var(--forest); color: var(--forest); transform: translateY(-2px); }

/* ---------- Modèles ---------- */
.models-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.8rem); margin-top: clamp(1.5rem, 3vw, 2.5rem); }
.model-card {
    border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
    background: var(--paper-hi); display: flex; flex-direction: column;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.model-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -30px rgba(20,20,16,.4); border-color: var(--forest); }
.model-thumb { aspect-ratio: 4 / 3; display: grid; place-items: center; color: var(--paper-hi); position: relative; }
.model-thumb svg { width: 34%; height: auto; opacity: .92; }
.model-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.model-body h3 { font-size: var(--step-1); }
.model-body p { color: var(--muted); font-size: var(--step-0); }
.model-meta { margin-top: auto; padding-top: .8rem; display: flex; justify-content: space-between; align-items: center; }
.badge-soon { font-size: var(--step--1); color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: .2rem .75rem; }

/* ---------- Steps / process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); margin-top: clamp(1.5rem, 3vw, 2.5rem); }
.step { border-top: 2px solid var(--forest); padding-top: 1.2rem; }
.step-num { font-family: var(--font-display); color: var(--brass); font-size: var(--step--1); font-weight: 600; }
.step h3 { font-size: var(--step-1); margin: .5rem 0 .4rem; }
.step p { color: var(--muted); font-size: var(--step-0); margin: 0; }

/* ---------- Statement (manifeste) ---------- */
.statement { font-family: var(--font-display); font-size: var(--step-3); line-height: 1.08; letter-spacing: -.02em; max-width: 22ch; }
.statement em { color: var(--forest); font-style: normal; }

/* ---------- Split 2 colonnes ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.stack-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 1rem; }
.stack-list li { display: flex; gap: .8rem; align-items: flex-start; color: var(--ink-soft); }
.stack-list svg { color: var(--forest); flex: none; width: 1.2em; height: 1.2em; margin-top: .2em; }

/* ---------- CTA band ---------- */
.cta-band {
    background: var(--forest); color: var(--paper-hi); border-radius: clamp(18px, 3vw, 30px);
    padding: clamp(2.2rem, 5vw, 4rem); display: grid; grid-template-columns: 1.5fr auto;
    gap: 2rem; align-items: center;
}
.cta-band h2 { color: var(--paper-hi); font-size: var(--step-3); max-width: 20ch; }
.cta-band p { color: color-mix(in srgb, var(--paper) 72%, transparent); margin-top: .8rem; max-width: 44ch; }
.cta-band .btn-brass { background: var(--brass); color: var(--ink); }
.cta-band .btn-brass:hover { background: var(--brass-hi); }

/* ---------- Tarifs ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.8rem); margin-top: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
.plan { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.2rem); background: var(--paper-hi); display: flex; flex-direction: column; gap: 1.1rem; }
.plan.is-featured { border-color: var(--forest); box-shadow: 0 26px 50px -32px rgba(30,77,58,.5); position: relative; }
.plan-badge { position: absolute; top: -.75rem; left: 1.6rem; background: var(--forest); color: var(--paper-hi); font-size: var(--step--1); font-weight: 600; padding: .28rem .85rem; border-radius: 999px; }
.plan h3 { font-size: var(--step-2); }
.plan-price { font-family: var(--font-display); font-size: var(--step-3); line-height: 1; }
.plan-price small { font-family: var(--font-body); font-size: var(--step--1); color: var(--muted); font-weight: 500; }
.plan-desc { color: var(--muted); font-size: var(--step-0); margin-top: -.4rem; }
.plan ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.plan li { display: flex; gap: .6rem; color: var(--ink-soft); font-size: var(--step-0); }
.plan li svg { color: var(--forest); flex: none; width: 1.1em; height: 1.1em; margin-top: .22em; }
.plan .btn { margin-top: auto; justify-content: center; }

/* ---------- FAQ ---------- */
.faq { margin-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 1.15rem 0; }
.faq summary { font-family: var(--font-display); font-size: var(--step-1); cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--forest); font-size: 1.5em; line-height: 1; transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); margin: .8rem 0 0; max-width: 64ch; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); margin-top: clamp(2rem, 4vw, 3rem); align-items: start; }
.contact-methods { display: grid; gap: 1rem; }
.contact-method { display: flex; gap: 1rem; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.3rem; background: var(--paper-hi); transition: border-color .4s, transform .4s var(--ease); }
.contact-method:hover { border-color: var(--forest); transform: translateY(-3px); }
.contact-method .ic { width: 46px; height: 46px; flex: none; display: grid; place-items: center; border-radius: 12px; background: color-mix(in srgb, var(--forest) 10%, transparent); color: var(--forest); }
.contact-method .ic svg { width: 20px; height: 20px; }
.contact-method b { display: block; }
.contact-method span { color: var(--muted); font-size: var(--step--1); }

/* ---------- Form ---------- */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: var(--step--1); font-weight: 600; color: var(--ink-soft); }
.field input, .field select, .field textarea {
    font: inherit; color: var(--ink); background: var(--paper-hi); border: 1px solid var(--line);
    border-radius: 12px; padding: .85rem 1rem; width: 100%;
    transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--forest);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--forest) 15%, transparent);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-status { font-size: var(--step--1); margin: 0; min-height: 1.2em; }
.form-status[data-state="ok"] { color: var(--forest); font-weight: 600; }
.form-status[data-state="err"] { color: #b3261e; font-weight: 600; }

/* ---------- Prose (légal) ---------- */
.prose { max-width: 68ch; }
.prose h2 { font-size: var(--step-2); margin-top: 2.6rem; }
.prose p { color: var(--ink-soft); margin: .8rem 0; }
.prose a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Responsive (composants) ---------- */
@media (max-width: 960px) {
    .models-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .plans { grid-template-columns: 1fr; }
    .split, .contact-grid { grid-template-columns: 1fr; }
    .cta-band { grid-template-columns: 1fr; text-align: left; }
}
@media (max-width: 560px) {
    .models-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer { position: relative; z-index: 2; background: var(--ink); color: var(--paper); padding-block: clamp(3.5rem, 7vw, 6rem); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer-brand .brand-name { color: var(--paper); }
.footer-brand .brand-name span { color: var(--brass-hi); }
.footer-brand p { color: color-mix(in srgb, var(--paper) 60%, transparent); max-width: 34ch; margin-top: 1rem; }
.footer-col h4 { font-family: var(--font-body); font-size: var(--step--1); letter-spacing: .12em; text-transform: uppercase; color: var(--brass-hi); margin-bottom: 1rem; }
.footer-col a { display: block; padding-block: .35rem; color: color-mix(in srgb, var(--paper) 78%, transparent); }
.footer-col a:hover { color: var(--paper); }
.footer-socials { display: flex; gap: .8rem; margin-top: 1.4rem; }
.footer-socials a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid color-mix(in srgb, var(--paper) 22%, transparent); border-radius: 10px; }
.footer-socials a:hover { border-color: var(--brass-hi); color: var(--brass-hi); }
.footer-socials svg { width: 18px; height: 18px; }
.footer-bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid color-mix(in srgb, var(--paper) 16%, transparent); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: var(--step--1); color: color-mix(in srgb, var(--paper) 55%, transparent); }
.footer-bottom a { color: color-mix(in srgb, var(--paper) 78%, transparent); }
.footer-bottom a:hover { color: var(--paper); }

/* ---------- Reveal / motion ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }

[data-tilt] { transform-style: preserve-3d; transition: transform .3s var(--ease); will-change: transform; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { width: min(260px, 68vw); margin: 2.25rem auto 0; }
    .hero-badge { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
    .nav-links, .nav-cta .btn { display: none; }
    .nav-toggle { display: inline-flex; }
    .footer-top { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
}
