:root {
    --ink: #13231E;
    --pine: #1C352D;
    --pine-soft: #27443A;
    --stone: #EFEAE0;
    --stone-deep: #E3DCCD;
    --paper: #FAF8F3;
    --brass: #A8853C;
    --brass-soft: #C2A35E;
    --text: #2B2F2C;
    --text-soft: #5C635E;
    --text-inverse: #EDE9DE;
    --text-inverse-soft: #A9B3AB;
    --line: rgba(19, 35, 30, .14);
    --line-inverse: rgba(237, 233, 222, .16);
    --radius: 6px;
    --font-display: 'Marcellus', Georgia, serif;
    --font-body: 'Mulish', 'Segoe UI', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box }
html { scroll-behavior: smooth }
@media (prefers-reduced-motion:reduce) {
    html { scroll-behavior: auto }
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important }
}
body { font-family: var(--font-body); color: var(--text); background: var(--paper); font-size: 17px; line-height: 1.7; -webkit-font-smoothing: antialiased }
img { max-width: 100%; display: block }
a { color: inherit; text-decoration: none }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px }
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px }
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--brass); display: inline-flex; align-items: center; gap: 14px }
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--brass) }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.18; letter-spacing: .01em; text-wrap: balance }
h2 { font-size: clamp(30px, 4vw, 44px); color: var(--ink) }
.section { padding: 104px 0 }
.section-head { max-width: 680px; margin-bottom: 56px }
.section-head p { margin-top: 18px; color: var(--text-soft); font-size: 18px }

.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease }
.js .reveal.visible { opacity: 1; transform: none }

/* Topbar */
.topbar { background: var(--ink); color: var(--text-inverse-soft); font-size: 13px; letter-spacing: .04em }
.topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 16px }
.topbar a { color: var(--text-inverse); transition: color .2s }
.topbar a:hover { color: var(--brass-soft) }
.topbar .tb-right { display: flex; gap: 22px }

/* Nav */
header.nav { position: sticky; top: 0; z-index: 100; background: rgba(250,248,243,.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line) }
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 78px }
.brand { display: flex; align-items: center; gap: 14px }
.brand-mark { width: 46px; height: 46px; border: 1px solid var(--brass); border-radius: 2px; display: grid; place-items: center; font-family: var(--font-display); font-size: 15px; color: var(--ink); letter-spacing: .08em; position: relative }
.brand-mark::after { content: ""; position: absolute; inset: 3px; border: 1px solid rgba(168,133,60,.35); border-radius: 1px }
.brand-text { display: flex; flex-direction: column; line-height: 1.25 }
.brand-text strong { font-family: var(--font-display); font-weight: 400; font-size: 17px; color: var(--ink); letter-spacing: .03em }
.brand-text span { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-soft) }
nav.menu { display: flex; gap: 30px; font-size: 14.5px; font-weight: 600 }
nav.menu a { color: var(--text); padding: 6px 0; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s }
nav.menu a:hover { color: var(--brass) }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 28px; border-radius: var(--radius); font-weight: 700; font-size: 15px; letter-spacing: .02em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; cursor: pointer; border: none }
.btn:hover { transform: translateY(-2px) }
.btn-primary { background: var(--pine); color: var(--text-inverse); box-shadow: 0 6px 18px rgba(19,35,30,.22) }
.btn-primary:hover { background: var(--pine-soft) }
.btn-brass { background: var(--brass); color: #fff; box-shadow: 0 6px 18px rgba(168,133,60,.3) }
.btn-brass:hover { background: #96762F }
.btn-ghost { background: transparent; color: var(--text-inverse); border: 1px solid var(--line-inverse) }
.btn-ghost:hover { border-color: var(--brass-soft); color: var(--brass-soft) }
.btn-outline { background: transparent; color: var(--pine); border: 1px solid var(--pine) }
.btn-outline:hover { background: var(--pine); color: var(--text-inverse) }
.nav .btn { padding: 11px 22px; font-size: 14px }
.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s }

/* Hero */
.hero {
    background:
        radial-gradient(1100px 600px at 85% -10%, rgba(168,133,60,.16), transparent 60%),
        linear-gradient(165deg, rgba(19,35,30,.96) 0%, rgba(28,53,45,.88) 55%, rgba(19,35,30,.94) 100%),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=70') center 30%/cover no-repeat;
    color: var(--text-inverse); position: relative; overflow: hidden
}
.hero .container { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(0,.75fr); gap: 64px; align-items: center; padding-top: 110px; padding-bottom: 120px }
.hero h1 { font-size: clamp(38px,5.2vw,62px); color: #fff; margin: 26px 0 24px }
.hero h1 em { font-style: normal; color: var(--brass-soft) }
.hero p.lead { font-size: 19px; color: var(--text-inverse-soft); max-width: 560px; font-weight: 300; line-height: 1.8 }
.hero p.lead strong { color: var(--text-inverse); font-weight: 600 }
.hero-ctas { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap }
.hero-meta { display: flex; gap: 34px; margin-top: 54px; padding-top: 30px; border-top: 1px solid var(--line-inverse); flex-wrap: wrap }
.hero-meta div { font-size: 13.5px; color: var(--text-inverse-soft); letter-spacing: .02em }
.hero-meta strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: 17px; color: var(--text-inverse); margin-bottom: 3px; letter-spacing: .04em }
.hero-card { background: rgba(250,248,243,.06); border: 1px solid var(--line-inverse); border-radius: 8px; padding: 36px 32px; backdrop-filter: blur(6px) }
.hero-card h3 { font-size: 13px; font-family: var(--font-body); font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--brass-soft); margin-bottom: 22px }
.hero-card ul { list-style: none }
.hero-card li { padding: 13px 0; border-bottom: 1px solid var(--line-inverse); display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: var(--text-inverse); font-weight: 300 }
.hero-card li:last-child { border-bottom: none }
.hero-card li svg { flex-shrink: 0; margin-top: 4px }

