﻿
:root {
  --ink: #003d3f;
  --ink-deep: #002f31;
  --paper: #f5f1ea;
  --paper-light: #fffdf9;
  --sand: #bf7a43;
  --sand-light: #d9a06d;
  --line: rgba(0, 61, 63, 0.16);
  --muted: #596d6d;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper-light);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(280px, 1fr) auto;
  min-height: 92px;
  padding: 0 5.4vw;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  align-items: center;
  display: inline-flex;
  gap: 14px;
  width: fit-content;
}

.brand {
  height: 72px;
  overflow: hidden;
  position: relative;
  width: 330px;
}

.brand img {
  height: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 440px;
}

.brand-mark {
  align-items: center;
  border: 1px solid var(--ink);
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  height: 46px;
  justify-content: center;
  letter-spacing: -2px;
  width: 46px;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.05;
}

.brand-name small,
.footer-brand small {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-top: 5px;
  text-transform: uppercase;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 28px;
}

.desktop-nav a {
  font-size: 12px;
  position: relative;
}

.desktop-nav a::after {
  background: var(--sand);
  bottom: -8px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-contact {
  align-items: center;
  border-bottom: 1px solid currentColor;
  display: flex;
  font-size: 12px;
  gap: 12px;
  padding: 8px 0;
  white-space: nowrap;
}

.mobile-menu {
  display: none;
}

.hero {
  background: var(--paper);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(380px, 0.65fr);
  min-height: calc(100vh - 92px);
  padding: 8.5vh 5.4vw 9vh;
}

.hero-copy {
  align-self: center;
  max-width: 850px;
  padding-right: 7vw;
}

.eyebrow,
.section-kicker,
.panel-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--muted);
  margin: 0 0 34px;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6.1vw, 96px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
  margin: 0;
  max-width: 900px;
}

.hero h1 em {
  color: var(--sand);
  display: block;
  font-weight: 400;
}

.hero-intro {
  color: #455762;
  font-size: 16px;
  line-height: 1.7;
  margin: 34px 0 0;
  max-width: 620px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 38px;
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  gap: 34px;
  letter-spacing: 0.06em;
  min-height: 52px;
  text-transform: uppercase;
}

.button-primary {
  background: var(--ink);
  color: var(--white);
  padding: 0 24px;
  transition: background 180ms ease, transform 180ms ease;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #075355;
  transform: translateY(-2px);
}

.button-text {
  border-bottom: 1px solid var(--line);
}

.hero-feature {
  align-self: stretch;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 600px;
  overflow: hidden;
  padding: 32px;
  position: relative;
}

.hero-feature::before {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
  height: 360px;
  position: absolute;
  right: -180px;
  top: 72px;
  width: 360px;
}

.feature-topline,
.feature-center,
.feature-footer {
  position: relative;
  z-index: 2;
}

.feature-topline {
  display: flex;
  font-size: 9px;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-index {
  color: var(--sand-light);
}

.feature-center {
  display: grid;
  gap: 22px;
  grid-template-columns: auto 1fr;
}

.feature-center {
  animation: feature-in 420ms ease both;
}

@keyframes feature-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.feature-symbol {
  align-items: center;
  border: 1px solid var(--sand);
  border-radius: 50%;
  color: var(--sand-light);
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  height: 68px;
  justify-content: center;
  width: 68px;
}

.feature-center h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin: 0 0 24px;
}

.feature-center p {
  color: #cad8d6;
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
  max-width: 280px;
}

.feature-footer {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  font-size: 10px;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0.08em;
  padding-top: 22px;
  text-transform: uppercase;
}

.feature-footer > a {
  align-items: center;
  display: inline-flex;
  gap: 18px;
}

.feature-dots {
  display: flex;
  gap: 8px;
}

.feature-dots button {
  background: rgba(255, 255, 255, 0.28);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 5px;
  padding: 0;
  transition: background 180ms ease, width 180ms ease;
  width: 18px;
}

.feature-dots button.active {
  background: var(--sand-light);
  width: 34px;
}

.feature-tag {
  background: var(--sand);
  bottom: 76px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  padding: 14px 22px;
  position: absolute;
  right: 0;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: bottom right;
}

.service-strip {
  align-items: center;
  background: var(--paper-light);
  border-bottom: 1px solid rgba(184, 116, 65, .58);
  border-top: 1px solid rgba(184, 116, 65, .58);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  min-height: 74px;
  padding: 18px 5.4vw;
}

