:root {
  --ink: #1f3119;
  --ink-soft: #53604a;
  --olive: #52652d;
  --olive-deep: #31401d;
  --olive-pale: #e4e5c5;
  --cream: #f7f2e8;
  --paper: #f5efe3;
  --gold: #a67a37;
  --line: rgba(63, 75, 45, 0.24);
  --white: #fffdf7;
  --shadow: 0 18px 55px rgba(46, 55, 35, 0.11);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background-color: var(--paper);
  background-image: url("assets/paper-texture.png");
  background-repeat: repeat;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  inset: 14px;
  z-index: 999;
  pointer-events: none;
  border: 1px solid rgba(70, 83, 47, 0.5);
  border-radius: 52px;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: -100px;
  left: 24px;
  z-index: 2000;
  padding: 0.75rem 1rem;
  border-radius: 0 0 10px 10px;
  color: white;
  background: var(--olive-deep);
}

.skip-link:focus {
  top: 0;
}

.site-shell {
  position: relative;
  min-height: 100vh;
}

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

.container.narrow {
  width: min(100% - 48px, 980px);
}

.section {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.section-sm {
  padding: clamp(2.8rem, 5vw, 4.5rem) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.8rem;
  color: var(--olive);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "❧";
  color: var(--gold);
  font-size: 1rem;
}

.display-title,
.section-title,
.page-title,
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-title {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.025em;
}

.section-heading p {
  max-width: 620px;
  margin: 1rem auto 0;
  color: var(--ink-soft);
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.35rem;
  border: 1px solid var(--olive);
  border-radius: 6px;
  cursor: pointer;
  color: var(--white);
  background: var(--olive);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease,
    box-shadow 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  background: var(--olive-deep);
  box-shadow: 0 10px 25px rgba(49, 64, 29, 0.18);
}

.btn-outline {
  color: var(--olive-deep);
  background: transparent;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  color: white;
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--olive-deep);
  background: rgba(255, 255, 255, 0.88);
}

