/* ════════════════════════════════════════════════════
   PIMENTA JUDICE — WEBSITE
   Cobre + Preto + Branco · Playfair Display + Archivo
══════════════════════════════════════════════════════ */

:root {
  /* ── COPPER ── */
  --cu:      #C9A574;
  --cu-dk:   #A8844E;
  --cu-lt:   #E8D09A;
  --cu-dim:  rgba(201,165,116,.12);
  --cu-glow: rgba(201,165,116,.06);

  /* ── DARKS ── */
  --bg:      #0a0a0a;
  --card:    #111111;
  --surf:    #1a1a18;
  --surf2:   #1d1d1b;
  --border:  #272725;
  --border2: #333331;

  /* ── WHITES ── */
  --white:   #ffffff;
  --warm:    #f5f0e8;
  --muted:   rgba(255,255,255,.62);
  --dim:     rgba(255,255,255,.38);
  --ghost:   rgba(255,255,255,.10);

  /* ── TYPE ── */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Archivo', system-ui, -apple-system, sans-serif;

  /* ── SPACING ── */
  --sp1: 8px; --sp2: 16px; --sp3: 24px; --sp4: 32px;
  --sp5: 40px; --sp6: 48px; --sp8: 64px; --sp10: 80px;
  --sp12: 96px; --sp16: 128px; --sp20: 160px;

  /* ── RADIUS ── */
  --r1: 6px; --r2: 10px; --r3: 14px; --r4: 20px; --r5: 100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: rgba(201,165,116,.35); color: var(--white); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--cu-dk); }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }

/* ════════ LAYOUT ════════ */
.wrap         { max-width: 1240px; margin: 0 auto; padding: 0 var(--sp6); }
.wrap-narrow  { max-width: 880px;  margin: 0 auto; padding: 0 var(--sp6); }
@media (max-width: 720px) {
  .wrap, .wrap-narrow { padding: 0 var(--sp3); }
}

/* ════════ TYPOGRAPHY ════════ */
.kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cu);
  margin-bottom: var(--sp4);
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(201,165,116,.3);
}
.kicker-cu { color: var(--cu-lt); }

