/* =========================================================
   נוף — ניהול ואחזקת מבנים
   Brand palette:
   #09253d #e1e0cb #0b131e #abaa95 #6b7073 #071933 #c6c9c1 #d4d0b8 #113147
   ========================================================= */

:root {
  --navy-900: #071933;
  --navy-800: #09253d;
  --navy-700: #0f3650;
  --navy-600: #175570;
  --teal-700: #126880;
  --ink: #0b131e;
  --cream: #e1e0cb;
  --cream-light: #d4d0b8;
  --sand: #abaa95;
  --gold: #d0b062;
  --gold-deep: #ad8535;
  --gold-bright: #f0e4bc;
  --stone: #c6c9c1;
  --gray: #6b7073;

  --marble-1: #f7f2e6;
  --marble-2: #eee5cf;
  --marble-3: #e4d8bc;

  --bg: #fbfaf5;
  --surface: #ffffff;
  --text: #142030;
  --muted: #4f5862;

  --gold-grad: linear-gradient(135deg, #f5ecd0 0%, #e0c06a 44%, #c9a044 100%);
  --navy-grad: linear-gradient(155deg, #1c6284 0%, #134e68 30%, #0a3550 62%, #071933 100%);
  --marble-grad: linear-gradient(135deg, var(--marble-1) 0%, var(--marble-2) 55%, var(--marble-3) 100%);

  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 4px 20px rgba(9, 37, 61, 0.11);
  --shadow-md: 0 16px 44px rgba(9, 37, 61, 0.16);
  --shadow-lg: 0 32px 72px rgba(7, 25, 51, 0.24);
  --shadow-gold: 0 12px 34px rgba(201, 160, 68, 0.52);

  --maxw: 1180px;
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-sans: "Heebo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Frank Ruhl Libre", "Heebo", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }

.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }

/* ---------- Typography helpers ---------- */
.kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-700);
  background: rgba(208, 176, 98, 0.28);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.kicker--light { color: var(--cream); background: rgba(225, 224, 203, 0.16); }

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  line-height: 1.25;
  color: var(--navy-800);
  letter-spacing: -0.01em;
}
.section__title--light { color: #fff; }

.section__head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.section__head .section__title,
.contact__lead .section__title { position: relative; display: inline-block; padding-bottom: 18px; }
.section__head .section__title::after,
.contact__lead .section__title::after {
  content: ""; position: absolute; inset-block-end: 0; inset-inline-start: 50%;
  transform: translateX(50%); width: 64px; height: 4px; border-radius: 4px; background: var(--gold-grad);
}
.section__intro { color: var(--muted); font-size: 1.08rem; margin-top: 14px; }

.lead { font-size: 1.12rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold {
  background: var(--gold-grad);
  color: var(--navy-900);
  border: none;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { box-shadow: 0 18px 40px rgba(201, 160, 68, 0.68); }
.btn--outline { background: transparent; border-color: rgba(255,255,255,0.55); color: #fff; }
.btn--outline:hover { background: rgba(255,255,255,0.1); }
.btn--ghost { background: rgba(255,255,255,0.08); border-color: rgba(225,224,203,0.3); color: var(--cream); padding: 10px 18px; }
.btn--block { width: 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.35s var(--ease), box-shadow 0.35s, height 0.35s, backdrop-filter 0.35s;
}
.nav.scrolled {
  background: rgba(7, 25, 51, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.22);
  height: 66px;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: min(100% - 40px, var(--maxw)); margin-inline: auto; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo {
  height: 46px;
  width: auto;
  display: block;
  border-radius: 10px;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-display); font-weight: 900; font-size: 1.35rem; color: var(--cream); }
.brand__sub { font-size: 0.72rem; letter-spacing: 0.05em; color: var(--stone); }

.nav__links { display: flex; gap: 6px; }
.nav__links a {
  color: rgba(255,255,255,0.86);
  font-weight: 500;
  font-size: 0.98rem;
  padding: 8px 14px;
  border-radius: 100px;
  position: relative;
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover, .nav__links a.active { color: #fff; background: rgba(225,224,203,0.14); }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__phone span { font-weight: 700; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: 0.3s var(--ease); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  padding-block: calc(var(--header-h) + 8px) 48px;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(28, 98, 132, 0.72) 0%, transparent 55%),
    radial-gradient(80% 60% at 85% 20%, rgba(208, 176, 98, 0.18) 0%, transparent 50%),
    var(--navy-grad);
  color: #fff;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(95px); opacity: 0.62; }
.hero__glow--1 { width: 520px; height: 520px; background: rgba(224, 192, 106, 0.55); top: -150px; inset-inline-start: -120px; }
.hero__glow--2 { width: 460px; height: 460px; background: rgba(18, 104, 128, 0.95); bottom: -160px; inset-inline-end: -120px; }
.hero__glow--3 { width: 420px; height: 420px; background: rgba(28, 98, 132, 0.75); top: 30%; inset-inline-end: 12%; }
.hero__skyline {
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  height: 220px;
  background:
    repeating-linear-gradient(90deg, transparent 0 70px, rgba(225,224,203,0.04) 70px 72px),
    linear-gradient(to top, rgba(7,25,51,0.85), transparent);
  -webkit-mask-image: linear-gradient(to top, #000 30%, transparent);
          mask-image: linear-gradient(to top, #000 30%, transparent);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__logo {
  width: min(100%, 500px);
  margin: 0 auto 4px;
  border-radius: 22px;
  padding: 8px;
  background: linear-gradient(135deg, rgba(224,192,106,0.62), rgba(225,224,203,0.22));
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(201, 160, 68, 0.22),
    0 0 0 1px rgba(240, 228, 188, 0.35) inset;
}
.hero__logo img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}
.hero__location {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--cream);
  background: rgba(225, 224, 203, 0.1);
  border: 1px solid rgba(225, 224, 203, 0.28);
  padding: 7px 18px;
  border-radius: 100px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.1rem, 5.4vw, 3.9rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-top: 12px;
}
.hero__title-accent {
  display: block;
  font-size: clamp(1.1rem, 2.6vw, 1.9rem);
  font-weight: 500;
  margin-top: 10px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 12px rgba(201, 160, 68, 0.35));
}
.hero__subtitle {
  font-size: clamp(1.02rem, 1.7vw, 1.25rem);
  color: rgba(225,224,203,0.92);
  max-width: 640px;
  margin: 16px auto 0;
}
.hero__tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 18px; }
.hero__tags li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.95rem; font-weight: 600;
  color: var(--cream);
  background: rgba(225, 224, 203, 0.12);
  border: 1px solid rgba(240, 228, 188, 0.38);
  padding: 9px 16px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.hero__tags li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-grad); box-shadow: 0 0 0 3px rgba(201, 160, 68, 0.32);
}

.hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 22px; }
.btn--call { font-size: 1.05rem; padding: 15px 32px; }

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(36px, 6vw, 64px);
  margin-top: 52px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 7.5rem;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  background: var(--gold-grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  line-height: 1;
  filter: drop-shadow(0 2px 10px rgba(201, 160, 68, 0.3));
}
.stat__label { color: rgba(198,201,193,0.85); font-size: 0.92rem; margin-top: 6px; }

/* ---------- Who we are ---------- */
.who { padding-bottom: clamp(28px, 3.5vw, 48px); background: linear-gradient(180deg, #ffffff 0%, var(--marble-1) 100%); }
.why { padding-top: clamp(28px, 3.5vw, 48px); }
.who__inner { max-width: 860px; margin-inline: auto; text-align: center; }
.who__inner .section__title { position: relative; display: inline-block; margin-bottom: 26px; }
.who__inner .section__title::after {
  content: ""; position: absolute; inset-block-end: -12px; inset-inline-start: 50%;
  transform: translateX(50%); width: 64px; height: 4px; border-radius: 4px; background: var(--gold-grad);
}
.who__inner .lead { font-size: clamp(1.05rem, 1.8vw, 1.25rem); }

/* ---------- Why choose us ---------- */
.why { background: linear-gradient(180deg, var(--marble-1) 0%, var(--marble-2) 100%); }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201, 160, 68, 0.28);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.card::before {
  content: ""; position: absolute; inset-block-start: 0; inset-inline: 0; height: 4px;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: inline-end;
  transition: transform 0.4s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center;
  background: var(--navy-grad); color: var(--cream);
  margin-bottom: 20px; box-shadow: 0 8px 24px rgba(9, 37, 61, 0.22);
}
.card__title { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy-800); margin-bottom: 10px; }
.card__text { color: var(--muted); font-size: 0.98rem; }
.card__emph { font-weight: 600; color: var(--navy-800); }
.card__text strong { color: var(--navy-700); font-weight: 700; }

/* ---------- Services ---------- */
.services { background: linear-gradient(180deg, var(--marble-2) 0%, #ffffff 22%); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201, 160, 68, 0.3);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.service__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service:hover .service__media img { transform: scale(1.06); }
.service__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9, 37, 61, 0.68), transparent 55%);
}
.service__num {
  position: absolute;
  inset-block-end: 12px;
  inset-inline-start: 18px;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  line-height: 1;
}
.service__body { padding: 26px 28px 32px; }
.service__title {
  font-family: var(--font-display); font-size: 1.4rem; color: var(--navy-800);
  margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid rgba(201, 160, 68, 0.35);
}
.service__list li { position: relative; padding-inline-start: 26px; margin-bottom: 12px; color: var(--muted); }
.service__list li::before {
  content: ""; position: absolute; inset-inline-start: 0; inset-block-start: 10px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold-grad); box-shadow: 0 0 0 4px rgba(201, 160, 68, 0.24);
}

