:root {
  --orange: #ff4b00;
  --orange-dark: #c83c00;
  --ink: #161616;
  --muted: #686868;
  --line: #f0ddd3;
  --paper: #fff8f3;
  --soft: #fff3eb;
  --clean: #fffdfb;
  --site-bg: #f1f1ef;
  --chrome-bg: #f4f4f2;
  --site-gradient-bg:
    radial-gradient(circle at 18% 8%, rgba(70, 70, 66, 0.26), transparent 30%),
    radial-gradient(circle at 88% 34%, rgba(120, 120, 114, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(82, 82, 78, 0.18), transparent 44%),
    var(--site-bg);
  --imagefond-bg:
    linear-gradient(180deg, rgba(241, 241, 239, 0.9), rgba(241, 241, 239, 0.74)),
    url("assets/imagefond.png");
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 24px 62px rgba(35, 27, 20, 0.18);
  --card-bg: #ffffff;
  --card-surface: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--site-gradient-bg);
  background-attachment: fixed;
  font-family: Inter, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  line-height: 1.48;
  overflow-x: hidden;
}

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

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

.top-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 34px);
  padding: 7px clamp(18px, 5vw, 70px);
  color: var(--white);
  background: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.top-contact span:first-child {
  color: #ffb08a;
  text-transform: uppercase;
}

.top-contact a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 3vw, 34px);
  min-height: 68px;
  padding: 8px clamp(18px, 5vw, 70px);
  background: var(--chrome-bg);
  border-bottom: 1px solid var(--line);
}

.brand-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: clamp(10px, 2vw, 22px);
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(126px, 16vw, 178px);
  height: 58px;
}

.brand img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-social .social-link {
  width: 26px;
  height: 26px;
}

.header-social .social-link svg {
  width: 13px;
  height: 13px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.35vw, 20px);
  margin-left: auto;
  color: #2d2d2d;
  font-size: 0.84rem;
  font-weight: 700;
}

.main-nav a,
.nav-dropdown-toggle {
  padding: 9px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  color: var(--orange-dark);
  border-color: var(--orange);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 25;
  display: none;
  width: 230px;
  height: 176px;
}

.nav-dropdown-toggle {
  color: inherit;
  background: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 30;
  display: none;
  min-width: 230px;
  padding: 12px 8px 8px;
  background: var(--card-surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border: 0;
  border-radius: var(--radius);
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: var(--soft);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  display: block;
}

.nav-dropdown:hover::before,
.nav-dropdown:focus-within::before,
.nav-dropdown.is-open::before {
  display: block;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: var(--ink);
  border: 0;
  border-radius: var(--radius);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(430px, calc(78vh - 88px), 620px);
  padding: clamp(28px, 5vw, 58px) clamp(18px, 5vw, 70px) clamp(24px, 4vw, 44px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(241, 241, 239, 0.88), rgba(241, 241, 239, 0.72)),
    linear-gradient(90deg, rgba(22, 22, 22, 0.08), rgba(255, 255, 255, 0.04)),
    url("assets/imagehotte3.png") center / cover no-repeat;
  background-blend-mode: normal, saturation, normal;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 900px);
  min-width: 0;
  max-width: 900px;
  text-align: center;
  justify-self: center;
}

.hero-logo {
  width: min(100%, 560px);
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 700px;
  margin: 18px auto 0;
  color: #333;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  font-weight: 800;
}

.hero-lead p {
  margin: 0 0 10px;
}

.hero-lead p:last-child {
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(100%, 440px);
  margin-right: auto;
  margin-left: auto;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  max-width: 100%;
  padding: 10px 16px;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--orange);
}

.button.ghost {
  color: var(--orange-dark);
  background: #ffffff;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.section,
.contact-section {
  padding: clamp(30px, 4.6vw, 52px) clamp(18px, 5vw, 70px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(18px, 3vw, 28px);
  text-align: center;
}

.section-heading.compact {
  max-width: 660px;
}

.section-heading h2,
.contact-intro h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3.2vw, 3rem);
  line-height: 1.08;
}


