@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/source-serif-4/latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/source-serif-4/latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/source-sans-3/latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/source-sans-3/latin-700-normal.woff2") format("woff2");
}

:root {
  --primary: #491330;
  --secondary: #E2CBD7;
  --surface: #E6EBEF;
  --text: #21171C;
  --accent: #7EBEBE;
  --ground: #5D1D3F;
  --face-heading: "Source Serif 4", serif;
  --face-body: "Source Sans 3", sans-serif;
  --shadow: 0 1.4rem 2.6rem -0.7rem rgb(73 19 48 / 0.55);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: auto; }

body {
  margin: 0;
  overflow-x: clip;
  background: #5D1D3F;
  color: #E6EBEF;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  caret-color: #7EBEBE;
}

::selection {
  background: #7EBEBE;
  color: #21171C;
}

:focus-visible {
  outline: 2px solid #7EBEBE;
  outline-offset: 3px;
}

img { border: 0; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }

.skip {
  position: absolute;
  inset-inline-start: 1rem;
  inset-block-start: 0.5rem;
  transform: translateY(-150%);
  background: #E6EBEF;
  color: #21171C;
  padding: 0.5rem 0.75rem;
  z-index: 5;
}
.skip:focus { transform: none; }

.nav {
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4rem;
  max-height: 80px;
  padding: 0 5vw;
  color: #E2CBD7;
}

.lockup {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #E2CBD7;
  text-decoration: none;
}

.mark {
  width: 2.25rem;
  height: 2.25rem;
  display: block;
  flex: none;
}

.wordmark {
  font-family: "Source Serif 4", serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  line-height: 1;
}

