:root {
  --primary: #08243d;
  --green: #245c1f;
  --accent-green: #7faf2a;
  --cream: #f3eadc;
  --sand: #d9c4a5;
  --text-dark: #0b1f33;
  --muted: #516171;
  --line: rgba(11, 31, 51, 0.12);
  --card: rgba(255, 255, 255, 0.96);
  --shadow: 0 18px 38px rgba(8, 36, 61, 0.08);
  --shadow-strong: 0 26px 58px rgba(8, 36, 61, 0.15);
  --radius: 8px;
  --container: min(1200px, calc(100% - 24px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(circle at top left, rgba(127, 175, 42, 0.12), transparent 20%),
    linear-gradient(180deg, #faf7f1 0%, var(--cream) 100%);
  line-height: 1.68;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.intro-active {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
iframe:focus-visible {
  outline: 3px solid rgba(127, 175, 42, 0.35);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 12px;
  z-index: 60;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--primary);
  color: #fff;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 12px;
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(127, 175, 42, 0.2), transparent 26%),
    linear-gradient(145deg, rgba(8, 36, 61, 0.98), rgba(11, 31, 51, 0.99));
  opacity: 0;
  visibility: hidden;
  transition: opacity 520ms ease, visibility 520ms ease;
}

body.intro-active .site-intro {
  opacity: 1;
  visibility: visible;
}

body.intro-done .site-intro {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: min(620px, 82vw);
  aspect-ratio: 1;
  animation: introPop 700ms ease both;
}

.intro-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid rgba(243, 234, 220, 0.2);
  border-top-color: var(--accent-green);
  border-right-color: rgba(127, 175, 42, 0.82);
  box-shadow: 0 0 48px rgba(127, 175, 42, 0.22);
  animation: introSpin 1100ms linear infinite;
}

.intro-logo-image {
  position: relative;
  z-index: 1;
  width: min(520px, 72vw);
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.24));
}

@keyframes introSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes introPop {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 234, 220, 0.94);
  border-bottom: 1px solid rgba(11, 31, 51, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(8, 36, 61, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 112px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: min(840px, calc(100vw - 430px));
  min-width: 500px;
  height: 110px;
  background: url("images/header-logo-galis.png?v=20260501-035907") left 50% / auto 214px no-repeat;
  flex: 0 0 auto;
}

.brand-mark {
  display: none;
}

.brand-text {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
}

.nav-links a:not(.btn) {
  color: rgba(11, 31, 51, 0.86);
  position: relative;
  padding: 6px 0;
  font-size: 0.96rem;
  letter-spacing: 0;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn):focus-visible::after {
  opacity: 0.24;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--primary);
  font-size: 30px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(36, 92, 31, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-green);
  box-shadow: 0 18px 34px rgba(36, 92, 31, 0.22);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: none;
}

.btn-ghost:hover,
.btn-cream:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-cream {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-outline-dark {
  color: var(--primary);
  border-color: rgba(8, 36, 61, 0.18);
}

.btn-outline-dark:hover {
  background: rgba(8, 36, 61, 0.06);
}

.btn-small {
  min-height: 44px;
  padding: 0 18px;
}

.btn-large {
  min-height: 58px;
  padding: 0 28px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: transparent;
  padding: 0 0 12px;
}

.hero-frame {
  position: relative;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 26px 62px rgba(8, 36, 61, 0.14);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-floating-form {
  position: absolute;
  top: 50%;
  right: 2.2%;
  transform: translateY(-50%);
  width: 26.2%;
  min-width: 340px;
  max-width: 430px;
  padding: 22px 20px 16px;
  border-radius: var(--radius);
  background: #072746;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 26px 58px rgba(8, 36, 61, 0.28);
  color: #fff;
}

.hero-floating-form h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(1.2rem, 1.5vw, 1.6rem);
  text-transform: uppercase;
  line-height: 1.08;
  text-align: center;
  letter-spacing: 0;
}

.hero-floating-form h2 span,
.hero-floating-form h2 strong {
  display: block;
}

.hero-floating-form h2 strong {
  color: #79a92f;
  font-weight: 900;
}

.hero-form-divider {
  width: 104px;
  height: 3px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: #79a92f;
}

.hero-field {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.hero-field-icon {
  display: none;
}

.hero-floating-form input,
.hero-floating-form textarea,
.hero-floating-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #decdb5;
  border-radius: var(--radius);
  background: #f8f2e9;
  color: var(--text-dark);
  font: inherit;
  font-size: 0.9rem;
  box-shadow:
    inset 0 1px 1px rgba(8, 36, 61, 0.04),
    0 10px 24px rgba(8, 36, 61, 0.04);
}

.hero-floating-form select {
  min-height: 48px;
}

.hero-floating-form textarea {
  resize: vertical;
  min-height: 110px;
  padding-top: 14px;
}

.hero-floating-form input::placeholder,
.hero-floating-form textarea::placeholder,
.hero-floating-form select {
  color: #6c6c6c;
}

.hero-floating-form .btn {
  width: 100%;
  margin-top: 10px;
  min-height: 50px;
  border-radius: var(--radius);
  background: #79a92f;
  box-shadow: 0 14px 28px rgba(36, 92, 31, 0.18);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.hero-floating-form .btn:hover {
  background: #6f9d2c;
}

.hero-form-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.74rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.4vw, 4rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  color: var(--primary);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.12rem, 1.8vw, 1.34rem);
  color: var(--primary);
}

