:root {
  --paper: #FAF8F4;
  --paper-warm: #F4F1EA;
  --paper-sage: #EDEEE6;
  --surface: #FFFFFF;
  --ink: #131313;
  --ink-soft: #3A3A38;
  --ink-muted: #6E6E66;
  --accent: #6E7A55;
  --accent-soft: #E4E7DA;
  --line: #E5E2D9;
  --focus: #6E7A55;
  --trust-card-h: 8.75rem;
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-space: clamp(4rem, 8vw, 7rem);
  --radius-card: 12px;
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 1.5rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.6rem, 4.4vw, 3.6rem);
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
}

h1 em,
h2 em {
  font-weight: 400;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-space);
}

.eyebrow {
  margin-bottom: 1.25rem;
  color: var(--accent);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.image-well {
  overflow: hidden;
  background: var(--paper-warm);
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: .625rem;
  padding: .75rem 1.375rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.2;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button svg,
.text-link svg {
  width: 1.125rem;
  height: 1.125rem;
}

.button--primary {
  background: var(--ink);
  color: var(--surface);
}

.button--primary:hover {
  background: var(--accent);
}

.button--secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button--secondary:hover {
  border-color: var(--ink-muted);
  background: var(--surface);
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.icon-button {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.icon-button:hover {
  color: var(--accent);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}

/* The frosted backdrop lives on a pseudo-element, NOT on .site-header itself.
   backdrop-filter (like transform and filter) makes an element a containing block
   for position:fixed descendants — and the mobile nav drawer is a descendant. With
   the blur on the header, the drawer resolved against the header's box and rendered
   as a short clipped panel instead of a full-height sheet. The header creates a
   stacking context (z-index:100), so z-index:-1 keeps this behind the header's
   content while staying inside it. */
.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: color-mix(in srgb, var(--paper) 96%, transparent);
  backdrop-filter: blur(12px);
  content: '';
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.site-header__inner {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: var(--ink);
  line-height: 1;
}

.wordmark__name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: -.04em;
}

.wordmark__descriptor {
  margin-top: .25rem;
  font-size: .5rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  transform: translateX(.15em);
}

.nav-toggle {
  position: relative;
  z-index: 102;
  margin-left: auto;
}

.primary-nav {
  position: fixed;
  z-index: 101;
  inset: 0 0 0 auto;
  width: min(88vw, 24rem);
  padding: 7rem var(--gutter) 2rem;
  overflow-y: auto;
  background: var(--surface);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .25s ease, visibility .25s;
}

.primary-nav::before {
  position: fixed;
  z-index: -1;
  top: 0;
  right: min(88vw, 24rem);
  bottom: 0;
  width: calc(100vw - min(88vw, 24rem));
  background: rgba(19, 19, 19, .28);
  content: '';
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.primary-nav.is-open {
  transform: translateX(0);
  visibility: visible;
}

.primary-nav.is-open::before {
  opacity: 1;
}

.primary-nav__list,
.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav__list {
  display: grid;
  gap: 0;
}

.primary-nav__list a {
  display: block;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.2;
}

.primary-nav__mobile-actions {
  display: grid;
  gap: .75rem;
  margin-top: 2rem;
}

.utility-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--ink-soft);
  font-size: .875rem;
}

.cart-count {
  display: inline-grid;
  min-width: 1.25rem;
  height: 1.25rem;
  padding-inline: .3rem;
  place-items: center;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--ink);
  font-size: .625rem;
  font-weight: 600;
}

.header-actions {
  display: none;
}

.hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 6.5rem) 3rem;
  background: var(--paper-warm);
}

.hero__inner {
  display: grid;
  gap: 2.75rem;
}

.hero__copy {
  align-self: center;
}

.hero__copy h1 {
  max-width: 12ch;
}

.hero__lede {
  max-width: 36rem;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
}

