/* Barber Shop Factory — Hay Riad, Rabat.
   Design system fidele au kit: noir #0D0D0D / anthracite #1F1F1F / acier #D9D9D9 / blanc / ambre #FFC107 (accent discret).
   Cinzel (titres, nav) + Montserrat (corps, boutons). Direction: atelier industriel, aviation vintage.
   Ambre traite comme un murmure: logo, ornement, survols, fines regles. Boutons monochromes, ambre au survol.
   Static hand-written CSS, partagee sur toutes les pages. */

:root {
  --noir: #0D0D0D;
  --noir-2: #080808;
  --anthracite: #1B1B1B;
  --anthracite-2: #151515;
  --acier: #E7E4DE;         /* texte clair sur fond sombre */
  --acier-2: #C4C1BA;
  --concrete: #D9D5CC;      /* fond des sections claires */
  --concrete-2: #CFCBC1;
  --blanc: #FFFFFF;
  --ambre: #FFC107;         /* accent, murmure */
  --ambre-2: #E4AC10;
  --bronze: #7A5A2A;        /* accent sur fond clair (ambre illisible sur clair) */
  --gris: #8C877E;
  --gris-2: #6C6862;
  --line: rgba(231, 228, 222, 0.14);   /* fine regle neutre sur sombre */
  --line-amber: rgba(255, 193, 7, 0.30);
  --line-dark: rgba(20, 20, 20, 0.14);  /* regle sur clair */
  --serif: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --sans: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap: 1200px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--noir); color: var(--acier);
  font-family: var(--sans); font-weight: 400; line-height: 1.75;
  overflow-x: hidden; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 26px; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 300; background: var(--ambre); color: #17130a; padding: 10px 16px; font-weight: 600; }
.skip-link:focus { left: 12px; top: 12px; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; color: var(--acier); letter-spacing: .005em; text-transform: uppercase; }
h1 em, h2 em, h3 em { font-style: normal; font-weight: 300; }
.eyebrow { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .34em; text-transform: uppercase; color: var(--ambre); }
.eyebrow-line { display: inline-flex; align-items: center; gap: 14px; font-size: 11px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--ambre); margin-bottom: 20px; }
.eyebrow-line::before { content: ""; width: 38px; height: 1px; background: var(--ambre); display: inline-block; opacity: .8; }

/* Propeller / diamond ornament divider */
.orn { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 auto 18px; max-width: 240px; }
.orn::before, .orn::after { content: ""; height: 1px; flex: 1; background: linear-gradient(90deg, transparent, var(--line-amber)); }
.orn::after { background: linear-gradient(90deg, var(--line-amber), transparent); }
.orn span { width: 8px; height: 8px; border: 1px solid var(--ambre); transform: rotate(45deg); }
.orn.dark::before { background: linear-gradient(90deg, transparent, rgba(122,90,42,.5)); }
.orn.dark::after { background: linear-gradient(90deg, rgba(122,90,42,.5), transparent); }
.orn.dark span { border-color: var(--bronze); }

