/* L.M. Bâtiment v1 — design moderne artisan Bretagne */
:root {
  --navy: #111111;
  --navy-2: #1a1a1a;
  --navy-3: #2a2a2a;
  --slate: #333333;
  --ink: #111111;
  --mute: #5c5c5c;
  --line: #e2e8f0;
  --cream: #f7f7f5;
  --sand: #efefeb;
  --white: #ffffff;
  --amber: #f5c518;
  --amber-2: #e0b000;
  --amber-soft: #fff8d6;
  --success: #1f7a4c;
  --danger: #b42318;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 12px 40px -16px rgba(15, 39, 68, .28);
  --shadow-sm: 0 6px 20px -10px rgba(15, 39, 68, .18);
  --font: 'Inter', system-ui, sans-serif;
  --display: 'Manrope', 'Inter', system-ui, sans-serif;
  --container: 1140px;
  --header-h: 118px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.2;
  margin: 0 0 .6em;
  color: var(--navy);
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--amber); color: #000; padding: .5rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .8rem 1.25rem; border-radius: 999px; border: 2px solid transparent;
  font-weight: 700; font-size: .95rem; cursor: pointer; transition: .2s ease;
  text-align: center; white-space: nowrap;
}
.btn-sm { padding: .55rem 1rem; font-size: .88rem; }
.btn-lg { padding: .95rem 1.5rem; font-size: 1rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  color: #fff; box-shadow: 0 10px 24px -12px rgba(15,39,68,.55);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-accent {
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  color: #1a1400; box-shadow: 0 10px 24px -12px rgba(232,163,23,.55);
}
.btn-accent:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-outline {
  border-color: var(--navy); color: var(--navy); background: transparent;
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost {
  border-color: rgba(255,255,255,.55); color: #fff; background: transparent;
}
.btn-ghost:hover { background: #fff; color: var(--navy); }
.btn-ghost-light {
  border-color: rgba(255,255,255,.4); color: #fff; background: rgba(255,255,255,.08);
}
.btn-ghost-light:hover { background: #fff; color: var(--navy); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px -16px rgba(15,39,68,.35);
}
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.88);
  font-size: .82rem;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; min-height: 36px; padding: .35rem 0;
}
.topbar a { color: inherit; }
.topbar a:hover { color: var(--amber); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar i { color: var(--amber); margin-right: .3rem; }
.topbar-whatsapp { font-size: 1.1rem; color: #25d366 !important; }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 72px;
}
.brand {
  display: flex; align-items: center; gap: .75rem; min-width: 0;
}
.brand img {
  height: 48px; width: auto; object-fit: contain;
  background: #fff; border-radius: 8px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-family: var(--display); font-size: 1.1rem; color: var(--navy); letter-spacing: -.01em;
}
.brand-text small { color: var(--mute); font-size: .75rem; font-weight: 500; }

.nav {
  display: flex; align-items: center; gap: .15rem 1.1rem;
}
.nav > a, .nav-drop-btn {
  font-weight: 600; font-size: .92rem; color: var(--slate);
  background: none; border: 0; cursor: pointer; padding: .4rem 0;
}
.nav > a:hover, .nav > a.is-active, .nav-drop-btn:hover, .nav-drop-btn.is-active {
  color: var(--navy);
}
.nav > a.is-active { box-shadow: inset 0 -2px 0 var(--amber); }

.nav-dropdown { position: relative; }
.nav-drop-btn i { font-size: .7rem; margin-left: .2rem; opacity: .7; }
.nav-drop-menu {
  position: absolute; top: calc(100% + .6rem); left: 0; min-width: 260px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: .5rem; display: none; z-index: 50;
}
.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown:focus-within .nav-drop-menu,
.nav-dropdown.is-open .nav-drop-menu { display: block; }
.nav-drop-menu a {
  display: flex; align-items: center; gap: .65rem;
  padding: .7rem .8rem; border-radius: 10px; font-weight: 600; font-size: .9rem; color: var(--slate);
}
.nav-drop-menu a i { color: var(--amber); width: 1.1rem; text-align: center; }
.nav-drop-menu a:hover, .nav-drop-menu a.is-active { background: var(--cream); color: var(--navy); }

.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  border-radius: 10px; background: #fff; padding: 10px; flex-direction: column; justify-content: space-between;
}
.nav-toggle span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: .2s; }

