:root {
  --ink: #151411;
  --muted: #6f695f;
  --paper: #f7f2ea;
  --line: rgba(21, 20, 17, 0.12);
  --warm: #d98d62;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 18% 18%, rgba(199, 230, 208, 0.75), transparent 28rem),
    radial-gradient(circle at 78% 72%, rgba(217, 141, 98, 0.2), transparent 24rem),
    linear-gradient(135deg, #fbf7ef 0%, var(--paper) 48%, #eee5d7 100%);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  opacity: 0.55;
}

.page-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 48px 20px;
}

.hero {
  width: min(100%, 980px);
  text-align: center;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  margin-bottom: clamp(38px, 6vw, 78px);
}

.brand-mark {
  display: block;
  width: clamp(108px, 16vw, 156px);
  height: auto;
}

.brand-name {
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.1rem, 4.6vw, 3.7rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

h1 {
  max-width: 890px;
  margin: 0 auto;
  font-family: "Instrument Serif", serif;
  font-size: clamp(3.1rem, 9vw, 8.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.contact {
  margin: clamp(28px, 4vw, 42px) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

a:hover {
  color: #875233;
}

@media (max-width: 760px) {
  .page-shell {
    padding: 28px 14px;
  }
}
