/* ==========================================================================
   ARTISANS FRANCE FERMETURES — Design system
   ========================================================================== */

:root {
  --navy-950: #060b14;
  --navy-900: #0b1526;
  --navy-800: #101d33;
  --navy-700: #17284a;
  --steel-500: #5b6b82;
  --steel-300: #97a3b7;
  --steel-100: #e7eaef;
  --orange-600: #a8501f;
  --orange-500: #c1602c;
  --orange-400: #d47942;
  --orange-050: #fbeee5;
  --gray-900: #171b22;
  --gray-700: #4c5566;
  --gray-500: #6d7789;
  --gray-300: #d6dae1;
  --gray-100: #f2f3f6;
  --gray-050: #f7f8fa;
  --white: #ffffff;

  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, Segoe UI, Roboto, sans-serif;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 10px rgba(6, 11, 20, 0.08);
  --shadow-md: 0 10px 30px rgba(6, 11, 20, 0.14);
  --container: 1240px;
}

/* Reset ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.12;
  font-weight: 700;
  color: var(--navy-900);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 14px;
}

.section {
  padding: 88px 0;
}
.section--tight { padding: 64px 0; }
.section--dark {
  background: var(--navy-950);
  color: var(--steel-100);
}
.section--dark h2 { color: var(--white); }
.section--gray { background: var(--gray-050); }

.section-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}
.section-head p { color: var(--gray-500); font-size: 0.98rem; }
.section-head--split { align-items: start; }
.section-head--link { align-items: center; }
.section-head .section-link {
  justify-self: end;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy-900);
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}
.section--dark .section-head .section-link,
.section--dark .section-link { color: var(--white); }

h2 { font-size: clamp(1.7rem, 2.6vw, 2.4rem); }

/* Buttons ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn-primary {
  background: var(--orange-500);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-600); }
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.btn-outline:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }
.btn-outline-dark {
  background: transparent;
  border: 1.5px solid var(--navy-900);
  color: var(--navy-900);
}
.btn-outline-dark:hover { background: var(--navy-900); color: #fff; }

/* Topbar ------------------------------------------------------------------ */
.topbar {
  background: var(--navy-950);
  color: var(--steel-300);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar a, .topbar span { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 13px; height: 13px; opacity: 0.85; }
.topbar-badge {
  background: rgba(193, 96, 44, 0.18);
  color: var(--orange-400);
  padding: 4px 10px;
  border-radius: 3px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

/* Header ------------------------------------------------------------------ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header .container {
  max-width: 1360px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--navy-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  flex: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; white-space: nowrap; }
.brand-text strong {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  color: var(--navy-900);
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-text span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--orange-500);
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
}
.nav-toggle svg { width: 24px; height: 24px; }

.main-nav { display: flex; align-items: center; gap: 14px; flex: 1; justify-content: flex-end; }
.main-nav ul { display: flex; align-items: center; gap: 11px; }
.nav-link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-900);
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--orange-500); }

.has-dropdown { position: relative; }
.has-dropdown > a svg { width: 9px; height: 9px; margin-left: 4px; vertical-align: 1px; transition: transform 0.15s ease; }
.has-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  min-width: 160px;
  padding: 8px;
  z-index: 50;
}
.dropdown-menu li { width: 100%; }
.dropdown-menu a {
  display: block;
  padding: 9px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-900);
  border-radius: 4px;
}
.dropdown-menu a:hover, .dropdown-menu a.active { color: var(--orange-500); background: var(--gray-050); }
.has-dropdown.open .dropdown-menu { display: block; }
.has-dropdown.open > a svg { transform: rotate(180deg); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { display: flex; flex-direction: column; line-height: 1.2; text-align: right; white-space: nowrap; }
.header-phone a { color: var(--navy-900); }
.header-phone small { font-size: 0.68rem; color: var(--gray-500); }
.header-phone strong { font-family: var(--font-head); font-size: 0.86rem; white-space: nowrap; }
.header-cta .btn-primary { padding: 12px 20px; line-height: 1.15; text-align: left; flex-direction: column; align-items: flex-start; gap: 0; }
.header-cta .btn-primary span { display: block; font-size: 0.82rem; }

.nav-backdrop { display: none; }

/* Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: linear-gradient(100deg, rgba(6, 11, 20, 0.94) 20%, rgba(6, 11, 20, 0.55) 65%, rgba(6, 11, 20, 0.35) 100%), var(--navy-950) center/cover no-repeat;
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.65; }
.hero .container { padding-top: 72px; padding-bottom: 72px; }
.hero-content { max-width: 720px; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--orange-400); }
.hero .lead {
  color: var(--steel-100);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Services grid ------------------------------------------------------------------ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
}
.service-card { background: var(--white); display: flex; flex-direction: column; }
.service-photo { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--gray-100); }
.service-photo img { width: 100%; height: 100%; object-fit: cover; }
.service-body { padding: 22px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.service-index-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--orange-500);
  margin-bottom: 10px;
}
.service-index-row svg { width: 15px; height: 15px; }
.service-card h3 { font-size: 1.02rem; margin-bottom: 8px; letter-spacing: 0.01em; }
.service-card p { color: var(--gray-500); font-size: 0.88rem; }
.service-card--cta {
  background: var(--navy-950);
  color: var(--white);
  padding: 32px 28px;
  justify-content: center;
}
.service-card--cta .eyebrow { color: var(--orange-400); }
.service-card--cta h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 18px; }
.service-card--cta a { font-weight: 600; font-size: 0.9rem; text-decoration: underline; text-underline-offset: 4px; display: inline-flex; align-items: center; gap: 6px; }

/* Symptômes (dépannage) ------------------------------------------------------------------ */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 36px;
}
.symptom-card { background: var(--navy-950); padding: 26px 30px; }
.symptom-card h3 {
  color: var(--white);
  font-family: var(--font-body);
  text-transform: none;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.symptom-card h3::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--orange-500);
  flex: none;
  margin-top: 6px;
}
.symptom-card p { color: var(--steel-300); font-size: 0.88rem; }