/* Hero */
.hero {
  position: relative; color: #fff;
  min-height: clamp(480px, 72vh, 680px);
  display: flex; align-items: center;
  background: var(--navy) center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(0,0,0,.92) 0%, rgba(17,17,17,.78) 48%, rgba(17,17,17,.25) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: 4.5rem 0 4rem; width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(232,163,23,.16); border: 1px solid rgba(232,163,23,.4);
  color: #ffd97a; padding: .4rem .8rem; border-radius: 999px;
  font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.hero h1 {
  color: #fff; font-size: clamp(1.85rem, 4.2vw, 3.1rem);
  max-width: 16ch; margin-bottom: .85rem; letter-spacing: -.02em;
}
.hero-lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem); color: rgba(255,255,255,.88);
  max-width: 52ch; margin-bottom: 1.6rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.8rem; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 1rem 1.75rem;
  padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat strong {
  display: block; font-family: var(--display); font-size: 1.45rem; color: var(--amber);
}
.hero-stat span { font-size: .85rem; color: rgba(255,255,255,.75); }

/* Sections */
.section { padding: 4.25rem 0; }
.section-alt { background: var(--cream); }
.section-head {
  max-width: 640px; margin: 0 auto 2.4rem; text-align: center;
}
.section-head .label {
  display: inline-block; color: var(--amber-2); font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; font-size: .75rem; margin-bottom: .55rem;
}
.section-head h2 { font-size: clamp(1.55rem, 2.8vw, 2.15rem); margin-bottom: .5rem; }
.section-head p { color: var(--mute); margin: 0; }

/* Cards */
.cards-3, .cards-4 {
  display: grid; gap: 1.25rem;
}
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card-media {
  aspect-ratio: 16/10; overflow: hidden; background: var(--navy-2); position: relative;
}
.service-card-media a { display: block; width: 100%; height: 100%; position: relative; cursor: zoom-in; }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.service-card:hover .service-card-media img { transform: scale(1.05); }
.service-card-body { padding: 1.15rem 1.2rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.service-card-body .icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--amber-soft); color: var(--amber-2); margin-bottom: .7rem;
}
.service-card h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.service-card p { color: var(--mute); font-size: .92rem; flex: 1; }
.service-card .link {
  margin-top: .8rem; font-weight: 700; color: var(--navy); font-size: .9rem;
}
.service-card .link i { margin-left: .25rem; transition: transform .2s; }
.service-card:hover .link i { transform: translateX(3px); }

/* Feature strip */
.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: -2.5rem; position: relative; z-index: 2;
}
.trust-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.15rem 1rem; text-align: center; box-shadow: var(--shadow-sm);
}
.trust-item i {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; margin: 0 auto .65rem;
  background: var(--navy); color: var(--amber); font-size: 1rem;
}
.trust-item strong { display: block; font-size: .95rem; color: var(--navy); margin-bottom: .2rem; }
.trust-item span { font-size: .84rem; color: var(--mute); }

/* About */
.about-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.5rem; align-items: center;
}
.about-visual {
  position: relative; border-radius: calc(var(--radius) + 4px); overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 4/3; background: var(--navy);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; left: 1rem; bottom: 1rem;
  background: rgba(15,39,68,.92); color: #fff; border-radius: 14px;
  padding: .9rem 1rem; border: 1px solid rgba(255,255,255,.12);
}
.about-badge strong { display: block; font-size: 1.6rem; color: var(--amber); font-family: var(--display); }
.about-copy .label { color: var(--amber-2); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; font-size: .75rem; }
.about-copy h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.about-copy p { color: var(--mute); }
.about-quote {
  margin-top: 1.2rem; padding: 1rem 1.1rem; border-left: 4px solid var(--amber);
  background: var(--cream); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic; color: var(--slate);
}
.about-quote cite { display: block; margin-top: .5rem; font-style: normal; font-weight: 700; color: var(--navy); }