.contact-card {
  border-radius: var(--radius);
  box-shadow: none;
}

.section {
  padding: 96px 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.seo-intro + .section {
  padding-top: 72px;
}

.hero,
.site-header,
.seo-intro,
.contact-section,
.footer {
  content-visibility: visible;
}

.seo-intro {
  padding: 58px 0 68px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(243, 234, 220, 0.9)),
    var(--cream);
}

.seo-intro-inner {
  max-width: 980px;
}

.seo-intro .eyebrow,
.section-head .eyebrow,
.about-copy .eyebrow,
.process-copy .eyebrow,
.area-copy .eyebrow,
.faq-section .eyebrow {
  color: var(--primary);
}

.seo-intro h1 {
  max-width: 900px;
  color: var(--primary);
}

.seo-intro p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.seo-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  align-items: center;
}

.trust-strip {
  padding: 22px 0;
  background: #fffaf2;
  border-top: 1px solid rgba(11, 31, 51, 0.08);
  border-bottom: 1px solid rgba(11, 31, 51, 0.08);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-strip-grid div {
  min-height: 78px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

.trust-strip-grid strong,
.trust-strip-grid span {
  display: block;
}

.trust-strip-grid strong {
  color: var(--primary);
  font-size: 1.02rem;
}

.trust-strip-grid span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-light {
  background: rgba(255, 255, 255, 0.46);
}

.section-head {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-text,
.service-card-body p,
.project-copy p,
.about-copy p,
.contact-text,
.city-list li,
.footer p {
  color: var(--muted);
  font-size: 1.03rem;
}

.section-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-section {
  background:
    radial-gradient(circle at top right, rgba(127, 175, 42, 0.08), transparent 18%),
    rgba(255, 255, 255, 0.44);
}

.about-layout,
.area-layout,
.contact-shell {
  display: grid;
  gap: 42px;
  align-items: center;
}

.about-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.about-copy {
  max-width: 580px;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.link-action {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-weight: 800;
}

.link-action::after {
  content: "->";
  margin-left: 8px;
}

.about-visual img {
  width: 100%;
  height: clamp(340px, 42vw, 620px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  object-fit: cover;
  object-position: center center;
  border: 1px solid rgba(11, 31, 51, 0.08);
}

.process-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(250, 247, 241, 0.9)),
    var(--cream);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 42px;
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 146px;
}

.process-steps {
  display: grid;
  gap: 14px;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 34px rgba(8, 36, 61, 0.06);
}

.process-step span {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(127, 175, 42, 0.14);
  color: var(--green);
  font-weight: 900;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.services-grid,
.projects-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

.service-card,
.project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(8, 36, 61, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover,
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 54px rgba(8, 36, 61, 0.14);
}

.service-card-media {
  position: relative;
  overflow: hidden;
}

.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 36, 61, 0.06), rgba(8, 36, 61, 0.24));
  transition: background 220ms ease;
}

.service-card:hover .service-card-media::after {
  background: linear-gradient(180deg, rgba(8, 36, 61, 0.1), rgba(8, 36, 61, 0.34));
}

.service-card img,
.project-card img {
  width: 100%;
  height: 236px;
  object-fit: cover;
  object-position: center center;
  transition: transform 220ms ease;
}

.service-card:hover img,
.project-card:hover img {
  transform: scale(1.05);
}

.service-card-body,
.project-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  flex: 1;
  padding: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--green);
  font-weight: 800;
}

