:root {
  --color-primary: #1a3a5c;
  --color-primary-dark: #122a44;
  --color-accent: #e8a020;
  --color-accent-dark: #c07010;
  --color-bg: #f5f5f5;
  --color-bg-white: #ffffff;
  --color-text: #222222;
  --color-text-muted: #555555;
  --color-border: #d8d8d8;
  --color-overlay: rgba(15, 30, 50, 0.62);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,0.10);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.13);
  --transition: 0.2s ease;
  --container: 1180px;
  --header-h: 72px;
  --section-py: 4rem;
  --section-py-sm: 2.5rem;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1 auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1.1rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }

p {
  margin-bottom: 1rem;
  color: var(--color-text);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-dark);
}

ul, ol {
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.25rem;
}

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

section {
  width: 100%;
}

article {
  display: block;
}

form {
  width: 100%;
}

input, textarea, select, button {
  font-family: var(--font-body);
  font-size: 1rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  background: var(--color-bg-white);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26,58,92,0.12);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.section--alt {
  background: var(--color-bg-white);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 1rem;
}

.section-title--left {
  text-align: left;
}

.section-intro {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.97rem;
  border-radius: var(--radius);
  padding: 0.65rem 1.4rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--color-accent);
  color: #1a1a1a;
  border-color: var(--color-accent);
}

.btn--primary:hover,
.btn--primary:focus {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff;
}

.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--secondary:hover,
.btn--secondary:focus {
  background: var(--color-primary);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover,
.btn--outline:focus {
  background: var(--color-primary);
  color: #fff;
}

.btn--outline-light {
  background: transparent;
  color: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.85);
}

.btn--outline-light:hover,
.btn--outline-light:focus {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: #fff;
}

.btn--lg {
  font-size: 1.07rem;
  padding: 0.85rem 2rem;
}

.btn__picto {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-primary);
  height: var(--header-h);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: var(--color-primary-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 1.5rem;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.header-nav {
  flex: 1 1 auto;
  display: none;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-link {
  display: block;
  padding: 0.45rem 0.75rem;
  color: rgba(255,255,255,0.90);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.93rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.10);
}

.nav-link--active {
  color: var(--color-accent);
}

.nav-link--active:hover {
  color: var(--color-accent);
  background: rgba(232,160,32,0.12);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  font-size: 0.93rem;
  text-decoration: none;
  transition: color var(--transition);
}

.header-phone:hover {
  color: var(--color-accent);
}

.header-picto {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.85;
}

.header-btn {
  font-size: 0.9rem;
  padding: 0.55rem 1.1rem;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px 8px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2.5px;
  background: rgba(255,255,255,0.92);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.header-nav.is-open {
  display: block;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--color-primary-dark);
  padding: 1rem 1.25rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  z-index: 999;
}

.header-nav.is-open .nav-list {
  flex-direction: column;
  align-items: stretch;
  gap: 0.1rem;
}

.header-nav.is-open .nav-link {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: var(--radius);
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero__title {
  color: rgba(255,255,255,0.97);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.hero__subtitle {
  color: rgba(255,255,255,0.92);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  max-width: 560px;
  margin-bottom: 2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.18);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 340px;
}

.page-hero--simple {
  min-height: 220px;
  background: var(--color-primary);
}

.page-hero--sm {
  min-height: 220px;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,30,50,0.68);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.page-hero__title {
  color: rgba(255,255,255,0.97);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.22);
}

.page-hero__subtitle {
  color: rgba(255,255,255,0.90);
  font-size: clamp(0.97rem, 2vw, 1.1rem);
  max-width: 560px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.15);
}

.truststrip {
  background: var(--color-bg-white);
  border-bottom: 2px solid var(--color-border);
  padding: 0.85rem 0;
}

.truststrip__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: center;
}

.truststrip__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.truststrip__picto {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.8;
}

.truststrip__text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.truststrip__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}

.truststrip__value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.truststrip__value:hover {
  color: var(--color-accent-dark);
}

.truststrip__item--hours .truststrip__value {
  color: var(--color-text);
}

