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

:root {
  --navy:   #0F1F35;
  --navy2:  #1B3A5C;
  --gold:   #C4A96A;
  --gold-l: #D4BA82;
  --slate:  #8A96A3;
  --white:  #FAFAF8;
  --cream:  #F4F2ED;
  --gray:   #7A7A7A;
  --gray-l: #E4E2DD;
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--navy2); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 64px;
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, padding 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  border-bottom-color: var(--gray-l);
  padding-top: 12px; padding-bottom: 12px;
  box-shadow: 0 1px 24px rgba(15,31,53,0.06);
}
.nav-logo img {
  height: 52px; width: auto; display: block;
  transition: height 0.4s, opacity 0.3s;
}
nav.scrolled .nav-logo img { height: 38px; }
.nav-logo img:hover { opacity: 0.72; }

.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 9.5px; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none;
  color: var(--navy); opacity: 0.5;
  transition: opacity 0.25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-switcher { display: flex; gap: 6px; }
.lang-btn {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  background: none; border: none; cursor: pointer; color: rgba(15,31,53,0.45);
  padding: 5px 7px; transition: color 0.2s;
}
.lang-btn:hover, .lang-btn.active { color: var(--navy); }
.lang-btn.active { border-bottom: 2px solid var(--navy); }

.theme-toggle {
  background: none; border: 1px solid rgba(15,31,53,0.18); cursor: pointer;
  color: rgba(15,31,53,0.4); padding: 6px 9px; font-size: 12px;
  transition: all 0.3s; line-height: 1; border-radius: 2px;
}
.theme-toggle:hover { color: var(--navy); border-color: var(--navy); }

.nav-cta {
  font-size: 9.5px; font-weight: 400; letter-spacing: 0.16em;
  text-transform: uppercase; text-decoration: none;
  color: var(--white); background: var(--navy);
  padding: 11px 26px; border: 1px solid var(--navy);
  transition: background 0.3s, color 0.3s; white-space: nowrap;
}
.nav-cta:hover { background: transparent; color: var(--navy); }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; }
.hamburger span { width:22px; height:1px; background:var(--navy); display:block; transition:all 0.3s; }
.mobile-menu { display:none; position:fixed; inset:0; z-index:190; background:var(--white); flex-direction:column; align-items:center; justify-content:center; gap:32px; }
.mobile-menu.open { display:flex; }
.mobile-menu a { font-family:var(--serif); font-size:32px; font-weight:300; color:var(--navy); text-decoration:none; transition:color 0.2s; }
.mobile-menu a:hover { color:var(--gold); }
.mobile-lang { display:flex; gap:16px; margin-top:16px; }
.mobile-lang button { font-size:11px; letter-spacing:0.18em; text-transform:uppercase; background:none; border:none; cursor:pointer; color:rgba(15,31,53,0.4); font-family:var(--sans); }
.mobile-lang button:hover { color:var(--navy); }

/* ── HERO ── */
#hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 0; background: var(--navy);
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
}
.hero-video-wrap video {
  width: 100%; height: 100%; object-fit: cover; object-position: center center;
  filter: brightness(0.48) contrast(1.08);
}
.hero-video-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,31,53,0.72) 35%, rgba(15,31,53,0.15) 100%);
}

.hero-content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  width: 100%; padding: 0 64px 96px;
  align-items: flex-end;
}
.hero-left { padding-right: 64px; }

.hero-eyebrow {
  font-size: 12px; font-weight: 400; letter-spacing: 0.25em;
  text-transform: uppercase; color: rgba(196,169,106,0.85);
  margin-bottom: 36px; display: flex; align-items: center; gap: 16px;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(62px, 7.5vw, 96px);
  font-weight: 300; line-height: 1.05; color: var(--white);
  margin-bottom: 40px; letter-spacing: -0.01em;
  opacity: 0; animation: fadeUp 0.9s 0.5s forwards;
}
.hero-title em { font-style: italic; color: rgba(196,169,106,0.75); }

.hero-rule {
  width: 36px; height: 1px; background: var(--gold); margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s 0.7s forwards;
}
.hero-desc {
  font-size: 17px; line-height: 1.9;
  color: rgba(255,255,255,0.42); max-width: 440px;
  opacity: 0; animation: fadeUp 0.8s 0.85s forwards;
}
.hero-ctas {
  display: flex; gap: 16px; margin-top: 36px;
  opacity: 0; animation: fadeUp 0.8s 1s forwards; flex-wrap: wrap;
}
.btn-primary-hero {
  font-size: 9.5px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; color: var(--navy); background: var(--gold);
  padding: 14px 32px; transition: background 0.3s;
}
.btn-primary-hero:hover { background: var(--gold-l); }
.btn-ghost-hero {
  font-size: 9.5px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.22); padding: 14px 32px; transition: border-color 0.3s, color 0.3s;
}
.btn-ghost-hero:hover { border-color: rgba(196,169,106,0.6); color: var(--white); }

