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

:root {
  --void: #030304;
  --ink: #09090d;
  --panel: #101016;
  --line: rgba(238, 231, 214, 0.16);
  --text: #eee7d6;
  --muted: #aaa190;
  --gold: #d6b35a;
  --blood: #5b1722;
  --teal: #4faaa0;
}

html {
  background: var(--void);
  color: var(--text);
  font-family: "Rajdhani", Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(1px 1px at 12% 18%, rgba(238, 231, 214, 0.55), transparent 2px),
    radial-gradient(1px 1px at 84% 22%, rgba(214, 179, 90, 0.4), transparent 2px),
    radial-gradient(1px 1px at 68% 76%, rgba(79, 170, 160, 0.34), transparent 2px),
    linear-gradient(145deg, #030304 0%, #09090d 48%, #13070b 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(238, 231, 214, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 231, 214, 0.025) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

a {
  color: inherit;
}

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

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Michroma", Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-decoration: none;
  white-space: nowrap;
}

.mark {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 0 18px rgba(238, 231, 214, 0.4), 0 0 42px rgba(214, 179, 90, 0.18);
  position: relative;
}

.mark::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  top: 1px;
  left: 8px;
  border-radius: 50%;
  background: var(--void);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a,
.site-footer span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: calc(100vh - 65px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 48px;
  align-items: center;
  padding: 64px min(5vw, 64px) 72px;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 830px;
  min-width: 0;
}

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

h1,
h2,
h3 {
  font-family: "Michroma", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  font-size: 4.8rem;
  line-height: 0.95;
  margin-bottom: 26px;
  text-shadow: 0 0 24px rgba(238, 231, 214, 0.24);
}

h2 {
  font-size: 2rem;
  line-height: 1.2;
  max-width: 720px;
}

h3 {
  font-size: 1rem;
  margin-bottom: 14px;
}

p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.hero-line {
  max-width: 620px;
  color: #d8cfbe;
  font-size: 1.35rem;
  line-height: 1.45;
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  background: var(--text);
  color: var(--void);
  border-color: var(--text);
}

.button.secondary {
  background: rgba(238, 231, 214, 0.04);
}

.hero-art {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 179, 90, 0.12), transparent 34%),
    linear-gradient(225deg, rgba(79, 170, 160, 0.1), transparent 32%),
    rgba(16, 16, 22, 0.74);
  overflow: hidden;
}

.hero-logo {
  display: block;
  width: min(100%, 380px);
  height: auto;
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(238, 231, 214, 0.18));
}

.split-section,
.feature-grid,
.band,
.page-shell {
  padding: 72px min(5vw, 64px);
}

.split-section > *,
.feature-grid > *,
.legal-block section,
.contact-panel {
  min-width: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  border-bottom: 1px solid var(--line);
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.feature-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 16, 22, 0.62);
}

.feature-grid span {
  display: inline-block;
  color: var(--teal);
  font-family: "Michroma", Arial, sans-serif;
  font-size: 0.72rem;
  margin-bottom: 28px;
}

.band {
  max-width: 980px;
}

.band p {
  max-width: 720px;
  margin-top: 20px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 26px min(5vw, 64px);
  border-top: 1px solid var(--line);
  background: var(--void);
}

.page-shell {
  max-width: 940px;
}

.page-shell h1 {
  font-size: 3rem;
}

.page-intro {
  max-width: 720px;
  margin-bottom: 42px;
}

.legal-block,
.contact-panel {
  display: grid;
  gap: 22px;
}

.legal-block section,
.contact-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 16, 22, 0.66);
}

.legal-block h2 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.contact-panel a {
  color: var(--gold);
  font-weight: 700;
}

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

  .nav-links {
    justify-content: flex-start;
  }

  .hero,
  .split-section,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
    width: 100%;
    max-width: 100vw;
  }

  .hero-art {
    min-height: 320px;
    width: 100%;
    max-width: 100%;
  }

  .hero-logo {
    width: min(100%, 320px);
    max-height: 340px;
  }

  h1 {
    font-size: 3.2rem;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .split-section,
  .feature-grid,
  .band,
  .page-shell,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand-lockup {
    font-size: 0.7rem;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 0.72rem;
  }

  h1,
  .page-shell h1 {
    font-size: 2.28rem;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 1.55rem;
  }

  .hero-line {
    font-size: 1.12rem;
    max-width: calc(100vw - 40px);
  }

  .hero-copy,
  .hero-art {
    max-width: 350px;
  }

  .eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.11em;
    max-width: calc(100vw - 40px);
  }

  .button {
    width: 100%;
  }

  .hero-logo {
    width: min(100%, 280px);
  }
}
