:root {
  --red: #d71920;
  --red-bright: #ef2630;
  --red-dark: #981017;
  --red-soft: #fff0f1;
  --ink: #111216;
  --ink-2: #1c1e24;
  --muted: #666b75;
  --muted-light: #b7bbc3;
  --line: #dedfe3;
  --line-dark: rgba(255, 255, 255, .14);
  --paper: #f4f2ee;
  --paper-2: #ebe8e2;
  --white: #ffffff;
  --green: #0f7b50;
  --yellow: #ffd339;
  --shadow-sm: 0 12px 32px rgba(17, 18, 22, .08);
  --shadow: 0 28px 80px rgba(17, 18, 22, .14);
  --shadow-red: 0 18px 38px rgba(215, 25, 32, .22);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  font-weight: 850;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

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

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 950;
}

h1 {
  font-size: clamp(3.2rem, 7.2vw, 6.25rem);
}

h2 {
  font-size: clamp(2.45rem, 5vw, 4.55rem);
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  line-height: 1.08;
}

p {
  margin: 0 0 1.15em;
}

em {
  color: var(--red);
  font-style: normal;
}

/* Announcement bar */
.top-strip {
  position: relative;
  z-index: 70;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
}

.top-strip-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 720;
  letter-spacing: .01em;
}

.top-strip strong {
  font-size: 17px;
  letter-spacing: -.02em;
}

.top-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 9px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.top-strip-separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .7);
}

.top-international {
  color: rgba(255, 255, 255, .82);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(17, 18, 22, .09);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 32px rgba(17, 18, 22, .04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  width: min(325px, 34vw);
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 820;
}

.site-nav > a:not(.button) {
  position: relative;
  padding: 12px 0;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  margin: auto;
  content: "";
  border-radius: 2px;
  background: var(--ink);
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}

.menu-toggle span::before {
  position: absolute;
  top: -6px;
}

.menu-toggle span::after {
  position: absolute;
  top: 6px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Buttons and links */
.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  overflow: hidden;
  border: 2px solid var(--red);
  border-radius: 12px;
  color: var(--white);
  background: var(--red);
  box-shadow: var(--shadow-red);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.button::after {
  content: "→";
  flex: 0 0 auto;
  font-size: 1.1em;
  transition: transform .18s ease;
}

.button:hover {
  border-color: var(--red-dark);
  background: var(--red-dark);
  box-shadow: 0 20px 42px rgba(152, 16, 23, .24);
  transform: translateY(-2px);
}

.button:hover::after {
  transform: translateX(3px);
}

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

.button-secondary:hover {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 18px 38px rgba(17, 18, 22, .16);
}

.button-light {
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .18);
}

.button-light:hover {
  border-color: var(--yellow);
  color: var(--ink);
  background: var(--yellow);
}

.button-small {
  min-height: 46px;
  padding: 11px 17px;
  border-radius: 10px;
  font-size: 13px;
}

.button-large {
  min-height: 60px;
  padding: 17px 25px;
  font-size: 16px;
}

.button-block {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  text-decoration: none;
}

.text-link span {
  color: var(--red);
  transition: transform .18s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

/* Decorative fragile ribbons */
.fragile-ribbon {
  position: absolute;
  z-index: 2;
  left: -3vw;
  width: 106vw;
  overflow: hidden;
  border-block: 2px solid rgba(255, 255, 255, .78);
  color: var(--red);
  background:
    repeating-linear-gradient(135deg, rgba(215, 25, 32, .09) 0 18px, transparent 18px 36px),
    var(--white);
  box-shadow: 0 10px 30px rgba(17, 18, 22, .12);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: .13em;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  pointer-events: none;
}

.fragile-ribbon span {
  display: block;
  padding: 12px 0 11px;
}

.fragile-ribbon-top {
  top: 26px;
  transform: rotate(-1.4deg);
}

.fragile-ribbon-bottom {
  top: -24px;
  transform: rotate(1.2deg);
}

/* Homepage hero */
.home-hero {
  position: relative;
  min-height: 680px;
  padding: 106px 0 96px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 22%, rgba(215, 25, 32, .24), transparent 29%),
    linear-gradient(135deg, #0d0e11 0%, #17191e 55%, #0e0f12 100%);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, black, transparent 70%);
}

.home-hero::after {
  content: "";
  position: absolute;
  right: -18vw;
  bottom: -48vw;
  width: 74vw;
  height: 74vw;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018);
}

.home-hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
  align-items: center;
  gap: 78px;
}

.home-hero-copy {
  max-width: 720px;
}

.eyebrow,
.section-kicker,
.page-kicker,
.card-eyebrow,
.footer-kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.home-hero .eyebrow span,
.directory-hero-copy .eyebrow span {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding: 5px 10px;
  border-radius: 7px;
  color: var(--white);
  background: var(--red);
  font-size: 10px;
}