.nav-link {
  color: #E2CBD7;
  font-weight: 700;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-link:hover { text-decoration: underline; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: end;
  gap: 2.5rem;
  min-height: 100dvh;
  padding: 5.5rem 5vw 3rem;
  background: #5D1D3F;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  z-index: 0;
}

.hero-copy,
.hero-object { position: relative; z-index: 1; }

.hero h1 {
  font-family: "Source Serif 4", serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 11ch;
  margin: 0 0 1rem;
  color: #E6EBEF;
}

.promise {
  max-width: 36ch;
  margin: 0;
  font-size: 1.05rem;
  color: #E2CBD7;
}

.accent-band {
  width: 8rem;
  height: 0.45rem;
  margin: 0.85rem 0 1.4rem;
  background: #7EBEBE;
}

.offer-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.price {
  margin: 0;
  font-family: "Source Serif 4", serif;
  font-weight: 700;
  font-size: 1.65rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: #E6EBEF;
}

.buy {
  appearance: none;
  border: 0;
  border-radius: 0;
  background: #491330;
  color: #E6EBEF;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  min-height: 44px;
  min-width: 8.5rem;
  padding: 0.75rem 1.15rem;
  cursor: pointer;
  white-space: nowrap;
}

.buy:hover { background: #5D1D3F; }
.buy:active { transform: scale(0.98); }
.buy:disabled,
.buy:disabled:hover {
  background: #E2CBD7;
  color: #491330;
  cursor: not-allowed;
  transform: none;
}

.notice {
  max-width: 38ch;
  margin: 0.85rem 0 0;
  color: #E2CBD7;
  font-size: 0.95rem;
}

.hero-png {
  width: 7.5rem;
  height: 7.5rem;
  object-fit: cover;
  object-position: 12% center;
  margin: 0 0 1rem;
  box-shadow: var(--shadow);
}

.hero-object { display: grid; justify-items: end; align-items: end; }

.cover-wrap {
  position: relative;
  width: min(22rem, 86%);
  margin-inline-end: 4%;
}

.cover-file {
  width: 100%;
  height: auto;
  display: block;
  transform: rotate(-3deg);
  box-shadow: var(--shadow);
  background: #5D1D3F;
}

.sticker {
  position: absolute;
  inset-block-start: -6%;
  inset-inline-end: -4%;
  display: grid;
  place-items: center;
  width: 7.25rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #7EBEBE;
  color: #21171C;
  font-family: "Source Serif 4", serif;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.1;
  text-align: center;
  padding: 0.8rem;
  transform: none;
}

.paper {
  background: #E6EBEF;
  color: #21171C;
}

.paper .price,
.sheet-copy .price { color: #21171C; }

.inside {
  padding: 4.5rem 5vw 4rem;
}

.inside-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  max-width: 72rem;
  margin: 0 0 1.5rem;
}

.inside h2,
.who h2,
.sample h2,
.arrive h2,
.faq h2,
.sheets h2,
.print-path h2 {
  font-family: "Source Serif 4", serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.badge {
  display: inline-block;
  background: #7EBEBE;
  color: #21171C;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1;
  padding: 0.45rem 0.55rem;
  border-radius: 0;
}

.inside-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  max-width: 72rem;
}

.inside-grid figure:first-child { grid-row: span 2; }

.inside-grid img,
.sample img,
.sheet-stage img.sheet {
  width: 100%;
  height: auto;
  display: block;
}

.inside-grid figcaption,
.sample figcaption {
  margin-top: 0.55rem;
  max-width: 42ch;
  font-size: 0.95rem;
}

.sheet-list {
  max-width: 72rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.sheet-list li {
  display: grid;
  grid-template-columns: 9.5rem 1fr;
  gap: 1rem;
  padding-block-end: 0.85rem;
  border-bottom: 1px solid rgb(73 19 48 / 0.22);
}

.sheet-list strong {
  font-weight: 700;
}

.opener {
  position: relative;
  min-height: 52vh;
  display: grid;
  align-items: end;
  background: #5D1D3F;
  overflow: hidden;
}

.opener img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.opener h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 3.5rem 5vw 2.5rem;
  max-width: 16ch;
  color: #E6EBEF;
  font-family: "Source Serif 4", serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.who {
  padding: 6rem 8vw 5rem;
}

.who p,
.sample p,
.arrive p,
.faq p,
.sheets p,
.print-path p {
  max-width: 62ch;
  margin: 0 0 0.8rem;
}

.who .limit {
  font-family: "Source Serif 4", serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.2;
  max-width: 22ch;
  margin-top: 1.4rem;
}

.sample {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: end;
  padding: 3rem 5vw 3.5rem;
  background: #5D1D3F;
  color: #E6EBEF;
}

.sample h2,
.sample figcaption { color: #E6EBEF; }

.sample figcaption { max-width: 28ch; font-size: 1.15rem; }

.arrive {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 12rem;
  gap: 2rem;
  align-items: start;
  padding: 5rem 5vw 4rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.35rem;
  max-width: 46rem;
}

.steps li {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.85rem;
  align-items: baseline;
}

.steps b {
  font-family: "Source Serif 4", serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #E2CBD7;
}

.callout {
  background: #E6EBEF;
  color: #21171C;
  padding: 1rem 1rem 1.1rem;
  margin-top: 2.6rem;
  font-family: "Source Serif 4", serif;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.15;
}

.faq { padding: 4rem 5vw 3rem; }

.faq details {
  max-width: 46rem;
  border-bottom: 1px solid rgb(73 19 48 / 0.22);
  padding: 0.85rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.faq details p { margin: 0.45rem 0 0.35rem; }

.close-buy {
  padding: 0 5vw 4rem;
  background: #5D1D3F;
}

.close-buy .buy { margin-top: 0.4rem; }

.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 5vw 2rem;
  background: #5D1D3F;
  color: #E2CBD7;
}

.social {
  width: 4.5rem;
  aspect-ratio: 1;
  background: #5D1D3F;
  display: grid;
  place-items: center;
  border: 1px solid rgb(226 203 215 / 0.35);
}

.social .mark {
  width: 2.4rem;
  height: 2.4rem;
  color: #E2CBD7;
  transform: none;
}

.host {
  margin: 0;
  font-size: 0.85rem;
  color: #E2CBD7;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 3rem;
  align-items: end;
  min-height: 100dvh;
  padding: 5.5rem 5vw 3rem;
  background: #5D1D3F;
}

.sheet-stage {
  position: relative;
  display: grid;
  align-items: center;
}

.sheet-stage .sheet {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: var(--shadow);
}

.sheet-stage .file {
  position: absolute;
  width: min(16rem, 58%);
  height: auto;
  inset-inline-start: 22%;
  inset-block-start: 14%;
  transform: rotate(-3deg);
  box-shadow: var(--shadow);
}

.product-png {
  position: absolute;
  width: 6.5rem;
  height: 8rem;
  object-fit: cover;
  object-position: 88% center;
  inset-inline-end: 4%;
  inset-block-start: 8%;
  box-shadow: var(--shadow);
}

.sheet-copy {
  background: #E6EBEF;
  color: #21171C;
  padding: 1.6rem 1.4rem 1.4rem;
}

.crumb {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.crumb a { color: #491330; }

.crumb [aria-current="page"] {
  font-family: "Source Serif 4", serif;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.2;
}

.sheet-copy h1 {
  font-family: "Source Serif 4", serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 0.8rem;
  max-width: 16ch;
  color: #21171C;
}

.sheet-copy .promise { color: #21171C; }

.sheet-copy .notice { color: #491330; }

.sheets,
.print-path { padding: 4rem 5vw; }

.thumb {
  width: 7.5rem;
  aspect-ratio: 1;
  position: relative;
  background: #5D1D3F;
  overflow: hidden;
  margin: 1.5rem 0 0;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb .reduced {
  position: absolute;
  width: 1.7rem;
  height: 1.7rem;
  inset-inline-end: 0.4rem;
  inset-block-end: 0.4rem;
  color: #E2CBD7;
}

.mark-hero .month-stub {
  transform-box: fill-box;
  transform-origin: center bottom;
}
.mark-hero .month-rule {
  transform-box: fill-box;
  transform-origin: left center;
}

@media (prefers-reduced-motion: no-preference) {
  .mark-hero .month-stub {
    animation: stub-enter 0.18s ease-out both;
  }
  .mark-hero .month-rule {
    animation: rule-draw 0.62s ease-in-out 0.12s both;
  }
}

@keyframes stub-enter {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}
@keyframes rule-draw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  .mark-hero .month-stub,
  .mark-hero .month-rule,
  .buy:active {
    animation: none;
    transform: none;
  }
}

@media (max-width: 700px) {
  .hero,
  .product-hero,
  .sample,
  .arrive,
  .inside-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero { padding: 5rem 1.25rem 2rem; gap: 1.5rem; }
  .hero-object { justify-items: start; }
  .cover-wrap { width: min(16rem, 78%); margin-inline-end: 0; }
  .sticker { width: 5.75rem; inset-inline-end: -2%; }
  .inside, .who, .faq, .sheets, .print-path { padding-inline: 1.25rem; }
  .who { padding-block: 3.5rem; }
  .sheet-list li { grid-template-columns: 1fr; gap: 0.2rem; }
  .opener { min-height: 42vh; }
  .opener h2 { padding: 2.5rem 1.25rem 1.5rem; }
  .sample { padding: 2rem 1.25rem; }
  .arrive { padding: 3rem 1.25rem 2.5rem; }
  .callout { margin-top: 0; }
  .product-hero { padding: 5rem 1.25rem 2rem; }
  .sheet-stage .file { width: min(11rem, 62%); inset-inline-start: 18%; }
  .foot { padding-inline: 1.25rem; align-items: flex-start; }
  .close-buy { padding-inline: 1.25rem; }
}

.favicon-live {
  width: 16px;
  height: 16px;
  background: #5D1D3F;
  display: grid;
  place-items: center;
  flex: none;
}
.favicon-live svg {
  width: 16px;
  height: 16px;
  color: #E2CBD7;
  transform: none;
}
