@font-face {
  font-family: "BCC Serif";
  src: url("../fonts/CormorantGaramond-Variable.ttf") format("truetype");
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "BCC Sans";
  src: url("../fonts/SourceSans3-Variable.ttf") format("truetype");
  font-weight: 300 800;
  font-display: swap;
}

@font-face {
  font-family: "BCC Mono";
  src: url("../fonts/RobotoMono-Variable.ttf") format("truetype");
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --paper: #f7f1e8;
  --paper-soft: #fffdf8;
  --ink: #183a32;
  --forest: #0d4a3a;
  --forest-deep: #0a3a2f;
  --sage: #afc5b3;
  --sage-soft: #e4ede4;
  --coral: #f26443;
  --coral-soft: #fde6dc;
  --apricot: #f5b47b;
  --aqua: #4ea8b8;
  --aqua-soft: #e8f4f6;
  --muted: #66716c;
  --line: #d7d9d3;
  --white: #fff;
  --shadow: 0 24px 70px rgba(24, 58, 50, 0.12);
  --shadow-small: 0 12px 32px rgba(24, 58, 50, 0.09);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "BCC Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--white);
  background: var(--forest);
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--forest);
  border-radius: 10px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(24, 58, 50, 0.09);
  background: rgba(247, 241, 232, 0.92);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  text-decoration: none;
}

.brand__mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.brand__mark svg {
  width: 27px;
  height: 27px;
}

.brand__name {
  font-family: "BCC Mono", monospace;
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
}

.site-nav a.button {
  color: var(--white);
}

.button,
.button-secondary {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button {
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 10px 25px rgba(13, 74, 58, 0.18);
}

.button:hover,
.button:focus-visible {
  background: var(--forest-deep);
  box-shadow: 0 14px 28px rgba(13, 74, 58, 0.25);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--forest);
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--sage-soft);
  transform: translateY(-2px);
}

.button--large {
  min-height: 60px;
  padding-inline: 30px;
  font-size: 1.02rem;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  font-family: "BCC Mono", monospace;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.display {
  max-width: 780px;
  margin: 0;
  font-family: "BCC Serif", Georgia, serif;
  font-size: clamp(4rem, 7vw, 7.1rem);
  font-weight: 500;
  line-height: 0.83;
  letter-spacing: -0.055em;
}

.dot,
.display .dot,
.section-title .dot {
  color: var(--coral);
}

.lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 95px 0 120px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -118px;
  height: 240px;
  border-top: 3px solid var(--coral);
  border-radius: 50% 50% 0 0;
  background: var(--forest);
  transform: rotate(-1.6deg);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(490px, 1.12fr);
  align-items: center;
  gap: 60px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.hero__meta {
  margin: 25px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 13px;
  color: var(--forest);
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(13, 74, 58, 0.14);
  border-radius: 999px;
  font-size: 0.8rem;
}

.pdf-stage {
  position: relative;
  min-height: 590px;
  perspective: 1400px;
}

.pdf-stage::before {
  content: "";
  position: absolute;
  inset: 12% 7% 4% 10%;
  background: radial-gradient(circle, rgba(175, 197, 179, 0.45), transparent 67%);
  filter: blur(25px);
}

.pdf-card {
  position: absolute;
  width: 280px;
  overflow: hidden;
  border: 9px solid var(--paper-soft);
  border-radius: 7px;
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}

.pdf-card img {
  width: 100%;
  height: auto;
}

.pdf-card--cover {
  z-index: 3;
  top: 25px;
  left: 50%;
  width: 320px;
  transform: translateX(-49%) rotate(-3deg);
}

.pdf-card--menu {
  z-index: 2;
  top: 92px;
  left: 0;
  transform: rotate(-8deg);
}

.pdf-card--movement {
  z-index: 4;
  top: 104px;
  right: -5px;
  width: 270px;
  transform: rotate(7deg);
}

.authentic-label {
  position: absolute;
  z-index: 6;
  right: 11px;
  bottom: 18px;
  max-width: 210px;
  padding: 12px 15px;
  color: var(--ink);
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-small);
  font-size: 0.78rem;
}

