/* Custom Lasts — atelier */
:root {
  --cream: #F4EFE6;
  --espresso: #1C1916;
  --sage: #3F5C4D;
  --ink-soft: rgba(28, 25, 22, 0.72);
  --line: rgba(28, 25, 22, 0.12);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0.01em;
}
a { color: var(--sage); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
header.site {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0 18px;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--espresso); text-decoration: none; }
.brand img { width: 36px; height: 36px; object-fit: cover; }
.brand span { font-family: var(--serif); font-size: 20px; letter-spacing: 0.08em; text-transform: uppercase; }
nav.site { display: flex; gap: 22px; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; }
nav.site a { color: var(--espresso); text-decoration: none; }
nav.site a:hover { color: var(--sage); }
.hero { padding: 72px 0 48px; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.kicker { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage); }
h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 12px 0 18px;
}
.lede { font-size: 19px; color: var(--ink-soft); max-width: 38ch; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 22px; border-radius: 2px;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border: 1px solid var(--espresso);
}
.btn.primary { background: var(--espresso); color: var(--cream); }
.btn.ghost { background: transparent; color: var(--espresso); }
.btn:hover { text-decoration: none; opacity: 0.88; }
.last-card {
  background: #efe8db;
  border: 1px solid var(--line);
  min-height: 380px;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 22px;
}
.last-card img { width: 100%; object-fit: contain; max-height: 280px; }
.last-meta { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.beats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.beat { background: var(--cream); padding: 36px 28px; }
.beat h2 { font-family: var(--serif); font-size: 28px; font-weight: 500; margin: 8px 0 12px; }
.beat p { color: var(--ink-soft); margin: 0; }
section.block { padding: 72px 0; }
h2.display { font-family: var(--serif); font-size: clamp(32px, 4vw, 48px); font-weight: 500; margin: 0 0 16px; }
form.wait { display: grid; gap: 12px; max-width: 420px; margin-top: 24px; }
label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
input, select, textarea {
  font: inherit; color: var(--espresso); background: transparent;
  border: 0; border-bottom: 1px solid var(--espresso); padding: 10px 0;
  outline: none;
}
.prose { max-width: 62ch; }
.prose h1 { font-size: 42px; }
.prose h2 { font-family: var(--serif); font-size: 26px; font-weight: 500; margin-top: 2em; }
.prose p, .prose li { color: var(--ink-soft); }
footer.site { border-top: 1px solid var(--line); padding: 28px 0 48px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
footer.site a { color: var(--ink-soft); }
.note { font-size: 13px; color: var(--ink-soft); }
@media (max-width: 800px) {
  nav.site { display: none; }
  .hero, .beats { grid-template-columns: 1fr; }
  .hero { padding-top: 40px; }
}
