@font-face {
  font-family: "Homoarakhn";
  src: url("images/homoarakhn.TTF?v=20260411b") format("truetype");
  font-weight: 400;
  font-style: normal;
}

:root {
  --ink: #111111;
  --muted: #e9e5dd;
  --sand: #f6f1e8;
  --accent: #8d2f23;
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #100f0f 0%, #211614 48%, var(--sand) 48%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  background: rgba(16, 15, 15, 0.72);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand span {
  font-family: "Homoarakhn", Arial, Helvetica, sans-serif;
  font-size: 32px;
  letter-spacing: 0.03em;
  color: #ffffff;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 15px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 32px 110px;
  isolation: isolate;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(16, 15, 15, 0.82) 5%, rgba(16, 15, 15, 0.48) 52%, rgba(141, 47, 35, 0.52) 100%),
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.08), transparent 40%);
}

.hero-content {
  position: relative;
  width: min(100%, 1120px);
  max-width: 1120px;
  padding: 40px 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(20, 18, 18, 0.45);
  box-shadow: var(--shadow);
  color: #ffffff;
}

.eyebrow {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f4dbca;
}

.hero h1 {
  max-width: 20ch;
  font-size: clamp(2.15rem, 4.2vw, 3.8rem);
  line-height: 0.98;
  text-wrap: balance;
  font-family: "Homoarakhn", Arial, Helvetica, sans-serif;
}

.hero-copy {
  max-width: 38rem;
  margin-top: 22px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: #ffffff;
  color: var(--ink);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.feature-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: calc(100% - 48px);
  max-width: 1100px;
  margin: -66px auto 0;
  padding-bottom: 88px;
}

.feature-card {
  padding: 28px 24px;
  border-radius: 22px;
  background: rgba(246, 241, 232, 0.94);
  box-shadow: var(--shadow);
}

.feature-card h2 {
  margin-bottom: 14px;
  font-size: 1.1rem;
  color: var(--accent);
}

.feature-card p {
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.82);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 32px 32px;
  background: var(--sand);
}

.site-footer p {
  color: rgba(17, 17, 17, 0.7);
}

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

.footer-links a {
  color: rgba(17, 17, 17, 0.78);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
}

@media (max-width: 860px) {
  .site-header {
    padding: 18px 20px;
  }

  .hero {
    padding: 48px 20px 90px;
  }

  .hero-content {
    padding: 28px 22px;
  }

  .hero h1 {
    max-width: none;
  }

  .feature-strip {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    max-width: 640px;
    margin-top: -34px;
    padding-bottom: 64px;
  }

  .site-footer {
    padding: 20px;
  }
}

@media (max-width: 620px) {
  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav,
  .footer-links {
    gap: 8px;
  }

  .brand span {
    font-size: 28px;
  }

  .hero {
    min-height: calc(100vh - 118px);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }
}
