/* ============================================================================
   Grupo Espaço Integrar — Site institucional (estático, pronto para publicar)
   CSS autocontido: fontes Google + tokens da marca + componentes, responsivo.
   ============================================================================ */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Source+Sans+3:wght@300;400;500;600;700&display=swap");

:root {
  /* Azuis institucionais */
  --navy-900: #0A2E5C;
  --navy-700: #143D6B;
  --blue-600: #1B5BA0;
  --blue-400: #5BA4D9;
  --blue-200: #C7E0F2;
  --cyan-500: #00B4D8;

  /* Ação */
  --green-600: #2E9E5A;
  --green-700: #27864D;

  /* Neutros */
  --ink: #14233B;
  --slate: #4A5A70;
  --line: #E2E9F2;
  --white: #FFFFFF;
  --ice: #FAFBFE;
  --ice-2: #F0F5FB;

  /* Acentos por unidade/núcleo */
  --nuc-nufam: #0A2E5C;
  --nuc-nuhse: #1B5BA0;
  --nuc-nati: #5BA4D9;
  --nuc-nav: #0A7E8C;
  --nuc-naes: #D97706;

  /* Tipografia */
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;

  /* Sombras (azul-marinho tingido) */
  --shadow-sm: 0 2px 8px rgba(10, 46, 92, 0.06);
  --shadow-md: 0 10px 30px rgba(10, 46, 92, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 46, 92, 0.16);
  --shadow-cta: 0 8px 24px rgba(46, 158, 90, 0.30);

  /* Raios */
  --r-md: 12px;
  --r-xl: 16px;
  --r-2xl: 24px;

  /* Gradiente hero */
  --grad-hero: linear-gradient(135deg, #0A2E5C 0%, #143D6B 55%, #1B5BA0 100%);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.45s;

  /* Layout */
  --maxw: 1200px;
  --header-h: 80px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ice);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy-900); margin: 0; line-height: 1.12; letter-spacing: -0.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Utilitários ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue-400); margin-bottom: 16px;
}
.lead { font-size: 1.12rem; color: var(--slate); line-height: 1.7; }
.center { text-align: center; }
.accent { color: var(--blue-400); }
.accent-cyan { color: var(--cyan-500); }
.section-head { max-width: 720px; margin: 0 auto 64px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 18px; text-wrap: balance; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  padding: 14px 26px; border-radius: var(--r-md); transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}
.btn .i { width: 1.1em; height: 1.1em; stroke-width: 2; }
.btn-cta { background: var(--green-600); color: #fff; box-shadow: var(--shadow-cta); }
.btn-cta:hover { background: var(--green-700); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy-900); box-shadow: var(--shadow-md); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.18); }
.btn-outline { background: transparent; color: var(--navy-900); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--blue-400); color: var(--blue-600); }
.btn-lg { padding: 17px 34px; font-size: 1rem; }

