/* King's Blade Barbershop — Agdal, Rabat.
   Kit-faithful design system: noir #121212 / charbon #2B2B2B / ivoire #F2EDE2 / dore #C8A26B / brun #5A4A3A.
   Playfair Display (titres, logo) + Montserrat (accents, corps). Signature: rythme deux tons ivoire/noir + sceau circulaire.
   Static hand-written CSS, partage sur toutes les pages. */

:root {
  --noir: #121212;
  --noir-2: #0d0d0d;
  --charbon: #2B2B2B;
  --charbon-2: #222020;
  --ivoire: #F2EDE2;
  --ivoire-2: #E7DECF;
  --or: #C8A26B;
  --or-clair: #E0C593;
  --or-fonce: #A47C45;
  --brun: #5A4A3A;
  --bordeaux: #7B2E33;
  --taupe: #B7A78B;
  --gris: #8B8B8B;
  --hair: rgba(200, 162, 107, 0.22);
  --serif: "Playfair Display", Georgia, "Times New Roman", 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(--ivoire);
  font-family: var(--sans); font-weight: 300; 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(--or); color: #17130a; padding: 10px 16px; font-weight: 600; }
.skip-link:focus { left: 12px; top: 12px; }

/* ============ TYPOGRAPHY HELPERS ============ */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.14; color: var(--ivoire); }
.eyebrow { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .34em; text-transform: uppercase; color: var(--or); }
.eyebrow-line { display: inline-flex; align-items: center; gap: 14px; font-size: 11px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--or); margin-bottom: 20px; }
.eyebrow-line::before { content: ""; width: 40px; height: 1px; background: var(--or); display: inline-block; }
.motto { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .32em; text-transform: uppercase; color: var(--or); }

/* Crown ornament divider */
.crown { display: block; width: 34px; height: auto; margin: 0 auto 16px; }
.crown path { fill: none; stroke: var(--or); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.rule-orn { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 18px auto 0; max-width: 220px; }
.rule-orn::before, .rule-orn::after { content: ""; height: 1px; flex: 1; background: linear-gradient(90deg, transparent, var(--or)); }
.rule-orn::after { background: linear-gradient(90deg, var(--or), transparent); }
.rule-orn span { width: 7px; height: 7px; background: var(--or); transform: rotate(45deg); }

/* ============ BUTTONS ============ */
.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: 16px 32px; cursor: pointer; border: 1px solid var(--or); transition: transform .35s var(--ease), background .35s, color .35s, box-shadow .35s; white-space: nowrap; }
.btn-gold { background: var(--or); color: #1a1410; border-color: var(--or); }
.btn-gold:hover { background: var(--or-clair); border-color: var(--or-clair); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(200,162,107,.24); }
.btn-outline { background: transparent; color: var(--or); }
.btn-outline:hover { background: rgba(200,162,107,.09); 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(--ivoire); padding-bottom: 8px; position: relative; border: 0; background: none; }
.btn-underline::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 68px; background: var(--or); transition: width .4s ease; }
.btn-underline:hover { color: var(--or); }
.btn-underline:hover::after { width: 100%; }

