/* ==========================================================================
   BOUGE — design tokens
   ========================================================================== */
:root {
  --color-bg: #f3f1ec;
  --color-slate: #1c2830;
  --color-amber: #d4922e;
  --color-founder-bg: #edf1f3;
  --color-founder-placeholder: #d4dde3;
  --color-muted: rgba(28, 40, 48, 0.5);

  --font-wordmark: 'Josefin Sans', sans-serif;
  --font-display: 'DM Serif Display', serif;
  --font-body: 'Barlow', sans-serif;

  --space-page-x: clamp(20px, 6vw, 72px);
  --space-section-y: clamp(48px, 9vw, 100px);
  --radius-pill: 100px;

  --ease-elegant: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --grain: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxNDAnIGhlaWdodD0nMTQwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC45JyBudW1PY3RhdmVzPScyJyBzdGl0Y2hUaWxlcz0nc3RpdGNoJy8+PGZlQ29sb3JNYXRyaXggdHlwZT0nbWF0cml4JyB2YWx1ZXM9JzAgMCAwIDAgMSAgMCAwIDAgMCAxICAwIDAgMCAwIDEgIDAgMCAwIDAuMDYgMCcvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPScxMDAlJyBoZWlnaHQ9JzEwMCUnIGZpbHRlcj0ndXJsKCNuKScvPjwvc3ZnPg==");
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--color-bg);
  font-family: var(--font-body), sans-serif;
  color: var(--color-slate);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 300ms var(--ease-smooth);
}

a:hover {
  opacity: 0.75;
}

input::placeholder {
  color: rgba(243, 241, 236, 0.55);
}

input:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 146, 46, 0.35);
  border-radius: 2px;
}

button {
  font-family: var(--font-body), sans-serif;
  cursor: pointer;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.section-hidden {
  display: none !important;
}

/* ==========================================================================
   Motion — scroll reveal + reduced-motion guard
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms var(--ease-elegant), transform 900ms var(--ease-elegant);
  will-change: opacity, transform;
}

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

.reveal--delay-1 { transition-delay: 90ms; }
.reveal--delay-2 { transition-delay: 180ms; }
.reveal--delay-3 { transition-delay: 270ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Photo-edge fades — soften the seam where a full-bleed photo meets a
   flat-color section, without touching flat-color-to-flat-color seams
   (those stay sharp/architectural, matching the original brand mockup).
   ========================================================================== */
.fade-edge {
  position: relative;
}

.fade-edge::before,
.fade-edge::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(48px, 10vh, 130px);
  pointer-events: none;
}

.fade-edge--top::before {
  top: 0;
  background: linear-gradient(to bottom, var(--color-bg), transparent);
}

.fade-edge--bottom::after {
  bottom: 0;
  background: linear-gradient(to top, var(--color-bg), transparent);
}

/* ==========================================================================
   Nav
   ========================================================================== */
.iab-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px var(--space-page-x);
  background: rgba(212, 146, 46, 0.1);
  border-bottom: 1px solid rgba(212, 146, 46, 0.22);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--color-slate);
  animation: iab-banner-in 400ms var(--ease-smooth);
}

.iab-banner[hidden] {
  display: none;
}

.iab-banner__text {
  flex: 1;
  margin: 0;
}

.iab-banner__text strong {
  color: var(--color-amber);
  font-weight: 600;
}

.iab-banner__dismiss {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  padding: 0;
  color: var(--color-slate);
  opacity: 0.5;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 200ms var(--ease-smooth);
}

.iab-banner__dismiss:hover {
  opacity: 1;
}

@keyframes iab-banner-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 28px;
  padding: 18px var(--space-page-x);
  border-bottom: 1px solid rgba(28, 40, 48, 0.08);
  position: sticky;
  top: 0;
  background: var(--color-bg);
  z-index: 100;
  text-align: center;
  box-shadow: 0 12px 24px -18px rgba(28, 40, 48, 0);
  transition: box-shadow 400ms var(--ease-smooth), border-color 400ms var(--ease-smooth);
}

.nav--scrolled {
  box-shadow: 0 12px 24px -14px rgba(28, 40, 48, 0.14);
  border-bottom-color: rgba(28, 40, 48, 0.12);
}

