/*
  Temporary ArchiveTech placeholder styles.
  The page keeps the deployed visual identity while the full site is held back.
*/
:root {
  color-scheme: dark;
  --carbon: #101414;
  --amber: #c98228;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--carbon);
  color: #fff;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.hero {
  align-items: flex-end;
  background: var(--carbon);
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  padding: 112px clamp(20px, 5vw, 72px) 64px;
  position: relative;
}

.hero-image,
.hero-shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 12, 11, 0.9) 0%, rgba(7, 12, 11, 0.58) 46%, rgba(7, 12, 11, 0.22) 100%),
    linear-gradient(0deg, rgba(7, 12, 11, 0.78) 0%, rgba(7, 12, 11, 0.08) 48%);
}

.hero-content {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

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

.hero h1 {
  font-size: clamp(3.8rem, 9vw, 7.8rem);
  line-height: 0.94;
  margin: 0;
  overflow-wrap: anywhere;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  line-height: 1.5;
  margin: 26px 0 0;
  max-width: 650px;
}

@media (max-width: 560px) {
  .hero {
    min-height: 100svh;
    padding-bottom: 42px;
    padding-top: 92px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }
}
