/* ==========================================================================
   יעד נקי — visual system
   Modern Hebrew service-business look: navy/blue identity on white and soft
   blue neutrals, Heebo throughout, rounded cards with soft shadows.
   Green is reserved for WhatsApp and success states only.
   ========================================================================== */

:root {
  /* colour — original brand identity */
  --navy: #082b5f;
  --navy-2: #0d3a78;
  --blue: #0877df;
  --blue-dark: #075cb0;
  --blue-soft: #e7f1fd;
  --ink: #14202b;
  --muted: #5a6a7a;
  --line: #dbe5ef;
  --soft: #f3f7fb;
  --soft-2: #eef4fa;
  --paper: #ffffff;
  --whatsapp: #18a95d;
  --whatsapp-dark: #148a4c;
  --star: #f5a400;

  /* type */
  --font: "Heebo", "Segoe UI", Arial, sans-serif;

  /* spacing scale */
  --s1: 6px;
  --s2: 10px;
  --s3: 16px;
  --s4: 24px;
  --s5: 36px;
  --s6: 58px;

  /* structure */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --shadow-sm: 0 6px 18px rgba(8, 43, 95, 0.08);
  --shadow: 0 16px 40px rgba(8, 43, 95, 0.12);
  --container: 1160px;
  --gutter: clamp(16px, 4vw, 40px);
  --header-h: 76px;
}

/* ==========================================================================
   base
   ========================================================================== */

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  text-align: right;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
  color: inherit;
}

p {
  margin: 0 0 var(--s2);
}

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

/* every in-page anchor clears the sticky header */
[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

[hidden] {
  display: none !important;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.skip-link {
  position: absolute;
  top: -60px;
  right: 16px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--navy);
  font-weight: 800;
  transition: top 140ms ease;
}

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

/* ==========================================================================
   typography
   ========================================================================== */

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.15rem, 3.45vw, 3.5rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.78rem, 2.65vw, 2.6rem);
  line-height: 1.15;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 800;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: var(--s1);
  margin: 0 0 var(--s2);
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.section-heading > p,
.why-intro,
.area-copy p,
.quote-copy > p {
  color: var(--muted);
  font-size: 1.04rem;
}

/* ==========================================================================
   buttons
   ========================================================================== */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  min-height: 46px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease,
    border-color 160ms ease;
}

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

.button-lg {
  min-height: 54px;
  padding: 14px 26px;
  font-size: 1.05rem;
}

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(8, 119, 223, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-dark);
}

/* green is reserved for WhatsApp */
.button-whatsapp {
  color: #fff;
  background: var(--whatsapp);
  box-shadow: 0 10px 22px rgba(24, 169, 93, 0.18);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  background: var(--whatsapp-dark);
}

.button-ghost {
  color: var(--navy);
  background: var(--paper);
  border-color: var(--line);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}

/* ==========================================================================
   header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: var(--s4);
  min-height: var(--header-h);
  padding: 8px var(--gutter);
  border-bottom: 1px solid rgba(219, 229, 239, 0.9);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 14px rgba(8, 43, 95, 0.05);
  backdrop-filter: blur(14px);
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 126px;
  height: 60px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 30px);
  margin-inline: auto;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--s2);
  flex: 0 0 auto;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  min-height: 44px;
  padding-inline: var(--s1);
  color: var(--navy);
  font-weight: 800;
  white-space: nowrap;
}

.header-phone span {
  direction: ltr;
}

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

.nav-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: var(--paper);
  cursor: pointer;
}

.nav-toggle .icon-close,
.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

/* slide-in nav panel */
.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(8, 43, 95, 0.45);
}

.nav-panel {
  position: fixed;
  inset-block: 0;
  inset-inline-start: 0;
  z-index: 46;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: min(320px, 82vw);
  padding: calc(var(--header-h) + 12px) var(--s3) var(--s4);
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow-y: auto;
}

.nav-panel a {
  padding: 14px var(--s2);
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
}

.nav-panel a:last-child {
  margin-top: var(--s3);
  border-bottom: 0;
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--blue);
  text-align: center;
}