/* Bandeau domaines */
.domains-band { background: var(--paper); border-bottom: 1px solid var(--line) }
.domains-band .container { display: grid; grid-template-columns: repeat(3,1fr) }
.band-item { padding: 34px 30px; border-left: 1px solid var(--line); display: flex; gap: 18px; align-items: center; transition: background .25s }
.band-item:first-child { border-left: none }
.band-item:hover { background: var(--stone) }
.band-item .num { font-family: var(--font-display); font-size: 15px; color: var(--brass); border: 1px solid rgba(168,133,60,.4); width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0 }
.band-item strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: 18px; color: var(--ink) }
.band-item span { font-size: 13.5px; color: var(--text-soft) }

/* À propos */
.about { background: var(--paper) }
.about .container { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 72px; align-items: center }
.portrait { position: relative; aspect-ratio: 4/5; border-radius: 8px; overflow: hidden; background: radial-gradient(420px 320px at 70% 20%, rgba(168,133,60,.25), transparent 65%), linear-gradient(160deg, var(--pine) 0%, var(--ink) 90%); display: grid; place-items: center }
.portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block }
.portrait::after { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(237,233,222,.22); border-radius: 5px }
.portrait .placeholder { text-align: center; color: var(--text-inverse-soft); font-size: 13px; letter-spacing: .12em; text-transform: uppercase }
.portrait .placeholder .initials { font-family: var(--font-display); font-size: 84px; color: rgba(237,233,222,.5); letter-spacing: .06em; display: block; margin-bottom: 14px }
.about h2 { margin: 20px 0 26px }
.about p { color: var(--text-soft); margin-bottom: 18px }
.about p strong { color: var(--ink); font-weight: 700 }
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 34px }
.value { background: var(--stone); border-radius: var(--radius); padding: 20px 22px; border: 1px solid var(--line) }
.value strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: 17px; color: var(--ink); margin-bottom: 5px }
.value span { font-size: 14px; color: var(--text-soft); line-height: 1.55; display: block }

