* { box-sizing: border-box; }

html {
  overflow-anchor: none;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: rgba(168, 92, 60, 0.18); }

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

p { margin: 0 0 1.1em; text-wrap: pretty; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.005em;
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--terra);
  display: inline-block;
}
.eyebrow.no-tick::before { display: none; }

.display {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.04;
  font-weight: 500;
}
.lede {
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink-muted);
  font-weight: 400;
  max-width: 56ch;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
}
.section { padding-block: var(--sec); }
.section-sm { padding-block: calc(var(--sec) * 0.7); }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.follow-gap { margin-top: 56px; }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans);
  font-size: 14px; font-weight: 600; letter-spacing: 0.03em;
  padding: 15px 28px;
  border: 1px solid var(--ink);
  background: var(--ink); color: var(--cream);
  cursor: pointer;
  transition: all 0.35s var(--ease);
}
.btn:hover { background: transparent; color: var(--ink); }
.btn .arr { transition: transform 0.35s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.text-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--ink); cursor: pointer;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.3s var(--ease), gap 0.3s var(--ease);
}
.text-link:hover { border-color: var(--terra); gap: 14px; }
.text-link .arr { color: var(--terra); transition: transform 0.3s var(--ease); }
.text-link:hover .arr { transform: translateX(3px); }

.photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
  background: var(--cream-deep);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page { animation: fadeUp 0.6s var(--ease) both; }
.reveal { animation: fadeUp 0.7s var(--ease) both; }
.reveal.d1 { animation-delay: 0.06s; }
.reveal.d2 { animation-delay: 0.12s; }
.reveal.d3 { animation-delay: 0.18s; }
.reveal.d4 { animation-delay: 0.24s; }
.reveal.d5 { animation-delay: 0.30s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .page, .reveal { animation: none !important; }
}
