/* א.ב פרויקטים אור — premium industrial (steel + brand red) */
:root {
  --steel-950: #0a0e14;
  --steel-900: #111820;
  --steel-850: #161e29;
  --steel-800: #1c2636;
  --steel-700: #2a3850;
  --steel-600: #3d4f6a;
  --steel-500: #5a6e88;
  --steel-400: #8496ae;
  --steel-300: #aebccf;
  --steel-200: #d4dce8;
  --steel-100: #e9eef5;
  --steel-50: #f5f7fb;
  --copper: #c8102e;
  --copper-hover: #a50d25;
  --copper-soft: rgba(200, 16, 46, 0.14);
  --copper-glow: rgba(200, 16, 46, 0.38);
  --wa: #25d366;
  --wa-hover: #1ebe57;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --shadow: 0 10px 36px rgba(10, 14, 20, 0.1);
  --shadow-lg: 0 24px 60px rgba(10, 14, 20, 0.18);
  --header-h: 76px;
  --font: "Heebo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 1180px;
  --focus: 0 0 0 3px rgba(200, 16, 46, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--steel-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom);
}

img { max-width: 100%; display: block; }
a { color: var(--copper); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--copper-hover); }

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--copper);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--steel-100);
  box-shadow: 0 4px 24px rgba(10, 14, 20, 0.06);
  background: rgba(255, 255, 255, 0.94);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  gap: 1rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--steel-900);
  min-width: 0;
}
.nav__brand:hover { color: var(--steel-900); }

.brand-logo {
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(10, 14, 20, 0.06), 0 0 0 1px rgba(10, 14, 20, 0.06);
}

.brand-logo--nav {
  width: 46px;
  height: 46px;
  padding: 3px;
}

.brand-logo--footer {
  width: 72px;
  height: 72px;
  padding: 5px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1.2;
}
.nav__name { font-size: 0.95rem; font-weight: 700; }
.nav__tag {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--steel-500);
  letter-spacing: 0.02em;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__menu a {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  color: var(--steel-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}
.nav__menu a:hover {
  background: var(--steel-50);
  color: var(--steel-950);
}
.nav__phone {
  font-variant-numeric: tabular-nums;
  font-weight: 600 !important;
  color: var(--steel-800) !important;
  direction: ltr;
}
.nav__cta {
  background: var(--steel-900) !important;
  color: var(--white) !important;
  margin-inline-start: 0.25rem;
  padding-inline: 1.1rem !important;
}
.nav__cta:hover { background: var(--steel-700) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
}
.nav__toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--steel-800);
  border-radius: 1px;
  transition: transform 0.2s var(--ease), opacity 0.2s;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.55rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:active { transform: translateY(1px); }
.btn__icon { width: 1.15em; height: 1.15em; flex-shrink: 0; }

.btn--primary {
  background: var(--copper);
  color: var(--white);
  box-shadow: 0 4px 16px var(--copper-glow);
}
.btn--primary:hover {
  background: var(--copper-hover);
  color: var(--white);
  box-shadow: 0 6px 22px var(--copper-glow);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--steel-900);
  border-color: var(--steel-300);
}
.btn--ghost-dark:hover {
  background: var(--steel-50);
  color: var(--steel-950);
  border-color: var(--steel-500);
}

.btn--whatsapp {
  background: var(--wa);
  color: var(--white);
}
.btn--whatsapp:hover {
  background: var(--wa-hover);
  color: var(--white);
}

.btn--block { width: 100%; }

/* ——— Hero ——— */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(212, 120, 46, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(47, 90, 160, 0.1), transparent 50%),
    linear-gradient(165deg, var(--steel-950) 0%, var(--steel-900) 55%, var(--steel-850) 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding: 0.4rem 0.95rem 0.4rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--steel-200);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}
.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 3px var(--copper-soft);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px var(--copper-soft); }
  50% { box-shadow: 0 0 0 6px transparent; }
}

.hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.35rem, 5.5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.hero__title-line { display: block; }
.hero__title-line--accent {
  background: linear-gradient(105deg, var(--copper) 0%, #e85a6b 55%, var(--copper) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__tagline {
  margin: 0 0 2rem;
  max-width: 34rem;
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  font-weight: 400;
  color: var(--steel-300);
  line-height: 1.7;
}
.hero__tagline strong { color: var(--white); font-weight: 600; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__visual { position: relative; }

.hero__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--steel-800);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.45);
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 8s var(--ease);
}
.hero:hover .hero__photo { transform: scale(1.06); }

.hero__glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 14, 20, 0.55) 0%, transparent 45%),
    linear-gradient(135deg, rgba(212, 120, 46, 0.12), transparent 50%);
  pointer-events: none;
}

.hero__chips {
  position: absolute;
  inset-inline-start: -0.75rem;
  bottom: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 90%;
}
.hero__chips li {
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  background: rgba(10, 14, 20, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

/* ——— Trust strip ——— */
.trust {
  position: relative;
  z-index: 2;
  margin-top: -1.5rem;
  padding-bottom: 0.5rem;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 1.1rem;
  background: var(--white);
  border: 1px solid var(--steel-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 0.85rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.trust__item:hover { background: var(--steel-50); }
.trust__icon {
  width: 28px;
  height: 28px;
  margin-bottom: 0.45rem;
  color: var(--copper);
}
.trust__icon svg { width: 100%; height: 100%; }
.trust__item strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--steel-950);
  line-height: 1.3;
}
.trust__item span {
  font-size: 0.78rem;
  color: var(--steel-500);
}

/* ——— Sections ——— */
.section { padding: 5.5rem 0; }

.section__head { margin-bottom: 2.75rem; max-width: 40rem; }
.section__head--center {
  text-align: center;
  margin-inline: auto;
  max-width: 42rem;
}
.section__head--light .section__title { color: var(--white); }
.section__head--light .section__lead { color: var(--steel-300); }
.section__head--light .section__eyebrow { color: var(--copper); }

.section__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
}
.section__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: var(--steel-950);
}
.section__lead {
  margin: 0;
  color: var(--steel-600);
  font-size: 1.05rem;
}

/* ——— About ——— */
.about { background: var(--steel-50); }

.about__layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.about__copy .section__head { margin-bottom: 1.5rem; }
.about__copy p {
  margin: 0 0 1.1rem;
  color: var(--steel-700);
}
.about__copy p:last-child { margin-bottom: 0; }

.about__panel {
  background: var(--white);
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.about__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
  flex-wrap: wrap;
}
.about__panel-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--steel-900);
}
.about__panel-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--copper-soft);
  color: var(--copper-hover);
  direction: ltr;
}
.about__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--steel-100);
  color: var(--steel-800);
  font-weight: 550;
  font-weight: 500;
}
.about__list li:last-child { border-bottom: none; }
.about__list-num {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--copper);
  font-variant-numeric: tabular-nums;
  min-width: 1.6rem;
}

/* ——— Showcase ——— */
.showcase {
  padding: 0;
  background: var(--steel-50);
}
.showcase__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.showcase__item {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--steel-800);
}
.showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.showcase__item:hover img { transform: scale(1.06); }
.showcase__item figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 2.75rem 1.35rem 1.15rem;
  background: linear-gradient(to top, rgba(10, 14, 20, 0.92), transparent);
  color: var(--white);
  pointer-events: none;
}
.showcase__label { font-size: 1.05rem; font-weight: 700; }
.showcase__desc { font-size: 0.85rem; color: var(--steel-300); }

/* ——— Services ——— */
.services__group {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--steel-800);
}
.services__group-mark {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--copper);
  box-shadow: 0 0 0 3px var(--copper-soft);
}
.services__group-mark--print {
  background: var(--steel-700);
  box-shadow: 0 0 0 3px rgba(42, 56, 80, 0.12);
}
.services__print { margin-top: 3.25rem; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.15rem;
}
.svc-grid > .svc--featured { grid-column: span 2; }
.svc-grid > .svc:not(.svc--featured) { grid-column: span 3; }
.svc-grid--print {
  grid-template-columns: repeat(3, 1fr);
}
.svc-grid--print > .svc { grid-column: span 1; }

