/* PhotoParcel · Quietly Alive
   Exact software. Imperfect life. */

:root {
  color-scheme: light;
  --canvas: #f4f0e7;
  --canvas-quiet: #e7ded0;
  --surface: #fcf9f2;
  --surface-raised: #fffdf8;
  --ink: #222522;
  --navy: #24384a;
  --muted: #4f534e;
  --soft: #696d67;
  --border: #d8d2c6;
  --border-strong: #88837a;
  --accent: #a94f35;
  --accent-hover: #8f3f2b;
  --accent-ink: #fffdf8;
  --peach: #ca7256;
  --peach-soft: #edc3ad;
  --ochre: #b08142;
  --cobalt: #46677c;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, monospace;
  --content: 1160px;
  --copy: 720px;
  --radius-sm: 7px;
  --radius-control: 13px;
  --radius-card: 18px;
  --shadow: 0 24px 70px rgb(61 47 29 / 12%);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 24%, rgb(202 114 86 / 4%), transparent 24rem),
    radial-gradient(circle at 92% 68%, rgb(70 103 124 / 3%), transparent 28rem),
    var(--canvas);
  color: var(--ink);
  font: 17px/1.62 var(--sans);
  font-feature-settings: "kern" 1;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
p { margin: 0 0 1.1em; }
a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--canvas);
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid var(--ochre);
  outline-offset: 4px;
  border-radius: 4px;
}

.section-shell,
.site-header__inner,
.site-footer__inner {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--canvas) 92%, transparent);
  backdrop-filter: blur(16px);
}

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

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgb(36 56 74 / 14%);
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 30px);
}

.site-header nav a,
.site-footer nav a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 560;
  text-decoration: none;
}

.site-header nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-header nav a:hover,
.site-footer nav a:hover { color: var(--ink); }

.site-header nav .nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
}

.hero {
  padding-top: clamp(38px, 5vw, 64px);
  padding-bottom: 42px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(400px, 1.16fr);
  gap: clamp(32px, 5.5vw, 72px);
  align-items: center;
}

.hero-copy { max-width: 590px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  flex: 0 0 22px;
  width: 22px;
  height: 1px;
  background: var(--accent);
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin: 0 0 26px;
  color: var(--navy);
  font-size: clamp(48px, 5.5vw, 70px);
  line-height: .99;
}

h2 {
  max-width: 800px;
  margin: 0 0 24px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.04;
}

h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.32;
}

.lead {
  max-width: var(--copy);
  color: var(--muted);
  font-size: clamp(19px, 2.2vw, 22px);
  line-height: 1.52;
  text-wrap: pretty;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 22px;
}

.btn-row--centered { justify-content: center; }

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-hover); }
.btn-secondary { border-color: var(--border-strong); background: var(--surface); color: var(--ink); }
.btn-secondary:hover { border-color: var(--ink); }
.btn-block { width: 100%; margin-top: auto; }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  list-style: none;
}

.trust-list li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--accent);
  font-weight: 800;
}

.hero-art {
  position: relative;
  margin: 0;
}

.hero-art picture {
  display: block;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-art img {
  aspect-ratio: 4 / 5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
}

.app-story {
  overflow: hidden;
}

.phone-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 38px);
  align-items: start;
  max-width: 1040px;
  margin: 52px auto 0;
}

.swipe-cue { display: none; }

.phone-shot {
  margin: 0;
}

.phone-shot--left { transform: rotate(-2.2deg) translateY(26px); }
.phone-shot--center { position: relative; z-index: 1; }
.phone-shot--right { transform: rotate(2.2deg) translateY(26px); }

.phone-frame {
  position: relative;
  overflow: hidden;
  padding: 9px;
  border: 1px solid rgb(34 37 34 / 32%);
  border-radius: 42px;
  background: #151716;
  box-shadow: 0 30px 75px rgb(61 47 29 / 18%);
}

.phone-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 50%;
  width: 30%;
  height: 22px;
  border-radius: 99px;
  background: #111;
  transform: translateX(-50%);
}

.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 414 / 900;
  object-fit: contain;
  border-radius: 34px;
}

.phone-shot figcaption {
  max-width: 290px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.52;
  text-align: center;
}