.hero-right {
  display: flex; flex-direction: column; gap: 48px;
  opacity: 0; animation: fadeUp 1s 1s forwards;
}
.stat-num {
  font-family: var(--serif); font-size: 72px; font-weight: 300;
  line-height: 1; color: var(--white); letter-spacing: -0.02em;
}
.stat-num sup { font-size: 30px; color: var(--gold); vertical-align: super; }
.stat-label {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-top: 10px;
}
.stat-item { display: flex; flex-direction: column; }

.hero-scroll {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2; opacity: 0; animation: fadeIn 1s 1.6s forwards;
}
.hero-scroll span {
  font-size: 8px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(196,169,106,0.5), transparent);
  animation: scrollPulse 2.4s infinite;
}

/* ── MANIFESTO ── */
#manifesto {
  background: var(--navy);
  padding: 88px 64px;
  display: flex; align-items: center; gap: 72px;
}
.manifesto-mark {
  flex-shrink: 0; width: 1px; height: 120px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.manifesto-text {
  font-family: var(--serif);
  font-size: clamp(19px, 2.2vw, 27px);
  font-weight: 300; line-height: 1.68;
  color: rgba(255,255,255,0.76); max-width: 840px;
}
.manifesto-text em { font-style: italic; color: var(--white); }
.manifesto-source {
  flex-shrink: 0; font-size: 14px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  writing-mode: vertical-rl; opacity: 1; font-weight: 500;
}

/* ── SECTION BASE ── */
section { padding: 120px 64px; }
.section-label {
  font-size: 12px; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--navy); margin-bottom: 20px; opacity: 0.6;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 300; line-height: 1.15;
  color: var(--navy); margin-bottom: 16px;
}
.section-title em { font-style: italic; }
.section-rule { width: 44px; height: 2px; background: var(--gold); margin-bottom: 44px; }
.section-title-light { color: var(--white) !important; }
.section-label-light { color: rgba(196,169,106,0.8) !important; }
.section-rule-gold { background: var(--gold) !important; }