.svc {
  background: var(--white);
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.25s, transform 0.25s var(--ease);
  overflow: hidden;
}
.svc:hover {
  border-color: var(--steel-300);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.svc--featured { padding: 0; display: flex; flex-direction: column; }
.svc__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--steel-800);
}
.svc__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.svc--featured:hover .svc__media img { transform: scale(1.05); }
.svc__body { padding: 1.25rem 1.4rem 1.5rem; }
.svc__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 0.9rem;
  color: var(--copper);
}
.svc__icon svg { width: 100%; height: 100%; }
.svc__title {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--steel-950);
}
.svc__text {
  margin: 0;
  color: var(--steel-600);
  font-size: 0.96rem;
}

/* ——— Process ——— */
.process {
  background:
    linear-gradient(180deg, var(--steel-50) 0%, var(--white) 40%, var(--white) 100%);
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
  position: relative;
}
.process__steps::before {
  content: "";
  position: absolute;
  top: 1.65rem;
  inset-inline: 8%;
  height: 2px;
  background: linear-gradient(to left, transparent, var(--steel-200) 12%, var(--steel-200) 88%, transparent);
  z-index: 0;
}
.process__step {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.65rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.25s, transform 0.25s var(--ease);
}
.process__step:hover {
  border-color: rgba(212, 120, 46, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.process__num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--steel-900), var(--steel-800));
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--steel-200);
}
.process__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--steel-950);
}
.process__step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--steel-600);
  line-height: 1.6;
}

/* ——— Why ——— */
.why {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(212, 120, 46, 0.1), transparent 55%),
    linear-gradient(160deg, var(--steel-950) 0%, var(--steel-850) 100%);
  color: var(--steel-200);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}
.why__item {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 1.85rem;
  transition: background 0.2s, border-color 0.2s;
}
.why__item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 120, 46, 0.28);
}
.why__num {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--copper);
  font-variant-numeric: tabular-nums;
}
.why__title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
.why__item p {
  margin: 0;
  color: var(--steel-300);
  font-size: 0.98rem;
}

/* ——— CTA band ——— */
.cta-band {
  padding: 3.5rem 0;
  background: linear-gradient(105deg, #f7efe6 0%, var(--steel-50) 55%, #eef2f8 100%);
  border-block: 1px solid var(--steel-100);
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-band__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--steel-950);
  letter-spacing: -0.02em;
}
.cta-band__copy p {
  margin: 0;
  color: var(--steel-600);
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* ——— Contact ——— */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: start;
}
.contact__info {
  background: var(--steel-50);
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
}
.contact__info-title {
  margin: 0 0 1.35rem;
  font-size: 1.1rem;
  font-weight: 700;
}
.contact__details { margin: 0; }
.contact__row {
  display: grid;
  grid-template-columns: minmax(8rem, 9.5rem) 1fr;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--steel-200);
  align-items: center;
}
.contact__row:last-child { border-bottom: none; }
.contact__row dt {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--steel-600);
}
.contact__row-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--steel-200);
  color: var(--copper);
}
.contact__row-icon svg { width: 15px; height: 15px; }
.contact__row dd {
  margin: 0;
  font-weight: 500;
  color: var(--steel-900);
  word-break: break-word;
}
.contact__row a {
  font-weight: 600;
  text-decoration: none;
  color: var(--steel-900);
}
.contact__row a:hover { color: var(--copper); text-decoration: underline; }

.contact__form {
  background: var(--white);
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  box-shadow: var(--shadow);
}
.contact__form-note {
  margin: 0 0 1.25rem;
  padding: 0.8rem 1rem;
  font-size: 0.875rem;
  color: var(--steel-700);
  background: var(--copper-soft);
  border-radius: var(--radius-sm);
  border-inline-start: 3px solid var(--copper);
}

