:root {
  --ink: #132c2a;
  --ink-deep: #0b2422;
  --forest: #173f3a;
  --forest-soft: #25574f;
  --sage: #b9d1b8;
  --sage-light: #dce9d9;
  --cream: #f4f0e7;
  --paper: #fbfaf6;
  --white: #fff;
  --sun: #e5c97a;
  --muted: #63716d;
  --line: rgba(19, 44, 42, 0.15);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1240px, calc(100vw - 48px));
  --radius: 4px;
  --shadow: 0 28px 70px rgba(13, 42, 38, 0.14);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--sun);
  color: var(--ink-deep);
}

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

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  max-width: 770px;
  font-size: clamp(4rem, 7.5vw, 7.8rem);
  letter-spacing: -0.065em;
}

h2 {
  font-size: clamp(3rem, 5vw, 5.5rem);
  letter-spacing: -0.052em;
}

h3 {
  font-size: 1.65rem;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(88px, 10vw, 152px);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-stuck {
  position: fixed;
  background: rgba(11, 36, 34, 0.96);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  width: 15px;
  height: 1px;
  content: "";
  background: currentColor;
}

.brand-mark::after {
  transform: rotate(90deg);
}

.brand-mark i {
  position: absolute;
  right: -3px;
  bottom: 2px;
  width: 9px;
  height: 13px;
  transform: rotate(42deg);
  background: var(--sage);
  border: 2px solid var(--forest);
  border-radius: 100% 0 100% 0;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.38rem;
  letter-spacing: -0.03em;
}

.brand-name em {
  font-style: italic;
  color: var(--sage);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 38px);
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--sage);
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language {
  position: relative;
}

.language-button {
  display: flex;
  min-width: 138px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 14px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 2px;
  color: currentColor;
  font-size: 0.8rem;
  font-weight: 700;
}

.language-button i {
  width: 7px;
  height: 7px;
  transform: translateY(-2px) rotate(45deg);
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transition: transform 0.2s ease;
}

.language-button[aria-expanded="true"] i {
  transform: translateY(2px) rotate(225deg);
}

.language-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: min(470px, calc(100vw - 32px));
  max-height: 70vh;
  padding: 12px;
  overflow: auto;
  grid-template-columns: repeat(2, 1fr);
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.language-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 11px;
  border-radius: 2px;
  font-size: 0.86rem;
}

.language-menu a:hover,
.language-menu a[aria-current="page"] {
  background: var(--sage-light);
}

.language-menu small {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 930px;
  padding-top: 156px;
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 76px 76px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 670px;
  align-items: center;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  gap: clamp(54px, 7vw, 110px);
}

.hero-copy {
  padding-bottom: 46px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: block;
  width: 30px;
  height: 1px;
  background: currentColor;
}

.eyebrow--dark {
  color: var(--forest-soft);
}

.eyebrow--sage {
  color: var(--sage);
}

.eyebrow--light {
  color: var(--cream);
}

.hero h1 {
  margin-bottom: 30px;
}