/* ==========================================================================
   layout primitives
   ========================================================================== */

.section {
  padding-block: var(--s6);
  padding-inline: var(--gutter);
}

.section > * {
  max-width: var(--container);
  margin-inline: auto;
}

.section--soft {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto var(--s5);
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading.align-start {
  margin-inline: 0;
  text-align: right;
}

.section-heading.align-start .eyebrow {
  justify-content: flex-start;
}

/* ==========================================================================
   hero — image panel on the inline-start side, message alongside it
   ========================================================================== */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
  align-items: stretch;
  min-height: 560px;
  background: linear-gradient(180deg, #f8fbff, var(--soft));
}

/* the photo is taken out of flow so its aspect ratio can't dictate the row
   height — the hero is sized by its message, the image covers the panel */
.hero-media {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: var(--soft-2);
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 710px;
  padding: clamp(34px, 5vw, 58px) clamp(20px, 5vw, 68px);
}

.hero-strong {
  max-width: 620px;
  margin: var(--s3) 0 0;
  color: var(--ink);
  font-size: clamp(1.15rem, 1.7vw, 1.42rem);
  font-weight: 900;
}

.hero-copy {
  max-width: 650px;
  margin: var(--s2) 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s4);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s2) var(--s3);
  padding: var(--s3) 0 0;
  margin: var(--s4) 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 800;
}

.trust-row li {
  display: flex;
  align-items: center;
  gap: var(--s1);
}

.trust-row .icon {
  width: 17px;
  height: 17px;
  color: var(--blue);
}

/* ==========================================================================
   problem band
   ========================================================================== */

.band {
  padding-block: var(--s5);
  padding-inline: var(--gutter);
  color: #fff;
  background: var(--navy);
}

.band-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  max-width: var(--container);
  margin-inline: auto;
}

.band h2 {
  color: #fff;
}

.band .eyebrow {
  color: #8fbcf5;
}

.band-copy p {
  margin: 0 0 var(--s2);
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
}

.band-copy .band-punch {
  margin: var(--s3) 0;
  color: #fff;
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  font-weight: 900;
}

/* ==========================================================================
   services
   ========================================================================== */

.service-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s3);
}

.service-groups article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.service-groups h3 {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding-bottom: 13px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.service-groups h3 .icon {
  width: 25px;
  height: 25px;
  color: var(--blue);
}

.service-groups article > p {
  margin: 0 0 var(--s3);
  color: var(--muted);
}

.service-groups ul {
  display: grid;
  gap: var(--s1);
  padding: 0;
  margin: 0;
  color: var(--muted);
  list-style: none;
}

.service-groups li {
  position: relative;
  padding-inline-start: 14px;
}

.service-groups li::before {
  position: absolute;
  inset-inline-start: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

/* what every building gets — the service commitment, as a modern panel */
.assurances {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s4);
  padding: var(--s4) var(--s5);
  margin-top: var(--s3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft-2);
}

.assurances-title {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.assurances > div {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
}

.assurances .icon {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--blue);
}

.assurances strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 900;
}

.assurances p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ==========================================================================
   why us
   ========================================================================== */

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.why-intro {
  margin-bottom: var(--s4);
}

.why-list {
  display: grid;
  gap: var(--s2);
}

.why-list article {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  padding: 14px 16px;
  border: 1px solid rgba(219, 229, 239, 0.95);
  border-radius: var(--radius-sm);
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(8, 43, 95, 0.04);
}

.why-list .icon {
  width: 22px;
  height: 22px;
  margin-top: 3px;
  color: var(--blue);
}

.why-list h3 {
  font-size: 1.02rem;
}

.why-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.why-figure {
  margin: 0;
}

