/* =========================================================
   יוסי נמני שיפוצים ועבודות גמר — Stylesheet
   Clean, premium contractor look. RTL Hebrew.
   ========================================================= */

:root {
  --bg: #f6f2ec;          /* warm off-white / light stone */
  --bg-alt: #efe8de;      /* slightly deeper stone */
  --surface: #ffffff;
  --ink: #1b1813;         /* near-black charcoal */
  --ink-soft: #4c473f;
  --muted: #8b8378;
  --line: #e4ddd1;
  --gold: #b08a45;        /* muted gold */
  --gold-deep: #95743a;
  --gold-soft: #d8c39a;
  --black: #14110c;
  --shadow-sm: 0 2px 10px rgba(27, 24, 19, .06);
  --shadow-md: 0 14px 40px rgba(27, 24, 19, .12);
  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1180px;
  --header-h: 74px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Heebo", "Assistant", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: "Frank Ruhl Libre", "Heebo", Georgia, serif;
  font-weight: 700;
  line-height: 1.18;
  margin: 0;
  letter-spacing: -.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}

.section { padding-block: 84px; }
.section--tight { padding-block: 60px; }
.bg-alt { background: var(--bg-alt); }
.bg-dark { background: var(--black); color: #f4efe6; }

/* ---------- Section headers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--gold-deep);
  text-transform: none;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--gold);
  display: inline-block;
}
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.section-head p { color: var(--ink-soft); margin-top: 14px; font-size: 18px; }
.center { text-align: center; margin-inline: auto; }
.center .eyebrow::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: 50px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s, box-shadow .2s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:active { transform: translateY(1px); }
.btn--dark { background: var(--black); color: #fff; }
.btn--dark:hover { background: #2c261d; box-shadow: var(--shadow-md); transform: translateY(-2px); }
/* WhatsApp: official green with white text + white logo (standard look) */
.btn--wa { background: #25d366; color: #fff; }
/* The WhatsApp bubble (the focal shape) sits high-left within the glyph box,
   so nudge it down+right to optically centre the bubble. */
.btn--wa svg { width: 20px; height: 20px; transform: translate(0.8px, 1.1px); }
.btn--wa:hover { background: #1eb858; box-shadow: 0 12px 30px rgba(37,211,102,.35); transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--bg-alt); }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 242, 236, .82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
  background: rgba(246, 242, 236, .94);
}
.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo {
  height: 48px; width: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: "Frank Ruhl Libre", serif; font-weight: 700; font-size: 18px; }
.brand__tag { font-size: 12.5px; color: var(--gold-deep); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-weight: 600;
  font-size: 16px;
  padding: 9px 13px;
  border-radius: 8px;
  color: var(--ink-soft);
  transition: color .2s, background .2s;
}
.nav a:hover { color: var(--ink); background: rgba(176,138,69,.1); }

.header__cta { display: flex; align-items: center; gap: 10px; }
.header__cta .btn { padding: 11px 20px; font-size: 15px; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 10px;
  cursor: pointer;
  align-items: center; justify-content: center;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform .25s var(--ease), opacity .2s;
}
.hamburger span::before { position: absolute; top: -6px; }
.hamburger span::after { position: absolute; top: 6px; }
.hamburger.open span { background: transparent; }
.hamburger.open span::before { transform: translateY(6px) rotate(45deg); }
.hamburger.open span::after { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transform: translateY(-120%);
  transition: transform .32s var(--ease);
  z-index: 55;
  padding: 14px 22px 22px;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  display: block;
  padding: 13px 6px;
  font-weight: 600;
  font-size: 18px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav .btn { width: 100%; margin-top: 14px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding-block: clamp(48px, 7vw, 88px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(176,138,69,.12);
  color: var(--gold-deep);
  border: 1px solid rgba(176,138,69,.3);
  padding: 7px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(34px, 5.4vw, 60px);
  margin-bottom: 6px;
}
.hero h1 .accent { color: var(--gold-deep); }
.hero__slogan {
  font-family: "Frank Ruhl Libre", serif;
  font-size: clamp(19px, 2.6vw, 26px);
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 18px;
}
.hero__sub {
  font-size: 18.5px;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 30px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__mini {
  margin-top: 26px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 15px;
}
.hero__mini span { display: inline-flex; align-items: center; gap: 7px; }
.hero__mini b { color: var(--ink); }

.hero__media {
  position: relative;
}
.hero__media img {
  width: 100%;
  height: clamp(360px, 52vw, 560px);
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
  pointer-events: none;
}
.hero__chip {
  position: absolute;
  bottom: 18px; right: 18px;
  background: rgba(20,17,12,.82);
  color: #fff;
  backdrop-filter: blur(6px);
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.hero__chip b { display: block; font-size: 22px; font-family: "Frank Ruhl Libre", serif; color: var(--gold-soft); }
.hero__chip small { font-size: 13px; opacity: .85; }

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust {
  background: var(--black);
  color: #f3eee4;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 4px;
}
.trust__icon {
  width: 46px; height: 46px;
  flex: none;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(216,195,154,.14);
  color: var(--gold-soft);
}
.trust__icon svg { width: 24px; height: 24px; }
.trust__item b { display: block; font-size: 16.5px; color: #fff; }
.trust__item span { font-size: 13.5px; color: #b8b0a2; }

/* =========================================================
   ABOUT
   ========================================================= */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.about__body p { color: var(--ink-soft); margin: 0 0 16px; }
.about__quote {
  margin-top: 26px;
  padding: 22px 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border-inline-start: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.about__quote p {
  font-family: "Frank Ruhl Libre", serif;
  font-size: 21px;
  color: var(--ink);
  margin: 0;
  font-weight: 600;
}
.about__quote cite { display: block; margin-top: 8px; font-style: normal; color: var(--gold-deep); font-weight: 700; font-size: 15px; }
.about__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 14px;
  height: 100%;
}
.about__media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.about__media img:first-child { grid-row: span 2; }

/* =========================================================
   SERVICES
   ========================================================= */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 20px;
}
.service {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.service__icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: linear-gradient(135deg, #f3ead8, #e7d6b4);
  color: var(--gold-deep);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.service__icon svg { width: 27px; height: 27px; }
.service h3 { font-size: 20px; margin-bottom: 8px; }
.service p { font-size: 15.5px; color: var(--ink-soft); margin: 0; }

/* =========================================================
   PROCESS
   ========================================================= */
.process__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px 24px;
}
/* the optional interior-designer step, gently highlighted */
.step--accent {
  background: linear-gradient(180deg, #fbf6ec, var(--surface));
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-sm);
}
.step__num {
  font-family: "Frank Ruhl Libre", serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 12px;
}
.step--accent .step__num { color: var(--gold); }
.step h3 { font-size: 17.5px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
.step__opt {
  display: inline-block;
  font-family: "Heebo", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gold-deep);
  background: rgba(176,138,69,.14);
  border-radius: 50px;
  padding: 2px 9px;
  vertical-align: middle;
  margin-inline-start: 4px;
}
.process__note {
  margin-top: 30px;
  background: var(--surface);
  border: 1px dashed var(--gold-soft);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.process__note svg { width: 26px; height: 26px; color: var(--gold-deep); flex: none; margin-top: 3px; }
.process__note p { margin: 0; color: var(--ink-soft); }
.process__note b { color: var(--ink); }

/* =========================================================
   GALLERY
   ========================================================= */
.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.filter {
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  padding: 9px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.filter:hover { border-color: var(--gold); color: var(--ink); }
.filter.active { background: var(--black); border-color: var(--black); color: #fff; }

.gallery {
  columns: 3;
  column-gap: 16px;
}
.gcard {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  background: var(--bg-alt);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.gcard.hide { display: none; }
.gcard img { width: 100%; height: auto; transition: transform .5s var(--ease); }
.gcard:hover { box-shadow: var(--shadow-md); }
.gcard:hover img { transform: scale(1.05); }
.gcard__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(20,17,12,.78) 0%, rgba(20,17,12,.05) 55%, transparent 100%);
  opacity: 0;
  transition: opacity .3s;
}
.gcard:hover .gcard__overlay { opacity: 1; }
.gcard__cat {
  align-self: flex-start;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 50px;
  margin-bottom: 8px;
}
.gcard__title { color: #fff; font-weight: 600; font-size: 15.5px; }

/* =========================================================
   PROCESS / BEFORE-AFTER PAIRS
   ========================================================= */
.pairs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pair {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pair__imgs { display: grid; grid-template-columns: 1fr 1fr; }
.pair__col { position: relative; }
.pair__col img { width: 100%; height: 210px; object-fit: cover; cursor: pointer; }
.pair__col span {
  position: absolute;
  top: 10px; inset-inline-start: 10px;
  background: rgba(20,17,12,.8);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.pair__col:last-child span { background: var(--gold); }
.pair__cap { padding: 16px 18px; }
.pair__cap b { font-size: 16.5px; }
.pair__cap p { margin: 4px 0 0; font-size: 14.5px; color: var(--ink-soft); }

/* =========================================================
   VIDEO SHOWCASE
   ========================================================= */
.video-wrap {
  max-width: 880px;
  margin-inline: auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #000;
  aspect-ratio: 16 / 9;
}
.video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
}
.tcard__stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 3px; font-size: 17px; }
.tcard p { font-size: 16.5px; color: var(--ink); margin: 0 0 16px; }
.tcard__who { font-size: 14px; color: var(--muted); font-weight: 600; }
.tcards__note { text-align: center; margin-top: 24px; color: var(--muted); font-size: 14px; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta {
  background:
    linear-gradient(rgba(20,17,12,.86), rgba(20,17,12,.9)),
    url("../public/images/img21.jpeg") center/cover no-repeat;
  color: #fff;
  text-align: center;
}
.cta h2 { font-size: clamp(27px, 4vw, 40px); margin-bottom: 14px; }
.cta p { font-size: 19px; color: #ddd5c7; max-width: 620px; margin: 0 auto 30px; }
.cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.contact__list { list-style: none; margin: 26px 0 0; padding: 0; }
.contact__list li { display: flex; align-items: center; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.contact__list li:last-child { border-bottom: none; }
.contact__ic {
  width: 48px; height: 48px; flex: none;
  border-radius: 12px;
  background: var(--bg-alt);
  color: var(--gold-deep);
  display: grid; place-items: center;
}
.contact__ic svg { width: 23px; height: 23px; }
.contact__list small { display: block; color: var(--muted); font-size: 13.5px; }
.contact__list b, .contact__list a { font-size: 18px; font-weight: 700; }
.contact__list a:hover { color: var(--gold-deep); }
.contact__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.contact__card {
  background: var(--black);
  color: #f3eee4;
  border-radius: 20px;
  padding: 38px 34px;
  box-shadow: var(--shadow-md);
}
.contact__card .brand__logo { height: 64px; margin-bottom: 18px; }
.contact__card h3 { color: #fff; font-size: 24px; margin-bottom: 10px; }
.contact__card p { color: #c7bfb1; margin: 0 0 8px; }
.contact__card .tagline { color: var(--gold-soft); font-weight: 700; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: #100d09; color: #b8b0a2; padding-block: 40px; text-align: center; }
.footer__brand { font-family: "Frank Ruhl Libre", serif; color: #fff; font-size: 20px; margin-bottom: 8px; }
.footer__meta { font-size: 14.5px; }
.footer__sep { color: var(--gold); margin-inline: 8px; }
.footer__copy { margin-top: 16px; font-size: 13px; color: #76706552; color: #76706a; }

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.wa-float {
  position: fixed;
  bottom: 22px;
  inset-inline-start: 22px;
  z-index: 70;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
  transition: transform .2s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; transform: translate(1.3px, 1.8px); }
.wa-float::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .7; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { opacity: 0; }
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(15,13,9,.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}
.lightbox__cap {
  position: absolute;
  bottom: 22px; left: 0; right: 0;
  text-align: center;
  color: #f3eee4;
  font-size: 16px;
  font-weight: 600;
}
.lb-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s;
}
.lb-btn:hover { background: rgba(255,255,255,.25); }
.lb-prev { inset-inline-end: 18px; }   /* RTL: prev on the right */
.lb-next { inset-inline-start: 18px; }
.lb-close {
  position: absolute;
  top: 18px; inset-inline-start: 18px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: none; color: #fff;
  font-size: 24px; cursor: pointer;
}
.lb-close:hover { background: rgba(255,255,255,.25); }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
/* Content is visible by default (no-JS friendly). Animation only arms
   when JS adds .js-on to <html>, so a JS failure never hides content. */
.js-on .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js-on .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-on .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .wa-float::after { animation: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .trust__grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .process__grid { grid-template-columns: repeat(3, 1fr); }
  .pairs { grid-template-columns: 1fr; }
  .gallery { columns: 2; }
  .tcards { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .nav, .header__cta .btn--ghost { display: none; }
  .hamburger { display: inline-flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .hero__media img { height: clamp(280px, 60vw, 420px); }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { height: 360px; }
  .contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding-block: 60px; }
  .brand__text { display: none; }          /* logo already carries the name */
  .brand__logo { height: 52px; }
  .header__cta .btn--call-mini { padding: 11px 18px; }
  .trust__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .pair__col img { height: 170px; }
  .header__cta .btn--call-mini { padding: 10px 16px; }
  .wa-float { width: 54px; height: 54px; bottom: 16px; inset-inline-start: 16px; }
}