/* ---------- About ---------- */
.about { background: var(--navy-grad); color: #fff; overflow: hidden; }
.about__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(208, 176, 98, 0.32), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(15, 54, 80, 0.72), transparent 50%);
}
.about__inner { position: relative; z-index: 1; display: flex; justify-content: center; }
.about__card {
  max-width: 880px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(225,224,203,0.18);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  backdrop-filter: blur(8px);
}
.about__card p { color: rgba(225,224,203,0.9); margin-top: 16px; font-size: 1.06rem; }
.about__card .about__intro { margin-top: 0; font-size: clamp(1.15rem, 1.9vw, 1.4rem); font-weight: 500; color: #fff; line-height: 1.6; }
.about__values { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.about__values span {
  background: rgba(225,224,203,0.16);
  border: 1px solid rgba(240, 228, 188, 0.38);
  color: var(--cream);
  padding: 8px 18px; border-radius: 100px; font-weight: 600; font-size: 0.95rem;
}

/* ---------- Contact ---------- */
.contact { background: linear-gradient(180deg, var(--marble-2) 0%, var(--marble-1) 100%); }
.contact__inner { max-width: 980px; margin-inline: auto; }
.contact__lead { text-align: center; max-width: 760px; margin-inline: auto; }
.contact__lead .lead { margin-top: 18px; }
.contact__call { margin-top: 22px; }
.contact__hint { display: block; font-size: 0.78rem; color: var(--gray); margin-top: 4px; }

.contact__details {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.contact__details li {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
  background: var(--surface);
  border: 1px solid rgba(201, 160, 68, 0.28);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.contact__details li:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.contact__ico {
  flex: 0 0 auto;
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--navy-grad); color: var(--cream);
}
.contact__label { display: block; font-size: 0.82rem; color: var(--gray); font-weight: 600; }
.contact__details a { font-weight: 700; color: var(--navy-800); font-size: 1.08rem; }
.contact__details a:hover { color: var(--navy-700); text-decoration: underline; }
.contact__hours { color: var(--navy-800); font-weight: 600; }
.contact__hours small { display: block; font-weight: 400; color: var(--muted); font-size: 0.85rem; margin-top: 4px; }

.contact__form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201, 160, 68, 0.3);
}
.form__title { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy-800); margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--navy-800); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 13px 16px;
  border: 1.5px solid rgba(107,112,115,0.28);
  border-radius: 12px;
  background: #fcfbf7;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: #9aa0a6; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 160, 68, 0.28);
}
.field textarea { resize: vertical; }
.field input.invalid, .field select.invalid { border-color: #c0392b; box-shadow: 0 0 0 4px rgba(192,57,43,0.12); }
.form__note { margin-top: 14px; font-weight: 600; min-height: 22px; }
.form__note.ok { color: #1e7d4f; }
.form__note.err { color: #c0392b; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--stone); padding-top: 64px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 36px;
}
.footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.footer__brand > div {
  padding-top: 2px;
}
.footer__logo {
  height: clamp(110px, 16vw, 160px);
  width: auto;
  border-radius: 14px;
}
.footer__brand .brand__name { color: var(--cream); display: block; }
.footer__brand .brand__sub { color: var(--gray); display: block; }
.footer__links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer__links a { color: var(--stone); transition: color 0.2s; }
.footer__links a:hover { color: var(--cream); }
.footer__contact { display: flex; flex-direction: column; gap: 6px; }
.footer__contact a { color: var(--cream); font-weight: 600; }
.footer__bar {
  border-top: 1px solid rgba(225,224,203,0.12);
  text-align: center; padding: 20px; font-size: 0.88rem; color: var(--gray);
}

/* ---------- Floating WhatsApp ---------- */
.fab {
  position: fixed;
  inset-block-end: 24px; inset-inline-start: 24px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366; color: #fff;
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  animation: fabPulse 2.6s infinite;
}
.fab:hover { transform: scale(1.08); }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 10px 30px rgba(37,211,102,0.5), 0 0 0 14px rgba(37,211,102,0); }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.cards .reveal.in, .services__grid .reveal.in { transition-delay: var(--d, 0s); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: 1fr; }
  .contact__details { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav__links {
    position: fixed;
    inset-block-start: 66px;
    inset-inline: 14px;
    flex-direction: column;
    gap: 4px;
    background: rgba(7,25,51,0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(225,224,203,0.18);
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0; pointer-events: none;
    transition: 0.3s var(--ease);
  }
  .nav__links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 12px 14px; }
  .nav__toggle { display: flex; }
  .nav__phone span { display: none; }
  .nav__phone { padding: 10px; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__links, .footer__contact { justify-content: center; align-items: center; }
  .footer__brand { justify-content: center; align-items: flex-start; }
}

@media (max-width: 480px) {
  .cards { grid-template-columns: 1fr; }
  .who__pills { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