.authentic-label strong {
  display: block;
  color: var(--coral);
  font-family: "BCC Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section {
  padding: 110px 0;
}

.section--white {
  background: var(--paper-soft);
}

.section--forest {
  color: var(--white);
  background: var(--forest);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-title {
  margin: 0;
  font-family: "BCC Serif", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.section-copy {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section--forest .section-copy {
  color: rgba(255, 255, 255, 0.72);
}

.promise-grid,
.method-grid,
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.promise-card,
.method-card,
.content-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper-soft);
}

.promise-card__icon,
.content-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  color: var(--forest);
  background: var(--sage-soft);
  border-radius: 50%;
}

.promise-card:nth-child(2) .promise-card__icon,
.content-card:nth-child(2) .content-card__icon {
  color: var(--coral);
  background: var(--coral-soft);
}

.promise-card:nth-child(3) .promise-card__icon,
.content-card:nth-child(3) .content-card__icon {
  color: var(--aqua);
  background: var(--aqua-soft);
}

.promise-card h3,
.method-card h3,
.content-card h3 {
  margin: 0 0 8px;
  font-family: "BCC Serif", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
}

.promise-card p,
.method-card p,
.content-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.real-preview {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 70px;
}

.real-preview__stack {
  position: relative;
  min-height: 620px;
}