.btn-light:hover,
.btn-light:focus-visible {
  color: white;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--olive-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

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

/* Header */

.site-header {
  position: relative;
  z-index: 100;
  padding: 1rem 0 0.35rem;
}

.header-inner {
  display: grid;
  width: min(100% - 64px, 1480px);
  min-height: 74px;
  margin-inline: auto;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.header-brand {
  display: inline-flex;
  width: 185px;
  align-items: center;
}

.header-brand img {
  width: 100%;
  mix-blend-mode: multiply;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 2.6vw, 2.9rem);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 0;
  color: #24301f;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-transform: uppercase;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--olive);
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > .nav-link::after {
  right: 1rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 0.2rem);
  left: 50%;
  display: grid;
  width: 210px;
  padding: 0.75rem;
  visibility: hidden;
  transform: translate(-50%, 8px);
  border: 1px solid var(--line);
  border-radius: 12px;
  opacity: 0;
  background: rgba(250, 247, 238, 0.98);
  box-shadow: var(--shadow);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  visibility: visible;
  transform: translate(-50%, 0);
  opacity: 1;
}

.dropdown-menu a {
  padding: 0.62rem 0.7rem;
  border-radius: 7px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.dropdown-menu a:hover {
  color: var(--ink);
  background: rgba(82, 101, 45, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.icon-button {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
  transition: background 180ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  outline: none;
  background: rgba(82, 101, 45, 0.09);
}

.icon-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cart-count {
  position: absolute;
  top: 1px;
  right: 0;
  display: grid;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--olive);
  font-size: 0.62rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

.mobile-account-link {
  display: none;
}

/* Home hero */

.home-main {
  padding-bottom: 1.8rem;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 415px;
  place-items: center;
  padding: 0.25rem 2rem 1.6rem;
}

.hero-botanical {
  position: absolute;
  top: 1rem;
  z-index: 0;
  width: min(26vw, 430px);
  height: min(405px, 38vw);
  object-fit: contain;
  mix-blend-mode: multiply;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 9%, #000 91%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 9%, #000 91%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0, #000 9%, #000 91%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 9%, #000 91%, transparent 100%);
  mask-composite: intersect;
  pointer-events: none;
}

.hero-botanical.left {
  left: clamp(1.25rem, 3vw, 4rem);
}

.hero-botanical.right {
  right: clamp(1.25rem, 3vw, 4rem);
}

.hero-center {
  position: relative;
  z-index: 2;
  width: min(100%, 690px);
  text-align: center;
}

.hero-logo {
  width: min(360px, 62vw);
  margin: 0 auto -0.2rem;
  mix-blend-mode: multiply;
}

.coming-title {
  margin: 0.15rem 0 0.55rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.3vw, 4.3rem);
  font-weight: 400;
  letter-spacing: clamp(0.22em, 1.3vw, 0.34em);
  line-height: 1;
  text-indent: 0.28em;
}

.title-divider {
  display: grid;
  width: min(100%, 550px);
  margin: 0.8rem auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.title-divider::before,
.title-divider::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.title-divider span {
  color: var(--olive);
  font-size: 1.25rem;
}

.hero-subtitle {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 460px;
  margin: 0.5rem auto 0.8rem;
  font-size: 0.86rem;
  line-height: 1.45;
}

.signup-form {
  display: flex;
  width: min(100%, 500px);
  margin: 0.7rem auto 0;
}

.signup-form input {
  min-width: 0;
  flex: 1;
  min-height: 44px;
  padding: 0 1rem;
  border: 1px solid rgba(61, 71, 48, 0.28);
  border-radius: 7px 0 0 7px;
  outline: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.54);
}

.signup-form input:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(82, 101, 45, 0.1);
}

.signup-form .btn {
  min-height: 44px;
  border-radius: 0 7px 7px 0;
}

.first-to-know {
  margin: 0.65rem 0 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.products-preview {
  padding: 0.5rem 0 1.2rem;
}

.products-preview-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 0 0 1.1rem;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
}

.products-preview-title span {
  color: var(--olive);
  font-size: 1.3rem;
}

.home-product-grid {
  display: grid;
  width: min(100% - 64px, 1420px);
  margin-inline: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.5vw, 1.45rem);
}

.preview-product {
  --product-surface: #ebedd5;
  position: relative;
  display: grid;
  min-height: 270px;
  overflow: hidden;
  grid-template-columns: min(58%, 190px) 1fr;
  border: 1px solid rgba(78, 82, 54, 0.18);
  border-radius: 11px;
  background: var(--product-surface);
  box-shadow: 0 8px 24px rgba(60, 55, 37, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.preview-product.product-tropical-glow {
  --product-surface: #fbe7b1;
}

.preview-product.product-beet-radiance {
  --product-surface: #f2d3cf;
}

.preview-product.product-nutty-bliss {
  --product-surface: #ebdcc3;
}

.preview-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(60, 55, 37, 0.12);
}

.product-art {
  position: relative;
  display: block;
  overflow: hidden;
}

.product-art img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.preview-product-art {
  min-width: 0;
}

.preview-product-art img {
  top: 50%;
  bottom: auto;
  height: 88%;
  transform: translateY(-50%);
}

.preview-product-art::after,
.shop-card-media::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 14%;
  pointer-events: none;
  background: linear-gradient(to right, transparent, var(--product-surface, #f7f2e8));
}

.shop-card-media::after {
  width: 18%;
  background: linear-gradient(to right, transparent, rgba(247, 242, 232, 0.96));
}

.preview-product-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  padding: 1rem 0.85rem 0.85rem 0.25rem;
  flex-direction: column;
  justify-content: center;
  background: var(--product-surface);
}

.preview-product-mark {
  display: grid;
  width: 34px;
  height: 34px;
  margin: 0 0 0.35rem auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--olive);
  font-family: var(--serif);
  font-size: 1rem;
}

.preview-product-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(0.88rem, 1.15vw, 1.08rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.preview-product-copy p {
  margin: 0.35rem 0 0.55rem;
  color: #3f473a;
  font-size: clamp(0.7rem, 0.72vw, 0.78rem);
  line-height: 1.4;
}

.preview-product-copy ul {
  display: grid;
  padding: 0;
  margin: 0 0 0.7rem;
  gap: 0.23rem;
  list-style: none;
}

.preview-product-copy li {
  display: grid;
  grid-template-columns: 0.7rem 1fr;
  color: #3f473a;
  font-size: clamp(0.67rem, 0.68vw, 0.74rem);
  line-height: 1.25;
}

.preview-product-copy li::before {
  content: "✓";
  color: var(--olive);
  font-weight: 700;
}

.preview-product-cta {
  display: inline-flex;
  min-height: 32px;
  padding: 0.4rem 0.55rem;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: white;
  background: var(--olive);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-tropical-glow .preview-product-mark,
.product-tropical-glow .preview-product-copy li::before {
  color: #c57812;
}

.product-tropical-glow .preview-product-cta {
  background: #c57812;
}

.product-beet-radiance .preview-product-mark,
.product-beet-radiance .preview-product-copy li::before {
  color: #8b2635;
}

.product-beet-radiance .preview-product-cta {
  background: #8b2635;
}

.product-nutty-bliss .preview-product-mark,
.product-nutty-bliss .preview-product-copy li::before {
  color: #9a7041;
}

.product-nutty-bliss .preview-product-cta {
  background: #9a7041;
}

.preview-product::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 180ms ease;
}

.preview-product:focus-visible {
  outline: none;
}

.preview-product:focus-visible::after {
  border-color: var(--olive);
}

.benefit-strip {
  display: grid;
  width: min(100% - 64px, 1160px);
  margin: 1rem auto 0;
  padding: 0.9rem 0;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit-item {
  display: grid;
  padding: 0.2rem 1.4rem;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 0.8rem;
  border-right: 1px solid var(--line);
}

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

.benefit-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--olive);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.benefit-item strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.benefit-item small {
  display: block;
  margin-top: 0.1rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.35;
}

/* Inner pages */

.inner-hero {
  position: relative;
  display: grid;
  min-height: 330px;
  overflow: hidden;
  place-items: center;
  padding: 3.5rem 2rem 4rem;
  text-align: center;
}

.inner-hero::before,
.inner-hero::after {
  content: "";
  position: absolute;
  top: 50%;
  width: min(260px, 24vw);
  aspect-ratio: 1.06;
  transform: translateY(-50%);
  opacity: 0.55;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  mix-blend-mode: multiply;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 10%, #000 90%, transparent 100%);
  mask-composite: intersect;
}

.inner-hero::before {
  left: 3vw;
  background-image: url("assets/botanical-left-transparent.png");
}

.inner-hero::after {
  right: 3vw;
  background-image: url("assets/botanical-right-transparent.png");
}

.inner-hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
}

.page-title {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: 0.04em;
}

.inner-hero p {
  max-width: 590px;
  margin: 1.1rem auto 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.paper-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.5);
  box-shadow: var(--shadow);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.story-art {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 190px 190px 24px 24px;
  background: linear-gradient(160deg, rgba(214, 221, 185, 0.65), rgba(249, 241, 224, 0.6));
}

.story-art img {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 108%;
  max-width: none;
  transform: translateX(-50%);
  mix-blend-mode: multiply;
}

.story-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
  line-height: 1.04;
}

