:root {
  --black: #080806;
  --charcoal: #11100d;
  --panel: #17140e;
  --panel-soft: #211c13;
  --gold: #d9af62;
  --gold-bright: #f0d28a;
  --gold-deep: #8d6932;
  --text: #f7f1e5;
  --muted: #c9bda9;
  --line: rgba(217, 175, 98, 0.24);
  --shadow: rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 0%, rgba(217, 175, 98, 0.16), transparent 28rem),
    linear-gradient(135deg, #070706 0%, #13100b 48%, #080806 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 6, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 60%;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  color: var(--muted);
  font-size: 0.92rem;
}

.main-nav a,
.nav-cta {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 4px;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-cta {
  padding: 0 18px;
  border: 1px solid var(--line);
  color: var(--gold-bright);
  font-size: 0.9rem;
}

.nav-cta:hover {
  border-color: var(--gold);
  background: rgba(217, 175, 98, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(54px, 8vw, 112px) clamp(20px, 5vw, 72px) 48px;
}

.hero-copy,
.hero-panel,
.section,
.capabilities,
.contact,
.site-footer {
  width: min(1160px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.4rem, 5.4vw, 5.4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 3.25rem);
  font-weight: 800;
}

h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.25;
}

.hero-lede {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.32rem);
}

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

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 48%, var(--gold-deep));
  color: #171108;
  box-shadow: 0 14px 34px rgba(217, 175, 98, 0.18);
}

.button.secondary {
  border-color: var(--line);
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.02);
}

.hero-panel {
  justify-self: end;
  max-width: 430px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(33, 28, 19, 0.94), rgba(14, 12, 8, 0.94));
  box-shadow: 0 28px 80px var(--shadow);
}

.hero-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.7;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
}

.hero-panel div {
  padding: 22px 6px 4px;
}

.metric {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-panel strong {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.05;
}

.hero-panel p,
.intro > p,
.distinction > p,
.contact p,
.product-card p,
.service-list p,
.capabilities p {
  color: var(--muted);
}

.section {
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 0px);
}

.intro,
.distinction,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.68fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.intro > p,
.distinction > p,
.contact p {
  margin: 36px 0 0;
  font-size: 1.08rem;
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 0px) clamp(58px, 8vw, 104px);
}

.capabilities article,
.product-card,
.service-list div {
  border: 1px solid var(--line);
  background: rgba(23, 20, 14, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.capabilities article {
  min-height: 260px;
  padding: 30px;
}

.capabilities span {
  display: block;
  margin-bottom: 52px;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.82fr);
  gap: 18px;
}

.product-card {
  padding: clamp(26px, 4vw, 44px);
  border-radius: 8px;
}

.product-card.featured {
  background:
    linear-gradient(135deg, rgba(217, 175, 98, 0.13), transparent 42%),
    rgba(23, 20, 14, 0.86);
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 42px;
  color: var(--gold-bright);
}

.product-topline span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-topline strong {
  font-size: 1.1rem;
}

.product-card h3 {
  max-width: 560px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.35rem, 2.25vw, 2.25rem);
  font-weight: 800;
}

.product-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 26px;
  color: #eadfc9;
}

.product-card li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.distinction {
  align-items: center;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-list div {
  min-height: 220px;
  padding: 30px;
  border-radius: 8px;
}

.contact {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto clamp(32px, 6vw, 72px);
  padding: clamp(34px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 175, 98, 0.15), transparent 52%),
    rgba(17, 16, 13, 0.9);
}

.contact h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2.35rem);
  line-height: 1.15;
}

.contact .button {
  justify-self: end;
  align-self: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 26px clamp(20px, 5vw, 0px) 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .intro,
  .distinction,
  .contact,
  .product-grid,
  .service-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-panel,
  .contact .button {
    justify-self: stretch;
  }

  .capabilities {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .capabilities article {
    min-height: auto;
  }

  .capabilities span {
    margin-bottom: 28px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 16px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .nav-cta {
    width: 100%;
  }

  .hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .product-topline,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