.phone-shot figcaption strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.hero-art figcaption {
  margin-top: 12px;
  color: var(--soft);
  font-size: 12px;
  line-height: 1.5;
}

.approval-promise {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 17px 20px;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--border));
  border-radius: var(--radius-control);
  background: color-mix(in srgb, var(--peach) 9%, var(--surface));
}

.approval-promise__mark {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 800;
}

.approval-promise p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.45; }
.approval-promise strong { color: var(--ink); }
.approval-promise__eyebrow {
  display: block;
  margin-bottom: 3px;
  color: var(--terracotta);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 26px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.proof-strip li {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.proof-strip li + li { border-left: 1px solid var(--border); }
.proof-strip strong { color: var(--ink); font: 400 28px/1 var(--serif); }

.section-block { padding-top: clamp(82px, 10vw, 132px); padding-bottom: clamp(82px, 10vw, 132px); }
.section-block[id] { scroll-margin-top: 78px; }
.section-intro { margin-bottom: 44px; }
.section-intro--centered { margin-inline: auto; text-align: center; }
.section-intro--centered .eyebrow { justify-content: center; }
.section-intro--centered h2,
.section-intro--centered .lead { margin-inline: auto; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.steps--four { grid-template-columns: repeat(4, 1fr); }
.steps--six { grid-template-columns: repeat(3, 1fr); }

.steps li {
  min-height: 290px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.steps p { margin: 0; color: var(--muted); }
.step-number { display: block; margin-bottom: 60px; color: var(--accent); font: 600 12px/1 var(--mono); letter-spacing: .12em; }

.truth-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 18px;
  padding: 17px 24px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--canvas);
  font-size: 15px;
  text-align: center;
}

.truth-band span { opacity: .72; }

.artifact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: center;
}

.check-list,
.plan-list {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plan-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 27px;
  color: var(--muted);
}

.check-list li::before,
.plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.fine-print,
.pricing-note {
  color: var(--soft);
  font-size: 14px;
  line-height: 1.55;
}

.parcel-specimen {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 20%, rgb(217 139 104 / 22%), transparent 34%),
    linear-gradient(135deg, var(--surface-raised), var(--canvas-quiet));
  box-shadow: var(--shadow);
}

.parcel-specimen--photo {
  margin: 0;
  background: var(--surface);
}

.parcel-specimen--photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.parcel-specimen--photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgb(252 249 242 / 88%);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.parcel-envelope {
  position: absolute;
  left: 17%;
  right: 17%;
  bottom: 11%;
  height: 48%;
  display: grid;
  place-items: end center;
  padding-bottom: 30px;
  border: 1px solid #cdbb9c;
  border-radius: 4px 4px 18px 18px;
  background: #e8d8bb;
  color: #6e5c44;
  box-shadow: 0 20px 40px rgb(55 42 25 / 18%);
  font: 650 14px/1 var(--sans);
  letter-spacing: .04em;
}

.parcel-envelope::before,
.parcel-envelope::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, 50% 58%, 100% 0);
  background: #f1e4ca;
}

