:root {
  --paper: #f7f1e6;
  --ink: #3f3830;
  --ink-deep: #2c2621;
  --muted: #7a7166;
  --rule: #e0d5c4;
  --clay: #c46a45;
  --gold: #c4a05a;
  --display: "Cinzel", "Times New Roman", serif;
  --serif: "Cormorant Garamond", Palatino, serif;
  --sans: "Outfit", "Avenir Next", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
  background: #2c2621;
  color: var(--ink);
  font-family: var(--sans);
}

.chrome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1rem;
  color: #e7dccb;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--display);
}

.chrome a, .chrome button {
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

.chrome button {
  border: 1px solid #6b6258;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  letter-spacing: 0.06em;
  font-family: var(--sans);
  text-transform: none;
}

.deck {
  height: 100%;
  overflow: hidden;
}

.slide {
  display: none;
  width: min(100vw, calc(100vh * 16 / 9));
  height: min(100vh, calc(100vw * 9 / 16));
  margin: 0 auto;
  background: var(--paper);
  padding: 4.5rem 4.2rem 3.4rem;
  position: relative;
}

.slide.active { display: flex; flex-direction: column; justify-content: center; }

.slide.title-slide {
  background: #3a342c;
  color: var(--paper);
}

.kicker {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 0.85rem;
}

.title-slide .kicker { color: var(--gold); }

h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 1rem;
  color: var(--ink-deep);
}

.title-slide h1 { color: var(--paper); }

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); max-width: 14ch; }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); max-width: 18ch; }

.lede {
  font-size: 1.2rem;
  line-height: 1.5;
  max-width: 42ch;
  color: var(--ink);
  margin: 0;
}

.title-slide .lede { color: #e7dccb; }

.columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  margin-top: 0.5rem;
}

.columns-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.card {
  background: #fbf8f2;
  border: 1px solid var(--rule);
  padding: 1.15rem 1.1rem 1.2rem;
}

.card .num {
  font-family: var(--display);
  letter-spacing: 0.12em;
  color: var(--clay);
  font-size: 0.78rem;
  margin-bottom: 0.4rem;
}

.card h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; margin: 0 0 0.45rem; }
.card p { margin: 0; color: var(--ink); font-size: 0.95rem; line-height: 1.45; }

ul.plain {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.plain li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 1.12rem;
  line-height: 1.4;
}

ul.plain li:last-child { border-bottom: 0; }

.stat {
  font-family: var(--serif);
  font-size: 2.4rem;
  margin: 0 0 0.3rem;
  color: var(--ink-deep);
}

.foot {
  position: absolute;
  left: 4.2rem;
  right: 4.2rem;
  bottom: 1.4rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--display);
  color: var(--muted);
}

.title-slide .foot { color: #c9bba8; }

.ask {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0.4rem 0 0.8rem;
  color: var(--ink-deep);
}

@media print {
  html, body { background: #fff; height: auto; }
  .chrome { display: none; }
  .deck { overflow: visible; height: auto; }
  .slide,
  .slide[hidden] {
    display: flex !important;
    width: 13.333in;
    height: 7.5in;
    margin: 0;
    page-break-after: always;
    break-after: page;
  }
  .slide:last-child { page-break-after: auto; }
}

@page {
  size: 13.333in 7.5in;
  margin: 0;
}
