:root {
  --ink: #141610;
  --ink-soft: #2a2e28;
  --chalk: #f2efe8;
  --mist: #d8ddd6;
  --stone: #9aa39a;
  --sage: #4a5d4e;
  --sun: #c9852a;
  --line: rgba(20, 22, 16, 0.14);
  --brand: "Black Ops One", system-ui, sans-serif;
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --body: "Literata", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --annbar: 2.2rem;
  /* Rendered height of the fixed nav. Mobile is the tall case because of the
     hamburger; nav.js overwrites this with the measured value. */
  --navh: 4.55rem;
}

/* Announcement bar */
.ann-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: var(--annbar);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0 1rem;
  background: var(--sage);
  color: var(--chalk);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
}

.ann-bar:hover {
  color: #fff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--body);
  font-optical-sizing: auto;
  font-size: 1.125rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Nav */
.site-nav {
  position: fixed;
  top: var(--annbar);
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

/* Interior pages start on light content, so the bar is always opaque. */
.pdp-body .site-nav {
  background: var(--chalk);
  border-bottom-color: var(--line);
}

/* The home page hero sits behind the bar until the page moves. */
body:not(.pdp-body) .site-nav {
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.site-nav.is-stuck,
.site-nav.nav-open {
  background: var(--chalk);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(20, 22, 16, 0.06);
}

body:not(.pdp-body) .site-nav.is-stuck,
body:not(.pdp-body) .site-nav.nav-open {
  color: var(--ink);
  text-shadow: none;
}

/* Placed explicitly: .nav-center is display:none on mobile and generates no
   box, so auto-placement would pull the actions into the middle column. */
.nav-brand {
  grid-column: 1;
  font-family: var(--brand);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  justify-self: start;
}

.nav-center {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.nav-actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.1rem;
  justify-self: end;
}

/* Mobile: the primary links collapse into the hamburger, cart stays reachable. */
.nav-center,
.nav-account {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-right: -0.5rem;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

.nav-toggle-bars {
  position: relative;
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  transition: background 0.2s var(--ease);
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.28s var(--ease);
}

.nav-toggle-bars::before {
  transform: translateY(-6px);
}

.nav-toggle-bars::after {
  transform: translateY(6px);
}

.nav-open .nav-toggle-bars {
  background: transparent;
}

.nav-open .nav-toggle-bars::before {
  transform: rotate(45deg);
}

.nav-open .nav-toggle-bars::after {
  transform: rotate(-45deg);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: grid;
  padding: 0.2rem 1.4rem 0.8rem;
  background: var(--chalk);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(20, 22, 16, 0.09);
}

.nav-menu[hidden] {
  display: none;
}

.nav-menu-link {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  text-shadow: none;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.nav-menu-link:last-child {
  border-bottom: 0;
}

/* Mobile only: hand the screen back on the way down, return on the way up. */
@media (max-width: 859px) {
  .site-nav {
    transition: background 0.3s var(--ease), color 0.3s var(--ease),
      border-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
      transform 0.32s var(--ease);
  }

  .site-nav.is-hidden {
    transform: translateY(calc(-100% - var(--annbar)));
  }
}

.nav-link,
.nav-cart {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  padding: 0;
}

.nav-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cart-count {
  font-variant-numeric: tabular-nums;
}

.cart-count[hidden] {
  display: none;
}

.cart-count:not([hidden])::before {
  content: "(";
}

.cart-count:not([hidden])::after {
  content: ")";
}

/* Hero: one composition, full bleed */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: start;
  color: var(--chalk);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Narrow viewports crop hard into the frame, so bias right to keep the whole
     jar and its label inside the visible slice. */
  object-position: 85% 56%;
  transform: scale(1.04);
  animation: hero-drift 18s var(--ease) infinite alternate;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 22, 16, 0.7) 0%, rgba(20, 22, 16, 0.32) 34%, rgba(20, 22, 16, 0) 66%),
    radial-gradient(700px 360px at 30% 10%, rgba(201, 133, 42, 0.16), transparent 60%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 2.4rem));
  margin: 12vh auto 0;
  padding: 0 0.2rem;
}

.brand {
  margin: 0 0 0.85rem;
  font-family: var(--brand);
  font-weight: 400;
  font-size: clamp(2.6rem, 8.5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.55rem, 3.6vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.lede {
  margin: 0 0 1.6rem;
  max-width: 34ch;
  font-size: 1.05rem;
  color: rgba(242, 239, 232, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--display);
  font-weight: 650;
  font-size: 1rem;
  letter-spacing: -0.02em;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--chalk);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--chalk);
  border-color: rgba(242, 239, 232, 0.45);
}

.btn-dark {
  background: var(--ink);
  color: var(--chalk);
}

.get-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.newsletter {
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 420px;
  margin-inline: auto;
}

.newsletter-label {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
}

.newsletter-status {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

.newsletter-status.is-ok {
  color: var(--sage);
}

.newsletter-status.is-error {
  color: #6b1f1f;
}

.footer-newsletter {
  width: min(420px, 100%);
  margin: 0 auto 1.4rem;
}

.footer-newsletter .newsletter-label {
  color: var(--ink-soft);
}

/* Product */
.product-section {
  padding: clamp(4rem, 10vw, 7rem) 1.4rem;
  width: min(1100px, 100%);
  margin: 0 auto;
}

.product-hit {
  display: grid;
  gap: 2.5rem;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
  transition: transform 0.45s var(--ease);
}

.product-hit:hover .product-visual img,
.product-hit:focus-visible .product-visual img {
  transform: scale(1.05);
}

.product-hit:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 8px;
}

.product-cta {
  margin: 1.4rem 0 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  display: inline-block;
  padding-bottom: 0.15rem;
  transition: color 0.3s var(--ease);
}

.product-hit:hover .product-cta,
.product-hit:focus-visible .product-cta {
  color: var(--sage);
}

.product-visual {
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.product-visual img {
  width: min(100%, 420px);
  aspect-ratio: 1;
  object-fit: contain;
  transition: transform 1.2s var(--ease);
}

.product-visual.in img {
  transform: scale(1.03);
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}

.product-copy h2,
.why h2,
.ritual-copy h2,
.proof h2,
.get h2 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.product-copy p,
.why p,
.ritual-copy p,
.proof p,
.get p {
  margin: 0;
  color: var(--ink-soft);
}

.facts {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.facts li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.facts li:last-child {
  border-bottom: 1px solid var(--line);
}

/* Social proof */
.proof {
  padding: clamp(4rem, 10vw, 7rem) 1.4rem;
  background: #fff;
}

.proof-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.proof-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.proof-quote {
  margin: 0;
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--line);
  background: #fafaf8;
}

.proof-quote p {
  margin: 0;
  font-family: var(--body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--ink-soft);
  max-width: none;
}

.proof-quote cite {
  display: block;
  margin-top: 0.9rem;
  font-family: var(--display);
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink);
}

.proof-sub {
  margin: 0.35rem 0 0;
  max-width: 40ch;
  font-family: var(--body);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0;
  line-height: 1.5;
  color: var(--ink-soft);
}

@media (min-width: 860px) {
  .proof-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

/* Proof block on the product page sits tighter than the home page version */
.proof-pdp {
  padding: clamp(2.5rem, 7vw, 4rem) 1.4rem;
  background: #f7f7f5;
  border-top: 1px solid var(--line);
}

.proof-pdp h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.proof-pdp .proof-list {
  margin-top: 1.5rem;
}

.proof-pdp .proof-quote {
  background: #fff;
}

/* Pairs the held-jar shot with the written notes. The shot carries its own
   quote, so that one is dropped from the list beside it rather than repeated. */
.proof-shot {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.proof-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.proof-shot .proof-list {
  margin-top: 0;
  grid-template-columns: 1fr;
  align-content: start;
}

@media (min-width: 860px) {
  .proof-shot {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 1.75rem;
    align-items: stretch;
  }

  /* The shot is a tall portrait, so the notes divide its height into equal
     panels instead of bunching at the top and leaving the column half empty. */
  .proof-shot .proof-list {
    grid-auto-rows: 1fr;
  }

  .proof-shot .proof-quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* Why */
.why {
  padding: clamp(4.5rem, 12vw, 8rem) 1.4rem;
  background: #f7f7f5;
}

.why-inner {
  width: min(720px, 100%);
  margin: 0 auto;
}

/* Ritual */
.ritual {
  display: grid;
  gap: 2rem;
  padding: clamp(4rem, 10vw, 7rem) 1.4rem;
  width: min(1100px, 100%);
  margin: 0 auto;
}

.steps {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 1rem;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 1rem 0 1rem 3.2rem;
  border-top: 1px solid var(--line);
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.05rem;
  font-family: var(--display);
  font-weight: 700;
  color: var(--sun);
  letter-spacing: -0.04em;
}

.steps strong {
  font-family: var(--display);
  font-weight: 700;
}

.ritual-panel {
  min-height: 280px;
  display: grid;
  place-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(201, 133, 42, 0.28), transparent 45%),
    linear-gradient(160deg, #2f3831, #171a16);
  color: var(--chalk);
}

.ritual-mark {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(5rem, 16vw, 8rem);
  letter-spacing: -0.06em;
  line-height: 0.85;
  animation: mark-breathe 5s var(--ease) infinite;
}

.ritual-note {
  margin: 0.4rem 0 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  opacity: 0.75;
}

/* Get / waitlist */
.get {
  padding: clamp(4.5rem, 12vw, 8rem) 1.4rem 5rem;
}

.get-inner {
  width: min(640px, 100%);
  margin: 0 auto;
  text-align: center;
}

.brand-line {
  margin: 0 0 0.6rem;
  font-family: var(--brand);
  font-weight: 400;
  font-size: clamp(2.2rem, 6.5vw, 3.6rem);
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}

.waitlist {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.7rem;
}

.waitlist input,
.waitlist button {
  min-height: 3.15rem;
  border: 0;
  font: inherit;
}

.waitlist input {
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  font-family: var(--body);
}

.waitlist button {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--ink);
  color: var(--chalk);
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.waitlist button:hover:not(:disabled) {
  background: var(--sage);
  transform: translateY(-1px);
}

.waitlist button:disabled {
  opacity: 0.75;
  cursor: default;
}

.site-footer {
  padding: 2rem 1.4rem 3rem;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.4rem;
  margin: 1rem 0 0.4rem;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.footer-links a {
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 0.05rem;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.footer-links a:hover {
  color: var(--ink);
  border-bottom-color: currentColor;
}

.fine {
  margin-top: 0.55rem !important;
  font-size: 0.8rem;
  opacity: 0.75;
  max-width: 42ch;
  margin-inline: auto !important;
}

/* Legal pages */
.legal {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 1.5rem 1.4rem 4rem;
}

.legal h1 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.legal-updated {
  margin: 0 0 1.8rem;
  font-size: 0.9rem;
  color: var(--stone);
}

.legal h2 {
  margin: 2rem 0 0.6rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.legal p {
  margin: 0 0 0.9rem;
  color: var(--ink-soft);
}

.legal a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.contact-lede {
  margin: 0 0 1.8rem;
  color: var(--ink-soft);
  max-width: 42ch;
}

.contact-success {
  margin: 0 0 1.5rem;
  padding: 1rem 1.1rem;
  background: #f3f5f2;
  border: 1px solid var(--line);
  font-family: var(--display);
  font-weight: 600;
}

.contact-error {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  background: #f8ecec;
  border: 1px solid rgba(140, 40, 40, 0.2);
  color: #6b1f1f;
  font-size: 0.95rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 520px;
}

.contact-field {
  display: grid;
  gap: 0.4rem;
}

.contact-field label {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  color: var(--ink);
  resize: vertical;
}

.contact-form button {
  min-height: 3.15rem;
  margin-top: 0.3rem;
  border: 0;
  background: var(--ink);
  color: var(--chalk);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.contact-form button:hover {
  background: var(--sage);
  transform: translateY(-1px);
}

.contact-alt {
  margin-top: 1.4rem;
  font-size: 0.95rem;
  color: var(--stone);
}

/* Product detail page */
.pdp-body {
  padding-top: calc(var(--annbar) + var(--navh) + 0.8rem);
}

.crumbs {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0.6rem 1.4rem 0;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  color: var(--stone);
}

.crumbs a:hover {
  color: var(--ink);
}

.pdp {
  display: grid;
  gap: 2rem;
  padding: clamp(1.5rem, 5vw, 3rem) 1.4rem clamp(3rem, 8vw, 5rem);
  width: min(1100px, 100%);
  margin: 0 auto;
}

.pdp-media {
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  min-width: 0;
}

.pdp-media img {
  width: min(100%, 460px);
  object-fit: contain;
  transition: transform 1.2s var(--ease);
}

.pdp-media.in img {
  transform: translateY(-4px);
}

.pdp-panel h1 {
  margin: 0 0 0.5rem;
  font-family: var(--brand);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.pdp-sub {
  margin: 0 0 1.4rem;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
  max-width: 34ch;
}

.pdp-benefits {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
  max-width: 38ch;
}

.pdp-benefits li {
  position: relative;
  padding-left: 1.7rem;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
}

/* Tick drawn from two borders rather than a glyph, so it can't shift with the
   webfont and matches how the gallery chevron is built. */
.pdp-benefits li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.36em;
  width: 0.62rem;
  height: 0.32rem;
  border-left: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  transform: rotate(-45deg);
}

/* Attribute strip under the description. The bullets above sell the outcome;
   these are the short formulation facts a skimmer scans for. */
.benefit-icons {
  margin: 0 0 1.7rem;
  padding: 1.15rem 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1.05rem 0.9rem;
  max-width: 42ch;
}

@media (min-width: 520px) {
  .benefit-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.benefit-icons li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.benefit-icons svg {
  width: 1.65rem;
  height: 1.65rem;
  flex: none;
  fill: none;
  stroke: var(--sage);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-icons span {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

/* Environmental claims carry the specific formulation fact that backs them, so
   the shorthand is never making a promise on its own. */
.benefit-icons small {
  font-family: var(--body);
  font-weight: 400;
  font-size: 0.7rem;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--stone);
}

/* Social proof pill above the buy box. */
.social-pill {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.5rem;
  padding: 0.55rem 1.15rem 0.55rem 0.55rem;
  border-radius: 999px;
  background: #f2f1ec;
  max-width: 42ch;
}

.social-pill-avatars {
  display: flex;
  flex: none;
}

.social-pill-avatars img {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f2f1ec;
  background: #fff;
}

.social-pill-avatars img + img {
  margin-left: -0.72rem;
}

.social-pill p {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.85rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.social-pill strong {
  font-weight: 700;
}

.social-pill-check {
  color: var(--sage);
  font-weight: 700;
}

/* Spells out what a bundle actually contains, so "combo" doesn't read as two
   of the same jar. */
.bundle-list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  max-width: 42ch;
}

.trust-badges + .bundle-list {
  margin-top: 1.5rem;
}

.bundle-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--line);
  background: #fafaf8;
}

.bundle-list img {
  width: 2.9rem;
  height: 2.9rem;
  flex: none;
  object-fit: contain;
}

.bundle-copy {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.bundle-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.bundle-size {
  margin-left: 0.15rem;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--stone);
}

.bundle-role {
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--ink-soft);
}

.pdp-desc {
  margin: 1.4rem 0 0;
  color: var(--ink-soft);
  max-width: 46ch;
  font-size: 1rem;
  line-height: 1.5;
}

.pdp-routine-block .pdp-desc {
  margin: 0;
}

/* One row per jar. The label sits in a fixed column so the three descriptions
   share a left edge instead of stepping in and out with the label length. */
.pdp-routine {
  margin: 0.9rem 0 0;
  display: grid;
  gap: 0.7rem;
  max-width: 46ch;
}

.routine-row {
  display: flex;
  gap: 0.75rem;
}

.pdp-routine dt {
  flex: none;
  width: 6rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.pdp-routine dd {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* Narrow columns can't spare a label column, so the label becomes a lead-in. */
@media (max-width: 999px) {
  .routine-row {
    display: block;
  }

  .pdp-routine dt,
  .pdp-routine dd {
    display: inline;
    width: auto;
  }
}

.buy {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.7rem;
}

.buy input,
.buy button {
  min-height: 3.15rem;
  border: 0;
  font: inherit;
}

.buy input {
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  font-family: var(--body);
}

.buy button {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--ink);
  color: var(--chalk);
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.buy button:hover:not(:disabled) {
  background: var(--sage);
  transform: translateY(-1px);
}

.buy button:disabled {
  opacity: 0.75;
  cursor: default;
}

.buy-fine {
  margin: 0.7rem 0 0;
  font-size: 0.85rem;
  color: var(--stone);
}

.pdp-details {
  display: grid;
  gap: 1.4rem;
  padding: 0 1.4rem clamp(4rem, 10vw, 6rem);
  width: min(1100px, 100%);
  margin: 0 auto;
}

.detail-card {
  padding: 1.6rem;
  background: #fff;
  border: 1px solid var(--line);
}

.detail-card p {
  margin: 0;
  color: var(--ink-soft);
}

.steps.compact {
  margin: 0;
}

.steps.compact li {
  padding: 0.75rem 0 0.75rem 3rem;
  font-size: 0.98rem;
}

.steps.compact li:first-child {
  border-top: 0;
}

.steps.compact li::before {
  top: 0.8rem;
}

/* Size + bundle options */
.buy-options {
  margin: 1.6rem 0 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 0.6rem;
}

.buy-options-legend {
  padding: 0;
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.buy-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.buy-option:hover {
  border-color: var(--stone);
}

.buy-option.is-selected {
  border-color: var(--sage);
  box-shadow: inset 0 0 0 1px var(--sage);
  background: #f6f7f3;
}

.buy-option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.1rem;
  height: 1.1rem;
  margin: 0;
  border: 1.5px solid var(--stone);
  border-radius: 50%;
  flex: none;
  display: grid;
  place-content: center;
  transition: border-color 0.2s var(--ease);
}

.buy-option input[type="radio"]::after {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--sage);
  transform: scale(0);
  transition: transform 0.18s var(--ease);
}

.buy-option.is-selected input[type="radio"] {
  border-color: var(--sage);
}

.buy-option input[type="radio"]:checked::after {
  transform: scale(1);
}

.opt-thumb {
  flex: none;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--line);
  display: grid;
  place-content: center;
  overflow: hidden;
}

.opt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.opt-info {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  flex: 1 1 auto;
  min-width: 0;
}

/* Wraps so a long badge drops below the title instead of squeezing it onto two
   lines on narrow screens. */
.opt-titlerow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.2rem 0.5rem;
}

.opt-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.opt-sub {
  font-size: 0.8rem;
  color: var(--stone);
}

.opt-price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  flex: none;
}

.opt-price-stack {
  display: grid;
  justify-items: end;
  gap: 0.08rem;
  flex: none;
}

.opt-price-stack .opt-price {
  line-height: 1;
}

.opt-compare {
  font-size: 0.75rem;
  color: var(--stone);
}

.opt-save {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--sage);
}

.opt-badge {
  padding: 0.1rem 0.42rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--chalk);
  background: var(--sage);
  border-radius: 999px;
  white-space: nowrap;
}

.opt-badge.alt {
  background: var(--sun);
}

/* The picker is grouped into sets and single jars. .buy-options owns the gap
   between its own children, so each group re-declares the row spacing. */
.opt-group {
  display: grid;
  gap: 0.6rem;
}

.opt-more {
  margin-top: 0.5rem;
}

/* Subordinate to .buy-options-legend so the two groups read as one list split
   in two, not as two competing decisions. */
.opt-more-title {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}

/* Reassurance row under the buy buttons. Claims here must stay in step with
   shipping.html, so copy changes belong in both places. */
.trust-badges {
  margin: 1.1rem 0 0;
  padding: 1rem 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.85rem 1.1rem;
}

.trust-badges li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.trust-badges svg {
  width: 1.35rem;
  height: 1.35rem;
  flex: none;
  margin-top: 0.05rem;
  fill: none;
  stroke: var(--sage);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-badges span {
  display: grid;
  gap: 0.05rem;
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--stone);
}

.trust-badges strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.trust-badges a {
  color: var(--stone);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  justify-self: start;
}

.trust-badges a:hover {
  color: var(--ink);
}

@media (min-width: 520px) {
  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Buy / cart */
.buy-actions {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.75rem;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.qty-row label {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9rem;
}

.qty-row input {
  width: 4.2rem;
  min-height: 3rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  text-align: center;
}

.buy-actions .btn,
.buy-actions button {
  min-height: 3.15rem;
  border: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), color 0.3s var(--ease);
}

.buy-actions [data-add-to-cart] {
  background: var(--ink);
  color: var(--chalk);
}

.buy-actions [data-add-to-cart]:hover:not(:disabled) {
  background: var(--sage);
  transform: translateY(-1px);
}

.buy-actions [data-buy-now] {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line) !important;
}

.buy-actions [data-buy-now]:hover:not(:disabled) {
  border-color: var(--ink) !important;
}

.buy-actions button:disabled {
  opacity: 0.65;
  cursor: default;
}

/* Shopify renders the Shop Pay button into a closed shadow root and locks its
   look, so we only control the slot it sits in. */
.shop-pay-slot {
  display: block;
}

.shop-pay-slot shop-pay-button {
  display: block;
  width: 100%;
  --shop-pay-button-width: 100%;
  --shop-pay-button-height: 3.15rem;
  --shop-pay-button-border-radius: 0;
}

.buy-fine {
  margin: 0.7rem 0 0;
  font-size: 0.85rem;
  color: var(--stone);
}

/* Shop index */
.shop {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: clamp(1.5rem, 5vw, 3rem) 1.4rem clamp(3rem, 8vw, 5rem);
}

.shop-head h1 {
  margin: 0 0 0.6rem;
  font-family: var(--brand);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.shop-sub {
  margin: 0;
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.5;
}

.shop-grid {
  margin-top: clamp(2rem, 5vw, 3rem);
  display: grid;
  gap: 1.25rem;
}

.shop-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

/* The card itself carries .reveal, which owns transform, so hover feedback
   stays on colour and shadow instead of fighting the entrance animation. */
.shop-card:hover,
.shop-card:focus-visible {
  border-color: var(--sage);
  box-shadow: 0 10px 26px rgba(20, 22, 16, 0.08);
}

.shop-card:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 4px;
}

.shop-card-media {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 4vw, 2rem);
  background: #fafaf8;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.shop-card-media img {
  width: min(100%, 300px);
  aspect-ratio: 1;
  object-fit: contain;
  transition: transform 0.9s var(--ease);
}

.shop-card:hover .shop-card-media img,
.shop-card:focus-visible .shop-card-media img {
  transform: scale(1.05);
}

.shop-card-flag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  padding: 0.18rem 0.5rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--chalk);
  background: var(--sun);
  border-radius: 999px;
}