.home-hero h1 {
  max-width: 760px;
  font-size: clamp(3.35rem, 5vw, 4.95rem);
}

.home-hero h1 em {
  display: block;
}

.hero-lede {
  max-width: 680px;
  margin: 22px 0 0;
  color: #d4d6dc;
  font-size: 20px;
  line-height: 1.62;
}

.hero-lede strong {
  color: var(--white);
}

.hero-offer {
  display: grid;
  grid-template-columns: 185px 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 670px;
  margin-top: 26px;
}

.hero-price-block {
  padding: 21px 22px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 18px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(12px);
}

.hero-price-block > span,
.hero-price-block > small {
  display: block;
  color: #bfc2ca;
  font-size: 12px;
}

.hero-price-block > strong {
  display: block;
  margin: 2px 0 3px;
  color: var(--white);
  font-size: 47px;
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: 1;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 16px 13px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 16px;
  background: rgba(255, 255, 255, .045);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  color: var(--white);
  font-size: 19px;
  line-height: 1.1;
}

.hero-facts span {
  margin-top: 5px;
  color: #aeb2bb;
  font-size: 11px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 22px;
}

.home-hero .button-secondary {
  border-color: rgba(255,255,255,.38);
  color: var(--white);
}

.home-hero .button-secondary:hover {
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
}

.hero-microcopy {
  display: flex;
  max-width: 630px;
  gap: 9px;
  margin: 16px 0 0;
  color: #aeb2bb;
  font-size: 13px;
}

.hero-microcopy span {
  color: #66d39e;
  font-weight: 950;
}

.home-product-stage {
  position: relative;
  min-height: 560px;
}

.stage-grid {
  position: absolute;
  inset: 30px 5px 18px 60px;
  border-radius: 34px;
  opacity: .55;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 34px 34px;
  transform: rotate(4deg);
}

.stage-card {
  position: absolute;
  top: 30px;
  right: 28px;
  bottom: 28px;
  left: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 30px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 38px 100px rgba(0, 0, 0, .34);
  transform: rotate(-2.4deg);
}

.stage-label {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 13px 20px;
  color: var(--white);
  background: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
}

.stage-label strong {
  color: var(--yellow);
}

.stage-image-wrap {
  position: relative;
  height: calc(100% - 136px);
  min-height: 320px;
  padding: 25px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, .06), transparent 55%),
    #f4f1ec;
}

.stage-image-wrap::before {
  content: "FRAGILE";
  position: absolute;
  right: -40px;
  bottom: 8px;
  color: rgba(215, 25, 32, .07);
  font-size: 92px;
  font-weight: 950;
  letter-spacing: -.06em;
}

.stage-image-wrap img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}

.stage-caption {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
}

.stage-caption strong,
.stage-caption span {
  display: block;
}

.stage-caption > div strong {
  font-size: 21px;
  line-height: 1;
}

.stage-caption > div span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.stage-price {
  color: var(--red);
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -.05em;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  color: var(--white);
  background: rgba(17,18,22,.9);
  box-shadow: 0 20px 48px rgba(0,0,0,.26);
  backdrop-filter: blur(14px);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  font-size: 13px;
}

.floating-card span:not(.floating-icon) {
  color: #bfc2ca;
  font-size: 10px;
}

.floating-icon {
  display: grid !important;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 950;
}

.floating-card-delivery {
  right: -8px;
  bottom: 24px;
}

.floating-card-warning {
  top: 10px;
  left: -20px;
  display: block;
  border-color: rgba(255,211,57,.34);
}

.floating-card-warning::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  border-radius: 14px 0 0 14px;
  background: var(--yellow);
}

/* Trust bar */
.trust-bar {
  position: relative;
  z-index: 4;
  color: var(--white);
  background: var(--red);
}

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

.trust-item {
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 14px;
  padding: 24px 22px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

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

.trust-number {
  color: rgba(255,255,255,.42);
  font-size: 23px;
  font-weight: 950;
  letter-spacing: -.04em;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 14px;
  line-height: 1.25;
}

.trust-item div span {
  margin-top: 4px;
  color: rgba(255,255,255,.74);
  font-size: 12px;
  line-height: 1.35;
}

/* General sections */
.section {
  position: relative;
  padding: 106px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 45px;
  margin-bottom: 48px;
}

.section-heading > div {
  max-width: 760px;
}

.section-heading > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-lede {
  color: #3d4149;
  font-size: 21px;
  line-height: 1.65;
}

.product-overview {
  background: var(--white);
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .78fr);
  align-items: center;
  gap: 88px;
}

.overview-copy {
  max-width: 680px;
}