.hero__media {
  min-height: 22rem;
  /* Stacked: the photo sits below the copy, so it dissolves upward into the band.
     The side edges get a light feather too, so no edge of the photo is a hard line
     on any viewport. The bottom stays solid — the trust card covers it. */
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0, #000 22%),
    linear-gradient(to right, transparent 0, #000 9%, #000 91%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, transparent 0, #000 22%),
    linear-gradient(to right, transparent 0, #000 9%, #000 91%, transparent 100%);
  mask-composite: intersect;
}

.hero__media img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
}

.trust-bar {
  position: relative;
  z-index: 2;
  /* Standalone placement (shop, where it follows the America band): ordinary
     section rhythm, top and bottom. The straddle is scoped below to the one place
     it belongs — the homepage, where this card rides up onto the hero photo. */
  margin-block: clamp(2.5rem, 6vw, 4rem);
}

.hero + .trust-bar {
  /* -3rem lands the card flush with the photo's bottom edge; the extra pull is the
     straddle. Narrow screens get a fixed 4rem — the card is a four-row stack there,
     so half its height would bury most of the photo. */
  margin-top: calc(-3rem - 4rem);
  margin-bottom: 0;
}

.trust-bar__card {
  display: grid;
  padding: .5rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.trust-item:last-child {
  border-bottom: 0;
}

.trust-item__icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
}

.trust-item__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.trust-item__title {
  margin-bottom: .2rem;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
}

.trust-item p {
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: .75rem;
  line-height: 1.4;
}

.featured {
  padding-top: calc(var(--section-space) - 1rem);
}

.section-heading {
  max-width: 47rem;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading--split {
  display: flex;
  max-width: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.section-heading--split .eyebrow {
  margin-bottom: 1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding-block: .25rem;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.3;
}

.text-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.product-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  transition: box-shadow .2s ease, transform .2s ease;
}

.product-card:hover {
  box-shadow: 0 6px 24px rgba(19, 19, 19, .06);
  transform: translateY(-1px);
}

.product-card__topline {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.product-card__category {
  padding: .35rem .65rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.product-card__wishlist {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  pointer-events: auto;
}

.product-card__wishlist svg {
  width: 1.125rem;
  height: 1.125rem;
}

.product-card__image-link {
  display: block;
  aspect-ratio: 1 / 1;
  border-bottom: 1px solid var(--line);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.015);
}

.product-card__body {
  padding: 1.25rem;
}

.product-card__name {
  margin-bottom: .35rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.2;
}

.product-card__name a:hover {
  color: var(--accent);
}

.product-card__descriptor {
  min-height: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--ink-muted);
  font-size: .8125rem;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.product-card__price {
  color: var(--ink);
  font-size: .9375rem;
  font-weight: 600;
}

.product-card__link {
  color: var(--ink-soft);
  font-size: .75rem;
  font-weight: 600;
}

.product-card__link:hover {
  color: var(--accent);
}

.micro-trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.micro-trust__inner {
  display: grid;
  padding-block: 1.5rem;
}

.micro-trust__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .75rem;
  color: var(--ink-soft);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.micro-trust__item + .micro-trust__item {
  border-top: 1px solid var(--line);
}

.micro-trust__item svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--accent);
}

.how-it-works {
  background: var(--paper-sage);
}

.how-it-works__intro {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.how-it-works__intro .section-heading {
  align-self: center;
  margin-bottom: 0;
}

.how-it-works__lede {
  max-width: 34rem;
  margin: 1.25rem 0 0;
  color: var(--ink-muted);
}

.how-it-works__image {
  aspect-ratio: 8 / 5;
  min-height: 15rem;
  border-radius: var(--radius-card);
}

.how-it-works__image img {
  width: 100%;
  height: 100%;
  min-height: 15rem;
  object-fit: cover;
}

.steps {
  display: grid;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  position: relative;
}

.step__visual {
  position: relative;
  display: inline-flex;
  margin-bottom: 1.25rem;
}

.step__icon {
  display: grid;
  width: 4.25rem;
  height: 4.25rem;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent);
}

.step__number {
  position: absolute;
  right: -.35rem;
  bottom: -.2rem;
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  border: 2px solid var(--paper-sage);
  border-radius: 50%;
  background: var(--accent);
  color: var(--surface);
  font-size: .5625rem;
  font-weight: 600;
}

.step h3,
.commitment-item h3,
.footer-column h3 {
  margin-bottom: .5rem;
  color: var(--ink);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1.35;
}

.step p,
.commitment-item p {
  max-width: 16rem;
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: .8125rem;
  line-height: 1.6;
}

.commitment {
  background: var(--paper);
}

.commitment__inner {
  display: grid;
  gap: 3.5rem;
}

.commitment__copy h2 {
  max-width: 12ch;
}

.commitment__grid {
  display: grid;
  gap: 2rem;
}

.commitment-item__icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.25rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
}