/* ── ABOUT ── */
#about {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 96px; align-items: start;
  border-top: 1px solid var(--gray-l);
}
.about-body { font-size: 16px; line-height: 2; color: var(--navy); opacity: 0.72; margin-bottom: 24px; }
.about-values { display: flex; flex-direction: column; }
.value-item {
  padding: 28px 0; border-bottom: 1px solid var(--gold);
  display: flex; gap: 24px; align-items: flex-start;
  transition: padding-left 0.35s; cursor: default;
}
.value-item:first-child { border-top: 1px solid var(--gold); }
.value-item:hover { padding-left: 10px; }
.value-num { font-family: var(--serif); font-size: 16px; color: var(--gold); letter-spacing: 0.1em; padding-top: 3px; min-width: 32px; font-weight: 400; }
.value-text strong { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.value-text p { font-size: 15px; color: var(--navy); opacity: 0.6; line-height: 1.8; }

/* ── SERVICES ── */
#services { background: var(--navy); padding: 120px 64px; }
#services .section-title { color: var(--white); }
#services .section-label { color: rgba(196,169,106,0.75); }
#services .section-rule { background: var(--gold); }

.services-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin-top: 64px;
  background: rgba(196,169,106,0.35);
}
.service-card {
  background: var(--navy); padding: 56px 48px;
  position: relative; overflow: hidden;
  transition: background 0.4s; cursor: default;
  text-decoration: none; display: block;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { background: #162844; }
.service-card:hover::before { opacity: 1; }
.service-index {
  font-family: var(--serif); font-size: 88px; font-weight: 300;
  color: var(--gold);
  position: absolute; top: 16px; right: 24px;
  line-height: 1; pointer-events: none; transition: color 0.4s; user-select: none;
  opacity: 0.18;
}
.service-card:hover .service-index { opacity: 0.35; }
.service-dash { width: 36px; height: 2px; background: var(--gold); margin-bottom: 28px; opacity: 0.9; }
.service-name { font-family: var(--serif); font-size: 32px; font-weight: 300; color: var(--white); margin-bottom: 8px; line-height: 1.2; }
.service-tag { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(196,169,106,0.8); margin-bottom: 24px; display: block; }
.service-desc { font-size: 15px; line-height: 2; color: rgba(255,255,255,0.55); margin-bottom: 28px; }
.service-items { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-items li { font-size: 14px; color: rgba(255,255,255,0.45); padding-left: 22px; position: relative; letter-spacing: 0.03em; }
.service-items li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 11px; opacity: 0.8; }
.service-arrow { margin-top: 32px; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(196,169,106,0.7); transition: color 0.3s; }
.service-card:hover .service-arrow { color: var(--gold); }
.service-card.secondary { background: #1a3a5e; opacity: 1; }
.service-card.secondary:hover { background: #1f4470; }
.service-card.secondary .service-name { font-size: 26px; }
.service-complementary {
  display: block; font-size: 9px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}

/* ── EXPERTISE ── */
#expertise { background: var(--cream); padding: 120px 64px; border-top: 2px solid var(--gold); }
.expertise-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 2px; margin-top: 64px; background: var(--gold);
}
.expertise-block {
  background: var(--cream); padding: 48px 44px; transition: background 0.3s;
}
.expertise-block:hover { background: var(--white); }
.exp-number {
  font-family: var(--serif); font-size: 72px; font-weight: 300;
  line-height: 1; color: var(--navy); margin-bottom: 4px;
}
.exp-number sup { font-size: 30px; color: var(--gold); vertical-align: super; }
.exp-unit {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--navy); opacity: 0.5; margin-bottom: 28px; display: block;
}
.exp-rule { width: 36px; height: 2px; background: var(--gold); margin-bottom: 24px; }
.exp-title { font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); margin-bottom: 14px; }
.exp-desc { font-size: 15px; color: var(--navy); opacity: 0.6; line-height: 1.9; }

/* ── APPROACH ── */
#approach {
  display: flex; flex-direction: column;
  gap: 72px; align-items: stretch;
  border-top: 2px solid var(--gold);
  padding: 120px 64px;
}
.approach-top {
  display: grid; grid-template-columns: 420px 1fr;
  gap: 96px; align-items: start;
}
.approach-steps {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2px; background: var(--gold);
}
.step {
  background: var(--white); padding: 52px 44px;
  display: flex; flex-direction: column; gap: 0;
  border-bottom: none;
  transition: background 0.3s;
}
.step:hover { background: var(--cream); }
.step:first-child { border-top: none; }
.step-num { font-family: var(--serif); font-size: 32px; color: var(--gold); font-style: italic; margin-bottom: 20px; display: block; }
.step-content strong { display: block; font-size: 14px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); margin-bottom: 16px; }
.step-content p { font-size: 15px; color: var(--navy); opacity: 0.6; line-height: 1.85; }
.approach-right { padding-top: 8px; }
.approach-statement {
  font-family: var(--serif); font-size: clamp(26px, 3vw, 40px);
  font-weight: 300; line-height: 1.45; color: var(--navy); margin-bottom: 36px;
}
.approach-statement em { font-style: italic; color: var(--navy2); opacity: 0.7; }
.approach-body { font-size: 16px; color: var(--navy); opacity: 0.65; line-height: 2; margin-bottom: 20px; }