/* Why / guarantees */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.25rem; box-shadow: var(--shadow-sm);
}
.why-card i {
  font-size: 1.35rem; color: var(--amber-2); margin-bottom: .7rem; display: block;
}
.why-card h3 { font-size: 1.05rem; }
.why-card p { color: var(--mute); font-size: .93rem; margin: 0; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
}
.gallery-item {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 1; background: var(--sand);
  box-shadow: var(--shadow-sm);
}
.gallery-item > a {
  display: block; width: 100%; height: 100%; position: relative; cursor: zoom-in;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute; inset: auto 0 0 0; z-index: 2; pointer-events: none;
  background: linear-gradient(transparent, rgba(10,24,42,.75));
  color: #fff; font-size: .78rem; padding: 1.5rem .7rem .55rem;
  opacity: 0; transition: .25s;
}
.gallery-item:hover figcaption { opacity: 1; }
.zoom-hint {
  position: absolute; top: .6rem; right: .6rem; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(15,39,68,.72); color: #fff;
  display: grid; place-items: center; font-size: .85rem;
  opacity: 0; transition: .2s; pointer-events: none;
}
.gallery-item:hover .zoom-hint,
.about-visual:hover .zoom-hint,
.service-card-media:hover .zoom-hint { opacity: 1; }
.about-visual > a, .service-card-media > a {
  display: block; width: 100%; height: 100%; position: relative; cursor: zoom-in;
}
.about-visual > a img { width: 100%; height: 100%; object-fit: cover; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(8, 16, 28, .92);
  display: none; align-items: center; justify-content: center;
  padding: 1rem; cursor: zoom-out;
}
.lightbox.is-open { display: flex; }
.lightbox-inner {
  position: relative; max-width: min(96vw, 1200px); max-height: 92vh;
  cursor: default;
}
.lightbox-inner img {
  max-width: 96vw; max-height: 88vh; width: auto; height: auto;
  object-fit: contain; border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  background: #111;
}
.lightbox-caption {
  color: rgba(255,255,255,.9); text-align: center;
  margin-top: .65rem; font-size: .92rem;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; border: 0; background: rgba(255,255,255,.12);
  color: #fff; width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; font-size: 1.1rem; display: grid; place-items: center;
  transition: background .15s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,.25);
}
.lightbox-close { top: .75rem; right: .75rem; position: fixed; }
.lightbox-prev { left: .75rem; top: 50%; transform: translateY(-50%); position: fixed; }
.lightbox-next { right: .75rem; top: 50%; transform: translateY(-50%); position: fixed; }
body.lightbox-open { overflow: hidden; }
@media (max-width: 640px) {
  .lightbox-prev, .lightbox-next { width: 38px; height: 38px; }
}

/* CTA band */
.cta-band {
  background:
    linear-gradient(120deg, rgba(0,0,0,.94), rgba(30,30,30,.88)),
    url('../../images/hero/hero.webp') center/cover;
  color: #fff; padding: 3.2rem 0;
}
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin-bottom: .35rem; }
.cta-band p { color: rgba(255,255,255,.85); margin: 0; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: .7rem; }

/* Service page */
.page-hero {
  background: linear-gradient(120deg, var(--navy), var(--navy-3));
  color: #fff; padding: 3rem 0 2.5rem;
}
.page-hero .breadcrumb {
  font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: .8rem;
}
.page-hero .breadcrumb a:hover { color: var(--amber); }
.page-hero h1 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); max-width: 18ch; }
.page-hero p { color: rgba(255,255,255,.88); max-width: 60ch; margin: 0; }

.service-layout {
  display: grid; grid-template-columns: 1.35fr .75fr; gap: 2rem; align-items: start;
}
.prose h2 { font-size: 1.35rem; margin-top: 1.6rem; }
.prose p { color: var(--mute); }
.highlight-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin: 1.2rem 0 1.6rem;
}
.highlight-list li {
  display: flex; gap: .55rem; align-items: flex-start;
  background: var(--cream); border-radius: 12px; padding: .75rem .85rem;
  font-weight: 600; font-size: .9rem; color: var(--navy);
}
.highlight-list i { color: var(--success); margin-top: .15rem; }
.item-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.item-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem;
  background: #fff;
}
.item-card h3 { font-size: 1rem; margin-bottom: .35rem; }
.item-card p { color: var(--mute); font-size: .9rem; margin: 0; }
.steps { counter-reset: step; display: grid; gap: .75rem; margin-top: 1rem; }
.steps li {
  counter-increment: step;
  display: grid; grid-template-columns: 36px 1fr; gap: .8rem; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: .85rem 1rem;
}
.steps li::before {
  content: counter(step);
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: var(--amber); font-weight: 800;
  display: grid; place-items: center; font-family: var(--display);
}
.side-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem; box-shadow: var(--shadow-sm); position: sticky; top: calc(var(--header-h) + 12px);
}
.side-card h3 { font-size: 1.1rem; }
.side-card .phone-big {
  display: block; font-family: var(--display); font-size: 1.35rem; font-weight: 800;
  color: var(--navy); margin: .5rem 0 1rem;
}
.side-card ul { margin: 0 0 1rem; }
.side-card li {
  padding: .4rem 0; border-bottom: 1px solid var(--line); font-size: .9rem; color: var(--mute);
  display: flex; gap: .5rem; align-items: center;
}
.side-card li i { color: var(--amber-2); }