.overview-copy h2 {
  margin-bottom: 27px;
}

.overview-copy > p:not(.section-kicker) {
  color: #4a4f58;
  font-size: 18px;
}

.overview-note {
  margin-top: 27px;
  padding: 19px 21px;
  border-left: 5px solid var(--red);
  border-radius: 0 12px 12px 0;
  color: #4d3840;
  background: var(--red-soft);
}

.overview-note strong {
  color: var(--red-dark);
}

.spec-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.spec-panel::after {
  content: "FRAGILE";
  position: absolute;
  right: -22px;
  bottom: -28px;
  color: rgba(215, 25, 32, .055);
  font-size: 72px;
  font-weight: 950;
  letter-spacing: -.06em;
  pointer-events: none;
}

.spec-panel-head {
  position: relative;
  z-index: 1;
  padding: 25px 26px;
  color: var(--white);
  background: var(--ink);
}

.spec-panel-head span,
.spec-panel-head strong {
  display: block;
}

.spec-panel-head span {
  margin-bottom: 6px;
  color: #f89599;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .14em;
}

.spec-panel-head strong {
  font-size: 21px;
}

.spec-list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 12px 26px 18px;
}

.spec-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list div:last-child {
  border-bottom: 0;
}

.spec-list dt {
  color: var(--muted);
}

.spec-list dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 92% 15%, rgba(215, 25, 32, .23), transparent 25%),
    var(--ink);
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.08) 0 1px, transparent 1px 28px);
}

.section-dark > .container {
  position: relative;
  z-index: 1;
}

.light-heading .section-kicker {
  color: #ff8f94;
}

.light-heading > p {
  color: #b8bbc2;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card {
  position: relative;
  min-height: 290px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.benefit-card:hover {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
  transform: translateY(-4px);
}

.benefit-card::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 100px;
  height: 100px;
  border: 18px solid rgba(215,25,32,.2);
  border-radius: 50%;
}

.benefit-index {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 54px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--red);
  font-weight: 950;
}

.benefit-card h3 {
  max-width: 290px;
}

.benefit-card p {
  max-width: 330px;
  margin: 17px 0 0;
  color: #b9bdc6;
}

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

.use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.use-card {
  position: relative;
  min-height: 255px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17,18,22,.04);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.use-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 74px;
  height: 7px;
  background: var(--red);
  transition: width .2s ease;
}

.use-card:hover {
  border-color: #c5c6cb;
  box-shadow: 0 22px 48px rgba(17,18,22,.1);
  transform: translateY(-5px);
}

.use-card:hover::before {
  width: 100%;
}

.use-type {
  display: block;
  margin-bottom: 43px;
  color: var(--red);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .13em;
}

.use-card h3 {
  max-width: 260px;
}

.use-card p {
  max-width: 310px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.card-arrow {
  position: absolute;
  right: 22px;
  bottom: 20px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
  transition: background .2s ease, transform .2s ease;
}

.use-card:hover .card-arrow {
  background: var(--red);
  transform: rotate(8deg);
}

.order-steps-section {
  padding: 90px 0;
  background: var(--white);
}

.order-steps-shell {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(460px, 1.2fr);
  gap: 75px;
  align-items: center;
  padding: 54px;
  border-radius: 30px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(215,25,32,.97), rgba(152,16,23,.98)),
    var(--red);
  box-shadow: 0 30px 80px rgba(152,16,23,.2);
}

.order-steps-intro > p:not(.section-kicker) {
  max-width: 480px;
  color: rgba(255,255,255,.79);
  font-size: 17px;
}

.order-steps-intro .section-kicker {
  color: var(--yellow);
}

.order-steps-intro h2 {
  margin-bottom: 22px;
}

.order-steps-intro .button {
  margin-top: 7px;
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
  box-shadow: none;
}

.order-steps-intro .button:hover {
  border-color: var(--yellow);
  background: var(--yellow);
}

.order-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 17px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.order-steps li:first-child {
  padding-top: 0;
}

.order-steps li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.order-steps li > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 950;
}

.order-steps strong {
  display: block;
  font-size: 18px;
}

.order-steps p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.74);
  font-size: 14px;
}

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

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 90px;
  align-items: start;
}

.editorial-title {
  position: sticky;
  top: 145px;
}

.editorial-copy {
  padding-left: 42px;
  border-left: 1px solid #c9c8c5;
}

.editorial-copy p {
  position: relative;
  margin: 0;
  padding: 0 0 30px;
  color: #444951;
  font-size: 19px;
  line-height: 1.75;
}

.editorial-copy p + p {
  padding-top: 30px;
  border-top: 1px solid #d8d6d1;
}

.editorial-copy p::before {
  content: "";
  position: absolute;
  top: 9px;
  left: -47px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px var(--paper);
}