.hero-lead {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.72;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button--light {
  background: var(--cream);
  color: var(--ink-deep);
}

.button--light:hover {
  background: var(--white);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.button--ghost:hover {
  border-color: var(--sage);
  background: rgba(255, 255, 255, 0.07);
}

.button--sage {
  background: var(--sage);
  color: var(--ink-deep);
}

.button--sage:hover {
  background: var(--sage-light);
}

.hero-stats {
  display: grid;
  max-width: 630px;
  margin-top: 56px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-stats > div {
  padding: 20px 18px 0 0;
}

.hero-stats > div + div {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-stats dt {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.hero-stats dd {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 500px;
  justify-self: end;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: -38px;
  right: -38px;
  width: 82%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(185, 209, 184, 0.42);
  border-radius: 50%;
}

.hero-visual > img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  object-position: 49% center;
  border-radius: 240px 240px 4px 4px;
  filter: saturate(0.74) contrast(1.03);
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.25);
}

.hero-visual figcaption {
  position: absolute;
  right: -24px;
  bottom: 42px;
  display: flex;
  min-width: 255px;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-visual figcaption strong,
.hero-visual figcaption small {
  display: block;
}

.hero-visual figcaption strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.hero-visual figcaption small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.moon-symbol {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  flex: 0 0 auto;
  background: var(--sage-light);
  border-radius: 50%;
  font-size: 1.3rem;
}

.hero-orbit {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.hero-orbit--one {
  top: 150px;
  left: -230px;
  width: 560px;
  height: 560px;
}

.hero-orbit--two {
  right: -260px;
  bottom: -190px;
  width: 630px;
  height: 630px;
}

.hero-marquee {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -12px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.05);
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 8.6rem);
  font-style: italic;
  letter-spacing: -0.04em;
  line-height: 0.8;
  white-space: nowrap;
}

.hero-marquee i {
  color: rgba(229, 201, 122, 0.16);
  font-size: 0.25em;
}

.section-intro {
  margin-bottom: 64px;
}

.split-intro {
  display: grid;
  align-items: end;
  grid-template-columns: 1.05fr 0.75fr;
  gap: clamp(40px, 8vw, 130px);
}

.split-intro > p,
.products-heading > p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.8;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.support-card {
  min-height: 305px;
  padding: 26px;
  grid-column: span 2;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, transform 0.3s ease;
}

.support-card:hover {
  z-index: 1;
  transform: translateY(-7px);
  background: var(--sage-light);
  box-shadow: 0 20px 50px rgba(24, 63, 58, 0.1);
}

.support-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 52px;
}

.support-card__symbol {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.4rem;
}

.support-card__number {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.support-card h3 {
  min-height: 2.25em;
  margin-bottom: 18px;
}

.support-card p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.featured {
  position: relative;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
}

.featured::after {
  position: absolute;
  top: 0;
  right: -7vw;
  content: "CALM";
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--serif);
  font-size: 20vw;
  font-style: italic;
  line-height: 1;
}

.featured-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(60px, 9vw, 140px);
}

.featured-product {
  position: relative;
  display: grid;
  min-height: 640px;
  place-items: center;
  background: var(--cream);
  overflow: hidden;
}

.featured-product__halo {
  position: absolute;
  width: 76%;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 63, 58, 0.22);
  border-radius: 50%;
}

.featured-product__halo::before,
.featured-product__halo::after {
  position: absolute;
  inset: 10%;
  content: "";
  border: 1px solid rgba(23, 63, 58, 0.12);
  border-radius: 50%;
}

.featured-product__halo::after {
  inset: 21%;
}

