:root {
  --orange: #ef6a2e;
  --orange-dark: #cf4f19;
  --orange-soft: #fff0e8;
  --ink: #292724;
  --muted: #6b6862;
  --line: #ddd9d3;
  --paper: #ffffff;
  --surface: #f7f6f3;
  --teal: #1d6664;
  --teal-soft: #e8f2f0;
  --shadow: 0 18px 45px rgba(49, 37, 29, 0.09);
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid rgba(29, 102, 100, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 9px 14px;
  background: var(--ink);
  color: #fff;
}

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

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


.site-header {
  position: relative;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(41, 39, 36, 0.08);
}

.header-main {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  min-height: 96px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  color: var(--orange);
  font-weight: 900;
  line-height: 1;
}

.brand-main {
  font-size: 29px;
}

.brand-sub {
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.site-nav a {
  position: relative;
  color: #56534f;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:not(.nav-cart)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--orange);
  content: "";
  transition: transform 180ms ease;
}

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

.header-action {
  display: flex;
  justify-content: flex-end;
}

.nav-cart,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 23px;
  border: 1px solid var(--orange);
  border-radius: 2px;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.nav-cart:hover,
.button:hover {
  border-color: var(--orange-dark);
  background: var(--orange-dark);
}

.site-nav .nav-cart {
  display: none;
}

.button-outline {
  background: transparent;
  color: var(--orange-dark);
}

.button-outline:hover {
  color: #fff;
}

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

.button-dark:hover {
  border-color: var(--teal);
  background: var(--teal);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
}

/* Shared editorial components */
.eyebrow,
.section-label {
  display: inline-block;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.display-title {
  margin: 0;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", "Noto Serif TC", serif;
  font-size: clamp(48px, 7vw, 108px);
  font-weight: 400;
  line-height: 1.05;
}

.section-title {
  margin: 12px 0 0;
  font-family: Georgia, "Times New Roman", "Noto Serif TC", serif;
  font-size: clamp(34px, 4.6vw, 66px);
  font-weight: 400;
  line-height: 1.18;
}

.section-copy {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
}

.center-heading {
  text-align: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--orange-dark);
  font-weight: 800;
}

.text-link::after {
  content: "→";
}

.inner-banner {
  display: grid;
  min-height: 230px;
  place-items: center;
  overflow: hidden;
  background-color: var(--orange);
  background-image: url("../images/inner-banner-v2.png");
  background-position: center;
  background-size: cover;
}

.inner-banner strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 2px 22px rgba(123, 48, 18, 0.2);
}

.page-intro {
  padding: 104px 0 86px;
  text-align: center;
}

.page-intro .display-title {
  max-width: 1100px;
  margin-inline: auto;
}

.page-intro-copy {
  max-width: 880px;
  margin: 38px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.page-intro-copy p {
  margin: 0 0 18px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

/* Homepage */
.home-hero {
  position: relative;
  min-height: min(780px, calc(100vh - 126px));
  background-color: #ecf1ed;
  background-image: url("../images/hero-wellness-v2.png");
  background-position: center;
  background-size: cover;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.66) 38%, rgba(255, 255, 255, 0.04) 70%);
  content: "";
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  align-items: center;
}

.home-hero-copy {
  width: min(680px, 58%);
  padding: 82px 0;
}

.home-hero .eyebrow {
  color: var(--teal);
}

.home-hero h1 {
  max-width: 650px;
  margin: 14px 0 0;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", "Noto Serif TC", serif;
  font-size: clamp(62px, 8.5vw, 126px);
  font-weight: 400;
  line-height: 0.92;
}

.home-hero h1 span {
  display: block;
  margin-top: 13px;
  color: var(--ink);
  font-family: "Noto Sans TC", "PingFang TC", sans-serif;
  font-size: clamp(25px, 3vw, 45px);
  font-weight: 800;
}

.home-hero p {
  max-width: 600px;
  margin: 28px 0 0;
  color: #514f4b;
  font-size: 17px;
}

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

.choice-statement {
  padding: 106px 0 72px;
  text-align: center;
}

.choice-statement p {
  max-width: 1010px;
  margin: 0 auto;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", "Noto Serif TC", serif;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.24;
}

.choice-statement p::first-letter {
  color: var(--teal);
}

.visual-choices {
  padding: 0 0 112px;
}

.visual-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.visual-choice {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--surface);
}

.visual-choice img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  transition: transform 450ms ease;
}

.visual-choice:nth-child(2) img {
  object-position: 58% center;
}

.visual-choice:hover img {
  transform: scale(1.025);
}

.visual-choice-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 19px 22px;
  background: rgba(255, 255, 255, 0.94);
}