/* Contact */
.contact-grid {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; align-items: start;
}
.contact-info-card {
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow);
}
.contact-info-card h2 { color: #fff; }
.contact-info-card p { color: rgba(255,255,255,.8); }
.contact-lines { margin: 1.2rem 0 1.4rem; display: grid; gap: .9rem; }
.contact-lines a, .contact-lines span {
  display: flex; gap: .75rem; align-items: flex-start; color: #fff;
}
.contact-lines i {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.1);
  display: grid; place-items: center; color: var(--amber); flex-shrink: 0;
}
.contact-lines strong { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.6); }
.contact-form-wrap {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-sm);
}
.contact-form label { display: block; margin-bottom: 1rem; }
.contact-form label span {
  display: block; font-weight: 600; font-size: .88rem; color: var(--navy); margin-bottom: .35rem;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 12px;
  padding: .75rem .9rem; background: #fff; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--navy-3); box-shadow: 0 0 0 3px rgba(28,66,104,.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .8rem; color: var(--mute); margin: -.3rem 0 1rem; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.alert {
  padding: .85rem 1rem; border-radius: 12px; margin-bottom: 1rem; font-weight: 600; font-size: .92rem;
}
.alert-success { background: #e8f7ef; color: var(--success); border: 1px solid #b7e4c7; }
.alert-error { background: #fdecea; color: var(--danger); border: 1px solid #f5c2c0; }

/* Footer */
.site-footer {
  background: #0a0a0a; color: rgba(255,255,255,.78); padding-top: 3rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.3fr .8fr .9fr .9fr; gap: 2rem; padding-bottom: 2.2rem;
}
.footer-brand strong {
  display: block; color: #fff; font-family: var(--display); font-size: 1.2rem; margin-bottom: .7rem;
}
.footer-brand p { font-size: .9rem; line-height: 1.55; }
.footer-certs { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; align-items: center; }
.footer-certs img {
  height: 42px; width: auto; background: #fff; border-radius: 8px; padding: .25rem .4rem; object-fit: contain;
}
.site-footer h3 {
  color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .9rem;
}
.footer-links li, .footer-contact li { margin-bottom: .45rem; font-size: .92rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--amber); }
.footer-contact i { color: var(--amber); width: 1.1rem; margin-right: .35rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 1rem 0;
  font-size: .85rem;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--amber); }

/* Floating */
.float-call, .float-wa {
  position: fixed; z-index: 90; right: 1rem;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; font-size: 1.25rem;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,.35);
  transition: transform .2s;
}
.float-call { bottom: 5.2rem; background: var(--navy); }
.float-wa { bottom: 1.4rem; background: #25d366; }
.float-call:hover, .float-wa:hover { transform: scale(1.06); }

/* Mentions */
.legal { max-width: 760px; }
.legal h2 { font-size: 1.2rem; margin-top: 1.5rem; }
.legal p, .legal li { color: var(--mute); }
.legal ul { list-style: disc; padding-left: 1.2rem; margin-bottom: 1rem; }

/* Responsive */
@media (max-width: 1024px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .cards-3, .why-grid, .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .service-layout, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .side-card { position: static; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .hide-md { display: none !important; }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 110px 1rem auto 1rem;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow); padding: 1rem;
    flex-direction: column; align-items: stretch; gap: .2rem;
    display: none; max-height: calc(100vh - 130px); overflow: auto;
  }
  .nav.is-open { display: flex; }
  .nav > a, .nav-drop-btn { padding: .75rem .5rem; text-align: left; width: 100%; }
  .nav-drop-menu {
    position: static; box-shadow: none; border: 0; display: none; padding: 0 0 .4rem .4rem;
  }
  .nav-dropdown.is-open .nav-drop-menu { display: block; }
  .nav-cta { margin-top: .4rem; width: 100%; }
  .hero h1 { max-width: none; }
  .form-row, .highlight-list, .item-grid, .cards-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hide-sm { display: none !important; }
  .cards-3, .cards-4, .why-grid, .trust-strip, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { gap: .55rem; }
  .hero-actions .btn, .cta-band-actions .btn { width: 100%; }
  .brand-text small { display: none; }
  .topbar-left span { display: none; }
}
@media (max-width: 400px) {
  .cards-3, .cards-4, .why-grid, .trust-strip, .gallery-grid { grid-template-columns: 1fr; }
}
