:root {
  --red: #DD3C36;
  --red-hover: #B4241F;
  --cream: #F6F2EA;
  --paper: #FBF9F4;
  --ink: #1F1B18;
  --muted: #716C63;
  --rule: rgba(31,27,24,0.12);
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.display {
  font-family: 'EB Garamond', Garamond, Georgia, 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.08;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 24px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  background: rgba(246,242,234,0.82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--rule);
  z-index: 10;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 600;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  display: block;
  box-shadow: 0 1px 2px rgba(31,27,24,0.12);
}
.brand-word {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.wordmark {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.nav-links a:hover {
  color: var(--red);
  border-bottom-color: var(--red);
  text-decoration: none;
}

/* Hero */
.hero {
  padding: 140px 0 130px;
  border-bottom: 1px solid var(--rule);
}
.hero-inner { max-width: 980px; }
.hero-title {
  font-size: clamp(3.2rem, 8.6vw, 6.8rem);
  margin: 0 0 36px;
}
.hero-title em {
  font-style: italic;
  color: var(--red);
  font-weight: 500;
}
.hero-sub {
  font-size: clamp(1.1rem, 1.55vw, 1.35rem);
  color: var(--muted);
  max-width: 620px;
  margin: 0;
  line-height: 1.55;
}

/* Work */
.work { padding: 130px 0; border-bottom: 1px solid var(--rule); }
.piece {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
  margin-top: 48px;
}
.piece-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin: 0 0 22px;
}
.piece-lead {
  font-size: 1.18rem;
  color: var(--ink);
  margin: 0 0 18px;
  line-height: 1.55;
}
.piece-copy p { color: #3a342f; margin: 0 0 18px; max-width: 48ch; }
.piece-copy p:last-child { margin-bottom: 0; margin-top: 28px; }
.piece-media { display: block; }
.piece-media img {
  width: 100%;
  display: block;
  border-radius: 6px;
  box-shadow:
    0 1px 1px rgba(0,0,0,0.05),
    0 12px 32px -12px rgba(31,27,24,0.28),
    0 36px 70px -28px rgba(31,27,24,0.22);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.piece-media a:hover img {
  transform: translateY(-2px);
  box-shadow:
    0 1px 1px rgba(0,0,0,0.05),
    0 16px 40px -12px rgba(31,27,24,0.32),
    0 44px 80px -28px rgba(31,27,24,0.26);
}

.link {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--red);
  font-weight: 600;
  border-bottom: 1px solid rgba(221,60,54,0.35);
  padding-bottom: 2px;
  transition: border-color 0.15s ease;
}
.link:hover { text-decoration: none; border-bottom-color: var(--red); }
.link span { transition: transform 0.2s ease; }
.link:hover span { transform: translateX(3px); }

.link-ink {
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
}
.link-ink:hover { text-decoration: none; border-bottom-color: var(--ink); }

/* About */
.about { padding: 130px 0; border-bottom: 1px solid var(--rule); }
.about-inner { max-width: 860px; }
.about-body {
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  font-weight: 400;
  line-height: 1.32;
  margin: 0;
  letter-spacing: -0.015em;
}

/* Contact */
.contact { padding: 130px 0 150px; }
.contact-inner { max-width: 860px; }
.contact-email {
  font-family: 'EB Garamond', Garamond, Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  margin: 8px 0 0;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.contact-email a {
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 4px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.contact-email a:hover {
  color: var(--red);
  border-bottom-color: var(--red);
  text-decoration: none;
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: 28px 0;
  font-size: 14px;
}
.footer a { color: rgba(255,255,255,0.92); }
.footer a:hover { color: #fff; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links { display: flex; gap: 24px; }

/* Responsive */
@media (max-width: 820px) {
  .piece { grid-template-columns: 1fr; gap: 40px; }
  .piece-copy p:last-child { margin-top: 20px; }
  .hero { padding: 96px 0 80px; }
  .work, .about, .contact { padding: 88px 0; }
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 14px; }
  .brand-word { font-size: 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .nav-links { gap: 18px; }
}
