:root {
  --ink: #111111;
  --body: #34383d;
  --muted: #6d7379;
  --paper: #fffdf8;
  --wash: #f3f6ed;
  --line: #d7d8d1;
  --green: #4c7627;
  --dark: #151719;
  --font: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
  letter-spacing: 0;
}

.toolbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
}

.toolbar-inner {
  display: flex;
  width: min(1180px, calc(100% - 48px));
  min-height: 58px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  flex: 0 0 auto;
  font-weight: 850;
  text-decoration: none;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 14px;
}

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

.links a[aria-current="page"] {
  color: var(--ink);
  font-weight: 850;
}

.deck {
  display: grid;
  gap: 34px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 40px 0 56px;
}

.slide {
  display: grid;
  min-height: auto;
  aspect-ratio: 16 / 9;
  grid-template-rows: auto 1fr auto;
  padding: 48px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.slide.dark {
  border-color: #272b2f;
  background:
    linear-gradient(135deg, rgba(76, 118, 39, 0.18), transparent 42%),
    linear-gradient(160deg, #111417, #252a30 52%, #0c0e10);
  color: #f7f4eb;
}

.slide.wash {
  background: var(--wash);
}

.kicker {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.dark .kicker {
  color: #c8d9ac;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 4.2rem;
  line-height: 1.02;
  font-weight: 900;
}

h2 {
  max-width: 840px;
  margin-bottom: 20px;
  font-size: 3rem;
  line-height: 1.08;
  font-weight: 900;
}

.lead {
  max-width: 800px;
  color: var(--body);
  font-size: 1.2rem;
  line-height: 1.84;
}

.dark .lead {
  color: #e3e2d8;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.58fr);
  gap: 52px;
  align-items: center;
}

.cards {
  display: grid;
  gap: 14px;
  width: min(100%, 360px);
  justify-self: end;
}

.metal-card {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 38px rgba(17, 19, 22, 0.25);
}

.grid,
.flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.panel,
.step {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
}

.dark .panel,
.dark .step {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.panel h3,
.step h3 {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 1rem;
}

.dark .panel h3,
.dark .step h3 {
  color: #c8d9ac;
}

.panel p,
.panel li,
.step p {
  margin-bottom: 0;
  color: var(--body);
}

.dark .panel p,
.dark .panel li,
.dark .step p {
  color: #e3e2d8;
}

ul {
  margin: 0;
  padding-left: 20px;
}

li {
  margin-bottom: 7px;
}

.quote {
  max-width: 980px;
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1.36;
  font-weight: 700;
}

.num {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 850;
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-self: start;
  align-items: end;
}

.qr-box {
  width: 188px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.qr-box img {
  display: block;
  width: 100%;
  height: auto;
}

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

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
}

.print-contact {
  display: none;
}

.slide-footer {
  display: flex;
  align-self: end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.88rem;
}

.dark .slide-footer {
  color: rgba(247, 244, 235, 0.6);
}

.site-footer {
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  width: min(1180px, calc(100% - 48px));
  grid-template-columns: 1fr auto;
  gap: 24px;
  margin: 0 auto;
  align-items: start;
}

.footer-brand {
  color: var(--body);
  font-weight: 850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  margin: 8px 0 0;
}

@media screen and (max-width: 880px) {
  .toolbar-inner,
  .deck,
  .footer-grid {
    width: min(100% - 32px, 1180px);
  }

  .toolbar-inner {
    min-height: 0;
    align-items: flex-start;
    padding: 10px 0;
  }

  .links {
    max-width: 72%;
    gap: 9px;
    font-size: 12px;
  }

  .slide {
    min-height: auto;
    aspect-ratio: auto;
    padding: 28px 20px;
  }

  .two-col,
  .grid,
  .flow,
  .cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    width: min(100%, 320px);
    justify-self: start;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.12rem;
  }

  .lead {
    font-size: 1.04rem;
  }

  .quote {
    font-size: 1.68rem;
  }

  .panel,
  .step {
    min-height: auto;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media print {
  :root {
    --ink: #0b0d0f;
    --body: #1f252a;
    --muted: #3d454b;
    --green: #254b18;
    --line: #5f665e;
  }

  @page {
    size: landscape;
    margin: 0;
  }

  body {
    background: #fff;
    color: var(--ink);
  }

  .toolbar,
  .site-footer {
    display: none;
  }

  .deck {
    width: 100%;
    gap: 0;
    padding: 0;
  }

  .slide {
    width: 100vw;
    height: 100vh;
    min-height: 0;
    aspect-ratio: auto;
    grid-template-rows: 1fr auto;
    padding: 40px 46px;
    page-break-after: always;
    border: 0;
    background: #fff !important;
    color: var(--ink) !important;
  }

  .slide.dark,
  .slide.wash {
    background: #fff !important;
    color: var(--ink) !important;
  }

  .kicker,
  .dark .kicker,
  .panel h3,
  .dark .panel h3,
  .num {
    color: var(--green) !important;
  }

  .lead,
  .dark .lead,
  .panel p,
  .panel li,
  .dark .panel p,
  .dark .panel li,
  .slide-footer,
  .dark .slide-footer {
    color: var(--body) !important;
  }

  .panel,
  .dark .panel,
  .step {
    border-color: var(--line) !important;
    background: #fff !important;
  }

  .actions {
    display: none;
  }

  .print-contact {
    display: grid;
    max-width: 720px;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
  }

  .print-contact div {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 14px;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }

  .print-contact dt,
  .print-contact dd {
    margin: 0;
  }

  .print-contact dt {
    color: var(--green);
    font-weight: 850;
  }

  .print-contact dd {
    color: var(--ink);
    font-weight: 750;
    overflow-wrap: anywhere;
  }

  .qr-box {
    border-color: var(--ink);
  }
}
