@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  --ink: #111111;
  --muted: #666666;
  --paper: #f7f5f0;
  --white: #ffffff;
  --line: #dedbd3;
  --accent: #c99a42;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.nav {
  position: sticky; top: 0; z-index: 10;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 6vw; background: rgba(247,245,240,.94);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--line);
}
.logo { font-size: 25px; font-weight: 700; letter-spacing: -1px; }
.logo span { color: var(--accent); }
nav { display: flex; align-items: center; gap: 24px; font-size: 14px; }
nav a:hover { opacity: .65; }
.nav-cta { border: 1px solid var(--ink); padding: 9px 15px; border-radius: 999px; }
.hero {
  min-height: 82vh; display: grid; grid-template-columns: 1.35fr .65fr;
  gap: 6vw; align-items: center; padding: 90px 8vw;
}
.eyebrow { font-size: 12px; letter-spacing: .18em; font-weight: 700; color: var(--muted); }
h1, h2, h3 { line-height: 1.08; margin-top: 0; }
h1 { max-width: 850px; font-size: clamp(48px, 7vw, 88px); letter-spacing: -4px; margin-bottom: 28px; }
h1 em, h2 em { font-family: "Playfair Display", Georgia, serif; font-weight: 600; }
h2 { font-size: clamp(36px, 5vw, 58px); letter-spacing: -2px; }
h3 { font-size: 23px; }
.lead { max-width: 700px; color: var(--muted); font-size: 18px; }
.actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.button { display: inline-block; padding: 13px 20px; border-radius: 999px; font-weight: 600; }
.primary { background: var(--ink); color: var(--white); }
.secondary { border: 1px solid var(--ink); }
.hero-card {
  min-height: 420px; padding: 34px; display: flex; flex-direction: column;
  justify-content: space-between; background: var(--ink); color: white;
  border-radius: 24px; transform: rotate(2deg); box-shadow: 18px 18px 0 var(--accent);
}
.hero-card strong { font-family: "Playfair Display", Georgia, serif; font-size: 52px; line-height: .98; }
.hero-card small { color: #cfcfcf; }
.section { padding: 110px 8vw; max-width: 1400px; margin: auto; }
.intro { max-width: 900px; margin-left: 0; }
.intro p:last-child { color: var(--muted); font-size: 20px; max-width: 750px; }
.grid, .work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); margin-top: 45px; }
.service { background: var(--paper); padding: 38px; min-height: 250px; }
.number { color: var(--accent); font-weight: 700; }
.service p, .work-card p { color: var(--muted); }
.dark { max-width: none; background: var(--ink); color: white; }
.dark > * { max-width: 1240px; margin-left: auto; margin-right: auto; }
.dark .eyebrow { color: #aaa; }
.work-grid { background: #333; }
.work-card { background: var(--ink); padding: 40px; min-height: 230px; }
.work-card span { font-size: 11px; letter-spacing: .16em; color: var(--accent); font-weight: 700; }
.work-card p { color: #aaa; }
.product { display: grid; grid-template-columns: 1fr 320px; gap: 80px; align-items: center; }
.product p { color: var(--muted); max-width: 650px; }
.book {
  aspect-ratio: 3/4; background: #171717; color: white; padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 16px 16px 0 var(--accent);
}
.book strong { font-family: "Playfair Display", Georgia, serif; font-size: 34px; line-height: .95; }
.book small { letter-spacing: .15em; }
.contact { text-align: center; }
.contact p { color: var(--muted); }
.email { display: inline-block; font-size: clamp(24px, 4vw, 48px); font-weight: 700; margin: 25px 0; border-bottom: 2px solid var(--accent); }
.socials { display: flex; justify-content: center; gap: 25px; font-weight: 600; }
footer { display: flex; justify-content: space-between; padding: 25px 8vw; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }

@media (max-width: 800px) {
  .nav { padding: 16px 5vw; }
  nav a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; padding: 70px 7vw; }
  .hero-card { min-height: 330px; }
  h1 { letter-spacing: -2px; }
  .section { padding: 80px 7vw; }
  .grid, .work-grid, .product { grid-template-columns: 1fr; }
  .product { gap: 45px; }
  .book { max-width: 300px; margin: auto; }
  footer { padding: 20px 7vw; flex-direction: column; gap: 6px; }
}
