:root {
  --black: #0c0a08;
  --surface: #161210;
  --surface-2: #1e1b17;
  --white: #f5f5f5;
  --gray-200: #d0d0d0;
  --gray-400: #8f8a85;
  --gray-800: #282320;
  --accent: #c8956c;
  --accent-dark: #a07850;
  --accent-raw: #b03a2e;
  --font-body: "Source Serif 4", Georgia, serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 17px;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 30;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

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

img {
  max-width: 100%;
  display: block;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 1rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, rgba(8, 6, 5, 0.88) 0%, rgba(8, 6, 5, 0.28) 78%, transparent 100%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand img {
  width: 2.7rem;
  height: 2.7rem;
  object-fit: cover;
  border-radius: 50%;
}

.brand span {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.08rem;
}

.status-pill {
  margin: 0;
  border: 1px solid rgba(200, 149, 108, 0.5);
  border-radius: 999px;
  padding: 0.38rem 0.72rem;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-display);
  background: rgba(12, 10, 8, 0.55);
}

main,
.footer {
  width: min(1120px, calc(100% - 2.4rem));
  margin: 0 auto;
}

main {
  padding-top: 7.1rem;
}

.hero {
  position: relative;
  min-height: 78vh;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  border-radius: 4px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.48) grayscale(22%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 4, 4, 0.7) 0%, rgba(5, 4, 4, 0.25) 25%, rgba(5, 4, 4, 0.88) 100%),
    linear-gradient(90deg, rgba(8, 6, 5, 0.76) 0%, rgba(8, 6, 5, 0.22) 46%, rgba(8, 6, 5, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(1.2rem, 2.4vw, 2rem);
  max-width: 820px;
  display: flex;
  min-height: 78vh;
  flex-direction: column;
  justify-content: flex-end;
}

.section-label {
  margin: 0 0 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-display);
}

h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 7.6vw, 6rem);
  line-height: 0.85;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 35ch;
  margin: 1rem 0 0;
  color: var(--gray-200);
  line-height: 1.68;
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  padding: 0.7rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.75rem;
  font-family: var(--font-display);
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.25s, border-color 0.25s;
}

.btn:hover {
  border-color: var(--accent-dark);
  background: rgba(200, 149, 108, 0.11);
}

.btn-accent {
  background: var(--accent-raw);
  border-color: var(--accent-raw);
}

.status-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.status-card,
.contact-placeholder,
.entity-data {
  border: 1px solid var(--gray-800);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
}

.status-card {
  padding: 1rem 1.1rem;
}

.status-card h2,
.contact-placeholder h2,
.entity-data h2 {
  margin: 0;
  font-family: var(--font-display);
}

.status-card h2 {
  font-size: 1.4rem;
}

.status-card p:last-child {
  margin: 0.65rem 0 0;
  color: var(--gray-200);
  line-height: 1.62;
}

.contact-placeholder {
  margin-top: 0.9rem;
  padding: 1rem 1.1rem 1.2rem;
}

.contact-placeholder h2 {
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.signal-form {
  margin-top: 0.95rem;
  display: flex;
  gap: 0.65rem;
}

.signal-form input,
.signal-form button {
  min-height: 2.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  font: inherit;
}

.signal-form input {
  flex: 1;
  padding: 0 0.9rem;
  color: var(--white);
  background: rgba(0, 0, 0, 0.24);
}

.signal-form button {
  padding: 0 1rem;
  color: var(--white);
  background: rgba(200, 149, 108, 0.11);
  cursor: pointer;
}

.signal-note {
  margin: 0.65rem 0 0;
  color: var(--gray-400);
  font-size: 0.88rem;
}

.footer {
  padding: 0.9rem 0 2rem;
}

.footer-headline {
  margin: 0 0 0.7rem;
  color: var(--gray-200);
}

.entity-data {
  padding: 1rem 1.05rem;
}

.entity-data h2 {
  margin-bottom: 0.7rem;
  font-size: 1.4rem;
}

.entity-grid {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 0.8rem;
}

.entity-grid div {
  padding: 0.65rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
}

.entity-grid dt {
  font-size: 0.72rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-family: var(--font-display);
}

.entity-grid dd {
  margin: 0.32rem 0 0;
  line-height: 1.5;
}

.entity-grid a {
  color: var(--accent);
}

@media (max-width: 1024px) {
  .status-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 16px;
  }

  main,
  .footer {
    width: min(100% - 1.3rem, 1120px);
  }

  .topbar {
    padding: 0.9rem 0.85rem;
  }

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

  .status-pill {
    font-size: 0.66rem;
  }

  .hero,
  .hero-content {
    min-height: 64vh;
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
    line-height: 0.9;
  }

  .hero-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .signal-form {
    flex-direction: column;
  }

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