/* ── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #1a1a2e;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
address { font-style: normal; }
a { text-decoration: none; }

/* ── TOKENS — thème Dynamique ─────────────────────────────────────────────── */
:root {
  --nav-bg:          #ffffff;
  --nav-text:        #1a2a4a;
  --hero-overlay:    linear-gradient(125deg, #2a4580 40%, #3a5ea0 100%);
  --hero-text:       #ffffff;
  --accent:          #2a4580;
  --accent-light:    #edf1fa;
  --accent-btn:      #2a4580;
  --accent-btn-h:    #1e3464;
  --cta-bg:          #f26522;
  --cta-text:        #ffffff;
  --cta-hover:       #d9531a;
  --section-bg:      #f5f7fc;
  --section-alt:     #ffffff;
  --card-border:     #e0e8f5;
  --footer-bg:       #1a2a4a;
  --footer-text:     #8899bb;
  --badge:           #fff0e8;
  --badge-text:      #f26522;
  --divider:         #f26522;
  --text-muted:      #5a6a80;
  --text-dark:       #1a1a2e;
  --radius-sm:       8px;
  --radius-md:       12px;
  --radius-lg:       16px;
  --max-w:           1160px;
  --section-pad:     88px 24px;
}

/* ── PLACEHOLDER IMAGE ────────────────────────────────────────────────────── */
.img-placeholder {
  width: 100%;
  background: repeating-linear-gradient(45deg, #e8eef8, #e8eef8 10px, #f0f5ff 10px, #f0f5ff 20px);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── NAV ──────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  border-bottom: 1px solid #e0e8f5;
  box-shadow: 0 1px 12px rgba(0,0,0,.07);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--nav-text);
}
.nav__logo-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--cta-bg);
  color: var(--cta-text);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav__logo-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.3px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--nav-text);
  opacity: .8;
  transition: opacity .15s, color .15s;
}
.nav__link:hover { opacity: 1; }
.nav__link--active { color: var(--cta-bg); opacity: 1; }
.nav__cta {
  margin-left: 8px;
  background: var(--cta-bg);
  color: var(--cta-text);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; gap: 8px;
  transition: background .15s;
}
.nav__cta:hover { background: var(--cta-hover); color: var(--cta-text); }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--nav-text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--hero-overlay);
  min-height: 580px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero__texture {
  position: absolute; inset: 0;
  opacity: .04;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 500;
}
.hero__badge svg { color: var(--cta-bg); flex-shrink: 0; }
.hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--hero-text);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--cta-bg); }
.hero__desc {
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--cta-bg);
  color: var(--cta-text);
  padding: 16px 28px;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .15s;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--cta-hover); color: var(--cta-text); }
.btn-outline {
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
  padding: 16px 28px;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background .15s;
}
.btn-outline:hover { background: rgba(255,255,255,.2); }
.hero__trust {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 500;
}
.hero__trust-item svg { color: var(--cta-bg); }
.hero__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.hero__img img, .hero__img .img-placeholder { border-radius: var(--radius-lg); height: 400px; }

/* ── SECTION HEADERS ──────────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header__label {
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.section-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 10px;
  letter-spacing: -.5px;
}
.section-header__divider {
  width: 48px; height: 4px;
  background: var(--divider);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ── SERVICES ─────────────────────────────────────────────────────────────── */