.service-link::after {
  content: "->";
}

.projects-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cta-band {
  background: linear-gradient(145deg, var(--primary), #11324d);
  color: #fff;
}

.cta-band .eyebrow,
.contact-section .eyebrow {
  color: #dce8b0;
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 40px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.16);
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-section {
  background:
    radial-gradient(circle at top left, rgba(127, 175, 42, 0.08), transparent 18%),
    rgba(255, 255, 255, 0.5);
}

.area-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
}

.area-copy {
  max-width: 560px;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.city-list li {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(8, 36, 61, 0.05);
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  margin-top: 28px;
  border-radius: var(--radius);
  background: rgba(127, 175, 42, 0.14);
  color: var(--green);
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(8, 36, 61, 0.06);
}

.map-embed {
  min-height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(11, 31, 51, 0.08);
  box-shadow: var(--shadow-strong);
  background: #fff;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  display: block;
}

.faq-section {
  background: rgba(255, 255, 255, 0.48);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faq-item {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(8, 36, 61, 0.07);
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  background: linear-gradient(145deg, var(--primary), #143451);
}

.contact-shell {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: start;
}

.contact-intro {
  max-width: 560px;
}

.contact-intro h2,
.contact-intro p,
.contact-phone {
  color: #fff;
}

.contact-highlight {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  margin: 8px 0 16px;
  border-radius: 999px;
  background: rgba(127, 175, 42, 0.18);
  color: #dce8b0;
  font-weight: 800;
}

.contact-phone {
  display: block;
  margin-bottom: 20px;
  font-size: clamp(1.28rem, 3.2vw, 2.3rem);
  line-height: 1.14;
  letter-spacing: 0;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-text {
  max-width: 480px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-card {
  padding: 0;
  background: transparent;
  border: 0;
}

.hero-floating-form-static {
  position: static;
  top: auto;
  right: auto;
  transform: none;
  width: 100%;
  min-width: 0;
  max-width: 500px;
  margin: 0;
}

.contact-devis-card {
  padding: 30px 28px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 42%),
    #f8f2e9;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.26);
  color: var(--primary);
}

.contact-devis-card h2 {
  color: var(--primary);
}

.contact-devis-card h2 strong {
  color: var(--green);
}

.contact-devis-card .hero-form-divider {
  background: var(--green);
}

.contact-devis-card input,
.contact-devis-card textarea,
.contact-devis-card select {
  border-color: rgba(8, 36, 61, 0.12);
  background: #fff;
  color: var(--text-dark);
  box-shadow: inset 0 1px 1px rgba(8, 36, 61, 0.03), 0 10px 22px rgba(8, 36, 61, 0.05);
}

.contact-devis-card input:focus,
.contact-devis-card textarea:focus,
.contact-devis-card select:focus {
  border-color: rgba(127, 175, 42, 0.6);
  background: #fff;
}

.contact-devis-card .btn {
  background: var(--green);
  color: #fff;
}

.contact-devis-card .btn:hover {
  background: var(--accent-green);
}

.contact-devis-card .hero-form-note {
  color: var(--muted);
}

.hero-floating-form-static input,
.hero-floating-form-static textarea,
.hero-floating-form-static select {
  margin-top: 0;
}

label {
  display: block;
  font-weight: 700;
  color: var(--primary);
}

input,
textarea,
select {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border: 1px solid rgba(11, 31, 51, 0.16);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text-dark);
  font: inherit;
}

textarea {
  resize: vertical;
}

select {
  appearance: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(127, 175, 42, 0.46);
}

.footer {
  padding: 64px 0 108px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(234, 223, 205, 0.98)),
    #eadfcd;
  border-top: 1px solid rgba(11, 31, 51, 0.08);
}

.footer-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr) minmax(0, 0.8fr);
  gap: 38px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.footer-main p:not(.footer-brand) {
  max-width: 520px;
}

.footer-title {
  margin-bottom: 12px;
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.footer a:not(.btn) {
  color: var(--primary);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(11, 31, 51, 0.08);
}

.footer-bottom p {
  margin-bottom: 0;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 45;
  display: none;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(11, 31, 51, 0.1);
  border-radius: var(--radius);
  background: rgba(243, 234, 220, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-strong);
}

.mobile-cta-link-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-height: 54px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

.mobile-cta-link-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .nav {
    gap: 14px;
  }

  .brand {
    width: min(640px, calc(100vw - 390px));
    min-width: 410px;
    height: 104px;
    background-position: left 50%;
    background-size: auto 186px;
  }

  .nav-links {
    gap: 14px;
  }

  .hero-floating-form {
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    width: 28%;
    min-width: 300px;
    padding: 18px 16px 14px;
  }

  .hero-floating-form-static {
    position: static;
    transform: none;
    width: 100%;
    min-width: 0;
    max-width: 460px;
    margin: 0;
  }

  .about-layout,
  .area-layout,
  .process-layout,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .process-copy {
    position: static;
  }

  .services-grid,
  .projects-grid,
  .faq-grid,
  .trust-strip-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-embed iframe {
    min-height: 360px;
  }
}

@media (max-width: 820px) {
  .hero {
    padding: 0;
  }

  .hero-frame {
    display: grid;
    gap: 18px;
  }

  .hero-floating-form {
    position: static;
    transform: none;
    width: 100%;
    min-width: 0;
    max-width: 520px;
    margin: 0 auto;
    border-radius: var(--radius);
    bottom: auto;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    min-height: 92px;
  }

  .brand {
    width: min(420px, 78vw);
    min-width: 0;
    height: 86px;
    background-position: left 50%;
    background-size: auto 162px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 98px;
    left: 12px;
    right: 12px;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: var(--radius);
    background: rgba(255, 252, 247, 0.98);
    border: 1px solid rgba(11, 31, 51, 0.08);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .services-grid,
  .projects-grid,
  .faq-grid,
  .trust-strip-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    display: flex;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, 1200px);
  }

  body {
    padding-bottom: 88px;
  }

  .about-actions,
  .contact-actions,
  .cta-band-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-small,
  .btn-large {
    width: 100%;
  }

  .contact-card {
    padding: 0;
  }

  .seo-intro + .section {
    padding-top: 56px;
  }

  .seo-intro-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-floating-form {
    padding: 18px;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .process-step span {
    grid-row: auto;
    margin-bottom: 14px;
  }

  .hero-floating-form h2 {
    font-size: 1.28rem;
  }

  .hero-form-divider {
    margin-bottom: 18px;
  }

  .service-card img,
  .project-card img {
    height: 210px;
  }

  .map-embed iframe {
    min-height: 300px;
  }

  .footer {
    padding-bottom: 104px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* ════════════════════════════════════════════════
   AMÉLIORATIONS V2 — appliquées à la V1
   (header + hero inchangés)
   ════════════════════════════════════════════════ */

/* ── Variable police éditoriale ── */
:root {
  --display-font: 'DM Serif Display', Georgia, serif;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

/* ── Eyebrow avec trait de soulignement ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  flex-shrink: 0;
}
.cta-band .eyebrow::before { background: #dce8b0; }

/* ── Titres h1/h2 en police éditoriale dans les sections ── */
.seo-intro h1,
.about-copy h2,
.section-head h2,
.process-copy h2,
.cta-band h2,
.area-copy h2,
.faq-layout-new h2,
.contact-intro h2 {
  font-family: var(--display-font);
  letter-spacing: -.02em;
}

/* ── About : cadre image + badge ── */
.about-img-frame {
  position: relative;
}
.about-img-frame > img {
  width: 100%;
  height: clamp(340px, 42vw, 620px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(11,31,51,.08);
}
.about-img-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 20px 44px rgba(8,36,61,.22);
  z-index: 2;
}
.aib-star {
  font-size: 1.4rem;
  color: var(--accent-green);
  line-height: 1;
}
.about-img-badge span:last-child {
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.4;
}
.about-visual {
  padding-bottom: 16px; /* room for badge overflow */
}

/* ── Services bento grid ── */
.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.bento-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}
.bento-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-strong);
}

/* Carte vedette : 2 colonnes + orientation horizontale */
.bento-feat {
  grid-column: span 2;
  flex-direction: row;
}
.bento-feat .bento-img { width: 50%; flex-shrink: 0; }
.bento-feat .bento-img img { height: 100%; object-fit: cover; }
.bento-feat .bento-body { padding: 38px 34px; }

.bento-img { overflow: hidden; }
.bento-img img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 420ms var(--ease-out);
}
.bento-card:hover .bento-img img { transform: scale(1.05); }

