:root {
  --cream: #FFF6F1;
  --espresso: #271913;
  --oxblood: #550101;
  --focus: #9B5C5C;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--cream);
  color: var(--espresso);
}

body {
  min-height: 100svh;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.holding-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 48px 32px;
}

.content {
  width: min(100%, 980px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  display: block;
  width: 92px;
  height: auto;
  margin-bottom: 42px;
}

h1 {
  margin: 0;
  max-width: 980px;
  font-family: "Instrument Serif", serif;
  font-size: clamp(52px, 5.2vw, 80px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.02em;
}

p {
  max-width: 780px;
  margin: 34px 0 0;
  font-size: 18px;
  line-height: 1.55;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 34px;
  padding: 14px 32px;
  border: 1px solid var(--oxblood);
  border-radius: 8px;
  background: var(--oxblood);
  color: var(--cream);
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.cta:hover {
  transform: translateY(-2px);
  background: var(--espresso);
  border-color: var(--espresso);
}

.cta:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

@media (max-width: 768px) {
  .holding-page {
    padding: 40px 24px;
  }

  .content {
    max-width: 680px;
  }

  .logo {
    width: 76px;
    margin-bottom: 32px;
  }

  h1 {
    font-size: clamp(44px, 9vw, 60px);
    line-height: 1.08;
  }

  p {
    max-width: 600px;
    margin-top: 28px;
    font-size: 17px;
    line-height: 1.55;
  }

  .cta {
    margin-top: 28px;
  }
}

@media (max-width: 480px) {
  .holding-page {
    padding: 32px 20px;
  }

  .logo {
    width: 66px;
    margin-bottom: 28px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  p {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.55;
  }

  .cta {
    min-height: 48px;
    margin-top: 26px;
    padding: 12px 28px;
    font-size: 16px;
    line-height: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta {
    transition: none;
  }
}
