/* ============================================
   V1 — Editorial Calm
   White paper, deep navy ink, Fraunces serif accents
   ============================================ */

body.v1 {
  --paper: #ffffff;
  --paper-2: #f6f4ef;
  --paper-3: #efece4;
  --ink: #0e0f12;
  --ink-2: #3a3b40;
  --ink-3: #8b8c92;
  --line: #e8e4d9;
  --line-2: #d3cfc3;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.hero__loc {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 360;
  font-size: clamp(56px, calc(11vw * var(--type-scale, 1)), 168px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 8px 0 0 0;
  max-width: 14ch;
  white-space: pre-line;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--ink);
}
.hero__title .word { line-height: 0.96; }

.hero__lede {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: end;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.hero__lede p {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 52ch;
  margin: 0;
}
.hero__cta {
  display: inline-flex;
  gap: 10px;
  justify-self: end;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.btn--dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--dark:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.btn--xl {
  padding: 22px 36px;
  font-size: 15px;
}

@media (max-width: 900px) {
  .hero__lede { grid-template-columns: 1fr; align-items: start; gap: 24px; }
  .hero__cta { justify-self: start; }
  .hero__title { font-size: clamp(48px, 14vw, 90px); }
}