.story-copy p {
  color: var(--ink-soft);
}

.signature {
  margin-top: 1.5rem;
  color: var(--olive);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.value-card {
  min-height: 245px;
  padding: 2rem;
}

.value-number {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
}

.value-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.6rem;
}

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

/* Shop */

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.shop-toolbar p {
  margin: 0;
  color: var(--ink-soft);
}

.select-wrap select {
  min-height: 44px;
  padding: 0 2.5rem 0 0.9rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.shop-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(240px, 0.9fr) 1fr;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.55);
  box-shadow: 0 10px 35px rgba(46, 55, 35, 0.08);
}

.shop-card-media {
  min-height: 300px;
  background: rgba(255, 255, 255, 0.26);
}

.shop-card-media img {
  left: -2%;
}

.shop-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.6rem;
}

.product-kicker {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shop-card h2 {
  margin: 0.25rem 0 0.4rem;
  font-size: 1.8rem;
}

.shop-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.product-price {
  display: block;
  margin: 1rem 0;
  color: var(--olive-deep);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Product detail */

.product-detail {
  display: grid;
  padding: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(300px, 0.95fr) 1.05fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.product-detail-media {
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.25);
}

.product-detail-media img {
  left: -4%;
}

.product-detail h1 {
  margin: 0.35rem 0 0.55rem;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
}

.product-detail .lead {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.clean-list {
  display: grid;
  padding: 0;
  margin: 1.4rem 0;
  gap: 0.6rem;
  list-style: none;
}

.clean-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.clean-list li::before {
  content: "✓";
  color: var(--olive);
  font-weight: 700;
}

.purchase-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.quantity-control {
  display: inline-grid;
  min-width: 116px;
  height: 46px;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.5);
}

.quantity-control button {
  height: 100%;
  border: 0;
  cursor: pointer;
  background: transparent;
  font-size: 1.15rem;
}

.quantity-control span,
.quantity-control input {
  width: 100%;
  border: 0;
  outline: 0;
  text-align: center;
  background: transparent;
}

/* Ingredients */

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.ingredient-card {
  min-height: 290px;
  padding: 2rem;
  text-align: center;
}

.ingredient-mark {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 0 auto 1.5rem;
  place-items: center;
  border: 1px solid var(--olive);
  border-radius: 50%;
  color: var(--olive);
  background: rgba(82, 101, 45, 0.05);
  font-family: var(--serif);
  font-size: 1.8rem;
}

.ingredient-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

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

.standards-band {
  display: grid;
  padding: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 3rem;
  color: white;
  background: var(--olive-deep);
  border-radius: 24px;
}

.standards-band h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
}

.standards-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.standards-list span {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 9px;
  font-size: 0.82rem;
}

/* Benefits */

.benefits-list {
  display: grid;
  gap: 1rem;
}

.benefit-row {
  display: grid;
  min-height: 190px;
  padding: 2rem;
  grid-template-columns: 100px 0.7fr 1.3fr;
  align-items: center;
  gap: 2rem;
}

.benefit-row:nth-child(even) {
  background: rgba(229, 224, 194, 0.46);
}

.benefit-row .benefit-icon {
  width: 82px;
  height: 82px;
  font-size: 2rem;
}

.benefit-row h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.benefit-row p {
  margin: 0;
  color: var(--ink-soft);
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 253, 247, 0.5);
}