.section-heading p,
.contact-intro p,
.service-card p,
.commitment-grid p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.6vw, 32px);
  max-width: 1240px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 250px;
  padding: clamp(16px, 2.2vw, 24px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card-surface);
  box-shadow: 0 12px 30px rgba(35, 27, 20, 0.06);
  text-align: center;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(255, 75, 0, 0.55);
  box-shadow: 0 24px 56px rgba(35, 27, 20, 0.16);
  transform: translateY(-4px);
  outline: 0;
}

.service-card:hover .service-link,
.service-card:focus-visible .service-link {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.service-card h3 {
  margin: 10px 0 5px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 40px;
  margin-top: auto;
  padding: 9px 16px;
  color: var(--white);
  background: var(--orange);
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 800;
}

.service-link:hover,
.service-link:focus-visible {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.service-icon {
  display: block;
  width: clamp(82px, 6.8vw, 106px);
  height: clamp(82px, 6.8vw, 106px);
  margin: 0 auto;
  border: 0;
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
}

.gallery-section {
  background: transparent;
}

.gallery-page {
  max-width: 1240px;
  margin: 0 auto;
}

.gallery-page .section-heading {
  text-align: center;
}

.gallery-page .section-heading h1 {
  margin: 0;
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  line-height: 1.08;
}

.why-section {
  padding-top: clamp(24px, 4vw, 46px);
}

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

.why-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card-surface);
  box-shadow: 0 12px 30px rgba(35, 27, 20, 0.06);
}

.why-grid strong,
.zone-list span {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 900;
}

.why-grid p {
  margin: 6px 0 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #ffffff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 12px 30px rgba(35, 27, 20, 0.06);
}

.gallery-cleaning {
  background-image: none;
}

.gallery-kitchen {
  background-image: none;
}

.gallery-surface {
  background-image: none;
}

.gallery-encombrants {
  background-image: none;
}

.gallery-item:first-child {
  min-height: 338px;
  grid-row: span 2;
}

.commitments {
  background: transparent;
}

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

.commitment-grid article {
  padding: 18px;
  border-top: 4px solid var(--orange);
  border-radius: var(--radius);
  background: var(--card-surface);
  box-shadow: 0 12px 30px rgba(35, 27, 20, 0.06);
}

.compact-contact {
  padding-top: clamp(34px, 5vw, 58px);
}

.commitment-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.commitment-grid p {
  margin: 0;
}

.zone-section {
  padding: 0;
  scroll-margin-top: 88px;
}

.zone-section + .section {
  padding-top: clamp(26px, 4vw, 42px);
}

.zone-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 4vw, 42px);
  width: 100%;
  padding: clamp(18px, 3vw, 28px) clamp(18px, 5vw, 70px);
  color: var(--ink);
  background: #9f9f98;
  border-top: 1px solid #8f8f88;
  border-bottom: 1px solid #8f8f88;
  text-align: center;
}