.shop-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 0.35rem;
  padding: 1.3rem;
}

.shop-card-eyebrow {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}

.shop-card-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.shop-card-sub {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

/* Pinned to the bottom so price and CTA line up across cards of unequal copy. */
.shop-card-foot {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.shop-card-price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.shop-card-cta {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.1rem;
  transition: color 0.3s var(--ease);
}

.shop-card:hover .shop-card-cta,
.shop-card:focus-visible .shop-card-cta {
  color: var(--sage);
}

.shop-facts {
  margin-top: clamp(2rem, 5vw, 2.8rem);
}

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

  .shop-facts {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
  }
}

body.cart-open {
  overflow: hidden;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
}

.cart-drawer.is-open {
  pointer-events: auto;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 16, 0.45);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.cart-drawer.is-open .cart-backdrop {
  opacity: 1;
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(420px, 100%);
  height: 100%;
  background: #fff;
  color: var(--ink);
  box-shadow: -16px 0 40px rgba(20, 22, 16, 0.12);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}

.cart-drawer.is-open .cart-panel {
  transform: none;
}

.cart-header,
.cart-footer {
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid var(--line);
}

.cart-footer {
  margin-top: auto;
  border-bottom: 0;
  border-top: 1px solid var(--line);
}

/* Shave cream cross-sell, rendered only when the cart has something in it. */
.cart-upsell {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.cart-upsell-label {
  margin: 0 0 0.6rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
}

.cart-upsell-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.cart-upsell-item img {
  width: 3rem;
  height: 3rem;
  flex: none;
  object-fit: cover;
  border: 1px solid var(--line);
}

.cart-upsell-copy {
  min-width: 0;
}

.cart-upsell-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.cart-upsell-blurb {
  margin: 0.1rem 0 0;
  font-size: 0.78rem;
  line-height: 1.3;
  color: var(--stone);
}

.cart-upsell button {
  margin-left: auto;
  flex: none;
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.cart-upsell button:hover:not(:disabled) {
  background: var(--ink);
  color: var(--chalk);
}

.cart-upsell button:disabled {
  opacity: 0.6;
  cursor: default;
}

.cart-ship {
  margin-bottom: 0.9rem;
}

.cart-ship-msg {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  color: var(--ink);
}

.cart-ship-msg.is-hit {
  color: var(--sage);
  font-weight: 600;
}

.cart-ship-msg strong {
  font-weight: 700;
}

.cart-ship-bar {
  height: 5px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}

.cart-ship-bar span {
  display: block;
  height: 100%;
  background: var(--sage);
  border-radius: 999px;
  transition: width 0.35s var(--ease);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.cart-close {
  border: 0;
  background: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}

.cart-body {
  flex: 1;
  overflow: auto;
  padding: 1.1rem 1.35rem;
}

.cart-empty {
  margin: 1.5rem 0;
  color: var(--stone);
}

.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.cart-line-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 650;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.cart-line-price {
  margin: 0.25rem 0 0.55rem;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.cart-line-was,
.cart-was {
  color: var(--stone);
  font-weight: 400;
}

.cart-line-save {
  padding: 0.05rem 0.38rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--chalk);
  background: var(--sage);
  border-radius: 999px;
}

.cart-savings {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--sage);
  text-align: right;
}

.cart-line-qty {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--display);
  font-size: 0.9rem;
}

.cart-line-qty button {
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.cart-line-remove {
  margin-left: auto;
  width: auto !important;
  border: 0 !important;
  background: none !important;
  color: var(--stone);
  text-decoration: underline;
  text-underline-offset: 0.12em;
  font-size: 0.8rem;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-family: var(--display);
  font-weight: 650;
  margin-bottom: 0.45rem;
}

.cart-note {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  color: var(--stone);
}

.cart-checkout {
  width: 100%;
  min-height: 3.15rem;
  border: 0;
  background: var(--ink);
  color: var(--chalk);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.cart-checkout:hover:not(:disabled) {
  background: var(--sage);
}

.cart-checkout:disabled {
  opacity: 0.65;
  cursor: default;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.32s; }

.reveal.in {
  opacity: 1;
  transform: none;
}

@keyframes hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.2%, -1%, 0); }
}

@keyframes mark-breathe {
  0%, 100% { transform: scale(1); opacity: 0.92; }
  50% { transform: scale(1.03); opacity: 1; }
}

@media (min-width: 860px) {
  .site-nav {
    padding: 1.35rem 2.2rem;
  }

  .nav-center {
    display: flex;
  }

  .nav-account {
    display: inline;
  }

  .nav-toggle,
  .nav-menu {
    display: none;
  }

  .hero {
    align-items: end;
  }

  .hero-copy {
    width: min(620px, calc(100% - 6rem));
    margin: 0 auto 14vh 3rem;
  }

  .hero-media img {
    object-position: 62% 42%;
  }

  .hero-wash {
    background:
      linear-gradient(90deg, rgba(20, 22, 16, 0.72) 0%, rgba(20, 22, 16, 0.35) 40%, rgba(20, 22, 16, 0) 68%),
      linear-gradient(180deg, rgba(20, 22, 16, 0) 40%, rgba(20, 22, 16, 0.45) 100%);
  }

  .product-hit {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 4rem;
  }

  .pdp {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    align-items: start;
    column-gap: 4rem;
    row-gap: 2rem;
  }

  /* The routine sits below the image while the panel spans both rows, so the
     tall buy column doesn't push it down past the empty space under the jar. */
  .pdp-media {
    grid-column: 1;
    grid-row: 1;
  }

  .pdp-panel {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .pdp-routine-block {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
  }

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

  .ritual {
    max-width: 820px;
  }

  .waitlist {
    grid-template-columns: 1fr auto;
  }

  .waitlist button {
    padding-inline: 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .btn,
  .product-visual img,
  .hero-media img,
  .ritual-mark,
  .site-nav,
  .nav-toggle-bars,
  .nav-toggle-bars::before,
  .nav-toggle-bars::after,
  .pdp-media img {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
