@charset "UTF-8";

:root {
  --paper: #fffefd;
  --ivory: #f7f4ee;
  --ivory-deep: #eee8dc;
  --linen: #f2ede5;
  --mist: #eef2ee;
  --rose-wash: #f5eeee;
  --ink: #2f2924;
  --brown: #4a3629;
  --muted: #786c62;
  --gold: #8a642b;
  --gold-light: #d5bd91;
  --line: rgba(74, 54, 41, 0.16);
  --line-strong: rgba(74, 54, 41, 0.3);
  --white: #ffffff;
  --header-height: 76px;
  --container: 1240px;
  --reading: 720px;
  --section-space: 136px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  --font-serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  word-break: normal;
  line-break: strict;
}

body.menu-open {
  overflow: hidden;
}

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

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

ul,
ol {
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  color: var(--ink);
  background: #eadabf;
}

.container {
  width: min(calc(100% - 80px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.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;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--brown);
  transform: translateY(-160%);
}

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

.eyebrow {
  margin-bottom: 20px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: 0;
  text-wrap: pretty;
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 24px;
}

.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--brown);
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 50px;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px 12px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button--solid {
  color: var(--white);
  background: var(--brown);
  border-color: var(--brown);
}

.button--solid:hover {
  background: #5b4232;
  border-color: #5b4232;
}

.button--outline {
  background: rgba(255, 255, 255, 0.6);
}

.button--outline:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.button--text {
  min-height: 0;
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
}

.button--text:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.button__mark {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(74, 54, 41, 0.1);
  background: rgba(255, 254, 253, 0.94);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  width: min(calc(100% - 56px), 1440px);
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  flex: 0 0 auto;
  color: var(--brown);
  text-decoration: none;
}

.brand__name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.brand__sub {
  margin-top: 5px;
  font-family: var(--font-serif);
  font-size: 10px;
  line-height: 1;
}

.site-menu {
  display: flex;
  gap: 42px;
  align-items: center;
}

.site-menu__links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.site-menu__links a,
.language-link,
.shop-link {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
}

.site-menu__links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-menu__links a:hover::after,
.site-menu__links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-menu__utilities {
  display: flex;
  gap: 18px;
  align-items: center;
}

.language-link {
  padding-inline: 16px;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.shop-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--gold);
}

.menu-button {
  display: none;
}

/* Breadcrumbs */
.breadcrumbs {
  padding-top: 26px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.breadcrumbs li + li::before {
  margin-right: 10px;
  color: var(--gold-light);
  content: "/";
}

.breadcrumbs a {
  text-decoration: none;
}

/* Shared headings */
.section-heading {
  max-width: 720px;
  margin-bottom: 72px;
}

.section-heading__copy {
  max-width: 620px;
  margin-top: 24px;
  color: var(--muted);
}

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

/* Home hero */
.hero--home {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  max-height: 800px;
  grid-template-columns: minmax(380px, 0.78fr) minmax(0, 1.42fr);
  background: var(--ivory);
}

.hero__copy {
  display: flex;
  max-width: 620px;
  padding: 76px 44px 72px max(44px, calc((100vw - 1440px) / 2 + 28px));
  flex-direction: column;
  align-self: center;
}

.hero__copy h1 {
  color: var(--brown);
}

.hero__copy > p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 28px;
  color: var(--muted);
}

.hero__copy .button-row {
  margin-top: 38px;
}