.nav__links {
  display: flex;
  gap: 22px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.nav__links a {
  position: relative;
  padding-bottom: 3px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 350ms var(--ease-elegant);
}

.nav__links a:hover {
  opacity: 1;
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__wordmark {
  order: -1;
  width: 100%;
  font-family: var(--font-wordmark);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.44em;
  padding-left: 0.44em;
  text-align: center;
  transition: letter-spacing 500ms var(--ease-elegant);
}

.nav__wordmark:hover {
  letter-spacing: 0.52em;
}

@media (min-width: 720px) {
  .nav {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 28px var(--space-page-x);
  }

  .nav__links {
    gap: 40px;
    font-size: 11px;
    letter-spacing: 0.22em;
    flex: 1;
  }

  .nav__links--right {
    justify-content: flex-end;
  }

  .nav__wordmark {
    order: 0;
    width: auto;
    font-size: 16px;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  height: 92vh;
  min-height: 560px;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28, 40, 48, 0.72) 0%, rgba(28, 40, 48, 0.28) 55%, rgba(28, 40, 48, 0.1) 100%);
}

.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  mix-blend-mode: overlay;
  opacity: 0.5;
  pointer-events: none;
}

@media (min-width: 720px) {
  .hero__overlay {
    background: linear-gradient(to right, rgba(28, 40, 48, 0.68) 0%, rgba(28, 40, 48, 0) 55%);
  }
}

.hero__content {
  position: absolute;
  left: var(--space-page-x);
  right: var(--space-page-x);
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-bg);
  max-width: 540px;
}

.hero__content > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 900ms var(--ease-elegant), transform 900ms var(--ease-elegant);
}

.hero__content.is-loaded > * {
  opacity: 1;
  transform: translateY(0);
}

.hero__content.is-loaded > *:nth-child(1) { transition-delay: 120ms; }
.hero__content.is-loaded > *:nth-child(2) { transition-delay: 240ms; }
.hero__content.is-loaded > *:nth-child(3) { transition-delay: 340ms; }
.hero__content.is-loaded > *:nth-child(4) { transition-delay: 420ms; }
.hero__content.is-loaded > *:nth-child(5) { transition-delay: 500ms; }
.hero__content.is-loaded > *:nth-child(6) { transition-delay: 580ms; }
.hero__content.is-loaded > *:nth-child(7) { transition-delay: 660ms; }
.hero__content.is-loaded > *:nth-child(8) { transition-delay: 740ms; }

@media (prefers-reduced-motion: reduce) {
  .hero__content > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 9vw, 74px);
  line-height: 1.16;
  margin: 0 0 12px;
}

.hero__tagline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 5.5vw, 34px);
  line-height: 1.3;
  color: #e3b978;
  margin: 0 0 24px;
  letter-spacing: 0.01em;
}

.hero__label {
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 30px;
}

.hero__body {
  font-size: 16px;
  line-height: 1.72;
  opacity: 0.85;
  margin: 0 0 30px;
  font-weight: 300;
  max-width: 400px;
}

.hero__buy {
  display: inline-block;
  padding: 17px 38px;
  background: var(--color-amber);
  color: var(--color-slate);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-family: var(--font-wordmark), sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 26px;
  transition: background 300ms var(--ease-smooth), transform 250ms var(--ease-smooth), box-shadow 300ms var(--ease-smooth);
}

.hero__buy:hover {
  background: #e3b978;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -10px rgba(212, 146, 46, 0.5);
}

.hero__content .signup-form {
  margin-top: 28px;
}

@media (min-width: 720px) {
  .hero__content .signup-form {
    margin-top: 0;
  }
}

/* ==========================================================================
   Signup form (shared: hero + wholesale CTA)
   ========================================================================== */
.signup-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  border: 1px solid rgba(243, 241, 236, 0.42);
  overflow: hidden;
  border-radius: var(--radius-pill);
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.45);
  transition: box-shadow 400ms var(--ease-smooth), border-color 400ms var(--ease-smooth);
}

.signup-form:focus-within {
  border-color: rgba(243, 241, 236, 0.75);
  box-shadow: 0 24px 44px -16px rgba(0, 0, 0, 0.5);
}