.editorial-copy p + p::before {
  top: 39px;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: 90px;
  align-items: start;
}

.faq-intro {
  max-width: 420px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 24px 50px 24px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before,
summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 18px;
  height: 2px;
  background: var(--red);
  transform: translateY(-50%);
  transition: transform .2s ease;
}

summary::after {
  transform: translateY(-50%) rotate(90deg);
}

details[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

details p {
  max-width: 680px;
  margin: -6px 0 24px;
  color: var(--muted);
  font-size: 16px;
}

.final-cta {
  position: relative;
  padding: 104px 0 82px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 120%, rgba(255,255,255,.11), transparent 38%),
    var(--red);
}

.final-cta-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.final-cta .section-kicker {
  color: var(--yellow);
}

.final-cta h2 {
  max-width: 850px;
}

.final-cta p:not(.section-kicker) {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}

/* Directory page */
.plain-directory-hero {
  position: relative;
  padding: 140px 0 96px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 77% 32%, rgba(215,25,32,.3), transparent 27%),
    linear-gradient(135deg, #0f1013, #1a1c22);
}

.plain-directory-hero::after {
  content: "100";
  position: absolute;
  right: -10px;
  bottom: -95px;
  color: rgba(255,255,255,.035);
  font-size: clamp(16rem, 32vw, 34rem);
  font-weight: 950;
  letter-spacing: -.12em;
  line-height: .7;
  pointer-events: none;
}

.directory-hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 80px;
  align-items: center;
}

.directory-hero-copy {
  max-width: 800px;
}

.directory-hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.directory-hero-copy h1 {
  font-size: clamp(3.6rem, 7vw, 6.4rem);
}

.directory-hero-copy > p:last-child {
  max-width: 710px;
  margin: 28px 0 0;
  color: #c9ccd3;
  font-size: 19px;
}

.directory-offer-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 24px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 32px 90px rgba(0,0,0,.32);
  transform: rotate(2deg);
}

.directory-offer-card > img {
  width: 100%;
  aspect-ratio: 1.38 / 1;
  object-fit: cover;
}

.directory-offer-card > div {
  padding: 22px;
}

.directory-offer-card span,
.directory-offer-card strong {
  display: block;
}

.directory-offer-card span {
  color: var(--red);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .14em;
}

.directory-offer-card strong {
  margin-top: 5px;
  font-size: 47px;
  font-weight: 950;
  letter-spacing: -.06em;
  line-height: 1;
}

.directory-offer-card p {
  margin: 7px 0 17px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.plain-directory {
  padding: 78px 0 105px;
  background: var(--paper);
}

.directory-tools {
  position: sticky;
  top: 111px;
  z-index: 30;
  margin-bottom: 38px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 15px 38px rgba(17,18,22,.08);
  backdrop-filter: blur(16px);
}

.directory-search-wrap > label {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.directory-search {
  position: relative;
  display: flex;
  align-items: center;
}

.directory-search > span {
  position: absolute;
  left: 17px;
  z-index: 1;
  color: var(--red);
  font-size: 24px;
  line-height: 1;
  transform: rotate(-14deg);
  pointer-events: none;
}

.directory-search input {
  width: 100%;
  min-height: 57px;
  padding: 13px 54px 13px 50px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  outline: none;
}

.directory-search input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(215,25,32,.12);
}

.directory-search input::placeholder {
  color: #92959c;
}

.search-clear {
  position: absolute;
  right: 10px;
  z-index: 1;
  display: grid;
  width: 37px;
  height: 37px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 9px;
  color: var(--ink);
  background: var(--paper);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 17px;
}

.filter-button {
  min-height: 39px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #50545c;
  background: var(--white);
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}

.filter-button:hover,
.filter-button.active {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.directory-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 17px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.directory-status p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.directory-status a {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

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

.plain-directory-card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 27px 27px 70px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(17,18,22,.035);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.plain-directory-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--red);
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .2s ease;
}

.plain-directory-card:hover {
  border-color: #c7c8cd;
  box-shadow: 0 21px 45px rgba(17,18,22,.1);
  transform: translateY(-5px);
}

.plain-directory-card:hover::before {
  transform: scaleX(1);
}

.plain-directory-card[hidden] {
  display: none;
}

.plain-directory-card > span:first-child {
  display: block;
  margin-bottom: 30px;
  color: var(--red);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.plain-directory-card > strong {
  display: block;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.035em;
  line-height: 1.12;
}

.plain-directory-card > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.directory-card-arrow {
  position: absolute;
  right: 24px;
  bottom: 22px;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 50%;
  color: var(--white) !important;
  background: var(--ink);
  font-size: 15px !important;
  transition: background .2s ease, transform .2s ease;
}

.plain-directory-card:hover .directory-card-arrow {
  background: var(--red);
  transform: rotate(8deg);
}

.directory-empty {
  padding: 70px 25px;
  border: 2px dashed #c9c9c9;
  border-radius: 20px;
  text-align: center;
  background: rgba(255,255,255,.6);
}

.directory-empty strong {
  display: block;
  font-size: 24px;
}

.directory-empty p {
  margin: 8px 0 0;
  color: var(--muted);
}

.directory-cta {
  padding: 68px 0;
  color: var(--white);
  background: var(--red);
}

.directory-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.directory-cta span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .15em;
}

.directory-cta h2 {
  margin-top: 6px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.directory-cta p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.8);
}