.visual-choice-label strong {
  font-size: 20px;
}

.visual-choice-label span {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
}

.explore {
  overflow: hidden;
  background: var(--orange-soft);
}

.explore-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  min-height: 730px;
}

.explore-copy {
  align-self: center;
  padding: 92px 8vw 92px max(24px, calc((100vw - var(--container)) / 2));
}

.explore-copy .section-title {
  color: var(--orange-dark);
}

.explore-copy p {
  max-width: 650px;
  margin: 25px 0 0;
  color: #5e514a;
}

.explore-copy .text-link {
  margin-top: 30px;
}

.explore-media {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: hidden;
  background: var(--orange);
}

.explore-media::before {
  position: absolute;
  top: 4%;
  left: -9%;
  color: rgba(255, 255, 255, 0.22);
  content: "M";
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(280px, 36vw, 540px);
  line-height: 1;
}

.explore-media img {
  position: relative;
  z-index: 1;
  width: min(83%, 650px);
  filter: drop-shadow(0 22px 30px rgba(73, 28, 9, 0.16));
}

.dose-gallery {
  padding: 110px 0;
}

.dose-gallery .center-heading {
  margin-bottom: 54px;
}

.dose-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.dose-tile {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--surface);
}

.dose-tile img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
}

.dose-tile-copy {
  min-height: 110px;
  padding: 20px;
  border-top: 3px solid var(--orange);
}

.dose-tile-copy strong,
.dose-tile-copy span {
  display: block;
}

.dose-tile-copy strong {
  font-size: 18px;
}

.dose-tile-copy span {
  margin-top: 4px;
  color: var(--muted);
}

.dose-tile-copy b {
  color: var(--orange-dark);
}

.usage-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  background: var(--ink);
  color: #fff;
}

.usage-feature-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.usage-feature-media img {
  width: 100%;
  height: 50%;
  min-height: 360px;
  object-fit: cover;
}

.usage-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 86px max(24px, calc((100vw - var(--container)) / 2)) 86px 8vw;
}

.usage-feature-copy .section-label {
  color: #ffb08b;
}

.usage-feature-copy .section-title {
  max-width: 600px;
}

.usage-feature-copy p {
  max-width: 660px;
  margin: 25px 0 0;
  color: #d5d1cc;
}

.usage-feature-copy .text-link {
  width: fit-content;
  margin-top: 30px;
  color: #ffb08b;
}

.promises {
  padding: 110px 0;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 58px;
  background: var(--line);
  border: 1px solid var(--line);
}

.promise-item {
  min-height: 250px;
  padding: 34px;
  background: #fff;
}

.promise-number {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
}

.promise-item h3 {
  margin: 24px 0 0;
  font-size: 20px;
}

.promise-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.journal-preview {
  padding: 110px 0;
  background: var(--surface);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 58px;
}

.journal-card {
  background: #fff;
}

.journal-card img {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
}

.journal-card-copy {
  padding: 26px 26px 30px;
}

.journal-card-copy span {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
}

.journal-card-copy h3 {
  margin: 10px 0 0;
  font-size: 21px;
  line-height: 1.45;
}

.journal-card-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.closing-cta {
  padding: 100px 0;
  background: var(--teal);
  color: #fff;
  text-align: center;
}

.closing-cta h2 {
  max-width: 900px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", "Noto Serif TC", serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.2;
}

.closing-cta p {
  max-width: 700px;
  margin: 22px auto 0;
  color: #dcebea;
}

.closing-cta .button {
  margin-top: 30px;
  border-color: #fff;
  background: #fff;
  color: var(--teal);
}

.closing-cta .button:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

/* Price page */
.poster-gallery {
  padding: 0 0 110px;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.poster {
  min-width: 0;
  background: var(--surface);
}

.poster img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
}

.poster figcaption {
  padding: 20px;
  border-top: 3px solid var(--orange);
  background: #fff;
  text-align: center;
}

.poster strong,
.poster span {
  display: block;
}

.poster span {
  margin-top: 4px;
  color: var(--orange-dark);
  font-weight: 800;
}

.price-sheets {
  padding: 104px 0 120px;
  background: var(--surface);
}

.price-sheet-list {
  margin-top: 56px;
  border-top: 1px solid var(--line);
}