.signup-form__input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  border: none;
  background: rgba(243, 241, 236, 0.12);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font-family: var(--font-body), sans-serif;
  font-size: 14px;
  color: var(--color-bg);
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  -webkit-appearance: none;
  appearance: none;
}

.signup-form__input:focus-visible {
  box-shadow: none;
}

.signup-form__button {
  padding: 14px 20px;
  background: var(--color-bg);
  color: var(--color-slate);
  border: none;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  font-family: var(--font-body), sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 300ms var(--ease-smooth), transform 250ms var(--ease-smooth), box-shadow 300ms var(--ease-smooth);
}

.signup-form__button:hover:not(:disabled) {
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -8px rgba(0, 0, 0, 0.35);
}

.signup-form__button:active:not(:disabled) {
  transform: translateY(0);
}

.signup-form__button:disabled {
  opacity: 0.7;
  cursor: default;
}

.signup-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 720px) {
  .signup-form__input {
    padding: 15px 22px;
    font-size: 14px;
  }

  .signup-form__button {
    padding: 15px 26px;
    font-size: 10.5px;
    letter-spacing: 0.22em;
  }
}

.signup-form--cta {
  max-width: 460px;
  margin: 0 auto;
  border-color: rgba(243, 241, 236, 0.25);
}

.signup-form--cta .signup-form__input {
  background: rgba(243, 241, 236, 0.07);
}

.signup-form--cta .signup-form__button {
  background: var(--color-amber);
  color: var(--color-bg);
}

.signup-form--cta .signup-form__button:hover:not(:disabled) {
  background: #e0a24a;
}

.signup-form__note {
  font-size: 11px;
  opacity: 0.55;
  margin-top: 12px;
  letter-spacing: 0.04em;
  max-width: 420px;
}

.signup-form__note--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.signup-form__error {
  font-size: 11px;
  color: #e3b978;
  margin-top: 10px;
  display: none;
}

.signup-form__error.is-visible {
  display: block;
}

/* ==========================================================================
   Story quote
   ========================================================================== */
.story {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.story__text {
  padding: var(--space-section-y) var(--space-page-x);
}

.story__label {
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: 22px;
}

.story__quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 6vw, 38px);
  line-height: 1.42;
  margin: 0;
  font-weight: 400;
}

.story__media {
  overflow: hidden;
  height: 320px;
}

.story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 900px) {
  .story {
    grid-template-columns: 1fr 1fr;
  }

  .story__media {
    height: 100%;
    min-height: 460px;
  }

  .story__label {
    margin-bottom: 28px;
  }
}

/* ==========================================================================
   Founder / Meet Jill
   ========================================================================== */
.founder {
  background: var(--color-founder-bg);
  color: var(--color-slate);
}

.founder__text {
  max-width: 640px;
  margin: 0 auto;
  padding: 56px var(--space-page-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder__label {
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: 22px;
}

.founder__heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(34px, 8vw, 52px);
  line-height: 1.06;
  margin: 0 0 8px;
}

.founder__subtitle {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 26px;
}

.founder__paragraph {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(28, 40, 48, 0.74);
  margin: 0 0 20px;
  font-weight: 300;
}

.founder__pull-quote {
  border-left: 2px solid var(--color-amber);
  padding-left: 22px;
  margin-top: 12px;
}

.founder__pull-quote-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 4.5vw, 21px);
  line-height: 1.52;
  color: rgba(28, 40, 48, 0.84);
  margin: 0;
  font-style: italic;
}

.founder__pull-quote-attribution {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(28, 40, 48, 0.38);
  margin-top: 12px;
}

@media (min-width: 900px) {
  .founder__text {
    padding: 84px var(--space-page-x);
  }
}

/* ==========================================================================
   Image break
   ========================================================================== */
.image-break {
  height: 45vh;
  min-height: 280px;
  overflow: hidden;
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}

@media (min-width: 900px) {
  .image-break {
    height: 70vh;
    min-height: 440px;
  }
}

/* ==========================================================================
   Latest batch (hero teaser)
   ========================================================================== */
.latest-batch {
  padding: var(--space-section-y) var(--space-page-x);
}

.latest-batch__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.latest-batch__label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-amber);
}

