:root {
  --bg: #050505;
  --bg-soft: #101010;
  --card: #171717;
  --text: #f5e7c2;
  --text-muted: #ceb984;
  --brand: #d4af37;
  --brand-dark: #b9932a;
  --line: #3a2f16;
  --white: #fdf7e7;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f1d074, var(--brand-dark));
  font-size: 0.85rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.site-nav a:hover {
  color: #f1d074;
}

.menu-btn {
  display: none;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: transparent;
  color: var(--white);
  border-radius: 8px;
  padding: 6px 9px;
}

.hero {
  background: radial-gradient(circle at top right, #2a2210, var(--bg));
  color: var(--white);
  padding: 100px 0 84px;
}

.hero-grid {
  display: grid;
  gap: 46px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.hero-visual {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
  min-height: 320px;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05) brightness(0.78);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1d074;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
}

p {
  line-height: 1.7;
  margin: 0;
}

.hero-text {
  margin-top: 18px;
  color: #ead8a3;
  max-width: 640px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  background: var(--brand);
  color: var(--white);
  transition: 0.2s ease;
  box-shadow: 0 10px 22px rgba(212, 175, 55, 0.25);
}

.btn:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #f3e3b7;
  border: 1px solid rgba(212, 175, 55, 0.42);
  box-shadow: none;
}

.btn-small {
  padding: 8px 14px;
  font-size: 0.92rem;
}

.hero-card {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.hero-card h3 {
  margin-bottom: 16px;
}

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

.hero-card li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-card li:last-child {
  border-bottom: none;
}

.hero-note {
  margin-top: 14px;
  color: #e8d39c;
  font-size: 0.95rem;
}

.trust-strip {
  padding: 28px 0;
  background: #0d0d0d;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.trust-items a {
  text-align: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid #4a3b1a;
  background: #141414;
  color: #e8d39c;
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.2s ease;
}

.trust-items a:hover {
  border-color: #d4af37;
  color: #f5e7c2;
  transform: translateY(-1px);
}

.capability-card {
  scroll-margin-top: 96px;
}

.capability-media {
  margin: -24px -24px 18px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.capability-media img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.72);
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: #0c0c0c;
}

.cards {
  margin-top: 24px;
  display: grid;
  gap: 20px;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

.card p {
  color: var(--text-muted);
}

.card h3 {
  font-size: 1.16rem;
}

.case-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--brand-dark);
  font-weight: 600;
}

.about-grid {
  display: grid;
  gap: 28px;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

.stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stats li {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--card);
  padding: 18px;
  text-align: center;
}

.stats strong {
  display: block;
  font-size: 1.55rem;
  margin-bottom: 5px;
}

.stats span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.contact-form {
  margin-top: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  gap: 14px;
}

.contact-details {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.contact-details p {
  color: var(--text-muted);
}

.contact-details strong {
  color: var(--text);
}

.contact-details a {
  color: var(--brand-dark);
  font-weight: 600;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #5a4820;
  border-radius: 12px;
  font: inherit;
  padding: 11px 12px;
  color: var(--text);
  background: #111111;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(212, 175, 55, 0.45);
  border-color: #d4af37;
}

.form-tip {
  min-height: 24px;
  color: #f1d074;
}

.site-footer {
  background: var(--bg-soft);
  color: #dfc985;
  padding: 28px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .cards.three,
  .cards.two {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 260px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .trust-items {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .menu-btn {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    right: 4%;
    top: 72px;
    flex-direction: column;
    align-items: stretch;
    width: min(320px, 92%);
    background: var(--bg-soft);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 12px;
    gap: 8px;
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 8px;
    border-radius: 8px;
  }

  .trust-items {
    grid-template-columns: 1fr;
  }

  .capability-media img {
    height: 160px;
  }
}
