:root {
  --ink: #070707;
  --cream: #f4efe8;
  --muted: #b9b1aa;
  --wine: #8f1d25;
  --wine-bright: #b3242d;
  --line: rgba(244, 239, 232, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #050505;
  color: var(--cream);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 28px clamp(24px, 5vw, 70px) 42px;
  background:
    radial-gradient(circle at 68% 40%, rgba(143,29,37,.28), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(143,29,37,.18), transparent 24%),
    linear-gradient(135deg, #070707 0%, #0d0a0a 56%, #050505 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(115deg, transparent 0 92px, rgba(255,255,255,.015) 94px 96px, transparent 98px 160px);
  opacity: .35;
}

.site-header {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.brand { display: inline-flex; align-items: center; }
.header-logo { width: 116px; height: auto; display: block; }

.nav-link {
  letter-spacing: .28em;
  font-size: 12px;
  color: #d8d1cb;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, 66vw);
  padding-top: clamp(34px, 5.5vh, 64px);
}

.eyebrow {
  margin: 0 0 22px;
  color: #cf3943;
  letter-spacing: .34em;
  font-weight: 700;
  font-size: 12px;
}

h1, h2 { margin: 0; }

h1 {
  max-width: 720px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(62px, 8.5vw, 126px);
  line-height: .82;
  letter-spacing: -.05em;
  font-weight: 600;
}

h1 em {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(244,239,232,.78);
  font-weight: 600;
}

.lede {
  max-width: 650px;
  margin: 38px 0 0;
  color: #c8c0ba;
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1.55;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.button {
  min-height: 58px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid var(--line);
  letter-spacing: .19em;
  font-size: 12px;
  font-weight: 700;
  transition: .2s ease;
}

.button.primary {
  background: var(--wine);
  border-color: var(--wine);
}

.button.primary:hover { background: var(--wine-bright); transform: translateY(-1px); }
.button.secondary:hover { background: rgba(255,255,255,.05); }

.scroll-note {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 26px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: .28em;
  font-size: 9px;
  color: rgba(244,239,232,.45);
}

.intro, .about {
  padding: 92px clamp(24px, 7vw, 110px);
  background: #f2eee7;
  color: #111;
}

.intro h2, .about h2 {
  max-width: 950px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -.04em;
}

.intro > p:last-child,
.about > p {
  max-width: 780px;
  margin: 28px 0 0;
  color: #4b4642;
  font-size: 19px;
  line-height: 1.7;
}

.about {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: end;
  background: #0a0a0a;
  color: var(--cream);
}

.about > p { color: #bdb5af; margin: 0; }

@media (max-width: 820px) {
  .hero {
    min-height: 100svh;
    padding: 26px 20px 32px;
  }

  .header-logo { width: 92px; }
  .nav-link { display: none; }

  .hero-content {
    width: 100%;
    padding-top: 28px;
  }

  .eyebrow {
    max-width: 280px;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  h1 {
    font-size: clamp(58px, 20vw, 94px);
    line-height: .86;
  }

  .lede {
    width: 88%;
    font-size: 18px;
    margin-top: 28px;
  }

  .actions {
    width: 100%;
    margin-top: 28px;
  }

  .button {
    width: 100%;
    min-height: 58px;
  }


  .scroll-note { display: none; }

  .intro, .about { padding: 70px 24px; }
  .about { grid-template-columns: 1fr; gap: 34px; }
}
