/* ==========================================================================
   Design tokens and global reset
   ========================================================================== */

:root {
  --ink: #0e0e0c;
  --charcoal: #080806;
  --soft-black: #141310;
  --cream: #c9b99d;
  --linen: #d8c7aa;
  --honey: #b88932;
  --brass: #c6a15b;
  --wood: #7a4f24;
  --moss: #4b4a25;
  --rose: #9a5a55;
  --smoke: #cbc2b4;
  --white: #fffaf0;
  --shadow: 0 24px 60px rgba(0, 0, 0, .24);
  --soft-shadow: 0 18px 48px rgba(0, 0, 0, .18);
  --serif: "Cinzel", "Cormorant Garamond", Georgia, serif;
  --body: "Aptos", "Segoe UI", Arial, sans-serif;
  --sans: var(--body);
  --muted: rgba(201, 185, 157, .72);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% -10%, rgba(184, 137, 50, .1), transparent 28%),
    linear-gradient(180deg, #15120e, var(--charcoal));
  font-family: var(--body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .18;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 250, 240, .18) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 10%, rgba(184, 137, 50, .16) 0 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 240, .04), transparent 18%, rgba(0, 0, 0, .05) 46%, transparent 72%);
  background-size: 34px 34px, 57px 57px, 220px 100%;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 998;
  pointer-events: none;
  opacity: .12;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(201, 185, 157, .06) 18.15%, transparent 18.3%),
    linear-gradient(0deg, rgba(255, 250, 240, .035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 42px;
  mix-blend-mode: soft-light;
}

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

.image-clean,
.founder-page .hero > img,
.founder-page .portrait,
.founder-page .feature-img,
.founder-page .quote-panel img,
.founder-page .product img {
  filter: contrast(1.08) saturate(1.04) brightness(.96);
}

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

/* ==========================================================================
   Shared layout, navigation, hero, and reusable components
   ========================================================================== */

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 3vw, 32px);
  padding: 10px clamp(14px, 4vw, 42px);
  color: var(--white);
  border-bottom: 1px solid rgba(201, 185, 157, .08);
  background:
    linear-gradient(180deg, rgba(8, 8, 6, .92), rgba(8, 8, 6, .54));
  backdrop-filter: blur(12px);
}

.site-nav.light {
  color: var(--ink);
  background: rgba(243, 234, 216, .92);
  border-bottom: 1px solid rgba(21, 18, 15, .12);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  margin-right: auto;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 1px solid rgba(184, 137, 50, .72);
  border-radius: 50%;
  background: rgba(9, 8, 7, .35);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  gap: clamp(10px, 1.8vw, 24px);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.nav-links a {
  position: relative;
  flex: 0 0 auto;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  opacity: .86;
  white-space: nowrap;
  transition: color 200ms ease, opacity 200ms ease, border-color 240ms ease;
}

.nav-links a:hover,
.nav-links .active {
  opacity: 1;
  color: var(--honey);
  border-bottom-color: rgba(184, 137, 50, .58);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 8, 6, .7) 42%, rgba(8, 8, 6, .96) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .76), rgba(0, 0, 0, .34) 52%, rgba(0, 0, 0, .1));
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 36px));
  padding: 120px clamp(18px, 6vw, 74px) 78px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--honey);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  font-size: clamp(48px, 8vw, 104px);
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
}

h3 {
  font-size: clamp(22px, 3vw, 34px);
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2.2vw, 24px);
  color: rgba(255, 250, 240, .86);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 21px;
  border: 1px solid currentColor;
  color: var(--white);
  background: transparent;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 0 rgba(184, 137, 50, .14);
  transition: border-color 220ms ease, background-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.btn.primary {
  border-color: var(--honey);
  color: var(--ink);
  background: var(--honey);
  box-shadow: 0 16px 36px rgba(184, 137, 50, .22);
}

.btn:hover {
  border-color: var(--honey);
  color: var(--honey);
  box-shadow: inset 0 0 0 1px rgba(184, 137, 50, .2), var(--soft-shadow);
}

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

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

.section {
  position: relative;
  padding: clamp(76px, 10vw, 136px) clamp(18px, 5vw, 74px);
}

.section + .section {
  border-top: 1px solid rgba(201, 185, 157, .08);
}

.founder-page .section {
  padding-block: clamp(58px, 7vw, 96px);
}

.section.dark {
  color: var(--cream);
  background: var(--charcoal);
}

.section.wood {
  color: var(--cream);
  background: linear-gradient(135deg, #23140e, #5b3624 48%, #17110d);
}

.section.soft {
  background: var(--linen);
}

.section.green {
  color: var(--cream);
  background: var(--moss);
}

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
}

.two-col.reverse {
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr);
}

.copy p {
  max-width: 720px;
  font-size: 18px;
}

.quote {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
}

.portrait,
.feature-img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border: 1px solid rgba(201, 185, 157, .14);
  box-shadow: var(--shadow);
}

.founder-photo {
  object-position: center top;
}

.feature-img.short {
  min-height: 360px;
}

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

.value,
.product {
  border: 1px solid rgba(21, 18, 15, .16);
  background: rgba(255, 250, 240, .58);
  padding: 26px;
}

.product,
.value,
.ritual-card,
.shop-product-detail,
.herb-entry,
.testimonial-grid blockquote {
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 240, .045),
    0 18px 48px rgba(0, 0, 0, .12);
}