/* ============================================================================
   HEADER
   ============================================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--header-h);
  background: rgba(255,255,255,0.85); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: box-shadow 0.3s, border-color 0.3s, background 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); background: rgba(255,255,255,0.95); }
.header-inner { max-width: var(--maxw); margin: 0 auto; height: 100%; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header-logo { flex-shrink: 0; }
.header-logo img { height: 52px; width: auto; max-width: none; display: block; }
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
  font-family: var(--font-display); font-weight: 500; font-size: 0.94rem; color: var(--navy-900);
  padding: 9px 13px; border-radius: 8px; position: relative; transition: color 0.2s; white-space: nowrap;
}
.header-nav a:hover { color: var(--blue-600); }
.header-nav a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2px;
  background: var(--blue-400); border-radius: 2px; transform: scaleX(0); transform-origin: center;
  transition: transform 0.25s var(--ease-out);
}
.header-nav a:hover::after, .header-nav a.active::after { transform: scaleX(1); }
.header-nav a.active { color: var(--blue-600); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-access {
  display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display);
  font-weight: 600; font-size: 0.85rem; color: var(--slate); padding: 9px 14px;
  border-radius: 8px; border: 1px solid var(--line); transition: all 0.2s;
}
.header-access:hover { color: var(--navy-900); border-color: var(--blue-400); background: var(--ice-2); }
.header-access .i { width: 16px; height: 16px; }
.header-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--green-600);
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 0.88rem;
  padding: 11px 20px; border-radius: var(--r-md); box-shadow: var(--shadow-cta); transition: all 0.25s; }
.header-cta:hover { background: var(--green-700); transform: translateY(-1px); }
.header-cta .i { width: 16px; height: 16px; }
.burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--navy-900); }
.burger .i { width: 26px; height: 26px; }

/* Drawer mobile */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 99; background: rgba(10,46,92,0.45);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-drawer.open { opacity: 1; pointer-events: auto; }
.drawer-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 360px);
  background: #fff; padding: 92px 28px 32px; display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform 0.35s var(--ease-out); box-shadow: var(--shadow-lg);
}
.mobile-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-panel a { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
  color: var(--navy-900); padding: 14px 12px; border-radius: 10px; }
.drawer-panel a:hover, .drawer-panel a.active { background: var(--ice-2); color: var(--blue-600); }
.drawer-panel .divider { height: 1px; background: var(--line); margin: 14px 0; }
.drawer-panel .btn { justify-content: center; margin-top: 4px; }

/* ============================================================================
   HERO
   ============================================================================ */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden;
  background: var(--grad-hero); padding-top: var(--header-h); }
.hero .shape { position: absolute; border-radius: 2.5rem; }
.hero .dots { position: absolute; inset: 0; opacity: 0.05;
  background-image: radial-gradient(circle, rgba(255,255,255,0.6) 1px, transparent 1px); background-size: 40px 40px; }
.hero-inner { position: relative; z-index: 5; max-width: var(--maxw); margin: 0 auto; padding: 80px 24px 120px; width: 100%; }
.hero-content { max-width: 760px; }
.hero-pill { display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 99px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); margin-bottom: 28px;
  color: rgba(255,255,255,0.92); font-size: 0.85rem; font-weight: 500; font-family: var(--font-display); }
.hero-pill .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan-500);
  box-shadow: 0 0 0 0 rgba(0,180,216,0.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(0,180,216,0.5);} 70%{ box-shadow: 0 0 0 12px rgba(0,180,216,0);} 100%{box-shadow:0 0 0 0 rgba(0,180,216,0);} }
.hero h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); font-weight: 800; color: #fff; margin-bottom: 22px; }
.hero p { font-size: clamp(1.05rem, 2vw, 1.28rem); color: rgba(255,255,255,0.78); max-width: 620px; margin-bottom: 38px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; z-index: 5; }
.hero-wave svg { width: 100%; height: auto; display: block; }

/* Hero compacto (páginas internas / unidades) */
.page-hero { position: relative; background: var(--grad-hero); padding: calc(var(--header-h) + 64px) 0 80px; overflow: hidden; }
.page-hero .dots { position: absolute; inset: 0; opacity: 0.05;
  background-image: radial-gradient(circle, rgba(255,255,255,0.6) 1px, transparent 1px); background-size: 40px 40px; }
.page-hero-inner { position: relative; z-index: 5; }
.page-hero .eyebrow { color: var(--blue-200); }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.12rem; max-width: 640px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; color: rgba(255,255,255,0.6);
  font-size: 0.85rem; margin-bottom: 22px; font-family: var(--font-display); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: 0.5; }

/* ============================================================================
   STATS
   ============================================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 12px; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--blue-600); letter-spacing: -0.03em; }
.stat .lbl { color: var(--slate); font-size: 0.95rem; margin-top: 4px; }

/* ============================================================================
   CARDS DE UNIDADE
   ============================================================================ */