.latest-batch__heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 4vw, 34px);
  margin: 8px 0 0;
}

.latest-batch__view-all {
  font-family: var(--font-body), sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-slate);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  white-space: nowrap;
}

.latest-batch__view-all:hover {
  color: var(--color-amber);
}

.latest-batch__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 700px) {
  .latest-batch__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.latest-batch__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 16px;
}

.latest-batch__name {
  font-family: var(--font-display);
  font-size: 19px;
}

.latest-batch__price {
  font-size: 13.5px;
  color: rgba(28, 40, 48, 0.52);
  margin: 4px 0 2px;
}

.latest-batch__shipping-note {
  font-size: 11px;
  color: rgba(28, 40, 48, 0.4);
  margin: 0 0 16px;
}

.latest-batch__buy {
  display: inline-block;
  padding: 11px 26px;
  background: var(--color-slate);
  color: var(--color-bg);
  border: none;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-family: var(--font-body), sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 300ms var(--ease-smooth), transform 250ms var(--ease-smooth);
}

.latest-batch__buy:hover {
  background: var(--color-amber);
  transform: translateY(-1px);
}

.latest-batch__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
}

.latest-batch__action-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.latest-batch__buy--pickup {
  background: transparent;
  color: var(--color-slate);
  border: 1px solid rgba(28, 40, 48, 0.35);
}

.latest-batch__buy--pickup:hover {
  background: var(--color-slate);
  color: var(--color-bg);
}

.latest-batch__action-note {
  font-size: 10.5px;
  color: rgba(28, 40, 48, 0.4);
  margin-top: 8px;
}

/* ==========================================================================
   Product grid
   ========================================================================== */
.products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(28, 40, 48, 0.1);
}

.product-card {
  background: var(--color-bg);
  padding: 32px var(--space-page-x);
  position: relative;
  z-index: 1;
  transition: box-shadow 450ms var(--ease-smooth), transform 450ms var(--ease-smooth);
}

.product-card:hover {
  box-shadow: 0 30px 54px -20px rgba(28, 40, 48, 0.2);
  transform: translateY(-4px);
  z-index: 2;
}

.product-card__media {
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
}

.product-card__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 0;
  transition: transform 800ms var(--ease-elegant), filter 400ms var(--ease-smooth), opacity 400ms var(--ease-smooth);
}

.product-card:hover .product-card__img {
  transform: scale(1.045);
}

@media (prefers-reduced-motion: reduce) {
  .product-card,
  .product-card__img {
    transition: none;
  }

  .product-card:hover {
    transform: none;
  }

  .product-card:hover .product-card__img {
    transform: none;
  }
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 22px;
}

.product-card__subtitle {
  font-size: 12.5px;
  color: rgba(28, 40, 48, 0.52);
  margin-top: 6px;
}

.product-card__price {
  font-family: var(--font-body), sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-slate);
  margin-top: 14px;
}

.product-card__shipping-note {
  font-size: 11.5px;
  color: rgba(28, 40, 48, 0.45);
  margin-top: 2px;
}

.product-card__ingredients {
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(28, 40, 48, 0.45);
  margin-top: 10px;
}

.product-card__ingredients-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: rgba(28, 40, 48, 0.6);
  margin-right: 5px;
}

.product-card__buy {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 26px;
  background: var(--color-slate);
  color: var(--color-bg);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body), sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 300ms var(--ease-smooth), transform 250ms var(--ease-smooth), box-shadow 300ms var(--ease-smooth);
}

.product-card__buy:hover {
  background: var(--color-amber);
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 12px 22px -8px rgba(212, 146, 46, 0.45);
}

.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
}

.product-card__action-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-card__actions .product-card__buy {
  margin-top: 0;
}

.product-card__buy--pickup {
  background: transparent;
  color: var(--color-slate);
  border: 1px solid rgba(28, 40, 48, 0.35);
}

.product-card__buy--pickup:hover {
  background: var(--color-slate);
  color: var(--color-bg);
  box-shadow: none;
}

.product-card__action-note {
  font-size: 11px;
  color: rgba(28, 40, 48, 0.4);
  margin-top: 8px;
}

