:root {
  --parchment: #F4EEE2;
  --parchment-deep: #EAE1CD;
  --card: #FFFDF7;
  --navy: #132A45;
  --navy-deep: #0C1D31;
  --turquoise: #1FA9A0;
  --turquoise-ink: #12706A;
  --ink: #2B2A26;
  --ink-soft: #6E6A5E;
  --hairline: #DFD5BF;
  --max: 1080px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
body {
  font-family: 'Archivo', sans-serif;
  background: var(--parchment);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
}
h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
}
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
a {
  color: var(--turquoise-ink);
}
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 3px solid var(--turquoise);
  outline-offset: 2px;
}
.btn {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease;
}
.btn:active {
  transform: scale(.98);
}
.btn-navy {
  background: var(--navy);
  color: var(--parchment);
}
.btn-navy:hover {
  background: var(--navy-deep);
}
.btn-turq {
  background: var(--turquoise);
  color: #fff;
}
.btn-turq:hover {
  background: var(--turquoise-ink);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--parchment);
}

/* ---------- header ---------- */
header {
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 238, 226, .92);
  backdrop-filter: blur(6px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 21px;
  color: var(--navy);
  text-decoration: none;
}
.logo span {
  color: var(--turquoise-ink);
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.nav-links a:hover {
  color: var(--turquoise-ink);
}
.nav .btn {
  padding: 10px 18px;
  font-size: 14px;
}
@media (max-width: 720px) {
  .nav-links li:not(:last-child) {
    display: none;
  }
}

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 88px 0 96px;
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 52px);
  margin-bottom: 20px;
}
.hero p.lede {
  font-size: 19px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 46ch;
}
.hero-ctas {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-ctas .link {
  font-weight: 500;
  text-decoration: none;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--turquoise-ink);
  margin-bottom: 16px;
}
/* CSS-built poster miniatures — replace with renders of the real PDFs */
.poster-stack {
  position: relative;
  height: 420px;
}
.poster {
  position: absolute;
  width: 250px;
  height: 354px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 18px 40px rgba(19, 42, 69, .18);
  transition: transform .25s ease;
  overflow: hidden;
}
/* real poster render sits on top;
if the file is missing, onerror removes it and the CSS placeholder underneath shows instead */ .poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.poster-back {
  right: 0;
  top: 0;
  transform: rotate(4.5deg);
}
.poster-front {
  left: 4%;
  top: 44px;
  transform: rotate(-3deg);
}
.poster-stack:hover .poster-back {
  transform: rotate(6deg) translateY(-6px);
}
.poster-stack:hover .poster-front {
  transform: rotate(-1.5deg) translateY(-6px);
}
.p-head {
  padding: 16px 14px;
  border-radius: 4px 4px 0 0;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
}
.poster-front .p-head {
  background: var(--navy);
  height: 84px;
}
.poster-back .p-head {
  background: #1E2B3A;
  height: 70px;
  font-size: 14px;
}
.p-band {
  height: 14px;
  background: var(--turquoise);
}
.p-rows {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.p-row {
  height: 26px;
  background: #EAF6F4;
  border-left: 4px solid var(--turquoise);
  border-radius: 0;
}
.p-grid {
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.p-cell {
  height: 52px;
  background: #F4F3F0;
  border-radius: 4px;
  border-top: 3px solid var(--turquoise);
}
.p-foot {
  height: 34px;
  background: var(--navy);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0 0 4px 4px;
}
@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 56px 0 64px;
  }
  .poster-stack {
    height: 420px;
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ---------- navy bands ---------- */
.band {
  background: var(--navy);
  color: var(--parchment);
  padding: 64px 0;
}
.band h2 {
  color: var(--parchment);
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 14px;
}
.band p {
  color: #BFC9D6;
  max-width: 68ch;
  font-size: 18px;
}

/* ---------- kit grid ---------- */
.section {
  padding: 88px 0;
}
.section > .wrap > h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  margin-bottom: 12px;
}
.section-intro {
  color: var(--ink-soft);
  max-width: 62ch;
  margin-bottom: 44px;
  font-size: 18px;
}
.kit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.kit-card {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 20px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.kit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(19, 42, 69, .08);
}
.kit-thumb {
  height: 96px;
  border-radius: 6px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.kit-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--parchment-deep);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 8px;
}
.kit-card h3 {
  font-size: 19px;
  margin-bottom: 6px;
}
.kit-card p {
  font-size: 15px;
  color: var(--ink-soft);
}
.kit-note {
  margin-top: 32px;
  font-size: 16px;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- samples ---------- */
.samples {
  background: var(--parchment-deep);
}
.sample-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 780px) {
  .sample-grid {
    grid-template-columns: 1fr;
  }
}
.sample-card {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.sample-card h3 {
  font-size: 23px;
  margin-bottom: 10px;
}
.sample-card > p {
  color: var(--ink-soft);
  margin-bottom: 24px;
  font-size: 16px;
}
.specimen-mark {
  position: absolute;
  top: 22px;
  right: -34px;
  transform: rotate(35deg);
  background: var(--parchment);
  color: #A79D82;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
  padding: 5px 40px;
  border: 1px solid var(--hairline);
}
/* crop-mark corners — the print-shop signature */
.crop {
  position: relative;
}
.crop::before, .crop::after, .crop .crop-b::before, .crop .crop-b::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--turquoise);
  border-style: solid;
  border-width: 0;
}
.crop::before {
  top: 10px;
  left: 10px;
  border-top-width: 2px;
  border-left-width: 2px;
}
.crop::after {
  top: 10px;
  right: 10px;
  border-top-width: 2px;
  border-right-width: 2px;
}
.crop .crop-b::before {
  bottom: 10px;
  left: 10px;
  border-bottom-width: 2px;
  border-left-width: 2px;
}
.crop .crop-b::after {
  bottom: 10px;
  right: 10px;
  border-bottom-width: 2px;
  border-right-width: 2px;
}
.ml-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ml-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  padding: 13px 16px;
  border: 1.5px solid var(--hairline);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
}
.ml-form input[type="email"]:focus {
  border-color: var(--turquoise);
  outline: none;
}
.consent {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 12px;
}