.featured-product__label {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 24px;
  color: var(--forest-soft);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.featured-product img {
  position: relative;
  z-index: 2;
  width: min(78%, 430px);
  mix-blend-mode: multiply;
  filter: drop-shadow(0 30px 35px rgba(23, 63, 58, 0.17));
}

.botanical-tags {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.botanical-tags span {
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--forest);
  border: 1px solid rgba(23, 63, 58, 0.16);
  border-radius: 30px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.featured-copy h2 {
  margin-bottom: 12px;
}

.featured-copy h2 em {
  display: block;
  color: var(--sage);
  font-weight: 400;
}

.featured-volume {
  margin-bottom: 30px;
  color: var(--sun);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.featured-lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.85;
}

.detail-stack {
  margin-block: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.detail-stack details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.detail-stack summary {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.detail-stack summary::-webkit-details-marker {
  display: none;
}

.detail-stack summary span {
  color: var(--sage);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.detail-stack details[open] summary span {
  transform: rotate(45deg);
}

.detail-stack details p {
  max-width: 630px;
  padding: 0 40px 22px 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.88rem;
  line-height: 1.75;
}

.products {
  background: var(--cream);
}

.products-heading {
  max-width: 830px;
}

.products-heading h2 {
  margin-bottom: 24px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.filter {
  padding: 9px 16px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 30px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 0.2s ease, border 0.2s ease, color 0.2s ease;
}

.filter:hover,
.filter.is-active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid rgba(19, 44, 42, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(13, 42, 38, 0.1);
}

.product-card[hidden] {
  display: none;
}

.product-card__image-wrap {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid rgba(19, 44, 42, 0.08);
}

.product-card__image-wrap::after {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(23, 63, 58, 0.09);
  border-radius: 50%;
}

.product-card__image-wrap img {
  position: relative;
  z-index: 2;
  width: 72%;
  height: 72%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card__image-wrap img {
  transform: scale(1.04);
}

.product-card__index {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.88rem;
  font-style: italic;
}

.product-card__body {
  display: flex;
  padding: 22px;
  flex: 1;
  flex-direction: column;
}

.product-card__type {
  margin-bottom: 12px;
  color: var(--forest-soft);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 3.35em;
  margin-bottom: 15px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.38;
  letter-spacing: -0.02em;
}

.product-card__original {
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.product-card__original span {
  font-weight: 700;
}

.product-card__note {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.6;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.product-card__footer > span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.045em;
  line-height: 1.3;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.browse {
  position: relative;
  padding-block: 100px;
  overflow: hidden;
  background: var(--forest-soft);
  color: var(--white);
}

.browse::before {
  position: absolute;
  top: -190px;
  left: -110px;
  width: 540px;
  height: 540px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.02), 0 0 0 160px rgba(255, 255, 255, 0.02);
}

.browse-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: end;
  grid-template-columns: 0.8fr 1.1fr;
  gap: clamp(50px, 10vw, 150px);
}

.browse-inner h2 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 4.8vw, 5.4rem);
}

.browse-inner > div > p:last-child {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.68);
}

.browse-links {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.browse-links a {
  display: grid;
  min-height: 88px;
  align-items: center;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: padding 0.2s ease, background 0.2s ease;
}

.browse-links a:hover {
  padding-inline: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.browse-links span {
  color: var(--sage);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
}

.browse-links strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.browse-links i {
  font-style: normal;
  font-size: 1.25rem;
}

.delivery {
  background: var(--paper);
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.delivery-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.delivery-card--wide {
  display: grid;
  min-height: 220px;
  align-items: end;
  grid-column: 1 / -1;
  grid-template-columns: 48px 1fr auto;
  gap: 28px;
  background: var(--sage-light);
}

.delivery-card__count {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
}

.delivery-card:not(.delivery-card--wide) .delivery-card__count {
  display: block;
  margin-bottom: 70px;
}

.delivery-card h3 {
  margin-bottom: 15px;
  font-size: 2rem;
}

.delivery-card p {
  max-width: 560px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.72;
}

.delivery-card > strong {
  display: block;
  margin-top: 30px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
  white-space: nowrap;
}

.delivery-card > strong small {
  display: block;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.countries {
  display: grid;
  align-items: start;
  margin-top: 16px;
  padding: 26px 30px;
  grid-template-columns: 100px 1fr auto;
  gap: 25px;
  background: var(--ink-deep);
  color: var(--white);
}

.countries > span {
  color: var(--sage);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.countries p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.73rem;
  line-height: 1.65;
}

.countries .text-link {
  white-space: nowrap;
}

.reviews {
  background: var(--cream);
}

.review-panel {
  display: grid;
  min-height: 500px;
  grid-template-columns: 0.62fr 1.38fr;
  background: var(--ink-deep);
  color: var(--white);
  box-shadow: var(--shadow);
}

.review-score {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  flex-direction: column;
  background: var(--sage);
  color: var(--ink-deep);
  text-align: center;
}

.trust-word {
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 850;
}

.trust-word::before {
  margin-right: 7px;
  content: "★";
  color: var(--forest);
}

.review-score strong {
  font-family: var(--serif);
  font-size: clamp(6rem, 10vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.stars {
  margin-top: 30px;
  padding: 5px 8px;
  background: var(--forest);
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.13em;
  line-height: 1;
}

.review-score p {
  margin-top: 9px;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-copy {
  display: flex;
  justify-content: center;
  padding: clamp(50px, 7vw, 90px);
  flex-direction: column;
}

.review-copy h2 {
  margin-bottom: 23px;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.review-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.8;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-block: 30px;
  padding-block: 18px;
  border-block: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-meta strong {
  color: var(--white);
}

.review-copy .button {
  align-self: flex-start;
}

.site-footer {
  padding-top: 80px;
  background: var(--forest);
  color: var(--white);
}

.footer-grid {
  display: grid;
  padding-bottom: 64px;
  grid-template-columns: 1.5fr 0.65fr 0.65fr;
  gap: 70px;
}

.brand--footer {
  margin-bottom: 22px;
}

.footer-grid > div:first-child > p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.footer-grid nav,
.footer-external {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.footer-grid nav a,
.footer-external a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-grid nav a:hover,
.footer-external a:hover {
  color: var(--sage);
}

.footer-external span {
  color: var(--sage);
}

.footer-bottom {
  display: grid;
  padding-block: 24px;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.68rem;
  line-height: 1.65;
}

.footer-bottom div {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 22px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.65rem;
}

.footer-bottom a:hover {
  color: var(--sage);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 44px;
    height: 42px;
    place-content: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
  }

  .menu-button i {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 0.2s ease;
  }

  .menu-button[aria-expanded="true"] i:first-of-type {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] i:last-of-type {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    padding: 0 max(24px, calc((100vw - 1240px) / 2)) 20px;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }

  .mobile-menu:not([hidden]) {
    display: grid;
  }

  .mobile-menu a {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.7rem;
    font-weight: 750;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 45px;
  }

  .support-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .support-card {
    grid-column: span 2;
  }

  .support-card:nth-child(4),
  .support-card:nth-child(5) {
    grid-column: span 3;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 34px, 720px);
  }

  h1 {
    font-size: clamp(3.6rem, 12vw, 6.4rem);
  }

  .hero {
    padding-top: 135px;
  }

  .hero-grid {
    padding-bottom: 120px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-visual {
    max-width: 470px;
    justify-self: center;
  }

  .split-intro,
  .featured-grid,
  .browse-inner,
  .review-panel,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .split-intro {
    gap: 28px;
  }

  .featured-grid {
    gap: 70px;
  }

  .featured-product {
    min-height: 560px;
  }

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

  .browse-inner {
    gap: 55px;
  }

  .review-score {
    min-height: 350px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 30px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-bottom div {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  html {
    scroll-padding-top: 74px;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-name {
    display: none;
  }

  .language-button {
    min-width: 118px;
    padding-inline: 11px;
  }

  .mobile-menu {
    padding: 8px 14px 16px;
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .hero-grid {
    padding-bottom: 100px;
  }

  .hero h1 {
    margin-bottom: 23px;
    font-size: clamp(3.25rem, 16vw, 5.2rem);
  }

  .hero-lead {
    font-size: 0.96rem;
  }

  .button-row,
  .button-row .button,
  .featured-copy > .button,
  .review-copy .button {
    width: 100%;
  }

  .hero-stats {
    margin-top: 42px;
  }

  .hero-stats dt {
    font-size: 1.55rem;
  }

  .hero-stats dd {
    font-size: 0.56rem;
  }

  .hero-visual figcaption {
    right: 12px;
    bottom: 18px;
    min-width: 225px;
  }

  .hero-visual::before {
    right: -15px;
  }

  .hero-marquee {
    display: none;
  }

  .section {
    padding-block: 78px;
  }

  .section-intro {
    margin-bottom: 42px;
  }

  h2 {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  .support-grid {
    display: block;
    border: 0;
  }

  .support-card {
    min-height: 0;
    margin-bottom: 10px;
    padding: 24px;
    border: 1px solid var(--line);
  }

  .support-card__top {
    margin-bottom: 30px;
  }

  .support-card h3 {
    min-height: 0;
  }

  .featured-product {
    min-height: 430px;
  }

  .featured-product img {
    width: 72%;
  }

  .botanical-tags {
    right: 12px;
    bottom: 15px;
    left: 12px;
  }

  .botanical-tags span {
    font-size: 0.55rem;
  }

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

  .product-card {
    display: grid;
    grid-template-columns: 42% 58%;
  }

  .product-card__image-wrap {
    min-height: 280px;
    aspect-ratio: auto;
    border-right: 1px solid rgba(19, 44, 42, 0.08);
    border-bottom: 0;
  }

  .product-card__image-wrap img {
    width: 86%;
    height: 70%;
  }

  .product-card__body {
    padding: 18px;
  }

  .product-card h3 {
    min-height: 0;
    font-size: 0.9rem;
  }

  .product-card__note {
    display: none;
  }

  .product-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .browse {
    padding-block: 78px;
  }

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

  .delivery-card,
  .delivery-card--wide {
    display: block;
    min-height: 280px;
    grid-column: auto;
  }

  .delivery-card--wide .delivery-card__count,
  .delivery-card:not(.delivery-card--wide) .delivery-card__count {
    display: block;
    margin-bottom: 45px;
  }

  .countries {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .review-copy {
    padding: 44px 24px;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .language-menu {
    right: -56px;
    grid-template-columns: 1fr;
  }

  .product-card {
    display: flex;
  }

  .product-card__image-wrap {
    min-height: auto;
    aspect-ratio: 1.2;
    border-right: 0;
    border-bottom: 1px solid rgba(19, 44, 42, 0.08);
  }

  .product-card__image-wrap img {
    width: 70%;
    height: 70%;
  }

  .product-card__note {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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