/* ==========================================================================
   אבן יסוד — בנייה ושיפוצים | premium RTL stylesheet
   Palette: charcoal #16191D / deep #0F1216 / stone #F4F1EA / brass #C49A4A
   Type: Heebo (headings) + Assistant (body)
   ========================================================================== */

:root {
  --charcoal: #16191D;
  --deep: #0F1216;
  --stone: #F4F1EA;
  --stone-2: #ECE7DC;
  --brass: #C49A4A;
  --brass-dark: #A87F32;
  --gray: #8A8F98;
  --line: rgba(255, 255, 255, .10);
  --line-dark: rgba(20, 24, 28, .12);
  --white: #ffffff;

  --ink: #1B1F24;            /* body text on light */
  --ink-soft: #565d66;
  --on-dark: #EDEAE3;
  --on-dark-soft: #A9AEB6;

  --container: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, .35);
  --shadow-card: 0 14px 40px -22px rgba(0, 0, 0, .45);
  --ease: cubic-bezier(.22, .61, .36, 1);

  --h-font: "Heebo", system-ui, sans-serif;
  --b-font: "Assistant", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--b-font);
  background: var(--stone);
  color: var(--ink);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--h-font); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; }
h1 { font-size: clamp(2.3rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); font-weight: 700; }
p { color: var(--ink-soft); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--dark { background: var(--charcoal); color: var(--on-dark); }
.section--dark p { color: var(--on-dark-soft); }
.section--deep { background: var(--deep); color: var(--on-dark); }
.center { text-align: center; }

/* ---------- reveal animation base (only when JS active) ---------- */
html.js .reveal { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1 !important; }
  html { scroll-behavior: auto; }
}

/* ---------- eyebrow + section heading ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--h-font); font-weight: 700; font-size: .82rem;
  letter-spacing: .08em; color: var(--brass-dark); text-transform: none;
  margin-bottom: 14px;
}
.section--dark .eyebrow, .section--deep .eyebrow { color: var(--brass); }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; display: inline-block; }
.sec-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.sec-head.center { margin-inline: auto; }
.sec-head p { margin-top: 16px; font-size: 1.08rem; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--brass); --fg: #1a1408;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--h-font); font-weight: 700; font-size: 1rem;
  padding: 15px 28px; border-radius: 999px; border: 1.5px solid transparent;
  background: var(--bg); color: var(--fg); cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -12px rgba(196, 154, 74, .6); }
.btn--ghost { background: transparent; color: inherit; border-color: currentColor; }
.btn--ghost:hover { background: var(--brass); color: #1a1408; border-color: var(--brass); box-shadow: none; }
.btn--lg { padding: 17px 34px; font-size: 1.06rem; }
.btn--wa { --bg: #25D366; --fg: #06351b; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- header ---------- */
.header {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 100;
  padding-block: 18px; transition: padding .3s var(--ease), background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  padding-block: 11px; background: rgba(15, 18, 22, .85);
  backdrop-filter: blur(12px); border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .8);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; color: var(--white); }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__txt { font-family: var(--h-font); font-weight: 800; font-size: 1.18rem; letter-spacing: -.02em; line-height: 1; }