.services { background: var(--section-alt); padding: var(--section-pad); }
.services__grid {
  max-width: var(--max-w);
  margin: 0 auto;
}
.services__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--section-bg);
  border-radius: 14px;
  padding: 32px 28px;
  border: 1px solid var(--card-border);
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
}
.service-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
}
.service-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.service-card p { color: var(--text-muted); font-size: 15px; line-height: 1.65; }
.services__cta { text-align: center; margin-top: 40px; }
.btn-accent {
  background: var(--accent-btn);
  color: #fff;
  padding: 14px 32px;
  border: none;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .15s;
  text-decoration: none;
}
.btn-accent:hover { background: var(--accent-btn-h); color: #fff; }

/* ── GALLERY ──────────────────────────────────────────────────────────────── */
.gallery { background: var(--section-bg); padding: var(--section-pad); }
.gallery__inner { max-width: var(--max-w); margin: 0 auto; }
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.gallery__item { position: relative; }
.gallery__item img,
.gallery__item .img-placeholder { border-radius: var(--radius-md); height: 260px; width: 100%; object-fit: cover; }
.gallery__tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  color: #fff;
}
.gallery__tag--avant { background: #ee0055; }
.gallery__tag--apres { background: var(--accent); }

/* ── ZONE ─────────────────────────────────────────────────────────────────── */
.zone { background: var(--section-alt); padding: var(--section-pad); }
.zone__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.zone__label {
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.zone h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 10px 0 20px;
  letter-spacing: -.5px;
}
.zone p { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.zone__tags { display: flex; flex-wrap: wrap; gap: 10px; }
.zone__tag {
  background: var(--accent-light);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.zone__tag svg { flex-shrink: 0; }
.zone__note { margin-top: 24px; font-size: 14px; color: #8899aa; }
.zone__note a { color: var(--accent); font-weight: 600; }
.zone__map img, .zone__map .img-placeholder { border-radius: var(--radius-lg); height: 360px; width: 100%; object-fit: cover; }

/* ── ABOUT ────────────────────────────────────────────────────────────────── */
.about { background: var(--section-bg); padding: var(--section-pad); }
.about__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__img-wrap { position: relative; }
.about__img-wrap img,
.about__img-wrap .img-placeholder { border-radius: var(--radius-lg); height: 420px; width: 100%; object-fit: cover; }
.about__badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--accent-btn);
  border-radius: 14px;
  padding: 20px 28px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  text-align: center;
}
.about__badge-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}
.about__badge-label { font-size: 13px; opacity: .85; margin-top: 4px; }
.about__content .section-header__label {
  display: block;
  text-align: left;
  margin-bottom: 0;
}
.about__content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 10px 0 20px;
  letter-spacing: -.5px;
}
.about__content p { color: var(--text-muted); font-size: 16px; line-height: 1.75; margin-bottom: 24px; }
.about__checks { list-style: none; margin-top: 8px; }
.about__check {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.about__check-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about__check span { color: #3a4a5a; font-size: 15px; font-weight: 500; }

/* ── TESTIMONIALS ─────────────────────────────────────────────────────────── */
.testimonials { background: var(--section-alt); padding: var(--section-pad); }
.testimonials__inner { max-width: var(--max-w); margin: 0 auto; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--section-bg);
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid var(--card-border);
}
.testimonial-card__stars { display: flex; gap: 2px; margin-bottom: 14px; color: #f0a500; }
.testimonial-card blockquote {
  color: #3a4a5a;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-card__name { font-weight: 700; color: var(--text-dark); font-size: 14px; }
.testimonial-card__loc { color: #8899aa; font-size: 13px; }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq { background: var(--section-bg); padding: var(--section-pad); }
.faq__inner { max-width: 760px; margin: 0 auto; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--section-alt);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s;
}
.faq__item.is-open { border-color: var(--accent); }
.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq__question span:first-child {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}
.faq__chevron {
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq__item.is-open .faq__chevron { transform: rotate(180deg); }
.faq__answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}
.faq__item.is-open .faq__answer { display: block; }

/* ── CTA BAND ─────────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--hero-overlay);
  padding: 72px 24px;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
  margin-bottom: 16px;
}
.cta-band p { color: rgba(255,255,255,.75); font-size: 17px; margin-bottom: 36px; }
.cta-band__btn {
  background: var(--cta-bg);
  color: var(--cta-text);
  padding: 18px 40px;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  display: inline-flex; align-items: center; gap: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
  letter-spacing: -.3px;
  transition: background .15s;
}
.cta-band__btn:hover { background: var(--cta-hover); color: var(--cta-text); }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.footer { background: var(--footer-bg); padding: 56px 24px 32px; }
.footer__inner { max-width: var(--max-w); margin: 0 auto; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
}
.footer__logo-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: var(--cta-bg);
  color: var(--cta-text);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer__col p,
.footer__col address { color: var(--footer-text); font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer__col h4 {
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 16px;
}
.footer__col nav a,
.footer__col address a {
  display: block;
  color: var(--footer-text);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color .15s;
}
.footer__col nav a:hover,
.footer__col address a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom span,
.footer__bottom a { color: var(--footer-text); font-size: 13px; }
.footer__bottom a:hover { color: #fff; }

/* ── SERVICES PAGE BANNER ─────────────────────────────────────────────────── */
.page-banner {
  background: var(--hero-overlay);
  padding: 64px 24px 48px;
}
.page-banner__inner { max-width: var(--max-w); margin: 0 auto; }
.page-banner h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
  margin-bottom: 12px;
}
.page-banner p { color: rgba(255,255,255,.75); font-size: 18px; }

/* ── CONTACT PAGE ─────────────────────────────────────────────────────────── */
.contact-section { background: var(--section-bg); padding: 80px 24px; min-height: 60vh; }
.contact-section__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info__label {
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.contact-info h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 10px 0 24px;
  letter-spacing: -.5px;
}
.contact-info > p { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin-bottom: 40px; }
.contact-info__items { display: flex; flex-direction: column; gap: 24px; }
.contact-info__item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info__item-label { font-weight: 600; color: var(--text-dark); font-size: 14px; margin-bottom: 2px; }
.contact-info__item-val { color: var(--text-muted); font-size: 15px; }

/* Form */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--card-border);
  box-shadow: 0 4px 32px rgba(0,0,0,.06);
}
.contact-form-wrap h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; font-weight: 600; color: #3a4a5a; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--card-border);
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  background: #fff;
  color: var(--text-dark);
  transition: border-color .15s;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent); }