.why-figure img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.why-figure figcaption {
  margin-top: var(--s2);
  color: var(--muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   steps
   ========================================================================== */

/* `margin: 0 auto` — a bare `margin: 0` would cancel the `margin-inline: auto`
   inherited from `.section > *` and, in RTL, pin the row to the right edge
   with all the slack on the left. */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s3);
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.steps li {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.steps-num {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.steps p {
  margin: var(--s1) 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

/* ==========================================================================
   gallery
   ========================================================================== */

/* Flex-wrap rather than a rigid grid so a row that isn't full stays centred
   instead of leaving an orphan gap on one side.
   `margin: 0 auto` — a bare `margin: 0` would cancel the `margin-inline: auto`
   inherited from `.section > *` and, in RTL, pin the whole gallery to the right
   edge with all the slack on the left. */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s2);
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.gallery li {
  flex: 0 1 calc((100% - var(--s2) * 2) / 3);
}

.gallery figure {
  position: relative;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow-sm);
}

.gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
}

.gallery figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 26px 14px 12px;
  color: #fff;
  background: linear-gradient(to top, rgba(8, 43, 95, 0.9), rgba(8, 43, 95, 0));
  font-weight: 800;
  font-size: 0.94rem;
}

/* ==========================================================================
   reviews
   ========================================================================== */

.icon-google {
  width: 16px;
  height: 16px;
}

.review-trust {
  margin-top: var(--s2);
  color: var(--blue);
  font-weight: 800;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s3);
}

.reviews-grid figure {
  display: flex;
  flex-direction: column;
  padding: 20px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.stars {
  direction: ltr;
  color: var(--star);
  font-size: 1rem;
}

.reviews-grid blockquote {
  margin: var(--s2) 0 var(--s3);
  color: var(--ink);
  font-size: 0.96rem;
}

.reviews-grid figcaption {
  margin-top: auto;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 900;
}

.reviews-more {
  display: block;
  width: 100%;
  max-width: 320px;
  min-height: 48px;
  margin: var(--s4) auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--navy);
  background: var(--paper);
  font-weight: 800;
  cursor: pointer;
}

.reviews-more:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.reviews-link {
  display: inline-flex;
  margin-top: var(--s2);
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
}

/* ==========================================================================
   service area
   ========================================================================== */

.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
  padding: 0;
  margin: var(--s4) 0 0;
  list-style: none;
}

