:root {
  --ink: #111111;
  --muted: #666a73;
  --soft: #f5f5f2;
  --line: #e8e6df;
  --accent: #c9a45d;
  --accent-dark: #9a7637;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--white);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(245, 245, 242, 0.78), rgba(255, 255, 255, 0) 42%),
    var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.page-shell {
  width: min(940px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 0;
}

.hero {
  width: 100%;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin: 0 auto 28px;
  font-size: clamp(44px, 8vw, 86px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

.copy-stack {
  max-width: 720px;
  margin: 0 auto 34px;
}

.copy-stack p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.copy-stack p:last-child {
  margin-bottom: 0;
}

.copy-stack a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  box-shadow: inset 0 -1px 0 var(--accent);
}

.copy-stack strong {
  color: var(--ink);
  font-weight: 800;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 22px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.14);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #252525;
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.18);
}

.contact-link {
  display: block;
  width: fit-content;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.contact-link:hover {
  color: var(--ink);
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 28px, 1180px);
    padding: 40px 0;
  }

  h1 {
    font-size: clamp(38px, 13vw, 56px);
  }

  .button {
    width: 100%;
  }

  .contact-link {
    width: 100%;
  }
}
