:root {
  --gold: #c8a85b;
  --cream: #f5f0e8;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(7, 10, 14, 0.56), rgba(7, 10, 14, 0.96) 78%),
    url("assets/IMG_2278.jpg") center 42% / cover fixed;
  font-family: Inter, system-ui, sans-serif;
}

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

.placeholder-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1610px, calc(100% - 48px));
  margin: 0 auto;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(200, 168, 91, 0.35);
}

.placeholder-brand {
  display: grid;
  gap: 0.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.placeholder-brand strong {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1;
}

.placeholder-brand span,
.placeholder-brand small {
  font-size: 0.68rem;
  font-weight: 700;
}

.home-link {
  border: 1px solid rgba(255, 255, 255, 0.38);
  padding: 0.8rem 1rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

main {
  display: grid;
  min-height: calc(100vh - 120px);
  place-items: center;
  padding: 4rem 24px 7rem;
}

.placeholder-content {
  width: min(900px, 100%);
}

.eyebrow {
  margin-bottom: 1.25rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  margin: 0 0 1.5rem;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 1;
}

.lede {
  max-width: 620px;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.65;
}

.placeholder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.primary-action,
.secondary-action {
  padding: 0.95rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.primary-action {
  background: var(--gold);
  color: #14100a;
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.4);
}

@media (max-width: 600px) {
  .placeholder-header {
    width: calc(100% - 32px);
  }

  .home-link {
    padding: 0.7rem;
    letter-spacing: 0.12em;
  }

  h1 {
    font-size: 3.2rem;
  }
}