.brand__txt small { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .12em; color: var(--brass); margin-top: 3px; }
.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  color: var(--on-dark); font-family: var(--h-font); font-weight: 600; font-size: .98rem;
  padding: 9px 14px; border-radius: 8px; position: relative; transition: color .2s;
}
.nav__links a::after {
  content: ""; position: absolute; inset-block-end: 4px; inset-inline: 14px;
  height: 2px; background: var(--brass); transform: scaleX(0); transform-origin: inline-end;
  transition: transform .3s var(--ease);
}
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); transform-origin: inline-start; }
.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { color: var(--on-dark); font-family: var(--h-font); font-weight: 700; display: flex; align-items: center; gap: 7px; }
.nav__phone:hover { color: var(--brass); }
.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.05); cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.burger span { width: 20px; height: 2px; background: var(--white); transition: .3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- mobile nav drawer ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99; background: rgba(15,18,22,.97);
  backdrop-filter: blur(8px); display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a { color: var(--on-dark); font-family: var(--h-font); font-weight: 700; font-size: 1.5rem; padding: 12px; }
.mobile-nav a:hover { color: var(--brass); }
.mobile-nav .btn { margin-top: 18px; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: var(--on-dark); overflow: hidden; background: var(--deep); }
.hero__bg { position: absolute; inset: -8% 0 0 0; z-index: 0; }
.hero__bg img { width: 100%; height: 116%; object-fit: cover; opacity: .42; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(15,18,22,.94) 8%, rgba(15,18,22,.72) 48%, rgba(15,18,22,.4) 100%); }
.hero__inner { position: relative; z-index: 2; padding-block: 150px 90px; max-width: 760px; }
.hero__chip { display: inline-flex; align-items: center; gap: 9px; background: rgba(196,154,74,.13); border: 1px solid rgba(196,154,74,.4); color: var(--brass); font-family: var(--h-font); font-weight: 700; font-size: .85rem; padding: 8px 16px; border-radius: 999px; margin-bottom: 24px; }
.hero h1 { color: var(--white); }
.hero h1 .accent { color: var(--brass); }
.hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--on-dark-soft); margin-top: 22px; max-width: 580px; }
.hero__cta { margin-top: 36px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 40px; }
.hero__chips li { display: flex; align-items: center; gap: 9px; font-family: var(--h-font); font-weight: 600; font-size: .95rem; color: var(--on-dark); }
.hero__chips svg { color: var(--brass); flex: none; }

/* ---------- trust strip / stats ---------- */
.stats { background: var(--brass); color: #1a1408; }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: 38px; }
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; inset-inline-start: -12px; inset-block: 8px; width: 1px; background: rgba(26,20,8,.18); }
.stat__num { font-family: var(--h-font); font-weight: 800; font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1; }
.stat__label { font-weight: 600; font-size: .92rem; margin-top: 7px; color: #4a3a17; }

/* ---------- service cards ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 30px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  height: 100%;
}
.section--dark .card, .section--deep .card { background: rgba(255,255,255,.035); border-color: var(--line); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--brass); }
.card__icon { width: 54px; height: 54px; border-radius: 12px; display: grid; place-items: center; background: rgba(196,154,74,.14); color: var(--brass-dark); margin-bottom: 18px; }
.section--dark .card__icon, .section--deep .card__icon { color: var(--brass); }
.card h3 { margin-bottom: 9px; }
.card p { font-size: .98rem; }
.card__link { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-family: var(--h-font); font-weight: 700; font-size: .92rem; color: var(--brass-dark); }
.section--dark .card__link { color: var(--brass); }
.card__link svg { transition: transform .25s var(--ease); }
.card:hover .card__link svg { transform: translateX(-5px); }

/* ---------- features (why us) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.4; }
.feature { display: flex; gap: 18px; padding-block: 18px; border-top: 1px solid var(--line-dark); }
.section--dark .feature { border-top-color: var(--line); }
.feature:first-of-type { border-top: 0; }
.feature__no { font-family: var(--h-font); font-weight: 800; font-size: 1.4rem; color: var(--brass); flex: none; width: 34px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 5px; }
.feature p { font-size: .98rem; }

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 16px; }
.step__no { font-family: var(--h-font); font-weight: 800; font-size: 3rem; color: rgba(196,154,74,.28); line-height: 1; }
.section--dark .step__no { color: rgba(196,154,74,.45); }
.step h3 { font-size: 1.18rem; margin: 8px 0; }
.step p { font-size: .96rem; }

/* ---------- projects ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.filters button {
  font-family: var(--h-font); font-weight: 700; font-size: .92rem; padding: 9px 20px; border-radius: 999px;
  border: 1.5px solid var(--line-dark); background: transparent; color: var(--ink-soft); cursor: pointer; transition: .25s var(--ease);
}
.filters button:hover { border-color: var(--brass); color: var(--ink); }
.filters button.active { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.project {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3.2;
  box-shadow: var(--shadow-card); cursor: pointer; transition: transform .4s var(--ease);
}
.project img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.project:hover img { transform: scale(1.07); }
.project__veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,18,22,.92) 6%, rgba(15,18,22,.1) 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; color: var(--white); }
.project__cat { font-family: var(--h-font); font-weight: 700; font-size: .8rem; color: var(--brass); letter-spacing: .05em; }
.project__veil h3 { color: var(--white); margin-top: 6px; }
.project__meta { font-size: .9rem; color: var(--on-dark-soft); margin-top: 6px; }

/* ---------- testimonials ---------- */
.quote { background: var(--white); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 30px; height: 100%; box-shadow: var(--shadow-card); }
.quote__stars { color: var(--brass); letter-spacing: 3px; font-size: 1.05rem; margin-bottom: 14px; }
.quote p { font-size: 1.04rem; color: var(--ink); line-height: 1.75; }
.quote__by { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line-dark); }
.quote__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--charcoal); color: var(--brass); display: grid; place-items: center; font-family: var(--h-font); font-weight: 800; flex: none; }
.quote__name { font-family: var(--h-font); font-weight: 700; color: var(--ink); }
.quote__role { font-size: .88rem; color: var(--ink-soft); }