/* Domaines */
.expertise { background: var(--stone) }
.domain { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 52px; margin-bottom: 34px; display: grid; grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr); gap: 56px }
.domain:last-child { margin-bottom: 0 }
.domain .d-head .tag { font-size: 11.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--brass) }
.domain h3 { font-size: clamp(24px,2.6vw,32px); color: var(--ink); margin: 14px 0 18px }
.domain .d-head > p { color: var(--text-soft) }
.domain .d-head .clients { margin-top: 26px; padding: 18px 22px; background: var(--stone); border: 1px solid var(--line); border-radius: var(--radius); font-size: 14.5px; color: var(--text-soft) }
.domain .d-head .clients strong { color: var(--brass); display: block; margin-bottom: 4px; font-size: 13px; letter-spacing: .14em; text-transform: uppercase }
.domain .d-head .btn { margin-top: 30px }
.d-lists h4 { font-family: var(--font-body); font-size: 12.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--line) }
.d-lists ul { list-style: none; margin-bottom: 30px }
.d-lists li { padding: 8px 0 8px 26px; position: relative; font-size: 15.5px; color: var(--text-soft) }
.d-lists li::before { content: ""; position: absolute; left: 2px; top: 17px; width: 7px; height: 7px; border-radius: 1px; background: var(--brass); transform: rotate(45deg) }
.d-lists li strong { color: var(--ink); font-weight: 600 }
.d-media { margin: 0 0 28px; border-radius: 8px; overflow: hidden; position: relative; aspect-ratio: 16/8; border: 1px solid var(--line) }
.d-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease }
.d-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(150deg,rgba(19,35,30,.32),rgba(168,133,60,.10)); pointer-events: none }
.domain:hover .d-media img { transform: scale(1.04) }
.d-media figcaption { position: absolute; left: 0; bottom: 0; z-index: 2; background: var(--ink); color: var(--brass-soft); font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; padding: 8px 16px; border-radius: 0 6px 0 0 }

/* Méthode */
.method { background: var(--ink); color: var(--text-inverse); position: relative; overflow: hidden }
.method::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg,transparent,var(--brass),transparent); opacity: .6 }
.method h2 { color: #fff }
.method .section-head p { color: var(--text-inverse-soft) }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line-inverse); border: 1px solid var(--line-inverse); border-radius: 10px; overflow: hidden }
.step { background: var(--ink); padding: 38px 30px; transition: background .25s }
.step:hover { background: var(--pine) }
.step .s-num { font-family: var(--font-display); font-size: 15px; color: var(--brass-soft); display: inline-grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(194,163,94,.45); border-radius: 50%; margin-bottom: 22px }
.step strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: 19px; color: #fff; margin-bottom: 10px; letter-spacing: .02em }
.step p { font-size: 14.5px; color: var(--text-inverse-soft); font-weight: 300 }

/* Avis */
.reviews { background: var(--paper) }