.editorial {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(40px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: var(--sp5);
  text-wrap: balance;
}
.editorial em {
  font-style: italic;
  color: var(--cu);
  font-weight: 700;
}
.editorial-xl { font-size: clamp(56px, 11vw, 160px); }

.section-head { margin-bottom: var(--sp10); max-width: 760px; }
.section-lead {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  color: var(--muted);
  text-wrap: pretty;
  max-width: 580px;
}

/* ════════ NAV ════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0; z-index: 100;
  display: flex;
  align-items: center;
  gap: var(--sp6);
  padding: 18px var(--sp6);
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, padding 0.3s;
}
#nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: var(--border);
  padding: 12px var(--sp6);
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
}
.nav-logo {
  height: 64px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}
.footer-logo {
  height: 56px;
  width: auto;
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-logo:hover { opacity: 1; }
.nav-brand:hover .nav-logo { opacity: 0.8; }
.brand-pimenta {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.brand-judice {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--white);
}
.nav-links {
  display: flex;
  gap: var(--sp5);
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--cu); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -6px;
  height: 1px;
  background: var(--cu);
  transition: right 0.3s ease;
}
.nav-links a:hover::after { right: 0; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--r5);
  background: transparent;
  border: 1px solid var(--cu);
  color: var(--cu);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--cu); color: #0a0a0a; }
@media (max-width: 920px) {
  .nav-links { display: none; }
  #nav { padding: 14px var(--sp3); }
}

/* ════════ BUTTONS ════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--r5);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary   { background: var(--cu); color: #0a0a0a; }
.btn-primary:hover { background: var(--cu-lt); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--cu); border-color: var(--cu); }
.btn-secondary:hover { background: var(--cu-dim); }
.btn-ghost     { background: transparent; color: var(--white); border-color: var(--border2); }
.btn-ghost:hover { border-color: var(--cu); color: var(--cu); }

/* ════════════════════════════════════════════════════
   01 — HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: auto;
  padding: 130px var(--sp6) var(--sp10);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background:
    radial-gradient(ellipse 80% 60% at 18% 75%, rgba(201,165,116,.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 82% 20%, rgba(201,165,116,.06), transparent 65%),
    var(--bg);
  overflow: hidden;
}
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.78 0 0 0 0 0.65 0 0 0 0 0.45 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5;
  mix-blend-mode: overlay;
}
.hero-glow {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,165,116,.10), transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}
.hero-grain, .hero-glow { position: absolute !important; z-index: 0 !important; }
.hero > *:not(.hero-grain):not(.hero-glow):not(.hero-scroll) { position: relative; z-index: 1; }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: var(--sp6);
  flex-wrap: wrap;
}
.hero-meta .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cu);
  box-shadow: 0 0 12px var(--cu);
  animation: pulse 2s infinite;
}
.hero-meta .sep { opacity: 0.5; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

.hero-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(56px, 11vw, 160px);
  line-height: 0.92;
  letter-spacing: -3px;
  color: var(--white);
  margin-bottom: var(--sp4);
}
.hero-title .line {
  display: block;
  opacity: 1;
  transform: none;
  animation: rise 0.9s cubic-bezier(.2,.7,.2,1) backwards;
}
.hero-title .line-1 { animation-delay: 0.1s; }
.hero-title .line-2 { animation-delay: 0.25s; padding-left: clamp(24px, 5vw, 70px); }
.hero-title em { font-style: italic; color: var(--cu); font-weight: 700; }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.65;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: var(--sp5);
  text-wrap: pretty;
  animation: rise 0.9s 0.4s cubic-bezier(.2,.7,.2,1) backwards;
}

.hero-actions {
  display: flex;
  gap: var(--sp2);
  margin-bottom: var(--sp6);
  flex-wrap: wrap;
  animation: rise 0.9s 0.55s cubic-bezier(.2,.7,.2,1) backwards;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp4);
  padding-top: var(--sp4);
  border-top: 1px solid var(--border);
  max-width: 900px;
  animation: rise 0.9s 0.7s cubic-bezier(.2,.7,.2,1) backwards;
}
@media (max-width: 720px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: var(--sp4); }
}
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--white);
}
.stat-num sup {
  font-size: 0.5em;
  color: var(--cu);
  vertical-align: super;
}
.stat-lbl {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--dim);
}

.hero-scroll {
  position: absolute;
  bottom: var(--sp5);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dim);
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--cu), transparent);
  animation: scrollLine 2s infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); }
  50%  { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ════════════════════════════════════════════════════
   02 — MANIFESTO
══════════════════════════════════════════════════════ */
.manifesto {
  padding: var(--sp20) 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp10);
  align-items: start;
}
@media (max-width: 920px) {
  .manifesto-grid { grid-template-columns: 1fr; gap: var(--sp8); }
}
.manifesto-text .lead {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  color: var(--white);
  margin-bottom: var(--sp4);
  text-wrap: pretty;
}
.manifesto-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: var(--sp4);
}
.manifesto-text .aside {
  position: relative;
  padding: var(--sp4) var(--sp4) var(--sp4) var(--sp5);
  background: linear-gradient(135deg, rgba(201,165,116,.04), transparent);
  border-left: 1px solid var(--cu);
  border-radius: 0 var(--r2) var(--r2) 0;
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
}
.aside-mark {
  display: inline-block;
  margin-right: 6px;
  color: var(--cu);
  font-style: normal;
  font-weight: 700;
}

.manifesto-side {
  display: flex;
  flex-direction: column;
  gap: var(--sp2);
}
.diff-card {
  position: relative;
  padding: var(--sp4) var(--sp4);
  background: linear-gradient(145deg, var(--card), var(--surf));
  border: 1px solid var(--border);
  border-radius: var(--r3);
  transition: transform 0.3s, border-color 0.3s;
}
.diff-card:hover {
  transform: translateX(4px);
  border-color: rgba(201,165,116,.35);
}
.diff-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--cu);
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.diff-card h4 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--white);
  margin-bottom: 6px;
}
.diff-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