.hero__media {
  min-width: 0;
  min-height: 520px;
  overflow: hidden;
  background: #f4ede4;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__media picture,
.product-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

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

.result-editorial__item {
  min-width: 0;
  padding: 22px 24px 28px 0;
  border-top: 1px solid var(--line-strong);
}

.result-editorial__item:nth-child(even) {
  padding-right: 0;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.result-editorial dt small {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.result-editorial dt strong {
  display: block;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 1;
}

.result-editorial dd {
  max-width: 220px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.result-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.intro-section {
  background: var(--paper);
}

.editorial-split {
  display: grid;
  gap: 9%;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: start;
}

.editorial-split__body {
  padding-top: 42px;
}

.editorial-split__body p {
  margin-bottom: 32px;
  color: var(--muted);
}

/* Products */
.products-preview {
  background: var(--ivory);
}

.product-summary-grid {
  display: grid;
  gap: 72px 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-summary {
  display: grid;
  min-width: 0;
  gap: 28px;
  grid-template-columns: minmax(0, 1.08fr) minmax(200px, 0.92fr);
  align-items: center;
}

.product-visual,
.product-placeholder {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #efe9df;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-visual picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-placeholder {
  display: flex;
  padding: 32px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(182, 138, 70, 0.16) 50%, transparent 50.1%),
    var(--mist);
  text-align: center;
}

.product-placeholder::before,
.product-placeholder::after {
  position: absolute;
  width: 42px;
  height: 42px;
  border-color: var(--gold-light);
  content: "";
}

.product-placeholder::before {
  top: 20px;
  left: 20px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.product-placeholder::after {
  right: 20px;
  bottom: 20px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.product-placeholder span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.product-placeholder small {
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
}

.product-summary__copy {
  min-width: 0;
}

.product-number,
.business-category__number {
  margin-bottom: 20px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}

.product-label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
}

.product-summary h3 {
  margin-bottom: 18px;
}

.product-summary__copy > p:not(.product-number, .product-label) {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

/* Results and business use */
.trust-journal {
  padding-block: var(--section-space);
  overflow: hidden;
  background: var(--linen);
}

.trust-journal__grid {
  display: grid;
  gap: clamp(56px, 7vw, 108px);
  grid-template-columns: minmax(0, 1.04fr) minmax(400px, 0.96fr);
  align-items: start;
}

.trust-journal__market {
  padding-top: 54px;
}

.trust-journal__market-image {
  max-height: 790px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ivory-deep);
}

.trust-journal__market-image picture,
.trust-journal__market-image img,
.trust-journal__menu picture,
.trust-journal__menu img {
  width: 100%;
  height: 100%;
}

.trust-journal__market-image img {
  object-fit: cover;
  object-position: 50% 48%;
}

.trust-journal figcaption,
.company-principle figcaption {
  display: flex;
  gap: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  align-items: baseline;
  justify-content: space-between;
}

.trust-journal figcaption span,
.company-principle figcaption span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-journal figcaption p,
.company-principle figcaption p {
  color: var(--muted);
  font-size: 11px;
}

.trust-journal__heading {
  max-width: 520px;
}

.trust-journal__heading > p:not(.eyebrow) {
  max-width: 440px;
  margin: 24px 0 28px;
  color: var(--muted);
}

.trust-journal__results {
  margin-top: 64px;
}

.trust-journal__menu {
  width: min(86%, 520px);
  margin-top: 76px;
  margin-left: auto;
}

.trust-journal__menu > div {
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--ivory-deep);
}

.trust-journal__menu--portrait {
  width: min(72%, 420px);
}

.trust-journal__menu--portrait > div {
  aspect-ratio: 3 / 4;
}

.trust-journal__menu img {
  object-fit: cover;
}

.story-hero .eyebrow,
.closing-contact .eyebrow {
  color: #e5cfa6;
}

/* Story preview */
.story-preview {
  background: var(--paper);
}

.story-preview__grid {
  display: grid;
  gap: 9%;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: center;
}

.story-preview__images {
  position: relative;
  padding: 0 14% 11% 0;
}

.story-preview__wide {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ivory);
}

.story-preview__wide img,
.story-preview__detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-preview__detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38%;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 10px solid var(--paper);
  background: var(--ivory);
}

.story-preview__copy > p:not(.eyebrow) {
  margin: 28px 0 32px;
  color: var(--muted);
}

.social-note {
  padding-block: 86px;
  background: var(--rose-wash);
}

.social-note__inner {
  display: grid;
  gap: 6%;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr) auto;
  align-items: end;
}

.social-note__inner > p {
  color: var(--muted);
}

.donation-note {
  padding-block: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.donation-note p {
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

/* Page hero */
.page-hero {
  max-width: var(--container);
  padding-top: 106px;
  padding-bottom: 120px;
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 30px;
  color: var(--muted);
}

.page-hero > .button {
  margin-top: 38px;
}

/* Product page */
.products-detail {
  padding-bottom: var(--section-space);
}

.product-detail {
  display: grid;
  min-height: 660px;
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: stretch;
}

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

.product-detail--reverse {
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.15fr);
}

.product-detail--reverse .product-detail__media {
  order: 2;
}

.product-detail--reverse .product-detail__copy {
  order: 1;
}

.product-detail__media {
  min-width: 0;
  padding: 56px;
  background: var(--ivory);
}

.product-detail:nth-child(2n) .product-detail__media {
  background: var(--mist);
}

.product-detail__media .product-visual,
.product-detail__media .product-placeholder {
  max-width: 580px;
  height: 100%;
  margin-inline: auto;
  aspect-ratio: auto;
}

.product-detail__media .product-visual--propolis-reserve {
  width: min(100%, 540px);
  height: auto;
  aspect-ratio: 1055 / 1491;
  background: #f5f0e7;
}

.product-detail__copy {
  display: flex;
  max-width: 520px;
  padding: 72px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.product-detail__copy > p:not(.product-number, .product-label) {
  margin-top: 24px;
  color: var(--muted);
}

.product-use {
  display: grid;
  width: 100%;
  margin: 32px 0;
  padding-block: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 100px 1fr;
  font-size: 13px;
}

.product-use dt {
  color: var(--muted);
}

.safety-note {
  max-width: var(--container);
  margin-bottom: var(--section-space);
  padding: 24px 30px;
  border-left: 2px solid var(--gold-light);
  background: var(--ivory);
  color: var(--muted);
  font-size: 13px;
}

.safety-note strong {
  color: var(--brown);
}

/* Business page */
.page-hero--business {
  position: relative;
  display: grid;
  gap: clamp(56px, 8vw, 124px);
  padding-top: 118px;
  padding-bottom: 108px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.15fr) minmax(250px, 0.85fr);
  align-items: end;
}

.business-hero__word {
  position: absolute;
  right: -0.02em;
  bottom: -0.18em;
  color: rgba(74, 54, 41, 0.035);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(112px, 17vw, 260px);
  line-height: 0.82;
  pointer-events: none;
  white-space: nowrap;
}

.business-hero__content,
.business-hero__index {
  position: relative;
  z-index: 1;
}

.business-hero__content {
  max-width: 720px;
}

.business-hero__content > p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 30px;
  color: var(--muted);
}

.business-hero__content > .button {
  margin-top: 38px;
}

.business-hero__index {
  border-top: 1px solid var(--line-strong);
}

.business-hero__index span {
  display: grid;
  gap: 20px;
  padding: 15px 2px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 36px 1fr;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  text-transform: uppercase;
}

.business-hero__index b {
  color: var(--gold);
  font-size: 10px;
  font-weight: 400;
}

.business-overview {
  display: grid;
  background: var(--ivory);
  grid-template-columns: minmax(380px, 0.78fr) minmax(0, 1.22fr);
}

.business-overview > figure {
  position: sticky;
  top: var(--header-height);
  height: calc(100vh - var(--header-height));
  min-height: 660px;
  overflow: hidden;
}

.business-overview__market figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 24px;
  padding: 16px 22px;
  border-top: 1px solid rgba(74, 54, 41, 0.12);
  align-items: baseline;
  justify-content: space-between;
  background: rgba(247, 244, 238, 0.94);
}

.business-overview__market figcaption span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.business-overview__market figcaption p {
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.business-overview > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.business-overview > figure picture {
  display: block;
  width: 100%;
  height: 100%;
}

.business-categories {
  padding: clamp(56px, 6vw, 96px) clamp(48px, 8vw, 132px);
}

.business-categories__intro {
  max-width: 720px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line-strong);
}

.business-categories__intro > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
}

.business-category {
  display: grid;
  max-width: 720px;
  gap: clamp(38px, 5vw, 74px);
  padding-block: 68px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(98px, 0.3fr) minmax(0, 1fr);
}

.business-category:last-child {
  border-bottom: 0;
}

.business-category__top {
  padding-top: 6px;
}

.business-category__number {
  margin: 0 0 8px;
  font-size: clamp(44px, 4.8vw, 72px);
  font-weight: 400;
  line-height: 1;
}

.business-category__top small {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  text-transform: uppercase;
}

.business-category__copy h2 {
  margin-bottom: 22px;
}

.business-category__copy > p {
  max-width: 600px;
  margin-bottom: 30px;
  color: var(--muted);
}

.business-scenes {
  padding-block: var(--section-space);
  overflow: hidden;
  background: var(--linen);
}

