:root {
  --paper: #f1eee7;
  --paper-bright: #faf8f3;
  --linen: #e8e3d9;
  --ink: #12100e;
  --ink-soft: #4a443f;
  --mineral: #6f6961;
  --merlot: #641a26;
  --merlot-on-ink: #a8303f;
  --line-paper: rgba(18, 16, 14, .2);
  --line-ink: rgba(241, 238, 231, .22);
  --shell: min(1240px, calc(100vw - 80px));
  --ease: cubic-bezier(.23, 1, .32, 1);
}

* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--paper);
  color: var(--ink-soft);
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--merlot); color: var(--paper); }
:focus-visible { outline: 2px solid var(--merlot); outline-offset: 3px; }
.ink :focus-visible, .cover :focus-visible, .bar :focus-visible { outline-color: var(--paper); }

.shell { width: var(--shell); margin-inline: auto; }

h1, h2, h3 { color: var(--ink); font-weight: 300; letter-spacing: -.03em; }
h1 { font-size: clamp(2.6rem, 5vw, 5.2rem); line-height: 1.04; }
h2 { font-size: clamp(2.1rem, 3.6vw, 3.6rem); line-height: 1.06; }
h3 { font-size: clamp(1.25rem, 1.6vw, 1.6rem); font-weight: 400; letter-spacing: -.01em; line-height: 1.25; }

/* Header */
.bar {
  position: absolute; inset: 0 0 auto 0; z-index: 3;
  display: flex; justify-content: space-between; align-items: center;
  width: var(--shell); margin-inline: auto; padding-block: 28px;
  color: var(--paper);
}
.mark { color: inherit; text-decoration: none; font-weight: 400; letter-spacing: .18em; font-size: 14px; }
.mark span { opacity: .6; }
.bar-link {
  color: inherit; text-decoration: none; font-size: 13px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  padding-bottom: 4px; border-bottom: 1px solid var(--line-ink);
  transition: border-color 200ms var(--ease);
}
.bar-link:hover { border-color: var(--paper); }

/* Cover */
.cover { position: relative; min-height: 100svh; display: flex; align-items: flex-end; background: var(--ink); overflow: clip; }
.cover-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cover-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,16,14,.9) 0%, rgba(18,16,14,.55) 45%, rgba(18,16,14,.35) 100%); }
.cover-text { position: relative; z-index: 2; padding-block: 0 clamp(56px, 9vh, 110px); color: var(--paper); }
.cover-text h1 { color: var(--paper); max-width: 15ch; }
.cover-text p { max-width: 50ch; margin-top: 28px; color: rgba(241,238,231,.86); }
.cover-text .btn { margin-top: 36px; }
.cover-text .cover-note { margin-top: 20px; font-size: 14px; color: rgba(241,238,231,.7); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  min-height: 56px; padding: 0 32px;
  background: var(--merlot); color: var(--paper-bright);
  border: 0; border-radius: 0; cursor: pointer;
  font: 500 13px/1 'Poppins', sans-serif; letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  transition: background-color 200ms var(--ease), color 200ms var(--ease), transform 200ms var(--ease);
}
.btn span { transition: transform 200ms var(--ease); }
.btn:hover { background: var(--ink); }
.btn:hover span { transform: translateX(2px); }
.btn:active { transform: scale(.98); }
.btn-light { background: var(--paper-bright); color: var(--ink); }
.btn-light:hover { background: var(--merlot); color: var(--paper-bright); }

/* Sections */
section.paper, section.linen, section.ink { padding-block: clamp(80px, 11vw, 160px); }
.paper { background: var(--paper); }
.linen { background: var(--linen); }
.ink { background: var(--ink); color: rgba(241,238,231,.78); }
.ink h2, .ink h3 { color: var(--paper); }

.split { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 6vw, 96px); align-items: start; }

/* Steps */
.steps { list-style: none; padding: 0; margin-top: clamp(40px, 5vw, 72px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 64px); }
.steps li { border-top: 1px solid var(--line-paper); padding-top: 24px; }
.num { display: block; font-size: 14px; font-weight: 500; color: var(--mineral); margin-bottom: 40px; }
.steps h3 { margin-bottom: 12px; }

/* Ledger */
.ledger { list-style: none; padding: 0; }
.ledger li { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding-block: 22px; border-top: 1px solid var(--line-paper); }
.ledger li:last-child { border-bottom: 1px solid var(--line-paper); }
.ledger strong { color: var(--ink); font-weight: 400; font-size: clamp(1.05rem, 1.3vw, 1.3rem); line-height: 1.35; }

/* Guarantee */
.promises { display: grid; gap: 0; }
.promises > div { padding-block: 28px; border-top: 1px solid var(--line-ink); }
.promises > div:last-child { border-bottom: 1px solid var(--line-ink); }
.promises h3 { margin-bottom: 10px; }
.promises p { max-width: 52ch; }

/* FAQ */
.faq details { border-top: 1px solid var(--line-paper); }
.faq details:last-child { border-bottom: 1px solid var(--line-paper); }
.faq summary {
  list-style: none; cursor: pointer; padding-block: 22px;
  display: flex; justify-content: space-between; gap: 24px;
  color: var(--ink); font-size: clamp(1.05rem, 1.3vw, 1.3rem);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-weight: 300; color: var(--mineral); transition: color 200ms var(--ease); }