/* Individual guide pages */
.plain-sales-page {
  position: relative;
  padding: 90px 0 96px;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(215,25,32,.035), transparent 430px),
    var(--paper);
}

.plain-sales-page::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 10px;
  background: repeating-linear-gradient(135deg, var(--red) 0 24px, var(--white) 24px 48px);
}

.plain-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 355px;
  gap: 46px;
  align-items: start;
}

.plain-page-copy {
  min-width: 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  font-weight: 770;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--red);
}

.page-kicker {
  margin-bottom: 12px;
}

.plain-page-copy > h1 {
  max-width: 920px;
  margin-bottom: 29px;
  font-size: clamp(3rem, 5.8vw, 5.3rem);
}

.plain-offer-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 25px;
  align-items: center;
  margin: 0;
  padding: 21px 24px;
  border-radius: 15px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow-sm);
}

.plain-offer-line strong {
  color: var(--yellow);
  font-size: 17px;
}

.plain-offer-line span {
  color: #d5d7dc;
}

.article-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 13px 0 31px;
}

.article-facts span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.65);
  font-size: 11px;
}

.article-facts strong {
  color: var(--ink);
}

.continuous-sales-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.continuous-sales-copy > p {
  position: relative;
  min-height: 100%;
  margin: 0;
  padding: 25px 24px 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  color: #494e57;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(17,18,22,.035);
  font-size: 16px;
  line-height: 1.72;
}

.continuous-sales-copy > p::after {
  content: attr(data-paragraph);
  position: absolute;
  right: 15px;
  bottom: -11px;
  color: rgba(17,18,22,.045);
  font-size: 52px;
  font-weight: 950;
  letter-spacing: -.08em;
  line-height: 1;
}

.continuous-sales-copy > .sales-lead {
  grid-column: 1 / -1;
  padding: 30px 31px;
  border: 0;
  border-left: 6px solid var(--red);
  border-radius: 0 18px 18px 0;
  color: #2c3037;
  background: var(--red-soft);
  box-shadow: none;
  font-size: 21px;
  line-height: 1.6;
}

.continuous-sales-copy > .sales-lead::after {
  color: rgba(215,25,32,.07);
  font-size: 72px;
}

.reading-note {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 22px;
  padding: 21px 22px;
  border: 1px solid #efd9ae;
  border-radius: 15px;
  background: #fff8e9;
}

.reading-note > span {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-size: 20px;
  font-weight: 950;
}

.reading-note p {
  margin: 0;
  color: #5e5544;
  font-size: 14px;
}

.reading-note strong {
  color: var(--ink);
}

.plain-final-order {
  position: relative;
  margin-top: 22px;
  padding: 30px;
  overflow: hidden;
  border-radius: 20px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 24px 55px rgba(152,16,23,.18);
}

.plain-final-order::after {
  content: "FRAGILE";
  position: absolute;
  right: -12px;
  bottom: -28px;
  color: rgba(255,255,255,.1);
  font-size: 82px;
  font-weight: 950;
  letter-spacing: -.07em;
  line-height: 1;
  pointer-events: none;
}

.plain-final-order p {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin-bottom: 18px;
  color: rgba(255,255,255,.84);
  font-size: 17px;
}

.plain-final-order p strong {
  color: var(--white);
}

.plain-final-order .button {
  position: relative;
  z-index: 1;
}

.plain-product-card {
  position: sticky;
  top: 121px;
  overflow: hidden;
  border: 1px solid #d2d3d7;
  border-radius: 23px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-card-media {
  position: relative;
  padding: 18px;
  background:
    repeating-linear-gradient(135deg, rgba(215,25,32,.08) 0 18px, transparent 18px 36px),
    var(--paper);
}

.product-card-media img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  border-radius: 15px;
  object-fit: cover;
}

.product-card-label {
  position: absolute;
  top: 29px;
  left: 29px;
  z-index: 2;
  padding: 6px 9px;
  border-radius: 6px;
  color: var(--white);
  background: var(--red);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .1em;
}

.plain-product-card-body {
  padding: 26px;
}

