:root {
  --bg: #0f0f10;
  --bg-soft: #171719;
  --panel: #1c1d20;
  --text: #f2efe8;
  --muted: #b8b1a5;
  --line: rgba(255,255,255,0.08);
  --gold: #c6a46a;
  --gold-soft: #9b7c49;
  --max: 1180px;
  --serif: "Georgia", "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background:
    radial-gradient(circle at top, rgba(198,164,106,0.10) 0%, rgba(15,15,16,0) 34%),
    linear-gradient(180deg, #17181c 0%, #0f0f10 38%, #0d0d0e 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(15,15,16,0.78);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-mark {
  font-family: var(--serif);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
}

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

.nav a {
  color: var(--muted);
  font-size: 0.96rem;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.cta-link {
  padding: 11px 18px;
  border: 1px solid rgba(198,164,106,0.45);
  border-radius: 999px;
  color: var(--text);
}

.hero {
  padding: 110px 0 90px;
}

.hero-grid,
.two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-size: 0.77rem;
  margin-bottom: 18px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  line-height: 1.08;
  margin: 0 0 18px;
  font-weight: 500;
}

h1 { font-size: clamp(2.8rem, 5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.7vw, 3.25rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 16px; color: var(--muted); }

.lead {
  font-size: 1.12rem;
  max-width: 680px;
}

.hero-panel,
.card,
.stat,
.info-block,
.contact-card,
.sector-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.22);
}

.hero-panel {
  padding: 28px;
  overflow: hidden;
  position: relative;
}

.hero-panel .image-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 520px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(198,164,106,0.16), rgba(198,164,106,0) 34%),
    linear-gradient(180deg, rgba(30,31,35,0.98) 0%, rgba(16,17,20,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-panel .image-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 32%),
    radial-gradient(circle at 82% 18%, rgba(198,164,106,0.22), rgba(198,164,106,0) 28%),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 86px);
  opacity: 0.55;
  z-index: -2;
}

.hero-panel .image-shell::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -26px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(198,164,106,0.18);
  box-shadow:
    0 0 0 46px rgba(198,164,106,0.04),
    0 0 0 92px rgba(198,164,106,0.025);
  opacity: 0.85;
  z-index: -1;
}

.image-shell h3 { max-width: 280px; }
.image-shell p { max-width: 360px; }

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.metric {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.02);
}

.metric strong {
  display: block;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 6px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.button {
  background: linear-gradient(180deg, var(--gold), var(--gold-soft));
  color: #151515;
  font-weight: 600;
}

.button-secondary {
  border-color: rgba(255,255,255,0.12);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}

.button:hover,
.button-secondary:hover,
.cta-link:hover {
  transform: translateY(-1px);
}

.section {
  padding: 84px 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 780px;
  margin-bottom: 34px;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 22px;
}

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

.card,
.sector-card,
.contact-card,
.info-block,
.stat {
  padding: 24px;
}

.card h3,
.sector-card h3,
.contact-card h3,
.info-block h3 { margin-bottom: 12px; }

.kicker {
  color: var(--gold);
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}

ul.clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.clean li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
}

ul.clean li:last-child { border-bottom: 0; }

.stat strong {
  display: block;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 8px;
  font-family: var(--serif);
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.logo {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  color: var(--muted);
  min-height: 74px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  letter-spacing: 0.05em;
}

.page-hero {
  padding: 90px 0 50px;
}

.footer {
  padding: 30px 0 48px;
  border-top: 1px solid var(--line);
  margin-top: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 22px;
}

.small { font-size: 0.92rem; }
.muted { color: var(--muted); }
.gold { color: var(--gold); }

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .grid-3,
  .grid-4,
  .grid-2,
  .footer-grid,
  .logo-row {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .header-inner {
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
  }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, var(--max)); }
  .hero { padding: 72px 0 58px; }
  .section { padding: 62px 0; }
  .nav { display: none; }
  .hero-panel .image-shell { min-height: 340px; }
}

.metric-grid { position: relative; z-index: 1; }
.image-shell > div:first-child { position: relative; z-index: 1; }
