:root {
  --black: #050608;
  --charcoal: #101217;
  --cream: #f6f1e8;
  --white: #ffffff;
  --muted: #b8b1a6;
  --gold: #d5aa4f;
  --gold-soft: #f2d58a;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Helvetica, Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 92px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 44px;
  background: rgba(5, 6, 8, 0.66);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 78px;
  width: auto;
  object-fit: contain;
  display: block;
}

.main-nav {
  display: flex;
  gap: 32px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.main-nav a {
  opacity: 0.88;
}

.main-nav a:hover {
  color: var(--gold);
  opacity: 1;
}

.portal-button {
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  padding: 14px 22px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
}

.hero {
  min-height: 690px;
  padding: 155px 44px 70px;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.96), rgba(5, 6, 8, 0.67) 42%, rgba(5, 6, 8, 0.10)),
    linear-gradient(180deg, rgba(5, 6, 8, 0.02), rgba(5, 6, 8, 0.82)),
    url("background.png") center/cover no-repeat;
}

.hero-content {
  max-width: 670px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

h1,
h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(54px, 7vw, 86px);
  line-height: 0.98;
}

.accent-line {
  width: 52px;
  height: 2px;
  background: var(--gold);
  margin: 28px 0;
}

.hero-text {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  min-width: 170px;
  padding: 15px 24px;
  border: 1px solid var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #111;
}

.button.secondary {
  background: rgba(0, 0, 0, 0.18);
  color: var(--white);
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #0e1116;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-strip article {
  display: flex;
  gap: 22px;
  padding: 34px 44px;
  border-right: 1px solid var(--line);
}

.value-strip article:last-child {
  border-right: 0;
}

.value-icon {
  color: var(--gold);
  font-size: 40px;
  line-height: 1;
}

.value-strip h3,
.service-card h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.value-strip p {
  color: var(--muted);
  font-size: 14px;
}

.section-light {
  background: var(--cream);
  color: #111;
}

.services {
  padding: 78px 9vw 86px;
}

.section-intro,
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 46px;
}

.section-intro h2,
.dark-section h2,
.industries h2,
.contact h2 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.04;
}

.section-intro > p,
.split p {
  color: #4f4a43;
  max-width: 560px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  background: #fffdf9;
  border: 1px solid var(--dark-line);
  padding: 34px;
  min-height: 240px;
}

.service-icon {
  color: #b98520;
  font-size: 42px;
  display: block;
  margin-bottom: 22px;
}

.service-card p {
  color: #514c45;
  margin: 12px 0 22px;
}

.service-card a {
  color: #9d711f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
}

.dark-section {
  padding: 86px 9vw;
  background: #08090c;
}

.dark-section .split {
  margin-bottom: 0;
}

.dark-section .split p {
  color: var(--muted);
  margin-bottom: 16px;
}

.industries {
  padding: 88px 9vw;
  background: #111317;
  text-align: center;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  max-width: 1180px;
  margin: 42px auto 0;
  border: 1px solid var(--line);
}

.industry-grid article {
  background: #0b0d11;
  padding: 42px;
  text-align: left;
}

.industry-grid h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 30px;
  margin-bottom: 12px;
}

.industry-grid p {
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #050608;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats article {
  padding: 34px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stats article:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  color: var(--gold);
  font: 48px/1 Georgia, serif;
  margin-bottom: 10px;
}

.stats span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 90px 9vw;
}

.contact p {
  color: #4f4a43;
  margin: 18px 0;
}

.contact-line a {
  color: #9d711f;
  font-weight: 700;
}

form {
  display: grid;
  gap: 16px;
}

input,
textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: transparent;
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

button {
  font: inherit;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 44px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .main-nav,
  .portal-button {
    display: none;
  }

  .site-header {
    padding: 0 22px;
  }

  .logo-img {
    height: 62px;
  }

  .hero {
    padding: 135px 24px 60px;
  }

  .value-strip,
  .service-grid,
  .section-intro,
  .split,
  .industry-grid,
  .stats,
  .contact {
    grid-template-columns: 1fr;
  }

  .value-strip article,
  .stats article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .services,
  .dark-section,
  .industries,
  .contact {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 560px) {
  .logo-img {
    height: 52px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-actions {
    flex-direction: column;
  }

  footer {
    flex-direction: column;
    padding: 28px 24px;
  }
}