.faq-item summary {
  position: relative;
  padding: 1.3rem 3.5rem 1.3rem 1.4rem;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.2rem;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.3rem;
  transform: translateY(-50%);
  color: var(--olive);
  font-family: var(--sans);
  font-size: 1.3rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.4rem 1.4rem;
  color: var(--ink-soft);
}

.faq-answer p {
  margin: 0;
}

/* Contact and forms */

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 2rem;
}

.contact-panel,
.form-card {
  padding: clamp(1.7rem, 4vw, 3rem);
}

.contact-panel {
  color: white;
  background: var(--olive-deep);
}

.contact-panel h2,
.form-card h2 {
  margin: 0 0 0.7rem;
  font-size: 2.2rem;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-details {
  display: grid;
  margin-top: 2rem;
  gap: 1rem;
}

.contact-details a,
.contact-details span {
  display: block;
  color: white;
  font-size: 0.92rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(82, 101, 45, 0.1);
}

.form-status {
  min-height: 1.5rem;
  margin: 0.8rem 0 0;
  color: var(--olive);
  font-size: 0.85rem;
}

/* Cart */

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1090;
  visibility: hidden;
  opacity: 0;
  background: rgba(26, 35, 22, 0.38);
  backdrop-filter: blur(2px);
  transition: opacity 180ms ease, visibility 180ms ease;
}

.drawer-backdrop.open {
  visibility: visible;
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  display: grid;
  width: min(92vw, 440px);
  grid-template-rows: auto 1fr auto;
  transform: translateX(100%);
  background-color: var(--paper);
  background-image: url("assets/paper-texture.png");
  box-shadow: -20px 0 50px rgba(30, 37, 24, 0.16);
  transition: transform 220ms ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.5rem;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2 {
  margin: 0;
  font-size: 1.7rem;
}

.drawer-body {
  overflow-y: auto;
  padding: 1.3rem 1.5rem;
}

.drawer-footer {
  padding: 1.3rem 1.5rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.55);
}

.drawer-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-weight: 700;
}

.drawer-footer .btn {
  width: 100%;
}

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

.cart-line img {
  height: 128%;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.cart-line-art {
  width: 88px;
  height: 88px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.4);
}

.cart-line h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
}

.cart-line p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.line-qty {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.55rem;
}

.line-qty button {
  display: grid;
  width: 26px;
  height: 26px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.5);
}

.remove-line {
  align-self: start;
  padding: 0;
  border: 0;
  cursor: pointer;
  color: var(--ink-soft);
  background: transparent;
  font-size: 1.1rem;
}

.empty-cart {
  display: grid;
  min-height: 280px;
  place-items: center;
  text-align: center;
}

.empty-cart div {
  max-width: 260px;
}

.empty-cart span {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--olive);
  font-family: var(--serif);
  font-size: 3rem;
}

.cart-page-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: start;
  gap: 2rem;
}

.cart-page-lines {
  padding: 1.5rem;
}

