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

:root {
  --bg: #f5f3ee;
  --ink: #11110f;
  --muted: #77736c;
  --line: rgba(17,17,15,.16);
  --card: #ebe8e1;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
}

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

.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}

.nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.logo {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: .22em;
}

.logo span {
  font-size: 8px;
  vertical-align: top;
  margin-left: 3px;
}

.nav-link {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
}

.hero {
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 100px;
}

.eyebrow, .section-label, .link-card small {
  font-size: 10px;
  letter-spacing: .2em;
  font-weight: 600;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--muted);
  margin-bottom: 30px;
}

.hero h1 {
  font-size: clamp(70px, 13vw, 170px);
  line-height: .82;
  letter-spacing: -.065em;
  font-weight: 600;
  margin: 0;
  max-width: 900px;
}

.hero h1 em {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: -.07em;
}

.hero-copy {
  max-width: 390px;
  color: var(--muted);
  line-height: 1.7;
  margin: 45px 0 28px;
  font-size: 15px;
}

.primary-btn {
  display: inline-flex;
  width: fit-content;
  gap: 30px;
  align-items: center;
  background: var(--ink);
  color: #fff;
  padding: 16px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .2s ease, opacity .2s ease;
}

.primary-btn:hover { transform: translateY(-2px); opacity: .9; }

.statement, .links-section {
  border-top: 1px solid var(--line);
  padding: 95px 0;
  display: grid;
  grid-template-columns: 1fr 2.3fr;
  gap: 50px;
}

.section-label { color: var(--muted); }

.statement h2 {
  font-size: clamp(38px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -.055em;
  margin: 0 0 28px;
}

.statement h2 span {
  color: var(--muted);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 600;
}

.statement p {
  max-width: 510px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}

.link-grid {
  display: grid;
  gap: 10px;
}

.link-card {
  min-height: 105px;
  background: var(--card);
  display: grid;
  grid-template-columns: 55px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 20px 25px;
  transition: transform .2s ease, background .2s ease;
}

.link-card:hover {
  transform: translateX(5px);
  background: #e2dfd7;
}

.link-card.featured {
  background: var(--ink);
  color: #fff;
}

.link-card.featured:hover { background: #252522; }

.link-number {
  color: var(--muted);
  font-size: 10px;
}

.featured .link-number { color: #99958d; }

.link-card small {
  display: block;
  color: var(--muted);
  margin-bottom: 7px;
}

.featured small { color: #aaa69e; }

.link-card strong {
  display: block;
  font-size: 25px;
  letter-spacing: -.035em;
  font-weight: 500;
}

.arrow {
  font-size: 22px;
  font-weight: 300;
}

.quote {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 120px 0;
  text-align: center;
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 65px;
  line-height: .5;
}

.quote p {
  font-size: clamp(35px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -.055em;
  margin: 30px auto 0;
}

.quote em {
  font-family: "Playfair Display", Georgia, serif;
}

.footer {
  min-height: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer .logo { color: var(--ink); }
.footer div:nth-child(2) { text-align: center; }
.footer div:nth-child(3) { text-align: right; }

@media (max-width: 700px) {
  .site-shell { width: min(100% - 28px, 1180px); }
  .nav { height: 72px; }
  .hero { min-height: 620px; padding: 65px 0 80px; }
  .hero h1 { font-size: clamp(64px, 20vw, 110px); }
  .hero-copy { margin-top: 35px; }
  .statement, .links-section {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 70px 0;
  }
  .link-card { min-height: 92px; padding: 18px; }
  .link-card strong { font-size: 21px; }
  .footer {
    grid-template-columns: 1fr;
    padding: 28px 0;
    text-align: center;
  }
  .footer div:nth-child(2), .footer div:nth-child(3) { text-align: center; }
}