/* ============ 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(10,10,10,.72), rgba(10,10,10,0)); border-bottom: 1px solid transparent; }
.site-header.scrolled { background: rgba(13,13,13,.96); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--hair); box-shadow: 0 10px 30px rgba(0,0,0,.5); }
.header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 88px; }
.brand { justify-self: start; display: flex; align-items: center; gap: 13px; }
.brand-seal { height: 50px; width: 50px; border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1; align-items: flex-start; }
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 19px; letter-spacing: .12em; color: var(--or); }
.brand-tag { font-size: 8px; letter-spacing: .36em; text-transform: uppercase; color: var(--taupe); margin-top: 5px; }
.nav-center { justify-self: center; display: flex; align-items: center; gap: 38px; }
.nav-link { position: relative; font-family: var(--serif); font-size: 15px; font-weight: 500; letter-spacing: .04em; color: var(--ivoire); padding: 6px 0; transition: color .3s; }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--or); transition: width .35s ease; }
.nav-link:hover, .nav-link.active { color: var(--or); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta { justify-self: end; padding: 12px 24px; }
.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(--or); transition: transform .3s, opacity .3s, width .3s; }
.nav-toggle span:nth-child(2) { width: 20px; }

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

/* ============ HERO ============ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 130px 0 100px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: url(assets/hero.webp) center/cover no-repeat; animation: kenburns 26s ease-in-out infinite alternate; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,.72) 0%, rgba(10,10,10,.55) 38%, rgba(10,10,10,.86) 100%); }
@keyframes kenburns { from { transform: scale(1.04); } to { transform: scale(1.14) translateY(-1.5%); } }
.hero-inner { position: relative; z-index: 2; max-width: 760px; padding: 0 24px; }
.hero-seal { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 26px; box-shadow: 0 10px 34px rgba(0,0,0,.5); }
.hero .motto { display: block; margin-bottom: 20px; }
.hero h1 { font-family: var(--serif); font-weight: 700; font-size: clamp(42px, 7vw, 82px); letter-spacing: .01em; margin-bottom: 22px; color: var(--ivoire); }
.hero h1 em { font-style: italic; }
.hero-sub { font-size: clamp(14px, 1.6vw, 17px); color: #E4DED2; font-weight: 300; max-width: 540px; margin: 0 auto 38px; }
.hero-cta { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; width: 24px; height: 40px; border: 1px solid var(--hair); border-radius: 14px; display: flex; justify-content: center; }
.hero-scroll span { width: 3px; height: 8px; background: var(--or); border-radius: 3px; margin-top: 7px; animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(10px); } }

/* Keyword strip under hero */
.keystrip { background: var(--noir-2); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.keystrip ul { list-style: none; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px 40px; padding: 26px 26px; }
.keystrip li { position: relative; font-family: var(--serif); font-size: 15px; letter-spacing: .28em; text-transform: uppercase; color: var(--or); }
.keystrip li + li::before { content: ""; position: absolute; left: -22px; top: 50%; width: 6px; height: 6px; background: var(--or-fonce); transform: translateY(-50%) rotate(45deg); }

/* ============ SECTIONS ============ */
.section { padding: 104px 0; }
.section.alt { background: var(--charbon-2); }
.section.light { background: var(--ivoire); color: var(--charbon); }
.section.light h1, .section.light h2, .section.light h3, .section.light h4 { color: var(--noir); }
.section.light .eyebrow, .section.light .eyebrow-line, .section.light .motto { color: var(--or-fonce); }
.section.light .eyebrow-line::before { background: var(--or-fonce); }
.section.light .btn-underline { color: var(--charbon); }
.section.light p { color: #5c534a; }

.sec-head { text-align: center; padding: 0 26px; margin-bottom: 56px; }
.sec-head .eyebrow { display: block; margin-bottom: 14px; }
.sec-head h2 { font-size: clamp(28px, 4.6vw, 46px); }

/* ============ STORY (framed photo + text, light) ============ */
.story-inner { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 62px; }
.story-visual { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.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: 16px; border: 1px solid rgba(200,162,107,.55); z-index: 2; pointer-events: none; }
.story-text h2 { font-size: clamp(28px, 4.4vw, 44px); margin-bottom: 22px; }
.story-text > p { font-size: clamp(14px, 1.5vw, 16px); margin-bottom: 20px; }
.story-text .btn-underline { margin-top: 10px; }

/* ============ 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 rgba(200,162,107,.18); }
.scard-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(1.12) contrast(1.03); transition: transform .9s var(--ease), filter .4s; z-index: 0; }
.scard::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,10,10,.05) 0%, rgba(10,10,10,.22) 42%, rgba(10,10,10,.88) 100%); transition: background .4s; }
.scard:hover .scard-img { transform: scale(1.08); filter: brightness(1.18) contrast(1.03); }
.scard-body { position: absolute; left: 0; bottom: 0; z-index: 3; padding: 28px 26px; width: 100%; }
.scard-num { font-family: var(--serif); font-size: 13px; letter-spacing: .2em; color: var(--or); display: block; margin-bottom: 8px; }
.scard-body h3 { font-size: 21px; color: var(--ivoire); margin-bottom: 8px; letter-spacing: .01em; }
.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: 110px; transform: none; }
.scard-line { width: 46px; height: 2px; background: var(--or); margin-top: 14px; }

/* ============ VALUES ============ */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.value { text-align: center; padding: 0 8px; }
.value .vico { display: flex; width: 40px; height: 40px; margin: 0 auto 16px; }
.value .vico svg { width: 100%; height: 100%; fill: none; stroke: var(--or); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.value h3 { font-size: 15px; letter-spacing: .2em; text-transform: uppercase; color: var(--or); margin-bottom: 10px; font-family: var(--sans); font-weight: 600; }
.value p { font-size: 13.5px; color: var(--taupe); line-height: 1.65; }
.section.light .value p { color: #6b6157; }
.section.light .value h3, .section.light .value .vico svg { color: var(--or-fonce); stroke: var(--or-fonce); }

/* ============ PAGE BANNER (inner pages) ============ */
.page-banner { position: relative; padding: 176px 0 76px; 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(10,10,10,.82), rgba(10,10,10,.9)); }
.page-banner .wrap { position: relative; z-index: 2; }
.page-banner .eyebrow { display: block; margin-bottom: 14px; }
.page-banner h1 { font-size: clamp(36px, 6vw, 64px); }
.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(--taupe); font-family: var(--sans); }
.breadcrumb a { color: var(--taupe); transition: color .3s; }
.breadcrumb a:hover { color: var(--or); }
.breadcrumb .sep, .breadcrumb .cur { color: var(--or); }

/* ============ SERVICES LIST (services page) ============ */
.svc-list { display: grid; gap: 20px; }
.svc-row { display: grid; grid-template-columns: 64px 1fr auto; align-items: center; gap: 24px; padding: 26px 30px; background: var(--charbon-2); border: 1px solid rgba(200,162,107,.14); transition: border-color .35s, transform .35s; }
.svc-row:hover { border-color: var(--or); transform: translateX(4px); }
.svc-ico { width: 46px; height: 46px; }
.svc-ico svg { width: 100%; height: 100%; fill: none; stroke: var(--or); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.svc-main h3 { font-size: 21px; margin-bottom: 6px; }
.svc-main p { font-size: 14px; color: var(--taupe); line-height: 1.6; }
.svc-tag { font-family: var(--serif); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--or); white-space: nowrap; }

/* ============ TARIFS ============ */
.pricing { display: grid; gap: 54px; }
.price-group h2 { font-size: clamp(22px, 3.4vw, 30px); margin-bottom: 6px; }
.price-group .grp-sub { font-size: 13px; color: var(--taupe); letter-spacing: .04em; margin-bottom: 26px; }
.price-list { display: grid; gap: 2px; }
.price-item { display: flex; align-items: baseline; gap: 14px; padding: 17px 4px; border-bottom: 1px dotted rgba(200,162,107,.28); }
.price-item:last-child { border-bottom: 0; }
.price-item .pname { font-size: 15.5px; color: var(--ivoire); font-weight: 400; flex: 0 1 auto; }
.price-item .pname small { display: block; font-size: 12px; color: var(--taupe); font-weight: 300; letter-spacing: .02em; margin-top: 3px; }
.price-item .pdot { flex: 1 1 auto; min-width: 16px; align-self: flex-end; border-bottom: 1px dotted rgba(200,162,107,.35); transform: translateY(-5px); }
.price-item .pprice { font-family: var(--serif); font-size: 19px; color: var(--or); letter-spacing: .02em; white-space: nowrap; font-variant-numeric: tabular-nums; }
.price-note { margin-top: 34px; font-size: 13px; color: var(--taupe); text-align: center; letter-spacing: .02em; }

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

/* Hours grid (contact + footer share styling) */
.hours-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 9px 0; border-bottom: 1px dotted rgba(200,162,107,.2); }
.hours-row:last-child { border-bottom: 0; }
.hours-row .d { color: var(--ivoire); letter-spacing: .08em; text-transform: uppercase; font-size: 12px; }
.hours-row .t { color: var(--taupe); font-variant-numeric: tabular-nums; }

/* ============ CTA BAND ============ */
.cta-band { position: relative; text-align: center; padding: 104px 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(10,10,10,.9), rgba(10,10,10,.82)); }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band .eyebrow { display: block; margin-bottom: 14px; }
.cta-band h2 { font-size: clamp(26px, 4.4vw, 44px); margin-bottom: 28px; }