/* ════════════════════════════════════════════════════
   PULL QUOTE
══════════════════════════════════════════════════════ */
.pull-quote {
  padding: var(--sp16) 0;
  background:
    radial-gradient(ellipse at center, rgba(201,165,116,.06), transparent 60%),
    var(--bg);
  text-align: center;
  border-top: 1px solid var(--border);
}
.quote-mark {
  font-family: var(--serif);
  font-size: 140px;
  line-height: 0.6;
  color: var(--cu);
  display: block;
  margin-bottom: var(--sp3);
  font-weight: 900;
}
.pull-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3.2vw, 38px);
  line-height: 1.4;
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--sp6);
  letter-spacing: -0.5px;
  text-wrap: balance;
}
.pull-quote blockquote em {
  color: var(--cu);
  font-weight: 700;
}
.quote-attr {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-top: var(--sp4);
  border-top: 1px solid var(--border);
}
.attr-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cu-dk), var(--cu));
  color: #0a0a0a;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-attr strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.2px;
}
.quote-attr span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cu);
  margin-top: 2px;
}

/* ════════════════════════════════════════════════════
   03 — ATUAÇÃO
══════════════════════════════════════════════════════ */
.atuacao {
  padding: var(--sp20) 0;
  border-top: 1px solid var(--border);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r3);
  overflow: hidden;
}
@media (max-width: 920px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .areas-grid { grid-template-columns: 1fr; } }

.area {
  background: var(--bg);
  padding: var(--sp6) var(--sp5);
  position: relative;
  transition: background 0.4s;
  cursor: default;
}
.area:hover { background: var(--surf); }
.area::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--cu);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.area:hover::after { transform: scaleX(1); }
.area-featured { background: linear-gradient(145deg, rgba(201,165,116,.08), transparent); }
.area-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--cu);
  margin-bottom: var(--sp3);
  letter-spacing: 1px;
}
.area h3 {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: var(--sp2);
  text-wrap: balance;
}
.area p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: var(--sp3);
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}
.area-tags li {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r5);
  background: var(--cu-dim);
  color: var(--cu);
  border: 1px solid rgba(201,165,116,.2);
}

/* GCS card */
.gcs {
  margin-top: var(--sp10);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp10);
  padding: var(--sp10) var(--sp8);
  background: linear-gradient(145deg, #131210, #1c1a14);
  border: 2px solid var(--cu);
  border-radius: var(--r4);
  position: relative;
  overflow: hidden;
}
@media (max-width: 920px) {
  .gcs { grid-template-columns: 1fr; gap: var(--sp6); padding: var(--sp6) var(--sp4); }
}
.gcs::before {
  content: '';
  position: absolute;
  bottom: -150px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,165,116,.1), transparent 60%);
}
.gcs > * { position: relative; }
.gcs-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: var(--sp4);
}
.gcs-title em { font-style: italic; color: var(--cu); }
.gcs-left p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: var(--sp5);
  max-width: 440px;
}
.gcs-right {
  display: flex;
  flex-direction: column;
  gap: var(--sp4);
  justify-content: center;
}
.gcs-stat {
  padding: var(--sp3) 0;
  border-top: 1px solid rgba(201,165,116,.2);
  display: flex;
  align-items: baseline;
  gap: var(--sp3);
}
.gcs-stat:first-child { border-top: none; padding-top: 0; }
.gcs-num {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  line-height: 1;
  color: var(--cu);
  letter-spacing: -1px;
  flex-shrink: 0;
  min-width: 100px;
}
.gcs-lbl {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════
   04 — PROCESSO
══════════════════════════════════════════════════════ */
.processo {
  padding: var(--sp20) 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg), #0c0c0a);
}
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp4);
  counter-reset: step;
}
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: var(--sp6) var(--sp5);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r3);
  transition: all 0.3s;
}
.step:hover {
  border-color: rgba(201,165,116,.35);
  transform: translateY(-4px);
}
.step-num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 900;
  font-style: italic;
  line-height: 0.9;
  color: rgba(201,165,116,.18);
  margin-bottom: var(--sp4);
  letter-spacing: -2px;
}
.step h4 {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: var(--sp2);
}
.step p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: var(--sp4);
}
.step-time {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cu);
  padding: 4px 10px;
  background: var(--cu-dim);
  border-radius: var(--r5);
  border: 1px solid rgba(201,165,116,.2);
}

