@font-face {
  font-family: Archivo;
  src: url("assets/archivo-latin.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Archivo;
  src: url("assets/archivo-900-italic-latin.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
:root {
  --ink: #171918;
  --muted: #636662;
  --red: #c92927;
  --paper: #f5f5f1;
  --line: #dddfd9;
  --white: #fff;
  --max: 1240px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
body {
  margin: 0;
  font-family: Archivo, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.1;
}
h2 {
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 700;
  letter-spacing: -1.7px;
}
h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.4px;
}
em {
  font-style: italic;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 5px;
}
.container {
  width: min(calc(100% - 96px), var(--max));
  margin-inline: auto;
}
.section-space {
  padding-block: 100px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: 1.6;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 38px;
}
.section-index {
  font-size: 10px;
  letter-spacing: 1.2px;
  color: var(--muted);
}
.text-link {
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  gap: 20px;
  align-items: center;
  padding-block: 8px;
  border-bottom: 1px solid currentColor;
}
.text-link span {
  font-size: 21px;
}
.text-link:hover {
  color: var(--red);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 54px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button > span[aria-hidden] {
  font-size: 22px;
  line-height: 1;
}
.button:hover {
  transform: translateY(-2px);
}
.button-red {
  background: var(--red);
  color: white;
}
.button-red:hover {
  background: #a61e1c;
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-dark:hover {
  background: #353a36;
}
.button-small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 12px;
}
.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip-link:focus {
  position: fixed;
  top: 8px;
  left: 8px;
  padding: 12px 20px;
  background: white;
  z-index: 100;
}
.honeypot {
  display: none;
}
/* The brand is present in the framing; the product gets the largest visual area. */
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 34px;
}
.topbar .container > span {
  font-size: 9px;
  letter-spacing: 1.6px;
}
.topbar a {
  color: #d6d9d5;
}
.topbar a span {
  margin-left: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}
.navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.brand-mark {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
  font-size: 20px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -2px;
  padding-right: 2px;
}
.brand-name {
  font-size: 15px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.4px;
}
.brand-dot {
  color: var(--red);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 12px;
  font-weight: 500;
}
.nav-links > a:not(.button) {
  padding-block: 16px;
}
.nav-links > a:not(.button):hover {
  color: var(--red);
}
.menu-toggle {
  display: none;
}
.hero {
  background: var(--paper);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 42px;
  min-height: 626px;
}
.hero-copy {
  padding-block: 62px;
}
.hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 29px;
  font-size: 10px;
  letter-spacing: 1.2px;
}
.slash {
  width: 17px;
  height: 10px;
  background: repeating-linear-gradient(
    125deg,
    var(--red) 0 3px,
    transparent 3px 6px
  );
}
h1 {
  font-size: clamp(54px, 6.25vw, 88px);
  font-weight: 900;
  letter-spacing: -4px;
  line-height: 0.98;
}
h1 em {
  color: var(--red);
}
.hero-intro {
  font-size: 16px;
  color: var(--muted);
  max-width: 430px;
  line-height: 1.8;
  margin-top: 25px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  color: var(--muted);
  margin-top: 40px;
}
.small-cross {
  font-size: 20px;
  color: var(--red);
}
.hero-product {
  position: relative;
  align-self: stretch;
  min-width: 0;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaebe5;
  overflow: hidden;
  border-left: 1px solid #e0e2da;
  border-right: 1px solid #e0e2da;
}
.hero-product > img {
  width: 76%;
  max-height: 465px;
  object-fit: contain;
  mix-blend-mode: multiply;
  position: relative;
  z-index: 1;
  transform: rotate(-7deg);
  margin-top: 1px;
}
.product-topline {
  position: absolute;
  top: 26px;
  left: 25px;
  right: 25px;
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  letter-spacing: 1.05px;
  z-index: 2;
}
.hero-watermark {
  position: absolute;
  top: 65px;
  left: 13px;
  font-weight: 900;
  font-style: italic;
  font-size: 145px;
  line-height: 1;
  letter-spacing: -8px;
  color: #dde0d6;
  user-select: none;
}
.product-caption {
  position: absolute;
  bottom: 28px;
  left: 26px;
  right: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  line-height: 1.7;
  z-index: 2;
}
.product-caption > span {
  padding-left: 16px;
  position: relative;
}
.product-caption strong {
  font-weight: 600;
}
.caption-dot {
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
}
.circle-link {
  border: 1px solid #b7bcb1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 23px;
}
.circle-link:hover {
  background: white;
}
.stripe-signature {
  position: absolute;
  right: 0;
  top: 0;
  width: 7px;
  height: 100%;
  background: repeating-linear-gradient(
    135deg,
    var(--red) 0 9px,
    transparent 9px 18px
  );
}
.benefit-bar {
  border-block: 1px solid var(--line);
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 24px;
}
.benefit-grid p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 12px;
  font-weight: 500;
  padding-inline: 16px;
  border-right: 1px solid var(--line);
}
.benefit-grid p:first-child {
  justify-content: flex-start;
  padding-left: 0;
}
.benefit-grid p:last-child {
  border: 0;
  justify-content: flex-end;
  padding-right: 0;
}
.benefit-grid span {
  color: var(--red);
  font-size: 10px;
  font-weight: 600;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
  align-items: center;
}
.product-gallery {
  min-width: 0;
}
.detail-viewport {
  position: relative;
  height: 490px;
  overflow: hidden;
  background: var(--paper);
  display: grid;
  place-items: center;
}
.detail-viewport img {
  width: 70%;
  height: 80%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.5s ease;
  transform-origin: 78% 89%;
}
.detail-viewport.is-closeup img {
  transform: scale(2.25) translate(-3%, -3%);
}
.detail-label {
  position: absolute;
  top: 25px;
  left: 26px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.5;
}
.detail-plus {
  position: absolute;
  bottom: 16px;
  right: 24px;
  font-size: 30px;
  font-weight: 400;
}
.gallery-controls {
  display: none;
  grid-template-columns: 1fr 1fr;
  margin-top: 14px;
  gap: 10px;
}
.js .gallery-controls {
  display: grid;
}
.view-button {
  padding: 13px 15px;
  text-align: left;
  border: 1px solid var(--line);
  color: var(--muted);
  background: white;
  font-size: 10px;
  display: flex;
  gap: 17px;
  align-items: center;
}
.view-button span {
  font-size: 12px;
}
.view-button[aria-pressed="true"] {
  border-color: var(--ink);
  color: var(--ink);
  box-shadow: inset 0 -2px var(--ink);
}
.view-button:hover {
  background: var(--paper);
}
.product-copy .lead {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 22px;
  max-width: 460px;
}
.features {
  margin-block: 28px 18px;
}
.features > div {
  padding-block: 19px;
  border-top: 1px solid var(--line);
}
.features dt {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 18px;
}
.features dt > span {
  font-size: 10px;
  color: var(--red);
  font-weight: 600;
}
.features dd {
  margin: 7px 0 0 32px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
}
.product-copy .text-link {
  font-size: 12px;
  gap: 14px;
}
.clubs-section {
  background: var(--ink);
  color: white;
  position: relative;
}
.clubs-section .section-heading {
  margin-bottom: 40px;
}
.clubs-section .eyebrow {
  color: #c5c8c1;
}
.club-stripes {
  width: 98px;
  height: 23px;
  background: repeating-linear-gradient(
    125deg,
    var(--red) 0 5px,
    transparent 5px 11px
  );
}
.clubs-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
}
.clubs-copy h2 {
  font-size: clamp(36px, 3.9vw, 54px);
  font-weight: 900;
  letter-spacing: -1.8px;
  line-height: 1.06;
}
.clubs-copy h2 em {
  color: #ed5651;
}
.clubs-copy > p {
  color: #b8beb8;
  font-size: 14px;
  line-height: 1.9;
  max-width: 420px;
  margin: 25px 0 30px;
}
.club-phone {
  display: block;
  margin-top: 18px;
  font-size: 11px;
  color: #c5c8c1;
}
.club-phone:hover {
  color: white;
  text-decoration: underline;
}
.process-heading {
  font-size: 10px;
  letter-spacing: 1.3px;
  color: #b8beb8;
  margin-bottom: 23px;
}
.club-process ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.club-process li {
  display: flex;
  gap: 23px;
  padding-block: 22px;
  border-top: 1px solid #3a3d38;
}
.step-number {
  flex-shrink: 0;
  font-size: 12px;
  color: #ef6560;
  line-height: 25px;
}
.club-process h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.2px;
}
.club-process li p {
  color: #b8beb8;
  font-size: 13px;
  line-height: 1.75;
  margin-top: 10px;
}
.process-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 17px;
  padding: 19px 22px;
  background: #242823;
}
.process-note > span {
  font-size: 27px;
  color: #ed5651;
}
.process-note p {
  font-size: 11px;
  color: #b8beb8;
  line-height: 1.8;
}
.process-note strong {
  font-weight: 500;
  color: white;
}
.retail-section {
  padding-block: 48px;
  background: #f1f2ed;
  border-bottom: 1px solid var(--line);
}
.retail-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}
.retail-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 1px solid #c9cec2;
  border-radius: 50%;
  font-size: 32px;
}
.retail-section .eyebrow {
  font-size: 9px;
  color: var(--muted);
  margin-bottom: 9px;
}
.retail-section h2 {
  font-size: 26px;
  letter-spacing: -0.8px;
}
.retail-section p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}
.button-bol {
  background: #101987;
  color: white;
  white-space: nowrap;
}
.button-bol:hover {
  background: #080f63;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
}
.about-section .eyebrow {
  margin-bottom: 25px;
}
.about-copy > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 18px;
}
.founders {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 26px;
}
.founder-monogram {
  display: grid;
  place-items: center;
  width: 57px;
  height: 57px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 16px;
  font-weight: 800;
  font-style: italic;
}
.founders strong {
  font-size: 13px;
  font-weight: 600;
}
.founders div > span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.faq-section {
  padding-bottom: 100px;
}
.faq-grid {
  border-top: 1px solid var(--line);
  padding-top: 55px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 86px;
}
.faq-section .eyebrow {
  margin-bottom: 15px;
}
.faq-section h2 {
  font-size: 36px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 19px 0;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}