.parcel-envelope::after { clip-path: polygon(0 100%, 50% 48%, 100% 100%); background: #ddc9a8; }
.parcel-envelope span { position: relative; z-index: 2; }

.print {
  position: absolute;
  top: 12%;
  left: 26%;
  width: 42%;
  aspect-ratio: 2 / 3;
  padding: 11px 11px 30px;
  background: #fffaf0;
  box-shadow: 0 15px 38px rgb(53 39 24 / 25%);
  transform-origin: 50% 100%;
}

.print-one { transform: rotate(-12deg) translate(-26px, 28px); }
.print-two { transform: rotate(11deg) translate(34px, 18px); }
.print-three { transform: rotate(-1deg); }
.print-art { display: block; width: 100%; height: 100%; overflow: hidden; background: #d9d0be; }
.print-art--coast { background: linear-gradient(#e9b990 0 45%, #9ca7a5 45% 59%, #405c6f 59%); }
.print-art--peach { background: radial-gradient(circle at 53% 52%, #e7b184 0 20%, #d17555 21% 32%, transparent 33%), #ead7bd; }
.print-art--leaf { background: linear-gradient(150deg, transparent 42%, #394f46 43% 48%, transparent 49%), radial-gradient(ellipse at 63% 33%, #566f59 0 17%, transparent 18%), #d6c7aa; }
.specimen-note { position: absolute; right: 20px; bottom: 18px; color: var(--soft); font: 600 11px/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; }

.pricing-offer {
  max-width: 860px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  margin: 0 auto;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 530px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--surface);
  transition: transform .2s ease, box-shadow .2s ease;
}

.price-card--featured {
  border-color: var(--accent);
  box-shadow: 0 24px 60px rgb(169 79 53 / 14%);
}

.plan-badge {
  align-self: flex-start;
  margin: -48px 0 20px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.plan-badge--quiet {
  background: var(--navy);
}

.plan-name { margin: 0 0 16px; font: 400 25px/1.1 var(--serif); }
.plan-price { display: flex; align-items: baseline; gap: 8px; margin: 0 0 24px; }
.plan-price strong { font: 400 56px/1 var(--serif); letter-spacing: -.04em; }
.plan-price span { color: var(--muted); font-size: 14px; font-weight: 650; }
.price-card > p:not(.plan-name, .plan-price, .plan-badge) { color: var(--muted); }
.pricing-note { max-width: 750px; margin: 24px auto 0; text-align: center; }

.once-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: color-mix(in srgb, var(--surface) 65%, var(--canvas));
}

.once-card p:not(.plan-name) { color: var(--muted); }
.once-card .text-link { margin-top: 14px; color: var(--accent); }

.privacy-section { background: var(--navy); color: var(--accent-ink); }
.privacy-section .eyebrow,
.privacy-section .lead,
.privacy-section .text-link { color: var(--accent-ink); }
.privacy-section .eyebrow,
.privacy-section .lead { opacity: .82; }
.privacy-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(48px, 9vw, 130px); }
.privacy-points { margin: 40px 0; border-top: 1px solid color-mix(in srgb, var(--accent-ink) 25%, transparent); }
.privacy-points p { display: grid; grid-template-columns: 150px 1fr; gap: 22px; margin: 0; padding: 18px 0; border-bottom: 1px solid color-mix(in srgb, var(--accent-ink) 25%, transparent); }
.privacy-points span { opacity: .77; }
.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 750;
  text-underline-offset: 4px;
}

.referral { display: grid; grid-template-columns: .6fr 1.4fr; gap: clamp(48px, 8vw, 100px); align-items: center; }
.referral > div:last-child { max-width: 720px; }
.referral-mark { height: 320px; position: relative; overflow: hidden; border-radius: 50% 50% 45% 55%; background: color-mix(in srgb, var(--peach) 58%, var(--surface)); }
.referral-mark::before,
.referral-mark::after,
.referral-mark span::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 5px;
  left: 50%;
  top: 48%;
  border-radius: 99px;
  background: var(--accent);
  transform-origin: left center;
}
.referral-mark::before { transform: rotate(-34deg); }
.referral-mark::after { transform: rotate(34deg); }
.referral-mark span::before { width: 170px; transform: rotate(90deg); }

.faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(48px, 8vw, 110px); align-items: start; }
.faq-list { border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-size: 17px; font-weight: 700; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 25px; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 650px; padding: 0 42px 22px 0; color: var(--muted); }

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .steps li:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
    box-shadow: 0 18px 40px rgb(61 47 29 / 8%);
  }

  .price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 66px rgb(169 79 53 / 16%);
  }

  .faq summary:hover { color: var(--accent); }
}

.closing { text-align: center; }
.closing h2,
.closing .lead { margin-inline: auto; }

.site-footer { padding: 56px 0 64px; border-top: 1px solid var(--border); }
.site-footer__inner { display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: start; }
.site-footer p { margin: 12px 0 0; color: var(--muted); font-size: 14px; }
.site-footer .copyright { grid-column: 1 / -1; margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--border); }

