:root {
  --paper: #f1efe8;
  --ink: #171713;
  --muted: #6f6d64;
  --accent: #2c7160;
  --line: rgba(23, 23, 19, 0.24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; }
main { min-height: 100vh; overflow: hidden; }

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 30px 4vw;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.brand {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: var(--paper);
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  height: 48px;
  justify-content: center;
  letter-spacing: -0.06em;
  text-decoration: none;
  transform: rotate(-7deg);
  width: 48px;
}
.nav-link {
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  letter-spacing: 0.12em;
  padding-bottom: 4px;
  text-decoration: none;
  text-transform: uppercase;
}
.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  padding: 130px 4vw 5vh;
}
.eyebrow, .section-number {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
  margin: 0 0 24px;
  text-transform: uppercase;
}
h1, h2, p { margin-top: 0; }
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 11.4vw, 178px);
  font-weight: 400;
  letter-spacing: -0.072em;
  line-height: 0.79;
  margin-bottom: clamp(52px, 7vh, 90px);
  max-width: 1500px;
}
h1 span { color: var(--accent); font-style: italic; }
.hero-footer {
  align-items: flex-end;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
}
.intro {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.7vw, 27px);
  line-height: 1.3;
  margin-bottom: 0;
  max-width: 590px;
}
.down {
  align-items: center;
  display: flex;
  font-size: 11px;
  gap: 18px;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}
.down span:last-child {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  font-size: 18px;
  height: 46px;
  justify-content: center;
  transition: background 180ms ease, color 180ms ease;
  width: 46px;
}
.down:hover span:last-child { background: var(--ink); color: var(--paper); }
.about {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 5vw;
  grid-template-columns: 0.7fr 2fr 0.7fr;
  margin: 0 4vw;
  min-height: 78vh;
  padding: 12vh 0;
}
.about-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6vw, 92px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
  margin-bottom: 56px;
}
.about-copy > p {
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.45;
  max-width: 620px;
}
.about-copy .return-note { color: var(--muted); font-size: 13px; margin-top: 40px; }
.stamp {
  align-items: center;
  align-self: end;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 170px;
  transform: rotate(8deg);
  width: 100%;
}
.stamp span { font-size: 9px; letter-spacing: 0.18em; }
.stamp strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 1.1;
}
footer {
  background: var(--ink);
  color: var(--paper);
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  letter-spacing: 0.14em;
  padding: 30px 4vw;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .nav { padding: 22px 20px; }
  .hero { padding: 120px 20px 28px; }
  h1 { font-size: clamp(57px, 19vw, 100px); line-height: 0.84; }
  .hero-footer { align-items: flex-start; flex-direction: column; gap: 30px; }
  .down { align-self: flex-end; }
  .about { grid-template-columns: 1fr; margin: 0 20px; min-height: auto; padding: 90px 0; }
  .about-copy h2 { margin-bottom: 38px; }
  .stamp { justify-self: end; width: 125px; }
  footer { gap: 18px; padding: 26px 20px; }
  footer span:nth-child(2) { display: none; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