.card-eyebrow {
  margin-bottom: 6px;
}

.plain-price {
  color: var(--ink);
  font-size: 55px;
  font-weight: 950;
  letter-spacing: -.07em;
  line-height: 1;
}

.plain-delivery {
  margin: 7px 0 20px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.plain-facts {
  margin: 0;
  padding: 0;
}

.plain-facts div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.plain-facts dt {
  color: var(--muted);
  font-size: 13px;
}

.plain-facts dd {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  text-align: right;
}

.card-checks {
  display: grid;
  gap: 7px;
  margin: 18px 0 20px;
  padding: 0;
  color: #4d525a;
  font-size: 12px;
  list-style: none;
}

.card-checks li {
  position: relative;
  padding-left: 23px;
}

.card-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 950;
}

.page-route {
  padding: 53px 0;
  color: var(--white);
  background: var(--ink);
}

.page-route-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.page-route-inner > div:first-child span,
.page-route-inner > div:first-child strong {
  display: block;
}

.page-route-inner > div:first-child span {
  color: #ff898e;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .14em;
}

.page-route-inner > div:first-child strong {
  margin-top: 5px;
  font-size: 27px;
}

.page-route-inner > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-route-inner a {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease;
}

.page-route-inner a:hover {
  border-color: var(--red);
  background: var(--red);
}

/* 404 */
.not-found {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 90px 24px;
  overflow: hidden;
  background: var(--paper);
}

.not-found-pattern {
  position: absolute;
  inset: 0;
  opacity: .7;
  background:
    linear-gradient(rgba(17,18,22,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,18,22,.04) 1px, transparent 1px);
  background-size: 38px 38px;
}

.not-found-card {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.not-found-code {
  display: block;
  margin-bottom: 22px;
  color: var(--red);
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 950;
  letter-spacing: -.11em;
  line-height: .72;
}

.not-found-card h1 {
  font-size: clamp(2.8rem, 7vw, 5.3rem);
}

.not-found-card > p:not(.section-kicker) {
  max-width: 570px;
  margin: 25px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.not-found-card .hero-actions {
  justify-content: center;
}

/* Footer */
.site-footer {
  padding: 74px 0 28px;
  color: var(--white);
  background: #0c0d10;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(190px, .55fr) 310px;
  gap: 58px;
  align-items: start;
}

.footer-brand-block {
  max-width: 520px;
}

.footer-logo-link {
  display: block;
  width: min(100%, 365px);
  padding: 12px 14px;
  border-radius: 13px;
  background: var(--white);
}

.footer-logo {
  width: 100%;
  margin: 0;
  filter: none;
}

.footer-kicker {
  margin: 27px 0 11px;
  color: #ff8b90;
}

.footer-brand-block > p:last-child {
  margin: 0;
  color: #aeb2bb;
  font-size: 14px;
}

.simple-footer-links {
  display: grid;
  gap: 5px;
  padding-top: 3px;
}

.simple-footer-links::before {
  content: "QUICK LINKS";
  margin-bottom: 10px;
  color: #777c86;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .14em;
}

.footer-links a {
  position: relative;
  padding: 7px 0 7px 15px;
  color: #d6d8dd;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-offer {
  padding: 25px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
}

.footer-offer > span,
.footer-offer > strong {
  display: block;
}

.footer-offer > span {
  color: #ff8c91;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .14em;
}

.footer-offer > strong {
  margin-top: 6px;
  font-size: 47px;
  letter-spacing: -.06em;
  line-height: 1;
}

.footer-offer p {
  margin: 8px 0 19px;
  color: #aeb2bb;
  font-size: 13px;
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.11);
  color: #737781;
  font-size: 12px;
}

/* Mobile quick order */
.sticky-order {
  display: none;
}

/* Progressive reveal */
html.js .reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

html.js .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 1080px) {
  .home-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(365px, .82fr);
    gap: 48px;
  }

  .home-product-stage {
    min-height: 510px;
  }

  .overview-grid,
  .editorial-grid,
  .faq-grid {
    gap: 55px;
  }

  .plain-page-grid {
    grid-template-columns: minmax(0, 1fr) 325px;
    gap: 32px;
  }

  .footer-shell {
    grid-template-columns: minmax(0, 1fr) 290px;
  }

  .simple-footer-links {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 0;
  }

  .simple-footer-links::before {
    width: 100%;
  }

  .footer-links a {
    padding: 0 0 0 14px;
  }
}