.price-sheet {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.3fr) auto;
  align-items: center;
  gap: 46px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.price-sheet-title h2 {
  margin: 0;
  color: var(--orange-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 400;
}

.price-sheet-title p,
.price-sheet-detail p {
  margin: 7px 0 0;
  color: var(--muted);
}

.leader-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.leader-row::after {
  flex: 1;
  order: 2;
  border-bottom: 1px dotted #aaa39b;
  content: "";
}

.leader-row span {
  order: 1;
}

.leader-row strong {
  order: 3;
  color: var(--orange-dark);
  font-size: 24px;
}

.price-sheet-actions {
  display: grid;
  gap: 9px;
  min-width: 158px;
}

.price-note {
  max-width: 850px;
  margin: 42px auto 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

/* Product detail */
.product-intro-price {
  margin-top: 18px;
  color: var(--orange-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
}

.product-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 680px;
}

.product-overview-media {
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: hidden;
  background: var(--surface);
}

.product-overview-media img {
  width: min(84%, 660px);
  max-height: 610px;
  object-fit: contain;
}

.product-overview-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 74px max(24px, calc((100vw - var(--container)) / 2)) 74px 7vw;
  background: var(--orange-soft);
}

.product-overview-copy h2 {
  margin: 12px 0 0;
  color: var(--orange-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 400;
  line-height: 1.16;
}

.product-overview-copy p {
  margin: 22px 0 0;
  color: #5e514a;
}

.fact-list {
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid rgba(207, 79, 25, 0.25);
  list-style: none;
}

.fact-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(207, 79, 25, 0.25);
}

.fact-list strong {
  color: var(--orange-dark);
}

.product-media-band {
  display: grid;
  min-height: 440px;
  place-items: center;
  padding: 66px 24px;
  overflow: hidden;
  background: var(--orange);
  color: #fff;
  text-align: center;
}

.product-media-band span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(66px, 12vw, 176px);
  line-height: 0.85;
  opacity: 0.19;
}

.product-media-band strong {
  display: block;
  margin-top: -0.2em;
  font-size: clamp(28px, 4vw, 52px);
}

.long-content {
  padding: 112px 0;
}

.long-content-inner {
  width: min(calc(100% - 48px), 900px);
  margin-inline: auto;
}

.content-section + .content-section {
  margin-top: 82px;
  padding-top: 82px;
  border-top: 1px solid var(--line);
}

.content-section h2 {
  margin: 0;
  color: var(--orange-dark);
  font-family: Georgia, "Times New Roman", "Noto Serif TC", serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.25;
}

.content-section h3 {
  margin: 34px 0 0;
  font-size: 21px;
}

.content-section p,
.content-section ul,
.content-section ol {
  color: #5f5b55;
}

.content-section p {
  margin: 19px 0 0;
}

.content-section ul,
.content-section ol {
  margin: 20px 0 0;
  padding-left: 1.4em;
}

.content-section li + li {
  margin-top: 10px;
}

.usage-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.usage-step {
  background: var(--surface);
}

