/* ═══════════════════════════════════════════════════════════════════
   NOSTRUM PUBLIC AFFAIRS — Shared stylesheet
   São Paulo · Brussels · EU Transparency Register
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --navy: #0B1C35;
  --navy-deep: #071526;
  --navy-soft: #142a48;
  --gold: #C8A96E;
  --gold-light: #DCC18A;
  --gold-deep: #A88A50;
  --cream: #F7F3EC;
  --stone: #E5DFD4;
  --stone-deep: #C9C1B1;
  --white: #FFFFFF;
  --text: #1C1C1C;
  --text-mid: #4A4A4A;
  --text-light: #7A7A7A;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', Helvetica, sans-serif;
  --max: 1380px;
  --pad: clamp(24px, 6vw, 88px);
}

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

/* ── NAVIGATION ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  height: 72px;
  background: rgba(11,28,53,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,169,110,0.16);
  transition: all 0.3s ease;
}
nav.scrolled { height: 60px; background: rgba(11,28,53,0.99); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 40px;
  width: auto;
  transition: height 0.3s ease;
}
nav.scrolled .nav-logo img { height: 34px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 16px; }

.nav-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 16px;
}
.nav-lang a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-lang a.active { color: var(--gold); }
.nav-lang a:hover { color: var(--gold-light); }
.nav-lang span { color: rgba(255,255,255,0.18); font-size: 10px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── MOBILE NAV ─────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 24px; right: var(--pad);
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}
.mobile-lang {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(200,169,110,0.2);
}
.mobile-lang a {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.mobile-lang a.active { color: var(--gold); }

/* ── HERO ───────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}
.hero-grid-line {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(200,169,110,0.08);
}
.hero-main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--pad);
  padding-top: 72px;
  align-items: center;
  min-height: 88vh;
  gap: 80px;
}
.hero-left { padding: 60px 0; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.7s ease;
}
.hero-eyebrow.in { opacity: 1; transform: translateY(0); }
.hero-eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
.hero-eyebrow-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 78px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.1s;
}
.hero-headline.in { opacity: 1; transform: translateY(0); }
.hero-headline em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 460px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.7s ease 0.25s;
}
.hero-sub.in { opacity: 1; transform: translateY(0); }
.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.7s ease 0.35s;
}
.hero-ctas.in { opacity: 1; transform: translateY(0); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.72);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
  border-left: 1px solid rgba(200,169,110,0.16);
  padding-left: 60px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.9s ease 0.4s;
}
.hero-right.in { opacity: 1; transform: translateX(0); }
.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(200,169,110,0.1);
}
.hero-stat {
  padding: 32px 28px;
  background: rgba(11,28,53,0.6);
  transition: background 0.3s;
}
.hero-stat:hover { background: rgba(200,169,110,0.06); }
.hero-stat-accent {
  display: block;
  width: 16px; height: 2px;
  background: var(--gold);
  margin-bottom: 12px;
}
.hero-stat-number {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stat-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

/* ── TICKER ─────────────────────────────────────────────────────── */
.ticker-bar {
  background: rgba(200,169,110,0.08);
  border-top: 1px solid rgba(200,169,110,0.18);
  border-bottom: 1px solid rgba(200,169,110,0.08);
  overflow: hidden;
  white-space: nowrap;
  padding: 11px 0;
}
.ticker-track { display: inline-flex; animation: ticker 50s linear infinite; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 0 48px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}
.ticker-dot { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── COMMON ─────────────────────────────────────────────────────── */
.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── MANIFESTO ──────────────────────────────────────────────────── */
#manifesto { background: var(--white); padding: clamp(80px, 10vw, 140px) var(--pad); }
.manifesto-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.manifesto-label { padding-top: 8px; }
.manifesto-statement {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}
.manifesto-statement em { font-style: italic; }
.manifesto-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 640px;
  margin-bottom: 56px;
}
.manifesto-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--stone);
  border: 1px solid var(--stone);
}
.manifesto-pillar {
  background: var(--white);
  padding: 36px 28px;
  transition: background 0.3s;
}
.manifesto-pillar:hover { background: var(--cream); }
.pillar-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--stone-deep);
  line-height: 1;
  margin-bottom: 16px;
}
.pillar-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.pillar-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-light);
}