@media (max-width: 920px) {
  .container {
    width: min(calc(100% - 36px), var(--max));
  }

  .top-strip-inner {
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }

  .top-international,
  .top-strip-separator {
    display: none;
  }

  .header-inner {
    min-height: 78px;
  }

  .brand {
    width: min(300px, 65vw);
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 3px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 25px 70px rgba(17,18,22,.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    padding: 13px 12px;
    border-radius: 9px;
  }

  .site-nav > a:not(.button):hover {
    background: var(--paper);
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 7px;
  }

  .home-hero {
    padding: 124px 0 82px;
  }

  .home-hero-grid,
  .overview-grid,
  .directory-hero-grid,
  .plain-page-grid,
  .editorial-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-grid {
    gap: 50px;
  }

  .home-hero-copy {
    max-width: 780px;
  }

  .home-product-stage {
    width: min(100%, 610px);
    min-height: 580px;
    margin-inline: auto;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.18);
  }

  .section {
    padding: 84px 0;
  }

  .overview-copy {
    max-width: 780px;
  }

  .spec-panel {
    max-width: 680px;
  }

  .benefit-grid,
  .use-grid,
  .plain-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    display: grid;
    align-items: start;
    gap: 20px;
  }

  .order-steps-shell {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .editorial-title {
    position: static;
  }

  .editorial-copy {
    padding-left: 34px;
  }

  .editorial-copy p::before {
    left: -39px;
  }

  .final-cta-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .final-cta .button {
    justify-self: start;
  }

  .directory-offer-card {
    width: min(100%, 430px);
    transform: none;
  }

  .directory-tools {
    top: 96px;
  }

  .plain-product-card {
    position: static;
    width: min(100%, 520px);
    margin-top: 12px;
  }

  .page-route-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Mobile */
@media (max-width: 640px) {
  html {
    scroll-padding-top: 92px;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 26px), var(--max));
  }

  .top-strip-inner {
    min-height: 38px;
    gap: 8px;
    font-size: 11px;
  }

  .top-pill {
    min-height: 22px;
    padding-inline: 7px;
    font-size: 8px;
  }

  .top-strip strong {
    font-size: 15px;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand {
    width: min(255px, 70vw);
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .site-nav {
    top: 100%;
    right: 10px;
    left: 10px;
  }

  .button,
  .button-large {
    width: 100%;
    min-height: 54px;
    padding: 14px 18px;
    font-size: 14px;
  }

  .button-small {
    width: 100%;
  }

  .fragile-ribbon {
    font-size: 13px;
  }

  .fragile-ribbon span {
    padding-block: 9px;
  }

  .fragile-ribbon-top {
    top: 18px;
  }

  .home-hero {
    min-height: 0;
    padding: 104px 0 67px;
  }

  .home-hero::after {
    display: none;
  }

  .home-hero .eyebrow,
  .directory-hero-copy .eyebrow {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .home-hero h1 {
    font-size: clamp(3rem, 13vw, 4.2rem);
  }

  .hero-lede {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-offer {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 26px;
  }

  .hero-price-block {
    padding: 18px;
  }

  .hero-facts li {
    padding: 14px 10px;
  }

  .hero-facts strong {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .home-product-stage {
    min-height: 470px;
  }

  .stage-grid {
    inset: 28px 0 18px 20px;
  }

  .stage-card {
    top: 22px;
    right: 8px;
    bottom: 30px;
    left: 6px;
    border-radius: 22px;
    transform: rotate(-1.2deg);
  }

  .stage-label {
    min-height: 51px;
    padding: 12px 15px;
    font-size: 9px;
  }

  .stage-image-wrap {
    height: calc(100% - 121px);
    min-height: 280px;
    padding: 14px;
  }

  .stage-caption {
    min-height: 70px;
    padding: 13px 15px;
  }

  .stage-caption > div strong {
    font-size: 17px;
  }

  .stage-price {
    font-size: 26px;
  }

  .floating-card-warning {
    top: 2px;
    left: -4px;
  }

  .floating-card-delivery {
    right: -2px;
    bottom: 3px;
  }

  .floating-card {
    padding: 11px 12px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
  }

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

  .section {
    padding: 68px 0;
  }

  h2 {
    font-size: clamp(2.3rem, 12vw, 3.55rem);
  }

  .section-lede,
  .overview-copy > p:not(.section-kicker),
  .section-heading > p,
  .faq-intro {
    font-size: 16px;
  }

  .benefit-grid,
  .use-grid,
  .plain-directory-grid,
  .continuous-sales-copy {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 250px;
    padding: 25px;
  }

  .benefit-index {
    margin-bottom: 43px;
  }

  .use-card {
    min-height: 225px;
    padding: 24px;
  }

  .use-type {
    margin-bottom: 34px;
  }

  .order-steps-section {
    padding: 64px 0;
  }

  .order-steps-shell {
    width: min(calc(100% - 20px), var(--max));
    gap: 38px;
    padding: 32px 24px;
    border-radius: 23px;
  }

  .order-steps li {
    grid-template-columns: 44px 1fr;
  }

  .order-steps li > span {
    width: 40px;
    height: 40px;
  }

  .editorial-copy {
    padding-left: 24px;
  }

  .editorial-copy p {
    font-size: 16px;
  }

  .editorial-copy p::before {
    left: -29px;
  }

  .faq-grid {
    gap: 38px;
  }

  summary {
    padding-block: 20px;
    font-size: 16px;
  }

  .final-cta {
    padding: 88px 0 66px;
  }

  .plain-directory-hero {
    padding: 108px 0 68px;
  }

  .directory-hero-grid {
    gap: 42px;
  }

  .directory-hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .directory-hero-copy > p:last-child {
    margin-top: 22px;
    font-size: 16px;
  }

  .directory-offer-card {
    width: 100%;
  }

  .plain-directory {
    padding: 48px 0 74px;
  }

  .directory-tools {
    position: static;
    margin-bottom: 26px;
    padding: 17px;
    border-radius: 16px;
  }

  .directory-search input {
    min-height: 53px;
    font-size: 15px;
  }

  .category-filter {
    flex-wrap: nowrap;
    margin-right: -17px;
    margin-left: -17px;
    padding: 0 17px 5px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .category-filter::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .directory-status {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .plain-directory-card {
    min-height: 235px;
    padding: 24px 23px 65px;
  }

  .plain-directory-card > span:first-child {
    margin-bottom: 24px;
  }

  .directory-cta {
    padding: 52px 0;
  }

  .directory-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 27px;
  }

  .plain-sales-page {
    padding: 56px 0 70px;
  }

  .breadcrumbs {
    margin-bottom: 23px;
    font-size: 11px;
  }

  .plain-page-copy > h1 {
    margin-bottom: 23px;
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .plain-offer-line {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px;
  }

  .continuous-sales-copy > p {
    padding: 21px 20px 23px;
    font-size: 15px;
  }

  .continuous-sales-copy > .sales-lead {
    grid-column: 1;
    padding: 24px 21px;
    font-size: 18px;
  }

  .plain-final-order {
    padding: 24px;
  }

  .plain-product-card {
    width: 100%;
  }

  .page-route {
    padding: 44px 0;
  }

  .page-route-inner > div:last-child,
  .page-route-inner a {
    width: 100%;
  }

  .page-route-inner a {
    justify-content: space-between;
  }

  .not-found {
    padding: 60px 13px;
  }

  .not-found-card {
    padding: 42px 23px;
    border-radius: 20px;
  }

  .not-found-card > p:not(.section-kicker) {
    font-size: 16px;
  }

  .site-footer {
    padding-top: 58px;
    padding-bottom: 108px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .simple-footer-links {
    grid-column: auto;
    grid-row: auto;
    display: grid;
  }

  .footer-offer {
    padding: 23px;
  }

  .footer-bottom {
    margin-top: 40px;
  }

  .sticky-order {
    position: fixed;
    right: 9px;
    bottom: max(9px, env(safe-area-inset-bottom));
    left: 9px;
    z-index: 100;
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 9px 9px 16px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 16px;
    color: var(--white);
    background: rgba(17,18,22,.96);
    box-shadow: 0 20px 55px rgba(0,0,0,.35);
    backdrop-filter: blur(15px);
  }

  .sticky-order > div {
    min-width: 0;
  }

  .sticky-order strong,
  .sticky-order span {
    display: block;
  }

  .sticky-order strong {
    font-size: 14px;
    line-height: 1.2;
  }

  .sticky-order span {
    margin-top: 3px;
    overflow: hidden;
    color: #aeb2bb;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sticky-order .button {
    width: auto;
    min-width: 102px;
    min-height: 47px;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 12px;
  }

  .sticky-order .button::after {
    display: none;
  }
}

@media (max-width: 390px) {
  .brand {
    width: min(220px, 67vw);
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts li {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }

  .hero-facts span {
    margin: 0;
  }

  .home-product-stage {
    min-height: 425px;
  }

  .floating-card-warning {
    display: none;
  }

  .floating-card-delivery {
    right: 3px;
  }
}

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

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

  html.js .reveal-item {
    opacity: 1;
    transform: none;
  }
}

/* Redesigned brand identity */
.brand {
  width: min(345px, 36vw);
}

.brand-logo {
  width: 100%;
  transition: transform .2s ease, opacity .2s ease;
}

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

.footer-logo-link {
  width: min(100%, 405px);
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-logo {
  width: 100%;
}

@media (max-width: 920px) {
  .brand {
    width: min(318px, 70vw);
  }
}

@media (max-width: 420px) {
  .header-inner {
    gap: 14px;
  }

  .brand {
    width: min(260px, 68vw);
  }
}