:is(
  .product,
  .value,
  .ritual-card,
  .shop-product-detail,
  .herb-entry,
  .testimonial-grid blockquote,
  .product-facts section,
  .scripture-card,
  .signup
) {
  position: relative;
  overflow: hidden;
}

:is(
  .product,
  .value,
  .ritual-card,
  .shop-product-detail,
  .herb-entry,
  .testimonial-grid blockquote,
  .product-facts section,
  .scripture-card,
  .signup
)::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, .05), transparent 42%),
    radial-gradient(circle at 12% 8%, rgba(184, 137, 50, .1), transparent 26%);
}

.dark .value,
.dark .product,
.wood .value,
.wood .product {
  border-color: rgba(243, 234, 216, .18);
  background: rgba(255, 250, 240, .06);
}

.value strong,
.product strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 21px;
}

.product img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin-bottom: 18px;
  border: 1px solid rgba(201, 185, 157, .12);
}

.product p {
  margin: 0;
  color: rgba(201, 185, 157, .82);
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 22px;
  color: var(--honey);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  width: 34px;
  height: 1px;
  margin-left: 12px;
  background: currentColor;
}

.text-link.light {
  color: var(--brass);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .48fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p {
  margin: 0;
  color: rgba(201, 185, 157, .82);
  font-size: 18px;
}

.section-heading-simple {
  grid-template-columns: 1fr;
  max-width: 900px;
}

.journal-note {
  position: relative;
  max-width: 720px;
  margin: 28px 0;
  padding: 18px 22px 18px 26px;
  border-left: 3px solid rgba(184, 137, 50, .72);
  color: rgba(216, 199, 170, .9);
  background:
    linear-gradient(135deg, rgba(201, 185, 157, .075), transparent 62%),
    rgba(8, 8, 6, .32);
  font-family: var(--serif);
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.25;
  box-shadow: inset 0 1px 0 rgba(255, 250, 240, .05);
}

.journal-note::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(184, 137, 50, .34);
  border-radius: 50%;
  opacity: .46;
  box-shadow: inset 0 0 0 6px rgba(184, 137, 50, .06);
}

.light-note {
  color: rgba(255, 250, 240, .88);
  background: rgba(8, 8, 6, .28);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr .8fr 1fr;
  grid-auto-rows: 230px;
  gap: 12px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(201, 185, 157, .12);
}

.gallery img:nth-child(2),
.gallery img:nth-child(5) {
  grid-row: span 2;
}

.signup {
  display: grid;
  gap: 12px;
  max-width: 680px;
  margin-top: 28px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(243, 234, 216, .2);
  background:
    linear-gradient(135deg, rgba(184, 137, 50, .14), transparent 44%),
    rgba(8, 8, 6, .34);
  box-shadow: 0 20px 54px rgba(0, 0, 0, .2);
}

