:root {
  --bg: #05080d;
  --surface: #07111f;
  --surface-2: #10213a;
  --text: #fbfaf5;
  --muted: #bac2cf;
  --dark-text: #101622;
  --dark-muted: #5a6474;
  --gold: #c7953e;
  --gold-light: #ffe7a3;
  --line: rgba(199, 149, 62, 0.24);
  --max: 1180px;
  --radius: 26px;
  --shadow: 0 30px 90px rgba(7, 17, 31, 0.3);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", Arial, sans-serif;
  background: #f5f3ed;
  color: var(--dark-text);
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), 92%); margin-inline: auto; }
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto 0;
  background: rgba(5, 8, 13, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(199, 149, 62, 0.18);
}
.nav-wrapper {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  width: 310px;
  height: 72px;
  display: flex;
  align-items: center;
}
.brand img { width: 100%; height: 100%; object-fit: contain; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255,255,255,.86);
  font-size: .92rem;
  font-weight: 800;
  text-transform: uppercase;
}
.site-nav a:hover, .site-nav .active { color: var(--gold-light); }
.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(199,149,62,.5);
  border-radius: 999px;
  color: var(--gold-light) !important;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(199,149,62,.42);
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold-light);
}
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--text);
  overflow: hidden;
}
.hero-bg, .page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img, .page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay, .page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,8,13,.95) 0%, rgba(5,8,13,.78) 42%, rgba(5,8,13,.32) 76%, rgba(5,8,13,.62) 100%),
    radial-gradient(circle at 20% 40%, rgba(199,149,62,.18), transparent 38%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding-top: 110px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}