.service-strip span {
  border-bottom: 1px solid rgba(184, 116, 65, .72);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.service-strip i {
  background: var(--sand);
  border-radius: 50%;
  display: block;
  height: 4px;
  width: 4px;
}

.service-strip .strip-item {
  align-items: center;
  display: inline-flex;
  gap: 25px;
}

.intro-section,
.areas-section,
.method-section,
.content-section {
  padding: 120px 5.4vw;
}

.intro-section {
  display: grid;
  gap: 10vw;
  grid-template-columns: 180px 1fr;
}

.section-kicker {
  color: var(--sand);
  margin: 0 0 18px;
}

.section-kicker.light {
  color: var(--sand-light);
}

.section-number {
  color: #a5afb4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 70px;
  margin: 0;
}

.intro-content h2,
.section-heading h2,
.credit-copy h2,
.contact-grid h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.intro-content h2 {
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.02;
  margin: 0;
  max-width: 930px;
}

.intro-columns {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 56px;
  padding-top: 30px;
}

.intro-columns p,
.section-heading > p,
.credit-copy > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

.inline-link {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  gap: 24px;
  letter-spacing: 0.08em;
  margin-top: 34px;
  padding-bottom: 8px;
  text-transform: uppercase;
  width: fit-content;
}

.areas-section {
  background: var(--paper);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 70px;
  grid-template-columns: 1fr 0.55fr;
  margin-bottom: 62px;
}

.section-heading h2 {
  font-size: clamp(48px, 5.5vw, 78px);
  line-height: 0.95;
  margin: 0;
}

.section-heading > p {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

.area-grid {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.area-card {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 26px;
  transition: background 180ms ease, color 180ms ease;
}

.area-card:nth-child(3n) {
  border-right: 0;
}

.area-card:hover {
  background: var(--ink);
  color: var(--white);
}

.area-number {
  color: var(--sand);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.area-card > div {
  margin: auto 0;
}

.area-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}

.area-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
  max-width: 300px;
}

.area-card:hover p {
  color: #cad8d6;
}

.area-card > a {
  align-self: end;
  font-size: 22px;
}

.credit-section {
  background: var(--ink-deep);
  color: var(--white);
  display: grid;
  gap: 9vw;
  grid-template-columns: 1.15fr 0.85fr;
  padding: 120px 5.4vw;
}

.credit-copy {
  align-self: center;
}

.credit-copy h2 {
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 0.98;
  margin: 0 0 32px;
  max-width: 820px;
}

.credit-copy > p {
  color: #c6d3d1;
  max-width: 660px;
}

.button-light {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  margin-top: 36px;
}

.education-panel {
  background: var(--paper);
  color: var(--ink);
  padding: 44px;
  position: relative;
}

.education-panel::before {
  border: 1px solid rgba(12, 36, 51, 0.12);
  border-radius: 50%;
  content: "";
  height: 230px;
  position: absolute;
  right: -70px;
  top: -70px;
  width: 230px;
}

.panel-label {
  color: var(--sand);
  margin: 0 0 80px;
  position: relative;
}

.education-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 26px;
  position: relative;
}

.education-panel > p:not(.panel-label) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.education-panel ul {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 28px 0 34px;
  padding: 16px 0 0;
}

.education-panel li {
  font-size: 11px;
  padding: 6px 0;
}

.education-panel li::before {
  color: var(--sand);
  content: "—";
  margin-right: 12px;
}

.education-panel > a {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 10px;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0.08em;
  padding-top: 20px;
  text-transform: uppercase;
}

.method-section {
  background: var(--paper-light);
}

.method-heading h2 {
  max-width: 740px;
}

.steps-grid {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.steps-grid article {
  border-right: 1px solid var(--line);
  min-height: 270px;
  padding: 28px 26px;
}

.steps-grid article:last-child {
  border-right: 0;
}

.steps-grid span {
  color: var(--sand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.steps-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
  margin: 74px 0 14px;
}

.steps-grid p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  margin: 0;
}

.content-section {
  background: var(--paper);
}

.content-heading {
  grid-template-columns: 1fr auto;
}

.content-heading .inline-link {
  margin: 0;
}

.articles-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.articles-grid article {
  background: var(--paper-light);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 30px;
}

.article-category {
  color: var(--sand);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.articles-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 48px 0 auto;
}

.articles-grid article > div {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 18px;
}

.articles-grid a {
  font-size: 20px;
}

.contact-section {
  background: var(--ink);
  color: var(--white);
  padding: 100px 5.4vw 60px;
}

.contact-grid {
  align-items: end;
  display: grid;
  gap: 50px;
  grid-template-columns: 1.2fr 0.8fr;
}

.contact-grid h2 {
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.98;
  margin: 0;
  max-width: 880px;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-actions a {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  justify-content: space-between;
  padding: 18px 0;
}

/* Editorial closing block */
.contact-section {
  background: #f2ede5;
  border-top: 1px solid rgba(1,53,58,.1);
  color: var(--ink);
  padding: 88px 5.4vw;
}
.contact-section .section-kicker.light { color: var(--sand); }
.contact-grid { align-items: center; }
.contact-grid h2 { font-size: clamp(42px, 5vw, 68px); line-height: 1.02; max-width: 760px; }
.contact-actions { grid-template-columns: repeat(2, minmax(150px, 1fr)); }
.contact-actions a { background: #fffdf9; border: 1px solid rgba(1,53,58,.22); color: var(--ink); font-size: 20px; padding: 20px 22px; transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; }
.contact-actions a:hover { background: var(--ink); border-color: var(--ink); color: #fff; transform: translateY(-3px); }

.contact-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 82px;
  padding-top: 28px;
}

.contact-meta p {
  color: #b9c5cb;
  font-size: 11px;
  line-height: 1.7;
  margin: 0;
}

footer {
  align-items: center;
  background: var(--ink-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr auto 1fr;
  min-height: 220px;
  padding: 24px 5.4vw;
}

.footer-brand-logo {
  height: 170px;
  overflow: hidden;
  position: relative;
  width: 260px;
}

.footer-brand-logo img {
  height: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
}

.brand-mark.inverse {
  border-color: rgba(255, 255, 255, 0.7);
}

footer p,
footer a,
footer span {
  font-size: 9px;
  letter-spacing: 0.06em;
}

footer > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
}

/* Direito Público */
.public-hero {
  background: var(--paper);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
  min-height: calc(92vh - 92px);
  padding: 8vh 5.4vw;
}

.public-hero-copy {
  align-self: center;
  max-width: 900px;
  padding-right: 7vw;
}

.public-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6.2vw, 96px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
  margin: 0;
}

.public-hero h1 em {
  color: var(--sand);
  display: block;
  font-weight: 400;
}

.public-hero-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 34px 0 0;
  max-width: 680px;
}

.public-hero-panel {
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 570px;
  overflow: hidden;
  padding: 36px;
  position: relative;
}

.public-hero-panel::after {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  content: "";
  height: 340px;
  position: absolute;
  right: -170px;
  top: 85px;
  width: 340px;
}

.public-panel-index,
.public-hero-panel > div,
.public-hero-panel > p {
  position: relative;
  z-index: 1;
}

.public-panel-index,
.public-hero-panel > div > p {
  color: var(--sand-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.public-hero-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 4.5vw, 68px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .95;
  margin: 20px 0 0;
}

.public-hero-panel > p {
  border-top: 1px solid rgba(255,255,255,.22);
  color: #cad8d6;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  padding-top: 24px;
}

.public-intro,
.public-secondary {
  display: grid;
  gap: 10vw;
  grid-template-columns: 180px 1fr;
  padding: 120px 5.4vw;
}

.public-intro h2,
.public-secondary h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
  margin: 0;
  max-width: 980px;
}

.public-intro-text {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 54px;
  padding-top: 28px;
}

.public-intro-text p,
.public-secondary div > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.practice-content-callout { align-items: end; background: var(--paper); border-top: 1px solid var(--line); display: grid; gap: 8vw; grid-template-columns: 1.15fr .85fr; padding: 96px 5.4vw; }
.practice-content-callout h2 { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 5vw, 70px); font-weight: 400; letter-spacing: -.045em; line-height: 1; margin: 20px 0 0; max-width: 820px; }
.practice-content-callout > div:last-child { border-left: 1px solid var(--line); padding-left: 32px; }
.practice-content-callout > div:last-child p { color: var(--muted); font-size: 13px; line-height: 1.75; margin: 0 0 28px; }
.practice-content-callout a { align-items: center; border-bottom: 1px solid var(--sand); color: var(--ink); display: flex; font-size: 10px; font-weight: 700; justify-content: space-between; letter-spacing: .08em; padding-bottom: 10px; text-transform: uppercase; }
.practice-content-callout a span { color: var(--sand); font-size: 18px; }

.public-services {
  background: var(--paper);
  padding: 120px 5.4vw;
}

.public-services-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.public-services-grid article {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 315px;
  padding: 28px;
}

.service-card-top {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.service-card-top > span:first-child {
  color: var(--sand);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.service-icon {
  align-items: center;
  background: rgba(217,160,109,.1);
  border: 1px solid rgba(168,96,55,.34);
  color: #a86037;
  display: flex;
  height: 48px;
  justify-content: center;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  width: 48px;
}

.service-icon svg { height: 24px; width: 24px; }
.service-with-icon:hover .service-icon { background: #a86037; color: #fff; transform: translateY(-3px); }

.public-services-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -.025em;
  margin: 76px 0 18px;
}

.public-services-grid p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
}

.public-moments {
  background: var(--ink-deep);
  color: var(--white);
  display: grid;
  gap: 8vw;
  grid-template-columns: .85fr 1.15fr;
  padding: 120px 5.4vw;
}

.public-moments h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.5vw, 66px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
  margin: 0 0 28px;
}

.public-moments-heading > p:last-child {
  color: #c6d3d1;
  font-size: 13px;
  line-height: 1.75;
  max-width: 560px;
}

.public-moments ol {
  border-top: 1px solid rgba(255,255,255,.2);
  list-style: none;
  margin: 0;
  padding: 0;
}

.public-moments li {
  border-bottom: 1px solid rgba(255,255,255,.2);
  display: grid;
  gap: 24px;
  grid-template-columns: 42px 1fr;
  padding: 24px 0;
}

.public-moments li span {
  color: var(--sand-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.public-moments li p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.public-secondary {
  background: var(--paper-light);
}

.public-secondary div > p {
  border-top: 1px solid var(--line);
  margin-top: 42px;
  max-width: 780px;
  padding-top: 28px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .mobile-menu {
    display: block;
    position: relative;
  }

  .mobile-menu summary {
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    list-style: none;
    text-transform: uppercase;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    background: var(--paper-light);
    border: 1px solid var(--line);
    display: grid;
    min-width: 250px;
    padding: 12px;
    position: absolute;
    right: 0;
    top: 34px;
  }

  .mobile-menu nav a {
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    padding: 14px 10px;
  }

  .mobile-menu nav a:last-child {
    border: 0;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 3vh 0 8vh;
  }

  .hero-feature {
    min-height: 520px;
  }

  .credit-section {
    gap: 60px;
  }

  .public-hero {
    grid-template-columns: 1fr;
  }

  .public-hero-copy {
    padding: 4vh 0 8vh;
  }

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

@media (max-width: 780px) {
  .site-header {
    min-height: 78px;
    padding: 0 22px;
  }

  .brand {
    height: 62px;
    width: 250px;
  }

  .brand img {
    width: 335px;
  }

  .brand-mark {
    height: 40px;
    width: 40px;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-name small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 70px 22px 22px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-intro {
    font-size: 14px;
  }

  .hero-feature {
    min-height: 500px;
    padding: 26px;
  }

  .feature-center {
    grid-template-columns: 1fr;
  }

  .feature-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .feature-symbol {
    height: 54px;
    width: 54px;
  }

  .service-strip {
    justify-content: flex-start;
    padding: 22px;
  }

  .intro-section,
  .areas-section,
  .method-section,
  .content-section {
    padding: 82px 22px;
  }

  .intro-section,
  .section-heading,
  .credit-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .public-hero {
    padding: 70px 22px 22px;
  }

  .public-hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .public-hero-panel {
    min-height: 470px;
  }

  .public-intro,
  .public-secondary,
  .public-moments {
    gap: 46px;
    grid-template-columns: 1fr;
    padding: 82px 22px;
  }

  .public-intro-text,
  .public-services-grid {
    grid-template-columns: 1fr;
  }

  .public-intro-text {
    gap: 18px;
  }

  .public-services {
    padding: 82px 22px;
  }

  .intro-section {
    gap: 46px;
  }

  .section-number {
    font-size: 48px;
  }

  .intro-columns {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    gap: 28px;
    margin-bottom: 44px;
  }

  .section-heading > p {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 22px;
  }

  .area-grid,
  .steps-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .area-card,
  .area-card:nth-child(3n),
  .steps-grid article {
    border-right: 0;
  }

  .area-card {
    min-height: 260px;
  }

  .credit-section {
    padding: 82px 22px;
  }

  .education-panel {
    padding: 34px 26px;
  }

  .panel-label {
    margin-bottom: 60px;
  }

  .steps-grid article {
    border-bottom: 1px solid var(--line);
    min-height: 230px;
  }

  .content-heading {
    grid-template-columns: 1fr;
  }

  .articles-grid article {
    min-height: 270px;
  }

  .contact-section {
    padding: 82px 22px 48px;
  }

  .contact-meta,
  footer {
    grid-template-columns: 1fr;
  }

  .contact-meta {
    gap: 24px;
  }

  footer {
    align-items: start;
    padding: 42px 22px;
  }

  footer > div:last-child {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Editorial contemporary direction */
.site-header {
  background: rgba(1, 53, 58, .98);
  border-bottom-color: rgba(255, 255, 255, .12);
  color: #fff;
  min-height: 96px;
}

.site-header .brand { height: 84px; overflow: visible; width: 380px; }
.site-header .brand img { filter: none; left: 0; top: 50%; transform: translateY(-50%); width: 360px; }
.site-header .header-contact { color: var(--sand-light); }

.back-navigation { align-items: center; background: #fffdf9; border: 1px solid rgba(1,53,58,.22); border-radius: 50%; box-shadow: 0 8px 22px rgba(1,53,58,.12); color: var(--ink); cursor: pointer; display: flex; height: 44px; justify-content: center; left: 5.4vw; padding: 0; position: fixed; top: 118px; transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease; width: 44px; z-index: 70; }
.back-navigation span { font-family: Arial, sans-serif; font-size: 22px; line-height: 1; transform: translateY(-1px); }
.back-navigation:hover { background: var(--ink); border-color: var(--ink); color: #fff; transform: translateX(-3px); }
.back-navigation:focus-visible { outline: 2px solid var(--sand); outline-offset: 3px; }

.editorial-hero {
  background: linear-gradient(115deg, #fffdf9 0%, #f5f1ea 70%, #efe8dc 100%);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  min-height: 650px;
  overflow: hidden;
  padding: 74px 4.4vw 66px;
  position: relative;
}

.editorial-hero-copy { align-self: center; max-width: 700px; position: relative; z-index: 3; }
.editorial-hero-copy .eyebrow { color: var(--sand); margin-bottom: 26px; }
.editorial-hero-copy .eyebrow::after { background: var(--sand); content: ""; display: block; height: 1px; margin-top: 14px; width: 58px; }
.editorial-hero-copy h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(58px, 5.4vw, 88px); font-weight: 400; letter-spacing: -.055em; line-height: .94; margin: 0; }
.editorial-hero-copy h1 em { color: var(--ink); display: block; font-weight: 400; }
.editorial-hero-copy > p:not(.eyebrow) { color: #465554; font-size: 17px; line-height: 1.65; margin: 30px 0 0; max-width: 590px; }
.editorial-hero .button-primary { background: linear-gradient(120deg, #ae622e, var(--sand)); min-width: 265px; justify-content: space-between; }

.hero-geometry { bottom: 0; left: 48%; position: absolute; right: 0; top: 0; }
.hero-geometry::before { background: var(--ink); border-radius: 52% 0 0 0; bottom: 0; content: ""; position: absolute; right: 0; top: 0; width: 36%; }
.geo-circle { border: 1px solid var(--sand); border-radius: 50%; height: min(520px, 66vw); left: 8%; position: absolute; top: 5%; width: min(520px, 66vw); }
.geo-line { background: var(--sand); bottom: 0; position: absolute; top: 0; width: 1px; }
.geo-line.one { left: 28%; }.geo-line.two { left: 47%; }
.geo-arch { border: 1px solid var(--sand); border-bottom: 0; border-radius: 220px 220px 0 0; bottom: 0; height: 58%; position: absolute; right: 4%; width: 38%; }
.geo-letter { color: transparent; font-family: Georgia, serif; font-size: min(33vw, 470px); line-height: 1; position: absolute; right: 1%; top: 16%; -webkit-text-stroke: 1px var(--sand); }

.rotating-highlight { align-items: center; background: rgba(255,253,249,.98); border: 1px solid var(--sand); bottom: 34px; box-shadow: 12px 14px 0 rgba(1,53,58,.15); display: grid; gap: 12px 22px; grid-template-columns: 1fr auto; min-height: 210px; padding: 25px 27px 22px; position: absolute; right: 3vw; transition: transform .22s ease, box-shadow .22s ease; width: 350px; z-index: 4; }
.rotating-highlight::before { background: var(--sand); content: ""; height: 4px; left: -1px; position: absolute; right: -1px; top: -1px; }
.rotating-highlight:hover { box-shadow: 16px 18px 0 rgba(1,53,58,.2); transform: translateY(-5px); }
.rotating-highlight > span:first-child { color: var(--sand); font-size: 9px; font-weight: 700; grid-column: 1 / -1; letter-spacing: .15em; text-transform: uppercase; }
.rotating-highlight strong { font-family: Georgia, serif; font-size: 28px; font-weight: 400; line-height: 1; }
.rotating-highlight .highlight-arrow { color: var(--sand); font-size: 25px; transition: transform .2s ease; }
.rotating-highlight:hover .highlight-arrow { transform: translateX(5px); }
.rotating-highlight p { color: var(--muted); font-size: 11px; grid-column: 1 / -1; line-height: 1.55; margin: 0; max-width: 280px; }
.rotating-highlight small { border-top: 1px solid var(--line); color: var(--ink); font-size: 8px; font-weight: 700; grid-column: 1 / -1; letter-spacing: .12em; padding-top: 11px; text-transform: uppercase; }

.quick-areas { background: #fffdf9; border-bottom: 1px solid var(--line); padding: 46px 4.4vw 72px; scroll-margin-top: 104px; }
.quick-areas-heading { align-items: center; display: flex; justify-content: space-between; margin-bottom: 18px; }
.quick-areas-heading .section-kicker { margin: 0; }
.quick-areas-title { color: var(--sand-light); font-family: Arial, Helvetica, sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .2em; line-height: 1.2; margin: 0; text-transform: uppercase; }
.quick-areas-heading > a { border-bottom: 1px solid var(--line); font-size: 9px; font-weight: 700; letter-spacing: .08em; padding-bottom: 6px; text-transform: uppercase; }
.quick-area-grid { display: grid; gap: 16px; grid-template-columns: repeat(7, minmax(0, 1fr)); }
.quick-area-card { background: #fffdf9; border: 1px solid rgba(191,122,67,.38); display: flex; flex-direction: column; min-height: 230px; padding: 18px; position: relative; transition: border-color .22s ease, box-shadow .22s ease, transform .22s cubic-bezier(.2,.8,.2,1); }
.quick-area-card:hover, .quick-area-card:focus-visible { border-color: var(--sand); box-shadow: 8px 10px 0 rgba(0,61,63,.09); outline: none; transform: translateY(-6px); }
.quick-area-card:focus-visible { outline: 2px solid var(--sand); outline-offset: 3px; }
.quick-number { color: var(--sand); font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.quick-mark { align-items: center; border: 1px solid var(--sand); border-radius: 50%; color: var(--sand); display: flex; font-family: Georgia, serif; font-size: 20px; height: 40px; justify-content: center; margin-top: 24px; width: 40px; }
.quick-area-card h2 { font-family: Georgia, serif; font-size: clamp(20px, 1.65vw, 27px); font-weight: 400; letter-spacing: -.03em; line-height: 1.02; margin: auto 0 0; }
.quick-arrow { align-self: flex-end; color: var(--sand); font-size: 20px; transition: transform .22s ease; }
.quick-area-card:hover .quick-arrow { transform: translateX(5px); }

.area-card { color: inherit; }
.area-card-arrow { align-self: end; font-size: 22px; transition: transform .2s ease; }
.area-card:hover .area-card-arrow { transform: translateX(5px); }

.public-hero { background: linear-gradient(125deg, var(--paper-light), var(--paper)); }
.public-hero-panel { background: linear-gradient(145deg, var(--ink), var(--ink-deep)); }
.public-services-grid article { transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.public-services-grid article:hover { border-color: var(--sand); box-shadow: 8px 10px 0 rgba(0,61,63,.08); transform: translateY(-4px); }

@media (max-width: 1180px) {
  .quick-area-grid { grid-template-columns: repeat(4, 1fr); }
  .editorial-hero { grid-template-columns: 1.05fr .95fr; }
}

@media (max-width: 780px) {
  .back-navigation { height: 40px; left: 6vw; top: 105px; width: 40px; }
  .site-header { min-height: 78px; }
  .editorial-hero { display: block; min-height: 680px; padding: 62px 6vw 190px; }
  .editorial-hero-copy h1 { font-size: clamp(50px, 15vw, 70px); }
  .hero-geometry { bottom: 0; height: 230px; left: 26%; top: auto; }
  .geo-circle { height: 250px; top: -30px; width: 250px; }
  .site-header .brand { height: 70px; width: 250px; }
  .site-header .brand img { width: 245px; }
  .rotating-highlight { bottom: 18px; left: 6vw; min-height: 160px; padding: 19px 21px; right: auto; width: min(330px, 88vw); }
  .rotating-highlight strong { font-size: 23px; }
  .quick-areas { padding: 42px 6vw 60px; }
  .quick-area-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-area-card { min-height: 205px; }
}

footer {
  background: #01353a;
  border-top-color: rgba(255,255,255,.14);
}

.footer-brand-logo {
  height: 190px;
  overflow: hidden;
  width: 300px;
}

.footer-brand-logo img {
  background: #01353a;
  width: 300px;
}

/* Expanded institutional footer */
.site-footer {
  align-items: stretch;
  background: #01353a;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 0;
  padding: 0 5.4vw 26px;
}
.footer-top { align-items: stretch; display: flex; flex-direction: column; padding: 48px 0 42px; scroll-margin-top: 104px; }
.site-footer .footer-brand-logo { height: 145px; width: 260px; }
.site-footer .footer-brand-logo img { width: 260px; }
.footer-info { align-items: start; display: grid; gap: 0; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.footer-info > div { border-right: 1px solid rgba(255,255,255,.14); min-height: 108px; padding: 0 32px; text-align: center; }
.footer-info > div:first-child { padding-left: 0; }
.footer-info > div:last-child { border-right: 0; padding-right: 0; }
.footer-info > .footer-contact-card { background: rgba(217,160,109,.1); border: 1px solid rgba(217,160,109,.48); border-radius: 4px; box-shadow: 0 14px 34px rgba(0,0,0,.12); margin: -20px 12px -20px 0; min-height: 148px; padding: 20px 28px; }
.footer-contact-card .footer-label { color: #f0bd8e; }
.footer-contact-card .footer-social { color: #fff; font-weight: 600; }
.footer-contact-card .footer-email-link { margin-top: 7px; text-decoration: underline; text-decoration-color: rgba(240,189,142,.55); text-underline-offset: 4px; }
.footer-contact-card .footer-email-link:hover { text-decoration-color: #f0bd8e; }
.footer-contact-card button.footer-email-link { background: transparent; border: 0; cursor: pointer; font-family: inherit; justify-content: center; padding: 0; width: 100%; }
.email-dialog-open { overflow: hidden; }
.email-dialog-backdrop { align-items: center; background: rgba(0,25,28,.78); display: flex; inset: 0; justify-content: center; padding: 24px; position: fixed; z-index: 1000; }
.email-dialog-backdrop[hidden] { display: none; }
.email-dialog { background: #fffdf9; border: 1px solid rgba(184,116,65,.65); box-shadow: 0 28px 80px rgba(0,0,0,.3); color: var(--ink); max-height: calc(100vh - 48px); max-width: 560px; overflow-y: auto; padding: 44px; position: relative; text-align: left; width: 100%; }
.email-dialog-close { background: transparent; border: 1px solid var(--line); color: var(--ink); cursor: pointer; font-size: 24px; height: 38px; line-height: 1; position: absolute; right: 18px; top: 18px; width: 38px; }
.email-dialog-kicker { color: var(--sand) !important; font-size: 10px !important; font-weight: 700; letter-spacing: .18em !important; margin: 0 0 18px !important; text-transform: uppercase; }
.email-dialog h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 5vw, 56px); font-weight: 400; letter-spacing: -.045em; line-height: 1; margin: 0 45px 18px 0; }
.email-dialog > p:not(.email-dialog-kicker) { color: var(--muted); font-size: 13px; line-height: 1.65; margin: 0 0 28px; }
.email-dialog form { display: grid; gap: 15px; }
.email-dialog label { color: var(--ink); display: grid; font-size: 9px; font-weight: 700; gap: 7px; letter-spacing: .1em; text-transform: uppercase; }
.email-dialog input { background: #f2ede5; border: 1px solid #d9cfc2; border-radius: 0; color: var(--ink); font: 14px Arial, sans-serif; height: 48px; outline: none; padding: 0 14px; }
.email-dialog input:focus { border-color: var(--sand); box-shadow: 0 0 0 2px rgba(184,116,65,.12); }
.email-dialog form > button { align-items: center; background: var(--ink); border: 1px solid var(--ink); color: #fff; cursor: pointer; display: flex; font-size: 10px; font-weight: 700; justify-content: space-between; letter-spacing: .09em; margin-top: 5px; min-height: 50px; padding: 0 18px; text-transform: uppercase; }
.email-dialog form > button:hover { background: #075057; border-color: #075057; }
.email-dialog small { color: var(--muted); display: block; font-size: 9px; line-height: 1.5; margin-top: 18px; }
.contact-actions .credential-email-trigger { align-items: center; background: #fffdf9; border: 1px solid rgba(1,53,58,.22); color: var(--ink); cursor: pointer; display: flex; font-family: Georgia, "Times New Roman", serif; font-size: 20px; justify-content: space-between; padding: 20px 22px; text-align: left; transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; width: 100%; }
.contact-actions .credential-email-trigger:hover { background: var(--ink); border-color: var(--ink); color: #fff; transform: translateY(-3px); }
@media (max-width: 560px) { .email-dialog { padding: 34px 24px 28px; } .email-dialog h2 { font-size: 38px; } }
#contato:target .footer-contact-card { animation: contact-focus 1.2s ease; border-color: #f0bd8e; }
@keyframes contact-focus {
  0% { box-shadow: 0 0 0 0 rgba(240,189,142,.55), 0 14px 34px rgba(0,0,0,.12); }
  45% { box-shadow: 0 0 0 7px rgba(240,189,142,.14), 0 14px 34px rgba(0,0,0,.16); }
  100% { box-shadow: 0 0 0 0 rgba(240,189,142,0), 0 14px 34px rgba(0,0,0,.12); }
}
.footer-label { color: var(--sand-light); display: block; font-size: 10px !important; font-weight: 700; letter-spacing: .14em !important; margin-bottom: 15px; text-transform: uppercase; }
.footer-info p, .footer-info a { color: #d4dfde; display: block; font-size: 12px; letter-spacing: .015em; line-height: 1.75; margin: 0; }
.footer-info a:hover { color: #fff; }
.footer-social { align-items: center; display: flex !important; gap: 9px; justify-content: center; margin-bottom: 6px; }
.footer-social span { font-size: 13px !important; letter-spacing: .01em !important; }
.footer-social svg { fill: var(--sand-light); flex: 0 0 19px; height: 19px; width: 19px; }
.footer-direction { color: var(--sand-light) !important; font-size: 9px !important; font-weight: 700; letter-spacing: .08em !important; margin-top: 10px !important; text-transform: uppercase; }
.footer-map { background: #fff; border: 1px solid rgba(255,255,255,.15); display: grid; grid-template-columns: minmax(280px, .68fr) 1.32fr; height: 270px; overflow: hidden; }
.footer-map iframe { border: 0; filter: grayscale(1) sepia(.15) contrast(.92); height: 100%; width: 100%; }
.footer-map > div { background: var(--paper); color: var(--ink); display: flex; flex-direction: column; justify-content: center; padding: 38px; }
.footer-map > div > span { color: var(--sand); font-size: 8px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.footer-map strong { font-family: Georgia, serif; font-size: 29px; font-weight: 400; line-height: 1.12; margin: 14px 0 10px; }
.footer-map p { color: var(--muted); font-size: 11px; line-height: 1.6; margin: 0 0 23px; }
.footer-map a { border-bottom: 1px solid var(--line); font-size: 8px; font-weight: 700; letter-spacing: .08em; padding-bottom: 7px; text-transform: uppercase; width: fit-content; }
.footer-signature { align-items: center; border-bottom: 1px solid rgba(255,255,255,.14); display: flex; flex-direction: column; padding: 42px 0 34px; }
.footer-identity { align-items: center; display: flex; gap: 12px; margin-top: 2px; text-align: center; }
.footer-identity span { color: #b8c9c7; font-size: 9px; letter-spacing: .09em; text-align: center; }
.footer-identity i { background: var(--sand-light); border-radius: 50%; height: 3px; width: 3px; }
.footer-base { align-items: center; border-top: 1px solid rgba(255,255,255,.14); display: grid; gap: 24px; grid-template-columns: 1fr 1fr auto; margin-top: 26px; padding-top: 24px; }
.footer-base span { color: #9fb3b1; }
.footer-base a { color: var(--sand-light); text-align: right; }

.content-note { color: var(--muted); font-size: 11px; max-width: 260px; }
.content-index-action { display: flex; justify-content: flex-end; margin-top: 38px; }
.content-index-action .inline-link { margin: 0; }
.articles-grid .article-card { background: var(--paper-light); border: 1px solid var(--line); display: flex; flex-direction: column; min-height: 310px; padding: 30px; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.articles-grid .article-card:hover { border-color: var(--sand); box-shadow: 9px 11px 0 rgba(1,53,58,.08); transform: translateY(-5px); }
.articles-grid .article-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: 28px; font-weight: 400; letter-spacing: -.025em; line-height: 1.12; margin: 48px 0 auto; }
.articles-grid .article-card > div { align-items: center; border-top: 1px solid var(--line); display: flex; font-size: 10px; justify-content: space-between; margin-top: 28px; padding-top: 18px; }
.articles-grid .article-card > div > span:last-child { color: var(--sand); font-size: 19px; transition: transform .2s ease; }
.articles-grid .article-card:hover > div > span:last-child { transform: translateX(5px); }

.content-library-page { background: #fffdf9; }
.content-library-hero { background: var(--paper); padding: 100px max(7vw, calc((100vw - 1250px)/2)); }
.content-library-hero h1 { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(54px, 7vw, 100px); font-weight: 400; letter-spacing: -.055em; line-height: .94; margin: 0; max-width: 1050px; }
.content-library-hero > p:last-child { color: var(--muted); font-size: 15px; line-height: 1.75; margin: 32px 0 0; max-width: 700px; }
.content-library-list { padding: 90px 5.4vw 120px; }
.content-library-heading { align-items: center; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; margin-bottom: 42px; padding-bottom: 18px; }
.content-library-heading span { color: var(--sand); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.content-library-heading p { color: var(--muted); font-size: 11px; margin: 0; }
.content-library-page .article-card { background: #f2ede5; }
.content-library-page .article-card:hover { background: #fbf7ef; }

.article-page { background: var(--paper-light); }
.article-hero { background: linear-gradient(120deg, var(--paper-light), var(--paper)); padding: 100px max(7vw, calc((100vw - 1250px)/2)); }
.article-hero h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(52px, 6.4vw, 94px); font-weight: 400; letter-spacing: -.055em; line-height: .96; margin: 0; max-width: 1100px; }
.article-hero > p:not(.eyebrow) { color: var(--muted); font-size: 17px; line-height: 1.75; margin: 34px 0 25px; max-width: 760px; }
.article-hero > span { color: var(--sand); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.article-layout { display: grid; gap: 8vw; grid-template-columns: 230px minmax(0, 760px); justify-content: center; padding: 100px 6vw 130px; }
.article-layout aside { align-self: start; border-top: 1px solid var(--sand); display: flex; flex-direction: column; gap: 36px; padding-top: 18px; position: sticky; top: 130px; }
.article-layout aside span { color: var(--muted); font-family: Georgia, serif; font-size: 19px; line-height: 1.4; }
.article-layout aside a { font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.article-body section { border-top: 1px solid var(--line); margin-bottom: 62px; padding-top: 30px; }
.article-body h2 { font-family: Georgia, serif; font-size: clamp(31px, 3vw, 43px); font-weight: 400; letter-spacing: -.035em; line-height: 1.08; margin: 0 0 25px; }
.article-body p, .article-body li { color: #465958; font-size: 15px; line-height: 1.85; }
.article-body ul { list-style: none; margin: 26px 0 0; padding: 0; }
.article-body li { border-bottom: 1px solid var(--line); padding: 11px 0 11px 24px; position: relative; }
.article-body li::before { color: var(--sand); content: "—"; left: 0; position: absolute; }
.article-body .article-visual-list { display: grid; gap: 10px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.article-body .article-visual-list li { align-items: center; background: #f2ede5; border: 1px solid rgba(1,53,58,.12); display: grid; gap: 12px; grid-template-columns: 24px 1fr; line-height: 1.55; min-height: 72px; padding: 14px 16px; }
.article-body .article-visual-list li::before { display: none; }
.article-body .article-visual-list svg { color: #a86037; height: 21px; width: 21px; }
.article-closing { background: var(--ink); color: #fff; padding: 38px; }
.article-closing p { color: #fff; font-family: Georgia, serif; font-size: 25px; line-height: 1.4; margin: 0 0 24px; }
.article-closing small { color: #c8d5d4; font-size: 9px; line-height: 1.6; }
.article-contact { padding-top: 90px; }

@media (max-width: 980px) {
  .footer-info { grid-template-columns: repeat(3, 1fr); }
  .footer-info > div { min-height: 120px; padding: 0 22px; }
  .footer-info > div:first-child { padding-left: 0; }
  .footer-info > div:last-child { padding-right: 0; }
}

@media (max-width: 700px) {
  .site-footer { padding: 38px 6vw 25px; }
  .footer-top { padding: 0 0 32px; }
  .footer-info { grid-template-columns: 1fr; }
  .footer-info > div, .footer-info > div:first-child, .footer-info > div:last-child { border-bottom: 1px solid rgba(255,255,255,.14); border-right: 0; min-height: 0; padding: 25px 0; }
  .footer-info > div:last-child { border-bottom: 0; }
  .footer-top { scroll-margin-top: 92px; }
  .footer-info > .footer-contact-card { margin: 0; padding: 22px; }
  .footer-identity { flex-wrap: wrap; justify-content: center; }
  .footer-signature { padding: 34px 0 28px; }
  .footer-map { grid-template-columns: 1fr; height: 455px; }
  .footer-map iframe { min-height: 245px; }
  .footer-map > div { padding: 23px; }
  .footer-base { align-items: start; grid-template-columns: 1fr; }
  .footer-base a { text-align: left; }
  .contact-actions { grid-template-columns: 1fr; }
  .article-hero { padding: 72px 6vw; }
  .article-layout { grid-template-columns: 1fr; padding: 65px 6vw 90px; }
  .article-layout aside { position: static; }
  .article-body .article-visual-list { grid-template-columns: 1fr; }
  .article-contact { padding-top: 70px; }
  .content-index-action { justify-content: flex-start; }
  .content-library-hero { padding: 72px 6vw; }
  .content-library-list { padding: 66px 6vw 90px; }
  .content-library-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
}

/* Electoral calendar */
.electoral-calendar { background: var(--paper); padding: 120px 5.4vw; }
.calendar-heading { align-items: end; display: grid; gap: 7vw; grid-template-columns: 1.2fr .8fr; }
.calendar-heading h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(52px, 6vw, 86px); font-weight: 400; letter-spacing: -.05em; line-height: .95; margin: 0; }
.calendar-heading > p { border-left: 1px solid var(--line); color: var(--muted); font-size: 13px; line-height: 1.75; margin: 0; padding-left: 28px; }
.calendar-toolbar { border-bottom: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 8px; margin: 56px 0 0; padding-bottom: 18px; }
.calendar-toolbar button { background: transparent; border: 1px solid var(--line); color: var(--ink); cursor: pointer; font-size: 9px; font-weight: 700; letter-spacing: .1em; padding: 12px 17px; text-transform: uppercase; transition: background .18s ease, border-color .18s ease, color .18s ease; }
.calendar-toolbar button:hover, .calendar-toolbar button.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.calendar-toolbar button:focus-visible { outline: 2px solid var(--sand); outline-offset: 3px; }
.calendar-list { border-top: 1px solid var(--line); margin-top: 34px; }
.calendar-list article { border-bottom: 1px solid var(--line); display: grid; gap: 5vw; grid-template-columns: minmax(150px, .35fr) 1fr; padding: 30px 18px; transition: background .18s ease, padding .18s ease; }
.calendar-list article:hover { background: var(--paper-light); padding-left: 28px; }
.calendar-list time { color: var(--sand); font-family: Georgia, serif; font-size: clamp(25px, 2.7vw, 38px); line-height: 1; text-transform: uppercase; }
.calendar-list article > div > span { color: var(--sand); font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.calendar-list h3 { font-family: Georgia, serif; font-size: clamp(24px, 2.5vw, 34px); font-weight: 400; letter-spacing: -.025em; margin: 9px 0 10px; }
.calendar-list p { color: var(--muted); font-size: 12px; line-height: 1.7; margin: 0; max-width: 760px; }
.calendar-source { align-items: center; background: var(--ink); color: #fff; display: grid; gap: 25px; grid-template-columns: 1fr auto; margin-top: 44px; padding: 30px; }
.calendar-source p { color: #c9d6d5; font-size: 10px; line-height: 1.7; margin: 0; max-width: 680px; }
.calendar-source a { border-bottom: 1px solid var(--sand-light); color: var(--sand-light); font-size: 9px; font-weight: 700; letter-spacing: .08em; padding-bottom: 7px; text-transform: uppercase; }
.calendar-source > span { color: #aebfbd; font-size: 8px; grid-column: 1 / -1; letter-spacing: .08em; }

@media (max-width: 760px) {
  .practice-content-callout { align-items: start; gap: 34px; grid-template-columns: 1fr; padding: 76px 6vw; }
  .practice-content-callout > div:last-child { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 26px; }
  .electoral-calendar { padding: 82px 6vw; }
  .calendar-heading { align-items: start; grid-template-columns: 1fr; }
  .calendar-heading > p { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 22px; }
  .calendar-toolbar { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 16px; }
  .calendar-toolbar button { flex: 0 0 auto; }
  .calendar-list article { gap: 18px; grid-template-columns: 1fr; padding: 26px 0; }
  .calendar-list article:hover { padding-left: 0; }
  .calendar-source { align-items: start; grid-template-columns: 1fr; }
  .calendar-source > span { grid-column: auto; }
}

/* Interactive navigation assistant */
.nav-assistant { bottom: 22px; position: fixed; right: 22px; z-index: 100; }
.assistant-trigger { align-items: center; background: #01353a; border: 1px solid var(--sand); box-shadow: 0 14px 36px rgba(1,53,58,.25); color: #fff; cursor: pointer; display: flex; gap: 10px; min-height: 62px; padding: 6px 13px 6px 7px; transition: transform .2s ease, box-shadow .2s ease; }
.assistant-trigger:hover { box-shadow: 0 18px 42px rgba(1,53,58,.32); transform: translateY(-3px); }
.assistant-trigger:focus-visible { outline: 2px solid var(--sand-light); outline-offset: 3px; }
.assistant-trigger img { background: var(--paper); border: 1px solid rgba(217,160,109,.7); border-radius: 50%; height: 48px; object-fit: contain; object-position: center bottom; width: 48px; }
.assistant-trigger span { font-family: Georgia, serif; font-size: 16px; white-space: nowrap; }
.assistant-trigger i { align-items: center; border-left: 1px solid rgba(255,255,255,.18); color: var(--sand-light); display: flex; font-style: normal; font-size: 21px; height: 30px; justify-content: center; margin-left: 3px; padding-left: 11px; }
.assistant-panel { animation: assistant-in .24s cubic-bezier(.2,.8,.2,1) both; background: #fffdf9; border: 1px solid var(--sand); bottom: 76px; box-shadow: 0 25px 70px rgba(1,53,58,.27); display: flex; flex-direction: column; max-height: min(660px, calc(100vh - 120px)); position: absolute; right: 0; width: min(400px, calc(100vw - 30px)); }
.assistant-panel[hidden] { display: none; }
@keyframes assistant-in { from { opacity:0; transform:translateY(12px) scale(.98); } to { opacity:1; transform:translateY(0) scale(1); } }
.assistant-panel > header { align-items: center; background: #01353a; color: #fff; display: grid; gap: 12px; grid-template-columns: 48px 1fr auto; padding: 15px; }
.assistant-mini-avatar { align-items: flex-end; background: var(--paper); border: 1px solid var(--sand); border-radius: 50%; display: flex; height: 48px; justify-content: center; overflow: hidden; width: 48px; }
.assistant-mini-avatar img { height: 47px; object-fit: contain; object-position: center bottom; width: 47px; }
.assistant-panel > header > div:nth-child(2) { display: flex; flex-direction: column; gap: 3px; }
.assistant-panel > header strong { font-family: Georgia, serif; font-size: 18px; font-weight: 400; }
.assistant-panel > header span { color: #c8d6d4; font-size: 9px; letter-spacing: .03em; }
.assistant-panel > header button { background: transparent; border: 0; color: var(--sand-light); cursor: pointer; font-size: 26px; padding: 5px; }
.assistant-body { overflow-y: auto; padding: 20px; }
.assistant-body > p { color: var(--muted); font-size: 13px; line-height: 1.65; margin: 0 0 17px; }
.assistant-body > label { align-items: center; border: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr auto; min-height: 48px; padding: 0 12px; transition: border-color .18s ease; }
.assistant-body > label:focus-within { border-color: var(--sand); }
.search-icon { color: var(--sand); font-size: 22px; margin-right: 8px; }
.assistant-body input { background: transparent; border: 0; color: var(--ink); font-family: Arial, sans-serif; font-size: 13px; height: 46px; min-width: 0; outline: none; }
.assistant-body > label button { background: transparent; border: 0; color: var(--muted); cursor: pointer; font-size: 20px; }
.assistant-quick { display: grid; gap: 7px; grid-template-columns: 1fr 1fr; margin-top: 16px; }
.assistant-quick button { align-items: center; background: var(--paper); border: 1px solid var(--line); color: var(--ink); cursor: pointer; display: flex; font-size: 11px; justify-content: space-between; line-height: 1.4; min-height: 58px; padding: 13px; text-align: left; transition: background .18s ease, color .18s ease; }
.assistant-quick button span { color: var(--sand); font-size: 18px; }
.assistant-quick button:hover { background: var(--ink); color: #fff; }
.assistant-quick[hidden] { display: none; }
.assistant-quick .whatsapp-quick { background: #128c7e; border-color: #128c7e; color: #fff; font-weight: 700; }
.assistant-quick .whatsapp-quick span { color: #fff; }
.assistant-quick .whatsapp-quick svg { height: 19px; width: 19px; }
.assistant-quick .whatsapp-quick:hover { background: #0f7469; border-color: #0f7469; }
.assistant-results { border-top: 1px solid var(--line); margin-top: 16px; }
.assistant-results > a { border-bottom: 1px solid var(--line); display: grid; gap: 5px 15px; grid-template-columns: 1fr auto; padding: 14px 5px; transition: padding .18s ease; }
.assistant-results > a:hover { padding-left: 12px; }
.assistant-results > a strong { font-family: Georgia, serif; font-size: 19px; font-weight: 400; }
.assistant-results > a span { color: var(--muted); font-size: 11px; grid-column: 1; line-height: 1.55; }
.assistant-results > a i { color: var(--sand); font-style: normal; grid-column: 2; grid-row: 1 / 3; }
.assistant-empty { padding: 22px 4px 8px; }
.assistant-empty strong { font-family: Georgia, serif; font-size: 18px; font-weight: 400; }
.assistant-empty p { color: var(--muted); font-size: 11px; line-height: 1.65; }
.assistant-empty a { color: var(--sand); font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.assistant-panel > footer { background: var(--paper); border-top: 1px solid var(--line); color: var(--muted); display: block; font-size: 7px; letter-spacing: .1em; min-height: 0; padding: 10px 20px; text-align: left; text-transform: uppercase; }

@media (max-width: 600px) {
  .nav-assistant { bottom: 14px; right: 14px; }
  .assistant-trigger { border-radius: 50%; height: 62px; padding: 6px; width: 62px; }
  .assistant-trigger img { height: 48px; width: 48px; }
  .assistant-trigger span, .assistant-trigger i { display: none; }
  .assistant-panel { bottom: 72px; max-height: calc(100vh - 105px); position: fixed; right: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .assistant-panel { animation: none; }
}

/* Client portal */
.desktop-nav .client-nav-link { border: 1px solid rgba(217,160,109,.65); color: var(--sand-light); padding: 11px 15px; }
.desktop-nav .client-nav-link::after { display: none; }
.desktop-nav .client-nav-link:hover, .desktop-nav .client-nav-link.active { background: var(--sand); border-color: var(--sand); color: #fff; }
.site-header .desktop-nav { gap: 8px; }
.site-header .desktop-nav { justify-content: flex-end; }
.site-header .desktop-nav a { border: 1px solid rgba(255,255,255,.24); color: #f3f7f6; font-size: 9px; font-weight: 700; letter-spacing: .055em; padding: 11px 13px; text-transform: uppercase; transition: background .18s ease, border-color .18s ease, color .18s ease; }
.site-header .desktop-nav a::after { display: none; }
.site-header .desktop-nav a:hover, .site-header .desktop-nav a:focus-visible { background: rgba(255,255,255,.1); border-color: var(--sand-light); color: #fff; }
.site-header .desktop-nav .client-nav-link { background: var(--sand); border-color: var(--sand); color: #fff; }
.site-header .desktop-nav .client-nav-link:hover, .site-header .desktop-nav .client-nav-link:focus-visible { background: #d08a52; border-color: #d08a52; }
.site-header .desktop-nav .contact-nav-link { background: rgba(217,160,109,.13); border-color: var(--sand-light); color: #fff; }
.site-header .desktop-nav .contact-nav-link:hover, .site-header .desktop-nav .contact-nav-link:focus-visible { background: var(--sand); border-color: var(--sand); }
.site-header .desktop-nav .home-nav-link { border-color: rgba(255,255,255,.42); }
.mobile-menu .contact-nav-link { color: var(--sand-light); font-weight: 800; }
.mobile-menu .home-nav-link { color: #fff; font-weight: 800; }
.site-header .mobile-menu nav { background: #fffdf9; border-color: rgba(1,53,58,.2); box-shadow: 0 18px 42px rgba(0,25,28,.24); }
.site-header .mobile-menu nav a,
.site-header .mobile-menu nav a.home-nav-link { color: var(--ink); font-weight: 700; }
.site-header .mobile-menu nav a:hover,
.site-header .mobile-menu nav a:focus-visible { background: #f2ede5; color: var(--ink); outline: none; }
.site-header .mobile-menu nav a.contact-nav-link { background: var(--sand); border-bottom-color: var(--sand); color: #fff; margin-top: 5px; }
.site-header .mobile-menu nav a.contact-nav-link:hover,
.site-header .mobile-menu nav a.contact-nav-link:focus-visible { background: #a86037; color: #fff; }
.site-header .header-contact { border: 1px solid rgba(217,160,109,.65); color: var(--sand-light); font-size: 9px; font-weight: 700; letter-spacing: .055em; padding: 11px 13px; text-transform: uppercase; }
.client-hero { background: linear-gradient(120deg, var(--paper-light), var(--paper)); display: grid; gap: 8vw; grid-template-columns: 1.15fr .85fr; min-height: 650px; padding: 90px 5.4vw; }
.client-hero > div { align-self: center; max-width: 820px; }
.client-hero h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(58px, 6vw, 92px); font-weight: 400; letter-spacing: -.055em; line-height: .94; margin: 0; }
.client-hero h1 em { color: var(--sand); display: block; font-weight: 400; }
.client-hero > div > p:not(.eyebrow) { color: var(--muted); font-size: 16px; line-height: 1.75; margin: 32px 0 0; max-width: 680px; }
.client-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 25px; margin-top: 38px; }
.client-actions > a { align-items: center; border-bottom: 1px solid var(--line); display: inline-flex; font-size: 10px; font-weight: 700; gap: 25px; letter-spacing: .08em; padding-bottom: 8px; text-transform: uppercase; }
.client-coming { background: var(--ink); color: #fff; font-size: 9px; font-weight: 700; letter-spacing: .11em; padding: 18px 22px; text-transform: uppercase; }
.client-hero aside { align-self: stretch; background: var(--ink); color: #fff; display: flex; flex-direction: column; justify-content: space-between; min-height: 470px; overflow: hidden; padding: 38px; position: relative; }
.client-hero aside::after { border: 1px solid rgba(217,160,109,.7); border-radius: 50%; content: ""; height: 330px; position: absolute; right: -145px; top: 70px; width: 330px; }
.client-hero aside > span { color: var(--sand-light); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.client-hero aside strong { font-family: Georgia, serif; font-size: clamp(36px, 3.5vw, 52px); font-weight: 400; line-height: 1.02; max-width: 380px; position: relative; z-index: 1; }
.client-hero aside p { color: #c9d6d5; font-size: 12px; line-height: 1.7; margin: 0; max-width: 330px; position: relative; z-index: 1; }
.client-resources { background: var(--paper-light); padding: 120px 5.4vw; }
.client-resource-grid { border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4,1fr); }
.client-resource-grid article { border-right: 1px solid var(--line); min-height: 280px; padding: 27px; position: relative; transition: background .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease; }
.client-resource-grid article:last-child { border-right: 0; }
.client-resource-grid article:hover { background: #fff9ef; box-shadow: 8px 10px 0 rgba(1,53,58,.1); outline: 1px solid var(--sand); outline-offset: -1px; transform: translateY(-6px); z-index: 2; }
.client-resource-grid span { color: var(--sand); display: inline-block; font-family: Georgia, serif; font-size: 29px; transition: color .2s ease, transform .2s ease; }
.client-resource-grid article:hover span { color: #a86037; transform: translateX(5px); }
.client-resource-grid h3 { font-family: Georgia, serif; font-size: 26px; font-weight: 400; margin: 72px 0 15px; }
.client-resource-grid p { color: var(--muted); font-size: 12px; line-height: 1.7; margin: 0; }
.client-security { background: var(--ink); color: #fff; display: grid; gap: 9vw; grid-template-columns: 180px 1fr; padding: 100px 5.4vw; }
.client-security h2 { font-family: Georgia, serif; font-size: clamp(44px, 5vw, 72px); font-weight: 400; letter-spacing: -.045em; line-height: .98; margin: 0; max-width: 850px; }
.client-security div > p { color: #c9d6d5; font-size: 13px; line-height: 1.75; margin: 30px 0 0; max-width: 670px; }

@media (max-width: 1120px) {
  .site-header { gap: 20px; grid-template-columns: 1fr auto; }
  .site-header .desktop-nav, .site-header .header-contact { display: none; }
  .site-header .mobile-menu { display: block; }
  .quick-areas { scroll-margin-top: 92px; }
  .client-resource-grid { grid-template-columns: repeat(2,1fr); }
  .client-resource-grid article:nth-child(2) { border-right: 0; }
}

@media (max-width: 760px) {
  .client-hero { grid-template-columns: 1fr; min-height: 0; padding: 70px 6vw 50px; }
  .client-hero h1 { font-size: clamp(50px, 15vw, 68px); }
  .client-hero aside { min-height: 400px; padding: 28px; }
  .client-resources { padding: 82px 6vw; }
  .client-resource-grid { grid-template-columns: 1fr; }
  .client-resource-grid article, .client-resource-grid article:nth-child(2) { border-bottom: 1px solid var(--line); border-right: 0; min-height: 230px; }
  .client-resource-grid h3 { margin-top: 45px; }
  .client-security { grid-template-columns: 1fr; padding: 75px 6vw; }
}

@media (max-width: 470px) {
  .quick-area-grid { grid-template-columns: 1fr; }
  .quick-area-card { min-height: 170px; }
}

/* Institutional portrait */
.intro-section { gap: 5vw; grid-template-columns: 150px minmax(0, 1fr) minmax(300px, .58fr); }
.administrator-profile { align-self: stretch; margin: 0; min-width: 0; position: relative; }
.administrator-profile::before { border-right: 1px solid var(--sand); border-top: 1px solid var(--sand); content: ""; height: 64px; pointer-events: none; position: absolute; right: -18px; top: -18px; width: 64px; }
.administrator-photo { background: #f5f0e7; border: 1px solid var(--sand); box-shadow: 12px 12px 0 var(--ink); height: min(540px, 43vw); min-height: 440px; overflow: hidden; padding: 8px; position: relative; }
.administrator-photo::after { background: linear-gradient(180deg, transparent 58%, rgba(1,39,42,.7)); content: ""; inset: 8px; pointer-events: none; position: absolute; }
.administrator-photo img { display: block; height: 100%; object-fit: cover; object-position: 52% center; pointer-events: none; user-select: none; width: 100%; }
.administrator-photo > span { bottom: 26px; color: rgba(255,255,255,.72); font-size: 7px; font-weight: 700; letter-spacing: .18em; pointer-events: none; position: absolute; right: 26px; text-transform: uppercase; z-index: 2; }
.administrator-profile figcaption { border-left: 3px solid var(--sand); padding: 20px 0 0 20px; }
.administrator-profile figcaption > span { color: var(--sand); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.administrator-profile figcaption p { color: var(--muted); font-size: 11px; line-height: 1.65; margin: 10px 0 0; }

@media (max-width: 1100px) {
  .intro-section { grid-template-columns: 140px minmax(0, 1fr); }
  .administrator-profile { grid-column: 2; max-width: 620px; }
  .administrator-photo { height: 540px; }
}

@media (max-width: 760px) {
  .intro-section { grid-template-columns: 1fr; }
  .administrator-profile { grid-column: auto; }
  .administrator-photo { height: min(118vw, 560px); min-height: 390px; }
  .administrator-profile::before { right: -8px; top: -12px; }
  .administrator-photo { box-shadow: 7px 7px 0 var(--ink); }
}

/* Green homepage comparison */
.green-home-preview { background: var(--ink); }
.green-home-preview .editorial-hero { background: linear-gradient(125deg, #01353a 0%, #06474a 68%, #0b5354 100%); color: #fff; }
.green-home-preview .editorial-hero-copy h1 em { color: var(--sand-light); }
.green-home-preview .editorial-hero-copy > p:not(.eyebrow) { color: #d4dfdd; }
.green-home-preview .hero-geometry::before { background: rgba(0,29,32,.48); }
.green-home-preview .geo-circle,
.green-home-preview .geo-arch { border-color: rgba(217,160,109,.75); }
.green-home-preview .geo-line { background: rgba(217,160,109,.65); }
.green-home-preview .geo-letter { -webkit-text-stroke-color: rgba(217,160,109,.72); }
.green-home-preview .button-text { color: #fff; }
.green-home-preview .editorial-hero-copy .eyebrow { color: #efbd8f; }
.green-home-preview .editorial-hero .button-primary { color: #fff; }
.green-home-preview .quick-areas { background: #01353a; border-bottom-color: rgba(255,255,255,.12); }
.green-home-preview .quick-areas-heading .section-kicker,
.green-home-preview .quick-areas-heading > a { color: #fff; }
.green-home-preview .quick-areas-title { color: var(--sand-light); }
.green-home-preview .quick-areas-heading > a { border-bottom-color: rgba(255,255,255,.32); }
.green-home-preview .quick-area-card { background: #fffdf9; }
.green-home-preview .quick-areas-note { color: #d4dfdd; font-size: 10px; letter-spacing: .055em; line-height: 1.5; text-align: right; }
.green-home-preview .intro-section { background: #fffdf9; color: var(--ink); }
.green-home-preview .intro-section .section-number { color: #879896; }
.green-home-preview .administrator-profile figcaption p { color: #536563; }

/* Typography and cards for the green direction */
.green-home-preview .editorial-hero-copy { max-width: 760px; }
.green-home-preview .editorial-hero-copy h1 { color: #fffdf9; font-size: clamp(52px, 5.1vw, 82px); font-weight: 400; letter-spacing: -.048em; line-height: .97; max-width: 720px; text-wrap: balance; }
.green-home-preview .editorial-hero-copy h1 em { font-style: italic; font-weight: 400; }
.green-home-preview .editorial-hero-copy > p:not(.eyebrow) { font-size: 16px; letter-spacing: .005em; line-height: 1.72; max-width: 560px; }
.green-home-preview .quick-area-grid { gap: 12px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.green-home-preview .quick-area-card { background: linear-gradient(145deg, rgba(11,78,80,.94), rgba(1,47,51,.98)); border-color: rgba(217,160,109,.5); color: #fff; min-height: 220px; padding: 22px; }
.green-home-preview .quick-area-card:nth-child(2n) { background: linear-gradient(145deg, #0b5657, #064144); }
.green-home-preview .quick-area-card:nth-child(7),
.green-home-preview .quick-area-card:nth-child(8) { background: linear-gradient(125deg, #164f50, #07383c); }
.green-home-preview .quick-area-card::before { background: linear-gradient(90deg, var(--sand), transparent); content: ""; height: 1px; left: 22px; opacity: .7; position: absolute; right: 22px; top: 54px; }
.green-home-preview .quick-area-card:hover,
.green-home-preview .quick-area-card:focus-visible { background: linear-gradient(145deg, #a86037, #c17b49); border-color: var(--sand-light); box-shadow: 8px 10px 0 rgba(0,25,28,.38); }
.green-home-preview .quick-area-card h2 { color: #fffdf9; font-size: clamp(24px, 2vw, 32px); letter-spacing: -.025em; line-height: 1.05; }
.green-home-preview .quick-number { color: var(--sand-light); }
.green-home-preview .quick-mark { border-color: rgba(217,160,109,.78); color: var(--sand-light); }
.green-home-preview .quick-arrow { color: var(--sand-light); }
.green-home-preview .quick-area-card:hover .quick-number,
.green-home-preview .quick-area-card:hover .quick-mark,
.green-home-preview .quick-area-card:hover .quick-arrow,
.green-home-preview .quick-area-card:focus-visible .quick-number,
.green-home-preview .quick-area-card:focus-visible .quick-mark,
.green-home-preview .quick-area-card:focus-visible .quick-arrow { border-color: #fff; color: #fff; }

@media (max-width: 760px) {
  .green-home-preview .editorial-hero-copy h1 { font-size: clamp(48px, 14vw, 68px); }
  .green-home-preview .quick-area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .green-home-preview .quick-areas-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
  .green-home-preview .quick-areas-note { text-align: left; }
}

@media (max-width: 470px) {
  .green-home-preview .quick-area-grid { grid-template-columns: 1fr; }
}

/* Unified institutional presentation */
.green-home-preview .method-section { background: #fffdf9; border-top: 1px solid rgba(1,53,58,.1); padding-top: 100px; }
.green-home-preview .steps-grid { border-top: 0; gap: 12px; }
.green-home-preview .steps-grid article { background: #f2ede5; border: 1px solid #d9cfc2; color: var(--ink); position: relative; transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.green-home-preview .steps-grid article:nth-child(2n) { background: #eee7dc; }
.green-home-preview .steps-grid article::before { background: linear-gradient(90deg, var(--sand), transparent); content: ""; height: 1px; left: 26px; opacity: .7; position: absolute; right: 26px; top: 68px; }
.green-home-preview .steps-grid article:hover { background: #fff9ef; border-color: var(--sand); box-shadow: 8px 10px 0 rgba(1,53,58,.1); transform: translateY(-5px); }
.green-home-preview .steps-grid span { color: var(--sand); }
.green-home-preview .steps-grid h3 { color: var(--ink); }
.green-home-preview .steps-grid p { color: var(--muted); }
.green-home-preview .steps-grid article:hover span,
.green-home-preview .steps-grid article:hover p { color: var(--ink); }

.green-home-preview .content-section { background: #fffdf9; }
.green-home-preview .articles-grid { gap: 12px; }
.green-home-preview .articles-grid .article-card,
.green-home-preview .articles-grid .article-card:nth-child(2) { background: #f2ede5; border-color: rgba(1,53,58,.16); color: var(--ink); transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.green-home-preview .articles-grid .article-card:hover { background: #fbf7ef; border-color: var(--sand); box-shadow: 8px 10px 0 rgba(1,53,58,.09); transform: translateY(-5px); }
.green-home-preview .articles-grid .article-card h3 { color: var(--ink); }
.green-home-preview .articles-grid .article-category { color: #a86037; }
.green-home-preview .articles-grid .article-card > div { border-top-color: rgba(1,53,58,.14); color: var(--muted); }
.green-home-preview .articles-grid .article-card > div > span:last-child { color: #a86037; }
.green-home-preview .articles-grid .article-card:hover .article-category,
.green-home-preview .articles-grid .article-card:hover > div,
.green-home-preview .articles-grid .article-card:hover > div > span:last-child { color: var(--ink); }

@media (max-width: 760px) {
  .green-home-preview .steps-grid,
  .green-home-preview .articles-grid { gap: 10px; }
}

/* Rotating practice feature */
.featured-rotation { min-height: 680px; }
.featured-copy { animation: featuredFade .42s ease both; display: flex; flex-direction: column; }
.featured-copy h2 { text-wrap: balance; }
.featured-copy > p:not(.section-kicker) { font-size: 15px; max-width: 610px; }
.featured-controls { align-items: center; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 48px; }
.featured-controls button { background: transparent; border: 1px solid rgba(255,255,255,.25); color: #cbd8d6; cursor: pointer; height: 38px; padding: 0; transition: background .18s ease, border-color .18s ease, color .18s ease, width .18s ease; width: 38px; }
.featured-controls button span { font-size: 8px; font-weight: 700; letter-spacing: .08em; }
.featured-controls button:hover,
.featured-controls button:focus-visible { border-color: var(--sand-light); color: #fff; outline: none; }
.featured-controls button.active { background: var(--sand); border-color: var(--sand); color: #fff; width: 58px; }
.featured-area-panel { animation: featuredFade .42s ease both; background: linear-gradient(145deg, #fffdf9, #eee6d9); color: var(--ink); display: flex; flex-direction: column; justify-content: space-between; min-height: 470px; overflow: hidden; padding: 44px; position: relative; }
.featured-area-panel::after { border: 1px solid rgba(191,122,67,.35); border-radius: 50%; content: ""; height: 310px; position: absolute; right: -145px; top: -120px; width: 310px; }
.featured-symbol { color: rgba(1,53,58,.065); font-family: Georgia, serif; font-size: clamp(190px, 20vw, 320px); line-height: .75; pointer-events: none; position: absolute; right: 16px; top: 45px; }
.featured-area-panel .panel-label { color: var(--sand); position: relative; z-index: 2; }
.featured-area-panel > div { max-width: 420px; position: relative; z-index: 2; }
.featured-area-panel small { color: #a86037; display: block; font-size: 11px; font-weight: 700; letter-spacing: .12em; line-height: 1.3; text-transform: uppercase; }
.featured-area-panel h3 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 3.8vw, 54px); font-weight: 400; letter-spacing: -.04em; line-height: 1.02; margin: 16px 0 24px; }
.featured-area-panel p:not(.panel-label) { color: var(--muted); font-size: 12px; line-height: 1.7; margin: 0; }
.featured-area-panel > a { align-items: center; border-top: 1px solid var(--line); display: flex; font-size: 9px; font-weight: 700; justify-content: space-between; letter-spacing: .09em; padding-top: 18px; position: relative; text-transform: uppercase; z-index: 2; }

@keyframes featuredFade {
  from { opacity: .35; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 760px) {
  .featured-rotation { min-height: 0; }
  .featured-controls { margin-top: 34px; }
  .featured-area-panel { min-height: 440px; padding: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  .featured-copy,
  .featured-area-panel { animation: none; }
  .client-resource-grid article,
  .client-resource-grid span { transition: none; }
  .client-resource-grid article:hover,
  .client-resource-grid article:hover span { transform: none; }
}
