:root {
  --background: #fffaf7;
  --surface: rgba(255, 255, 255, 0.78);
  --ink: #221816;
  --muted: #766761;
  --accent: #c84a36;
  --accent-soft: #f5d8d1;
  --line: rgba(34, 24, 22, 0.1);
  --shadow: 0 28px 80px rgba(97, 54, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at 20% 20%, rgba(200, 74, 54, 0.12), transparent 32rem),
    radial-gradient(circle at 85% 85%, rgba(245, 216, 209, 0.7), transparent 24rem),
    var(--background);
  display: grid;
  grid-template-rows: 1fr auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(34, 24, 22, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 24, 22, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 72%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 72px;
  display: grid;
  align-content: center;
  gap: clamp(72px, 13vh, 140px);
}

.brand {
  display: flex;
  justify-content: flex-start;
}

.brand a {
  text-decoration: none;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(18px);
}

.hero {
  position: relative;
  max-width: 790px;
  padding: clamp(32px, 7vw, 80px);
  border: 1px solid var(--line);
  border-radius: clamp(28px, 5vw, 48px);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(24px, 5vw, 56px);
  top: clamp(24px, 5vw, 56px);
  width: clamp(52px, 10vw, 92px);
  aspect-ratio: 1;
  border-radius: 35% 65% 58% 42% / 44% 42% 58% 56%;
  background: linear-gradient(135deg, var(--accent), #e8876f);
  opacity: 0.18;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 28px;
  color: var(--accent);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.7rem, 10vw, 8.8rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.subheadline {
  max-width: 610px;
  margin: 34px 0 0;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.contact {
  margin: 36px 0 0;
  color: var(--ink);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.98rem;
}

.contact a {
  color: var(--accent);
  text-decoration-color: rgba(200, 74, 54, 0.32);
  text-underline-offset: 4px;
}

footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 28px;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.9rem;
}

footer p {
  margin: 0;
}

@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 28px, 1120px);
    padding-top: 20px;
    gap: 54px;
  }

  .hero {
    padding: 30px 24px 34px;
  }

  .hero::after {
    opacity: 0.12;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 5.6rem);
  }

  .subheadline {
    margin-top: 28px;
  }

  footer {
    width: min(100% - 28px, 1120px);
  }
}