/* ---------- guarantee band ---------- */
.badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.badge { display: flex; gap: 14px; align-items: flex-start; }
.badge svg { color: var(--brass); flex: none; }
.badge h4 { font-family: var(--h-font); font-size: 1.05rem; margin-bottom: 3px; }
.badge p { font-size: .92rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--deep); color: var(--on-dark); text-align: center; }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .22; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 40%, rgba(196,154,74,.18), transparent 60%); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); max-width: 720px; margin-inline: auto; }
.cta-band p { margin: 18px auto 32px; max-width: 560px; font-size: 1.1rem; }

/* ---------- forms ---------- */
.form { display: grid; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--h-font); font-weight: 600; font-size: .92rem; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: var(--b-font); font-size: 1rem; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line-dark); background: var(--white); color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(196,154,74,.18); }
.field textarea { resize: vertical; min-height: 110px; }
.form__note { font-size: .85rem; color: var(--ink-soft); }
.form__ok { background: rgba(37,211,102,.12); border: 1px solid rgba(37,211,102,.4); color: #1c7a44; padding: 14px 18px; border-radius: var(--radius-sm); font-weight: 600; display: none; }
.form__ok.show { display: block; }

.info-list { display: grid; gap: 22px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item svg { color: var(--brass); flex: none; margin-top: 3px; }
.info-item h4 { font-family: var(--h-font); margin-bottom: 3px; }
.info-item a, .info-item p { color: var(--on-dark-soft); }
.info-item a:hover { color: var(--brass); }

/* ---------- footer ---------- */
.footer { background: var(--deep); color: var(--on-dark-soft); padding-block: 64px 28px; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.footer h4 { font-family: var(--h-font); color: var(--white); font-size: 1.02rem; margin-bottom: 16px; }
.footer a { display: block; padding: 5px 0; transition: color .2s; }
.footer a:hover { color: var(--brass); }
.footer__about p { font-size: .95rem; margin-top: 14px; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line); font-size: .85rem; }

/* ---------- mobile sticky action bar ---------- */
.mobile-bar { display: none; position: fixed; inset-block-end: 0; inset-inline: 0; z-index: 90; }
.mobile-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px; font-family: var(--h-font); font-weight: 700; color: var(--white); }
.mobile-bar .call { background: var(--charcoal); }
.mobile-bar .wa { background: #25D366; color: #06351b; }

/* page hero (inner pages) */
.page-hero { background: var(--charcoal); color: var(--on-dark); padding-block: 150px 64px; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset-block-end: 0; inset-inline-end: -60px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(196,154,74,.16), transparent 65%); }
.page-hero h1 { color: var(--white); }
.page-hero p { margin-top: 16px; max-width: 600px; font-size: 1.12rem; }
.crumbs { font-size: .9rem; color: var(--on-dark-soft); margin-bottom: 18px; }
.crumbs a:hover { color: var(--brass); }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .grid--3, .grid--4, .steps, .badges { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .stats .container { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .stat:nth-child(2)::after { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__links, .nav__phone { display: none; }
  .burger { display: flex; }
  .nav__cta .btn { display: none; }
  .mobile-bar { display: flex; }
  .grid--3, .grid--4, .grid--2, .steps, .badges { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__inner { padding-block: 120px 110px; }
  .section { padding-block: 64px; }
}

/* ==========================================================================
   UI/UX Pro Max compliance pass — accessibility & interaction only.
   No visual redesign: only keyboard focus, touch targets, press feedback,
   and WCAG-AA contrast on accent text over light backgrounds.
   ========================================================================== */

/* Skip-to-content link (visible only on keyboard focus) */
.skip-link {
  position: fixed; inset-block-start: 8px; inset-inline-start: 8px; z-index: 1000;
  background: var(--brass); color: #1a1408; font-family: var(--h-font); font-weight: 700;
  padding: 12px 18px; border-radius: 10px; transform: translateY(-160%); transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); outline: none; }
main:focus { outline: none; }

/* Visible keyboard focus on every interactive element (§1 focus-states) */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--brass); outline-offset: 3px; border-radius: 6px;
}
:focus:not(:focus-visible) { outline: none; }

/* Reduce tap latency + press feedback (§2 tap-delay, press-feedback) */
.btn, .filters button, .nav__links a, .burger, .project, .card__link, .mobile-bar a, .nav__phone, .skip-link { touch-action: manipulation; }
.btn:active { transform: translateY(-1px) scale(.99); }
.filters button:active, .card:active { transform: scale(.99); }

/* Touch targets ≥44px without altering layout (§2 touch-target-size) */
.filters button { min-height: 44px; }
.nav__links a { display: inline-flex; align-items: center; min-height: 40px; }
.footer a { padding-block: 8px; }

/* Contrast: accent text on LIGHT backgrounds must meet AA 4.5:1 (§1 color-contrast).
   #C49A4A on white is ~3.9:1 (fails for small text) → use a darker brass for text-on-light.
   Accent on dark sections keeps the brighter brass (already passes). */
.eyebrow { color: #7c5a1e; }
.card__link { color: #7c5a1e; }
.form__note a { color: #7c5a1e !important; }
.section--dark .eyebrow, .section--deep .eyebrow, .cta-band .eyebrow, .page-hero .eyebrow,
.section--dark .card__link, .section--deep .card__link { color: var(--brass); }

/* ==========================================================================
   Conversion / performance pass — promise, social proof, FAQ, on-page lead form
   ========================================================================== */
.hero__offer { margin-top: 18px; font-family: var(--h-font); font-weight: 600; font-size: .95rem; color: var(--on-dark); display: flex; flex-wrap: wrap; gap: 6px 18px; }
.rating-line { margin-top: 14px; font-family: var(--h-font); font-weight: 600; }
.rating-line__stars { color: var(--brass); letter-spacing: 2px; }
.section--dark .rating-line { color: var(--on-dark); }

/* lead-capture grid (#quote) */
.quote-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; text-align: start; }
.quote-copy h2 { color: var(--white); }
.quote-copy .eyebrow { justify-content: flex-start; }
.quote-benefits { margin: 20px 0; display: grid; gap: 10px; }
.quote-benefits li { font-family: var(--h-font); font-weight: 600; color: var(--on-dark); }
.quote-phone { font-family: var(--h-font); font-weight: 700; color: var(--on-dark); }
.quote-phone a { color: var(--brass); }
.quote-form { background: var(--white); padding: 28px; border-radius: var(--radius); box-shadow: var(--shadow); }
.quote-form .field label { color: var(--ink); }

/* FAQ accordion (native <details>) */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item { background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq__item summary { list-style: none; cursor: pointer; padding: 18px 22px; font-family: var(--h-font); font-weight: 700; color: var(--on-dark); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.6rem; color: var(--brass); line-height: 1; }
.faq__item[open] summary::after { content: "\2013"; }
.faq__a { padding: 0 22px 20px; color: var(--on-dark-soft); }

@media (max-width: 760px) { .quote-grid { grid-template-columns: 1fr; } }

/* service-area map embed */
.map-embed { height: 420px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-dark); box-shadow: var(--shadow-card); }
.map-embed iframe { display: block; width: 100%; height: 100%; }

/* clone: logo badge */
img.brand__mark{width:auto;height:56px;object-fit:contain;background:#fff;padding:9px 16px;border-radius:14px;box-shadow:0 10px 26px -12px rgba(0,0,0,.55);}
.header.scrolled img.brand__mark{height:46px;padding:7px 13px;}
.footer img.brand__mark{height:48px;}