.business-scenes__grid {
  display: grid;
  gap: 72px 32px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.business-scenes__intro {
  padding-top: 24px;
  grid-column: 1 / 5;
  grid-row: 1;
}

.business-scenes__intro h2 {
  max-width: 420px;
}

.business-scenes__intro > p:not(.eyebrow) {
  max-width: 360px;
  margin-top: 28px;
  color: var(--muted);
}

.business-scene {
  min-width: 0;
}

.business-scene--yogurt {
  grid-column: 5 / 9;
  grid-row: 1;
}

.business-propolis {
  min-width: 0;
  margin-top: 72px;
  grid-column: 9 / 13;
  grid-row: 1;
}

.business-scene__image {
  overflow: hidden;
  background: var(--ivory-deep);
}

.business-scene__image picture,
.business-scene__image img {
  width: 100%;
  height: 100%;
}

.business-scene__image img {
  object-fit: cover;
}

.business-scene--yogurt .business-scene__image {
  aspect-ratio: 3 / 4;
}

.business-scene figcaption {
  display: flex;
  gap: 24px;
  padding-top: 18px;
  align-items: baseline;
  justify-content: space-between;
}

.business-scene figcaption span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.business-scene figcaption p {
  color: var(--brown);
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.7;
  text-align: right;
}

.business-propolis__image {
  overflow: hidden;
  aspect-ratio: 1055 / 1491;
  background: #f5f0e7;
}

.business-propolis__image picture,
.business-propolis__image img {
  width: 100%;
  height: 100%;
}

.business-propolis__image img {
  object-fit: contain;
}

.business-propolis__copy {
  padding-top: 20px;
  border-top: 1px solid var(--line-strong);
}

.business-propolis__copy > span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  text-transform: uppercase;
}

.business-propolis__copy h3 {
  margin-top: 10px;
}

.business-propolis__copy p {
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.business-proof {
  padding-block: 112px;
  color: var(--white);
  background: var(--brown);
}

.business-proof__grid {
  display: grid;
  gap: clamp(56px, 8vw, 118px);
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
}

.business-proof__heading h2 {
  color: var(--white);
}

.business-proof__heading .eyebrow,
.business-proof .result-editorial dt small {
  color: #e5cfa6;
}

.business-proof__heading > p:not(.eyebrow) {
  max-width: 390px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.66);
}

.business-proof .result-editorial__item {
  padding: 26px 24px 22px;
  border-top-color: rgba(255, 255, 255, 0.34);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.business-proof .result-editorial {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.business-proof .result-editorial__item:first-child {
  padding-left: 0;
  border-left: 0;
}

.business-proof .result-editorial dt strong {
  color: var(--white);
}

.business-proof .result-editorial dd {
  color: rgba(255, 255, 255, 0.68);
}

.business-proof .result-note {
  color: rgba(255, 255, 255, 0.52);
}

.facility-section {
  background: var(--mist);
}

.facility-layout {
  display: grid;
  gap: 10%;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
}

.facility-layout > div > p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--muted);
}

.facility-layout ul {
  border-top: 1px solid var(--line-strong);
}

.facility-layout li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.inquiry-flow {
  background: var(--ivory);
}

.inquiry-flow ol {
  display: grid;
  border-top: 1px solid var(--line-strong);
  grid-template-columns: repeat(3, 1fr);
}

.inquiry-flow li {
  display: flex;
  min-height: 160px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  justify-content: space-between;
}

.inquiry-flow li:last-child {
  border-right: 0;
}

.inquiry-flow span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.inquiry-flow strong {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
}

/* FAQ */
.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  gap: 10%;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
}

.faq-layout .section-heading {
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 52px 25px 0;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 18px;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details > div {
  padding: 0 52px 26px 0;
}

.faq-list details p {
  color: var(--muted);
}

/* Story page */
.story-hero {
  position: relative;
  min-height: 700px;
  margin-top: 24px;
  overflow: hidden;
  background: var(--ivory);
}

.story-hero figure,
.story-hero picture,
.story-hero img {
  width: 100%;
  height: 100%;
}

.story-hero figure {
  position: absolute;
  inset: 0;
}

.story-hero img {
  object-fit: cover;
  object-position: center 44%;
}

.story-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(34, 27, 22, 0.58), rgba(34, 27, 22, 0.08) 70%);
  content: "";
}

.story-hero__copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 700px;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

.story-hero__copy h1 {
  color: var(--white);
}

.story-chapter:nth-of-type(3) {
  background: var(--ivory);
}

.story-image-break {
  position: relative;
  display: grid;
  min-height: 720px;
  background: var(--brown);
  grid-template-columns: 62% 38%;
}

.story-image-break figure {
  overflow: hidden;
}

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

.story-image-break p {
  display: flex;
  padding: 12%;
  align-items: flex-end;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-serif);
  font-size: 26px;
}

.lifestyle-panel {
  display: grid;
  background: var(--rose-wash);
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
}

.lifestyle-panel figure {
  min-height: 660px;
  overflow: hidden;
}

.lifestyle-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-panel__copy {
  display: flex;
  padding: 90px 8vw;
  flex-direction: column;
  justify-content: center;
}

.lifestyle-panel__copy > p:not(.eyebrow) {
  margin-top: 26px;
  color: var(--muted);
}

/* Company */
.company-hero {
  padding-block: 88px 112px;
  background: var(--ivory);
}

.company-hero__grid {
  display: grid;
  gap: clamp(54px, 7vw, 112px);
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1.24fr);
  align-items: center;
}

.company-hero__copy {
  max-width: 560px;
}

.company-hero__copy > p:not(.eyebrow) {
  max-width: 460px;
  margin-top: 28px;
  color: var(--muted);
}

.company-hero__media {
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: var(--linen);
}

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

.company-index {
  padding-block: 104px 56px;
  background: var(--paper);
}

.company-index__grid {
  display: grid;
  gap: clamp(48px, 8vw, 112px);
  grid-template-columns: minmax(220px, 0.56fr) minmax(0, 1.44fr);
}

.company-index__heading {
  max-width: 320px;
}

.company-index ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.company-index li {
  display: grid;
  min-width: 0;
  gap: 4px 18px;
  padding: 24px 24px 28px 0;
  border-top: 1px solid var(--line-strong);
  grid-template-columns: 34px 84px minmax(0, 1fr);
  align-items: baseline;
}

.company-index li:nth-child(even) {
  padding-right: 0;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.company-index li span,
.company-index li small {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.4;
}

.company-index li span {
  color: var(--gold);
  font-size: 11px;
}

.company-index li small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-index li p {
  color: var(--brown);
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.75;
}

.company-info {
  padding-block: 64px 120px;
  background: var(--paper);
}

.company-info__grid {
  display: grid;
  gap: 10%;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
}

.company-info__grid .section-heading {
  margin-bottom: 0;
}

.company-info dl {
  border-top: 1px solid var(--line-strong);
}

.company-info dl > div {
  display: grid;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 140px 1fr;
}

.company-info dt {
  color: var(--muted);
  font-size: 13px;
}

.company-info dd {
  overflow-wrap: break-word;
}

.company-tools {
  padding-block: 112px;
  border-top: 1px solid var(--line);
  background: var(--ivory);
}

.company-tools__heading {
  max-width: 680px;
}

.company-tools__heading > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 24px;
  color: var(--muted);
}