.area-tags li {
  padding: 7px 16px;
  border-radius: 100px;
  color: var(--navy);
  background: var(--blue-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

/* ==========================================================================
   quote
   ========================================================================== */

.quote-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(330px, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(28px, 4vw, 44px) clamp(20px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: var(--shadow);
}

.quote-note {
  margin-top: var(--s2);
  color: var(--muted);
  font-size: 0.95rem;
}

.direct-contact {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s4);
}

.direct-contact a {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--navy);
  background: var(--paper);
  font-size: 0.94rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.direct-contact a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s3);
  padding: var(--s4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

/* block, not grid, so the "לא חובה" tag stays on the label's own line */
.quote-form label {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 800;
}

.optional {
  margin-inline-start: var(--s1);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
}

.full-width {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select {
  width: 100%;
  min-height: 48px;
  margin-top: var(--s1);
  padding: 10px 12px;
  border: 1px solid #c8d5e2;
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
}

.quote-form input:focus-visible,
.quote-form select:focus-visible {
  border-color: var(--blue);
  outline: 3px solid rgba(8, 119, 223, 0.16);
  outline-offset: 0;
}

.quote-form input.is-invalid,
.quote-form select.is-invalid {
  border-color: #d13b3b;
  background: #fff8f8;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--blue-dark);
  font-size: 0.95rem;
  font-weight: 900;
}

.form-status.is-error {
  color: #b32020;
}

.form-hint {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list {
  display: grid;
  gap: var(--s2);
  max-width: 860px;
  margin-inline: auto;
}

.faq-list details {
  padding: 4px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  padding: 13px 0;
  color: var(--navy);
  font-size: 1.01rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "\2212";
}

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

/* ==========================================================================
   footer
   ========================================================================== */

.site-footer {
  padding-inline: var(--gutter);
  color: rgba(255, 255, 255, 0.8);
  background: var(--navy);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(3, minmax(140px, 0.8fr));
  gap: var(--s5) var(--s4);
  max-width: var(--container);
  padding-block: var(--s5);
  margin-inline: auto;
}

.footer-brand img {
  width: 150px;
  height: auto;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  background: #fff;
}

.footer-brand p {
  margin: var(--s3) 0 0;
  font-size: 0.94rem;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: var(--s2);
}

.footer-col h2 {
  margin: 0 0 var(--s1);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.footer-col p {
  margin: 0;
  font-size: 0.95rem;
}

.footer-col a {
  font-size: 0.95rem;
  font-weight: 700;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  justify-self: start;
  overflow-wrap: anywhere;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s2);
  max-width: var(--container);
  padding-block: var(--s3);
  margin-inline: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
}

.footer-legal p {
  margin: 0;
}

/* ==========================================================================
   sticky mobile action bar
   ========================================================================== */

.mobile-action-bar {
  display: none;
}

/* ==========================================================================
   responsive — 1060px: nav collapses, sticky action bar appears
   ========================================================================== */

@media (max-width: 1060px) {
  body {
    padding-bottom: 76px;
  }

  .site-nav {
    display: none;
  }

  .header-actions {
    margin-inline-start: auto;
  }

  .nav-toggle {
    display: grid;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-media {
    min-height: 0;
  }

  .hero-media img {
    position: static;
    height: clamp(250px, 40vh, 380px);
  }

  .hero-content {
    max-width: var(--container);
    margin-inline: auto;
    padding-block: var(--s5);
  }

  .mobile-action-bar {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 35;
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
    gap: var(--s2);
    padding: 8px var(--s3);
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -8px 24px rgba(8, 43, 95, 0.14);
    backdrop-filter: blur(10px);
  }

  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--s1);
    min-height: 50px;
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 0.96rem;
    font-weight: 800;
  }

  .mab-secondary {
    background: var(--blue);
  }

  .mab-primary {
    background: var(--whatsapp);
  }
}

/* ==========================================================================
   responsive — 900px: multi-column layouts collapse
   ========================================================================== */

@media (max-width: 900px) {
  .band-inner,
  .why-grid,
  .area-grid,
  .quote-card {
    grid-template-columns: 1fr;
  }

  .why-figure {
    max-width: 460px;
  }

  .service-groups,
  .steps {
    grid-template-columns: 1fr;
  }

  .assurances {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: var(--s4);
  }

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

  /* gallery becomes a swipe strip */
  .gallery {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: var(--s2);
    padding-bottom: var(--s2);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .gallery li {
    flex: 0 0 min(78vw, 340px);
    scroll-snap-align: start;
  }

  .quote-form {
    padding: var(--s3);
  }

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

/* ==========================================================================
   responsive — 640px: phone
   ========================================================================== */

@media (max-width: 640px) {
  :root {
    --header-h: 66px;
    --s6: 44px;
  }

  .site-header {
    gap: var(--s2);
    padding-inline: 14px;
  }

  .brand img {
    width: 92px;
    height: 48px;
  }

  .header-phone span {
    display: none;
  }

  .header-phone {
    justify-content: center;
    width: 44px;
    height: 44px;
    padding-inline: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  /* on phones the sticky action bar carries both CTAs, so the header keeps
     only the logo, a call button and the menu — otherwise the row overflows */
  .header-actions .button-primary {
    display: none;
  }

  /* keep the hero CTA within reach of the first screen */
  .hero-media img {
    height: clamp(200px, 30vh, 290px);
  }

  .hero-content {
    padding: var(--s4) var(--s3) var(--s5);
  }

  h1 {
    font-size: clamp(1.95rem, 8.6vw, 2.6rem);
  }

  h2 {
    font-size: clamp(1.55rem, 6.6vw, 2.1rem);
  }

  .hero-copy {
    margin-top: var(--s2);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: var(--s3);
  }

  .trust-row {
    gap: var(--s2);
    margin-top: var(--s3);
    font-size: 0.92rem;
  }

  .assurances,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .quote-card {
    padding: var(--s4) var(--s3);
    border-radius: var(--radius);
  }

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

  .direct-contact {
    display: grid;
  }

  .direct-contact a {
    justify-content: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--s4);
  }
}

/* ==========================================================================
   motion
   ========================================================================== */

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .button:hover,
  .button:focus-visible {
    transform: none;
  }
}