/* Pourquoi nous choisir ------------------------------------------------------------------ */
.reasons-list { border-top: 1px solid var(--gray-300); margin-top: 8px; }
.reason-row {
  display: grid;
  grid-template-columns: 64px 280px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid var(--gray-300);
}
.reason-row .reason-num { font-family: var(--font-head); color: var(--orange-500); font-weight: 700; font-size: 1.1rem; }
.reason-row h3 { font-size: 0.98rem; letter-spacing: 0.02em; }
.reason-row p { color: var(--gray-500); font-size: 0.92rem; }

/* Comment ça se passe ------------------------------------------------------------------ */
.process-panel {
  background: var(--navy-950);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 44px;
  margin-bottom: 56px;
}
.process-panel .eyebrow { color: var(--orange-400); }
.process-panel h2 { color: var(--white); margin-bottom: 28px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.process-step { border-top: 1px solid rgba(255, 255, 255, 0.16); padding-top: 16px; }
.process-step .step-num { font-family: var(--font-head); color: var(--orange-400); font-weight: 700; font-size: 1.15rem; display: block; margin-bottom: 10px; }
.process-step h3 { color: var(--white); font-size: 0.86rem; letter-spacing: 0.04em; margin-bottom: 8px; }
.process-step p { color: var(--steel-300); font-size: 0.84rem; }

/* Réalisations ------------------------------------------------------------------ */
.works-scroll { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.works-track { display: flex; gap: 14px; width: max-content; animation: works-scroll 42s linear infinite; }
.works-scroll:hover .works-track { animation-play-state: paused; }
.works-item { flex: none; width: 260px; aspect-ratio: 1 / 1; overflow: hidden; border-radius: var(--radius-sm); background: var(--gray-100); }
.works-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

@keyframes works-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 720px) {
  .works-item { width: 190px; }
}

/* Professionnels ------------------------------------------------------------------ */
.pro-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.pro-grid p.lead-p { color: var(--gray-500); margin-bottom: 22px; font-size: 0.96rem; }
.pro-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.pro-list li { display: flex; gap: 10px; font-size: 0.92rem; color: var(--gray-700); }
.pro-list li::before { content: ""; width: 7px; height: 7px; background: var(--orange-500); margin-top: 7px; flex: none; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill {
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
}
.pro-photo { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3.6; background: var(--gray-100); }
.pro-photo img { width: 100%; height: 100%; object-fit: cover; }
.pro-photo iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Zone d'intervention ------------------------------------------------------------------ */
.zone-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.zone-grid > .zone-intro p { color: var(--gray-500); font-size: 0.95rem; margin-bottom: 22px; }
.zone-grid strong { color: var(--navy-900); }
.zone-pills { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 22px; }
.zone-pill {
  border: 1px solid var(--gray-300);
  background: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy-900);
}
.zone-pill:hover { border-color: var(--orange-500); color: var(--orange-500); }
.zone-hours { color: var(--orange-500); font-weight: 700; font-size: 0.86rem; letter-spacing: 0.02em; }

/* Avis clients ------------------------------------------------------------------ */
.reviews-empty {
  border: 1.5px dashed var(--gray-300);
  border-radius: var(--radius-md);
  padding: 48px 40px;
  text-align: center;
}
.reviews-empty p { color: var(--gray-500); font-size: 0.94rem; max-width: 640px; margin: 0 auto; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-stars { color: var(--orange-500); font-size: 0.9rem; letter-spacing: 2px; }
.review-text { color: var(--gray-700); font-size: 0.92rem; flex: 1; }
.review-author { font-family: var(--font-head); font-weight: 700; font-size: 0.86rem; color: var(--navy-900); letter-spacing: 0.02em; }

@media (max-width: 1080px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* FAQ ------------------------------------------------------------------ */
.faq-intro { color: var(--gray-500); max-width: 640px; margin-bottom: 8px; font-size: 0.95rem; }
.faq-list { border-top: 1px solid var(--gray-300); margin-top: 32px; }
.faq-item { border-bottom: 1px solid var(--gray-300); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  text-align: left;
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--navy-900);
}
.faq-q svg { width: 16px; height: 16px; color: var(--orange-500); flex: none; transition: transform 0.2s ease; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p { color: var(--gray-500); font-size: 0.9rem; padding: 0 4px 22px; max-width: 760px; }

/* Contact CTA ------------------------------------------------------------------ */
.contact-cta { background: var(--navy-950); color: var(--white); }
.contact-cta .eyebrow { color: var(--orange-400); }
.contact-cta h2 { color: var(--white); max-width: 640px; margin-bottom: 16px; }
.contact-cta p { color: var(--steel-300); max-width: 560px; margin-bottom: 28px; font-size: 0.98rem; }
.contact-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start; margin-top: 8px; }
.contact-pitch h2, .contact-pitch p { max-width: none; }

.contact-form-card { background: var(--white); border-radius: var(--radius-md); padding: 32px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-700);
}
.form-field input,
.form-field textarea {
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.94rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color 0.2s ease;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--orange-500); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input[type="file"] {
  border: 1.5px dashed var(--gray-300);
  padding: 14px;
  font-size: 0.84rem;
  color: var(--gray-500);
  cursor: pointer;
}
.form-note { font-size: 0.76rem; color: var(--gray-500); margin: -6px 0 16px; }
.contact-form-card button[type="submit"] { width: 100%; margin-top: 6px; }
.form-success {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--orange-050);
  color: var(--orange-600);
  font-size: 0.88rem;
  font-weight: 600;
}
.form-success.show { display: block; }