.services {
  background: var(--color-bg);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card__img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.service-card:hover .service-card__img {
  transform: scale(1.04);
}

.service-card__body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.service-card__title {
  color: var(--color-primary);
  font-size: 1.18rem;
  margin-bottom: 0.2rem;
}

.service-card__text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 1rem;
}

.service-card__btn {
  align-self: flex-start;
  font-size: 0.9rem;
  padding: 0.55rem 1.2rem;
}

.about-teaser {
  background: var(--color-bg-white);
}

.about-teaser__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.about-teaser__img-col {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
}

.about-teaser__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-lg);
}

.about-teaser__content {
  width: 100%;
}

.about-teaser__content .section-title--left {
  margin-bottom: 1rem;
}

.about-teaser__content p {
  color: var(--color-text);
  margin-bottom: 1rem;
}

.about-teaser__content .btn {
  margin-top: 0.5rem;
}

.usp {
  background: var(--color-bg);
}

.usp__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.usp__item {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  transition: box-shadow var(--transition);
}

.usp__item:hover {
  box-shadow: var(--shadow-md);
}

.usp__icon {
  margin-bottom: 0.25rem;
}

.usp__icon svg {
  display: block;
}

.usp__title {
  color: var(--color-primary);
  font-size: 1.05rem;
  margin-bottom: 0.1rem;
}

.usp__text {
  color: var(--color-text-muted);
  font-size: 0.94rem;
  margin-bottom: 0;
}

.gallery {
  background: var(--color-bg-white);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg);
}

.gallery__item--wide {
  grid-column: 1 / -1;
}

.gallery__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.gallery__item--wide .gallery__img {
  height: 280px;
}

.gallery__item:hover .gallery__img {
  transform: scale(1.03);
}

.footer-cta {
  background: var(--color-primary);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.footer-cta__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.footer-cta__title {
  color: rgba(255,255,255,0.97);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.footer-cta__text {
  color: rgba(255,255,255,0.90);
  font-size: 1.02rem;
  margin-bottom: 1.75rem;
}

.footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.88);
  padding-top: 3rem;
  padding-bottom: 0;
}

.site-footer__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__col--brand {
  gap: 0.75rem;
}

.site-footer__logo {
  display: block;
  margin-bottom: 0.5rem;
}

.footer-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

.site-footer__tagline {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  margin-bottom: 0;
  max-width: 260px;
}

.site-footer__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.site-footer__link {
  color: rgba(255,255,255,0.9);
  font-size: 0.93rem;
  text-decoration: none;
  transition: color var(--transition);
}

.site-footer__link:hover {
  color: var(--color-accent);
}

.site-footer__list--contact {
  gap: 0.6rem;
}

.site-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.93rem;
}

.site-footer__picto {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.75;
}

