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

:root {
  --ink: #171714;
  --paper: #f4f1e9;
  --muted: #6e6a60;
  --line: rgba(23, 23, 20, 0.16);
  --max: 1180px;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

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

.site-header {
  max-width: var(--max);
  margin: auto;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .28em;
}

nav { display: flex; gap: 28px; font-size: 13px; }
nav a:hover, .text-link:hover { opacity: .55; }

.hero {
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 28px;
}

.hero-content { max-width: 780px; }

.eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}

h1, h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  line-height: 1.05;
}

h1 { font-size: clamp(60px, 9vw, 118px); letter-spacing: -.04em; }
h2 { font-size: clamp(42px, 6vw, 76px); letter-spacing: -.035em; }
h3 { margin: 0 0 8px; font-size: 25px; font-weight: 500; }

.hero-copy, .section-copy {
  max-width: 590px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.button {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 24px;
  border: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: .2s ease;
}

.button:hover { background: var(--ink); color: var(--paper); }

.section {
  max-width: var(--max);
  margin: auto;
  padding: 120px 28px;
  border-top: 1px solid var(--line);
}

.section-copy { margin-left: 0; }
.collection > h2 { max-width: 720px; }

.product-card {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

.product-placeholder {
  min-height: 430px;
  display: grid;
  place-items: center;
  background: #e7e2d6;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .28em;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact { text-align: center; }
.contact .section-copy { margin-left: auto; margin-right: auto; }

footer {
  max-width: var(--max);
  margin: auto;
  padding: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .site-header { padding: 22px 20px; }
  nav { display: none; }
  .hero { min-height: 72vh; padding: 60px 20px; }
  .section { padding: 80px 20px; }
  .product-card, .story { grid-template-columns: 1fr; gap: 38px; }
  .product-placeholder { min-height: 300px; }
  footer { padding: 22px 20px; flex-direction: column; gap: 8px; }
}
