* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  min-height: 100%;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050505;
  color: #fff;
}
body {
  min-height: 100vh;
}
.page {
  width: 100%;
}
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  background: #050505 url("images/hero.jpg") center/contain no-repeat;
  position: relative;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.42), rgba(5,5,5,0.9));
}
.hero__content {
  position: relative;
  max-width: 720px;
  padding: 2rem;
}
.eyebrow {
  display: inline-block;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  color: #e3d7c8;
}
h1 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin: 0;
}
.subtitle {
  margin: 1.5rem auto 2.5rem;
  font-size: 1.05rem;
  max-width: 520px;
  color: rgba(255,255,255,0.82);
}
.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.hero__button:hover {
  background: #fff;
  color: #050505;
  transform: translateY(-2px);
}
.page--reconstructed {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 3rem 1.5rem;
}
.card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  width: min(1200px, 100%);
  align-items: center;
}
.card__image {
  min-height: 420px;
  background: #050505 url("images/hero.jpg") center/contain no-repeat;
  border-radius: 1rem;
}
.card__text {
  display: grid;
  gap: 1.25rem;
}
.card__text h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}
.card__text p {
  margin: 0;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
}
.social-row {
  display: grid;
  gap: 0.75rem;
  align-items: center;
}
.social-row span {
  font-size: 0.95rem;
  color: rgba(227,215,200,0.92);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.social-links a:hover {
  background: rgba(227,215,200,0.18);
  transform: translateY(-2px);
}
.social-links svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}
.hero__button--secondary {
  border-color: #e3d7c8;
  color: #e3d7c8;
}
.hero__button--secondary:hover {
  background: #e3d7c8;
  color: #050505;
}
@media (max-width: 900px) {
  .card {
    grid-template-columns: 1fr;
  }
  .card__image {
    min-height: 320px;
  }
}
@media (max-width: 640px) {
  .hero__content {
    padding: 1.25rem;
  }
  .hero__button {
    width: 100%;
  }
}