.cart-page-lines .cart-line {
  grid-template-columns: 120px 1fr auto;
}

.cart-page-lines .cart-line-art {
  width: 120px;
  height: 120px;
}

.cart-summary {
  position: sticky;
  top: 1.5rem;
  padding: 1.6rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}

.summary-row.total {
  padding-top: 1rem;
  border: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.cart-summary .btn {
  width: 100%;
  margin-top: 0.8rem;
}

.checkout-note {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
  text-align: center;
}

/* Search and toast */

.search-dialog {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  visibility: hidden;
  padding: 1.5rem;
  place-items: start center;
  opacity: 0;
  background: rgba(31, 42, 26, 0.52);
  backdrop-filter: blur(5px);
  transition: opacity 180ms ease, visibility 180ms ease;
}

.search-dialog.open {
  visibility: visible;
  opacity: 1;
}

.search-panel {
  width: min(100%, 720px);
  max-height: calc(100vh - 3rem);
  overflow: auto;
  padding: 1.3rem;
  margin-top: 7vh;
  border: 1px solid var(--line);
  border-radius: 16px;
  background-color: var(--paper);
  background-image: url("assets/paper-texture.png");
  box-shadow: var(--shadow);
}

.search-input-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-input-row input {
  min-width: 0;
  min-height: 52px;
  flex: 1;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  background: rgba(255, 255, 255, 0.62);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.search-results {
  display: grid;
  margin-top: 1rem;
  gap: 0.5rem;
}

.search-result {
  display: grid;
  padding: 0.8rem;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 0.9rem;
  border-radius: 9px;
}

.search-result:hover {
  background: rgba(82, 101, 45, 0.08);
}

.search-result img {
  height: 128%;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.search-result-art {
  width: 64px;
  height: 64px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.4);
}

.search-result strong {
  display: block;
}

.search-result small {
  color: var(--ink-soft);
}

.toast {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1300;
  max-width: min(380px, calc(100vw - 3rem));
  padding: 0.95rem 1.15rem;
  visibility: hidden;
  transform: translateY(12px);
  border-radius: 9px;
  opacity: 0;
  color: white;
  background: var(--olive-deep);
  box-shadow: var(--shadow);
  font-size: 0.88rem;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.toast.show {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

/* Footer */

.site-footer {
  position: relative;
  z-index: 1;
  width: min(100% - 64px, 1420px);
  margin: 1rem auto 0;
  padding: 1.25rem 0 1.8rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 2.4rem;
}

.footer-brand img {
  width: 150px;
  mix-blend-mode: multiply;
}

.footer-brand p {
  max-width: 265px;
  margin: 0.5rem 0 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.footer-column h2 {
  margin: 0 0 0.6rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem 0.9rem;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

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

.footer-newsletter p {
  margin: 0 0 0.6rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.footer-newsletter .signup-form {
  margin: 0;
}

.footer-newsletter .signup-form input {
  min-height: 39px;
  font-size: 0.72rem;
}

.footer-newsletter .signup-form .btn {
  min-width: 46px;
  min-height: 39px;
  padding: 0.5rem;
  font-size: 1rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.legal-links {
  display: flex;
  gap: 1.4rem;
}

/* Responsive */

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 170px 1fr auto;
    gap: 0.8rem;
  }

  .header-brand {
    width: 155px;
  }

  .primary-nav {
    gap: 1.3rem;
  }

  .home-product-grid {
    width: min(100% - 48px, 860px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .benefit-item:nth-child(-n + 2) {
    padding-bottom: 0.8rem;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid var(--line);
  }

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

  .shop-card {
    grid-template-columns: minmax(260px, 0.7fr) 1fr;
  }
}

@media (max-width: 980px) {
  body::after {
    inset: 8px;
    border-radius: 30px;
  }

  .header-inner {
    position: relative;
    width: min(100% - 36px, 900px);
    grid-template-columns: 1fr auto auto;
  }

  .header-brand {
    width: 165px;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 0;
    left: 0;
    display: grid;
    padding: 0.9rem;
    visibility: hidden;
    transform: translateY(-8px);
    border: 1px solid var(--line);
    border-radius: 14px;
    opacity: 0;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    overscroll-behavior: contain;
    background-color: var(--paper);
    background-image: url("assets/paper-texture.png");
    box-shadow: var(--shadow);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .primary-nav.open {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
  }

  .nav-link {
    display: flex;
    width: 100%;
    min-height: 44px;
    justify-content: space-between;
    padding: 0.75rem;
    border-radius: 8px;
  }

  .nav-link:hover {
    background: rgba(82, 101, 45, 0.07);
  }

  .nav-link::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    padding: 0 0 0.4rem 1rem;
    visibility: visible;
    transform: none;
    border: 0;
    opacity: 1;
    background: transparent;
    box-shadow: none;
  }

  .dropdown-menu a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 0.45rem 0.7rem;
  }

  .hero-botanical {
    top: 4rem;
    width: min(36vw, 320px);
    height: auto;
    opacity: 0.3;
  }

  .hero-botanical.left {
    left: 0.5rem;
  }

  .hero-botanical.right {
    right: 0.5rem;
  }

  .story-grid,
  .product-detail,
  .contact-grid,
  .standards-band {
    grid-template-columns: 1fr;
  }

  .story-art {
    min-height: 430px;
  }

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

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

  .cart-page-grid {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }
}

@media (max-width: 720px) {
  .container,
  .container.narrow {
    width: min(100% - 32px, 640px);
  }

  .section {
    padding: 3.8rem 0;
  }

  .header-inner {
    width: calc(100% - 28px);
    min-height: 62px;
    grid-template-columns: 1fr auto auto;
  }

  .header-brand {
    width: 145px;
  }

  .header-actions {
    gap: 0.1rem;
  }

  .header-actions .account-link {
    display: none;
  }

  .mobile-account-link {
    display: flex;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .home-hero {
    min-height: auto;
    padding: 1.7rem 1rem 2.5rem;
  }

  .hero-botanical {
    top: 5rem;
    width: 195px;
    opacity: 0.16;
  }

  .hero-botanical.left {
    left: 0;
  }

  .hero-botanical.right {
    right: 0;
  }

  .coming-title {
    font-size: clamp(1.9rem, 10vw, 3.3rem);
    letter-spacing: 0.19em;
  }

  .signup-form {
    display: grid;
    gap: 0.5rem;
  }

  .signup-form input,
  .signup-form .btn {
    border-radius: 7px;
  }

  .products-preview-title {
    width: calc(100% - 32px);
    margin-inline: auto;
    font-size: 1.25rem;
    letter-spacing: 0.12em;
  }

  .home-product-grid {
    width: min(100% - 32px, 520px);
    grid-template-columns: 1fr;
  }

  .preview-product {
    min-height: 290px;
    grid-template-columns: min(52%, 190px) 1fr;
  }

  .preview-product-art img {
    height: 82%;
  }

  .preview-product-copy {
    padding: 1rem 0.9rem 0.9rem 0.2rem;
  }

  .preview-product-copy h2 {
    font-size: 1rem;
  }

  .preview-product-copy p {
    font-size: 0.78rem;
  }

  .preview-product-copy li {
    font-size: 0.72rem;
  }

  .benefit-strip {
    width: min(100% - 32px, 520px);
    grid-template-columns: 1fr;
  }

  .benefit-item,
  .benefit-item:nth-child(2) {
    padding: 0.8rem 0.5rem;
    margin: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .inner-hero {
    min-height: 280px;
    padding: 3rem 1rem;
  }

  .inner-hero::before,
  .inner-hero::after {
    width: 180px;
    opacity: 0.16;
  }

  .inner-hero::before {
    left: 0;
  }

  .inner-hero::after {
    right: 0;
  }

  .page-title {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }

  .values-grid,
  .ingredient-grid,
  .field-grid,
  .standards-list {
    grid-template-columns: 1fr;
  }

  .shop-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-card {
    grid-template-columns: 1fr;
  }

  .shop-card-media {
    width: 62%;
    min-height: 300px;
    margin-inline: auto;
  }

  .product-detail {
    padding: 1.2rem;
  }

  .purchase-row {
    align-items: stretch;
    flex-direction: column;
  }

  .quantity-control {
    width: 126px;
  }

  .benefit-row {
    padding: 1.5rem;
    grid-template-columns: 60px 1fr;
    gap: 1rem;
  }

  .benefit-row .benefit-icon {
    width: 58px;
    height: 58px;
    font-size: 1.4rem;
  }

  .benefit-row p {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .site-footer {
    width: calc(100% - 36px);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
  }

  .cart-page-lines .cart-line {
    grid-template-columns: 84px 1fr auto;
  }

  .cart-page-lines .cart-line-art {
    width: 84px;
    height: 84px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