.zone-ribbon span {
  font-size: clamp(1.3rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1;
}

.zone-ribbon strong {
  color: var(--orange-dark);
  font-size: clamp(1.45rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
}

.zone-ribbon:hover,
.zone-ribbon:focus-visible {
  background: #94948d;
}

.home-content-bg {
  background-image: var(--imagefond-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-section {
  padding-top: clamp(26px, 4vw, 46px);
}

.about-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(18px, 4vw, 46px);
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(22px, 3.4vw, 40px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card-surface);
  box-shadow: 0 22px 52px rgba(35, 27, 20, 0.14);
}

.about-panel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: var(--orange);
}

.about-panel h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.about-heading {
  position: relative;
  align-self: start;
  min-height: 100%;
  padding: clamp(24px, 3vw, 38px) clamp(16px, 2.4vw, 28px);
  overflow: hidden;
  border-radius: var(--radius);
  text-align: center;
}

.about-heading .eyebrow,
.about-heading h2 {
  position: relative;
  z-index: 1;
}

.about-heading .eyebrow {
  margin-bottom: 18px;
  font-size: 1.08rem;
}


.about-copy {
  display: grid;
  gap: 14px;
  align-content: start;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
}

.zone-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.zone-list span {
  padding: 10px 10px;
  border: 1px solid rgba(255, 75, 0, 0.22);
  border-radius: var(--radius);
  background: var(--card-surface);
  text-align: center;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(18px, 3vw, 28px);
  background: transparent;
}

.contact-page main,
.legal-page main {
  background-image: var(--imagefond-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-intro {
  max-width: 560px;
  text-align: center;
  align-self: center;
  justify-self: center;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 820px);
  padding: clamp(14px, 2vw, 20px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card-surface);
  box-shadow: var(--shadow);
}

.contact-card article {
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: auto;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card-surface);
}

.phone-card {
  border-color: rgba(255, 75, 0, 0.32);
}

.phone-card small {
  color: var(--muted);
  font-weight: 700;
}

.contact-card span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card strong,
.contact-link {
  align-self: end;
  color: var(--ink);
  font-size: clamp(0.98rem, 1.45vw, 1.18rem);
  font-weight: 800;
  line-height: 1.24;
}

.contact-card strong br {
  display: block;
}

.contact-link {
  text-decoration: underline;
  text-decoration-color: rgba(255, 75, 0, 0.38);
  text-underline-offset: 5px;
}

.phone-link {
  color: var(--orange-dark);
}

.contact-cta {
  margin-top: 16px;
}

#contact .contact-card {
  padding: clamp(14px, 2vw, 20px);
  border: 1px solid var(--line);
  background: var(--card-surface);
  box-shadow:
    inset 5px 0 0 var(--orange),
    0 22px 52px rgba(35, 27, 20, 0.14);
}

#contact .contact-card article {
  padding: 0 0 12px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

#contact .contact-card article:last-child {
  border-bottom: 0;
}

.quote-hero {
  display: grid;
  place-items: center;
  min-height: clamp(300px, 42vh, 420px);
  padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 70px);
  text-align: center;
  background: transparent;
}

.quote-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1;
}

.quote-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: #333;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
}

.quote-section {
  max-width: 1180px;
  margin: 0 auto;
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 14px;
  align-items: start;
}

.quote-form,
.quote-info {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card-surface);
  box-shadow: 0 12px 30px rgba(35, 27, 20, 0.06);
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field span {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(255, 75, 0, 0.16);
}

.quote-submit {
  justify-self: start;
}

.form-privacy-note {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

.form-privacy-note a {
  color: var(--orange-dark);
  text-decoration: underline;
  text-decoration-color: rgba(255, 75, 0, 0.42);
  text-underline-offset: 4px;
}

.quote-info {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 2.6vw, 26px);
}

.quote-info h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.quote-info p {
  margin: 0 0 4px;
  color: var(--muted);
}

.quote-info a,
.quote-info span {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.28;
}

.quote-info a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 75, 0, 0.38);
  text-underline-offset: 5px;
}

.legal-section {
  max-width: 980px;
  margin: 0 auto;
}

.legal-card {
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card-surface);
  box-shadow:
    inset 5px 0 0 var(--orange),
    0 12px 30px rgba(35, 27, 20, 0.06);
}

.legal-card h2 {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.legal-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.legal-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-list dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.legal-list a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 75, 0, 0.42);
  text-underline-offset: 4px;
}

.footer-copyright a {
  text-decoration: none;
}

.legal-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 0.95fr) minmax(160px, 0.9fr) minmax(190px, 1fr) minmax(86px, 0.35fr);
  align-items: flex-start;
  gap: clamp(8px, 2.8vw, 30px);
  padding: 16px clamp(18px, 5vw, 70px) 10px;
  border-top: 1px solid var(--line);
  background: var(--chrome-bg);
}