/* Bandeau note Google */
.g-rating-bar { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 40px; padding: 12px 20px; background: var(--stone); border: 1px solid var(--line); border-radius: 8px }
.g-score { font-family: var(--font-display); font-size: 22px; color: var(--ink) }
.g-stars-bar { color: #FBBC04; font-size: 17px; letter-spacing: 1px }
.g-count { font-size: 14px; color: var(--text-soft) }

/* Carrousel — grid track : 100% résout contre la largeur visible, pas le scroll width */
.reviews-carousel { display: flex; align-items: center; gap: 14px }
.reviews-grid { display: grid; grid-template-columns: repeat(5, calc((100% - 44px) / 3)); gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; flex: 1; min-width: 0 }
.reviews-grid::-webkit-scrollbar { display: none }
.g-card { scroll-snap-align: start; min-width: 0 }
.cr-btn { width: 42px; height: 42px; min-width: 42px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff; cursor: pointer; display: grid; place-items: center; color: var(--ink); box-shadow: 0 2px 8px rgba(0,0,0,.07); transition: border-color .2s, color .2s, box-shadow .2s }
.cr-btn:hover { border-color: var(--brass); color: var(--brass); box-shadow: 0 4px 14px rgba(0,0,0,.12) }
.cr-btn:disabled { opacity: .3; pointer-events: none }

/* Carte style Google */
.review { background: #fff; border: 1px solid var(--line); border-radius: 10px; display: flex; flex-direction: column; position: relative }
.review.g-card { padding: 24px 26px; gap: 0; box-shadow: 0 1px 4px rgba(0,0,0,.07), 0 4px 14px rgba(0,0,0,.04) }
.review.g-card::before { display: none }
.g-top { display: flex; align-items: center; gap: 11px; margin-bottom: 10px }
.g-av { width: 40px; height: 40px; border-radius: 50%; background: var(--av, #999); color: #fff; display: grid; place-items: center; font-size: 15px; font-weight: 700; flex-shrink: 0; font-family: var(--font-body) }
.g-info { flex: 1; min-width: 0 }
.g-info strong { display: block; font-size: 14px; color: var(--ink); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis }
.g-info time { font-size: 12px; color: var(--text-soft); display: block; margin-top: 1px }
.g-badge { flex-shrink: 0; opacity: .9 }
.g-stars { color: #FBBC04; font-size: 13px; letter-spacing: 1px; display: block; margin-bottom: 10px }
.review.g-card p { font-style: normal; font-size: 14.5px; padding-top: 0; color: var(--text-soft); line-height: 1.65 }
.g-text-wrap { position: relative; max-height: 7em; overflow: hidden }
.g-text-wrap.expanded { max-height: none }
.g-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 44px; background: linear-gradient(transparent, #fff); pointer-events: none }
.g-more { display: block; background: none; border: none; padding: 8px 0 0; font-size: 13px; font-weight: 700; color: var(--brass); cursor: pointer; font-family: var(--font-body); text-align: left; line-height: 1 }
.g-more:hover { color: var(--ink) }

/* Bouton "Voir sur Google" */
.reviews-footer { margin-top: 42px; text-align: center }
.g-cta-btn { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: var(--ink); border: 1.5px solid var(--line); font-family: var(--font-body); font-size: 15px; font-weight: 600; padding: 14px 30px; border-radius: 8px; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.07); transition: border-color .2s, color .2s, transform .2s, box-shadow .2s; text-decoration: none }
.g-cta-btn:hover { border-color: var(--brass); color: var(--brass); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.11) }

.stars { color: var(--brass); font-size: 14px; letter-spacing: 3px }

/* FAQ */
.faq { background: var(--stone) }
.faq-list { max-width: 820px }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 28px; text-align: left; font-family: var(--font-display); font-size: 18px; color: var(--ink); letter-spacing: .01em }
.faq-q .chev { transition: transform .3s; color: var(--brass); flex-shrink: 0 }
.faq-item.open .chev { transform: rotate(180deg) }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease }
.faq-a p { padding: 0 28px 24px; color: var(--text-soft); font-size: 15.5px }

/* Articles */
.articles { background: var(--paper) }
.articles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px }
.article-card { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s }
.article-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(19,35,30,.1) }
.article-visual { height: 180px; position: relative; overflow: hidden; background: linear-gradient(150deg,var(--pine),var(--ink)); display: flex; align-items: center; justify-content: center }
.article-visual span { font-family: var(--font-display); font-size: 52px; color: rgba(237,233,222,.25) }
.article-visual img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; position: absolute; inset: 0 }
.article-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg,rgba(19,35,30,.30),rgba(19,35,30,.05)); pointer-events: none }
.article-card:hover .article-visual img { transform: scale(1.06) }
.article-body { padding: 28px; display: flex; flex-direction: column; gap: 12px; flex: 1 }
.article-body .tag { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--brass) }
.article-body h2, .article-body h3 { font-size: 19px; color: var(--ink); line-height: 1.35; text-wrap: balance }
.article-body p { font-size: 14.5px; color: var(--text-soft); flex: 1 }
.article-body .more { font-size: 14px; font-weight: 700; color: var(--pine); display: inline-flex; align-items: center; gap: 8px }
.article-card:hover .more { color: var(--brass) }