.eyebrow.dark { color: #8d6120; }
.eyebrow.gold { color: var(--gold-light); }
h1, h2, h3 { font-family: "Montserrat", Arial, sans-serif; line-height: 1.05; }
h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
  letter-spacing: -.055em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
h2 { font-size: clamp(2rem, 4vw, 4rem); letter-spacing: -.045em; }
h3 { font-size: 1.16rem; }
.hero-copy {
  max-width: 780px;
  color: rgba(251,250,245,.84);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #07111f; background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.btn-secondary { color: var(--text); border: 1px solid rgba(255,255,255,.34); background: rgba(255,255,255,.06); }
.feature-strip {
  background: linear-gradient(135deg, #05080d, #10213a);
  color: var(--text);
  border-top: 1px solid rgba(199,149,62,.18);
  border-bottom: 1px solid rgba(199,149,62,.18);
}
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature-grid article { padding: 34px 28px; border-right: 1px solid rgba(199,149,62,.24); }
.feature-grid article:last-child { border-right: 0; }
.feature-grid span { color: var(--gold-light); font-weight: 900; letter-spacing: .16em; }
.feature-grid h3 { margin: 10px 0; }
.feature-grid p { color: rgba(251,250,245,.72); font-size: .95rem; }
.section { padding: 112px 0; }
.two-column { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; }
.section-text p, .section-heading p, .panel-content p, .mission-card p, .cta-box p {
  color: var(--dark-muted);
  font-size: 1.04rem;
  margin-top: 18px;
}
.section-heading { max-width: 860px; margin-bottom: 54px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading.center .eyebrow { justify-content: center; }
.dark-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(199,149,62,.12), transparent 28%),
    linear-gradient(135deg, #05080d, #111c2e);
  color: var(--text);
}
.dark-section .section-heading p { color: rgba(251,250,245,.72); }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  padding: 30px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(199,149,62,.24);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.16);
}
.service-card span { display: inline-flex; margin-bottom: 22px; color: var(--gold-light); font-weight: 900; letter-spacing: .12em; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: rgba(251,250,245,.72); }
.split-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.split-panel.light {
  background: #fff;
  padding: 34px;
  border-radius: calc(var(--radius) + 10px);
  box-shadow: 0 22px 70px rgba(31,22,7,.08);
}
.panel-image { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.panel-image img { width: 100%; height: 520px; object-fit: cover; }
.check-list { list-style: none; margin-top: 28px; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 30px; color: var(--dark-muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.industries-section { background: #fffaf0; }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.industries-grid span {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(199,149,62,.16);
  border-radius: 20px;
  color: #18202a;
  font-weight: 900;
  box-shadow: 0 12px 36px rgba(31,22,7,.05);
}
.mission-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.mission-card {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
}
.mission-card p { color: rgba(251,250,245,.74); }
.company-info-card {
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(199,149,62,.18);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(31,22,7,.07);
}
.company-info-card p { margin-top: 12px; color: var(--dark-muted); }
.company-info-card a { color: #8d6120; font-weight: 800; }
.cta-section {
  padding: 105px 0;
  background: linear-gradient(rgba(5,8,13,.88), rgba(5,8,13,.88)), url("assets/hero-management.svg") center/cover;
  color: var(--text);
}
.cta-box { max-width: 900px; text-align: center; }
.cta-box .eyebrow { justify-content: center; }
.cta-box p { color: rgba(251,250,245,.78); max-width: 760px; margin-inline: auto; }
.contact-details { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }
.contact-details a, .contact-details span {
  padding: 14px 18px;
  border: 1px solid rgba(199,149,62,.38);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(255,255,255,.06);
}
.site-footer { padding: 64px 0 28px; color: rgba(251,250,245,.78); background: #05080d; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr .7fr 1fr; gap: 42px; padding-bottom: 42px; border-bottom: 1px solid rgba(199,149,62,.16); }
.footer-grid img { width: 280px; height: 74px; object-fit: contain; margin-bottom: 18px; }
.footer-grid h4 { color: var(--gold-light); margin-bottom: 14px; }
.footer-grid a { display: block; margin: 8px 0; }
.footer-bottom { padding-top: 24px; color: rgba(251,250,245,.55); font-size: .92rem; }
.page-hero { min-height: 70vh; position: relative; display: flex; align-items: center; color: var(--text); overflow: hidden; }
.page-hero-content { position: relative; z-index: 2; max-width: 920px; padding-top: 112px; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 5.5rem); }
.page-hero p { max-width: 760px; color: rgba(251,250,245,.82); font-size: 1.15rem; }
.legal-hero {
  min-height: 52vh;
  background: linear-gradient(rgba(5,8,13,.9), rgba(5,8,13,.9)), url("assets/hero-management.svg") center/cover;
}
.legal-content {
  max-width: 920px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(199,149,62,.18);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(31,22,7,.07);
  padding: 42px;
}
.legal-content h2 { font-family: "Inter", Arial, sans-serif; font-size: 1.35rem; letter-spacing: 0; margin-top: 30px; margin-bottom: 10px; }
.legal-content p { color: var(--dark-muted); margin-top: 14px; }
.legal-content a { color: #8d6120; font-weight: 800; }
.legal-note { padding: 18px; border-radius: 18px; background: #fff7e4; border: 1px solid rgba(199,149,62,.24); }
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2000;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-content {
  width: min(980px, 100%);
  margin-inline: auto;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  color: var(--text);
  background: rgba(5,8,13,.96);
  border: 1px solid rgba(199,149,62,.34);
  border-radius: 22px;
  box-shadow: 0 22px 70px rgba(0,0,0,.35);
}
.cookie-content h3 { font-family: "Inter", Arial, sans-serif; font-size: 1rem; margin-bottom: 6px; }
.cookie-content p { color: rgba(251,250,245,.78); font-size: .92rem; }
.cookie-content a { color: var(--gold-light); font-weight: 800; }
.cookie-actions { display: flex; gap: 10px; }
.btn-cookie { min-height: 42px; padding: 0 18px; border-radius: 999px; font-weight: 800; cursor: pointer; }
.btn-cookie-primary { border: 0; color: #07111f; background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.btn-cookie-secondary { color: var(--text); border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.06); }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .site-nav { gap: 16px; font-size: .84rem; }
  .brand { width: 255px; }
  .cards-grid, .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .two-column, .split-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    inset: 88px 0 auto 0;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background: rgba(5,8,13,.98);
    border-bottom: 1px solid rgba(199,149,62,.18);
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: .28s ease;
  }
  .site-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .brand { width: 235px; height: 62px; }
  .hero { min-height: 850px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(5,8,13,.95), rgba(5,8,13,.72)); }
  .section { padding: 78px 0; }
  .cards-grid, .industries-grid, .mission-grid, .feature-grid, .footer-grid { grid-template-columns: 1fr; }
  .feature-grid article { border-right: 0; border-bottom: 1px solid rgba(199,149,62,.18); }
  .split-panel.light { padding: 18px; }
  .panel-image img { height: 360px; }
  .contact-details a, .contact-details span { width: 100%; border-radius: 18px; }
  .cookie-content { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero-content, .page-hero-content { padding-top: 120px; }
  .hero-actions .btn { width: 100%; }
  h1 { font-size: clamp(2.45rem, 14vw, 4rem); }
  .brand { width: 220px; }
  .legal-content { padding: 28px; }
}