.form-field textarea { height: 100px; resize: vertical; }
.btn-submit {
  background: var(--cta-bg);
  color: var(--cta-text);
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  margin-top: 4px;
  transition: opacity .15s;
}
.btn-submit:hover { opacity: .88; }
.btn-submit:disabled { opacity: .55; cursor: not-allowed; }

/* Success state */
.contact-success {
  text-align: center;
  padding: 40px 0;
  display: none;
}
.contact-success.is-visible { display: block; }
.contact-success__icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.contact-success h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.contact-success p { color: var(--text-muted); font-size: 15px; }

/* Error notice */
.form-notice {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
}
.form-notice.is-error { display: block; background: #fff0f0; color: #c0392b; border: 1px solid #fcc; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner,
  .zone__inner,
  .about__inner,
  .contact-section__inner { grid-template-columns: 1fr; gap: 40px; }

  .hero h1 { font-size: 38px; }
  .hero__img { order: -1; }
  .hero__img img, .hero__img .img-placeholder { height: 280px; }

  .about__badge { right: 0; }
  .about__img-wrap { margin-bottom: 40px; }

  .services__cards,
  .testimonials__grid { grid-template-columns: 1fr 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --section-pad: 64px 20px; }

  .nav__links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--nav-bg); padding: 16px 24px 24px; border-bottom: 1px solid #e0e8f5; box-shadow: 0 8px 24px rgba(0,0,0,.1); gap: 4px; }
  .nav__links.is-open { display: flex; }
  .nav__cta { margin-left: 0; margin-top: 8px; justify-content: center; }
  .nav__burger { display: flex; }
  .nav { position: relative; }

  .hero h1 { font-size: 30px; }
  .section-header h2, .about__content h2, .zone h2 { font-size: 30px; }
  .cta-band h2 { font-size: 26px; }
  .cta-band__btn { font-size: 18px; padding: 16px 28px; }
  .page-banner h1 { font-size: 32px; }

  .services__cards,
  .testimonials__grid,
  .gallery__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .contact-section__inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
}