@media (max-width: 1080px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Footer ------------------------------------------------------------------ */
.site-footer { background: var(--navy-950); color: var(--steel-300); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 48px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand .brand-text strong { color: var(--white); }
.footer-brand p { font-size: 0.86rem; color: var(--steel-300); max-width: 260px; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li { font-size: 0.86rem; color: var(--steel-300); }
.footer-col a:hover { color: var(--orange-400); }
.footer-contact li { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 0; }
.footer-contact svg { width: 15px; height: 15px; margin-top: 2px; flex: none; color: var(--orange-400); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--steel-500);
}

/* Service page hero variant (sub-pages) ------------------------------------------------------------------ */
.page-hero {
  background: linear-gradient(100deg, rgba(6, 11, 20, 0.95) 25%, rgba(6, 11, 20, 0.6) 100%), var(--navy-950) center/cover no-repeat;
  color: var(--white);
  padding: 64px 0;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 3.6vw, 2.8rem); max-width: 780px; margin-bottom: 16px; }
.page-hero .lead { color: var(--steel-100); max-width: 640px; margin-bottom: 28px; font-size: 1.02rem; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.78rem; color: var(--steel-300); margin-bottom: 22px; text-transform: uppercase; letter-spacing: 0.05em; }
.breadcrumb a:hover { color: var(--orange-400); }

.content-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; align-items: start; }
.content-grid h2 { margin-bottom: 18px; }
.content-grid p { color: var(--gray-500); margin-bottom: 16px; font-size: 0.96rem; }
.content-list { display: flex; flex-direction: column; gap: 12px; margin: 22px 0; }
.content-list li { display: flex; gap: 12px; font-size: 0.95rem; color: var(--gray-700); }
.content-list li::before { content: ""; width: 7px; height: 7px; background: var(--orange-500); margin-top: 8px; flex: none; }
.side-card {
  background: var(--gray-050);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 30px 28px;
}
.side-card h3 { font-size: 1rem; margin-bottom: 14px; }
.side-card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.side-card a.btn { width: 100%; }
.related-services { display: flex; flex-direction: column; gap: 10px; }
.related-services a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-900);
}
.related-services a:hover { border-color: var(--orange-500); color: var(--orange-500); }