.bento-body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bento-num {
  font-family: var(--display-font);
  font-size: .82rem;
  color: var(--accent-green);
  letter-spacing: .06em;
}
.bento-body h3 { margin: 0; color: var(--primary); font-size: clamp(1.05rem, 1.5vw, 1.24rem); }
.bento-body p  { color: var(--muted); font-size: .94rem; flex: 1; line-height: 1.6; }
.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: .88rem;
  font-weight: 800;
  color: var(--green);
  transition: gap 180ms;
}
.bento-link:hover { gap: 12px; }

/* ── Process : cercles numérotés dégradé ── */
.process-step span {
  background: linear-gradient(135deg, var(--accent-green), var(--green)) !important;
  color: #fff !important;
  font-family: var(--display-font);
  font-size: 1.05rem;
  box-shadow: 0 6px 18px rgba(36,92,31,.28);
}

/* ── CTA band : grain texture ── */
.cta-band {
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 260px 260px;
  opacity: .045;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.cta-band .cta-band-inner { position: relative; z-index: 1; }

/* ── Zone : city tags style v2 ── */
.city-list li {
  transition: background 180ms, border-color 180ms, color 180ms;
}
.city-list li:hover {
  background: rgba(127,175,42,.12);
  border-color: rgba(127,175,42,.35);
  color: var(--green);
}

/* ── FAQ Accordion ── */
.faq-layout-new {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 80px;
  align-items: start;
}
.faq-intro-new {
  position: sticky;
  top: 130px;
}
.faq-intro-new h2   { margin-bottom: 12px; }
.faq-intro-new .section-text { margin-bottom: 0; }

.faq-accordion { display: flex; flex-direction: column; }

.faq-acc-item { border-bottom: 1px solid var(--line); }
.faq-acc-item:first-child { border-top: 1px solid var(--line); }

.faq-acc-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 22px 0;
  text-align: left;
  font-family: var(--font-sans, inherit);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color 180ms;
  cursor: pointer;
}
.faq-acc-q:hover { color: var(--primary); }
.faq-acc-q[aria-expanded="true"] { color: var(--green); }