.footer-brand {
  display: grid;
  gap: 0;
}

.footer-brand img {
  width: min(235px, 68vw);
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.footer-services {
  max-width: 430px;
  text-align: left;
}

.footer-contact {
  display: grid;
  gap: 3px;
  max-width: 260px;
  color: var(--ink);
  font-style: normal;
  text-align: left;
}

.footer-social {
  max-width: 190px;
  text-align: left;
}

.footer-services-title {
  margin: 0 0 3px;
  color: var(--orange-dark);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-services-list {
  display: grid;
  gap: 2px;
}

.footer-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.footer-services-list a {
  display: grid;
  gap: 2px;
  padding: 0;
  color: var(--ink);
  border-bottom: 0;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.25;
}

.footer-contact a,
.footer-contact span,
.footer-social-list a {
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.25;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.social-link svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link svg path {
  fill: currentColor;
  stroke: none;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.footer-services-list a:hover,
.footer-services-list a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-social-list a:hover,
.footer-social-list a:focus-visible {
  color: var(--orange-dark);
}

.footer-copyright {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  text-align: center;
}

.service-page-hero {
  --service-page-bg: url("assets/imagehotte3.png");
  display: grid;
  place-items: center;
  justify-items: center;
  min-height: clamp(420px, calc(74vh - 88px), 600px);
  padding: clamp(28px, 5vw, 58px) clamp(18px, 5vw, 70px) clamp(24px, 4vw, 44px);
  text-align: center;
  background-image:
    linear-gradient(180deg, rgba(241, 241, 239, 0.88), rgba(241, 241, 239, 0.72)),
    var(--service-page-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.service-page-kitchen {
  --service-page-bg: url("assets/imagehotte3.png");
}

.service-page-desinfection {
  --service-page-bg: url("assets/imagefond.png");
}

.service-page-encombrants {
  --service-page-bg: url("assets/imagefondencombrants.png");
}

.service-page-nuisibles {
  --service-page-bg: url("assets/imagefondtraitementnuisibles.png");
}

.service-page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.25rem, 5.4vw, 5rem);
}

.service-page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: #333;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.service-page-icon {
  width: clamp(104px, 12vw, 154px);
  height: clamp(104px, 12vw, 154px);
  margin-bottom: 12px;
  object-fit: contain;
}

.service-detail {
  max-width: 1180px;
  margin: 0 auto;
}

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

.detail-grid article {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card-surface);
  box-shadow: 0 12px 30px rgba(35, 27, 20, 0.06);
}

.detail-grid h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.detail-grid p {
  margin: 0;
  color: var(--muted);
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.service-card,
.why-grid article,
.commitment-grid article,
.contact-card,
.contact-card article,
.quote-form,
.quote-info,
.detail-grid article,
.legal-card {
  border: 1px solid var(--line);
  background: var(--card-surface);
  box-shadow: 0 12px 30px rgba(35, 27, 20, 0.06);
}

.service-card,
.contact-card,
.quote-form,
.quote-info,
.detail-grid article {
  box-shadow:
    inset 5px 0 0 var(--orange),
    0 12px 30px rgba(35, 27, 20, 0.06);
}

@media (max-width: 1020px) {
  .site-header {
    align-items: center;
  }

  .header-social {
    display: none;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    grid-template-columns: 1fr;
  }

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

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

  .zone-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-panel {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item:first-child {
    min-height: 320px;
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  html,
  body,
  main {
    max-width: 100%;
    overflow-x: hidden;
  }

  .top-contact {
    align-items: center;
    flex-direction: column;
    gap: 3px;
    padding: 8px 18px;
    text-align: center;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    min-height: 72px;
    padding: 8px 18px;
  }

  .brand-group {
    min-width: 0;
    width: 100%;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 40;
    grid-column: 2;
    justify-self: end;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .nav-dropdown-toggle {
    width: 100%;
    padding: 12px;
    text-align: left;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    margin: 0 0 8px;
    box-shadow: none;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .hero-copy {
    max-width: min(calc(100vw - 48px), 360px);
    width: 100%;
    overflow: hidden;
  }

  .brand img {
    width: 100%;
  }

  .brand {
    width: min(46vw, 150px);
    height: 54px;
  }

  .header-social {
    display: none;
  }

  .service-page-hero {
    min-height: auto;
    max-width: 100vw;
    overflow: hidden;
    padding-right: 18px;
    padding-left: 18px;
    padding-top: 38px;
    padding-bottom: 38px;
    background-position: center;
  }

  .zone-ribbon {
    flex-direction: column;
    gap: 8px;
  }

  .service-grid,
  .why-grid,
  .gallery-grid,
  .commitment-grid,
  .contact-card,
  .form-grid,
  .zone-list {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.1rem, 11vw, 3.7rem);
  }

  .section-heading h2,
  .contact-intro h2,
  .about-panel h2,
  .quote-hero h1,
  .service-page-hero h1 {
    max-width: min(100%, 320px);
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }

  .quote-hero p:not(.eyebrow),
  .service-page-hero p:not(.eyebrow) {
    max-width: min(100%, 320px);
    margin-right: auto;
    margin-left: auto;
  }

  .hero-logo {
    width: min(300px, calc(100vw - 56px));
    max-width: min(300px, calc(100vw - 56px));
  }

  .hero-lead {
    max-width: min(100%, 310px);
    font-size: 1rem;
    font-weight: 700;
  }

  .hero-actions,
  .service-page-hero .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 310px);
  }

  .hero-actions .button,
  .service-page-hero .button {
    width: 100%;
  }

  .contact-intro {
    text-align: left;
  }

  .quote-hero,
  .quote-panel,
  .quote-form,
  .quote-info,
  .detail-grid,
  .detail-grid article,
  .service-card,
  .contact-card,
  .contact-card article {
    min-width: 0;
    max-width: 100%;
  }

  .quote-form,
  .quote-info,
  .detail-grid article {
    width: 100%;
    overflow: hidden;
  }

  .quote-panel,
  .quote-form,
  .quote-info,
  .detail-grid,
  .detail-grid article,
  .contact-card {
    width: min(100%, 340px);
    margin-right: auto;
    margin-left: auto;
  }

  .quote-submit {
    width: 100%;
  }

  .about-panel {
    padding: 20px;
  }

  .contact-card article {
    min-height: auto;
  }

  .contact-link,
  .contact-card strong {
    font-size: 1.05rem;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .gallery-item,
  .gallery-item:first-child {
    min-height: 230px;
  }

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

  .footer-services {
    max-width: 100%;
    margin-left: 0;
  }

  .footer-contact {
    max-width: 100%;
    margin-left: 0;
  }

  .footer-social {
    max-width: 100%;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  body,
  main {
    max-width: 100%;
    overflow-x: hidden;
  }

  .top-contact {
    font-size: 0.76rem;
  }

  .section,
  .contact-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .main-nav {
    right: 12px;
    left: 12px;
  }

  .hero {
    padding-right: 14px;
    padding-left: 14px;
    max-width: 100vw;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero-logo {
    width: min(260px, calc(100vw - 56px)) !important;
    max-width: min(260px, calc(100vw - 56px)) !important;
  }

  .hero-lead,
  .hero-actions,
  .section-heading {
    width: min(100%, 310px);
    max-width: min(310px, calc(100vw - 40px));
    margin-right: auto;
    margin-left: auto;
  }

  .service-card,
  .contact-card,
  .quote-form,
  .quote-info,
  .detail-grid article,
  .legal-card {
    box-shadow:
      inset 4px 0 0 var(--orange),
      0 10px 24px rgba(35, 27, 20, 0.08);
  }

  .contact-card {
    padding: 12px;
  }

  .zone-ribbon span,
  .zone-ribbon strong {
    font-size: clamp(1.25rem, 8vw, 1.8rem);
  }
}