/* ============ FOOTER ============ */
.site-footer { background: var(--noir-2); border-top: 1px solid var(--hair); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1.3fr; gap: 46px; padding: 72px 0 50px; }
.footer-brand-name { font-family: var(--serif); font-weight: 700; letter-spacing: .12em; color: var(--or); font-size: 22px; display: block; margin-bottom: 6px; }
.footer-brand-tag { font-size: 9px; letter-spacing: .34em; text-transform: uppercase; color: var(--taupe); display: block; margin-bottom: 18px; }
.footer-blurb { font-size: 13.5px; color: var(--taupe); font-weight: 300; max-width: 330px; margin-bottom: 20px; }
.footer-phone { font-family: var(--serif); font-size: 22px; color: var(--or); letter-spacing: .02em; }
.footer-col h4 { font-family: var(--serif); font-size: 16px; letter-spacing: .06em; color: var(--ivoire); margin-bottom: 20px; padding-bottom: 13px; border-bottom: 1px solid var(--hair); }
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col ul a { font-size: 13.5px; color: var(--taupe); transition: color .3s; }
.footer-col ul a:hover { color: var(--or); }
.footer-bottom { border-top: 1px solid var(--hair); 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: #6a6a6a; letter-spacing: .03em; }
.credit { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--or-fonce); transition: color .3s; }
.credit:hover { color: var(--or); }

