/* ==========================================================================
   Engineering Axis — static marketing site
   Palette inspired by the source brochure: cream, warm bronze, deep ink.
   ========================================================================== */

:root {
  --cream: #f5efe6;
  --cream-2: #ede4d5;
  --paper: #ffffff;
  --ink: #1d1d1b;
  --ink-2: #3a3a37;
  --muted: #6b6860;
  --line: #e3dbce;

  --bronze: #a27a43;
  --bronze-2: #c69b5f;
  --bronze-3: #8a6533;

  --sand: #8b7355;       /* services block */
  --sand-deep: #6e5a41;  /* services block deeper */

  --maxw: 1180px;
  --radius: 4px;
  --radius-lg: 10px;

  --sh-sm: 0 2px 10px rgba(24,20,14,.06);
  --sh-md: 0 10px 30px rgba(24,20,14,.10);
  --sh-lg: 0 24px 60px rgba(24,20,14,.18);

  --f-serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --f-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* Typography ---------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--f-serif);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 .4em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.6rem, 6.2vw, 5.4rem); font-weight: 400; letter-spacing: -0.02em; }
h1 em {
  font-style: italic;
  color: var(--bronze);
  font-weight: 500;
}
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
h3 { font-size: 1.18rem; font-family: var(--f-sans); font-weight: 600; letter-spacing: 0; }
h4 { font-size: .95rem; font-family: var(--f-sans); font-weight: 600; letter-spacing: .02em; }

p { margin: 0 0 1em; color: var(--ink-2); }