/* Reveal animation ------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Responsive ------------------------------------------------------------------ */
@media (max-width: 1080px) {
  .services-grid, .symptoms-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .pro-grid, .zone-grid, .content-grid { grid-template-columns: 1fr; }
  .pro-photo { order: -1; max-width: 480px; }
  .section-head { grid-template-columns: 1fr; }
  .section-head .section-link { justify-self: start; }
}

@media (max-width: 860px) {
  .topbar .topbar-right { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 86vw);
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 90px 28px 28px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 60;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  .main-nav ul li { width: 100%; }
  .nav-link { display: block; padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
  .has-dropdown > a { display: flex; align-items: center; border-bottom: 1px solid var(--gray-100); justify-content: space-between; width: 100%; }
  .has-dropdown > a svg { margin-left: 0; }
  .has-dropdown .dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 8px 14px;
    margin-top: 0;
  }
  .has-dropdown.open .dropdown-menu { display: block; }
  .has-dropdown.open > a svg { transform: rotate(180deg); }
  .dropdown-menu a { padding: 10px 0; }
  .header-cta { flex-direction: column; align-items: stretch; margin-top: 24px; gap: 12px; }
  .header-phone { text-align: left; }
  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6, 11, 20, 0.5);
    z-index: 50;
  }
  .nav-backdrop.open { display: block; }
  .header-cta .btn-primary { flex-direction: row; gap: 5px; }
  .header-cta .btn-primary span { display: inline; }
}

@media (max-width: 720px) {
  .services-grid, .symptoms-grid, .process-steps { grid-template-columns: 1fr; }
  .reason-row { grid-template-columns: 1fr; gap: 6px; }
  .zone-pills { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 60px 0; }
  .process-panel { padding: 30px 24px; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn, .contact-cta-actions .btn { width: 100%; }
}