summary > span {
  font-size: 23px;
  font-weight: 400;
  color: var(--red);
}
details[open] summary > span {
  transform: rotate(45deg);
}
details p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
  padding: 0 30px 22px 0;
}
details p a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 92px;
  align-items: start;
}
.contact-copy .eyebrow {
  margin-bottom: 27px;
}
.contact-copy > p:not(.eyebrow):not(.contact-footnote) {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  margin-top: 22px;
  max-width: 370px;
}
.contact-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  margin-bottom: 23px;
}
.contact-initials {
  background: var(--ink);
  color: white;
  height: 46px;
  width: 46px;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50%;
}
.contact-person strong {
  font-weight: 600;
  font-size: 13px;
}
.contact-person div > span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 3px;
}
.contact-phone {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.7px;
  display: inline-flex;
  gap: 23px;
  align-items: center;
}
.contact-phone > span {
  font-size: 22px;
  color: var(--red);
}
.contact-email {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  overflow-wrap: anywhere;
}
.contact-email:hover {
  text-decoration: underline;
}
.contact-footnote {
  font-size: 11px;
  color: var(--muted);
  margin-top: 42px;
  line-height: 1.9;
}
.contact-footnote a {
  display: block;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.contact-form {
  background: white;
  border: 1px solid var(--line);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form h3 {
  font-size: 24px;
  font-weight: 600;
}
.form-intro {
  font-size: 12px;
  color: var(--muted);
  margin-top: -8px;
  margin-bottom: 3px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row > div {
  min-width: 0;
}
label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 7px;
}
label > span:not(.optional) {
  color: var(--red);
}
.optional {
  color: var(--muted);
  font-size: 10px;
}
input,
textarea {
  display: block;
  width: 100%;
  min-width: 0;
  border: 1px solid #d2d5ce;
  border-radius: 0;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  font-size: 13px;
  line-height: 1.6;
}
input::placeholder,
textarea::placeholder {
  color: #72776e;
  font-size: 11px;
  opacity: 1;
}
textarea {
  resize: vertical;
  min-height: 116px;
}
.contact-form > .button {
  width: 100%;
}
.form-note {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.9;
  margin-top: -5px;
}
.form-note > span {
  font-size: 9px;
}
.site-footer {
  background: var(--ink);
  color: white;
  padding-block: 48px 22px;
}
.site-footer .brand-mark {
  background: white;
  color: var(--ink);
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 40px;
}
.footer-main > p {
  font-size: 14px;
  color: #c1c5be;
  letter-spacing: -0.2px;
}
.back-top {
  font-size: 11px;
  color: #c1c5be;
  display: flex;
  gap: 18px;
}
.back-top span {
  color: white;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid #383d36;
  font-size: 10px;
  color: #a7aea3;
}
.footer-bottom nav {
  display: flex;
  gap: 24px;
}
.footer-bottom > span:last-child {
  font-size: 8px;
  letter-spacing: 1px;
}
.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.thanks-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.thanks-main {
  flex: 1;
  background: var(--paper);
  padding: 100px 0 120px;
}
.thanks-content {
  max-width: 660px;
  margin: auto;
  text-align: center;
}
.thanks-content .eyebrow {
  color: var(--red);
  margin-bottom: 24px;
}
.thanks-content h1 {
  font-size: clamp(46px, 6vw, 72px);
  letter-spacing: -2px;
}
.thanks-content p:not(.eyebrow) {
  margin: 25px auto 30px;
  max-width: 440px;
  color: var(--muted);
}
@media (min-width: 1600px) {
  .hero-grid {
    min-height: 670px;
  }
  .hero-product > img {
    max-height: 490px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .nav-links {
    gap: 22px;
  }
  .hero-grid {
    gap: 24px;
    min-height: 590px;
  }
  h1 {
    font-size: clamp(52px, 6.5vw, 73px);
    letter-spacing: -3px;
  }
  .hero-product > img {
    width: 84%;
  }
  .hero-watermark {
    font-size: 120px;
    top: 100px;
  }
  .hero-copy .eyebrow {
    font-size: 9px;
  }
  .actions {
    gap: 18px;
  }
  .actions .button {
    padding-inline: 16px;
    font-size: 12px;
  }
  .actions .text-link {
    font-size: 12px;
  }
  .product-grid,
  .about-grid {
    gap: 46px;
  }
  .clubs-grid {
    gap: 56px;
  }
  .contact-grid {
    gap: 48px;
  }
  .detail-viewport {
    height: 465px;
  }
  .benefit-grid p {
    font-size: 11px;
    gap: 12px;
  }
  .product-topline > span:last-child {
    display: none;
  }
  .retail-section h2 {
    font-size: 23px;
  }
  .retail-grid {
    gap: 22px;
  }
  .contact-form {
    padding: 25px;
  }
}
@media (max-width: 800px) {
  .section-space {
    padding-block: 72px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .topbar .container {
    justify-content: center;
  }
  .topbar .container > span {
    display: none;
  }
  .navigation {
    min-height: 76px;
    flex-wrap: wrap;
    gap: 0;
  }
  .brand-mark {
    width: 37px;
    height: 37px;
    font-size: 18px;
  }
  .brand-name {
    font-size: 13px;
  }
  .nav-links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    padding: 0 0 18px;
    justify-content: center;
  }
  .js .menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0 10px 16px;
    border: 0;
    background: transparent;
    font-size: 12px;
    font-weight: 600;
  }
  .menu-toggle span {
    font-size: 20px;
  }
  .js .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0 24px;
    gap: 0;
  }
  .js .nav-links.is-open {
    display: flex;
  }
  .nav-links > a:not(.button) {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-links .button {
    margin-top: 12px;
    align-self: flex-start;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    gap: 24px;
  }
  .hero-copy {
    padding-block: 44px;
  }
  h1 {
    font-size: clamp(43px, 6.3vw, 54px);
    letter-spacing: -2.4px;
  }
  .hero-copy .eyebrow {
    font-size: 8px;
    letter-spacing: 0.7px;
    gap: 6px;
  }
  .hero-intro {
    font-size: 14px;
    line-height: 1.8;
  }
  .hero-note {
    font-size: 10px;
    margin-top: 28px;
  }
  .hero-product > img {
    width: 88%;
    max-height: 360px;
  }
  .product-topline {
    left: 16px;
    top: 22px;
    font-size: 7px;
  }
  .product-caption {
    left: 16px;
    right: 16px;
    font-size: 10px;
  }
  .hero-watermark {
    font-size: 88px;
    top: 86px;
    left: 8px;
    letter-spacing: -4px;
  }
  .actions {
    margin-top: 24px;
    gap: 14px;
  }
  .benefit-grid {
    gap: 15px;
    padding-block: 20px;
  }
  .benefit-grid p {
    align-items: flex-start;
    gap: 9px;
    line-height: 1.6;
    padding-inline: 7px;
    font-size: 10px;
  }
  .benefit-grid span {
    font-size: 9px;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .section-index {
    font-size: 8px;
  }
  .product-grid {
    gap: 34px;
  }
  .detail-viewport {
    height: 440px;
  }
  .detail-viewport img {
    width: 86%;
  }
  .detail-label {
    left: 17px;
    top: 20px;
    font-size: 8px;
  }
  .view-button {
    padding: 12px 9px;
    gap: 7px;
  }
  .view-button span {
    font-size: 10px;
  }
  .product-copy h2 {
    font-size: 31px;
    letter-spacing: -1.1px;
  }
  .product-copy .lead {
    font-size: 13px;
  }
  .features dt {
    font-size: 14px;
    gap: 12px;
  }
  .features dd {
    font-size: 12px;
    margin-left: 25px;
  }
  .features > div {
    padding-block: 15px;
  }
  .product-copy .text-link {
    font-size: 11px;
    gap: 8px;
  }
  .clubs-grid {
    gap: 36px;
    grid-template-columns: 1fr 1fr;
  }
  .clubs-copy h2 {
    font-size: 34px;
    letter-spacing: -1.1px;
  }
  .clubs-copy > p {
    font-size: 13px;
  }
  .clubs-copy .button {
    font-size: 11px;
    gap: 14px;
    padding-inline: 15px;
  }
  .club-phone {
    font-size: 10px;
  }
  .club-process li {
    gap: 14px;
    padding-block: 19px;
  }
  .club-process h3 {
    font-size: 16px;
  }
  .club-process li p {
    font-size: 12px;
  }
  .process-note {
    padding: 16px 13px;
    gap: 13px;
  }
  .process-note p {
    font-size: 10px;
  }
  .retail-grid {
    grid-template-columns: 1fr auto;
    gap: 20px;
  }
  .retail-icon {
    display: none;
  }
  .retail-section h2 {
    font-size: 22px;
  }
  .retail-section p:not(.eyebrow) {
    font-size: 12px;
    max-width: 350px;
  }
  .about-grid {
    gap: 35px;
  }
  .about-copy > p {
    font-size: 13px;
  }
  .faq-grid {
    gap: 35px;
    grid-template-columns: 1fr 1.6fr;
  }
  .faq-section {
    padding-bottom: 72px;
  }
  .faq-list summary {
    font-size: 13px;
  }
  .contact-grid {
    gap: 35px;
    grid-template-columns: 0.9fr 1.1fr;
  }
  .contact-copy h2 {
    font-size: 33px;
    letter-spacing: -1.2px;
  }
  .contact-copy > p:not(.eyebrow):not(.contact-footnote) {
    font-size: 13px;
  }
  .contact-form {
    padding: 22px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-person div > span {
    font-size: 9px;
  }
  .contact-initials {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }
  .contact-phone {
    font-size: 23px;
    gap: 10px;
  }
  .contact-email {
    font-size: 11px;
  }
  .footer-main > p {
    font-size: 12px;
  }
  .footer-bottom > span:last-child {
    display: none;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 94px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-copy {
    padding: 40px 0 32px;
  }
  .hero-copy .eyebrow {
    font-size: 9px;
    letter-spacing: 0.85px;
    margin-bottom: 24px;
  }
  h1 {
    font-size: clamp(48px, 11.8vw, 70px);
    letter-spacing: -2.6px;
  }
  .hero-intro {
    font-size: 14px;
    max-width: 440px;
    margin-top: 22px;
  }
  .actions {
    gap: 20px;
  }
  .actions .button {
    font-size: 11px;
    padding: 14px 15px;
    gap: 15px;
    min-height: 50px;
  }
  .actions .text-link {
    font-size: 11px;
    gap: 10px;
  }
  .hero-note {
    margin-top: 23px;
    font-size: 10px;
  }
  .hero-product {
    min-height: 407px;
    margin-inline: 0;
    border-top: 1px solid #dce0d5;
  }
  .hero-product > img {
    width: 66%;
    max-height: 305px;
    margin-top: -5px;
    transform: rotate(-7deg);
  }
  .product-topline {
    top: 18px;
    left: 20px;
    right: 20px;
    font-size: 7px;
  }
  .product-topline > span:last-child {
    display: block;
  }
  .hero-watermark {
    font-size: 120px;
    top: 49px;
    left: 20px;
  }
  .product-caption {
    bottom: 19px;
    left: 20px;
    right: 20px;
  }
  .stripe-signature {
    width: 6px;
  }
  .circle-link {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 8px;
  }
  .benefit-grid p,
  .benefit-grid p:first-child,
  .benefit-grid p:last-child {
    justify-content: flex-start;
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
    gap: 17px;
    font-size: 11px;
  }
  .benefit-grid p:last-child {
    border: 0;
  }
  .section-space {
    padding-block: 58px;
  }
  .section-heading {
    margin-bottom: 25px;
  }
  .section-index {
    display: none;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.35px;
  }
  h2 {
    font-size: 34px;
    letter-spacing: -1.3px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .detail-viewport {
    height: 390px;
  }
  .detail-viewport img {
    height: 83%;
    width: 72%;
  }
  .detail-label {
    left: 20px;
    top: 20px;
  }
  .view-button {
    font-size: 10px;
    padding: 13px 14px;
    gap: 14px;
  }
  .view-button span {
    font-size: 11px;
  }
  .product-copy h2 {
    font-size: 34px;
  }
  .product-copy .lead {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 18px;
  }
  .features {
    margin-top: 22px;
  }
  .features > div {
    padding-block: 18px;
  }
  .features dt {
    font-size: 15px;
    gap: 15px;
  }
  .features dd {
    font-size: 13px;
    margin-left: 28px;
  }
  .product-copy .text-link {
    font-size: 11px;
    gap: 14px;
  }
  .clubs-section .section-heading {
    margin-bottom: 31px;
  }
  .club-stripes {
    width: 55px;
    height: 17px;
  }
  .clubs-grid {
    grid-template-columns: 1fr;
    gap: 43px;
  }
  .clubs-copy h2 {
    font-size: clamp(32px, 8.6vw, 45px);
    letter-spacing: -1.3px;
  }
  .clubs-copy > p {
    font-size: 14px;
    margin-top: 22px;
  }
  .clubs-copy .button {
    font-size: 12px;
    padding-inline: 19px;
    gap: 24px;
  }
  .club-phone {
    font-size: 11px;
  }
  .process-heading {
    font-size: 9px;
  }
  .club-process li {
    padding-block: 22px;
    gap: 21px;
  }
  .club-process h3 {
    font-size: 18px;
  }
  .club-process li p {
    font-size: 13px;
  }
  .process-note {
    padding: 19px 20px;
  }
  .process-note p {
    font-size: 11px;
  }
  .retail-section {
    padding-block: 36px;
  }
  .retail-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .retail-section h2 {
    font-size: 27px;
    max-width: 300px;
  }
  .retail-section p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.8;
  }
  .button-bol {
    justify-self: start;
    font-size: 12px;
    min-height: 49px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .about-section .eyebrow {
    margin-bottom: 20px;
  }
  .about-copy > p {
    font-size: 14px;
  }
  .founders {
    margin-top: 23px;
  }
  .faq-section {
    padding-bottom: 58px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 23px;
    padding-top: 40px;
  }
  .faq-section h2 {
    font-size: 32px;
  }
  .faq-list summary {
    font-size: 13px;
    padding-block: 20px;
    gap: 16px;
    line-height: 1.6;
  }
  .faq-list summary > span {
    flex-shrink: 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .contact-copy .eyebrow {
    margin-bottom: 20px;
  }
  .contact-copy h2 {
    font-size: 34px;
  }
  .contact-copy > p:not(.eyebrow):not(.contact-footnote) {
    font-size: 14px;
  }
  .contact-person {
    margin-top: 27px;
  }
  .contact-person div > span {
    font-size: 10px;
  }
  .contact-phone {
    font-size: 28px;
    gap: 20px;
  }
  .contact-email {
    font-size: 13px;
  }
  .contact-footnote {
    margin-top: 23px;
  }
  .contact-form {
    padding: 24px 20px;
    gap: 20px;
  }
  .contact-form h3 {
    font-size: 23px;
  }
  .form-intro {
    font-size: 11px;
  }
  .form-row {
    gap: 20px;
  }
  input,
  textarea {
    font-size: 16px;
    padding: 12px;
  }
  input::placeholder,
  textarea::placeholder {
    font-size: 12px;
  }
  label {
    font-size: 12px;
  }
  .form-note {
    font-size: 10px;
  }
  .site-footer {
    padding-top: 36px;
  }
  .footer-main {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    padding-bottom: 28px;
  }
  .footer-main > p {
    grid-row: 2;
    grid-column: 1/-1;
    font-size: 12px;
  }
  .back-top {
    gap: 10px;
    font-size: 10px;
  }
  .footer-bottom {
    font-size: 9px;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-bottom nav {
    gap: 14px;
    flex-wrap: wrap;
  }
  .thanks-main {
    padding-block: 75px;
  }
  .thanks-content p:not(.eyebrow) {
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .button:hover {
    transform: none;
  }
}
.detail-viewport.is-closeup .detail-label {
  visibility: hidden;
}