.signup-label {
  color: var(--honey);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.signup-row,
.signup-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

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

.signup label {
  display: grid;
  gap: 8px;
}

.signup label span {
  color: rgba(255, 250, 240, .78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.signup input,
.signup select {
  min-height: 52px;
  border: 1px solid rgba(243, 234, 216, .24);
  color: var(--white);
  background: var(--white);
  background: rgba(255, 250, 240, .1);
  padding: 0 16px;
  font: inherit;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.signup input:focus,
.signup select:focus,
.search-field input:focus {
  outline: none;
  border-color: var(--honey);
  background: rgba(255, 250, 240, .14);
  box-shadow: 0 0 0 3px rgba(184, 137, 50, .14);
}

.signup input::placeholder {
  color: rgba(255, 250, 240, .68);
}

.signup select option {
  color: var(--ink);
  background: var(--white);
}

.signup .btn {
  width: fit-content;
  color: var(--ink);
  background: var(--honey);
  border-color: var(--honey);
}

.signup-note {
  max-width: 560px;
  margin: 2px 0 0;
  color: rgba(255, 250, 240, .72);
  font-size: 14px;
}

.footer {
  padding: clamp(38px, 5vw, 64px) clamp(18px, 5vw, 74px);
  color: var(--cream);
  border-top: 1px solid rgba(201, 185, 157, .14);
  background:
    radial-gradient(circle at 12% 16%, rgba(184, 137, 50, .14), transparent 24%),
    linear-gradient(135deg, rgba(184, 137, 50, .08), transparent 36%),
    var(--charcoal);
}

.footer::before {
  content: "";
  display: block;
  width: min(1180px, 100%);
  height: 1px;
  margin: 0 auto clamp(28px, 4vw, 44px);
  background: linear-gradient(90deg, transparent, rgba(184, 137, 50, .46), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) auto minmax(260px, .9fr);
  align-items: start;
  gap: clamp(24px, 5vw, 70px);
  font-size: 14px;
}

.footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.1;
}

.footer p {
  margin: 0;
  color: rgba(201, 185, 157, .82);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

.footer-disclaimer {
  max-width: 360px;
  font-size: 12px;
  line-height: 1.55;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(201, 185, 157, .18);
  color: var(--cream);
  background: rgba(255, 250, 240, .04);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.social-link:hover {
  color: var(--honey);
  border-color: rgba(184, 137, 50, .44);
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-hero::before {
  background:
    linear-gradient(90deg, rgba(8, 8, 6, .92), rgba(8, 8, 6, .54) 56%, rgba(8, 8, 6, .18)),
    radial-gradient(circle at 72% 36%, rgba(184, 137, 50, .18), transparent 34%);
}

.contact-hero img {
  object-position: center center;
}

.contact-section {
  color: var(--cream);
  background:
    radial-gradient(circle at 12% 18%, rgba(184, 137, 50, .12), transparent 24%),
    linear-gradient(135deg, #080806, #17110d 54%, #2b1a10);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, .65fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.contact-copy {
  border-left: 1px solid rgba(184, 137, 50, .42);
  padding-left: clamp(20px, 4vw, 44px);
}

.contact-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 250, 240, .78);
  font-size: 18px;
}

.contact-card-grid {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(201, 185, 157, .16);
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(184, 137, 50, .1), transparent 42%),
    rgba(255, 250, 240, .055);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.contact-card span {
  color: var(--honey);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.contact-card p {
  max-width: 620px;
  margin: 0;
  color: rgba(201, 185, 157, .82);
}

.contact-card:hover {
  border-color: rgba(184, 137, 50, .58);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .26);
}

/* ==========================================================================
   Homepage and launch conversion sections
   ========================================================================== */

.founder-page .hero {
  min-height: 96vh;
  align-items: stretch;
}

.founder-page .hero::before {
  background:
    linear-gradient(90deg, rgba(8, 8, 6, .94), rgba(8, 8, 6, .62) 54%, rgba(8, 8, 6, .28)),
    radial-gradient(circle at 72% 46%, rgba(122, 79, 36, .32), transparent 36%);
}

.founder-page .hero-content {
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(0px, 6vw, 92px);
  align-self: end;
  padding-bottom: clamp(70px, 9vw, 104px);
  border-left: 4px solid var(--honey);
  padding-left: clamp(18px, 3vw, 32px);
}

.founder-page .hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 7.2vw, 92px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  max-width: 820px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 185, 157, .24);
  color: rgba(255, 250, 240, .78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
}

.hero-trust span + span::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 18px;
  border-radius: 50%;
  background: var(--honey);
  opacity: .72;
}

.founder-page .story-band {
  color: var(--cream);
  background: linear-gradient(135deg, rgba(122, 79, 36, .34), transparent 48%), var(--soft-black);
}

.founder-page .story-band .copy {
  border-left: 1px solid rgba(184, 137, 50, .42);
  padding-left: clamp(20px, 4vw, 44px);
}

.founder-page .story-band h2,
.founder-page .story-band p {
  color: var(--cream);
}

.scripture-card {
  margin: 42px 0 0;
  padding: 28px 30px;
  border-left: 4px solid var(--honey);
  color: var(--cream);
  background: rgba(8, 8, 6, .42);
}

.scripture-card p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.18;
}

.scripture-card cite {
  display: block;
  margin-top: 16px;
  color: var(--honey);
  font-style: normal;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.founder-page .quote-panel {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.founder-page .quote-panel img {
  height: 520px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.founder-page .section.dark {
  background: linear-gradient(135deg, var(--charcoal), #17120d 48%, var(--moss));
}

.founder-page .section:not(.dark):not(.wood):not(.story-band) {
  background: #0f0f0c;
  color: var(--cream);
}

.founder-page .product {
  border-color: rgba(184, 137, 50, .26);
  color: var(--cream);
  background: rgba(201, 185, 157, .06);
}

.logo-story-grid {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.logo-story-header {
  position: sticky;
  top: 12px;
  align-self: start;
  max-width: 560px;
}

.logo-story-mark {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  opacity: .95;
}

.logo-story-mark-wrap {
  display: grid;
  place-items: center;
  width: min(740px, 100%);
  aspect-ratio: 1 / .78;
  box-sizing: border-box;
  margin-top: -24px;
  padding: 0;
}

.logo-story-copy {
  max-width: 720px;
  border-left: 1px solid rgba(184, 137, 50, .42);
  padding-left: clamp(20px, 4vw, 44px);
}

.logo-story-copy p {
  max-width: 720px;
  color: var(--cream);
  font-size: 18px;
}

.founder-page .product strong,
.founder-page .value strong {
  color: var(--brass);
}

.founder-page .section.wood {
  background:
    radial-gradient(circle at 18% 20%, rgba(184, 137, 50, .14), transparent 28%),
    linear-gradient(135deg, #080806, #21160f 38%, #4a2d1b 72%, #11100c);
}

.product-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--honey);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.product-kicker::before,
.line-moment::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-right: 8px;
  vertical-align: middle;
  background: rgba(184, 137, 50, .72);
}

/* ==========================================================================
   Products and ritual preview pages
   ========================================================================== */

.ritual-page {
  background: var(--charcoal);
}

.product-hero {
  min-height: 82vh;
}

.product-hero::before {
  background: linear-gradient(90deg, rgba(8, 8, 6, .86), rgba(8, 8, 6, .42) 55%, rgba(8, 8, 6, .2));
}

.ritual-page .section {
  color: var(--cream);
  background: #0f0f0c;
}

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

.ritual-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(201, 185, 157, .18);
  background: rgba(201, 185, 157, .06);
}

.ritual-card::after,
.herb-entry::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184, 137, 50, .2);
  border-radius: 50%;
  opacity: .34;
  pointer-events: none;
}

.ritual-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--honey);
  font-family: var(--serif);
  font-size: 34px;
}

.ritual-card h2 {
  color: var(--cream);
}

.ritual-card h3 {
  margin: 28px 0 8px;
  color: var(--brass);
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ritual-card blockquote {
  margin: 28px 0;
  padding-left: 18px;
  border-left: 3px solid var(--honey);
  color: var(--linen);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.22;
}

.ritual-card cite {
  display: block;
  margin-top: 12px;
  color: var(--honey);
  font-family: var(--body);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.steady {
  box-shadow: inset 0 5px 0 var(--honey);
}

.cares {
  box-shadow: inset 0 5px 0 var(--moss);
}

.path {
  box-shadow: inset 0 5px 0 var(--wood);
}

.line-products {
  margin-top: 22px;
  color: var(--honey);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.line-moment {
  margin: 0 0 12px;
  color: var(--honey);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.ritual-use {
  max-width: 820px;
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(201, 185, 157, .16);
  background: rgba(201, 185, 157, .055);
}

.ritual-use h3 {
  margin: 0 0 10px;
  color: var(--brass);
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ritual-use p {
  margin: 0;
  color: rgba(201, 185, 157, .86);
}

.line-herbs {
  max-width: 800px;
  color: rgba(201, 185, 157, .78);
}

.line-verse {
  max-width: 780px;
  margin-top: 18px;
  padding-left: 18px;
  border-left: 3px solid var(--honey);
  color: var(--linen);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.28;
}

.line-verse span {
  display: block;
  margin-top: 8px;
  color: var(--honey);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.line-cta {
  margin-top: auto;
  align-self: flex-start;
}

.shop-section {
  color: var(--cream);
  background:
    radial-gradient(circle at 14% 10%, rgba(184, 137, 50, .18), transparent 34%),
    linear-gradient(135deg, #080806, #15120d 52%, #23170f);
}

.shop-product-detail {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  margin-top: 42px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(201, 185, 157, .18);
  background:
    linear-gradient(135deg, rgba(201, 185, 157, .07), transparent 38%),
    rgba(15, 15, 12, .88);
}

.shop-product-media img {
  width: 100%;
  min-height: clamp(460px, 54vw, 680px);
  object-fit: cover;
  border: 1px solid rgba(201, 185, 157, .14);
  box-shadow: var(--shadow);
}

.product-carousel {
  position: relative;
  overflow: hidden;
}

.product-carousel > img {
  transition: opacity 220ms ease, transform 420ms ease, filter 320ms ease;
}

.product-carousel.is-changing > img {
  opacity: .72;
  transform: scale(1.012);
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(201, 185, 157, .36);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(8, 8, 6, .72);
  font-size: 25px;
  line-height: 1;
  font-weight: 500;
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.carousel-control.prev {
  left: 14px;
}

.carousel-control.next {
  right: 14px;
}

.carousel-control:hover {
  border-color: var(--honey);
  color: var(--honey);
}

.tea-product-photo {
  filter: brightness(1.02) contrast(1.08) saturate(1.02);
}

.product-image-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.product-thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(201, 185, 157, .16);
  background: transparent;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 137, 50, .7);
}

.product-thumb.is-active {
  border-color: var(--honey);
  box-shadow: 0 0 0 2px rgba(184, 137, 50, .18);
}

.product-image-strip img {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: none;
  border: 0;
}

.shop-product-copy {
  align-self: center;
}

.shop-product-copy .btn {
  margin-top: 26px;
}

.product-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(201, 185, 157, .16);
}

.product-facts section {
  min-height: 0;
  padding: 24px;
  background: rgba(8, 8, 6, .62);
}

.product-facts h3 {
  margin: 0 0 10px;
  color: var(--brass);
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.product-facts p {
  margin: 0;
  color: rgba(201, 185, 157, .84);
}

.product-facts a {
  color: var(--honey);
  font-weight: 800;
}

.product-facts strong {
  color: var(--linen);
}

/* ==========================================================================
   Apothecary and herbal history pages
   ========================================================================== */

.herbal-page {
  background: var(--charcoal);
}

.herbal-page .section {
  color: var(--cream);
  background: #0f0f0c;
}

.herbal-hero {
  min-height: 78vh;
}

.herbal-hero::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(184, 137, 50, .24), transparent 34%),
    linear-gradient(90deg, rgba(8, 8, 6, .9), rgba(8, 8, 6, .42));
}

.apothecary-page {
  background:
    radial-gradient(circle at 14% 0%, rgba(122, 79, 36, .18), transparent 32%),
    var(--charcoal);
}

.apothecary-hero {
  min-height: 92vh;
}

.apothecary-hero .hero-content {
  width: min(900px, calc(100% - 36px));
  padding-bottom: clamp(70px, 9vw, 104px);
}

.apothecary-hero h1 {
  max-width: 820px;
  font-size: clamp(48px, 8vw, 104px);
}

.apothecary-hero::before {
  background:
    linear-gradient(90deg, rgba(8, 8, 6, .94), rgba(8, 8, 6, .62) 54%, rgba(8, 8, 6, .28)),
    radial-gradient(circle at 72% 42%, rgba(122, 79, 36, .26), transparent 34%);
}

.apothecary-tools {
  padding-block: clamp(28px, 4vw, 44px);
  border-top: 1px solid rgba(201, 185, 157, .12);
  border-bottom: 1px solid rgba(201, 185, 157, .12);
  color: var(--cream);
  background: rgba(8, 8, 6, .96);
}

.apothecary-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1fr);
  gap: 18px;
  align-items: end;
}

.search-field {
  display: grid;
  gap: 8px;
}

.search-field span {
  color: var(--honey);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.search-field input {
  min-height: 52px;
  width: 100%;
  border: 1px solid rgba(201, 185, 157, .22);
  color: var(--white);
  background: rgba(255, 250, 240, .08);
  padding: 0 16px;
  font: inherit;
}

.search-field input::placeholder {
  color: rgba(201, 185, 157, .58);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.filter-btn {
  min-height: 42px;
  border: 1px solid rgba(201, 185, 157, .22);
  color: var(--cream);
  background: rgba(201, 185, 157, .055);
  padding: 10px 14px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.filter-btn:hover,
.filter-btn.is-active {
  border-color: var(--honey);
  color: var(--ink);
  background: var(--honey);
}

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

.apothecary-journal {
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(201, 185, 157, .045), transparent 36%),
    #0f0f0c;
}

.herb-card-list {
  display: grid;
  gap: clamp(28px, 5vw, 54px);
}

.apothecary-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  margin: 0 0 clamp(28px, 4vw, 48px);
}

.preview-heading {
  margin: clamp(22px, 4vw, 38px) 0 12px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.apothecary-tools .apothecary-preview {
  margin-bottom: 0;
}

.apothecary-preview a {
  display: grid;
  align-content: center;
  min-height: 82px;
  padding: 16px 18px;
  border: 1px solid rgba(201, 185, 157, .16);
  background:
    linear-gradient(135deg, rgba(184, 137, 50, .1), transparent 58%),
    rgba(20, 17, 13, .82);
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.14rem;
  letter-spacing: .01em;
}

.apothecary-preview a span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.apothecary-preview a:hover {
  border-color: rgba(184, 137, 50, .58);
  background-color: rgba(37, 29, 20, .9);
  color: var(--honey);
}

.apothecary-preview a.is-filter-match {
  border-color: rgba(184, 137, 50, .82);
  color: var(--honey);
  background:
    linear-gradient(135deg, rgba(184, 137, 50, .22), transparent 58%),
    rgba(37, 29, 20, .92);
  box-shadow:
    inset 0 0 0 1px rgba(184, 137, 50, .24),
    0 16px 42px rgba(184, 137, 50, .12);
}

.apothecary-preview a.is-filter-match span {
  color: var(--brass);
}

.herb-entry {
  display: grid;
  border: 1px solid rgba(201, 185, 157, .16);
  background:
    linear-gradient(90deg, rgba(201, 185, 157, .035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(184, 137, 50, .08), transparent 34%),
    var(--soft-black);
  background-size: 42px 42px, auto, auto;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .24);
}

.herb-entry[hidden] {
  display: none;
}

.herb-entry.is-filter-match {
  border-color: rgba(184, 137, 50, .78);
  box-shadow:
    inset 0 0 0 1px rgba(184, 137, 50, .32),
    0 28px 74px rgba(184, 137, 50, .16),
    0 24px 60px rgba(0, 0, 0, .3);
}

.herb-entry.is-filter-match::after {
  content: "Included";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: auto;
  height: auto;
  border: 1px solid rgba(184, 137, 50, .64);
  border-radius: 0;
  color: var(--ink);
  background: var(--honey);
  padding: 8px 10px;
  opacity: 1;
  pointer-events: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.herb-entry-image {
  width: 100%;
  height: clamp(220px, 28vw, 360px);
  object-fit: contain;
  object-position: center;
  border-bottom: 1px solid rgba(201, 185, 157, .14);
  background:
    radial-gradient(circle at center, rgba(201, 185, 157, .08), transparent 58%),
    #0b0b08;
  filter: contrast(1.12) saturate(1.08) brightness(.98);
}

.herb-entry-content {
  padding: clamp(26px, 5vw, 58px);
}

.herb-entry h2 {
  color: var(--cream);
  font-size: clamp(38px, 6vw, 76px);
}

.latin-name {
  margin: 10px 0 34px;
  color: var(--brass);
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 30px);
  font-style: italic;
}

.herb-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(201, 185, 157, .14);
}

.herb-facts section {
  min-height: 178px;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(135deg, rgba(201, 185, 157, .05), transparent 42%),
    rgba(8, 8, 6, .74);
}

.herb-facts h3 {
  margin: 0 0 10px;
  color: var(--honey);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.herb-facts p {
  margin: 0;
  color: rgba(201, 185, 157, .86);
}

.herb-pager {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 185, 157, .14);
}

.herb-pager a {
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.herb-pager a:hover {
  color: var(--honey);
}

.herb-pager a.is-disabled {
  color: rgba(201, 185, 157, .42);
  cursor: default;
  pointer-events: none;
}

.back-to-top {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 22;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(184, 137, 50, .62);
  color: var(--ink);
  background:
    linear-gradient(135deg, var(--honey), var(--brass));
  box-shadow: 0 18px 44px rgba(0, 0, 0, .34);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 22px 54px rgba(184, 137, 50, .24), 0 18px 44px rgba(0, 0, 0, .38);
  transform: translateY(-2px);
}

.apothecary-empty {
  margin: 34px 0 0;
  padding: 24px;
  border: 1px solid rgba(201, 185, 157, .16);
  color: var(--linen);
  background: rgba(201, 185, 157, .055);
}

.image-credit {
  max-width: 880px;
  margin: 28px 0 0;
  color: rgba(201, 185, 157, .64);
  font-size: 12px;
  line-height: 1.65;
}

.image-credit a {
  color: var(--brass);
  border-bottom: 1px solid rgba(184, 137, 50, .32);
}

.image-credit a:hover {
  color: var(--honey);
}

/* ==========================================================================
   Responsive layout
   ========================================================================== */

@media (max-width: 1100px) {
  .site-nav {
    gap: 18px;
  }

  .brand {
    min-width: auto;
  }

  .nav-links {
    gap: 10px 18px;
  }

  .section {
    padding-inline: clamp(18px, 4vw, 44px);
  }

  .shop-product-detail {
    grid-template-columns: minmax(240px, .82fr) minmax(0, 1fr);
  }

  .shop-product-media img {
    min-height: clamp(380px, 48vw, 560px);
  }
}

@media (max-width: 860px) {
  .site-nav {
    position: absolute;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 8px 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .nav-links {
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: nowrap;
    font-size: 10px;
    letter-spacing: .06em;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-content {
    padding: 104px 18px 52px;
  }

  .product-hero,
  .herbal-hero,
  .apothecary-hero,
  .founder-page .hero {
    min-height: 78svh;
  }

  .apothecary-hero {
    min-height: 82svh;
  }

  .two-col,
  .two-col.reverse,
  .value-row,
  .product-grid,
  .home-product-grid,
  .ritual-card-grid,
  .shop-product-detail,
  .product-facts,
  .product-image-strip,
  .section-heading,
  .contact-layout,
  .testimonial-grid,
  .apothecary-toolbar,
  .herb-entry,
  .herb-facts,
  .founder-page .hero-content,
  .founder-page .hero,
  .founder-page .quote-panel,
  .logo-story-grid {
    grid-template-columns: 1fr;
  }

  .founder-page .hero-content {
    margin-left: 0;
    align-self: end;
    padding-bottom: 52px;
  }

  .logo-story-header {
    position: static;
    max-width: none;
  }

  .logo-story-mark {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }

  .logo-story-mark-wrap {
    width: min(620px, 100%);
    padding: 0;
  }

  .hero-trust span + span::before {
    display: none;
  }

  .section-heading {
    align-items: start;
  }

  .testimonial-grid {
    gap: 1px;
  }

  .filter-group {
    justify-content: flex-start;
  }

  .herb-entry-image {
    height: clamp(200px, 54vw, 320px);
  }

  .shop-product-media img {
    min-height: clamp(320px, 62vw, 460px);
  }

  .product-facts section,
  .ritual-card {
    padding: clamp(20px, 4vw, 30px);
  }

  .portrait,
  .feature-img {
    min-height: clamp(300px, 54vw, 380px);
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .gallery img:nth-child(2),
  .gallery img:nth-child(5) {
    grid-row: span 1;
  }

  .signup {
    padding: 18px;
  }

  .signup-row,
  .signup-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 78px;
  }

  .about-page .hero {
    background: #15120e;
  }

  .about-page .hero > img {
    filter: brightness(1.1) contrast(1.02) saturate(.98);
    width: 165%;
    max-width: none;
    left: -32.5%;
    object-fit: cover;
    object-position: center 16%;
  }

  .about-page .hero::before,
  .about-page .hero::after {
    background: transparent;
  }

  body::before,
  body::after {
    opacity: 0;
  }

  .site-nav {
    padding: 8px 12px;
  }

  .nav-links {
    width: auto;
    justify-content: flex-end;
    gap: 8px;
  }

  .nav-links a {
    padding: 6px 0;
  }

  .hero,
  .product-hero,
  .herbal-hero,
  .apothecary-hero {
    min-height: auto;
  }

  .hero-content {
    width: 100%;
    padding: 132px 16px 46px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 58px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(30px, 9vw, 44px);
  }

  h3 {
    font-size: clamp(21px, 7vw, 30px);
  }

  .lead,
  .copy p,
  .section-heading p {
    font-size: 16px;
  }

  .section {
    padding: clamp(54px, 14vw, 76px) 16px;
  }

  .section-heading {
    gap: 16px;
    margin-bottom: 24px;
  }

  .actions,
  .signup-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn,
  .signup input,
  .signup select,
  .search-field input {
    width: 100%;
    min-height: 50px;
    font-size: 16px;
  }

  .btn {
    padding-inline: 16px;
  }

  .signup .btn {
    width: 100%;
  }

  .product,
  .home-product-grid .product,
  .value,
  .signup,
  .shop-product-detail,
  .product-facts section,
  .ritual-card {
    border-radius: 0;
  }

  .product img {
    aspect-ratio: 4 / 3;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: clamp(220px, 68vw, 340px);
  }

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

  .apothecary-preview a {
    min-height: 74px;
    padding: 14px;
    font-size: 1rem;
  }

  .shop-product-detail {
    margin-top: 28px;
    padding: 16px;
    gap: 22px;
  }

  .product-image-strip {
    gap: 8px;
  }

  .carousel-control {
    width: 44px;
    height: 44px;
  }

  .herb-entry-content {
    padding: 22px;
  }

  .herb-entry h2 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .herb-facts section {
    min-height: 0;
  }

  .footer {
    padding-inline: 16px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(36px, 12vw, 44px);
  }

  .actions .btn {
    width: 100%;
  }

  .site-nav {
    align-items: center;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .nav-links {
    justify-content: flex-end;
    max-width: calc(100vw - 70px);
    text-align: right;
    font-size: 9px;
    gap: 7px;
  }

  .hero-trust {
    gap: 8px;
    font-size: 11px;
  }

  .hero-trust span {
    width: 100%;
  }

  .filter-btn {
    flex: 1 1 auto;
  }

  .herb-pager {
    flex-direction: column;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    min-height: 42px;
    padding: 10px 14px;
    font-size: 11px;
  }

  .founder-page .hero-content {
    border-left-width: 3px;
  }

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

@media (max-width: 380px) {
  .hero-content {
    padding-top: 124px;
  }

  .nav-links {
    font-size: 10px;
    letter-spacing: .045em;
    gap: 2px 10px;
  }

  .eyebrow,
  .preview-heading,
  .product-kicker,
  .footer-links,
  .filter-btn,
  .herb-pager a,
  .product-facts h3 {
    letter-spacing: .1em;
  }

  .apothecary-preview {
    grid-template-columns: 1fr;
  }

  .shop-product-detail,
  .signup,
  .product-facts section,
  .herb-entry-content {
    padding: 16px;
  }
}

@keyframes heroSettle {
  from {
    opacity: 0;
    transform: scale(1.04);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes contentLift {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineGrow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes apothecaryLight {
  from {
    transform: translate3d(-2%, -1%, 0) rotate(0deg);
    opacity: .72;
  }

  to {
    transform: translate3d(2%, 1%, 0) rotate(2deg);
    opacity: 1;
  }
}

/* ==========================================================================
   Motion effects
   ========================================================================== */

.motion-ready .hero > img {
  animation: heroSettle 1600ms ease-out both;
}

.motion-ready .hero-content {
  animation: contentLift 1000ms 220ms ease-out both;
}

.motion-ready .brand img {
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.motion-ready .brand:hover img {
  transform: rotate(-4deg) scale(1.08);
  border-color: var(--honey);
  box-shadow: 0 16px 42px rgba(184, 137, 50, .28);
}

.motion-ready :is(
  .btn,
  .product,
  .ritual-card,
  .shop-product-detail,
  .product-facts section,
  .herb-entry,
  .testimonial-grid blockquote
) {
  transition: transform 360ms ease, border-color 360ms ease, box-shadow 360ms ease, background-color 360ms ease;
}

.motion-ready .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.motion-ready :is(
  .product,
  .ritual-card,
  .shop-product-detail,
  .product-facts section,
  .herb-entry,
  .testimonial-grid blockquote
):hover {
  transform: translateY(-4px);
  border-color: rgba(184, 137, 50, .58);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.motion-ready .image-clean {
  transition: filter 420ms ease, transform 900ms ease;
}

.motion-ready :is(
  .product:hover img,
  .gallery img:hover
) {
  transform: scale(1.025);
  filter: contrast(1.18) saturate(1.16) brightness(1.03);
}

.motion-ready .eyebrow {
  position: relative;
  display: inline-block;
}

.motion-ready .eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--honey);
  transform-origin: left center;
  animation: lineGrow 700ms 450ms ease-out both;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 900ms ease, transform 900ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.motion-ready .scripture-card,
.motion-ready .line-verse {
  position: relative;
  overflow: hidden;
}

.motion-ready .scripture-card::before,
.motion-ready .line-verse::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--honey);
  transform-origin: top center;
  transform: scaleY(0);
  transition: transform 900ms ease;
}

.motion-ready .scripture-card.is-visible::before,
.motion-ready .line-verse.is-visible::before {
  transform: scaleY(1);
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready *,
  .motion-ready *::before,
  .motion-ready *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* ==========================================================================
   Homepage shared page styles
   ========================================================================== */

.home-page .hero > img {
  filter: brightness(var(--home-hero-brightness, 1.04)) contrast(.97) saturate(.94);
  object-position: center center;
  transition: filter 140ms linear;
}

.home-page .hero {
  --home-hero-brightness: 1.04;
  --home-hero-top-fade: .002;
  --home-hero-fade-mid: .06;
  --home-hero-fade-end: .62;
  margin-bottom: -1px;
  background: #0b0b08;
}

.home-page .hero::before {
  background: linear-gradient(90deg, rgba(255, 250, 240, var(--home-hero-top-fade)), rgba(255, 250, 240, .004) 55%, rgba(255, 250, 240, 0));
}

.home-page .hero::after {
  height: 34%;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0) 0%, rgba(255, 250, 240, .008) 22%, rgba(8, 8, 6, var(--home-hero-fade-mid)) 66%, rgba(8, 8, 6, var(--home-hero-fade-end)) 100%);
}

.founder-home-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .74fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
  width: min(1040px, 100%);
  margin: clamp(28px, 5vw, 48px) auto 0;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(201, 185, 157, .16);
  background:
    radial-gradient(circle at 12% 16%, rgba(184, 137, 50, .12), transparent 28%),
    linear-gradient(135deg, rgba(15, 15, 12, .86), rgba(33, 22, 15, .82));
}

.founder-home-card .copy {
  border-left: 1px solid rgba(184, 137, 50, .42);
  padding-left: clamp(20px, 4vw, 44px);
  text-align: left;
}

.founder-home-card .copy p {
  color: rgba(255, 250, 240, .82);
}

.founder-home-card .text-link {
  margin-top: 18px;
}

.founder-home-image {
  min-height: clamp(340px, 38vw, 540px);
  object-position: center center;
}

.home-intro {
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(11, 11, 8, .99), rgba(11, 11, 8, .99)),
    #0b0b08;
}

.home-intro-copy {
  display: grid;
  justify-items: center;
  gap: 16px;
  max-width: 1120px;
  text-align: center;
}

.home-intro-copy h1 {
  max-width: 1040px;
}

.home-intro-copy .lead,
.home-intro-copy .quote,
.home-intro-copy .text-link {
  max-width: 860px;
}

.home-intro-copy .quote {
  color: rgba(255, 250, 240, .9);
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.18;
}

.home-intro-actions {
  margin-top: 2px;
  justify-content: center;
}

.home-proof-panel {
  display: grid;
  grid-template-columns: minmax(280px, .86fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  width: min(1040px, 100%);
  margin: clamp(28px, 5vw, 52px) auto 0;
  padding: clamp(16px, 3vw, 30px) 0 0;
  border-top: 1px solid rgba(184, 137, 50, .24);
}

.home-intro-image {
  --home-intro-image-brightness: .68;
  width: 100%;
  margin: 0;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center center;
  filter: brightness(var(--home-intro-image-brightness)) contrast(1.04) saturate(.96);
  border: 1px solid rgba(201, 185, 157, .14);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .38);
  transition: filter 140ms linear;
}

.home-proof-copy {
  display: grid;
  gap: 18px;
  text-align: left;
}

.home-proof-copy .eyebrow {
  margin-bottom: 0;
}

.home-value-row {
  grid-template-columns: 1fr;
  gap: 1px;
  width: 100%;
  margin-top: 0;
  border: 1px solid rgba(201, 185, 157, .12);
  background: rgba(201, 185, 157, .12);
}

.home-value-row .value {
  padding: clamp(18px, 3vw, 24px);
  border: 0;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(184, 137, 50, .08), transparent 44%),
    rgba(255, 250, 240, .045);
}

.home-proof-copy .text-link {
  margin-top: 2px;
}

.product-preview-section {
  position: relative;
  overflow: hidden;
}

.product-preview-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 8%, rgba(184, 137, 50, .12), transparent 26%),
    radial-gradient(circle at 88% 72%, rgba(75, 74, 37, .18), transparent 32%);
}

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

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
}

.home-product-grid .product {
  display: flex;
  flex-direction: column;
}

.home-product-grid .product img {
  aspect-ratio: 5 / 6;
}

.home-product-grid .text-link {
  margin-top: auto;
  padding-top: 24px;
}

.testimonial-section {
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(8, 8, 6, .98), rgba(15, 15, 12, .98)),
    var(--charcoal);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  background: rgba(201, 185, 157, .16);
}

.testimonial-grid blockquote {
  margin: 0;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(201, 185, 157, .06), transparent 44%),
    var(--soft-black);
}

.testimonial-grid p {
  margin: 0;
  color: var(--linen);
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.22;
}

.testimonial-grid cite {
  display: block;
  margin-top: 22px;
  color: var(--honey);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .home-page .hero {
    --home-hero-brightness: 1.65;
    --home-hero-top-fade: 0;
    --home-hero-fade-mid: 0;
    --home-hero-fade-end: 0;
    min-height: clamp(240px, 38svh, 340px);
    background: #fffaf0;
  }

  .home-page .hero > img {
    height: calc(100% + 12px);
    object-position: center center;
    transform: translateY(18px);
  }

  .motion-ready .home-page .hero > img {
    animation: none;
  }

  .home-page .hero::before,
  .home-page .hero::after {
    background: transparent;
  }

  .home-product-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .home-product-grid {
    gap: 1px;
    border: 1px solid rgba(201, 185, 157, .12);
    background: rgba(201, 185, 157, .12);
  }

  .testimonial-grid {
    gap: 1px;
  }

  .home-product-grid .product,
  .testimonial-grid blockquote {
    width: 100%;
  }

  .home-product-grid .product img {
    aspect-ratio: 1 / 1;
  }

  .home-intro-image {
    width: 100%;
    max-width: 520px;
  }

  .home-proof-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 22px;
  }

  .home-proof-copy {
    text-align: center;
    justify-items: center;
  }

  .home-intro-copy {
    gap: 14px;
  }

  .home-intro-copy h1 {
    font-size: clamp(34px, 11vw, 56px);
  }

  .home-intro-copy .lead {
    font-size: 16px;
  }

  .home-intro-copy .quote {
    font-size: clamp(18px, 4.8vw, 24px);
  }

  .founder-home-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .founder-home-card .copy {
    padding-left: 18px;
  }

  .founder-home-image {
    min-height: 360px;
  }
}