/* ============ BUTTONS (monochrome au repos, ambre au survol) ============ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; padding: 15px 30px; cursor: pointer; border: 1px solid transparent; transition: transform .35s var(--ease), background .35s, color .35s, border-color .35s, box-shadow .35s; white-space: nowrap; }
.btn-primary { background: var(--ambre); color: #1a1408; border-color: var(--ambre); }
.btn-primary:hover { background: var(--ambre-2); border-color: var(--ambre-2); color: #1a1408; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255,193,7,.26); }
.btn-ghost { background: transparent; color: var(--acier); border-color: rgba(231,228,222,.4); }
.btn-ghost:hover { border-color: var(--ambre); color: var(--ambre); transform: translateY(-2px); }
.btn-underline { display: inline-block; font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--acier); padding-bottom: 8px; position: relative; border: 0; background: none; }
.btn-underline::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 62px; background: var(--acier-2); transition: width .4s ease, background .4s; }
.btn-underline:hover { color: var(--ambre); }
.btn-underline:hover::after { width: 100%; background: var(--ambre); }
.arrow { width: 20px; height: 9px; }
.arrow path { stroke: currentColor; stroke-width: 1.5; fill: none; }

/* ============ HEADER / NAV ============ */
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 200; transition: background .4s ease, box-shadow .4s ease, border-color .4s; background: linear-gradient(180deg, rgba(6,6,6,.78), rgba(6,6,6,0)); border-bottom: 1px solid transparent; }
.site-header.scrolled { background: rgba(9,9,9,.96); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); box-shadow: 0 10px 30px rgba(0,0,0,.5); }
.header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 82px; }
.brand { justify-self: start; display: flex; align-items: center; }
.brand-plate { height: 46px; width: auto; transition: height .35s ease; }
.site-header.scrolled .brand-plate { height: 42px; }
.nav-center { justify-self: center; display: flex; align-items: center; gap: 36px; }
.nav-link { position: relative; font-family: var(--serif); font-size: 13px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--acier); padding: 6px 0; transition: color .3s; }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--ambre); transition: width .35s ease; }
.nav-link:hover, .nav-link.active { color: var(--ambre); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta { justify-self: end; padding: 11px 22px; }
.nav-toggle { display: none; width: 46px; height: 46px; background: transparent; border: 0; cursor: pointer; flex-direction: column; justify-content: center; align-items: flex-end; gap: 6px; justify-self: end; z-index: 260; }
.nav-toggle span { display: block; width: 27px; height: 2px; background: var(--ambre); transition: transform .3s, opacity .3s, width .3s; }
.nav-toggle span:nth-child(2) { width: 20px; }

/* Mobile menu: sibling of header -> no backdrop-filter containing-block trap */
.mobile-menu { display: none; }

/* ============ HERO (nu: titre + sous-titre + boutons) ============ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 128px 0 96px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: url(assets/hero.webp) center/cover no-repeat; animation: kenburns 28s ease-in-out infinite alternate; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,8,.74) 0%, rgba(8,8,8,.5) 42%, rgba(8,8,8,.9) 100%); }
@keyframes kenburns { from { transform: scale(1.05); } to { transform: scale(1.15) translateY(-1.5%); } }
.hero-inner { position: relative; z-index: 2; max-width: 780px; padding: 0 24px; }
.hero h1 { font-family: var(--serif); font-weight: 700; font-size: clamp(44px, 7.4vw, 88px); line-height: 1.0; letter-spacing: .008em; margin-bottom: 22px; color: var(--blanc); text-shadow: 0 2px 30px rgba(0,0,0,.45); }
.hero h1 em { font-style: italic; }
.hero-sub { font-size: clamp(14px, 1.6vw, 17px); color: #E9E5DD; font-weight: 400; max-width: 560px; margin: 0 auto 38px; }
.hero-cta { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }

/* Keyword strip under hero (separateurs diamant, pas de middot) */
.keystrip { background: var(--noir-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.keystrip ul { list-style: none; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 16px 44px; padding: 24px 26px; }
.keystrip li { position: relative; font-family: var(--serif); font-size: 14px; letter-spacing: .26em; text-transform: uppercase; color: var(--acier-2); }
.keystrip li + li::before { content: ""; position: absolute; left: -24px; top: 50%; width: 7px; height: 7px; border: 1px solid var(--ambre); transform: translateY(-50%) rotate(45deg); }

/* ============ SECTIONS ============ */
.section { padding: 102px 0; }
.section.alt { background: var(--anthracite-2); }
.section.light { background: var(--concrete); color: #33302b; }
.section.light h1, .section.light h2, .section.light h3, .section.light h4 { color: #141210; }
.section.light .eyebrow, .section.light .eyebrow-line { color: var(--bronze); }
.section.light .eyebrow-line::before { background: var(--bronze); }
.section.light .btn-underline { color: #33302b; }
.section.light .btn-underline::after { background: var(--bronze); }
.section.light p { color: #55514a; }

.sec-head { text-align: center; padding: 0 26px; margin-bottom: 54px; }
.sec-head .eyebrow { display: block; margin-bottom: 14px; }
.sec-head h2 { font-size: clamp(27px, 4.4vw, 44px); }

/* ============ STORY (photo cadree + texte) ============ */
.story-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.story-visual { position: relative; max-width: 460px; width: 100%; aspect-ratio: 4 / 5; overflow: hidden; justify-self: center; }
.story-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.story-visual:hover img { transform: scale(1.05); }
.story-visual .frame { position: absolute; inset: 15px; border: 1px solid var(--line-amber); z-index: 2; pointer-events: none; }
.story-text h2 { font-size: clamp(26px, 4.2vw, 42px); margin-bottom: 20px; }
.story-text > p { font-size: clamp(14px, 1.5vw, 16px); margin-bottom: 18px; }
.story-text .btn-underline { margin-top: 12px; }

/* ============ SERVICE IMAGE CARDS ============ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.scard { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid var(--line); }
.scard-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); z-index: 0; }
.scard::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,8,8,.06) 0%, rgba(8,8,8,.26) 44%, rgba(8,8,8,.9) 100%); transition: background .4s; }
.scard:hover .scard-img { transform: scale(1.07); }
.scard-body { position: absolute; left: 0; bottom: 0; z-index: 3; padding: 26px 24px; width: 100%; }
.scard-num { font-family: var(--serif); font-size: 12px; letter-spacing: .2em; color: var(--ambre); display: block; margin-bottom: 8px; }
.scard-body h3 { font-size: 20px; color: var(--blanc); margin-bottom: 8px; }
.scard-body p { font-size: 13px; color: #DcD6Cb; line-height: 1.6; opacity: 0; max-height: 0; transform: translateY(8px); transition: opacity .45s, max-height .45s, transform .45s; overflow: hidden; }
.scard:hover .scard-body p { opacity: 1; max-height: 120px; transform: none; }
.scard-line { width: 44px; height: 2px; background: var(--ambre); margin-top: 14px; }

/* ============ EN BREF / VALUES (icones kit) ============ */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.value { text-align: center; padding: 0 8px; }
.value .vico { display: block; width: 40px; height: 40px; margin: 0 auto 15px; }
.value .vico svg { display: block; width: 40px; height: 40px; fill: none; stroke: var(--ambre); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.value h3 { font-size: 14px; letter-spacing: .18em; text-transform: uppercase; color: var(--acier); margin-bottom: 9px; font-family: var(--sans); font-weight: 600; }
.value p { font-size: 13.5px; color: var(--gris); line-height: 1.6; }
.section.light .value p { color: #6b6157; }
.section.light .value h3 { color: #141210; }
.section.light .value .vico svg { stroke: var(--bronze); }

/* ============ PAGE BANNER ============ */
.page-banner { position: relative; padding: 168px 0 72px; text-align: center; overflow: hidden; }
.page-banner .pb-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.page-banner::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,8,8,.8), rgba(8,8,8,.92)); }
.page-banner .wrap { position: relative; z-index: 2; }
.page-banner .eyebrow { display: block; margin-bottom: 14px; }
.page-banner h1 { font-size: clamp(34px, 5.6vw, 60px); }
.breadcrumb { display: inline-flex; gap: 11px; align-items: center; margin-top: 18px; font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gris); font-family: var(--sans); }
.breadcrumb a { color: var(--gris); transition: color .3s; }
.breadcrumb a:hover { color: var(--ambre); }
.breadcrumb .sep, .breadcrumb .cur { color: var(--ambre); }

/* ============ SERVICES LIST (services page) ============ */
.svc-list { display: grid; gap: 18px; }
.svc-row { display: grid; grid-template-columns: 62px 1fr auto; align-items: center; gap: 22px; padding: 26px 30px; background: var(--anthracite-2); border: 1px solid var(--line); transition: border-color .35s, transform .35s; }
.svc-row:hover { border-color: var(--line-amber); transform: translateX(4px); }
.svc-ico { width: 46px; height: 46px; }
.svc-ico svg { display: block; width: 46px; height: 46px; fill: none; stroke: var(--ambre); stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.svc-main h3 { font-size: 20px; margin-bottom: 6px; }
.svc-main p { font-size: 14px; color: var(--gris); line-height: 1.6; }
.svc-tag { font-family: var(--serif); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ambre); white-space: nowrap; }

/* ============ TARIFS ============ */
.pricing { display: grid; gap: 50px; }
.price-group h2 { font-size: clamp(21px, 3.2vw, 28px); margin-bottom: 4px; }
.price-group .grp-sub { font-size: 13px; color: var(--gris); letter-spacing: .02em; margin-bottom: 24px; }
.price-list { display: grid; gap: 1px; }
.price-item { display: flex; align-items: baseline; gap: 14px; padding: 16px 4px; border-bottom: 1px solid var(--line); }
.price-item:last-child { border-bottom: 0; }
.price-item .pname { font-size: 15.5px; color: var(--acier); font-weight: 400; flex: 0 1 auto; }
.price-item .pname small { display: block; font-size: 12px; color: var(--gris); font-weight: 400; margin-top: 3px; }
.price-item .pdot { flex: 1 1 auto; min-width: 16px; align-self: flex-end; border-bottom: 1px dotted rgba(231,228,222,.28); transform: translateY(-5px); }
.price-item .pprice { font-family: var(--serif); font-size: 19px; color: var(--ambre); letter-spacing: .02em; white-space: nowrap; font-variant-numeric: tabular-nums; }
.price-item .pprice.soft { font-size: 13px; font-family: var(--sans); color: var(--gris); letter-spacing: .04em; text-transform: uppercase; }
.price-note { margin-top: 34px; font-size: 12.5px; color: var(--gris); text-align: center; letter-spacing: .02em; }

/* ============ INSTAGRAM STRIP ============ */
.igblock { background: var(--anthracite-2); }
.ig-head { display: grid; grid-template-columns: 1.4fr auto; align-items: end; gap: 24px; margin-bottom: 40px; }
.ig-head .eyebrow { display: block; margin-bottom: 14px; }
.ig-head h2 { font-size: clamp(26px, 4vw, 42px); margin-bottom: 14px; }
.ig-head .lead { font-size: 15px; color: var(--gris); max-width: 560px; }
.ig-handle { display: inline-flex; align-items: center; gap: 9px; font-family: var(--sans); font-weight: 600; font-size: 13px; letter-spacing: .06em; color: var(--acier); white-space: nowrap; padding-bottom: 4px; transition: color .3s; }
.ig-handle svg { width: 20px; height: 20px; }
.ig-handle:hover { color: var(--ambre); }
.ig-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.ig-post { position: relative; display: block; aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid var(--line); }
.ig-post img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.ig-post::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,8,0) 40%, rgba(8,8,8,.82) 100%); transition: background .4s; }
.ig-post:hover img { transform: scale(1.07); }
.ig-post__cap { position: absolute; left: 0; bottom: 0; z-index: 2; display: flex; align-items: center; gap: 8px; padding: 14px 14px; font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: .02em; color: var(--acier); width: 100%; }
.ig-post__cap svg { width: 15px; height: 15px; flex: 0 0 15px; opacity: .85; }
.ig-cta { text-align: center; margin-top: 42px; }

/* ============ REVIEWS ============ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { position: relative; padding: 34px 28px 30px; background: var(--anthracite-2); border: 1px solid var(--line); }
.section.light .review { background: #fff; border-color: var(--line-dark); }
.review .rq { font-family: var(--serif); font-size: 46px; line-height: 1; color: var(--ambre); opacity: .55; display: block; margin-bottom: 8px; height: 24px; }
.section.light .review .rq { color: var(--bronze); }
.review p { font-size: 14.5px; color: var(--acier-2); line-height: 1.7; margin-bottom: 20px; }
.section.light .review p { color: #4c483f; }
.review .rname { font-family: var(--serif); font-size: 14px; letter-spacing: .06em; color: var(--acier); }
.section.light .review .rname { color: #201d18; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 52px; align-items: start; }
.contact-lead h2 { font-size: clamp(25px, 3.8vw, 38px); margin-bottom: 18px; }
.contact-lead > p { color: var(--gris); margin-bottom: 30px; max-width: 430px; }
.ci-list { display: grid; gap: 20px; margin-bottom: 32px; }
.ci-item { display: flex; gap: 18px; align-items: flex-start; }
.ci-item .ci-ico { flex: 0 0 46px; height: 46px; border: 1px solid var(--line); display: grid; place-items: center; }
.ci-item .ci-ico svg { width: 22px; height: 22px; fill: none; stroke: var(--ambre); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.ci-item h3 { font-family: var(--serif); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ambre); margin-bottom: 6px; }
.ci-item p { font-size: 15px; color: var(--acier); font-weight: 400; }
.ci-item p a { color: var(--acier); transition: color .3s; }
.ci-item p a:hover { color: var(--ambre); }
.contact-map { position: relative; min-height: 460px; height: 100%; }
.map-frame { position: absolute; inset: -1px; border: 1px solid var(--line); pointer-events: none; z-index: 2; }
.contact-map iframe { display: block; width: 100%; height: 100%; min-height: 460px; filter: grayscale(.4) contrast(1.05) brightness(.85); border: 0; }

/* Hours grid */
.hours-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.hours-row:last-child { border-bottom: 0; }
.hours-row .d { color: var(--acier); letter-spacing: .06em; text-transform: uppercase; font-size: 12px; }
.hours-row .t { color: var(--gris); font-variant-numeric: tabular-nums; }
.hours-row.today .d { color: var(--ambre); }
.hours-row.today .t { color: var(--acier); }

/* ============ CTA BAND ============ */
.cta-band { position: relative; text-align: center; padding: 100px 0; overflow: hidden; }
.cta-band .cta-bg { position: absolute; inset: 0; z-index: 0; background: url(assets/interior.webp) center/cover; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,8,8,.9), rgba(8,8,8,.84)); }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band .eyebrow { display: block; margin-bottom: 14px; }
.cta-band h2 { font-size: clamp(26px, 4.2vw, 42px); margin-bottom: 26px; }

/* ============ FOOTER ============ */
.site-footer { background: var(--noir-2); border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1.3fr; gap: 46px; padding: 68px 0 46px; }
.footer-logo { height: 74px; width: auto; margin-bottom: 18px; }
.footer-blurb { font-size: 13.5px; color: var(--gris); font-weight: 400; max-width: 340px; margin-bottom: 20px; }
.footer-phone { font-family: var(--serif); font-size: 21px; color: var(--acier); letter-spacing: .02em; transition: color .3s; }
.footer-phone:hover { color: var(--ambre); }
.footer-col h4 { font-family: var(--serif); font-size: 15px; letter-spacing: .06em; color: var(--acier); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col ul a { font-size: 13.5px; color: var(--gris); transition: color .3s; }
.footer-col ul a:hover { color: var(--ambre); }
.footer-bottom { border-top: 1px solid var(--line); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-bottom span { font-size: 11.5px; color: #676767; letter-spacing: .03em; }
.credit { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--bronze); transition: color .3s; }
.credit:hover { color: var(--ambre); }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s ease, transform .9s var(--ease); }
.reveal.left { transform: translateY(30px); }
.reveal.right { transform: translateY(30px); }
.reveal.in { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s var(--ease); }
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(2) { transition-delay: .08s; }
.stagger.in > *:nth-child(3) { transition-delay: .16s; }
.stagger.in > *:nth-child(4) { transition-delay: .24s; }
.stagger.in > *:nth-child(5) { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .stagger > * { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .story-visual { max-width: 460px; }
  .values { grid-template-columns: repeat(2, 1fr); gap: 40px 26px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ig-head { grid-template-columns: 1fr; align-items: start; gap: 16px; }
  .ig-strip { grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band .cta-bg { background-attachment: scroll; }
}
@media (max-width: 760px) {
  .nav-center, .nav-cta { display: none; }
  .header-inner { grid-template-columns: 1fr auto; height: 72px; }
  .brand-plate { height: 40px; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; position: fixed; inset: 0; width: 100vw; height: 100vh; height: 100svh; background: var(--noir); z-index: 250; padding: 40px 24px; transform: translateY(-100%); transition: transform .45s var(--ease); }
  body.nav-open .mobile-menu { transform: translateY(0); }
  body.nav-open { overflow: hidden; }
  .mobile-menu .m-plate { height: 54px; width: auto; margin-bottom: 6px; }
  .mobile-menu .nav-link { font-family: var(--serif); font-size: 21px; color: var(--acier); }
  .mobile-menu .btn { margin-top: 10px; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { width: 27px; transform: translateY(-8px) rotate(-45deg); }
  .section { padding: 74px 0; }
  .page-banner { padding: 122px 0 54px; }
  .sec-head { margin-bottom: 40px; }
  .cards { grid-template-columns: 1fr; }
  .scard { aspect-ratio: 16 / 11; }
  .scard-body p { opacity: 1; max-height: 130px; transform: none; }
  .svc-row { grid-template-columns: 46px 1fr; gap: 15px; padding: 22px; }
  .svc-tag { grid-column: 2; }
  .ig-strip { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ig-post:nth-child(5) { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 14px; max-width: 320px; margin: 0 auto; }
  .hero-cta .btn { width: 100%; }
}
@media (max-width: 480px) {
  .values { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .keystrip ul { gap: 12px 34px; }
  .keystrip li { font-size: 12.5px; }
}