.commitment-item__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.site-footer {
  padding-top: clamp(3.5rem, 7vw, 6rem);
  background: var(--ink);
  color: rgba(255, 255, 255, .68);
}

.newsletter {
  display: grid;
  gap: 2rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.newsletter .eyebrow {
  margin-bottom: .8rem;
  color: #B7C29F;
}

.newsletter h2 {
  margin-bottom: .75rem;
  color: var(--surface);
}

.newsletter p:last-child {
  margin-bottom: 0;
  font-size: .875rem;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-self: center;
}

.newsletter__form input {
  width: 100%;
  min-height: 3.25rem;
  padding: .75rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--surface);
  outline: 0;
}

.newsletter__form input::placeholder {
  color: rgba(255, 255, 255, .5);
}

.newsletter__form input:focus-visible {
  border-color: #B7C29F;
  outline: 3px solid #B7C29F;
  outline-offset: 2px;
}

.newsletter__form .button {
  background: var(--surface);
  color: var(--ink);
}

.newsletter__form .button:hover {
  background: var(--accent-soft);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.5rem;
  padding-block: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.footer-column h3 {
  margin-bottom: 1rem;
  color: var(--surface);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: .6rem;
}

.footer-column a {
  font-size: .8125rem;
}

.footer-column a:hover,
.legal-nav a:hover {
  color: var(--surface);
}

.footer-bottom {
  display: grid;
  gap: 2rem;
  padding-block: 2.5rem;
  font-size: .6875rem;
  line-height: 1.6;
}

.footer-bottom__brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.footer-bottom__brand p,
.ruo-disclaimer {
  margin-bottom: 0;
}

.wordmark--footer {
  color: var(--surface);
}

.wordmark--footer .wordmark__name {
  font-size: 1.6rem;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.ruo-disclaimer {
  max-width: 40rem;
}

@media (min-width: 640px) {
  .trust-bar__card {
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem;
  }

  .trust-item {
    padding: 1.25rem;
    border-bottom: 0;
  }

  .trust-item:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading--split {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

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

  .micro-trust__inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .micro-trust__item + .micro-trust__item {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .steps,
  .commitment__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newsletter {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, .85fr);
  }

  .newsletter__form {
    flex-direction: row;
  }

  .newsletter__form .button {
    flex: 0 0 auto;
  }

  .footer-links {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 900px) {
  body.nav-open {
    overflow: auto;
  }

  .site-header__inner {
    min-height: 5.5rem;
  }

  .nav-toggle,
  .primary-nav__mobile-actions {
    display: none;
  }

  .primary-nav {
    position: static;
    width: auto;
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    transform: none;
    visibility: visible;
  }

  .primary-nav::before {
    display: none;
  }

  .primary-nav__list {
    display: flex;
    align-items: center;
    gap: clamp(.85rem, 1.7vw, 1.65rem);
  }

  .primary-nav__list a {
    padding: .5rem 0;
    border: 0;
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 500;
    line-height: 1.3;
  }

  .primary-nav__list a:hover {
    color: var(--accent);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: .2rem;
  }

  .cart-button {
    position: relative;
  }

  .cart-count--badge {
    position: absolute;
    top: .1rem;
    right: -.15rem;
    min-width: 1rem;
    height: 1rem;
    border: 2px solid var(--paper);
    font-size: .5rem;
  }

  .button--header {
    min-height: 2.65rem;
    margin-left: .55rem;
    padding-inline: 1.15rem;
    font-size: .75rem;
  }

  .hero {
    padding-block: clamp(4.5rem, 7vw, 7rem) 3rem;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
    align-items: stretch;
    gap: clamp(2rem, 5vw, 5rem);
  }

  .hero__copy h1 {
    max-width: none;
    font-size: clamp(2.6rem, 4.6vw, 3.5rem);
  }

  .hero + .trust-bar {
    /* -3rem is flush with the photo's edge; pulling up half the card's own height
       puts exactly 50% of it over the image. */
    margin-top: calc(-3rem - var(--trust-card-h) / 2);
  }

  .trust-bar__card {
    /* Pinned so the 50% above is exact rather than content-dependent. */
    min-height: var(--trust-card-h);
    align-content: center;
  }

  .hero__media {
    min-height: 34rem;
    margin-right: calc(-1 * var(--gutter));
    /* Side-by-side: dissolve the left edge into the copy column, and soften top and
       bottom so the photo reads as light rather than as a pasted-in rectangle.
       Two gradients intersected — each one only ever subtracts opacity. */
    -webkit-mask-image:
      linear-gradient(to right, transparent 0, #000 42%),
      linear-gradient(to bottom, transparent 0, #000 16%, #000 84%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(to right, transparent 0, #000 42%),
      linear-gradient(to bottom, transparent 0, #000 16%, #000 84%, transparent 100%);
    mask-composite: intersect;
  }

  .hero__media img {
    min-height: 34rem;
  }

  .trust-bar__card {
    grid-template-columns: repeat(4, 1fr);
    padding: 1rem 0;
  }

  .trust-item {
    padding: 1rem clamp(.9rem, 2vw, 1.5rem);
    border-right: 1px solid var(--line);
    border-bottom: 0 !important;
  }

  .trust-item:last-child {
    border-right: 0;
  }

  .featured {
    padding-top: var(--section-space);
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .how-it-works__intro {
    grid-template-columns: minmax(0, 1.2fr) minmax(20rem, .8fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
    margin-bottom: 4rem;
  }

  .how-it-works__image,
  .how-it-works__image img {
    min-height: 15rem;
  }

  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1.5rem, 4vw, 4rem);
  }

  .step:not(:last-child)::after {
    position: absolute;
    top: 2.1rem;
    left: 5.5rem;
    width: calc(100% - 2.5rem);
    border-top: 1px dashed var(--accent);
    content: '';
    opacity: .55;
  }

  .step__visual {
    z-index: 1;
  }

  .commitment__inner {
    grid-template-columns: minmax(20rem, .9fr) minmax(0, 1.3fr);
    align-items: center;
    gap: clamp(2.5rem, 5vw, 5rem);
  }

  .commitment__copy h2 {
    max-width: none;
    font-size: clamp(1.9rem, 2.6vw, 2.3rem);
  }

  .footer-bottom {
    grid-template-columns: auto auto minmax(20rem, 1fr);
    align-items: center;
  }

  .legal-nav {
    justify-content: center;
  }

  .ruo-disclaimer {
    justify-self: end;
    text-align: right;
  }
}

@media (min-width: 1200px) {
  .hero__media {
    margin-right: calc((100vw - 1200px) / -2 - 2.5rem);
  }

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

  .commitment__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Global search */

body.search-open {
  overflow: hidden;
}

kbd {
  font-family: var(--font-body);
}

.search-trigger {
  position: relative;
}

.search-shortcut {
  position: absolute;
  right: -.1rem;
  bottom: .05rem;
  display: grid;
  width: 1rem;
  height: 1rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: .25rem;
  background: var(--paper);
  color: var(--ink-muted);
  font-size: .5625rem;
  line-height: 1;
}

.search-trigger--mobile {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.search-trigger--mobile kbd {
  display: inline-grid;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: .3rem;
  background: var(--paper);
  color: var(--ink-muted);
  font-size: .6875rem;
}

/* A `display` value on the element outranks the UA's `[hidden] { display: none }`,
   so without this guard the panel renders open on page load. */
.search-overlay[hidden] {
  display: none;
}

.search-overlay {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  padding: clamp(1rem, 4vw, 2.5rem);
  /* The panel owns the only scroll region. When this scrolled too, its scroller
     sat inside a second one and the sheet showed two scrollbars side by side. */
  overflow: hidden;
  place-items: start center;
}

.search-overlay__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(19, 19, 19, .58);
  backdrop-filter: blur(3px);
}

.search-panel {
  position: relative;
  width: min(100%, 58rem);
  max-height: calc(100vh - clamp(2rem, 8vw, 5rem));
  margin-top: clamp(1rem, 4vh, 3rem);
  padding: clamp(1.25rem, 4vw, 2.25rem);
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: 0 24px 80px rgba(19, 19, 19, .2);
}

.search-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.search-panel__header .eyebrow {
  margin-bottom: .5rem;
}

.search-panel__header h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.65rem, 4vw, 2.4rem);
}

.search-panel__close {
  margin: -.5rem -.5rem 0 0;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.search-form__field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: .75rem;
  padding: .25rem .35rem .25rem 1rem;
  border: 1px solid var(--ink-muted);
  border-radius: var(--radius-pill);
  background: var(--paper);
}

.search-form__field > svg {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--accent);
}

.search-form__field input {
  width: 100%;
  min-width: 0;
  padding: .65rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  outline: 0;
}

.search-form__field input::-webkit-search-cancel-button {
  display: none;
}

.search-form__field:focus-within {
  border-color: var(--focus);
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.search-form__field input:focus-visible {
  outline: 0;
}

.search-form__clear {
  padding: .6rem .75rem;
  border: 0;
  background: transparent;
  color: var(--ink-muted);
  font-size: .75rem;
  font-weight: 600;
}

.search-form__clear:hover {
  color: var(--accent);
}

.search-state {
  display: none;
  margin-top: 1.5rem;
}

.search-overlay--typed .search-state--typed,
.search-overlay--empty .search-state--empty,
.search-overlay--no-results .search-state--no-results {
  display: block;
}

.search-results {
  display: grid;
  gap: 1.5rem;
}

.search-result-group h3,
.search-suggestions h3 {
  margin-bottom: .65rem;
  color: var(--accent);
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.search-result {
  border-top: 1px solid var(--line);
}

.search-result[aria-selected="true"],
.search-result:hover {
  background: var(--accent-soft);
}

.search-result--product {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr) auto;
  align-items: center;
  gap: .25rem .75rem;
  padding: .65rem;
}

.search-result__thumb {
  width: 3.25rem;
  height: 3.25rem;
  grid-row: 1 / 3;
  overflow: hidden;
  border-radius: .5rem;
}

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

.search-result__body {
  display: grid;
  min-width: 0;
}

.search-result__body strong {
  overflow: hidden;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result__body small {
  color: var(--ink-muted);
  font-size: .6875rem;
}

.search-result--product .product-card__category {
  grid-column: 2;
  justify-self: start;
}

.search-result__price {
  grid-row: 1 / 3;
  grid-column: 3;
  color: var(--ink);
  font-size: .75rem;
  font-weight: 600;
}

.search-result--link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem .75rem;
  color: var(--ink);
  font-size: .8125rem;
  font-weight: 600;
}

.search-result--link span {
  color: var(--accent);
}

.search-state--empty {
  gap: 1.5rem;
}

.search-overlay--empty .search-state--empty {
  display: grid;
}

.search-chips,
.search-pathways {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.search-chips button,
.search-pathways a {
  padding: .55rem .8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--paper);
  color: var(--ink-soft);
  font-size: .75rem;
  line-height: 1.2;
}

.search-chips button:hover,
.search-pathways a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.search-state--no-results {
  padding: 1.5rem;
  background: var(--paper-warm);
  border-radius: var(--radius-card);
  text-align: center;
}

.search-state--no-results p {
  margin-bottom: 0;
  font-size: .875rem;
}

.search-state--no-results a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}

.search-panel__hint {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .3rem;
  margin: 1.25rem 0 0;
  color: var(--ink-muted);
  font-size: .625rem;
}

.search-panel__hint kbd {
  padding: .15rem .3rem;
  border: 1px solid var(--line);
  border-radius: .25rem;
  background: var(--paper);
  color: var(--ink-soft);
}

/* Shared page heroes */

.page-hero {
  padding-block: clamp(2.75rem, 6vw, 5rem);
  background: var(--paper-warm);
}

.page-hero__inner {
  display: grid;
  gap: 2rem;
}

.page-hero__copy {
  align-self: center;
}

.page-hero__copy h1 {
  max-width: 17ch;
}

.page-hero__lede {
  max-width: 40rem;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
}

.page-hero__media {
  min-height: 15rem;
  /* Stacked: feather all four edges into the band. No border-radius — the edges
     dissolve, so a corner radius would have nothing to round. */
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0, #000 12%, #000 88%, transparent 100%),
    linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, transparent 0, #000 12%, #000 88%, transparent 100%),
    linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-composite: intersect;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 15rem;
  object-fit: cover;
}

.page-hero--compact {
  padding-block: clamp(2rem, 4vw, 3.5rem);
}

.page-hero--shop .page-hero__copy h1 {
  max-width: 30ch;
  font-size: clamp(2.3rem, 3.6vw, 3.2rem);
}

.page-hero--shop .page-hero__copy h1 em {
  /* 41 characters — needs a smaller size than the roman line to stay unbroken. */
  font-size: .6em;
}

.page-hero--compact .page-hero__copy h1 {
  margin-bottom: .75rem;
}

/* Made and tested in America */

.quality-proof {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quality-proof__intro {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.quality-proof__intro h2 {
  margin-bottom: 0;
}

.quality-proof__intro > p {
  max-width: 37rem;
  margin-bottom: 0;
  align-self: end;
  color: var(--ink-muted);
}

.quality-proof__grid {
  display: grid;
}

.quality-proof__item {
  position: relative;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.quality-proof__icon {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1rem;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--accent) 38%, transparent);
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent);
}

.quality-proof__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.quality-proof__number {
  position: absolute;
  top: 1.75rem;
  right: .25rem;
  color: var(--accent);
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .12em;
}

.quality-proof__item h3 {
  margin-bottom: .5rem;
  color: var(--ink);
  font-size: .9375rem;
  line-height: 1.35;
}

.quality-proof__item p {
  max-width: 18rem;
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: .75rem;
  line-height: 1.6;
}

/* The zero top padding exists so the footer-proof strip can sit flush against the
   footer's top edge — but pages that carry the full Made-in-America band drop that
   strip, and there the newsletter needs its padding back. Scope it to footers that
   actually contain the strip. */
.site-footer:has(.footer-proof) {
  padding-top: 0;
}

.footer-proof {
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .035);
}

.footer-proof__grid {
  display: grid;
}

.footer-proof__item {
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  gap: .75rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-proof__item:last-child {
  border-bottom: 0;
}

.footer-proof__item > svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: .1rem;
  color: #B7C29F;
}

.footer-proof__item h2 {
  margin-bottom: .3rem;
  color: var(--surface);
  font-family: var(--font-body);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.footer-proof__item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .58);
  font-size: .625rem;
  line-height: 1.55;
}

.footer-proof + .container {
  padding-top: clamp(3.5rem, 7vw, 6rem);
}

@media (min-width: 640px) {
  .search-result--product {
    grid-template-columns: 3.25rem minmax(0, 1fr) auto auto;
    gap: .75rem;
  }

  .search-result__thumb,
  .search-result__price {
    grid-row: auto;
  }

  .search-result--product .product-card__category {
    grid-column: auto;
  }

  .search-result__price {
    grid-column: auto;
  }

  .search-state--empty {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quality-proof__grid,
  .footer-proof__grid,
  .account-stats,
  .account-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quality-proof__item:nth-child(odd) {
    padding-right: 1.5rem;
  }

  .quality-proof__item:nth-child(even) {
    padding-left: 1.5rem;
    border-left: 1px solid var(--line);
  }

  .footer-proof__item {
    padding-inline: 1.25rem;
    border-right: 1px solid rgba(255, 255, 255, .12);
  }

  .footer-proof__item:nth-child(2n) {
    border-right: 0;
  }

  .footer-proof__item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

}

@media (min-width: 900px) {
  .search-panel {
    padding: 2.25rem;
  }

  .search-results {
    grid-template-columns: minmax(0, 1.7fr) repeat(2, minmax(0, .8fr));
    align-items: start;
    gap: 1.75rem;
  }

  .page-hero__inner {
    grid-template-columns: minmax(0, 58fr) minmax(20rem, 42fr);
    align-items: stretch;
    gap: clamp(2rem, 5vw, 5rem);
  }

  .page-hero__media,
  .page-hero__media img {
    min-height: 24rem;
  }

  .page-hero__media {
    /* Side-by-side: bias the fade toward the copy column, as the homepage does,
       while keeping the remaining edges soft. */
    -webkit-mask-image:
      linear-gradient(to right, transparent 0, #000 34%, #000 94%, transparent 100%),
      linear-gradient(to bottom, transparent 0, #000 12%, #000 88%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(to right, transparent 0, #000 34%, #000 94%, transparent 100%),
      linear-gradient(to bottom, transparent 0, #000 12%, #000 88%, transparent 100%);
    mask-composite: intersect;
  }

  .page-hero--compact .page-hero__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .8fr);
  }

  .page-hero--compact .page-hero__media,
  .page-hero--compact .page-hero__media img {
    min-height: 14rem;
    max-height: 16rem;
  }

  .quality-proof__intro {
    grid-template-columns: minmax(0, .9fr) minmax(22rem, 1.1fr);
    align-items: end;
    gap: 3rem;
  }

  .quality-proof__grid,
  .footer-proof__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .quality-proof__item,
  .quality-proof__item:nth-child(odd),
  .quality-proof__item:nth-child(even) {
    padding: 1.5rem;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .quality-proof__item:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .footer-proof__item,
  .footer-proof__item:nth-child(2n) {
    padding: 1.25rem clamp(.8rem, 1.5vw, 1.25rem);
    border-right: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 0;
  }

  .footer-proof__item:first-child {
    padding-left: 0;
  }

  .footer-proof__item:last-child {
    padding-right: 0;
    border-right: 0;
  }

}
/* How-it-works steps: on narrow screens the desktop 4-across layout collapses to
   four stranded circles with dead space beside each. A left icon rail with the copy
   alongside reads as an ordered sequence, and the connector returns the progression
   the dashed arrows give at desktop. */
@media (max-width: 899px) {
  .steps {
    gap: 0;
  }

  .step {
    display: grid;
    grid-template-columns: 4.25rem minmax(0, 1fr);
    column-gap: 1.25rem;
    padding-bottom: 2.25rem;
  }

  .step:last-child {
    padding-bottom: 0;
  }

  .step__visual {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 4.9rem;
    bottom: .4rem;
    left: 2.125rem;
    border-left: 1px dashed color-mix(in srgb, var(--accent) 38%, transparent);
  }

  .step h3 {
    align-self: center;
    margin-bottom: .35rem;
  }

  .step p {
    margin-bottom: 0;
  }
}

/* Global search on a phone.
   A floating card with its own scroller reads badly on a small screen, so the
   panel becomes a full-screen sheet: the title and input stay put, only the
   results scroll, and the Resources group is dropped — it duplicates the footer
   nav and pushed the useful results below the fold. */
@media (max-width: 639px) {
  .search-overlay {
    padding: 0;
    place-items: stretch;
  }

  .search-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    max-height: none;
    margin-top: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .search-panel__header,
  .search-form {
    flex: none;
  }

  .search-state {
    /* min-height:0 lets a flex child actually shrink so its own scroller works. */
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    margin-inline: calc(-1 * clamp(1.25rem, 4vw, 2.25rem));
    padding-inline: clamp(1.25rem, 4vw, 2.25rem);
  }

  .search-results .search-result-group:nth-child(3) {
    display: none;
  }

  .search-panel__hint {
    display: none;
  }
}


/* ---------------------------------------------------------------------------
 * Appended 2026-08-25 (audit-01). CSS is append-only; nothing above was edited.
 *
 * 1. Icons rendered through the core Icon API lose their root stroke/fill
 *    attributes to the sanitiser. Restore the line-art treatment for
 *    block-rendered `vow/*` icons. Front-end template icons are inlined directly
 *    by vow_icon() and never pass through the sanitiser.
 * 2. Warning tokens are shared by COA (endotoxin failed) and Contact (field
 *    errors); declared globally so a page loading only contact.css resolves them.
 *    Values duplicated from coa.css, which still declares them for itself.
 * ------------------------------------------------------------------------- */
.wp-block-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:root {
  --warning: #8A2D24;
  --warning-soft: #F9E7E4;
  --warning-line: #DFA9A2;
}

/* Appended 2026-08-25 (audit-02 F6): the cart badge is server-rendered empty and
 * hydrated client-side; an empty badge must not paint as a bare pill. */
.cart-count:empty {
  display: none;
}

/* ---------------------------------------------------------------------------
 * Appended 2026-08-25 (design review 02, Sol). Overrides only; rules above are
 * untouched. Each item cites the review finding.
 * ------------------------------------------------------------------------- */
/* Hero: copy 48% / image 52% per BRIEF.md; headline at the authored display scale. */
@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
  }

  .hero__copy h1 {
    font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  }
}

/* Strength line on product cards reads as compact metadata, not body copy. */
.product-card__variants {
  margin: -.75rem 0 1rem;
  color: var(--ink-muted);
  font-size: .75rem;
  line-height: 1.4;
}

/* How-it-works at 640–899px: one ordered rail, not two competing columns. */
@media (max-width: 899px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* Typed search results keep the Resources group on phones (COA lookup, FAQs). */
@media (max-width: 639px) {
  .search-results .search-result-group:nth-child(3) {
    display: block;
  }
}

/* ---------------------------------------------------------------------------
 * Appended 2026-08-25 (Stage 1 cleanup). Existing rules remain untouched.
 * ------------------------------------------------------------------------- */
.announcement-bar {
  padding: .5rem var(--gutter);
  border-bottom: 1px solid var(--line);
  background: var(--paper-sage);
  color: var(--accent);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .14em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.newsletter__hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.newsletter__status {
  grid-column: 1 / -1;
  margin-top: -1.25rem;
  font-size: .875rem;
}

.newsletter__form.is-success input[type="email"] {
  border-color: var(--accent);
}

.newsletter__form.is-success + .newsletter__status {
  color: var(--accent-soft);
}

.newsletter__form.is-error input[type="email"] {
  border-color: var(--warning);
}

.newsletter__form.is-error + .newsletter__status {
  color: var(--warning-line);
}

@media (min-width: 640px) {
  .newsletter__status {
    grid-column: 2;
  }
}

/* Appended 2026-08-25 (audit-03 F20/F21): global WooCommerce notices. Page-level
 * copies remain under the append-only policy; this is the shared fallback everywhere. */
.woocommerce-notices-wrapper {
  padding-top: 1rem;
}

.woocommerce-notices-wrapper:empty {
  padding: 0;
}

.notice {
  margin: 0 0 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: .625rem;
  background: var(--surface);
  color: var(--ink-soft);
  font-size: .8125rem;
  line-height: 1.55;
  list-style: none;
}

.notice--error {
  border-left-color: var(--warning);
  background: var(--warning-soft);
}

.notice a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: .18em;
}

/* Editor pages with blocks (audit 12 B2): plain content sits in the column; the Vow band
   blocks stay full-bleed like their home/shop counterparts. */
.entry-content {
  padding-block: var(--section-space, 4rem) 0;
}
.entry-content > :not(.wp-block-vow-quality-band):not(.wp-block-vow-trust-bar):not(.wp-block-vow-faq) {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.entry-content > .wp-block-vow-product-grid {
  padding-block: 0 var(--section-space, 4rem);
}
.entry-content > .wp-block-vow-quality-band,
.entry-content > .wp-block-vow-trust-bar,
.entry-content > .wp-block-vow-faq {
  margin-top: var(--section-space, 4rem);
}

/* ---------------------------------------------------------------------------
 * Appended 2026-08-26 (staging check, vowpeptides.com). Override only.
 * Hero ↔ trust-card straddle: the card rides half its own height up onto the
 * photo (`.hero + .trust-bar`), but the copy column was centred in the FULL
 * row, so once the display h1 (design review 02) reaches three lines — every
 * viewport ≥ ~1300px — the CTAs slid under the card (21px at 1440/1720, 6px
 * clearance at 1024). Reserve the half-card zone plus breathing room at the
 * bottom of the copy column; the copy then centres in the space above the
 * card, and a taller copy grows the row (and the stretched photo) instead of
 * colliding. Stacked layouts (< 900px) place the card below the photo and are
 * untouched.
 * ------------------------------------------------------------------------- */
@media (min-width: 900px) {
  .hero__copy {
    padding-bottom: calc(var(--trust-card-h) / 2 + 2rem);
  }
}

/* Appended 2026-08-28 (Jon: "the header moves down when it should stay static"): the
 * sticky header pinned to top:0, which is underneath WordPress's fixed admin bar, so a
 * logged-in scroll slid the top 32px of the header behind it. Offset by the bar's
 * height for anyone who sees one; visitors are unaffected. WordPress puts the bar at
 * 32px, 46px below 783px, and un-fixes it under 601px. */
.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media screen and (max-width: 600px) {
  .admin-bar .site-header {
    top: 0;
  }
}