.units-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.unit-card { position: relative; overflow: hidden; background: #fff; border-radius: var(--r-2xl);
  border: 1px solid rgba(10,46,92,0.06); box-shadow: var(--shadow-sm); transition: all var(--dur) var(--ease-out);
  display: flex; flex-direction: column; }
.unit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.unit-card .bar { height: 4px; background: var(--accent-color, var(--blue-400)); transition: height var(--dur); }
.unit-card:hover .bar { height: 6px; }
.unit-card .body { padding: 32px; display: flex; flex-direction: column; flex: 1; }
.unit-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.unit-tag { padding: 4px 12px; border-radius: 99px; font-size: 0.72rem; font-weight: 700;
  font-family: var(--font-display); color: #fff; background: var(--accent-color, var(--blue-400)); }
.unit-city { display: inline-flex; align-items: center; gap: 5px; color: var(--slate); font-size: 0.88rem; }
.unit-city .i { width: 15px; height: 15px; }
.unit-card h3 { font-size: 1.45rem; font-weight: 700; margin-bottom: 10px; }
.unit-card .desc { color: var(--slate); margin-bottom: 20px; flex: 1; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.tag { padding: 6px 12px; border-radius: 99px; font-size: 0.8rem; font-weight: 500; font-family: var(--font-display);
  color: var(--accent-color, var(--blue-600)); background: color-mix(in srgb, var(--accent-color, var(--blue-400)) 9%, white);
  border: 1px solid color-mix(in srgb, var(--accent-color, var(--blue-400)) 22%, white); }
.unit-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display);
  font-weight: 700; font-size: 0.92rem; color: var(--accent-color, var(--blue-600)); margin-top: auto; }
.unit-link .i { width: 16px; height: 16px; transition: transform 0.25s; }
.unit-card:hover .unit-link .i { transform: translateX(4px); }

/* ============================================================================
   SERVIÇOS
   ============================================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: #fff; border-radius: var(--r-xl); padding: 30px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,46,92,0.05); transition: all 0.3s var(--ease-out); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-ic { width: 54px; height: 54px; border-radius: var(--r-md); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px; color: var(--ic-color, var(--blue-600));
  background: color-mix(in srgb, var(--ic-color, var(--blue-400)) 11%, white); }
.service-ic .i { width: 26px; height: 26px; stroke-width: 1.8; }
.service-card h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 9px; }
.service-card p { color: var(--slate); font-size: 0.96rem; }

/* ============================================================================
   NÚCLEOS
   ============================================================================ */
.nuc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.nuc-chip { display: flex; flex-direction: column; gap: 6px; padding: 20px; border-radius: var(--r-md);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: all 0.25s; }
.nuc-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.nuc-chip .code { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  letter-spacing: 0.04em; color: var(--nc, var(--navy-900)); }
.nuc-chip .name { font-size: 0.86rem; color: var(--slate); }

/* ============================================================================
   FAIXA T.SER
   ============================================================================ */