.faq details[open] summary::after { content: '–'; color: var(--merlot); }
.faq details p { padding-bottom: 24px; max-width: 56ch; }

/* Form */
.form-wrap { max-width: 820px; }
.lede { margin-top: 16px; }
form { margin-top: clamp(36px, 4vw, 56px); display: grid; gap: 36px; }
fieldset { border: 0; padding: 0; min-width: 0; }
legend { padding: 0; color: var(--ink); font-size: clamp(1.25rem, 1.6vw, 1.6rem); margin-bottom: 6px; }
fieldset p { margin-bottom: 16px; }

.drop {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 26px 24px; background: var(--paper-bright);
  border: 1px dashed var(--line-paper); cursor: pointer;
  transition: border-color 200ms var(--ease);
}
.drop:hover, .drop:focus-within { border-color: var(--merlot); }
.drop input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.drop-label { color: var(--ink); font-weight: 500; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.drop-count { font-size: 14px; color: var(--mineral); }

.field { display: grid; gap: 8px; }
.field span { font-size: 14px; color: var(--ink); font-weight: 500; }
.field input, .field textarea {
  width: 100%; padding: 16px; font: inherit; color: var(--ink);
  background: var(--paper-bright); border: 1px solid var(--line-paper); border-radius: 0; resize: vertical;
  transition: border-color 200ms var(--ease);
}
.field input:focus, .field textarea:focus { border-color: var(--merlot); outline: none; }
.row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
form .btn { justify-self: start; }
.error { color: var(--merlot); font-weight: 500; }

.done { margin-top: 48px; padding: 40px; background: var(--paper-bright); border: 1px solid var(--line-paper); }
.done h3 { margin-bottom: 8px; }

/* Footer */
.foot { padding-block: 56px; font-size: 14px; border-top: 1px solid var(--line-ink); }
.foot .shell { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot .mark { color: var(--paper); }

@media (max-width: 860px) {
  :root { --shell: calc(100vw - 40px); }
  .split, .steps, .row, .ledger li { grid-template-columns: 1fr; }
  .ledger li { gap: 6px; }
  .num { margin-bottom: 20px; }
  .btn { width: 100%; justify-content: center; }
  form .btn { justify-self: stretch; }
}

/* Examples: before and after */
.examples { margin-top: clamp(36px, 4vw, 56px); display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 3vw, 48px); }
.examples .ba:first-child { grid-column: 1 / -1; }
.ba { position: relative; margin: 0; }
.ba > .ba-after, .ba-before { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.ba-before { position: absolute; top: 0; left: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-before img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-empty { width: 100%; height: 100%; display: grid; place-items: center; background: var(--linen); color: var(--mineral); font-size: 14px; }
.ba-line { position: absolute; top: 0; left: var(--pos); width: 1px; aspect-ratio: auto; height: calc(100% - 2.6em); background: var(--paper-bright); pointer-events: none; }
.ba input { position: absolute; top: 0; left: 0; width: 100%; height: calc(100% - 2.6em); margin: 0; opacity: 0; cursor: ew-resize; }
.ba input:focus-visible ~ figcaption { color: var(--merlot); }
.ba-tag { position: absolute; top: 16px; padding: 6px 10px; background: rgba(18,16,14,.7); color: var(--paper); font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; pointer-events: none; }
.ba-tag-l { left: 16px; } .ba-tag-r { right: 16px; }
.ba figcaption { height: 2.6em; display: flex; align-items: flex-end; font-size: 14px; color: var(--mineral); }
@media (max-width: 860px) { .examples { grid-template-columns: 1fr; } }

/* What they sent: a scattered board */
.ba-before { background: var(--linen); overflow: clip; }
.tile { position: absolute; display: block; padding: 5px; background: var(--paper-bright); box-shadow: 0 6px 18px rgba(18,16,14,.18); }
.tile img { display: block; width: 100%; height: 100%; object-fit: cover; }
.tile-1 { left: 5%;  top: 16%; width: 30%; aspect-ratio: 4/3; rotate: -4deg; }
.tile-2 { left: 30%; top: 8%;  width: 19%; aspect-ratio: 3/4; rotate: 3deg; }
.tile-3 { left: 13%; top: 52%; width: 27%; aspect-ratio: 9/14; rotate: 2deg; z-index: 2; }
.tile-4 { left: 38%; top: 47%; width: 26%; aspect-ratio: 1;   rotate: -3deg; }
.tile-5 { left: 52%; top: 12%; width: 22%; aspect-ratio: 4/5; rotate: 5deg; }
.tile-6 { left: 70%; top: 40%; width: 26%; aspect-ratio: 4/3; rotate: -2deg; }
.tile-7 { left: 60%; top: 68%; width: 20%; aspect-ratio: 1;   rotate: 4deg; }

.tile-8 { left: 84%; top: 8%; width: 18%; aspect-ratio: 3/4; rotate: -5deg; }
.tile-video::after {
  content: ''; position: absolute; left: 50%; top: 50%; width: 44px; height: 44px; translate: -50% -50%;
  background: rgba(18,16,14,.72) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 6.5v11l9-5.5z' fill='%23faf8f3'/%3E%3C/svg%3E") center/24px no-repeat;
  border-radius: 50%;
}

.hp { position: absolute; left: -9999px; }
.btn:disabled { opacity: .7; cursor: progress; }