/* Not-yet-linkable state — real photo/card is finished, but no Stripe
   Payment Link exists yet. Distinct from the old `.products.coming-soon`
   teaser (that grayscaled the image too); here the photo stays full color,
   only the buy control is inert. Swap the `<span class="product-card__buy
   product-card__buy--disabled">` back to a real `<a href="STRIPE_LINK">`
   (drop the --disabled modifier) once a Payment Link exists. */
.product-card__buy--disabled {
  background: rgba(28, 40, 48, 0.12);
  color: rgba(28, 40, 48, 0.4);
  cursor: default;
  pointer-events: none;
}

.product-card__buy--disabled:hover {
  background: rgba(28, 40, 48, 0.12);
  transform: none;
  box-shadow: none;
}

.product-card__qty {
  display: block;
  margin-top: 18px;
}

.product-card__qty-label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(28, 40, 48, 0.52);
  margin-bottom: 6px;
}

.product-card__qty-select {
  width: 100%;
  max-width: 260px;
  padding: 12px 16px;
  background: var(--color-bg);
  border: 1px solid rgba(28, 40, 48, 0.2);
  border-radius: var(--radius-pill);
  font-family: var(--font-body), sans-serif;
  font-size: 13px;
  color: var(--color-slate);
}

.product-card__qty-select:disabled {
  opacity: 0.5;
  cursor: default;
}

.product-card--bulk .product-card__img {
  object-fit: contain;
  background: var(--color-bg);
}

@media (min-width: 700px) {
  .products {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-card {
    padding: 48px;
  }

  .product-card__name {
    font-size: 24px;
  }
}

/* ==========================================================================
   Values strip
   ========================================================================== */
.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(28, 40, 48, 0.08);
  border-bottom: 1px solid rgba(28, 40, 48, 0.08);
}

.value-cell {
  padding: 32px 16px;
  text-align: center;
  border-right: 1px solid rgba(28, 40, 48, 0.08);
  border-bottom: 1px solid rgba(28, 40, 48, 0.08);
}

.value-cell:nth-child(2n) {
  border-right: none;
}

.value-cell:nth-last-child(-n+2) {
  border-bottom: none;
}

.value-cell__name {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 6px;
}

.value-cell__sub {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(28, 40, 48, 0.42);
}

@media (min-width: 700px) {
  .values {
    grid-template-columns: repeat(4, 1fr);
  }

  .value-cell {
    padding: 40px 20px;
    border-bottom: none;
  }

  .value-cell:nth-child(2n) {
    border-right: 1px solid rgba(28, 40, 48, 0.08);
  }

  .value-cell:last-child {
    border-right: none;
  }

  .value-cell__name {
    font-size: 26px;
  }

  .value-cell__sub {
    font-size: 10.5px;
    letter-spacing: 0.14em;
  }
}

/* ==========================================================================
   Wholesale + email CTA
   ========================================================================== */
.cta {
  position: relative;
  overflow: hidden;
  padding: var(--space-section-y) var(--space-page-x);
  text-align: center;
  color: var(--color-bg);
}

.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 40, 48, 0.82);
}

.cta__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  mix-blend-mode: overlay;
  opacity: 0.5;
  pointer-events: none;
}

.cta__inner {
  position: relative;
}

.cta__label {
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: 20px;
}

.cta__heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 7vw, 46px);
  margin: 0 0 16px;
}

.cta__body {
  font-size: 16px;
  line-height: 1.72;
  opacity: 0.68;
  max-width: 500px;
  margin: 0 auto 36px;
  font-weight: 300;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  padding: 30px var(--space-page-x);
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  border-top: 1px solid rgba(28, 40, 48, 0.1);
}

.footer__wordmark {
  font-family: var(--font-wordmark);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.4em;
}

.footer__note {
  font-size: 12px;
  color: rgba(28, 40, 48, 0.42);
  letter-spacing: 0.04em;
}

.footer__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__meta .footer__note::after {
  content: '\00B7';
  margin-left: 8px;
  color: rgba(28, 40, 48, 0.3);
}

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(28, 40, 48, 0.42);
  letter-spacing: 0.04em;
}

.footer__social svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (min-width: 700px) {
  .footer {
    flex-direction: row;
    text-align: left;
  }
}