.company-tools__list {
  display: grid;
  margin-top: 64px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.company-tool {
  min-width: 0;
  padding: 30px 22px 28px;
  border-right: 1px solid var(--line);
}

.company-tool:last-child {
  border-right: 0;
}

.company-tool__logo {
  display: flex;
  height: 58px;
  margin-bottom: 24px;
  align-items: center;
}

.company-tool__logo img {
  width: auto;
  max-width: min(100%, 148px);
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}

.company-tool--instagram .company-tool__logo img,
.company-tool--line .company-tool__logo img {
  max-width: 46px;
  max-height: 46px;
}

.company-tool--xserver .company-tool__logo img {
  max-width: 156px;
}

.company-tool p {
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.company-tool small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.company-tools__note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 10px;
  text-align: right;
}

.company-principle {
  padding-block: var(--section-space);
  background: var(--mist);
}

.company-principle__grid {
  display: grid;
  gap: clamp(56px, 8vw, 118px);
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  align-items: center;
}

.company-principle__media > div {
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--ivory-deep);
}

.company-principle__media--portrait {
  width: min(78%, 560px);
  margin-left: 8%;
}

.company-principle__media--portrait > div {
  aspect-ratio: 3 / 4;
}

.company-principle__media picture,
.company-principle__media img {
  width: 100%;
  height: 100%;
}

.company-principle__media img {
  object-fit: cover;
}

.company-principle__copy {
  max-width: 480px;
}

.company-principle__copy > p:not(.eyebrow) {
  margin-top: 26px;
  color: var(--muted);
}

/* Contact */
.contact-atmosphere {
  padding-block: 20px;
  background: var(--linen);
}

.contact-atmosphere__frame {
  width: min(calc(100% - 80px), 1440px);
  margin-inline: auto;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: var(--ivory-deep);
}

.contact-atmosphere__frame picture,
.contact-atmosphere__frame img {
  width: 100%;
  height: 100%;
}

.contact-atmosphere__frame img {
  object-fit: cover;
  object-position: center 56%;
}

.contact-section {
  display: grid;
  padding-top: 112px;
  padding-bottom: var(--section-space);
  gap: 8%;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.contact-aside > p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--muted);
}

.contact-links {
  margin-top: 40px;
  border-top: 1px solid var(--line-strong);
}

.contact-links a {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}

.contact-links a:hover span {
  color: var(--gold);
}

.contact-links small {
  max-width: 70%;
  color: var(--muted);
  font-size: 11px;
  overflow-wrap: anywhere;
  text-align: right;
}

.contact-form-wrap {
  padding: 48px;
  background: var(--ivory);
}

.contact-form {
  display: grid;
  gap: 28px 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  min-width: 0;
}

.field--full,
.form-errors,
.submit-button,
.form-note {
  grid-column: 1 / -1;
}

.field > label,
.consent-field > label {
  display: block;
  margin-bottom: 9px;
  color: var(--brown);
  font-size: 13px;
  font-weight: 600;
}

.field label > span[aria-hidden="true"] {
  margin-left: 4px;
  color: var(--gold);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  outline: none;
  background: rgba(255, 255, 255, 0.8);
  transition: border-color 180ms ease, background-color 180ms ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.field [aria-invalid="true"] {
  border-color: #a33a32;
}

.consent-field > label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 400;
}

.consent-field input {
  width: 18px;
  min-height: 18px;
  margin: 5px 0 0;
  flex: 0 0 auto;
  accent-color: var(--brown);
}

.consent-field a {
  color: var(--brown);
}

.submit-button {
  width: 100%;
  cursor: pointer;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.form-note {
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.form-errors,
.form-status {
  padding: 18px 20px;
  border-left: 3px solid #9c493e;
  background: #faf0ed;
  color: #6d2c25;
  font-size: 13px;
}

.form-errors ul {
  margin-top: 8px;
  padding-left: 20px;
  list-style: disc;
}

.form-status {
  margin-bottom: 24px;
}

.form-status--success {
  border-color: #55735d;
  background: #eef5ef;
  color: #314c37;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Closing contact */
.closing-contact {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  color: var(--white);
  background: var(--brown);
}

.closing-contact__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(44, 33, 26, 0.9), rgba(44, 33, 26, 0.4)),
    url("/images/lifestyle-honey-menu.jpg") center / cover no-repeat;
}

.closing-contact__content {
  position: relative;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.closing-contact h2 {
  color: var(--white);
}

.closing-contact__content > p:not(.eyebrow) {
  max-width: 580px;
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, 0.74);
}

.closing-contact .button--solid {
  color: var(--brown);
  background: var(--white);
  border-color: var(--white);
}

.closing-contact .button--outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.48);
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: #28211d;
}

.site-footer__top {
  display: grid;
  gap: 8%;
  padding-block: 84px 68px;
  grid-template-columns: 1.1fr 0.7fr 1.2fr;
}

.site-footer .brand__name {
  color: var(--white);
  font-size: 30px;
}

.site-footer__identity > p:last-child {
  max-width: 320px;
  margin-top: 22px;
  font-size: 13px;
}

.site-footer__nav {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.site-footer__nav a,
.site-footer__bottom a,
.site-footer__company a {
  text-decoration: none;
}

.site-footer__company .text-link {
  color: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.3);
}

.site-footer__nav a:hover,
.site-footer__bottom a:hover,
.site-footer__company a:hover {
  color: var(--white);
}

.site-footer__company {
  font-size: 12px;
}

.site-footer__company p + p {
  margin-top: 12px;
}

.site-footer__company a {
  display: inline-block;
  margin-top: 14px;
  overflow-wrap: anywhere;
}

.site-footer__bottom {
  display: flex;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
}

.site-footer__bottom div {
  display: flex;
  gap: 24px;
}