.usage-step img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.usage-step span {
  display: block;
  padding: 14px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

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

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

.faq-list summary {
  padding: 22px 4px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.faq-list details p {
  margin: 0;
  padding: 0 4px 24px;
}

.related-doses {
  padding: 92px 0;
  background: var(--surface);
}

.related-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.related-links a {
  padding: 25px 18px;
  background: #fff;
  text-align: center;
}

.related-links strong,
.related-links span {
  display: block;
}

.related-links strong {
  color: var(--orange-dark);
  font-size: 19px;
}

.related-links span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

/* Blog and article */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 110px;
}

.blog-card {
  min-width: 0;
  border-bottom: 1px solid var(--line);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 0.74;
  object-fit: cover;
  background: var(--surface);
}

.blog-card-body {
  padding: 24px 2px 30px;
}

.blog-card-body span {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
}

.blog-card-body h2 {
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", "Noto Serif TC", serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.32;
}

.blog-card-body p {
  margin: 14px 0 0;
  color: var(--muted);
}

.blog-card-body .text-link {
  margin-top: 18px;
}

.blog-empty {
  padding: 80px 24px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.blog-empty p {
  margin: 0;
  color: var(--muted);
}

.article-head {
  padding: 110px 0 60px;
  text-align: center;
}

.article-head h1 {
  max-width: 1050px;
  margin: 16px auto 0;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", "Noto Serif TC", serif;
  font-size: clamp(46px, 6.8vw, 92px);
  font-weight: 400;
  line-height: 1.1;
}

.article-meta {
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
}

.article-feature {
  width: min(calc(100% - 48px), 1180px);
  margin-inline: auto;
}

.article-feature img {
  width: 100%;
  max-height: 690px;
  object-fit: cover;
  background: var(--surface);
}

.article-body {
  width: min(calc(100% - 48px), 820px);
  margin: 86px auto 110px;
  color: #56524d;
  font-size: 18px;
}

.article-body > p:first-child {
  color: var(--ink);
  font-size: 22px;
}

.article-body h2 {
  margin: 70px 0 0;
  color: var(--orange-dark);
  font-family: Georgia, "Times New Roman", "Noto Serif TC", serif;
  font-size: clamp(31px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.3;
}

.article-body h3 {
  margin: 38px 0 0;
  color: var(--ink);
  font-size: 23px;
}

.article-body p,
.article-body ul,
.article-body ol {
  margin-top: 20px;
}

.article-body ul,
.article-body ol {
  padding-left: 1.5em;
}

.article-body blockquote {
  margin: 42px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--orange);
  background: var(--orange-soft);
  color: #5e514a;
}

.article-disclaimer {
  margin-top: 58px;
  padding: 24px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

/* Contact */
.contact-list {
  width: min(calc(100% - 48px), 980px);
  margin: 0 auto 110px;
  border-top: 1px solid var(--line);
}

.contact-row {
  display: grid;
  grid-template-columns: 78px 230px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 148px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.contact-icon {
  display: grid;
  width: 62px;
  height: 62px;
  border: 1px solid var(--orange);
  color: var(--orange-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  place-items: center;
}

.contact-row h2 {
  margin: 0;
  color: var(--orange-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
}

.contact-row p {
  margin: 0;
  color: var(--muted);
}

.contact-closing {
  padding: 100px 0;
  background: var(--orange-soft);
  text-align: center;
}

.contact-closing p {
  max-width: 1000px;
  margin: 0 auto;
  color: var(--orange-dark);
  font-family: Georgia, "Times New Roman", "Noto Serif TC", serif;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.25;
}

/* Cart */
.cart-page {
  min-height: 620px;
  padding: 104px 0 120px;
  text-align: center;
}

.empty-cart {
  width: min(100%, 760px);
  margin: 54px auto 0;
  padding: 64px 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cart-symbol {
  display: block;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 62px;
}

.empty-cart h2 {
  margin: 16px 0 0;
  font-size: 25px;
}

.empty-cart p {
  margin: 12px auto 0;
  color: var(--muted);
}

.empty-cart .button {
  margin-top: 28px;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(2, minmax(170px, 0.7fr));
  gap: 70px;
  padding-top: 72px;
  padding-bottom: 62px;
}

.footer-brand {
  color: #ff9a68;
  font-size: 31px;
  font-weight: 900;
}

.footer-copy {
  max-width: 480px;
  margin: 18px 0 0;
  color: #c8c3bd;
  font-size: 14px;
}

.footer-group h2 {
  margin: 0;
  color: #ff9a68;
  font-size: 13px;
}

.footer-group ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.footer-group li + li {
  margin-top: 9px;
}

.footer-group a {
  color: #d9d5d0;
  font-size: 14px;
}

.footer-group a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #a8a39d;
  font-size: 12px;
}

@media (max-width: 1040px) {
  .header-main {
    grid-template-columns: 1fr auto auto;
  }

  .site-nav {
    gap: 21px;
  }

  .explore-grid,
  .product-overview,
  .usage-feature {
    grid-template-columns: 1fr;
  }

  .explore-copy,
  .product-overview-copy,
  .usage-feature-copy {
    padding: 78px max(24px, calc((100vw - var(--container)) / 2));
  }

  .explore-media,
  .product-overview-media {
    min-height: 560px;
  }

  .usage-feature-media {
    order: 2;
  }

  .price-sheet {
    grid-template-columns: minmax(210px, 0.7fr) minmax(0, 1.3fr);
  }

  .price-sheet-actions {
    grid-column: 2;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .header-main {
    min-height: 76px;
  }

  .brand-main {
    font-size: 24px;
  }

  .header-action {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 40;
    top: 106px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    padding: 30px 24px;
    background: #fff;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

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

  .site-nav .nav-cart {
    display: flex;
    margin-top: 20px;
    border-bottom: 1px solid var(--orange);
    color: #fff;
  }

  .home-hero {
    min-height: 680px;
    background-position: 61% center;
  }

  .home-hero::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.74) 55%, rgba(255, 255, 255, 0.12) 100%);
  }

  .home-hero-copy {
    width: min(600px, 78%);
  }

  .visual-choice-grid,
  .journal-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .visual-choice:last-child,
  .journal-card:last-child,
  .blog-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 11px);
    justify-self: center;
  }

  .dose-strip,
  .poster-grid,
  .usage-steps,
  .related-links {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-row {
    grid-template-columns: 68px 190px minmax(0, 1fr);
  }

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

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .container,
  .long-content-inner,
  .article-feature,
  .article-body,
  .contact-list {
    width: min(calc(100% - 28px), var(--container));
  }


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

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