.form-field { margin-bottom: 1.1rem; }
.form-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--steel-800);
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--steel-900);
  background: var(--steel-50);
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.form-field input:hover,
.form-field textarea:hover { border-color: var(--steel-300); }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--copper);
  box-shadow: var(--focus);
}
.form-field textarea { resize: vertical; min-height: 120px; }

.form-hint {
  margin: 1rem 0 0;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--steel-800);
  background: var(--steel-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--steel-200);
}

/* ——— Footer ——— */
.site-footer {
  background: var(--steel-950);
  color: var(--steel-300);
  padding: 3.5rem 0 1.75rem;
  border-top: 1px solid var(--steel-800);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.15rem;
}
.footer__name {
  margin: 0;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}
.footer__tagline {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  color: var(--steel-400);
}
.footer__blurb {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--steel-400);
  max-width: 22rem;
}
.footer__heading {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel-400);
}
.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer__links a {
  color: var(--steel-200);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--steel-800);
}
.footer__copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--steel-500);
}
.footer__domain {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--steel-300);
  text-decoration: none;
}
.footer__domain:hover { color: var(--white); }

/* ——— Sticky WhatsApp FAB ——— */
.wa-fab {
  position: fixed;
  inset-inline-end: 1.15rem;
  bottom: calc(1.15rem + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.15rem 0.85rem 1rem;
  background: var(--wa);
  color: var(--white) !important;
  border-radius: 999px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s;
}
.wa-fab:hover {
  background: var(--wa-hover);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}
.wa-fab svg { width: 22px; height: 22px; }
.wa-fab__label { line-height: 1; }

/* ——— Reveal on scroll ——— */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ——— Responsive ——— */
@media (max-width: 1100px) {
  .trust__grid { grid-template-columns: repeat(3, 1fr); }
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-grid > .svc--featured,
  .svc-grid > .svc:not(.svc--featured) { grid-column: span 1; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__steps::before { display: none; }
}

@media (max-width: 900px) {
  .hero__grid,
  .about__layout,
  .contact__grid,
  .footer__grid { grid-template-columns: 1fr; }
  .hero { padding: 3.25rem 0 3.5rem; }
  .hero__visual { order: -1; max-width: 520px; }
  .hero__chips { inset-inline-start: 0.75rem; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .showcase__track { grid-template-columns: 1fr; }
  .showcase__item { aspect-ratio: 16 / 9; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .nav__tag { display: none; }
  .nav__toggle { display: flex; }

  .nav__menu {
    position: absolute;
    top: var(--header-h);
    inset-inline: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1.15rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--steel-200);
    box-shadow: var(--shadow);
    display: none;
    backdrop-filter: blur(12px);
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu a {
    padding: 0.9rem 1rem;
    border-radius: var(--radius-sm);
  }
  .nav__cta {
    margin-inline-start: 0 !important;
    text-align: center;
    margin-top: 0.35rem;
  }
  .nav__phone { display: none; }

  .section { padding: 3.75rem 0; }
  .trust { margin-top: -1rem; }
  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0.75rem;
    gap: 0.35rem;
  }
  .svc-grid,
  .svc-grid--print,
  .why__grid,
  .process__steps {
    grid-template-columns: 1fr;
  }
  .wa-fab {
    inset-inline-end: 0.85rem;
    bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
    padding: 0.95rem;
  }
  .wa-fab__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .wa-fab svg { width: 26px; height: 26px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero:hover .hero__photo,
  .showcase__item:hover img,
  .svc--featured:hover .svc__media img { transform: none; }
  .hero__eyebrow-dot { animation: none; }
}

/* Space so sticky WA doesn't cover footer on mobile */
@media (max-width: 720px) {
  body { padding-bottom: 5.5rem; }
}


/* Honeypot — hidden from humans */
.form-field--honey {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-hint.is-success {
  color: #2f9e44;
}

.form-hint.is-error {
  color: #c8102e;
}