.footer-picto {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.75;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__hours {
  color: rgba(255,255,255,0.9);
  font-size: 0.93rem;
  margin-bottom: 0;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__bottom {
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  text-align: center;
}

.site-footer__copy {
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  margin-bottom: 0;
}

.site-footer__legal {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer__legal-link {
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color var(--transition);
}

.site-footer__legal-link:hover {
  color: rgba(255,255,255,0.85);
}

.footer__bottom {
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.footer__copy {
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  margin-bottom: 0;
}

.footer__brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__nav { display: flex; flex-direction: column; gap: 0.35rem; }
.footer__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.footer__list--contact { gap: 0.6rem; }
.footer__link {
  color: rgba(255,255,255,0.9);
  font-size: 0.93rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer__link:hover { color: var(--color-accent); }
.footer__logo { display: block; }
.footer__tagline {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  margin-bottom: 0;
  max-width: 260px;
}
.footer__hours {
  color: rgba(255,255,255,0.9);
  font-size: 0.93rem;
  margin-bottom: 0;
}
.footer__picto {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.75;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.contact-layout__form {
  width: 100%;
}

.contact-layout__info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-form-wrap {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
}

.form-group--submit {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row--double {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.form-label {
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--color-text);
}

.form-label--optional {
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.form-input {
  width: 100%;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  background: var(--color-bg-white);
  color: var(--color-text);
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26,58,92,0.12);
}

.form-textarea {
  width: 100%;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  background: var(--color-bg-white);
  color: var(--color-text);
  font-size: 1rem;
  font-family: var(--font-body);
  resize: vertical;
  min-height: 130px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26,58,92,0.12);
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 0.85rem 2rem;
}

.form-note {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
}

.contact-details__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-details__picto {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.openingstijden-block {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
}

.openingstijden-block__title {
  color: var(--color-primary);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.openingstijden-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}

.openingstijden-table td {
  padding: 0.4rem 0;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.openingstijden-table td:first-child {
  font-weight: 600;
  width: 50%;
}

.openingstijden-table tr:last-child td {
  border-bottom: none;
}

.faq {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  background: var(--color-bg);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-item {
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1.5px solid var(--color-border);
  transition: border-color var(--transition);
}

.faq-item.is-open {
  border-color: var(--color-primary);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  transition: background var(--transition), color var(--transition);
}

.faq-question:hover {
  background: rgba(26,58,92,0.04);
}

.faq-item.is-open .faq-question {
  color: var(--color-primary);
  background: rgba(26,58,92,0.04);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--color-accent);
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 1.25rem 1.2rem;
  color: var(--color-text);
  font-size: 0.96rem;
  margin-bottom: 0;
}

.legal {
  background: var(--color-bg-white);
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.legal__inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.93rem;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color var(--transition);
}

.legal__back:hover {
  color: var(--color-accent-dark);
}

.legal__toc {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  border: 1px solid var(--color-border);
}

.legal__toc-title {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.legal__toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.legal__toc-list a {
  color: var(--color-primary);
  font-size: 0.93rem;
  text-decoration: none;
  transition: color var(--transition);
}

.legal__toc-list a:hover {
  color: var(--color-accent-dark);
}

.legal__section {
  margin-bottom: 2.5rem;
}

.legal__heading {
  color: var(--color-primary);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  padding-top: 0.5rem;
  border-top: 2px solid var(--color-border);
  padding-top: 1rem;
}

.legal__subheading {
  color: var(--color-primary);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  margin-top: 1.25rem;
}

.legal__list {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal__list li {
  color: var(--color-text);
  font-size: 0.96rem;
  margin-bottom: 0.4rem;
}

.legal__address {
  font-style: normal;
  color: var(--color-text);
  font-size: 0.96rem;
  line-height: 1.8;
}

@media (min-width: 480px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .usp__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row--double {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 640px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__item--wide {
    grid-column: 1 / -1;
  }

  .gallery__img {
    height: 260px;
  }

  .gallery__item--wide .gallery__img {
    height: 340px;
  }
}

@media (min-width: 768px) {
  :root {
    --header-h: 76px;
  }

  .header-nav {
    display: flex;
    align-items: center;
  }

  .header-cta {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .about-teaser__inner {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .about-teaser__img-col {
    width: 45%;
    flex-shrink: 0;
  }

  .about-teaser__img {
    height: 360px;
  }

  .about-teaser__content {
    flex: 1;
  }

  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .truststrip__list {
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .hero {
    min-height: 85vh;
  }

  .site-footer__grid {
    grid-template-columns: 1.6fr 1fr 1fr;
  }

  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .usp__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  .gallery__img {
    height: 260px;
  }

  .gallery__item--wide .gallery__img {
    height: 260px;
  }

  .contact-layout {
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1200px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
/* faq-button-fix: grid-layout zodat tekst en icon betrouwbaar naast elkaar staan */
.faq-question, .faq-item__question {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: center !important;
  gap: 0.75rem !important;
  width: 100% !important;
}
.faq-item.is-open .faq-icon,
.faq-item.is-open .faq-toggle,
.faq-item.is-open .faq-toggle__icon {
  transform: rotate(180deg);
}
.faq-item.is-open .faq-answer,
.faq-item.is-open .faq-item__answer {
  max-height: 2000px !important;
  padding-bottom: 1rem;
}