/* ── MERCADOS ── */
#mercados {
  background: var(--navy); padding: 100px 64px;
}
#mercados .section-label { color: rgba(196,169,106,0.8); }
#mercados .section-title { color: var(--white); }
#mercados .section-rule { background: var(--gold); }
.markets {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: rgba(196,169,106,0.3); margin-top: 64px;
}
.market { background: var(--navy2); padding: 56px 56px; transition: background 0.3s; }
.market:hover { background: #1f4470; }
.market-flag { display: none; }
.market-name {
  font-family: var(--serif); font-size: 36px; font-weight: 300;
  color: var(--white); margin-bottom: 16px; line-height: 1.2;
}
.market-desc { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.9; }

/* ── CONTACT ── */
#contact {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 2px solid var(--gold);
  padding: 0; min-height: 60vh;
}
.contact-left {
  padding: 100px 64px; display: flex; flex-direction: column;
  justify-content: center; border-right: 2px solid var(--gold);
}
.contact-right {
  padding: 100px 64px; display: flex; flex-direction: column; justify-content: center;
}
.contact-info { display: flex; flex-direction: column; gap: 52px; }
.contact-item-label {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; font-weight: 600;
}
.contact-item-value {
  font-family: var(--serif); font-size: 28px; color: var(--navy);
  line-height: 1.4; font-weight: 300;
}
.contact-item-sub {
  font-size: 15px; color: var(--navy); opacity: 0.55;
  margin-top: 8px; line-height: 1.7;
}
.contact-form { display: flex; flex-direction: column; }
.form-field {
  display: flex; flex-direction: column; gap: 10px;
  padding: 24px 0; border-bottom: 2px solid var(--gold);
}
.form-field label {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--navy); font-weight: 600; opacity: 0.5;
}
.form-field input, .form-field select, .form-field textarea {
  background: transparent; border: none; outline: none;
  font-family: var(--sans); font-weight: 400; font-size: 17px;
  color: var(--navy); resize: none; width: 100%;
}
.form-field textarea { min-height: 96px; }
.form-field input::placeholder, .form-field textarea::placeholder {
  color: rgba(15,31,53,0.25);
}
.form-field select { appearance: none; cursor: pointer; }
.form-submit { margin-top: 40px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.btn-submit {
  font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; cursor: pointer; background: var(--navy);
  color: var(--white); border: 1px solid var(--navy); padding: 16px 40px;
  transition: background 0.3s, color 0.3s;
}
.btn-submit:hover { background: transparent; color: var(--navy); }
.form-note { font-size: 13px; color: var(--navy); opacity: 0.45; line-height: 1.7; font-style: italic; }

/* ── LEGAL ── */
#legal {
  background: var(--navy); padding: 100px 64px;
  border-top: 2px solid var(--gold);
}
.legal-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: var(--gold); margin-top: 56px;
}
.legal-block {
  background: var(--navy); padding: 52px 44px 56px;
  transition: background 0.3s;
}
.legal-block:hover { background: #162844; }
.legal-block-num { font-family: var(--serif); font-size: 14px; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 20px; display: block; opacity: 0.7; }
.legal-block-title { font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 24px; }
.legal-block-text { font-size: 15px; color: rgba(255,255,255,0.45); line-height: 1.9; }
.legal-block-text a { color: var(--gold); font-size: 12px; letter-spacing: 0.1em; opacity: 0.7; }
.legal-block-text a:hover { color: var(--gold); opacity: 1; }

/* ── FOOTER ── */
#sitemap {
  background: #08121F; padding: 64px 64px 48px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.sitemap-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px; margin-bottom: 52px;
}
.sitemap-logo img { height: 64px; width: auto; opacity: 0.82; display: block; margin-bottom: 20px; }
.sitemap-tagline { font-size: 11px; color: rgba(255,255,255,0.22); line-height: 1.8; max-width: 240px; }
.sitemap-col-title {
  font-size: 8px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--slate); margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sitemap-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sitemap-links a {
  font-size: 11px; color: rgba(255,255,255,0.25); text-decoration: none;
  letter-spacing: 0.04em; transition: color 0.25s;
}
.sitemap-links a:hover { color: rgba(255,255,255,0.65); }
.sitemap-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.05); flex-wrap: wrap; gap: 12px;
}
.sitemap-copy { font-size: 10px; letter-spacing: 0.1em; color: rgba(255,255,255,0.14); }
.sitemap-legal-links { display: flex; gap: 24px; }
.sitemap-legal-links a {
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.18); text-decoration: none; transition: color 0.25s;
}
.sitemap-legal-links a:hover { color: rgba(255,255,255,0.5); }

