:root {
  --red: #c91513;
  --red-dark: #740b0b;
  --red-deep: #430606;
  --gold: #d6a44a;
  --gold-light: #f5d998;
  --ink: #211916;
  --muted: #746660;
  --paper: #fff8ef;
  --blush: #f8e8dc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 40px));
  height: 68px;
  padding: 0 16px 0 20px;
  border: 1px solid rgba(255, 240, 205, .24);
  border-radius: 8px;
  background: rgba(82, 5, 5, .76);
  box-shadow: 0 16px 50px rgba(46, 0, 0, .18);
  backdrop-filter: blur(16px);
  color: #fff8e8;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-seal {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(245, 217, 152, .72);
  background: var(--red);
  color: #fff1ce;
  display: grid;
  place-items: center;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 23px;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.08);
}

.brand b,
.brand small {
  display: block;
}

.brand b {
  letter-spacing: .15em;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 18px;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 248, 232, .66);
  font-size: 9px;
  letter-spacing: .18em;
}

.site-header nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
}

.site-header nav a {
  position: relative;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--gold-light);
  content: "";
  transform: scaleX(0);
  transition: transform .25s ease;
}

.site-header nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  padding: 11px 18px;
  border: 1px solid rgba(245, 217, 152, .6);
  font-size: 12px;
  letter-spacing: .12em;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 145px max(5vw, calc((100vw - 1180px) / 2)) 88px;
  background:
    radial-gradient(circle at 82% 25%, rgba(225, 70, 36, .32), transparent 28%),
    linear-gradient(125deg, #5a0607 0%, #960d0d 48%, #5a0707 100%);
  color: #fff7e9;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 64px;
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -180px;
  width: 70%;
  height: 280px;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(90deg, #8e0909, #f33a22 38%, #8a0808);
  filter: blur(1px);
  content: "";
  opacity: .55;
  transform: rotate(-4deg);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .09;
  background: url("images/palace-red.png") center / cover;
  mix-blend-mode: screen;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
}

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

.hero h1 {
  margin: 0;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(58px, 6vw, 96px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: .03em;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: normal;
}

.hero-lead {
  max-width: 560px;
  margin: 30px 0 0;
  color: rgba(255, 247, 233, .74);
  font-family: "Songti SC", "SimSun", serif;
  font-size: 17px;
  line-height: 1.95;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.primary-button {
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid var(--gold-light);
  background: var(--gold-light);
  color: #5b0707;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.primary-button:hover {
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  transform: translateY(-2px);
}

.text-link {
  color: #fff3d8;
  font-size: 13px;
}

.text-link span {
  margin-left: 8px;
  color: var(--gold);
}

.hero-stats {
  max-width: 500px;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid rgba(245, 217, 152, .24);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-stats div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.hero-stats strong {
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 29px;
}

.hero-stats span {
  color: rgba(255,255,255,.6);
  font-size: 11px;
}

.hero-visual {
  min-height: 600px;
}

.hero-image-wrap {
  position: absolute;
  top: 0;
  right: -7vw;
  width: min(720px, 56vw);
  height: 570px;
  overflow: hidden;
  border: 1px solid rgba(245, 217, 152, .22);
  border-radius: 50% 0 0 50%;
  box-shadow: 0 45px 90px rgba(28, 0, 0, .35);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(91, 5, 5, .82), transparent 38%, rgba(70, 3, 3, .14));
  content: "";
}

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

.tea-cup {
  position: absolute;
  right: 5%;
  bottom: 7px;
  width: 160px;
  height: 150px;
  filter: drop-shadow(0 18px 25px rgba(30,0,0,.45));
}

.cup-bowl {
  position: absolute;
  right: 15px;
  bottom: 24px;
  width: 120px;
  height: 72px;
  border-radius: 12px 12px 58px 58px;
  background: linear-gradient(150deg, #fff6df, #d9af64);
  color: #8c1a12;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 20px;
  display: grid;
  place-items: center;
}

.cup-bowl::after {
  position: absolute;
  top: 8px;
  right: -30px;
  width: 38px;
  height: 38px;
  border: 9px solid #dcba76;
  border-left: 0;
  border-radius: 0 50% 50% 0;
  content: "";
}

.cup-saucer {
  position: absolute;
  right: 0;
  bottom: 10px;
  width: 160px;
  height: 25px;
  border-radius: 50%;
  background: #d5a44a;
}

.steam {
  position: absolute;
  bottom: 100px;
  width: 26px;
  height: 58px;
  border-left: 2px solid rgba(255,255,255,.42);
  border-radius: 50%;
}

.steam-one { left: 62px; transform: rotate(10deg); }
.steam-two { left: 92px; bottom: 108px; transform: rotate(-12deg); }

.visual-caption {
  position: absolute;
  left: 2%;
  bottom: 45px;
  margin: 0;
  color: rgba(255,255,255,.66);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 17px;
  letter-spacing: .35em;
  writing-mode: vertical-rl;
}

.visual-caption span {
  color: var(--gold-light);
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 30px;
  left: 50%;
  color: rgba(255,255,255,.56);
  font-size: 10px;
  letter-spacing: .24em;
  transform: translateX(-50%);
}

.scroll-cue span {
  display: block;
  margin-top: 6px;
  text-align: center;
}

.section {
  padding: 120px max(6vw, calc((100vw - 1160px) / 2));
}

.section-heading h2,
.herbs-title h2,
.craft h2,
.drink h2,
.closing h2 {
  margin: 0;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(45px, 5vw, 70px);
  line-height: 1.16;
  letter-spacing: .02em;
}

.section-heading > p:last-child,
.herbs-title > p,
.craft-copy > p,
.drink-copy > p {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-family: "Songti SC", "SimSun", serif;
  font-size: 16px;
  line-height: 2;
}

.formula {
  min-height: 760px;
  background:
    linear-gradient(rgba(255,248,239,.96), rgba(255,248,239,.96)),
    url("images/palace-red.png") center / cover;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.formula-orbit {
  position: relative;
  width: min(520px, 44vw);
  aspect-ratio: 1;
  margin-left: auto;
}

.orbit-center {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f04a37, var(--red-dark));
  box-shadow: 0 20px 50px rgba(139, 13, 13, .25), inset 0 0 0 9px rgba(255,255,255,.1);
  color: white;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.orbit-center span {
  font-size: 13px;
  letter-spacing: .25em;
}

.orbit-center strong {
  color: #ffe1a6;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 42px;
}

.orbit-item {
  position: absolute;
  z-index: 3;
  width: 160px;
  padding: 18px;
  border: 1px solid #ecd9c8;
  background: rgba(255, 253, 248, .9);
  box-shadow: 0 12px 30px rgba(88, 32, 17, .06);
}

.orbit-item b,
.orbit-item span {
  display: block;
}

.orbit-item b {
  color: var(--red);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 25px;
}

.orbit-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.item-one { top: 2%; left: 10%; }
.item-two { top: 25%; right: -3%; }
.item-three { bottom: 3%; left: 17%; }

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(201, 21, 19, .16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one { width: 72%; height: 72%; }
.ring-two { width: 98%; height: 98%; border-style: dashed; }

.herbs {
  position: relative;
  overflow: hidden;
  background: #f5e5d7;
}

.herbs::before {
  position: absolute;
  top: 0;
  right: -10%;
  width: 45%;
  height: 100%;
  background: linear-gradient(150deg, transparent 0 35%, rgba(202, 77, 41, .08) 35% 65%, transparent 65%);
  content: "";
}

.section-kicker {
  border-bottom: 1px solid rgba(116, 11, 11, .2);
  display: flex;
  justify-content: space-between;
}

.section-kicker > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .18em;
}

.herbs-title {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 60px;
}

.herb-grid {
  position: relative;
  z-index: 2;
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.herb-card {
  overflow: hidden;
  border: 1px solid rgba(91, 7, 7, .12);
  background: rgba(255, 250, 243, .84);
  transition: transform .3s ease, box-shadow .3s ease;
}

.herb-card:hover {
  box-shadow: 0 24px 50px rgba(91, 7, 7, .1);
  transform: translateY(-7px);
}

.herb-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #e8d5c6;
}

.herb-image::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(45, 16, 5, .34));
  content: "";
}

.herb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.herb-card:hover img {
  transform: scale(1.05);
}

.herb-image span {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 12px;
  color: white;
  font-family: Georgia, serif;
  font-size: 34px;
}

.herb-content {
  min-height: 210px;
  padding: 24px;
}

.herb-content > p {
  margin: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
}

.herb-content h3 {
  margin: 10px 0 14px;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 27px;
}

.herb-content small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.ingredient-list {
  margin: 38px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(116, 11, 11, .16);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: .05em;
}

.craft {
  position: relative;
  min-height: 810px;
  overflow: hidden;
  background: linear-gradient(125deg, var(--red-deep), #8d0d0c);
  color: white;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 75px;
}

.craft::before {
  position: absolute;
  inset: 0;
  background: url("images/palace-red.png") center / cover;
  content: "";
  opacity: .08;
  mix-blend-mode: screen;
}

.craft-copy,
.ferment-wheel {
  position: relative;
  z-index: 2;
}

.craft-copy > p {
  color: rgba(255,255,255,.7);
}

.craft blockquote {
  margin: 38px 0 0;
  padding: 18px 0 18px 22px;
  border-left: 2px solid var(--gold);
  color: #f4dbab;
  font-family: "Songti SC", "SimSun", serif;
  font-size: 15px;
  line-height: 1.8;
}

.ferment-wheel {
  width: min(560px, 46vw);
  aspect-ratio: 1;
  margin-left: auto;
  border: 1px solid rgba(245, 217, 152, .24);
  border-radius: 50%;
}

.ferment-wheel::before,
.ferment-wheel::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(245, 217, 152, .16);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.ferment-wheel::before { width: 72%; height: 72%; }
.ferment-wheel::after { width: 45%; height: 45%; }

.wheel-center {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 185px;
  height: 185px;
  border-radius: 50%;
  background: linear-gradient(145deg, #e23b2c, #9a0d0c);
  box-shadow: 0 28px 55px rgba(20,0,0,.32), inset 0 0 0 7px rgba(255,255,255,.08);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wheel-center small {
  color: var(--gold-light);
  font-size: 9px;
  letter-spacing: .2em;
}

.wheel-center strong {
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 43px;
}

.wheel-center span {
  color: rgba(255,255,255,.65);
  font-size: 12px;
}

.wheel-point {
  position: absolute;
  z-index: 3;
  width: 165px;
  color: rgba(255,255,255,.66);
  font-size: 12px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wheel-point b {
  flex: 0 0 55px;
  width: 55px;
  height: 55px;
  border: 1px solid rgba(245, 217, 152, .65);
  border-radius: 50%;
  background: #a80f0f;
  color: var(--gold-light);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 27px;
  display: grid;
  place-items: center;
}

.point-1 { top: 4%; left: 35%; flex-direction: column; text-align: center; }
.point-2 { top: 42%; right: -8%; }
.point-3 { bottom: 4%; left: 39%; flex-direction: column; text-align: center; }
.point-4 { top: 42%; left: -7%; flex-direction: row-reverse; text-align: right; }

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

.centered {
  text-align: center;
}

.centered > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.benefit-line {
  position: relative;
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.benefit-line::before {
  position: absolute;
  top: 46px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: rgba(201, 21, 19, .22);
  content: "";
}

.benefit-line article {
  position: relative;
  z-index: 2;
  padding: 0 14px;
  text-align: center;
}

.benefit-line article > span {
  display: block;
  color: #b49989;
  font-family: Georgia, serif;
  font-size: 11px;
}

.benefit-line article > b {
  width: 64px;
  height: 64px;
  margin: 9px auto 18px;
  border: 1px solid #ddbcb3;
  border-radius: 50%;
  background: var(--paper);
  color: var(--red);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 29px;
  display: grid;
  place-items: center;
}

.benefit-line h3 {
  margin: 0 0 10px;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 22px;
}

.benefit-line p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.drink {
  padding-top: 0;
  background: var(--paper);
}

.drink-panel {
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(91, 6, 6, .98), rgba(149, 14, 13, .94)),
    url("images/palace-red.png") center / cover;
  color: white;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
}

.drink-copy {
  padding: 78px 64px;
}

.drink-copy > p {
  color: rgba(255,255,255,.65);
}

.time-list {
  padding: 56px;
  background: rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.time-list > div {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  display: grid;
  grid-template-columns: 150px 100px 1fr;
  align-items: center;
  gap: 20px;
}

.time-list > div:last-child {
  border-bottom: 0;
}

.time-list time {
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 18px;
}

.time-list span {
  font-weight: 700;
}

.time-list p {
  margin: 0;
  color: rgba(255,255,255,.6);
  font-size: 12px;
  line-height: 1.6;
}

.drink-note {
  padding: 24px 28px;
  border: 1px solid #ead6c5;
  border-top: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
}

.drink-note b {
  color: var(--red);
}

.drink-note p {
  margin: 0;
}

.closing {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  padding: 110px max(6vw, calc((100vw - 1160px) / 2));
  background: #efd8c5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.closing > div {
  position: relative;
  z-index: 2;
}

.closing img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  mask-image: linear-gradient(90deg, transparent, black 25%);
}

.closing .primary-button {
  margin-top: 35px;
}

.primary-button.pale {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

footer {
  padding: 54px max(6vw, calc((100vw - 1160px) / 2));
  background: #250303;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 30px;
}

.footer-brand small {
  color: rgba(255,255,255,.45);
}

footer > p {
  color: rgba(255,255,255,.55);
  font-size: 12px;
  letter-spacing: .12em;
  text-align: center;
}

footer > small {
  color: rgba(255,255,255,.4);
  font-size: 10px;
}

.mobile-bar {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .site-header nav,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 125px 24px 80px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(54px, 16vw, 78px);
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-image-wrap {
    right: -24px;
    width: calc(100% + 12px);
    height: 420px;
    border-radius: 45% 0 0 45%;
  }

  .tea-cup {
    right: 3%;
    transform: scale(.82);
  }

  .hero-stats span {
    display: block;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 86px 24px;
  }

  .formula,
  .craft,
  .drink-panel {
    grid-template-columns: 1fr;
  }

  .formula-orbit,
  .ferment-wheel {
    width: min(520px, 90vw);
    margin: 30px auto 0;
  }

  .herbs-title {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .craft {
    padding-bottom: 115px;
  }

  .benefit-line {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 0;
  }

  .benefit-line::before {
    display: none;
  }

  .drink-copy {
    padding: 62px 38px;
  }

  .time-list {
    padding: 30px 38px;
  }

  .closing {
    min-height: 700px;
    padding: 80px 30px 350px;
    grid-template-columns: 1fr;
  }

  .closing img {
    width: 100%;
    height: 420px;
    mask-image: linear-gradient(180deg, transparent, black 28%);
  }

  footer {
    padding-bottom: 95px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .mobile-bar {
    position: fixed;
    z-index: 40;
    right: 10px;
    bottom: 10px;
    left: 10px;
    height: 56px;
    border: 1px solid rgba(245, 217, 152, .34);
    border-radius: 8px;
    background: rgba(73, 4, 4, .92);
    box-shadow: 0 16px 40px rgba(27,0,0,.28);
    backdrop-filter: blur(14px);
    color: white;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .mobile-bar a {
    font-size: 12px;
    display: grid;
    place-items: center;
  }

  .mobile-bar a + a {
    border-left: 1px solid rgba(255,255,255,.12);
  }
}

@media (max-width: 620px) {
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-stats {
    gap: 10px;
  }

  .hero-stats div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-image-wrap {
    height: 365px;
  }

  .visual-caption {
    display: none;
  }

  .formula-orbit {
    margin-top: 55px;
  }

  .orbit-center {
    width: 135px;
    height: 135px;
  }

  .orbit-center strong {
    font-size: 34px;
  }

  .orbit-item {
    width: 125px;
    padding: 12px;
  }

  .orbit-item b {
    font-size: 21px;
  }

  .item-one { left: 2%; }
  .item-two { right: -1%; }
  .item-three { left: 8%; }

  .section-kicker > p:last-child {
    display: none;
  }

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

  .herb-image {
    height: 245px;
  }

  .ferment-wheel {
    margin-top: 50px;
  }

  .wheel-center {
    width: 130px;
    height: 130px;
  }

  .wheel-center strong {
    font-size: 34px;
  }

  .wheel-point {
    width: 115px;
    font-size: 10px;
  }

  .wheel-point b {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .point-1 { left: 35%; }
  .point-2 { right: -2%; }
  .point-3 { left: 36%; }
  .point-4 { left: -2%; }

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

  .time-list > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .drink-note {
    grid-template-columns: 1fr;
  }

  .closing h2 {
    font-size: 42px;
  }
}

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

  * {
    transition: none !important;
  }
}