/* ════════════════════════════════════════════════════
   05 — HISTÓRIA
══════════════════════════════════════════════════════ */
.historia {
  padding: var(--sp20) 0;
  border-top: 1px solid var(--border);
}
.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp10);
  margin-bottom: var(--sp10);
}
@media (max-width: 920px) { .historia-grid { grid-template-columns: 1fr; } }
.historia-text .lead {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  color: var(--white);
  margin-bottom: var(--sp4);
  text-wrap: pretty;
}
.historia-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: var(--sp4);
}
.historia-text strong { color: var(--cu); font-weight: 600; }

.historia-timeline {
  position: relative;
  padding-left: var(--sp4);
  border-left: 1px solid var(--border2);
}
.tl-item {
  position: relative;
  padding: var(--sp3) 0 var(--sp3) var(--sp4);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: calc(var(--sp4) * -1 - 5px);
  top: var(--sp3);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--cu);
}
.tl-now::before {
  background: var(--cu);
  box-shadow: 0 0 0 4px rgba(201,165,116,.2);
}
.tl-year {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  color: var(--cu);
  letter-spacing: -0.5px;
}
.tl-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.numbers-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r3);
  overflow: hidden;
}
@media (max-width: 720px) { .numbers-strip { grid-template-columns: repeat(2, 1fr); } }
.numbers-strip > div {
  background: var(--bg);
  padding: var(--sp5) var(--sp3);
  text-align: center;
}
.numbers-strip strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}
.numbers-strip span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cu);
}

/* ════════════════════════════════════════════════════
   06 — INSIGHTS
══════════════════════════════════════════════════════ */
.insights {
  padding: var(--sp20) 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #0c0c0a, var(--bg));
}

/* Section head with right-aligned CTA (used on home/insights) */
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp6);
  flex-wrap: wrap;
}
.section-head-row > div { flex: 1; min-width: 280px; }
.section-cta { flex-shrink: 0; }

/* Make .insight work as an anchor link too */
a.insight { text-decoration: none; color: inherit; }
.insight-link h3 { transition: color 0.2s; }
.insight-link:hover h3 { color: var(--cu); }
.insight-feature.insight-link:hover h3 { color: #0a0a0a; }
.insights-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--sp3);
}
@media (max-width: 920px) {
  .insights-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .insight-feature { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .insights-grid { grid-template-columns: 1fr; }
  .insight-feature { grid-column: auto; }
}
.insight {
  padding: var(--sp5);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r3);
  display: flex;
  flex-direction: column;
  gap: var(--sp2);
  transition: all 0.3s;
  cursor: pointer;
}
.insight:hover {
  border-color: var(--cu);
  background: var(--surf);
}
.insight-feature {
  grid-row: span 2;
  background: linear-gradient(145deg, var(--cu-dk), var(--cu));
  border: none;
}
.insight-feature:hover { background: linear-gradient(145deg, var(--cu), var(--cu-lt)); }
.insight-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r5);
  background: var(--cu-dim);
  color: var(--cu);
  border: 1px solid rgba(201,165,116,.25);
}
.insight-feature .insight-tag {
  background: rgba(0,0,0,.2);
  color: #0a0a0a;
  border-color: rgba(0,0,0,.2);
}
.insight h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--white);
  text-wrap: balance;
  margin-top: auto;
}
.insight-feature h3 {
  font-size: clamp(28px, 3vw, 40px);
  color: #0a0a0a;
}
.insight p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0,0,0,.7);
}
.insight-meta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 6px;
}
.insight-feature .insight-meta { color: rgba(0,0,0,.55); }