/* Contact */
.contact { background: var(--ink); color: var(--text-inverse); position: relative; overflow: hidden }
.contact::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg,transparent,var(--brass),transparent); opacity: .6 }
.contact h2 { color: #fff }
.contact .container { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: 72px }
.contact .intro p { color: var(--text-inverse-soft); margin: 20px 0 36px; font-weight: 300; line-height: 1.8 }
.coords { list-style: none; display: flex; flex-direction: column; gap: 6px }
.coords li { display: flex; gap: 18px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line-inverse) }
.coords li:last-child { border-bottom: none }
.coords .ic { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(194,163,94,.4); display: grid; place-items: center; color: var(--brass-soft); flex-shrink: 0 }
.coords strong { display: block; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-inverse-soft); font-weight: 700 }
.coords a, .coords span.val { font-size: 16px; color: var(--text-inverse) }
.coords a:hover { color: var(--brass-soft) }
.form-card { background: var(--paper); border-radius: 12px; padding: 46px 44px; color: var(--text); box-shadow: 0 30px 70px rgba(0,0,0,.35) }
.form-card h3 { font-size: 24px; color: var(--ink); margin-bottom: 8px }
.form-card > p { font-size: 14.5px; color: var(--text-soft); margin-bottom: 30px }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px }
.f-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px }
.f-row .f-field { margin-bottom: 0 }
.f-field label { font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink) }
.f-field input, .f-field select, .f-field textarea { font-family: var(--font-body); font-size: 15.5px; color: var(--text); padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: border-color .2s, box-shadow .2s; width: 100% }
.f-field textarea { min-height: 120px; resize: vertical }
.f-field input:focus, .f-field select:focus, .f-field textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(168,133,60,.15) }
.form-note { font-size: 12.5px; color: var(--text-soft); margin-top: 16px }
#contactSuccess { display:none; margin-top:20px; padding:20px; background:var(--stone); border-radius:8px; color:var(--ink); font-size:15px }

/* Footer */
footer { background: #0D1A16; color: var(--text-inverse-soft); font-size: 14px }
footer .container { padding-top: 64px; padding-bottom: 34px }
.f-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid var(--line-inverse) }
.f-grid h4 { font-family: var(--font-display); font-weight: 400; color: #fff; font-size: 17px; margin-bottom: 18px; letter-spacing: .04em }
.f-grid ul { list-style: none }
.f-grid li { margin-bottom: 10px }
.f-grid a:hover { color: var(--brass-soft) }
.f-grid .f-brand p { margin-top: 14px; font-weight: 300; max-width: 320px }
.f-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; gap: 20px; flex-wrap: wrap; font-size: 12.5px }
.disclaimer { font-size: 12px; color: rgba(169,179,171,.7); margin-top: 18px; max-width: 760px; line-height: 1.6 }

/* WhatsApp */
.wa-float { position: fixed; right: 24px; bottom: 24px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 10px 26px rgba(0,0,0,.28); transition: transform .2s }
.wa-float:hover { transform: scale(1.08) }

/* Responsive */
@media (max-width:980px) {
    .hero .container { grid-template-columns: 1fr; gap: 48px; padding-top: 80px; padding-bottom: 90px }
    .about .container { grid-template-columns: 1fr; gap: 48px }
    .portrait { max-width: 420px }
    .domain { grid-template-columns: 1fr; gap: 36px; padding: 38px 32px }
    .steps { grid-template-columns: 1fr 1fr }
    .articles-grid { grid-template-columns: 1fr }
    .reviews-grid { grid-template-columns: repeat(5, calc((100% - 22px) / 2)) }
    .reviews-carousel { gap: 10px }
    .contact .container { grid-template-columns: 1fr; gap: 52px }
    .f-grid { grid-template-columns: 1fr; gap: 36px }
    .domains-band .container { grid-template-columns: 1fr }
    .band-item { border-left: none; border-top: 1px solid var(--line) }
    .band-item:first-child { border-top: none }
}
@media (max-width:760px) {
    nav.menu { position: absolute; top: 78px; left: 0; right: 0; background: var(--paper); flex-direction: column; gap: 0; border-bottom: 1px solid var(--line); padding: 10px 28px 20px; box-shadow: 0 20px 40px rgba(19,35,30,.12); visibility: hidden; opacity: 0; transform: translateY(-6px); transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s }
    nav.menu.open { visibility: visible; opacity: 1; transform: none; transition: opacity .22s ease, transform .22s ease }
    nav.menu a { padding: 13px 0; border-bottom: 1px solid var(--line) }
    .burger { display: block }
    .nav .btn { display: none }
    .steps { grid-template-columns: 1fr }
    .values { grid-template-columns: 1fr }
    .f-row { grid-template-columns: 1fr }
    .section { padding: 72px 0 }
    .form-card { padding: 34px 26px }
    .reviews-grid { grid-template-columns: repeat(5, 85%) }
    .cr-btn { display: none }
}