/* ── PRACTICES ──────────────────────────────────────────────────── */
#practices { background: var(--cream); padding: clamp(80px, 10vw, 140px) var(--pad); }
.practices-header {
  max-width: var(--max);
  margin: 0 auto 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.practices-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
}
.practices-title em { font-style: italic; }
.practices-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-light);
  max-width: 280px;
  text-align: right;
  line-height: 1.65;
}
.practices-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.practice-card {
  padding: clamp(40px, 5vw, 72px) clamp(32px, 4vw, 64px);
  position: relative;
  overflow: hidden;
}
.practice-card--finance { background: var(--navy); color: var(--white); }
.practice-card--policy { background: var(--white); color: var(--navy); border: 1px solid var(--stone); }
.practice-number {
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 300;
  line-height: 1;
  position: absolute;
  top: 24px; right: 32px;
  opacity: 0.08;
  pointer-events: none;
}
.practice-card--finance .practice-number { color: var(--gold); }
.practice-card--policy .practice-number { color: var(--navy); }
.practice-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(200,169,110,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.practice-icon svg { width: 18px; height: 18px; }
.practice-card--policy .practice-icon { border-color: rgba(11,28,53,0.2); }
.practice-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.practice-title {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}
.practice-card--finance .practice-title { color: var(--white); }
.practice-card--policy .practice-title { color: var(--navy); }
.practice-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
}
.practice-card--finance .practice-desc { color: rgba(255,255,255,0.55); }
.practice-card--policy .practice-desc { color: var(--text-mid); }
.practice-services {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  border-top: 1px solid;
}
.practice-card--finance .practice-services { border-color: rgba(255,255,255,0.1); }
.practice-card--policy .practice-services { border-color: var(--stone); }
.practice-services li {
  padding: 12px 0;
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid;
  display: flex;
  align-items: center;
  gap: 12px;
}
.practice-card--finance .practice-services li { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.06); }
.practice-card--policy .practice-services li { color: var(--text-mid); border-color: var(--stone); }
.practice-services li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.practice-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid;
  transition: all 0.2s;
}
.practice-card--finance .practice-link { color: var(--gold); border-color: rgba(200,169,110,0.4); }
.practice-card--finance .practice-link:hover { color: var(--gold-light); border-color: var(--gold-light); gap: 16px; }
.practice-card--policy .practice-link { color: var(--navy); border-color: rgba(11,28,53,0.3); }
.practice-card--policy .practice-link:hover { color: var(--gold-deep); border-color: var(--gold-deep); gap: 16px; }

/* ── EU-BRAZIL ──────────────────────────────────────────────────── */
#eubrazil {
  background: var(--navy);
  padding: clamp(80px, 10vw, 140px) var(--pad);
  position: relative;
  overflow: hidden;
}
.eubrazil-bg-text {
  position: absolute;
  bottom: -60px;
  right: var(--pad);
  font-family: var(--serif);
  font-size: 220px;
  font-weight: 300;
  color: rgba(200,169,110,0.04);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
.eubrazil-inner { max-width: var(--max); margin: 0 auto; }
.eubrazil-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 72px;
  align-items: end;
}
.eubrazil-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
}
.eubrazil-title em { font-style: italic; color: var(--gold-light); }
.eubrazil-intro {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  padding-top: 8px;
}
.eubrazil-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200,169,110,0.1);
}
.eubrazil-pillars-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(200,169,110,0.1);
  margin-top: 1px;
}
.eu-pillar {
  background: rgba(7,21,38,0.8);
  padding: 36px 32px;
  transition: background 0.3s;
}
.eu-pillar:hover { background: rgba(200,169,110,0.06); }
.eu-pillar-tag {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid rgba(200,169,110,0.3);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eu-pillar-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.eu-pillar-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.48);
}
.register-strip {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(200,169,110,0.15);
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.register-item { display: flex; align-items: center; gap: 12px; }
.register-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.register-text { font-size: 11px; font-weight: 400; letter-spacing: 0.08em; color: rgba(255,255,255,0.42); }

/* ── WORK ───────────────────────────────────────────────────────── */
#work { padding: clamp(80px, 10vw, 140px) var(--pad); background: var(--white); }
.work-inner { max-width: var(--max); margin: 0 auto; }
.work-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; gap: 40px; }
.work-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
}
.work-title em { font-style: italic; }
.work-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.work-card {
  border: 1px solid var(--stone);
  padding: clamp(32px, 4vw, 56px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.work-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.work-card-wide { grid-column: span 2; }
.work-card-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.work-card-tag::before { content: ''; width: 20px; height: 1px; background: var(--gold-deep); }
.work-card-title {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 16px;
}
.work-card-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  flex: 1;
  margin-bottom: 32px;
}
.work-card-stats { display: flex; gap: 32px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--stone); }
.work-stat-num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.work-stat-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ── STANDARD ───────────────────────────────────────────────────── */
#standard { background: var(--cream); padding: clamp(80px, 10vw, 140px) var(--pad); }
.standard-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 100px;
  align-items: center;
}
.standard-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 24px;
}
.standard-title em { font-style: italic; }
.standard-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 40px;
}
.standard-comps { display: flex; flex-direction: column; }
.standard-comp {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--stone);
}
.standard-comp-name { font-size: 13px; font-weight: 500; color: var(--navy); flex: 1; }
.standard-comp-status {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  background: var(--navy);
  color: var(--gold);
}
.standard-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--stone);
  border: 1px solid var(--stone);
}
.standard-block { background: var(--white); padding: 32px 28px; }
.standard-block-icon { width: 32px; height: 2px; background: var(--gold); margin-bottom: 20px; }
.standard-block-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}
.standard-block-body { font-size: 12px; font-weight: 300; line-height: 1.7; color: var(--text-light); }
.standard-partners {
  margin-top: 2px;
  padding: 20px 28px;
  background: var(--navy);
  border: 1px solid rgba(200,169,110,0.2);
}
.standard-partners-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.standard-partners-text { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.6); }