/* ════════════════════════════════════════════════════
   07 — CONTATO
══════════════════════════════════════════════════════ */
.contato {
  position: relative;
  padding: var(--sp20) 0 var(--sp10);
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(201,165,116,.10), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.contato-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.78 0 0 0 0 0.65 0 0 0 0 0.45 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.4;
  mix-blend-mode: overlay;
}
.contato > * { position: relative; }

.contato-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--sp3);
  margin-bottom: var(--sp10);
}
@media (max-width: 920px) { .contato-grid { grid-template-columns: 1fr; } }

.contact-card {
  position: relative;
  padding: var(--sp6) var(--sp5);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r3);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s;
  overflow: hidden;
}
.contact-card:hover {
  border-color: var(--cu);
  transform: translateY(-3px);
}
.contact-primary {
  background: linear-gradient(145deg, var(--cu-dk), var(--cu));
  border: none;
}
.contact-primary:hover { background: linear-gradient(145deg, var(--cu), var(--cu-lt)); }
.cc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cu);
}
.contact-primary .cc-label { color: rgba(0,0,0,.55); }
.cc-value {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-top: 4px;
}
.contact-primary .cc-value { color: #0a0a0a; }
.cc-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.contact-primary .cc-meta { color: rgba(0,0,0,.55); }
.cc-arrow {
  position: absolute;
  top: var(--sp4);
  right: var(--sp4);
  color: var(--cu);
  transition: transform 0.3s;
}
.contact-primary .cc-arrow { color: #0a0a0a; }
.contact-card:hover .cc-arrow { transform: translate(4px, -4px); }

/* Offices */
.offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp3);
  padding: var(--sp6) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp8);
}
@media (max-width: 720px) { .offices { grid-template-columns: 1fr; } }
.office {
  padding: var(--sp4) 0;
  display: flex;
  align-items: flex-start;
  gap: var(--sp3);
}
.office-flag {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 4px 10px;
  border: 1px solid var(--cu);
  color: var(--cu);
  border-radius: 4px;
}
.office h4 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.office p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Newsletter */
.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp8);
  align-items: center;
  padding: var(--sp8);
  background: linear-gradient(145deg, var(--card), var(--surf));
  border: 1px solid var(--border);
  border-radius: var(--r3);
}
@media (max-width: 820px) {
  .newsletter { grid-template-columns: 1fr; gap: var(--sp4); padding: var(--sp5); }
}
.newsletter h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  margin: 8px 0 8px;
  letter-spacing: -0.5px;
}
.newsletter p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.news-form {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.news-form input {
  flex: 1;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: var(--r5);
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.news-form input:focus { border-color: var(--cu); }
.news-form input::placeholder { color: var(--dim); }
.news-form button {
  padding: 14px 24px;
  background: var(--cu);
  color: #0a0a0a;
  border: none;
  border-radius: var(--r5);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.news-form button:hover { background: var(--cu-lt); }

/* ════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  padding: var(--sp10) 0 var(--sp5);
  background: #060606;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp6);
  padding-bottom: var(--sp6);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp6);
  align-items: center;
}
@media (max-width: 720px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.footer-sub {
  display: block;
  width: 100%;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 4px;
}
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--cu);
  text-align: right;
  text-wrap: balance;
}
@media (max-width: 720px) { .footer-tagline { text-align: left; } }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp5);
  margin-bottom: var(--sp6);
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp4); } }
.footer-grid > div { display: flex; flex-direction: column; gap: 8px; }
.foot-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cu);
  margin-bottom: 6px;
}
.footer-grid a, .footer-grid span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  transition: color 0.2s;
}
.footer-grid a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: var(--sp4);
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.5px;
  flex-wrap: wrap;
  gap: var(--sp2);
}

/* ════════════════════════════════════════════════════
   REVEAL ON SCROLL
══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