.eyebrow {
  font-family: var(--f-sans);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--bronze);
  display: inline-block;
}
.eyebrow.dark { color: var(--bronze-3); }
.eyebrow.dark::before { background: var(--bronze-3); }
.eyebrow.light { color: #eadbc3; }
.eyebrow.light::before { background: #eadbc3; }

.section-head {
  max-width: 760px;
  margin: 0 0 54px;
}
.section-head h2 { margin-bottom: 14px; }
.section-head.center { margin: 0 auto 54px; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.light h2 { color: #fbf5ea; }
.section-head .section-sub { color: var(--muted); font-size: 1.05rem; max-width: 620px; }
.section-head.light .section-sub { color: #ede0c9; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* Buttons ------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .02em;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-primary {
  background: var(--ink);
  color: #fbf5ea;
}
.btn-primary:hover { background: var(--bronze-3); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(29,29,27,.3);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(29,29,27,.05); }

/* Header / nav -------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245,239,230,.88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(29,29,27,.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand-mark {
  width: 34px; height: 34px;
  color: var(--ink);
}
.brand-logo {
  height: 38px;
  width: auto;
  display: block;
  /* Source logo has a white background; multiply lets the cream nav show through
     the whites while keeping the dark ink and bronze accents crisp. */
  mix-blend-mode: multiply;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
}
.brand-text strong { font-weight: 800; }

.nav-end {
  display: flex;
  align-items: center;
  gap: 22px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(29,29,27,.22);
  border-radius: 2px;
  padding: 8px 14px;
  font-family: var(--f-sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--ink-2);
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.lang-toggle svg { width: 15px; height: 15px; }
.lang-toggle:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: rgba(29,29,27,.03);
}
/* Keep the toggle label's font steady regardless of active lang so Latin/Arabic
   glyphs stay optically balanced. */
.lang-toggle span { font-family: "Inter", "Tajawal", system-ui, sans-serif; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: .92rem;
  color: var(--ink-2);
  padding: 6px 0;
  position: relative;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--bronze-3); }
.nav-links a::after {
  content:"";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--bronze);
  transition: right .3s ease;
}
.nav-links a:hover::after { right: 0; }

.nav-cta {
  padding: 9px 18px !important;
  background: var(--ink);
  color: #fbf5ea !important;
  border-radius: 2px;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--bronze-3); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent; border: 0;
  padding: 10px; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 1.5px; background: var(--ink);
  margin: 5px 0; transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero ---------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  color: #fbf5ea;
  isolation: isolate;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.9) contrast(1.02);
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,15,10,.45) 0%, rgba(20,15,10,.25) 40%, rgba(20,15,10,.72) 100%),
    linear-gradient(90deg, rgba(20,15,10,.55) 0%, rgba(20,15,10,.15) 60%, transparent 100%);
}
.hero-body { position: relative; max-width: 900px; }
.hero .eyebrow { color: #f0d9a8; }
.hero .eyebrow::before { background: #f0d9a8; }
.hero h1 { color: #fbf5ea; margin-bottom: 24px; }
.hero h1 em { color: #f0cb85; }
.hero .lead {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  max-width: 620px;
  color: rgba(251,245,234,.88);
  margin-bottom: 36px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 80px; }
.hero .btn-primary { background: #fbf5ea; color: var(--ink); }
.hero .btn-primary:hover { background: #f0cb85; color: var(--ink); }
.hero .btn-ghost { color: #fbf5ea; border-color: rgba(251,245,234,.5); }
.hero .btn-ghost:hover { border-color: #fbf5ea; background: rgba(251,245,234,.08); }

.hero-stats {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 520px;
  gap: 24px;
  border-top: 1px solid rgba(251,245,234,.2);
  padding-top: 22px;
}
.hero-stats li { display: flex; flex-direction: column; gap: 4px; }
.hero-stats span {
  font-family: var(--f-serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: #f0cb85;
  line-height: 1;
}
.hero-stats small { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(251,245,234,.72); }

/* About --------------------------------------------------------------------- */
.about { padding: 120px 0; background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-media {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.about-media img { aspect-ratio: 4/5; object-fit: cover; }
.about-media::after {
  content:"";
  position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.about-copy h2 { max-width: 14ch; }

.pillars {
  list-style: none; margin: 40px 0 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.pillars li { display: flex; flex-direction: column; gap: 8px; }
.pillars strong {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--bronze);
}
.pillars span { font-size: .88rem; color: var(--ink-2); font-weight: 500; }

/* Services ------------------------------------------------------------------ */
.services {
  background:
    radial-gradient(1200px 500px at 80% 0%, rgba(255,255,255,.06), transparent 70%),
    linear-gradient(180deg, var(--sand) 0%, var(--sand-deep) 100%);
  color: #fbf5ea;
  padding: 120px 0;
}
.services .section-head h2 { color: #fbf5ea; max-width: 22ch; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(251,245,234,.18);
  border: 1px solid rgba(251,245,234,.18);
}
.service {
  background: linear-gradient(180deg, rgba(251,245,234,.04), rgba(251,245,234,.02));
  padding: 38px 30px 34px;
  transition: background .3s ease, transform .3s ease;
  position: relative;
}
.service:hover {
  background: linear-gradient(180deg, rgba(251,245,234,.10), rgba(251,245,234,.05));
}
.service-ico {
  width: 44px; height: 44px;
  margin-bottom: 22px;
  color: #f0cb85;
  display: flex; align-items: center; justify-content: center;
}
.service-ico svg { width: 100%; height: 100%; }
.service h3 { color: #fbf5ea; margin-bottom: 12px; }
.service p { color: rgba(251,245,234,.78); font-size: .95rem; margin: 0; }

/* Projects ------------------------------------------------------------------ */
.projects { padding: 120px 0; background: var(--cream-2); }
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.proj-card {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--sh-sm);
  isolation: isolate;
}
.proj-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.proj-card::before {
  content:"";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,15,10,.8) 100%);
  z-index: 1;
}
.proj-card:hover img { transform: scale(1.06); }
.proj-cap {
  position: absolute;
  left: 20px; right: 20px; bottom: 18px;
  z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  color: #fbf5ea;
  font-weight: 500;
  font-size: 1rem;
}
.proj-cap i {
  font-style: normal;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .3s ease, transform .3s ease;
  color: #f0cb85;
}
.proj-card:hover .proj-cap i { opacity: 1; transform: translateX(0); }

/* Interior ------------------------------------------------------------------ */
.interior { padding: 120px 0; background: var(--paper); }
.interior-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.interior-copy h2 { max-width: 12ch; }
.interior-copy h4 { margin: 28px 0 12px; color: var(--ink); }
.chips {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.chips li {
  padding: 8px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .86rem;
  color: var(--ink-2);
}
.interior-foot {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-style: italic;
  color: var(--muted);
}
.interior-media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.interior-media img { aspect-ratio: 4/5; object-fit: cover; }

/* Partnership --------------------------------------------------------------- */
.partnership {
  padding: 120px 0;
  background: linear-gradient(180deg, #232020 0%, #1a1816 100%);
  color: #fbf5ea;
}
.partnership .section-head h2 { color: #fbf5ea; max-width: 20ch; margin-left: auto; margin-right: auto; }
.partners {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: stretch;
}
.partner {
  background: rgba(251,245,234,.04);
  border: 1px solid rgba(251,245,234,.08);
  padding: 40px 34px;
  border-radius: var(--radius-lg);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.partner:hover {
  background: rgba(251,245,234,.06);
  border-color: rgba(240,203,133,.35);
  transform: translateY(-2px);
}
.partner h3 { color: #fbf5ea; font-size: 1.25rem; margin-bottom: 12px; }
.partner p { color: rgba(251,245,234,.72); font-size: .96rem; margin: 0; }
.partner-logo {
  display: inline-flex;
  flex-direction: column;
  font-family: var(--f-sans);
  font-weight: 700;
  letter-spacing: .12em;
  font-size: 1.4rem;
  margin-bottom: 18px;
  padding: 14px 18px;
  border-radius: 4px;
}
.partner-logo.inte {
  background: linear-gradient(135deg, #20409a 0%, #5a8bd6 100%);
  color: #fff;
}
.partner-logo.wenger {
  background: #fbf5ea;
  color: #1a1816;
  align-items: center;
}
.partner-logo.wenger small {
  font-size: .52rem;
  letter-spacing: .3em;
  color: var(--bronze-3);
  font-weight: 600;
  margin-top: 4px;
}
.partner-plus {
  font-family: var(--f-serif);
  font-size: 3rem;
  color: var(--bronze-2);
  align-self: center;
  line-height: 1;
  opacity: .8;
}
.partners-foot {
  margin: 40px auto 0;
  max-width: 720px;
  text-align: center;
  color: rgba(251,245,234,.78);
  font-style: italic;
  font-family: var(--f-serif);
  font-size: 1.1rem;
}

/* Contact ------------------------------------------------------------------- */
.contact { padding: 120px 0; background: var(--cream); }

.contact-cards {
  list-style: none; padding: 0; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 980px;
}
.contact-cards li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 10px;
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.contact-cards li:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: rgba(162,122,67,.35);
}
.c-ico {
  width: 44px; height: 44px;
  margin: 0 auto 8px;
  color: var(--bronze);
  display: flex; align-items: center; justify-content: center;
}
.c-ico svg { width: 100%; height: 100%; }
.c-label {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bronze-3);
  font-weight: 600;
}
.c-value { color: var(--ink); font-size: 1rem; line-height: 1.6; }
a.c-value { border-bottom: 1px solid transparent; transition: border-color .2s ease; }
a.c-value:hover { border-color: var(--bronze); }

.social {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-top: 48px;
}
.social span {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 6px;
  font-weight: 600;
}
.social a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-2);
  background: var(--paper);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.social a:hover {
  color: #fbf5ea;
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* Footer -------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(251,245,234,.7);
  padding: 48px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.foot-brand {
  display: flex; align-items: center; gap: 14px;
  color: #fbf5ea;
}
.foot-brand .brand-mark { color: #fbf5ea; }
.foot-brand strong { display: block; letter-spacing: .14em; font-size: .86rem; }
.foot-brand small { font-size: .74rem; color: rgba(251,245,234,.55); letter-spacing: .04em; }
.foot-nav {
  display: flex; gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
}
.foot-nav a {
  color: rgba(251,245,234,.7);
  font-size: .88rem;
  transition: color .2s ease;
}
.foot-nav a:hover { color: #f0cb85; }
.foot-legal { margin: 0; font-size: .82rem; text-align: right; }

/* Arabic / RTL -------------------------------------------------------------- */
html[lang="ar"],
html[lang="ar"] body {
  font-family: "Tajawal", "Inter", system-ui, sans-serif;
}
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4 {
  font-family: "Tajawal", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

/* Arabic doesn't have italic; substitute color + weight for the hero em. */
html[lang="ar"] h1 em,
html[lang="ar"] em { font-style: normal; font-weight: 700; }
html[lang="ar"] .hero h1 em { color: #f0cb85; font-weight: 700; }

html[lang="ar"] .partners-foot,
html[lang="ar"] .interior-foot {
  font-style: normal;
  font-family: "Tajawal", sans-serif;
  font-weight: 500;
}

/* Brand wordmark stays Latin. */
html[lang="ar"] .brand-text,
html[lang="ar"] .foot-brand strong,
html[lang="ar"] .foot-brand small { font-family: var(--f-sans); }

/* Hero H1 is bigger in Arabic to compensate for Tajawal's tighter optics. */
html[lang="ar"] h1 { font-size: clamp(2.4rem, 5.6vw, 4.8rem); }

/* Project card arrow: flip direction + mirror the reveal animation. */
[dir="rtl"] .proj-cap i { transform: scaleX(-1) translateX(-8px); }
[dir="rtl"] .proj-card:hover .proj-cap i { transform: scaleX(-1) translateX(0); }

/* Contact list "label | value" reflow handled naturally by RTL flex,
   no overrides needed. */

/* Nav underline hover — mirror direction so it grows from the start edge. */
[dir="rtl"] .nav-links a::after { right: 0; left: 100%; transition: left .3s ease; }
[dir="rtl"] .nav-links a:hover::after { left: 0; right: 0; }

/* Logo mix-blend still works on cream nav; no RTL override needed. */

/* Reveal-on-scroll ---------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Responsive ---------------------------------------------------------------- */
@media (max-width: 960px) {
  .wrap { padding: 0 22px; }

  .nav-links {
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 22px 18px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-cta { text-align: center; margin-top: 10px; }
  .nav-toggle { display: block; }

  .nav-end { gap: 10px; }
  .lang-toggle { padding: 7px 10px; font-size: .78rem; }
  .lang-toggle svg { width: 14px; height: 14px; }
  .brand-logo { height: 32px; }

  .hero { min-height: auto; padding: 80px 0 64px; }
  .hero-cta { margin-bottom: 60px; }

  .about,
  .services,
  .projects,
  .interior,
  .partnership,
  .contact { padding: 80px 0; }

  .about-grid,
  .interior-grid { grid-template-columns: 1fr; gap: 48px; }

  .contact-cards { grid-template-columns: 1fr; gap: 16px; }
  .about-media { max-width: 520px; margin: 0 auto; }
  .interior-media { max-width: 520px; margin: 0 auto; }

  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: repeat(2, 1fr); }

  .partners {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .partner-plus { transform: rotate(90deg); padding: 4px 0; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .foot-legal { text-align: center; }
}

@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; gap: 14px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats li:last-child { grid-column: span 2; }
  .contact-cards li { padding: 28px 22px; }
}