/* 404 */
.not-found {
  display: flex;
  min-height: calc(100svh - var(--header-height));
  padding-block: 120px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.not-found > p:not(.eyebrow) {
  margin: 24px 0 36px;
  color: var(--muted);
}

@media (max-width: 1180px) {
  .site-menu {
    gap: 24px;
  }

  .site-menu__links {
    gap: 20px;
  }

  .hero--home {
    grid-template-columns: minmax(350px, 0.82fr) minmax(0, 1.18fr);
  }

  .hero__copy {
    padding-inline: 40px;
  }

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

  .product-visual--compact,
  .product-placeholder--compact {
    aspect-ratio: 5 / 4;
  }

  .product-visual--compact img {
    object-fit: contain;
  }
}

@media (max-width: 1023px) {
  :root {
    --header-height: 68px;
    --section-space: 104px;
  }

  .container {
    width: min(calc(100% - 56px), var(--container));
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .site-header__inner {
    width: calc(100% - 40px);
  }

  .site-header {
    background: var(--paper);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .menu-button {
    position: relative;
    z-index: 102;
    display: flex;
    width: 44px;
    height: 44px;
    padding: 12px 8px;
    border: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    background: transparent;
    cursor: pointer;
  }

  .menu-button__line {
    display: block;
    height: 1px;
    margin-block: 4px;
    background: var(--brown);
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] .menu-button__line:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-button__line:nth-child(2) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .site-menu {
    position: fixed;
    z-index: 101;
    inset: var(--header-height) 0 0;
    display: flex;
    padding: 32px 32px 40px;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-open .site-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-menu__links {
    display: flex;
    gap: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .site-menu__links li {
    border-bottom: 1px solid var(--line);
  }

  .site-menu__links a {
    display: block;
    padding: 18px 0;
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
  }

  .site-menu__links a::after {
    display: none;
  }

  .site-menu__utilities {
    display: flex;
    gap: 0;
    align-items: stretch;
  }

  .language-link,
  .shop-link {
    width: 50%;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-right: 0;
    border-left: 0;
  }

  .hero--home {
    min-height: 0;
    max-height: none;
    grid-template-columns: 1fr;
  }

  .hero__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
    order: 1;
  }

  .hero__copy {
    max-width: none;
    padding: 64px max(28px, calc((100vw - 900px) / 2));
    order: 2;
  }

  .product-summary-grid {
    gap: 56px 24px;
  }

  .trust-journal__grid {
    gap: 48px;
    grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  }

  .trust-journal__market {
    padding-top: 32px;
  }

  .trust-journal__menu {
    width: 92%;
  }

  .trust-journal__menu--portrait {
    width: min(74%, 420px);
  }

  .business-proof__grid {
    gap: 52px;
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  }

  .page-hero--business {
    gap: 52px;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.55fr);
  }

  .company-hero__grid,
  .company-principle__grid {
    gap: 52px;
  }

  .company-index__grid {
    gap: 44px;
    grid-template-columns: 1fr;
  }

  .social-note__inner {
    grid-template-columns: 1fr 1fr;
  }

  .social-note__inner .button {
    grid-column: 2;
    justify-self: start;
  }

  .product-detail,
  .product-detail--reverse {
    min-height: 580px;
    grid-template-columns: 1fr 1fr;
  }

  .product-detail__media {
    padding: 36px;
  }

  .product-detail__copy {
    padding: 52px 40px;
  }

  .business-overview {
    grid-template-columns: 40% 60%;
  }

  .business-categories {
    padding-inline: 48px;
  }

  .business-category {
    gap: 34px;
    grid-template-columns: 94px minmax(0, 1fr);
  }

  .company-tools__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .company-tool:nth-child(3n) {
    border-right: 0;
  }

  .company-tool:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .contact-section {
    gap: 48px;
    grid-template-columns: 1fr;
  }

  .contact-aside {
    position: static;
  }

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

  .contact-links a {
    padding: 18px;
    border-right: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-links small {
    max-width: 100%;
    text-align: left;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 64px;
    --section-space: 80px;
  }

  body {
    font-size: 16px;
    line-height: 1.85;
  }

  .container {
    width: calc(100% - 40px);
  }

  h1 {
    font-size: 34px;
    line-height: 1.48;
  }

  h2 {
    font-size: 28px;
    line-height: 1.52;
  }

  h3 {
    font-size: 22px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .button-row {
    width: 100%;
  }

  .button {
    min-height: 48px;
    max-width: 100%;
    white-space: normal;
  }

  .brand__name {
    font-size: 21px;
  }

  .brand__sub {
    font-size: 9px;
  }

  .site-header__inner {
    width: calc(100% - 28px);
  }

  .site-menu {
    padding-inline: 24px;
  }

  .site-menu__links a {
    font-size: 21px;
  }

  .breadcrumbs {
    padding-top: 18px;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .section-heading__copy {
    margin-top: 18px;
  }

  .hero__media {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .hero__media img {
    object-fit: contain;
  }

  .hero__copy {
    padding: 46px 20px 52px;
  }

  .hero__copy > p:not(.eyebrow) {
    margin-top: 20px;
  }

  .hero__copy .button-row {
    margin-top: 28px;
  }

  .editorial-split,
  .story-preview__grid,
  .faq-layout,
  .facility-layout,
  .company-info__grid {
    gap: 38px;
    grid-template-columns: 1fr;
  }

  .editorial-split__body {
    padding-top: 0;
  }

  .product-summary-grid {
    gap: 60px;
    grid-template-columns: 1fr;
  }

  .product-summary {
    gap: 28px;
  }

  .product-visual--compact,
  .product-placeholder--compact {
    aspect-ratio: 5 / 4;
  }

  .section-action {
    margin-top: 44px;
  }

  .trust-journal {
    padding-block: 80px;
  }

  .trust-journal__grid {
    gap: 58px;
    grid-template-columns: 1fr;
  }

  .trust-journal__market {
    padding-top: 0;
  }

  .trust-journal__market-image {
    max-height: 620px;
  }

  .trust-journal__results {
    margin-top: 48px;
  }

  .trust-journal__menu {
    width: 88%;
    margin-top: 56px;
  }

  .trust-journal__menu--portrait {
    width: 76%;
  }

  .result-editorial__item {
    padding: 18px 16px 24px 0;
  }

  .result-editorial__item:nth-child(even) {
    padding-right: 0;
    padding-left: 16px;
  }

  .result-editorial dt strong {
    font-size: 34px;
  }

  .result-editorial dd {
    font-size: 11px;
  }

  .story-preview__images {
    padding-right: 9%;
    padding-bottom: 10%;
  }

  .story-preview__detail {
    width: 34%;
    border-width: 6px;
  }

  .social-note {
    padding-block: 68px;
  }

  .social-note__inner {
    gap: 26px;
    grid-template-columns: 1fr;
  }

  .social-note__inner .button {
    grid-column: auto;
  }

  .donation-note p {
    text-align: left;
  }

  .page-hero {
    padding-top: 70px;
    padding-bottom: 76px;
  }

  .page-hero > p:not(.eyebrow) {
    margin-top: 22px;
  }

  .page-hero--business {
    gap: 48px;
    padding-top: 72px;
    padding-bottom: 76px;
    grid-template-columns: 1fr;
  }

  .business-hero__word {
    right: -0.08em;
    bottom: 0.02em;
    font-size: clamp(78px, 29vw, 126px);
  }

  .business-hero__content > p:not(.eyebrow) {
    margin-top: 22px;
  }

  .business-hero__content > .button {
    margin-top: 30px;
  }

  .product-detail,
  .product-detail--reverse {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .product-detail--reverse .product-detail__media,
  .product-detail--reverse .product-detail__copy {
    order: initial;
  }

  .product-detail__media {
    padding: 20px;
  }

  .product-detail__media .product-visual,
  .product-detail__media .product-placeholder {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .product-detail__media .product-visual--propolis-reserve {
    width: min(100%, 430px);
    aspect-ratio: 1055 / 1491;
  }

  .product-detail__copy {
    max-width: none;
    padding: 44px 20px 58px;
  }

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

  .safety-note {
    width: calc(100% - 40px);
    padding: 20px;
  }

  .business-overview {
    grid-template-columns: 1fr;
  }

  .business-overview > figure {
    position: static;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .business-overview__market figcaption {
    gap: 14px;
    padding: 12px 16px;
    align-items: flex-start;
  }

  .business-categories {
    padding: 54px 20px 0;
  }

  .business-categories__intro {
    padding-bottom: 32px;
  }

  .business-category {
    gap: 22px;
    padding-block: 58px;
    grid-template-columns: 1fr;
  }

  .business-category__top {
    display: flex;
    gap: 18px;
    padding-top: 0;
    align-items: baseline;
  }

  .business-category__number {
    margin-bottom: 0;
    font-size: 46px;
  }

  .business-proof {
    padding-block: 78px;
  }

  .business-proof__grid {
    gap: 46px;
    grid-template-columns: 1fr;
  }

  .business-proof .result-editorial {
    grid-template-columns: 1fr;
  }

  .business-proof .result-editorial__item {
    padding-inline: 0;
    border-left: 0;
  }

  .business-scenes {
    padding-block: 80px;
  }

  .business-scenes__grid {
    gap: 48px;
    grid-template-columns: 1fr;
  }

  .business-scenes__intro,
  .business-scene--yogurt,
  .business-propolis {
    margin-top: 0;
    grid-column: 1;
    grid-row: auto;
  }

  .business-scenes__intro {
    padding-top: 0;
  }

  .business-scene--yogurt {
    width: 88%;
  }

  .business-propolis {
    width: 82%;
    margin-left: auto;
  }

  .business-scene figcaption {
    gap: 16px;
    padding-top: 14px;
    align-items: flex-start;
  }

  .business-scene figcaption p {
    max-width: 75%;
    font-size: 15px;
  }

  .inquiry-flow ol {
    grid-template-columns: 1fr;
  }

  .inquiry-flow li {
    min-height: 120px;
    border-right: 0;
  }

  .faq-layout .section-heading {
    margin-bottom: 0;
  }

  .faq-list summary {
    padding: 22px 42px 22px 0;
    font-size: 16px;
  }

  .faq-list details > div {
    padding-right: 36px;
  }

  .story-hero,
  .story-hero__copy {
    min-height: 560px;
  }

  .story-hero {
    margin-top: 16px;
  }

  .story-hero::after {
    background: linear-gradient(0deg, rgba(34, 27, 22, 0.64), rgba(34, 27, 22, 0.1) 75%);
  }

  .story-hero__copy {
    padding-bottom: 48px;
    justify-content: flex-end;
  }

  .story-image-break {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .story-image-break figure {
    aspect-ratio: 4 / 5;
  }

  .story-image-break p {
    padding: 44px 20px 52px;
    font-size: 22px;
  }

  .lifestyle-panel {
    grid-template-columns: 1fr;
  }

  .lifestyle-panel figure {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .lifestyle-panel__copy {
    padding: 58px 20px 68px;
  }

  .company-hero {
    padding-block: 64px 80px;
  }

  .company-hero__grid,
  .company-principle__grid {
    gap: 46px;
    grid-template-columns: 1fr;
  }

  .company-hero__media {
    aspect-ratio: 4 / 3;
  }

  .company-index {
    padding-block: 78px 42px;
  }

  .company-index__grid {
    gap: 40px;
  }

  .company-index ol {
    grid-template-columns: 1fr;
  }

  .company-index li,
  .company-index li:nth-child(even) {
    padding: 20px 0 24px;
    border-left: 0;
    grid-template-columns: 32px 74px minmax(0, 1fr);
  }

  .company-tools {
    padding-block: 80px;
  }

  .company-tools__list {
    margin-top: 46px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-tool,
  .company-tool:nth-child(3n) {
    padding: 24px 16px 22px;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .company-tool:nth-child(-n + 2) {
    border-top: 0;
  }

  .company-tool:nth-child(even) {
    border-right: 0;
  }

  .company-tool__logo {
    height: 50px;
    margin-bottom: 18px;
  }

  .company-tools__note {
    text-align: left;
  }

  .company-principle {
    padding-block: 80px;
  }

  .company-principle__copy {
    max-width: none;
  }

  .company-principle__media--portrait {
    width: 80%;
    margin-left: 0;
  }

  .company-info dl > div {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .company-info {
    padding-block: 42px 80px;
  }

  .contact-section {
    width: calc(100% - 40px);
    padding-top: 68px;
    gap: 50px;
  }

  .contact-atmosphere {
    padding-block: 0;
  }

  .contact-atmosphere__frame {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .contact-atmosphere__frame img {
    object-position: 64% center;
  }

  .contact-links {
    grid-template-columns: 1fr;
  }

  .contact-links a {
    padding-inline: 0;
    border-right: 0;
    flex-direction: row;
    align-items: center;
  }

  .contact-links small {
    text-align: right;
  }

  .contact-form-wrap {
    margin-inline: -20px;
    padding: 38px 20px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .field,
  .field--full,
  .form-errors,
  .submit-button,
  .form-note {
    grid-column: 1;
  }

  .closing-contact,
  .closing-contact__content {
    min-height: 500px;
  }

  .closing-contact__image {
    background:
      linear-gradient(0deg, rgba(44, 33, 26, 0.88), rgba(44, 33, 26, 0.35)),
      url("/images/lifestyle-honey-menu.jpg") center / cover no-repeat;
  }

  .closing-contact__content {
    padding-block: 64px;
    justify-content: flex-end;
  }

  .site-footer__top {
    gap: 46px;
    padding-block: 64px 52px;
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    gap: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 479px) {
  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 26px;
  }

  .hero__copy .button-row,
  .closing-contact .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__copy .button,
  .closing-contact .button {
    width: 100%;
  }

  .result-editorial dt strong {
    font-size: 31px;
  }

  .result-editorial dd {
    overflow-wrap: anywhere;
  }

  .company-index li,
  .company-index li:nth-child(even) {
    gap: 4px 12px;
    grid-template-columns: 28px 66px minmax(0, 1fr);
  }

  .company-index li p {
    font-size: 15px;
  }

  .product-placeholder {
    padding: 20px;
  }

  .site-footer__bottom div {
    gap: 12px;
    flex-direction: column;
  }
}

@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;
  }
}

@media print {
  .site-header,
  .menu-button,
  .closing-contact,
  .site-footer {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

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

/* SEO article and legal pages. Existing brand-page selectors remain unchanged. */
.column-hero {
  padding-block: 112px 104px;
  border-bottom: 1px solid var(--line);
}

.column-hero h1 {
  max-width: 780px;
  margin-bottom: 30px;
}

.column-hero > p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.column-list {
  padding-block: 104px 136px;
  background: var(--ivory);
}

.column-list__heading,
.related-articles__heading {
  display: grid;
  gap: 20px;
  align-items: end;
  margin-bottom: 54px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.column-list__heading .eyebrow,
.related-articles__heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.column-list__heading > p:last-child {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-card {
  display: flex;
  min-width: 0;
  min-height: 360px;
  flex-direction: column;
  padding: 34px 34px 38px 0;
  border-top: 1px solid var(--line-strong);
}

.article-card:not(:nth-child(3n + 1)) {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.article-card__meta {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card h2 {
  margin-bottom: 20px;
  font-size: 23px;
}

.article-card h2 a {
  text-decoration: none;
}

.article-card h2 a:hover {
  color: var(--gold);
}

.article-card > p {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.article-card .text-link {
  align-self: flex-start;
  margin-top: auto;
  font-size: 13px;
}

.article-header {
  padding-block: 92px 80px;
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  max-width: 980px;
  margin-bottom: 32px;
  font-size: 48px;
  word-break: auto-phrase;
}

.article-header__lead {
  max-width: 780px;
  color: var(--muted);
  font-size: 17px;
}

.article-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  margin-top: 40px;
  color: var(--muted);
  font-size: 12px;
}

.article-dates div {
  display: flex;
  gap: 8px;
}

.article-dates dt {
  color: var(--gold);
}

.article-layout {
  display: grid;
  gap: clamp(60px, 8vw, 120px);
  padding-block: 96px 128px;
  grid-template-columns: minmax(0, var(--reading)) minmax(210px, 1fr);
}

.article-body {
  min-width: 0;
}

.article-summary {
  margin-bottom: 72px;
  padding: 36px 40px 40px;
  background: var(--ivory);
  border-top: 1px solid var(--gold-light);
}

.article-summary h2 {
  margin-bottom: 24px;
  font-size: 25px;
}

.article-summary ul,
.article-section ul {
  display: grid;
  gap: 12px;
}

.article-summary li,
.article-section li {
  position: relative;
  padding-left: 22px;
}

.article-summary li::before,
.article-section li::before {
  position: absolute;
  top: 0.77em;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.article-section + .article-section {
  margin-top: 72px;
}

.article-section h2,
.article-sources h2 {
  margin-bottom: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line-strong);
  font-size: 29px;
}

.article-section p + p {
  margin-top: 22px;
}

.article-section ul {
  margin-top: 28px;
  color: var(--muted);
}

.article-section__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 30px;
}

.article-section__links .text-link {
  font-size: 14px;
}

.article-side {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  align-self: start;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 14px;
}

.article-side p:not(.eyebrow) {
  margin-bottom: 24px;
}

.article-sources {
  margin-top: 80px;
}

.article-sources ol {
  display: grid;
  gap: 22px;
  list-style: decimal;
  padding-left: 1.4em;
}

.article-sources li {
  padding-left: 8px;
}

.article-sources a {
  color: var(--brown);
  overflow-wrap: anywhere;
}

.article-sources p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.article-cta {
  padding-block: 96px;
  color: var(--white);
  background: var(--brown);
}

.article-cta .container {
  display: grid;
  gap: 24px 60px;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) auto;
}

.article-cta .eyebrow {
  color: var(--gold-light);
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.article-cta h2 {
  font-size: 34px;
}

.article-cta p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
}

.article-cta .button {
  color: var(--brown);
  background: var(--paper);
  border-color: var(--paper);
  grid-column: 2;
  grid-row: 2 / 4;
}

.related-articles {
  padding-block: 112px 136px;
  background: var(--ivory);
}

.article-grid--related .article-card {
  min-height: 330px;
}

.privacy-content {
  max-width: 840px;
  padding-bottom: 136px;
}

.privacy-content section {
  padding-block: 34px;
  border-top: 1px solid var(--line);
}

.privacy-content section h2 {
  margin-bottom: 14px;
  font-size: 24px;
}

.privacy-content section p {
  color: var(--muted);
}

.privacy-updated {
  margin: 30px 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1023px) {
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-card:not(:nth-child(3n + 1)) {
    padding-left: 0;
    border-left: 0;
  }

  .article-card:nth-child(even) {
    padding-left: 30px;
    border-left: 1px solid var(--line);
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-side {
    position: static;
    max-width: 620px;
  }
}

@media (max-width: 767px) {
  .column-hero {
    padding-block: 72px 68px;
  }

  .column-hero h1 {
    margin-bottom: 24px;
  }

  .column-hero > p:last-child {
    font-size: 15px;
  }

  .column-list {
    padding-block: 72px 88px;
  }

  .column-list__heading,
  .related-articles__heading {
    margin-bottom: 38px;
  }

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

  .article-card,
  .article-card:not(:nth-child(3n + 1)),
  .article-card:nth-child(even) {
    min-height: 0;
    padding: 28px 0 34px;
    border-left: 0;
  }

  .article-card h2 {
    font-size: 21px;
  }

  .article-header {
    padding-block: 66px 58px;
  }

  .article-header h1 {
    margin-bottom: 24px;
    font-size: 32px;
  }

  .article-header__lead {
    font-size: 15px;
  }

  .article-dates {
    gap: 8px 20px;
    margin-top: 30px;
  }

  .article-layout {
    gap: 64px;
    padding-block: 64px 88px;
  }

  .article-summary {
    margin: 0 -4px 56px;
    padding: 28px 24px 32px;
  }

  .article-summary h2 {
    font-size: 22px;
  }

  .article-section + .article-section {
    margin-top: 56px;
  }

  .article-section h2,
  .article-sources h2 {
    font-size: 24px;
  }

  .article-cta {
    padding-block: 72px;
  }

  .article-cta .container {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .article-cta h2 {
    font-size: 27px;
  }

  .article-cta .button {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .related-articles {
    padding-block: 80px 96px;
  }

  .article-grid--related .article-card {
    min-height: 0;
  }

  .privacy-content {
    padding-bottom: 96px;
  }
}

/* HoneyBear column: consumer guides, article covers and editorial policy. */
.site-menu__links {
  gap: 24px;
}

.column-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin-top: 34px;
}

.column-hero__links .text-link {
  font-size: 13px;
}

.article-card--with-image {
  min-height: 510px;
}

.article-card__image {
  display: block;
  margin: -10px 0 28px;
  overflow: hidden;
  background: var(--linen);
  text-decoration: none;
}

.article-card__image picture,
.article-card__image img {
  width: 100%;
  height: 100%;
}

.article-card__image {
  aspect-ratio: 1200 / 630;
}

.article-card__image img {
  object-fit: cover;
  transition: transform 500ms ease;
}

.article-card:hover .article-card__image img {
  transform: scale(1.015);
}

.article-cover {
  width: min(100%, 1200px);
  margin-top: 60px;
  overflow: hidden;
  background: var(--linen);
  aspect-ratio: 1200 / 630;
}

.article-cover picture,
.article-cover img {
  width: 100%;
  height: 100%;
}

.article-cover img {
  object-fit: cover;
}

.article-toc {
  margin-bottom: 78px;
  padding: 34px 0 38px;
  border-block: 1px solid var(--line);
}

.article-toc h2 {
  margin-bottom: 22px;
  font-size: 24px;
}

.article-toc ol {
  display: grid;
  gap: 0;
}

.article-toc li + li {
  border-top: 1px solid var(--line);
}

.article-toc a {
  display: grid;
  gap: 16px;
  padding: 13px 0;
  align-items: baseline;
  color: var(--brown);
  font-size: 14px;
  line-height: 1.65;
  text-decoration: none;
  grid-template-columns: 28px minmax(0, 1fr);
}

.article-toc a:hover {
  color: var(--gold);
}

.article-toc a span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
}

.article-table-wrap {
  max-width: 100%;
  margin-top: 34px;
  overflow-x: auto;
  border-block: 1px solid var(--line-strong);
}

.article-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.7;
}

.article-table caption {
  padding: 15px 0;
  color: var(--muted);
  font-size: 12px;
  text-align: left;
}

.article-table th,
.article-table td {
  padding: 16px 14px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-table thead th {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
}

.article-table tbody th {
  color: var(--brown);
  font-weight: 600;
}

.article-safety {
  display: grid;
  gap: 18px;
  margin-top: 76px;
  padding: 28px 30px;
  border-block: 1px solid var(--gold-light);
  align-items: start;
  background: var(--ivory);
  grid-template-columns: auto minmax(0, 1fr);
}

.article-safety strong {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.article-safety p {
  color: var(--brown);
  font-weight: 600;
}

.article-faq,
.article-products {
  margin-top: 84px;
}

.article-faq > h2,
.article-products__heading h2 {
  margin-bottom: 28px;
  font-size: 29px;
}

.article-faq dl {
  border-top: 1px solid var(--line-strong);
}

.article-faq dl > div {
  padding: 26px 0 28px;
  border-bottom: 1px solid var(--line);
}

.article-faq dt {
  position: relative;
  padding-left: 34px;
  color: var(--brown);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.65;
}

.article-faq dt::before {
  position: absolute;
  top: 0.12em;
  left: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  content: "Q";
}

.article-faq dd {
  margin-top: 14px;
  padding-left: 34px;
  color: var(--muted);
}

.article-products__heading > p:last-child {
  margin-top: -12px;
  color: var(--muted);
  font-size: 13px;
}

.article-products__grid {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--line-strong);
}

.article-product {
  display: grid;
  gap: 30px;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  grid-template-columns: 170px minmax(0, 1fr);
}

.article-product__media {
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--linen);
  aspect-ratio: 1 / 1;
}

.article-product__media picture,
.article-product__media img {
  width: 100%;
  height: 100%;
}

.article-product__media img {
  padding: 8px;
  object-fit: contain;
}

.article-product > div > p,
.article-product > div > span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.article-product h3 {
  margin: 5px 0 8px;
  font-size: 22px;
}

.article-product .button {
  min-height: 42px;
  margin-top: 18px;
  padding-block: 8px;
  font-size: 12px;
}

.article-correction {
  margin-top: 74px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.article-correction a {
  color: var(--brown);
}

.home-column {
  padding-block: 124px 136px;
  background: var(--ivory);
}

.home-column__heading {
  display: grid;
  gap: 50px;
  margin-bottom: 62px;
  align-items: end;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
}

.home-column__heading > p {
  max-width: 440px;
  color: var(--muted);
}

.home-column .article-card {
  background: transparent;
}

.home-column .section-action {
  justify-content: flex-start;
  margin-top: 54px;
}

.editorial-policy {
  max-width: 840px;
  padding-block: 92px 136px;
}

.editorial-policy section {
  padding-block: 34px 42px;
  border-top: 1px solid var(--line);
}

.editorial-policy section h2 {
  margin-bottom: 15px;
  font-size: 26px;
}

.editorial-policy section p {
  color: var(--muted);
}

.editorial-policy .text-link {
  margin-top: 22px;
}

@media (max-width: 1023px) {
  .site-menu__links {
    gap: 0;
  }

  .article-card--with-image {
    min-height: 500px;
  }

  .home-column__heading {
    gap: 34px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .column-hero__links {
    margin-top: 28px;
  }

  .article-card--with-image {
    min-height: 0;
  }

  .article-card__image {
    margin: 0 0 24px;
  }

  .article-cover {
    margin-top: 42px;
  }

  .article-toc {
    margin-bottom: 58px;
    padding-block: 28px 30px;
  }

  .article-toc h2 {
    font-size: 22px;
  }

  .article-toc a {
    gap: 10px;
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .article-table {
    min-width: 540px;
    font-size: 13px;
  }

  .article-safety {
    gap: 8px;
    margin-top: 58px;
    padding: 24px 22px;
    grid-template-columns: 1fr;
  }

  .article-faq,
  .article-products {
    margin-top: 64px;
  }

  .article-faq > h2,
  .article-products__heading h2 {
    font-size: 24px;
  }

  .article-faq dt {
    padding-left: 28px;
    font-size: 18px;
  }

  .article-faq dd {
    padding-left: 28px;
  }

  .article-product {
    gap: 18px;
    grid-template-columns: minmax(110px, 38%) minmax(0, 1fr);
  }

  .article-product__media {
    min-height: 0;
  }

  .article-product h3 {
    font-size: 19px;
  }

  .article-product .button {
    gap: 14px;
  }

  .home-column {
    padding-block: 82px 94px;
  }

  .home-column__heading {
    margin-bottom: 42px;
  }

  .home-column .section-action {
    margin-top: 38px;
  }

  .editorial-policy {
    padding-block: 60px 96px;
  }

  .editorial-policy section h2 {
    font-size: 23px;
  }
}
