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

:root {
  --ink: #1d1c1a;
  --paper: #f4f0e8;
  --soft: #e7dfd2;
  --accent: #a68b65;
  --muted: #716b62;
  --line: rgba(29, 28, 26, .16);
}

* { 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; }

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 5vw;
}

.wordmark {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-decoration: none;
}

.wordmark span { font-family: "Playfair Display", Georgia, serif; font-size: 18px; }

nav { display: flex; gap: 28px; }
nav a { font-size: 12px; text-decoration: none; text-transform: uppercase; letter-spacing: .12em; }
nav a:hover, .text-link:hover { opacity: .55; }

.hero {
  min-height: 88vh;
  display: grid;
  align-content: center;
  padding: 150px 10vw 90px;
  max-width: 1100px;
}

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

h1, h2, h3, blockquote {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
}

h1 {
  margin: 0;
  font-size: clamp(54px, 9vw, 118px);
  line-height: .94;
  letter-spacing: -.045em;
}

h1 em { color: var(--accent); }

.intro {
  max-width: 550px;
  margin: 34px 0 0;
  font-size: 18px;
  color: var(--muted);
}

.hero-actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }

.button {
  display: inline-block;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .15em;
  transition: transform .2s ease, opacity .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: var(--paper); }
.button-light { background: transparent; }

.marquee {
  display: flex;
  gap: 34px;
  overflow: hidden;
  white-space: nowrap;
  padding: 19px 5vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: .2em;
}

.section {
  display: grid;
  grid-template-columns: minmax(120px, .35fr) 1fr;
  gap: 7vw;
  padding: 120px 10vw;
  border-bottom: 1px solid var(--line);
}

.section-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
}

.section-content { max-width: 720px; }

.section h2 {
  margin: 0 0 25px;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: -.025em;
}

.section p { color: var(--muted); max-width: 640px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.discover { grid-template-columns: 1fr; }
.discover .section-label { margin-bottom: 35px; }

.card {
  min-height: 360px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  background: var(--soft);
}

.card:nth-child(2) { background: #ddd9cf; }
.card:nth-child(3) { background: #ebe7df; }

.card span {
  position: absolute;
  align-self: flex-start;
  font-size: 10px;
  letter-spacing: .14em;
}

.card h3 { margin: 0; font-size: 38px; }
.card p { margin: 7px 0 0; color: var(--muted); font-size: 13px; }

.note {
  padding: 140px 10vw;
  text-align: center;
  background: var(--ink);
  color: var(--paper);
}

.note .eyebrow { color: #bcb4a8; }

blockquote {
  max-width: 800px;
  margin: 25px auto 12px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
}

.attribution { margin: 0; color: #bcb4a8; font-size: 12px; letter-spacing: .12em; }

.text-link {
  display: inline-block;
  margin-top: 15px;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 5px;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 24px 5vw;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
}

@media (max-width: 760px) {
  .site-header { padding: 22px 6vw; }
  nav { display: none; }
  .hero { min-height: 78vh; padding: 130px 7vw 70px; }
  .intro { font-size: 16px; }
  .section { grid-template-columns: 1fr; padding: 80px 7vw; gap: 28px; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 280px; }
  .note { padding: 100px 7vw; }
  footer { padding: 22px 7vw; gap: 15px; flex-direction: column; }
}
