:root {
  --paper: #eeece4;
  --ink: #16150f;
  --muted: #6d6b60;
  --blue: #1d12d6;
  --line: rgba(22, 21, 15, 0.14);
  --wrap: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
em { font-style: italic; }
.blue { color: var(--blue); }

.wrap, .bar, .hero, .figures, .approach, .work, .voices, .contact {
  max-width: var(--wrap);
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* Hairline rules */
.rule { border: 0; border-top: 1px solid var(--line); max-width: var(--wrap); margin: 0 auto; }

/* TOP BAR */
.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  padding-bottom: 26px;
}
.mark img { display: block; width: 120px; height: 120px; border-radius: 12px; }
.bar__nav { display: flex; gap: 34px; font-size: 0.92rem; }
.bar__nav a { position: relative; padding-bottom: 2px; color: var(--muted); transition: color 0.2s; }
.bar__nav a:hover { color: var(--ink); }
.bar__nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%;
  height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.bar__nav a:hover::after { transform: scaleX(1); }

/* Shared small label */
.eyebrow, .h-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* HERO */
.hero { padding-top: 90px; padding-bottom: 96px; }
.eyebrow { margin-bottom: 30px; }
.hero__title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.7rem, 8vw, 6.2rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  max-width: none;
}
.hero__foot {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: end;
  margin-top: 64px;
}
.hero__sub { color: var(--muted); max-width: 46ch; font-size: 1.05rem; }
.hero__links { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }

/* Links */
.link {
  position: relative;
  font-size: 1.05rem;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  transition: color 0.2s, border-color 0.2s, opacity 0.2s;
}
.link::before { content: "→"; margin-right: 10px; display: inline-block; transition: transform 0.2s ease; }
.link:hover::before { transform: translateX(4px); }
.link--muted { color: var(--muted); border-color: var(--line); }
.link--muted:hover { color: var(--ink); border-color: var(--ink); }
.link--lg { font-family: "Fraunces", Georgia, serif; font-size: clamp(1.4rem, 3vw, 2rem); border-bottom-width: 1px; }

/* FIGURES */
.figures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 44px;
  padding-bottom: 44px;
}
.figure { display: flex; flex-direction: column; gap: 6px; }
.figure__n { font-family: "Fraunces", Georgia, serif; font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1; letter-spacing: -0.02em; }
.figure__l { font-size: 0.85rem; color: var(--muted); }

/* APPROACH */
.approach { padding-top: 80px; padding-bottom: 90px; }
.h-label { display: block; margin-bottom: 44px; }
.steps { list-style: none; }
.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__n { font-family: "Fraunces", Georgia, serif; font-size: 1.3rem; color: var(--blue); }
.step__body { max-width: 60ch; }
.step__body h3 { font-family: "Fraunces", Georgia, serif; font-weight: 400; font-size: clamp(1.6rem, 3vw, 2.1rem); letter-spacing: -0.01em; margin-bottom: 8px; }
.step__body p { color: var(--muted); }

/* WORK */
.work { padding-top: 80px; padding-bottom: 90px; }
.work__line {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin-bottom: 28px;
}
.work__note { color: var(--muted); max-width: 62ch; font-size: 1.05rem; }

/* VOICES */
.voices { padding-top: 80px; padding-bottom: 90px; }
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.quote {
  padding: 34px 40px 34px 0;
  border-top: 1px solid var(--line);
}
.quote:nth-child(odd) { padding-right: 48px; }
.quote:nth-child(even) { padding-left: 48px; border-left: 1px solid var(--line); }
.quote p { font-family: "Fraunces", Georgia, serif; font-weight: 400; font-size: 1.25rem; line-height: 1.4; letter-spacing: -0.01em; margin-bottom: 16px; }
.quote cite { font-style: normal; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

/* CONTACT */
.contact { padding-top: 110px; padding-bottom: 110px; }
.contact__title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

/* FOOTER */
.foot {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 30px 32px 44px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}

/* Subtle reveal */
.r { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.r.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 860px) {
  .hero__foot { grid-template-columns: 1fr; gap: 32px; }
  .figures { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .quotes { grid-template-columns: 1fr; }
  .quote, .quote:nth-child(odd), .quote:nth-child(even) { padding: 30px 0; border-left: 0; }
  .quote:last-child { border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero { padding-top: 60px; padding-bottom: 70px; }
  .step { grid-template-columns: 54px 1fr; gap: 14px; }
  .figures { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .r { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