/* ── TEAM ───────────────────────────────────────────────────────── */
#team { background: var(--white); padding: clamp(80px, 10vw, 140px) var(--pad); }
.team-inner { max-width: var(--max); margin: 0 auto; }
.team-header { margin-bottom: 64px; }
.team-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.team-title em { font-style: italic; }
.team-subtitle { font-size: 14px; font-weight: 300; color: var(--text-light); max-width: 480px; line-height: 1.7; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--stone);
  border: 1px solid var(--stone);
}
.team-card { background: var(--white); padding: 36px 28px; transition: background 0.3s; }
.team-card:hover { background: var(--cream); }
.team-initials {
  width: 44px; height: 44px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.team-name { font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--navy); margin-bottom: 4px; }
.team-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.team-body { font-size: 12px; font-weight: 300; line-height: 1.75; color: var(--text-light); margin-bottom: 20px; }
.team-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 20px; }
.team-tag {
  padding: 3px 8px;
  background: var(--cream);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--navy);
}
.team-li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  border-bottom: 1px solid var(--stone);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.team-li:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

/* ── CONTACT ────────────────────────────────────────────────────── */
#contact {
  background: var(--navy-deep);
  padding: clamp(80px, 10vw, 140px) var(--pad);
  position: relative;
  overflow: hidden;
}
.contact-bg, .contact-bg-2 {
  position: absolute;
  border: 1px solid rgba(200,169,110,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.contact-bg { top: -100px; right: -100px; width: 600px; height: 600px; }
.contact-bg-2 { bottom: -150px; right: -50px; width: 400px; height: 400px; border-color: rgba(200,169,110,0.04); }
.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
  position: relative;
}
.contact-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}
.contact-title em { font-style: italic; color: var(--gold-light); }
.contact-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.48);
  margin-bottom: 48px;
}
.contact-offices { display: flex; flex-direction: column; }
.contact-office { padding: 24px 0; border-bottom: 1px solid rgba(200,169,110,0.12); }
.contact-office:first-child { border-top: 1px solid rgba(200,169,110,0.12); }
.contact-office-city { font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--white); margin-bottom: 4px; }
.contact-office-detail { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }
.contact-form { display: flex; flex-direction: column; gap: 2px; }
.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 14px 20px 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-bottom: none;
}
.form-field input, .form-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: none;
  padding: 10px 20px 16px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: none;
}
.form-field input:focus, .form-field textarea:focus {
  background: rgba(200,169,110,0.05);
  border-color: rgba(200,169,110,0.3);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.22); }
.form-field textarea { height: 120px; }
.form-submit {
  margin-top: 2px;
  padding: 16px 32px;
  background: var(--gold);
  border: none;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-deep);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  width: 100%;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.contact-email {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
}
.contact-email a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
.contact-email a:hover { color: var(--gold-light); }
.form-msg {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gold-light);
  min-height: 18px;
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
footer { background: var(--navy-deep); border-top: 1px solid rgba(200,169,110,0.12); padding: 24px var(--pad); }
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-left { font-size: 11px; color: rgba(255,255,255,0.28); letter-spacing: 0.06em; }
.footer-left a { color: rgba(200,169,110,0.65); text-decoration: none; }
.footer-center { display: flex; align-items: center; gap: 16px; }
.footer-city { font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.24); }
.footer-separator { color: rgba(200,169,110,0.3); font-size: 10px; }
.footer-right { font-size: 10px; color: rgba(255,255,255,0.22); letter-spacing: 0.08em; }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-main { grid-template-columns: 1fr; gap: 40px; min-height: auto; padding-top: 90px; }
  .hero-right { border-left: none; border-top: 1px solid rgba(200,169,110,0.16); padding-left: 0; padding-top: 40px; }
  .hero-stat-grid { grid-template-columns: repeat(4, 1fr); }
  .manifesto-inner { grid-template-columns: 1fr; gap: 32px; }
  .manifesto-pillars { grid-template-columns: 1fr; }
  .practices-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .practices-sub { text-align: left; }
  .practices-grid { grid-template-columns: 1fr; }
  .eubrazil-header { grid-template-columns: 1fr; gap: 24px; }
  .eubrazil-pillars { grid-template-columns: 1fr 1fr; }
  .eubrazil-pillars-2 { grid-template-columns: 1fr; }
  .work-cards { grid-template-columns: 1fr; }
  .work-card-wide { grid-column: span 1; }
  .standard-inner { grid-template-columns: 1fr; gap: 48px; }
  .standard-blocks { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-lang { display: none; }
  .hero-stat-grid { grid-template-columns: 1fr 1fr; }
  .eubrazil-pillars { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .practices-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}
