:root {
  --bg: #f4efe6;
  --fg: #1a1815;
  --dim: #7a746b;
  --line: rgba(26, 24, 21, 0.12);
  --accent: #6b3f32;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 400;
  background:
    radial-gradient(900px 480px at 80% -10%, rgba(107, 63, 50, 0.07), transparent 55%),
    var(--bg);
  color: var(--fg);
  min-height: 100vh;
  line-height: 1.6;
}

#field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cursor {
  display: none;
  position: fixed;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: var(--fg);
  pointer-events: none;
  z-index: 20;
  mix-blend-mode: difference;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.cursor.on { transform: scale(2.2); opacity: .7; }

@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a { cursor: none; }
  .cursor { display: block; }
}

header, main, footer { position: relative; z-index: 1; }

header {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--fg);
  text-decoration: none;
}
.mark {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}
.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.wordmark b {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.head-cta {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--fg);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  transition: background .3s ease;
}
.head-cta:hover { background: var(--accent); }

.pitch {
  max-width: 760px;
  margin: 0 auto;
  padding: 10vh 24px 8vh;
  position: relative;
  z-index: 1;
}
.eyebrow {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pitch h1 {
  font-size: clamp(32px, 5.4vw, 52px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 18ch;
}
.offers {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 8px;
}
.offers li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--dim);
}
.btn {
  display: inline-block;
  background: var(--fg);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 999px;
}
.btn:hover { background: var(--accent); }
.wordmark i {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

nav { display: flex; gap: 28px; }
nav a {
  color: var(--dim);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color .4s ease;
}
nav a:hover { color: var(--fg); }

.hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 16vh 24px 12vh;
}

.hero p:first-child {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

h1 {
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.lead {
  margin-top: 32px;
  max-width: 420px;
  color: var(--dim);
  font-size: 17px;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
}
.link {
  display: inline-block;
  color: var(--fg);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: border-color .4s ease, color .4s ease;
}
.link:hover { border-color: var(--accent); color: var(--accent); }

.block {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.kicker {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.rows { list-style: none; }
.rows li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.rows li:last-child { border-bottom: 1px solid var(--line); }
.rows strong { font-weight: 500; }
.rows span, .rows a {
  color: var(--dim);
  text-decoration: none;
}
.rows a { color: var(--fg); border-bottom: 1px solid transparent; }
.rows a:hover { border-bottom-color: var(--accent); color: var(--accent); }

footer {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 48px;
  color: var(--dim);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.fade {
  animation: fade .9s cubic-bezier(.16,1,.3,1) both;
}
.d1 { animation-delay: .16s; }
.d2 { animation-delay: .28s; }

@keyframes up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes fade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 640px) {
  .hero { padding-top: 12vh; }
  .wordmark b { font-size: 14px; }
  .rows li { grid-template-columns: 1fr; gap: 4px; }
}