.tser-band { background: #FAF5EC; border-top: 3px solid; border-image: linear-gradient(90deg, #B5532E, #C9A24B) 1; }
.tser-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.tser-inner .eyebrow { color: #B5532E; }
.tser-inner h2 { color: #36393F; font-family: "Plus Jakarta Sans", serif; }
.tser-inner p { color: #6B6F76; }
.tser-cover { aspect-ratio: 4/3; border-radius: var(--r-xl); background: linear-gradient(135deg, #B5532E, #D88A6B);
  display: flex; align-items: center; justify-content: center; color: #FAF5EC; box-shadow: var(--shadow-lg);
  font-family: "Plus Jakarta Sans"; font-weight: 800; font-size: 2rem; letter-spacing: 0.02em; }

/* ============================================================================
   CTA FINAL
   ============================================================================ */
.cta-band { background: var(--grad-hero); position: relative; overflow: hidden; }
.cta-band .dots { position: absolute; inset: 0; opacity: 0.05;
  background-image: radial-gradient(circle, rgba(255,255,255,0.6) 1px, transparent 1px); background-size: 40px 40px; }
.cta-inner { position: relative; z-index: 5; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-inner h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 18px; }
.cta-inner p { color: rgba(255,255,255,0.8); font-size: 1.12rem; margin-bottom: 34px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================================
   EQUIPE
   ============================================================================ */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.member { background: #fff; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,46,92,0.05); transition: all 0.3s var(--ease-out); }
.member:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.member .photo { aspect-ratio: 1; background: linear-gradient(135deg, var(--blue-200), var(--ice-2));
  display: flex; align-items: center; justify-content: center; color: var(--blue-600);
  font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; }
.member .info { padding: 20px; }
.member .info h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 3px; }
.member .role { color: var(--blue-600); font-weight: 600; font-size: 0.85rem; font-family: var(--font-display); margin-bottom: 8px; }
.member .crp { color: var(--slate); font-size: 0.82rem; }

/* ============================================================================
   CONTATO
   ============================================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-card { background: #fff; border-radius: var(--r-xl); padding: 28px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,46,92,0.05); margin-bottom: 20px; }
.contact-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.contact-card .unit-tag-sm { display: inline-block; font-size: 0.7rem; font-weight: 700; color: #fff;
  background: var(--accent-color, var(--blue-400)); padding: 3px 10px; border-radius: 99px; margin-bottom: 12px; font-family: var(--font-display); }
.contact-row { display: flex; gap: 12px; align-items: flex-start; color: var(--slate); margin-top: 12px; font-size: 0.96rem; }
.contact-row .i { width: 18px; height: 18px; color: var(--blue-400); flex-shrink: 0; margin-top: 3px; }
.contact-row a:hover { color: var(--blue-600); }
.map-frame { width: 100%; height: 100%; min-height: 460px; border: 0; border-radius: var(--r-xl);
  box-shadow: var(--shadow-md); filter: saturate(0.9); }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 0.85rem;
  color: var(--navy-900); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: 0.96rem; color: var(--ink); background: #fff; transition: border-color 0.2s; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--blue-400); box-shadow: 0 0 0 3px rgba(91,164,217,0.15); }
.form-field textarea { resize: vertical; min-height: 110px; }

/* ============================================================================
   FOOTER
   ============================================================================ */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.85); padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-logo { height: 46px; max-width: none; margin-bottom: 22px; filter: brightness(0) invert(1); }
.site-footer p { color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center;
  justify-content: center; background: rgba(255,255,255,0.08); color: #fff; transition: all 0.2s; }
.footer-social a:hover { background: var(--blue-400); transform: translateY(-2px); }
.footer-social .i { width: 19px; height: 19px; }
.footer-col h4 { color: #fff; font-size: 1.05rem; font-weight: 600; margin-bottom: 18px; }
.footer-col li { margin-bottom: 11px; }
.footer-col a, .footer-col span { color: rgba(255,255,255,0.62); font-size: 0.94rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact .i { width: 17px; height: 17px; color: var(--blue-400); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { max-width: var(--maxw); margin: 48px auto 0; padding: 28px 24px 0; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: rgba(255,255,255,0.4); font-size: 0.86rem; }

/* ============================================================================
   WHATSAPP FLOAT
   ============================================================================ */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 58px; height: 58px;
  border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4); transition: transform 0.25s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ============================================================================
   REVEAL ON SCROLL
   ============================================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .hero-pill .pulse { animation: none; } }

/* ============================================================================
   RESPONSIVO
   ============================================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nuc-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .header-nav, .header-cta, .header-access { display: none; }
  .burger { display: flex; }
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .units-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .tser-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .map-frame { min-height: 320px; }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 88vh; }
  .wrap { padding: 0 18px; }
}