/* Policy and support pages */
.legal-shell { width: min(calc(100% - 48px), 790px); margin-inline: auto; padding: 78px 0 110px; }
.legal-shell h1 { max-width: none; font-size: clamp(44px, 7vw, 66px); }
.legal-shell h2 { margin-top: 52px; font-size: clamp(28px, 4vw, 36px); }
.legal-shell h3 { margin-top: 34px; }
.legal-shell ul { padding-left: 22px; }
.legal-shell li { margin: 9px 0; }
.effective { margin-bottom: 6px; color: var(--muted); font-size: 15px; }
.notice { margin: 28px 0; padding: 18px 20px; border: 1px dashed var(--border-strong); border-radius: var(--radius-control); background: color-mix(in srgb, var(--surface) 78%, transparent); color: var(--muted); font-size: 15px; }
.legal-shell .btn-row { margin-top: 26px; }
.muted { color: var(--muted); }
.small { font-size: 15px; }
.rule { height: 1px; margin: 54px 0; border: 0; background: var(--border); }

@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-art { width: 100%; }
  .hero-art img { aspect-ratio: 16 / 9; object-position: center; }
  .steps,
  .steps--four,
  .steps--six { grid-template-columns: repeat(2, 1fr); }
  .phone-gallery { max-width: 760px; }
  .artifact { grid-template-columns: 1fr; }
  .parcel-specimen { min-height: 500px; }
  .privacy-layout,
  .faq { grid-template-columns: 1fr; }
  .referral { grid-template-columns: .7fr 1.3fr; }
}

@media (max-width: 720px) {
  .steps,
  .steps--four,
  .steps--six { grid-template-columns: 1fr; }

  .section-shell,
  .site-header__inner,
  .site-footer__inner,
  .legal-shell { width: min(calc(100% - 32px), var(--content)); }

  .site-header__inner { min-height: 70px; }
  .site-header nav a:not(:first-child, .nav-cta) { display: none; }
  .site-header nav .nav-cta { min-height: 44px; padding: 0 14px; }
  .hero { padding-top: 44px; }
  .section-block { padding-top: 72px; padding-bottom: 72px; }
  .hero-layout { gap: 30px; }
  h1 { font-size: clamp(43px, 13vw, 61px); }
  h2 { font-size: clamp(34px, 9vw, 42px); line-height: 1.02; }
  .btn-row { flex-direction: column; }
  .btn { width: 100%; }
  .hero-art picture { border-radius: 18px; }
  .proof-strip { grid-template-columns: 1fr; gap: 14px; }
  .proof-strip li { justify-content: flex-start; padding: 0; }
  .proof-strip li + li { border-left: 0; }
  .steps { grid-template-columns: 1fr; }
  .phone-gallery {
    grid-template-columns: 78vw 78vw 78vw;
    gap: 18px;
    width: calc(100vw - 16px);
    margin-left: calc((100% - 100vw) / 2 + 16px);
    padding: 10px 24px 34px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--accent) transparent;
    scrollbar-width: thin;
  }
  .swipe-cue {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 28px 0 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
  }
  .phone-shot,
  .phone-shot--left,
  .phone-shot--right {
    transform: none;
    scroll-snap-align: center;
  }
  .steps li { min-height: 230px; padding: 24px; }
  .step-number { margin-bottom: 38px; }
  .truth-band { align-items: flex-start; flex-direction: column; text-align: left; }
  .parcel-specimen { min-height: 430px; }
  .pricing-offer { grid-template-columns: 1fr; gap: 18px; }
  .price-card { min-height: auto; }
  .plan-badge { margin-top: -48px; }
  .privacy-points p { grid-template-columns: 1fr; gap: 4px; }
  .referral { grid-template-columns: 1fr; }
  .referral-mark { height: 260px; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer nav { flex-wrap: wrap; }
  .site-footer nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .site-footer .copyright { grid-column: auto; }
}

@media (max-width: 420px) {
  .brand { font-size: 17px; }
  .site-header nav a:not(.nav-cta) { display: none; }
  .site-header nav .nav-cta { font-size: 14px; }
  .lead { font-size: 18px; }
  .trust-list { display: grid; gap: 6px; }
  .approval-promise { align-items: flex-start; }
  .parcel-specimen { min-height: 360px; }
  .print { width: 45%; }
  .price-card { padding: 28px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}

@media (forced-colors: active) {
  .brand-icon { forced-color-adjust: none; }
}
