:root {
  --navy-950: #071424;
  --navy-900: #0b213d;
  --navy-800: #12335a;
  --blue-700: #214a78;
  --blue-600: #4971a6;
  --blue-100: #dfe8f2;
  --ink: #17202c;
  --muted: #637083;
  --paper: #f5f3ef;
  --white: #ffffff;
  --line: rgba(18, 51, 90, 0.15);
  --gold: #b69a68;
  --shadow: 0 24px 70px rgba(7, 20, 36, 0.14);
  --container: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

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

button, a { -webkit-tap-highlight-color: transparent; }

a:focus-visible, button:focus-visible {
  outline: 3px solid #8ebaf0;
  outline-offset: 4px;
}

h1, h2, h3, p, figure, dl, dd { margin-top: 0; }

h1, h2, h3 {
  color: var(--navy-900);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
}

h1 { font-size: clamp(3rem, 6.4vw, 6.4rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2.45rem, 4.4vw, 4.5rem); letter-spacing: -0.045em; }
h3 { font-size: 1.35rem; }

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 4px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: none; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--blue-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow.light { color: #b9cce2; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy-950); background: var(--white); }
.button-primary:hover { background: #dce8f4; }
.button-light { color: var(--navy-950); background: var(--white); }
.button-light:hover { background: #e6eef7; }
.button-outline { color: var(--navy-900); border-color: rgba(18,51,90,0.35); background: transparent; }
.button-outline:hover { color: var(--white); border-color: var(--navy-900); background: var(--navy-900); }
.button-solid { color: var(--white); background: var(--navy-950); }
.button-solid:hover { background: var(--blue-700); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,0.42); background: transparent; }
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

site-header { display: block; height: 0; }
site-footer { display: block; }

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255,255,255,0.08);
  background: rgba(7, 20, 36, 0.94);
  box-shadow: 0 12px 36px rgba(2, 10, 20, 0.18);
  backdrop-filter: blur(14px);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  transition: min-height 220ms ease;
}

.brand {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: block;
  flex: 0 0 auto;
  transform: translate(-50%, -50%);
}

.brand-full {
  display: none;
  width: clamp(210px, 20vw, 275px);
  filter: brightness(0) invert(1);
}

.brand-mark {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.site-nav {
  display: grid;
  width: min(100%, 940px);
  align-items: center;
  column-gap: 16px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
}

.nav-group {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.4vw, 22px);
}

.nav-group-left { justify-content: flex-end; }
.nav-group-right { justify-content: flex-start; }
.nav-logo-slot { display: block; width: 64px; height: 64px; }

.site-header.is-scrolled .header-inner { min-height: 86px; }

.site-header.is-scrolled .brand {
  position: static;
  margin-right: auto;
  transform: none;
}

.site-header.is-scrolled .brand-full { display: block; }
.site-header.is-scrolled .brand-mark { display: none; }

.site-header.is-scrolled .site-nav {
  display: flex;
  width: auto;
  gap: clamp(14px, 1.4vw, 22px);
  margin: 0;
}

.site-header.is-scrolled .nav-logo-slot { display: none; }

.site-nav a {
  position: relative;
  padding: 11px 0;
  color: rgba(255,255,255,0.8);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover, .site-nav a.is-active, .site-nav a[aria-current="page"] { color: var(--white); }
.site-nav a:hover::after, .site-nav a.is-active::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.site-nav .nav-cta {
  padding: 11px 17px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.42);
}

.site-nav .nav-cta:hover { background: rgba(255,255,255,0.1); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid rgba(255,255,255,0.32);
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  display: flex;
  min-height: max(760px, 100svh);
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-slides { position: absolute; z-index: 0; inset: 0; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; width: 100%; max-width: none; height: 100%; object-fit: cover; object-position: center; opacity: 0; transition: opacity 1.5s ease-in-out; will-change: opacity; }
.hero-slide.is-active { opacity: 1; }

.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 17, 32, 0.96) 0%, rgba(7, 25, 47, 0.82) 46%, rgba(8, 27, 50, 0.34) 100%),
    linear-gradient(0deg, rgba(5, 15, 28, 0.74) 0%, transparent 44%);
}

.hero::after {
  position: absolute;
  z-index: 1;
  right: -12vw;
  bottom: -28vw;
  width: 54vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: end;
  gap: clamp(50px, 8vw, 110px);
  grid-template-columns: minmax(0, 1fr);
  padding-top: 140px;
  padding-bottom: 110px;
}