/* ============ REVEAL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .9s ease, transform .9s var(--ease); }
.reveal.left { transform: translateX(-38px); }
.reveal.right { transform: translateX(38px); }
.reveal.in { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s var(--ease); }
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(2) { transition-delay: .1s; }
.stagger.in > *:nth-child(3) { transition-delay: .2s; }
.stagger.in > *:nth-child(4) { transition-delay: .3s; }

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

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .reveal.left, .reveal.right { transform: translateY(30px); }
  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .story-visual { max-width: 520px; margin: 0 auto; width: 100%; aspect-ratio: 4/5; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .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; }
  .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: 74px; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px; position: fixed; inset: 0; width: 100%; 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-seal { width: 74px; height: 74px; border-radius: 50%; margin-bottom: 8px; }
  .mobile-menu .nav-link { font-family: var(--serif); font-size: 22px; color: var(--ivoire); }
  .mobile-menu .btn { margin-top: 12px; }
  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: 76px 0; }
  .page-banner { padding: 128px 0 58px; }
  .sec-head { margin-bottom: 42px; }
  .cards { grid-template-columns: 1fr; }
  .scard { aspect-ratio: 16 / 11; }
  .scard-body p { opacity: 1; max-height: 120px; transform: none; }
  .svc-row { grid-template-columns: 48px 1fr; gap: 16px; padding: 22px; }
  .svc-tag { grid-column: 2; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 16px; 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: 14px 30px; }
}