.faq-acc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(243,234,220,.9);
  border: 1px solid var(--line);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  color: var(--muted);
  transition: transform 300ms var(--ease-out), background 200ms, color 200ms, border-color 200ms;
}
.faq-acc-q[aria-expanded="true"] .faq-acc-icon {
  transform: rotate(45deg);
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.faq-acc-a[hidden] { display: none; }
.faq-acc-a p {
  padding-bottom: 22px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}
.faq-acc-a.faq-open {
  display: block;
  animation: faqSlide 280ms var(--ease-out) both;
}
@keyframes faqSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Contact : items avec icônes ── */
.contact-items-new {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.cin-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  transition: background 180ms;
}
.cin-item:hover { background: rgba(255,255,255,.12); }
.cin-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(127,175,42,.18);
  color: var(--accent-green);
  flex-shrink: 0;
}
.cin-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.42);
  margin-bottom: 2px;
}
.cin-val {
  display: block;
  font-size: .96rem;
  font-weight: 700;
  color: #fff;
}

/* ── Responsive pour les nouveaux composants ── */
@media (max-width: 1080px) {
  .faq-layout-new { grid-template-columns: 1fr; gap: 44px; }
  .faq-intro-new { position: static; }
}

@media (max-width: 860px) {
  .services-bento { grid-template-columns: 1fr 1fr; }
  .bento-feat { grid-column: span 2; flex-direction: column; }
  .bento-feat .bento-img { width: 100%; }
  .bento-feat .bento-img img { height: 260px; object-fit: cover; }
  .about-img-badge { bottom: -10px; left: -10px; }
}

@media (max-width: 560px) {
  .services-bento { grid-template-columns: 1fr; }
  .bento-feat { grid-column: span 1; }
  .about-img-badge { bottom: -8px; left: -8px; padding: 12px 14px; }
}