/* ---------- pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  align-items: stretch;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.price-card.featured {
  border: 2px solid var(--turquoise);
}
.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--turquoise);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.tier {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.price {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--navy);
}
.price small {
  font-size: 17px;
  color: var(--ink-soft);
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
}
.price-card ul {
  list-style: none;
  text-align: left;
  margin: 14px 0 22px;
  flex: 1;
}
.price-card li {
  font-size: 15px;
  padding: 7px 0 7px 26px;
  position: relative;
  color: var(--ink);
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  color: var(--turquoise-ink);
  font-weight: 700;
}
.vat {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--ink-soft);
}
.rebrand-strip {
  margin-top: 28px;
  background: var(--card);
  border: 1px dashed var(--turquoise);
  border-radius: 12px;
  padding: 26px 30px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.rebrand-strip h3 {
  font-size: 21px;
  margin-bottom: 8px;
}
.rebrand-strip p {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 72ch;
}
.rebrand-strip .btn {
  white-space: nowrap;
}

/* ---------- faq ---------- */
.faq details {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 0 22px;
  margin-bottom: 12px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  padding: 18px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--navy);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-size: 24px;
  color: var(--turquoise-ink);
  font-weight: 400;
}
.faq details[open] summary::after {
  content: "–";
}
.faq details p {
  padding: 0 0 20px;
  color: var(--ink-soft);
  font-size: 16px;
}

/* ---------- final cta / footer ---------- */
.final {
  text-align: center;
}
.final h2 {
  font-size: clamp(28px, 3.4vw, 40px);
}
.final p {
  margin: 14px auto 30px;
}
footer {
  background: var(--navy-deep);
  color: #8FA0B5;
  padding: 36px 0;
  font-size: 14px;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
footer a {
  color: #B9C6D6;
  text-decoration: none;
  margin-left: 20px;
}
footer a:hover {
  color: #fff;
}

/* ---------- poster specimen page ---------- */
.poster-page {
  padding: 56px 0 88px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: var(--navy);
  margin-bottom: 28px;
}
.back-link:hover {
  color: var(--turquoise-ink);
}
.poster-page h1 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 10px;
}
.poster-page .section-intro {
  margin-bottom: 36px;
}
.poster-view {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) {
  .poster-view {
    grid-template-columns: 1fr;
  }
}
.specimen-frame {
  position: relative;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(19, 42, 69, .12);
  overflow: hidden;
}
.specimen-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.specimen-frame .guard {
  position: absolute;
  inset: 20px;
  border-radius: 4px;
  z-index: 3;
}
.specimen-frame .wm {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  transform: rotate(-24deg) scale(1.4);
  opacity: .16;
  gap: 34px 48px;
}
.specimen-frame .wm span {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: .28em;
  color: var(--navy);
  white-space: nowrap;
}
.specimen-placeholder {
  aspect-ratio: 210 / 297;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--navy) 0 22%, transparent 22%), repeating-linear-gradient(180deg, #F4F3F0 0 14px, var(--card) 14px 40px), var(--card);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
}
.specimen-placeholder span {
  font-size: 13px;
  color: var(--ink-soft);
}
.poster-meta h2 {
  font-size: 22px;
  margin: 4px 0 12px;
}
.poster-meta p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 18px;
}
.poster-meta ul {
  list-style: none;
  margin: 0 0 26px;
}
.poster-meta li {
  font-size: 15px;
  padding: 6px 0 6px 26px;
  position: relative;
}
.poster-meta li::before {
  content: "\2713";
  position: absolute;
  left: 2px;
  color: var(--turquoise-ink);
  font-weight: 700;
}
.locked-note {
  background: var(--parchment-deep);
  border: 1px dashed var(--hairline);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 22px;
}
.poster-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