.hero-copy { max-width: 820px; }
.hero h1 { max-width: 840px; margin-bottom: 28px; color: var(--white); }
.hero-lead { max-width: 660px; margin-bottom: 36px; color: rgba(255,255,255,0.78); font-size: clamp(1.05rem, 1.55vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.section { padding: clamp(90px, 10vw, 150px) 0; }

.about-grid {
  display: grid;
  align-items: center;
  gap: clamp(65px, 9vw, 130px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.about-gallery { position: relative; min-height: 600px; }
.about-gallery figure { margin: 0; overflow: hidden; box-shadow: var(--shadow); }
.about-gallery img { width: 100%; height: 100%; object-fit: cover; }
.about-gallery-main { position: absolute; inset: 0 14% 15% 0; }
.about-gallery-small { position: absolute; right: 0; bottom: 0; width: 56%; height: 43%; border: 10px solid var(--white); }
.about-seal {
  position: absolute;
  z-index: 2;
  top: 11%;
  right: 2%;
  display: grid;
  width: 122px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 16px 38px rgba(7,20,36,0.24);
  text-align: center;
}
.about-seal span { align-self: end; font-family: var(--serif); font-size: 1.8rem; letter-spacing: 0.08em; }
.about-seal small { align-self: start; font-size: 0.58rem; letter-spacing: 0.12em; line-height: 1.4; text-transform: uppercase; }

.about-copy h2 { margin-bottom: 30px; }
.about-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.03rem; }
.about-actions { margin-top: 30px; }

.principles { margin-top: 44px; border-top: 1px solid var(--line); }
.principles > div { display: grid; gap: 18px; padding: 23px 0; border-bottom: 1px solid var(--line); grid-template-columns: 34px 150px 1fr; }
.principles span { color: var(--blue-600); font-size: 0.7rem; font-weight: 800; }
.principles strong { color: var(--navy-900); font-size: 0.9rem; }
.principles p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.55; }

.legacy-split {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--white);
}

.legacy-split::before {
  position: absolute;
  z-index: 2;
  top: 34px;
  width: 47%;
  height: 1px;
  content: "";
  background: rgba(73,113,166,0.78);
}

.legacy-split-office::before { left: 2%; }
.legacy-split-social::before { right: 2%; }

.legacy-split-media {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
}

.legacy-split-media-right { right: 0; left: auto; }
.legacy-split-media img { width: 100%; height: 100%; object-fit: fill; }

.legacy-split-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: inherit;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legacy-split-content {
  display: flex;
  max-width: 930px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 84px clamp(34px, 4.8vw, 92px);
}

.legacy-split-content-right { align-items: flex-end; justify-self: end; text-align: right; }
.legacy-split-content-left { justify-self: start; text-align: left; }
.legacy-split-content .legacy-eyebrow { margin-bottom: 18px; }
.legacy-split-content-right .legacy-eyebrow { flex-direction: row-reverse; }
.legacy-split-content h2 { margin-bottom: 25px; font-size: clamp(2.8rem, 4vw, 4.2rem); text-transform: uppercase; }
.legacy-split-content > p:not(.eyebrow) { max-width: 840px; margin-bottom: 22px; color: #4d5662; font-size: 0.96rem; line-height: 1.85; }
.legacy-split-content > .button { margin-top: 8px; }

.section-services { background: var(--paper); }
.section-heading { margin-bottom: clamp(45px, 6vw, 72px); }
.heading-split { display: grid; align-items: end; gap: 50px; grid-template-columns: 1.15fr 0.85fr; }
.heading-split h2 { max-width: 760px; margin-bottom: 0; }
.heading-split > p { max-width: 500px; margin: 0 0 5px; color: var(--muted); }

.services-grid {
  position: relative;
  display: grid;
  gap: 0 clamp(42px, 6vw, 82px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-grid::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  content: "";
  background: var(--line);
}

.service-card {
  position: relative;
  display: grid;
  min-height: 0;
  gap: 0 22px;
  padding: 34px 0 38px;
  border-top: 1px solid var(--line);
  background: transparent;
  grid-template-columns: 58px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
}

.service-card::after {
  position: absolute;
  top: -1px;
  left: 0;
  width: 44px;
  height: 2px;
  content: "";
  background: var(--blue-600);
  transition: width 220ms ease;
}

.service-card:nth-last-child(-n + 2) { border-bottom: 1px solid var(--line); }
.service-card:hover::after { width: 88px; }
.service-card > span {
  grid-row: 1 / 3;
  color: rgba(73,113,166,0.62);
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
  transition: color 220ms ease;
}
.service-card h3 { margin: 0 0 12px; font-size: clamp(1.35rem, 2vw, 1.7rem); transition: color 220ms ease; }
.service-card p { max-width: 460px; margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.65; }
.service-card:hover h3 { color: var(--blue-700); }
.service-card:hover > span { color: var(--navy-800); }

.services-banner { position: relative; height: 360px; margin: 72px 0 0; overflow: hidden; }
.services-banner::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(7,20,36,0.92), rgba(7,20,36,0.2)); }
.services-banner img { width: 100%; height: 100%; object-fit: cover; }
.services-banner figcaption { position: absolute; z-index: 1; top: 50%; left: clamp(28px, 6vw, 76px); max-width: 610px; color: var(--white); transform: translateY(-50%); }
.services-banner span { display: block; margin-bottom: 16px; color: #b9cce2; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.services-banner strong { font-family: var(--serif); font-size: clamp(1.9rem, 3.3vw, 3.25rem); font-weight: 400; line-height: 1.14; }

.section-method { position: relative; overflow: hidden; color: var(--white); background: var(--navy-950); }
.method-background { position: absolute; inset: 0; opacity: 0.11; background: url("../images/escritorio-home.jpg") center / cover no-repeat; mix-blend-mode: luminosity; }
.section-method::after { position: absolute; top: -260px; right: -260px; width: 620px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,0.08); border-radius: 50%; content: ""; }
.method-grid { position: relative; z-index: 1; display: grid; gap: clamp(55px, 7vw, 110px); grid-template-columns: 0.72fr 1.28fr; }
.method-intro h2 { margin-bottom: 28px; color: var(--white); }
.method-intro > p:last-child { max-width: 530px; color: rgba(255,255,255,0.66); }
.method-list {
  position: relative;
  display: grid;
  gap: clamp(24px, 3.2vw, 46px);
  margin: 12px 0 0;
  padding: 34px 0 0;
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.method-list::before { position: absolute; top: 0; right: 0; left: 0; height: 1px; content: ""; background: rgba(255,255,255,0.24); }
.method-list li { position: relative; padding: 16px 0 0; }
.method-list li::before {
  position: absolute;
  top: -40px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 3px solid var(--navy-950);
  border-radius: 50%;
  content: "";
  background: #9bb5d1;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.48);
}
.method-list li > span {
  display: block;
  margin-bottom: 30px;
  color: rgba(185,204,226,0.66);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
}
.method-list h3 { margin-bottom: 12px; color: var(--white); font-size: clamp(1.4rem, 2vw, 1.75rem); }
.method-list p { margin-bottom: 0; color: rgba(255,255,255,0.61); font-size: 0.88rem; line-height: 1.65; }

.coverage-card {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 25px;
  margin-top: 80px;
  padding: 34px 40px;
  color: var(--ink);
  background: var(--white);
  grid-template-columns: 0.45fr 1.15fr 0.9fr;
}
.coverage-card .eyebrow { margin: 0; }
.coverage-card > p:nth-child(2) { margin: 0; font-family: var(--serif); font-size: 1.25rem; line-height: 1.35; }
.coverage-card > span { color: var(--muted); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; line-height: 1.6; text-transform: uppercase; }

.social-grid { display: grid; align-items: center; gap: clamp(60px, 9vw, 120px); grid-template-columns: 1.05fr 0.95fr; }
.social-media { position: relative; min-height: 620px; }
.social-main { position: absolute; inset: 0 12% 14% 0; width: 88%; height: 86%; object-fit: cover; box-shadow: var(--shadow); }
.social-detail { position: absolute; right: 0; bottom: 0; width: 54%; height: 37%; border: 10px solid var(--white); object-fit: cover; box-shadow: var(--shadow); }
.social-stat { position: absolute; z-index: 2; top: 9%; right: 0; display: flex; width: 165px; aspect-ratio: 1; align-items: center; justify-content: center; gap: 9px; color: var(--white); background: var(--navy-900); box-shadow: var(--shadow); }
.social-stat strong { font-family: var(--serif); font-size: 3rem; font-weight: 400; }
.social-stat span { font-size: 0.66rem; font-weight: 800; letter-spacing: 0.08em; line-height: 1.45; text-transform: uppercase; }
.social-copy h2 { margin-bottom: 28px; }
.social-copy > p:not(.eyebrow) { color: var(--muted); }
.social-note { margin-top: 36px; padding: 24px 26px; border-left: 3px solid var(--gold); background: var(--paper); }
.social-note strong { display: block; margin-bottom: 7px; color: var(--navy-900); }
.social-note p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.social-note a { color: var(--blue-700); font-weight: 800; }

.section-news { background: var(--paper); }
.text-link { align-self: end; justify-self: end; margin-bottom: 10px; color: var(--blue-700); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.text-link span { margin-left: 8px; }
.news-grid { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
.news-card { display: flex; min-height: 410px; flex-direction: column; padding: 34px; border: 1px solid var(--line); background: var(--white); transition: transform 180ms ease, box-shadow 180ms ease; }
.news-card:hover { transform: translateY(-6px); box-shadow: 0 18px 46px rgba(7,20,36,0.09); }
.news-meta { display: flex; justify-content: space-between; gap: 15px; margin-bottom: 45px; color: var(--blue-600); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.news-card h3 { margin-bottom: 18px; font-size: clamp(1.35rem, 2vw, 1.7rem); line-height: 1.2; }
.news-card h3 a:hover { color: var(--blue-700); }
.news-card > p:not(.news-meta) { margin-bottom: 26px; color: var(--muted); font-size: 0.88rem; line-height: 1.62; }
.news-link { display: flex; justify-content: space-between; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); color: var(--blue-700); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.news-grid[aria-busy="true"] { min-height: 260px; }
.news-feed-status,
.news-feed-error {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px 30px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255,255,255,0.62);
}
.news-feed-status.is-error { color: #a43d3d; }
.news-feed-error { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.news-feed-error .news-feed-status { padding: 0; border: 0; background: transparent; }
.news-feed-error a { flex: 0 0 auto; color: var(--blue-700); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.news-feed-error a:hover { color: var(--navy-950); }

.site-footer { color: var(--muted); background: #f9f9f8; }
.footer-main { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding-top: 58px; padding-bottom: 42px; border-bottom: 1px solid var(--line); }
.footer-brand img { width: min(340px, 56vw); }
.footer-main nav { display: flex; flex-wrap: wrap; gap: 26px; }
.footer-main nav a { color: var(--navy-800); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.footer-main nav a:hover { color: var(--blue-600); }
.footer-nap { display: flex; align-items: center; justify-content: space-between; gap: 36px; padding-top: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.footer-nap address { display: grid; gap: 5px; color: var(--muted); font-size: 0.78rem; font-style: normal; line-height: 1.55; }
.footer-nap address strong { color: var(--navy-800); font-size: 0.7rem; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-nap-links { display: flex; flex: 0 0 auto; gap: 22px; }
.footer-nap-links a { color: var(--blue-700); font-size: 0.76rem; font-weight: 750; }
.footer-nap-links a:hover { color: var(--navy-950); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 25px; padding-bottom: 25px; font-size: 0.75rem; }
.footer-bottom p { margin: 0; }
.footer-heart { color: #b44b4b; }
.footer-credit a { color: var(--blue-700); font-weight: 750; }
.footer-credit a:hover { color: var(--navy-950); }

/* Páginas internas */
.page-hero {
  position: relative;
  display: flex;
  min-height: 620px;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background-color: var(--navy-950);
  background-position: center;
  background-size: cover;
}

.page-hero-office { background-image: url("../images/reuniao.jpg"); }
.page-hero-areas { background-image: url("../images/areas.jpg"); }
.page-hero-project { background-image: url("../images/projeto-social.jpg"); }
.page-hero-contact { background-image: url("../images/contato.jpg"); }
.page-hero-news { background-image: url("../images/slide2.jpg"); }

.page-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,17,32,0.96) 0%, rgba(7,25,47,0.78) 52%, rgba(8,27,50,0.3) 100%),
    linear-gradient(0deg, rgba(5,15,28,0.72) 0%, transparent 55%);
}

.page-hero::after {
  position: absolute;
  right: -180px;
  bottom: -330px;
  width: 620px;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  content: "";
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 170px;
  padding-bottom: 88px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 52px;
  color: rgba(255,255,255,0.62);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.breadcrumbs a:hover { color: var(--white); }
.page-hero h1 { max-width: 900px; margin-bottom: 20px; color: var(--white); }
.page-hero-content > p:last-child { max-width: 690px; margin-bottom: 0; color: rgba(255,255,255,0.75); font-size: 1.12rem; }

.page-section { padding: clamp(90px, 10vw, 145px) 0; }
.page-intro-grid {
  display: grid;
  align-items: center;
  gap: clamp(65px, 9vw, 125px);
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
}

.prose h2 { margin-bottom: 34px; }
.prose > p:not(.eyebrow) { color: var(--muted); font-size: 1rem; }
.prose-lead > p:not(.eyebrow):first-of-type { color: var(--ink); font-family: var(--serif); font-size: 1.28rem; line-height: 1.55; }

.page-image-stack { position: relative; min-height: 600px; }
.page-image-stack img { position: absolute; object-fit: cover; box-shadow: var(--shadow); }
.page-image-main { inset: 0 12% 16% 0; width: 88%; height: 84%; }
.page-image-detail { right: 0; bottom: 0; width: 55%; height: 38%; border: 9px solid var(--white); }
.page-image-label {
  position: absolute;
  z-index: 2;
  top: 10%;
  right: 0;
  display: grid;
  width: 142px;
  aspect-ratio: 1;
  place-items: center;
  padding: 18px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.25;
  text-align: center;
}

.quote-band {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background-color: var(--navy-950);
  background-position: center;
  background-size: cover;
}

.quote-band-office { background-image: url("../images/escritorio.jpg"); }
.quote-band::before { position: absolute; inset: 0; content: ""; background: rgba(7,20,36,0.86); }
.quote-band-content { position: relative; z-index: 1; max-width: 940px; padding-top: 85px; padding-bottom: 85px; text-align: center; }
.quote-band blockquote { margin: 0 0 30px; font-family: var(--serif); font-size: clamp(2.2rem, 4.5vw, 4.6rem); line-height: 1.15; }
.quote-band cite { color: #b9cce2; font-size: 0.75rem; font-style: normal; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }

.values-section { background: var(--paper); }
.values-grid { border-top: 1px solid var(--line); }
.value-card {
  position: relative;
  display: grid;
  min-height: 0;
  align-items: start;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(34px, 4.5vw, 56px) 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  grid-template-columns: 66px minmax(190px, 0.55fr) minmax(0, 1.25fr);
}
.value-card::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 66px;
  height: 3px;
  content: "";
  background: var(--blue-600);
}
.value-card > span {
  color: rgba(73,113,166,0.64);
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
}
.value-card h3 { margin: 0; font-size: clamp(2rem, 3.3vw, 3.25rem); line-height: 1; }
.value-card p { max-width: 690px; margin: 0; color: var(--muted); font-size: 0.94rem; line-height: 1.76; }

.page-articles { background: var(--white); }
.news-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.news-page-section { background: var(--paper); }
.news-grid-page { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.news-source-note { margin: 34px 0 0; color: var(--muted); font-size: 0.76rem; line-height: 1.65; }

.page-cta { padding: clamp(70px, 8vw, 105px) 0; color: var(--white); background: var(--navy-900); }
.page-cta-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.page-cta h2 { max-width: 760px; margin-bottom: 0; color: var(--white); }
.page-cta-actions { display: flex; flex: 0 0 auto; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }

.areas-intro-grid {
  display: grid;
  align-items: start;
  gap: clamp(65px, 9vw, 120px);
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.55fr);
}

.practice-panel { position: sticky; top: 120px; padding: 36px 34px; color: var(--white); background: var(--navy-900); box-shadow: var(--shadow); }
.practice-panel > p { margin-bottom: 28px; color: #b9cce2; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.practice-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,0.16); }
.practice-list li { display: grid; gap: 18px; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,0.16); font-family: var(--serif); font-size: 1.07rem; line-height: 1.35; grid-template-columns: 30px 1fr; }
.practice-list span { padding-top: 3px; color: #9bb5d1; font-family: var(--sans); font-size: 0.65rem; font-weight: 800; }

.work-section { background: var(--paper); }
.work-layout { display: grid; align-items: center; gap: clamp(65px, 9vw, 125px); grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr); }
.work-visual { position: relative; min-height: 680px; }
.work-visual img { position: absolute; inset: 0 8% 0 0; width: 92%; height: 100%; object-fit: cover; box-shadow: var(--shadow); }
.work-stat { position: absolute; right: 0; bottom: 8%; display: flex; width: 195px; aspect-ratio: 1; align-items: center; justify-content: center; gap: 10px; color: var(--white); background: var(--navy-900); box-shadow: var(--shadow); }
.work-stat strong { font-family: var(--serif); font-size: 3.2rem; font-weight: 400; }
.work-stat span { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.08em; line-height: 1.45; text-transform: uppercase; }

.territory-section { position: relative; overflow: hidden; padding: clamp(90px, 10vw, 145px) 0; color: var(--white); background: var(--navy-950); }
.territory-background { position: absolute; inset: 0; opacity: 0.1; background: url("../images/slide1.jpg") center / cover no-repeat; mix-blend-mode: luminosity; }
.territory-section::after { position: absolute; top: -290px; right: -250px; width: 600px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,0.09); border-radius: 50%; content: ""; }
.territory-grid { position: relative; z-index: 1; display: grid; align-items: start; gap: clamp(65px, 9vw, 125px); grid-template-columns: 0.75fr 1.25fr; }
.territory-grid h2 { margin-bottom: 0; color: var(--white); }
.territory-copy > p { color: rgba(255,255,255,0.68); }
.territory-copy .territory-cities { margin: 42px 0 0; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.18); color: #b9cce2; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.09em; line-height: 1.8; text-transform: uppercase; }

/* Clientes na página inicial */
.section-clients { padding: clamp(72px, 8vw, 110px) 0; border-top: 1px solid var(--line); background: #f9f9f8; }
.clients-heading { max-width: 650px; margin-bottom: 48px; }
.clients-heading h2 { margin-bottom: 0; }
.client-logos { display: grid; border-top: 1px solid var(--line); border-left: 1px solid var(--line); grid-template-columns: repeat(4, minmax(0, 1fr)); }
.client-logos figure { display: grid; min-height: 155px; margin: 0; padding: 24px; place-items: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.client-logos img { width: 100%; max-width: 220px; max-height: 92px; object-fit: contain; filter: grayscale(1); opacity: 0.72; transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease; }
.client-logos figure:hover img { filter: grayscale(0); opacity: 1; transform: translateY(-2px); }

/* Projeto social */
.project-intro-grid { display: grid; align-items: center; gap: clamp(65px, 9vw, 120px); grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr); }
.project-stat-card { position: relative; margin: 0; min-height: 560px; overflow: hidden; background: var(--navy-950); box-shadow: var(--shadow); }
.project-stat-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(7,20,36,0.88), rgba(7,20,36,0.06) 65%); }
.project-stat-card img { width: 100%; height: 560px; object-fit: cover; }
.project-stat-card > div { position: absolute; z-index: 1; right: 34px; bottom: 32px; left: 34px; display: flex; align-items: end; gap: 16px; color: var(--white); }
.project-stat-card strong { font-family: var(--serif); font-size: clamp(4rem, 7vw, 6.4rem); font-weight: 400; line-height: 0.85; }
.project-stat-card span { padding-bottom: 4px; color: rgba(255,255,255,0.76); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.09em; line-height: 1.45; text-transform: uppercase; }

.project-actions { background: var(--paper); }
.initiative-grid { display: grid; border-top: 1px solid var(--line); border-left: 1px solid var(--line); grid-template-columns: repeat(3, minmax(0, 1fr)); }
.initiative-grid article { min-height: 275px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.62); }
.initiative-grid article > span { display: block; margin-bottom: 55px; color: var(--blue-600); font-size: 0.68rem; font-weight: 800; }
.initiative-grid h3 { margin-bottom: 12px; font-size: 1.55rem; }
.initiative-grid p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.62; }

.project-gallery-section { background: var(--white); }
.project-gallery { display: grid; gap: 14px; grid-auto-rows: 255px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.project-gallery figure { position: relative; margin: 0; overflow: hidden; background: var(--navy-950); }
.project-gallery .gallery-feature { grid-row: span 2; grid-column: span 2; }
.project-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 350ms ease; }
.project-gallery figure:hover img { transform: scale(1.035); }
.project-gallery figure::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(7,20,36,0.76), transparent 55%); }
.project-gallery figcaption { position: absolute; z-index: 1; right: 22px; bottom: 18px; left: 22px; color: var(--white); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }

.project-support { position: relative; overflow: hidden; padding: clamp(90px, 10vw, 145px) 0; color: var(--white); background: var(--navy-950); }
.project-support::after { position: absolute; right: -230px; bottom: -340px; width: 620px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,0.09); border-radius: 50%; content: ""; }
.project-support-grid { position: relative; z-index: 1; display: grid; align-items: start; gap: clamp(65px, 9vw, 120px); grid-template-columns: 0.82fr 1.18fr; }
.project-support h2 { margin-bottom: 0; color: var(--white); }
.project-support-copy > p { color: rgba(255,255,255,0.7); }
.project-support-copy > p:last-of-type { padding: 24px 26px; border-left: 3px solid var(--gold); color: rgba(255,255,255,0.88); background: rgba(255,255,255,0.06); }
.project-support-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

/* Contato */
.contact-page-section { background: var(--paper); }
.contact-page-grid { display: grid; align-items: start; gap: clamp(55px, 8vw, 105px); grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr); }
.contact-form-wrap h2 { margin-bottom: 38px; }
.contact-form { display: grid; gap: 22px; }
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
.form-field { display: grid; gap: 8px; }
.form-field label { color: var(--navy-800); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.form-field input,
.form-field textarea { width: 100%; padding: 16px 17px; border: 1px solid rgba(18,51,90,0.22); border-radius: 0; color: var(--ink); background: var(--white); font: inherit; outline: 0; transition: border-color 160ms ease, box-shadow 160ms ease; }
.form-field textarea { min-height: 170px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(73,113,166,0.13); }
.contact-form > .button { justify-self: start; min-width: 150px; cursor: pointer; }
.contact-form > .button:disabled { opacity: 0.64; cursor: wait; }
.form-status { min-height: 28px; margin: 0; color: var(--muted); font-size: 0.85rem; }
.form-status a { color: var(--blue-700); font-weight: 800; }
.form-status.is-success { color: #28633c; }
.form-status.is-error { color: #a43d3d; }

.contact-details { overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.contact-details-image { height: 250px; overflow: hidden; }
.contact-details-image img { width: 100%; height: 100%; object-fit: cover; }
.contact-details dl { margin: 0; padding: 34px 34px 12px; }
.contact-details dl > div { display: grid; gap: 18px; padding: 21px 0; border-bottom: 1px solid var(--line); grid-template-columns: 90px 1fr; }
.contact-details dt { color: var(--blue-700); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.contact-details dd { margin: 0; font-size: 0.92rem; line-height: 1.62; }
.contact-details dd a { color: var(--blue-700); font-weight: 800; }
.contact-details-actions { display: flex; flex-wrap: wrap; gap: 10px; padding: 24px 34px 34px; }

.contact-map-section { padding: clamp(80px, 9vw, 125px) 0 0; background: var(--white); }
.contact-map-heading { display: grid; align-items: end; gap: 55px; margin-bottom: 52px; grid-template-columns: 1.15fr 0.85fr; }
.contact-map-heading h2 { margin-bottom: 0; }
.contact-map-heading > p { margin-bottom: 5px; color: var(--muted); }
.contact-map { display: block; width: 100%; height: 520px; border: 0; background: var(--paper); }

@media (max-width: 1040px) {
  .site-nav, .nav-group { gap: 16px; }
  .site-nav a { font-size: 0.66rem; }
  .hero-grid { gap: 50px; grid-template-columns: 1fr; }
  .about-grid, .social-grid { gap: 60px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-card { grid-template-columns: 1fr 2fr; }
  .coverage-card > span { grid-column: 2; }
  .news-card { padding: 26px; }
  .legacy-split { min-height: 680px; }
  .legacy-split-content { padding-right: 34px; padding-left: 34px; }
  .page-intro-grid { gap: 65px; }
  .areas-intro-grid { grid-template-columns: minmax(0, 1fr) minmax(285px, 0.5fr); }
  .work-layout { gap: 65px; }
  .project-intro-grid { gap: 65px; }
  .contact-page-grid { gap: 55px; }
}

@media (max-width: 900px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .header-inner,
  .site-header.is-scrolled .header-inner { min-height: 74px; }
  .brand,
  .site-header.is-scrolled .brand {
    position: static;
    margin-right: auto;
    transform: none;
  }
  .brand-full,
  .site-header.is-scrolled .brand-full {
    display: block;
    width: 230px;
  }
  .brand-mark,
  .site-header.is-scrolled .brand-mark { display: none; }
  .menu-toggle { display: block; }
  .site-nav,
  .site-header.is-scrolled .site-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    display: flex;
    width: min(86vw, 390px);
    height: 100svh;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 100px 42px 50px;
    background: var(--navy-950);
    box-shadow: -30px 0 80px rgba(0,0,0,0.3);
    transform: translateX(105%);
    transition: transform 220ms ease;
  }
  .site-nav .nav-group { display: contents; }
  .site-nav .nav-logo-slot { display: none; }
  .site-nav.is-open { transform: none; }
  .site-nav a { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.12); font-size: 0.8rem; }
  .site-nav .nav-cta { margin-top: 28px; padding: 14px 16px; text-align: center; }
  .hero { min-height: auto; }
  .hero-grid { align-items: start; grid-template-columns: 1fr; padding-top: 160px; padding-bottom: 120px; }
  .hero-copy { max-width: 760px; }
  .about-grid, .social-grid, .method-grid { grid-template-columns: 1fr; }
  .about-gallery, .social-media { width: min(100%, 680px); min-height: 560px; }
  .about-copy, .social-copy { max-width: 720px; }
  .method-grid { gap: 55px; }
  .coverage-card { grid-template-columns: 1fr; }
  .coverage-card > span { grid-column: auto; }
  .heading-split { align-items: start; grid-template-columns: 1fr; }
  .text-link { justify-self: start; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card { min-height: 0; }
  .news-meta { margin-bottom: 28px; }
  .footer-main { align-items: flex-start; flex-direction: column; }
  .footer-nap { align-items: flex-start; flex-direction: column; gap: 15px; }
  .legacy-split { min-height: 620px; }
  .legacy-split-content { padding: 72px 28px; }
  .legacy-split-content h2 { font-size: clamp(2.45rem, 6vw, 3.4rem); }
  .legacy-split-content > p:not(.eyebrow) { font-size: 0.9rem; line-height: 1.72; }
  .page-hero { min-height: 540px; }
  .page-intro-grid, .areas-intro-grid, .work-layout, .territory-grid { grid-template-columns: 1fr; }
  .page-image-stack, .work-visual { width: min(100%, 680px); min-height: 560px; }
  .practice-panel { position: static; width: min(100%, 620px); }
  .value-card { gap: 24px; grid-template-columns: 54px minmax(150px, 0.45fr) minmax(0, 1fr); }
  .page-cta-inner { align-items: flex-start; flex-direction: column; }
  .page-cta-actions { justify-content: flex-start; }
  .client-logos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .project-intro-grid, .project-support-grid, .contact-page-grid { grid-template-columns: 1fr; }
  .project-stat-card { width: min(100%, 680px); }
  .initiative-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-form-wrap, .contact-details { max-width: 720px; }
  .contact-map-heading { align-items: start; grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-full,
  .site-header.is-scrolled .brand-full { width: 210px; }
  h1 { font-size: clamp(2.75rem, 14vw, 4.4rem); }
  h2 { font-size: clamp(2.25rem, 11vw, 3.4rem); }
  .hero-grid { padding-top: 130px; padding-bottom: 100px; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .section { padding: 82px 0; }
  .about-gallery, .social-media { min-height: 420px; }
  .about-gallery-main { inset: 0 8% 18% 0; }
  .about-gallery-small { width: 58%; height: 38%; border-width: 6px; }
  .about-seal { top: 8%; width: 96px; }
  .about-seal span { font-size: 1.45rem; }
  .principles > div { gap: 8px 14px; grid-template-columns: 30px 1fr; }
  .principles p { grid-column: 2; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid::after { display: none; }
  .service-card { min-height: 0; padding: 28px 0; grid-template-columns: 50px minmax(0, 1fr); }
  .service-card:nth-last-child(-n + 2) { border-bottom: 0; }
  .service-card:last-child { border-bottom: 1px solid var(--line); }
  .service-card > span { font-size: 1.85rem; }
  .services-banner { height: 430px; }
  .services-banner::after { background: linear-gradient(0deg, rgba(7,20,36,0.94), rgba(7,20,36,0.18)); }
  .services-banner figcaption { top: auto; right: 24px; bottom: 30px; left: 24px; transform: none; }
  .method-list { gap: 0; margin-top: 0; padding: 0 0 0 30px; grid-template-columns: 1fr; }
  .method-list::before { top: 0; right: auto; bottom: 0; left: 5px; width: 1px; height: auto; }
  .method-list li { padding: 0 0 38px; }
  .method-list li:last-child { padding-bottom: 0; }
  .method-list li::before { top: 7px; left: -31px; }
  .method-list li > span { margin-bottom: 11px; font-size: 1.8rem; }
  .coverage-card { margin-top: 55px; padding: 28px 24px; }
  .social-main { inset: 0 6% 15% 0; width: 94%; height: 85%; }
  .social-detail { width: 57%; height: 34%; border-width: 6px; }
  .social-stat { top: 7%; width: 125px; }
  .social-stat strong { font-size: 2.35rem; }
  .social-stat span { font-size: 0.56rem; }
  .news-card { padding: 27px 24px; }
  .footer-main nav { align-items: flex-start; flex-direction: column; gap: 15px; }
  .footer-nap-links { align-items: flex-start; flex-direction: column; gap: 8px; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .legacy-split { min-height: 0; }
  .legacy-split::before { display: none; }
  .legacy-split-media { position: relative; width: 100%; height: 420px; }
  .legacy-split-media img { object-fit: cover; object-position: center; }
  .legacy-split-inner { display: block; min-height: 0; }
  .legacy-split-spacer { display: none; }
  .legacy-split-content,
  .legacy-split-content-right { align-items: flex-start; max-width: none; padding: 64px 24px; text-align: left; }
  .legacy-split-content-right .legacy-eyebrow { flex-direction: row; }
  .legacy-split-content h2 { font-size: clamp(2.35rem, 11vw, 3.2rem); }
  .legacy-split-content > .button { width: 100%; }
  .page-hero { min-height: 500px; }
  .page-hero-content { padding-top: 135px; padding-bottom: 62px; }
  .breadcrumbs { margin-bottom: 36px; }
  .page-hero-content > p:last-child { font-size: 1rem; }
  .page-section { padding: 82px 0; }
  .page-image-stack, .work-visual { min-height: 430px; }
  .page-image-main { inset: 0 7% 17% 0; width: 93%; height: 83%; }
  .page-image-detail { width: 58%; height: 36%; border-width: 6px; }
  .page-image-label { width: 112px; font-size: 1rem; }
  .quote-band { min-height: 430px; }
  .value-card { gap: 10px 18px; padding: 32px 0; grid-template-columns: 44px minmax(0, 1fr); }
  .value-card::before { width: 44px; }
  .value-card > span { grid-row: 1 / 3; font-size: 1.8rem; }
  .value-card h3, .value-card p { grid-column: 2; }
  .practice-panel { padding: 30px 25px; }
  .work-visual img { right: 5%; width: 95%; }
  .work-stat { width: 145px; }
  .work-stat strong { font-size: 2.45rem; }
  .work-stat span { font-size: 0.55rem; }
  .page-cta-actions { width: 100%; align-items: stretch; flex-direction: column; }
  .page-cta-actions .button { width: 100%; }
  .client-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .client-logos figure { min-height: 125px; padding: 18px; }
  .project-stat-card { min-height: 440px; }
  .project-stat-card img { height: 440px; }
  .project-stat-card > div { right: 24px; bottom: 24px; left: 24px; }
  .initiative-grid { grid-template-columns: 1fr; }
  .initiative-grid article { min-height: 230px; padding: 28px 25px; }
  .initiative-grid article > span { margin-bottom: 38px; }
  .project-gallery { grid-auto-rows: 245px; grid-template-columns: 1fr; }
  .project-gallery .gallery-feature { grid-row: auto; grid-column: auto; }
  .project-support-actions { align-items: stretch; flex-direction: column; }
  .project-support-actions .button { width: 100%; }
  .contact-form > .button { width: 100%; }
  .contact-details dl { padding: 26px 22px 10px; }
  .contact-details dl > div { gap: 8px; grid-template-columns: 1fr; }
  .contact-details-actions { align-items: stretch; flex-direction: column; padding: 22px; }
  .contact-details-actions .button { width: 100%; }
  .contact-map { height: 410px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