.real-preview__stack img {
  position: absolute;
  width: min(390px, 82%);
  border: 8px solid var(--white);
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.real-preview__stack img:first-child {
  z-index: 2;
  top: 0;
  left: 0;
  transform: rotate(-3deg);
}

.real-preview__stack img:last-child {
  z-index: 1;
  right: 0;
  bottom: 0;
  transform: rotate(4deg);
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 35px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-size: 0.77rem;
  font-weight: 800;
}

.method-card {
  min-height: 260px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.method-card__number {
  display: block;
  margin-bottom: 58px;
  color: var(--apricot);
  font-family: "BCC Serif", Georgia, serif;
  font-size: 3.1rem;
  line-height: 1;
}

.method-card p {
  color: rgba(255, 255, 255, 0.7);
}

.personalization {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: start;
}

.personalization-panel {
  display: grid;
  gap: 12px;
}

.personalization-row {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper-soft);
}

.personalization-row strong {
  color: var(--forest);
  font-family: "BCC Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.personalization-row span {
  color: var(--muted);
  font-size: 0.94rem;
}

.price-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.price-card {
  padding: 38px;
  color: var(--ink);
  background: var(--paper-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price {
  margin: 14px 0 0;
  font-family: "BCC Serif", Georgia, serif;
  font-size: 5.3rem;
  font-weight: 600;
  line-height: 0.9;
}

.price small {
  font-family: "BCC Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
}

.price-note {
  margin: 12px 0 26px;
  color: var(--muted);
  font-size: 0.92rem;
}

.price-card .button {
  width: 100%;
}

.trust-line {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.faq {
  max-width: 800px;
}

.faq details {
  border-top: 1px solid var(--line);
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  padding: 22px 0;
  font-weight: 700;
  cursor: pointer;
}

.faq p {
  margin: -4px 0 24px;
  color: var(--muted);
}

.section article > h2 {
  margin: 46px 0 10px;
  font-family: "BCC Serif", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.08;
}

.section article > p,
.section article > li,
.section article > ul,
.section article > ol {
  color: var(--muted);
}

.section article > ul,
.section article > ol {
  padding-left: 1.25rem;
}

.section article > ul li,
.section article > ol li {
  margin-bottom: 8px;
}

.site-footer {
  padding: 46px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--forest-deep);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.site-footer a {
  color: inherit;
}

/* Questionnaire */
.form-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 92% 8%, rgba(175, 197, 179, 0.28), transparent 29%),
    var(--paper);
}

.form-header {
  border-bottom: 1px solid rgba(24, 58, 50, 0.09);
}

.form-header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.form-save {
  color: var(--muted);
  font-size: 0.82rem;
}

.progress-shell {
  position: sticky;
  z-index: 12;
  top: 0;
  padding: 14px 0;
  background: rgba(247, 241, 232, 0.94);
  border-bottom: 1px solid rgba(24, 58, 50, 0.07);
  backdrop-filter: blur(16px);
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.progress-track {
  height: 6px;
  overflow: hidden;
  background: rgba(175, 197, 179, 0.38);
  border-radius: 999px;
}

.progress-value {
  width: 16.666%;
  height: 100%;
  background: var(--coral);
  border-radius: inherit;
  transition: width 280ms ease;
}

.questionnaire {
  width: min(900px, calc(100% - 34px));
  margin-inline: auto;
  padding: 62px 0 130px;
}

.question-step {
  display: none;
  animation: stepIn 260ms ease both;
}

.question-step.active {
  display: block;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.question-step__head {
  max-width: 720px;
  margin-bottom: 38px;
}

.question-step h1 {
  margin: 0;
  font-family: "BCC Serif", Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.3rem);
  font-weight: 500;
  line-height: 0.93;
  letter-spacing: -0.04em;
}

.question-step__intro {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.field-stack {
  display: grid;
  gap: 20px;
}

.field-block {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: rgba(255, 253, 248, 0.86);
}

.field-block[hidden],
.conditional[hidden] {
  display: none;
}

.field-label,
.field-block legend {
  display: block;
  margin: 0 0 6px;
  color: var(--ink);
  font-family: "BCC Serif", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.15;
}

.field-hint {
  display: block;
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 0.86rem;
}

.input-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.input-wrap label {
  display: block;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.text-input,
.number-input,
.email-input,
.textarea-input,
.select-input {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cdd3ce;
  border-radius: 12px;
  outline: none;
  transition: border 160ms ease, box-shadow 160ms ease;
}

.textarea-input {
  min-height: 105px;
  resize: vertical;
}

.text-input:focus,
.number-input:focus,
.email-input:focus,
.textarea-input:focus,
.select-input:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(13, 74, 58, 0.11);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice {
  min-height: 58px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cdd3ce;
  border-radius: 13px;
  text-align: left;
  transition: border 140ms ease, background 140ms ease, color 140ms ease, transform 140ms ease;
}

.choice:hover,
.choice:focus-visible {
  border-color: var(--forest);
  transform: translateY(-1px);
}

.choice.selected {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.choice small {
  display: block;
  margin-top: 3px;
  color: inherit;
  opacity: 0.7;
  font-size: 0.76rem;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.chip {
  min-height: 42px;
  padding: 9px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cdd3ce;
  border-radius: 999px;
  font-size: 0.9rem;
}

.chip.selected {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.range-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.range-output {
  min-width: 48px;
  color: var(--coral);
  font-family: "BCC Mono", monospace;
  font-weight: 700;
  text-align: right;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--forest);
}

.consent-list {
  display: grid;
  gap: 13px;
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 0.88rem;
}

.consent input {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  accent-color: var(--forest);
}

.form-error {
  min-height: 24px;
  margin: 18px 0 0;
  color: #a6402a;
  font-weight: 700;
}

.form-nav {
  position: fixed;
  z-index: 30;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 13px 0;
  background: rgba(255, 253, 248, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.form-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.form-nav .button {
  min-width: 190px;
  border: 0;
}

.form-nav .button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-back {
  padding: 12px 0;
  color: var(--muted);
  background: none;
  border: 0;
  font-weight: 700;
}

.form-back[hidden] {
  visibility: hidden;
}

.analysis-overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(10, 58, 47, 0.95);
}

.analysis-overlay[hidden] {
  display: none;
}

.analysis-card {
  width: min(520px, 100%);
  color: var(--white);
  text-align: center;
}

.analysis-card__mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 25px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  animation: breathe 1.5s ease-in-out infinite alternate;
}

@keyframes breathe {
  to {
    transform: scale(1.08);
    border-color: var(--coral);
  }
}

.analysis-card h2 {
  margin: 0;
  font-family: "BCC Serif", Georgia, serif;
  font-size: 3rem;
  font-weight: 500;
}

.analysis-card p {
  color: rgba(255, 255, 255, 0.72);
}

/* Results / checkout */
.result-hero {
  padding: 78px 0 100px;
}

.result-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 56px;
  align-items: start;
}

.result-summary {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.result-summary__range {
  margin: 5px 0 24px;
  font-family: "BCC Serif", Georgia, serif;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 600;
  line-height: 0.9;
}

.result-summary__range small {
  font-family: "BCC Sans", sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
}

.priority-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.priority {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px;
  background: var(--paper);
  border-radius: 13px;
}

.priority__number {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-family: "BCC Mono", monospace;
  font-size: 0.7rem;
}

.checkout-card {
  position: sticky;
  top: 28px;
  padding: 32px;
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.checkout-card .eyebrow {
  color: var(--apricot);
}

.checkout-card .price {
  color: var(--white);
}

.checkout-card .check-list li {
  color: rgba(255, 255, 255, 0.8);
}

.checkout-card .check-list li::before {
  color: var(--forest);
  background: var(--apricot);
}

.checkout-card .button {
  color: var(--forest);
  background: var(--paper-soft);
  box-shadow: none;
}

.checkout-card .trust-line {
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 980px) {
  .site-nav a:not(.button) {
    display: none;
  }

  .hero {
    padding-top: 70px;
  }

  .hero__grid,
  .real-preview,
  .personalization,
  .price-wrap,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 20px;
  }

  .pdf-stage {
    width: min(650px, 100%);
    margin: 20px auto 0;
  }

  .real-preview__stack {
    width: min(670px, 100%);
    margin-inline: auto;
  }

  .promise-grid,
  .method-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .promise-card,
  .method-card,
  .content-card {
    min-height: 0;
  }

  .promise-card__icon,
  .content-card__icon,
  .method-card__number {
    margin-bottom: 20px;
  }

  .checkout-card {
    position: static;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand__mark {
    width: 37px;
    height: 37px;
  }

  .brand__name {
    font-size: 0.62rem;
  }

  .site-nav .button {
    min-height: 42px;
    padding: 9px 14px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 100px;
  }

  .display {
    font-size: clamp(3.6rem, 18vw, 5.4rem);
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button,
  .hero__actions .button-secondary {
    width: 100%;
  }

  .pdf-stage {
    min-height: 440px;
  }

  .pdf-card {
    width: 190px;
    border-width: 6px;
  }

  .pdf-card--cover {
    width: 225px;
  }

  .pdf-card--movement {
    width: 185px;
  }

  .authentic-label {
    right: 0;
    bottom: 2px;
  }

  .section {
    padding: 78px 0;
  }

  .section-title {
    font-size: 3.25rem;
  }

  .real-preview__stack {
    min-height: 480px;
  }

  .real-preview__stack img {
    width: 82%;
  }

  .personalization-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .site-footer__inner {
    flex-direction: column;
  }

  .form-save {
    display: none;
  }

  .questionnaire {
    padding-top: 40px;
  }

  .question-step h1 {
    font-size: 3.45rem;
  }

  .field-block {
    padding: 20px;
  }

  .input-grid,
  .choice-grid,
  .choice-grid--3 {
    grid-template-columns: 1fr;
  }

  .form-nav .button {
    min-width: 0;
  }

  .result-summary,
  .checkout-card {
    padding: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