/* ── MODALS ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(8,18,31,0.9); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white); max-width: 700px; width: 90%;
  max-height: 80vh; overflow-y: auto; padding: 56px 56px 48px; position: relative;
}
.modal-close {
  position: absolute; top: 24px; right: 28px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--slate); cursor: pointer; border: none; background: none;
  font-family: var(--sans); transition: color 0.2s;
}
.modal-close:hover { color: var(--navy); }
.modal h3 { font-family: var(--serif); font-size: 30px; font-weight: 300; color: var(--navy); margin-bottom: 8px; }
.modal-sub {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--slate);
  margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-l);
}
.modal p { font-size: 13px; color: #555; line-height: 1.9; margin-bottom: 16px; }
.modal strong { color: var(--navy); font-weight: 500; }

/* ── DARK MODE ── */
body.dark-mode { background: var(--navy) !important; color: var(--white) !important; }
body.dark-mode nav { background: rgba(15,31,53,0.97) !important; border-bottom-color: rgba(255,255,255,0.07) !important; }
body.dark-mode .nav-links a { color: var(--white); opacity: 0.55; }
body.dark-mode .nav-cta { background: var(--gold); border-color: var(--gold); color: var(--navy); }
body.dark-mode .theme-toggle { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); }
body.dark-mode .theme-toggle:hover { color: var(--white); border-color: var(--white); }
body.dark-mode #about { border-top-color: rgba(255,255,255,0.07); background: #0d1f33; }
body.dark-mode .about-body { color: rgba(250,250,248,0.55); }
body.dark-mode .value-item { border-color: rgba(255,255,255,0.07); }
body.dark-mode .value-text strong { color: var(--white); }
body.dark-mode .value-text p { color: rgba(250,250,248,0.5); }
body.dark-mode .section-title { color: var(--white); }
body.dark-mode #expertise { background: #0a1929; border-top-color: rgba(255,255,255,0.07); }
body.dark-mode .expertise-block { background: #0a1929; }
body.dark-mode .expertise-block:hover { background: #0d2235; }
body.dark-mode .exp-number { color: var(--white); }
body.dark-mode .exp-desc { color: rgba(250,250,248,0.45); }
body.dark-mode #approach { background: #0d1f33; border-top-color: rgba(255,255,255,0.07); }
body.dark-mode .step { border-color: rgba(255,255,255,0.07); }
body.dark-mode .step-content strong { color: var(--white); }
body.dark-mode .step-content p { color: rgba(250,250,248,0.45); }
body.dark-mode .approach-statement { color: var(--white); }
body.dark-mode .approach-body { color: rgba(250,250,248,0.45); }
body.dark-mode .market { background: #0a1929; }
body.dark-mode .market:hover { background: #0d2235; }
body.dark-mode .market-name { color: var(--white); }
body.dark-mode .market-desc { color: rgba(250,250,248,0.45); }
body.dark-mode #contact { border-top-color: rgba(255,255,255,0.07); background: #0d1f33; }
body.dark-mode .contact-left { border-right-color: rgba(255,255,255,0.07); }
body.dark-mode .contact-item-value { color: var(--white); }
body.dark-mode .contact-item-sub { color: rgba(250,250,248,0.45); }
body.dark-mode .form-field { border-bottom-color: rgba(255,255,255,0.07); }
body.dark-mode .form-field input, body.dark-mode .form-field select, body.dark-mode .form-field textarea { color: var(--white); }
body.dark-mode .hamburger span { background: var(--white); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from {opacity:0;transform:translateY(22px);} to {opacity:1;transform:translateY(0);} }
@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }
@keyframes scrollPulse {
  0%,100% {opacity:0.2;transform:scaleY(0.5);transform-origin:top;}
  50% {opacity:0.8;transform:scaleY(1);transform-origin:top;}
}
.reveal { opacity:0; transform:translateY(26px); transition:opacity 0.85s ease,transform 0.85s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.d1 { transition-delay:0.12s; }
.d2 { transition-delay:0.24s; }
.d3 { transition-delay:0.36s; }

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  #about { grid-template-columns:1fr; gap:56px; }
  .approach-top { grid-template-columns:1fr; gap:48px; }
  .approach-steps { grid-template-columns:1fr 1fr; }
  .expertise-grid { grid-template-columns:1fr 1fr; }
  .sitemap-inner { grid-template-columns:1fr 1fr; gap:40px; }
}
@media(max-width:960px) {
  nav { padding:14px 24px; }
  .nav-logo img { height:38px; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  #hero .hero-content { grid-template-columns:1fr; padding:0 24px 80px; }
  .hero-right { display:none; }
  section, #services, #expertise, #legal { padding:80px 24px; }
  #manifesto { padding:64px 24px; flex-direction:column; gap:28px; }
  .manifesto-mark { width:40px; height:1px; }
  .manifesto-source { writing-mode:horizontal-tb; }
  .contact-left, .contact-right { padding:60px 24px; }
  .contact-left { border-right:none; border-bottom:1px solid var(--gray-l); }
  #contact { grid-template-columns:1fr; }
  .services-grid, .expertise-grid, .legal-grid { grid-template-columns:1fr; }
  .markets { grid-template-columns:1fr; }
  #sitemap { padding:48px 24px 36px; }
  .sitemap-inner { grid-template-columns:1fr 1fr; gap:32px; }
  .sitemap-bottom { flex-direction:column; gap:16px; text-align:center; }
  .modal { padding:40px 28px 32px; }
}
@media(max-width:600px) {
  .sitemap-inner { grid-template-columns:1fr; }
  .hero-ctas { flex-direction:column; }
}
