@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

:root {
  --cream: #fbfaf6;
  --cream-soft: #f5f2e9;
  --paper: #ffffff;
  --ink: #11130f;
  --muted: #687069;
  --line: rgba(17, 19, 15, 0.14);
  --green: #123c2c;
  --green-deep: #0a2c20;
  --green-bright: #1e9e58;
  --accent: #ffbc40;
  --accent-soft: #ffd88d;
  --container: 1280px;
  --gutter: 80px;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --shadow: 0 24px 70px rgba(14, 26, 20, 0.12);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
}

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

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

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

address {
  font-style: normal;
}

[hidden] {
  display: none !important;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.container,
.header-inner {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: 150px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 64px;
}

.section-heading h2,
.strengths .section-heading h2,
.business .section-heading h2 {
  font-size: clamp(36px, 3.1vw, 44px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.13;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.section-eyebrow::before {
  display: none;
}

.section-eyebrow--green {
  color: var(--green-bright);
}

.section-eyebrow--gold {
  color: var(--accent);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.35s var(--ease-out), background-color 0.35s ease;
}

.button--gold {
  background: var(--accent);
  color: var(--ink);
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  color: #fff;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(251, 250, 246, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(15px);
}

.header-inner {
  width: calc(100% - 96px);
  max-width: none;
  display: grid;
  min-height: 88px;
  grid-template-columns: 204px 1fr 204px;
  align-items: center;
  transition: min-height 0.35s var(--ease-out);
}

.site-header.is-scrolled .header-inner {
  min-height: 64px;
}

.brand-link {
  display: inline-flex;
  width: 170px;
  height: 42px;
  align-items: center;
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out);
}

.site-header.is-scrolled .brand-link {
  width: 130px;
  height: 34px;
}

.brand-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.brand-logo--light {
  filter: grayscale(1) brightness(0) invert(1);
  transition: filter 0.35s ease;
}

.site-header.is-scrolled .brand-logo--light {
  filter: none;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.14px;
  line-height: 20px;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.store-link {
  display: inline-flex;
  width: 108px;
  min-height: 44px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transition: width 0.35s var(--ease-out), min-height 0.35s var(--ease-out), background-color 0.35s ease, border-color 0.35s ease;
}

.store-link img {
  display: block;
  width: 70px;
  height: auto;
  filter: grayscale(1) brightness(0) invert(1);
  transition: width 0.35s var(--ease-out), filter 0.35s ease;
}

.site-header.is-scrolled .store-link {
  width: 94px;
  min-height: 36px;
  border-color: rgba(17, 19, 15, 0.2);
  background: rgba(255, 255, 255, 0.72);
}

.site-header.is-scrolled .store-link img {
  width: 64px;
  filter: none;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  height: 100vh;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  background: #0a0b09;
  color: #fff;
  isolation: isolate;
}

.hero-media,
.hero::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background: url("../assets/figma/hero-ginger.png") center center / cover no-repeat;
  transform: scale(1.015);
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 15, 9, 0.68) 0%, rgba(5, 15, 9, 0.16) 52%, rgba(5, 15, 9, 0.58) 100%),
    rgba(7, 17, 11, 0.34);
  content: "";
}

.hero-content {
  width: min(calc(100% - 48px), 970px);
  padding-top: 18px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  width: 232px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  padding: 0;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  line-height: 18px;
}

.hero h1 {
  width: 840px;
  max-width: 100%;
  margin-inline: auto;
  font-size: clamp(50px, 4.45vw, 64px);
  font-weight: 700;
  letter-spacing: -1.92px;
  line-height: 74px;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.hero-copy {
  width: 760px;
  max-width: 100%;
  margin-top: 22px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.095px;
  line-height: 31px;
}

.scroll-cue {
  position: absolute;
  bottom: 38px;
  left: 50%;
  display: none;
  width: 34px;
  height: 56px;
  place-items: start center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 4px;
  height: 4px;
  margin-top: 11px;
  border-radius: 50%;
  background: var(--accent);
  animation: scroll-dot 1.9s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  75% { opacity: 1; }
  100% { opacity: 0; transform: translateY(24px); }
}

/* About */
.about {
  min-height: 780px;
  padding-block: 88px 0;
  overflow: hidden;
  background: var(--cream);
  isolation: isolate;
}

.about-wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../assets/figma/about-background-v1.png") center center / cover no-repeat;
}

.about::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(249, 245, 236, 0.56);
  content: "";
}

.about-layout {
  display: grid;
  grid-template-columns: 430px 430px 1fr;
  grid-template-rows: auto auto;
  column-gap: 74px;
  row-gap: 38px;
  align-items: start;
}

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

.about-heading .section-eyebrow {
  margin-bottom: 82px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.065px;
  line-height: 18px;
}

.about-heading h2 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -1.68px;
  line-height: 76px;
}

.about-heading h2 span {
  color: var(--green-bright);
  font-family: inherit;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: inherit;
}

.about-copy {
  padding-top: 0;
}

.about-copy h3 {
  margin-bottom: 36px;
  color: #6f746e;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.09px;
  line-height: 28px;
}

.about-copy p {
  color: #6f746e;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.075px;
  line-height: 25px;
}

.about-copy--accent {
  padding-left: 0;
}

.about-copy--accent::before {
  display: none;
}

.about-copy--accent h3 {
  color: var(--green-bright);
  letter-spacing: -0.54px;
}

/* Strengths */
.strengths {
  min-height: 600px;
  padding-block: 64px 0;
  background: #fcfbf8;
}

.strengths .section-heading {
  display: block;
  margin-bottom: 72px;
}

.strengths .section-heading h2::first-line {
  color: var(--accent);
}

.strengths .section-heading .section-eyebrow {
  margin-bottom: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.065px;
  line-height: 18px;
}

.strengths .section-heading h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 54px;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(4, 296px);
  gap: 24px;
  border: 0;
}

.strength-item {
  min-height: 220px;
  padding: 0;
  border: 0;
}

.strength-item:last-child {
  border: 0;
}

.strength-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 16px;
}

.strength-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.strength-icon--green {
  background: #e8f1ea;
}

.strength-icon--gold {
  background: #f4ebd7;
}

.strength-item h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.48px;
  line-height: 34px;
}

.strength-item h3::after {
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 10px;
  background: var(--accent);
  content: "";
}

.strength-item p {
  width: 262px;
  margin-top: 20px;
  color: #555a55;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.07px;
  line-height: 22px;
}

/* Honggang */
.section--dark,
.honggang {
  background: var(--green);
  color: #fff;
}

.honggang {
  padding: 60px 0;
}

.honggang-intro {
  display: grid;
  min-height: 330px;
  grid-template-columns: 470px 790px;
  gap: 20px;
  align-items: start;
}

.honggang-heading .section-eyebrow {
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.065px;
  line-height: 18px;
}

.honggang-heading h2 {
  margin-bottom: 26px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 42px;
}

.honggang-heading > p:not(.section-eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.08px;
  line-height: 25px;
}

.honggang-logo {
  width: 190px;
  height: 50px;
  margin-top: 52px;
  object-fit: contain;
  object-position: left center;
  filter: none;
}

.honggang-product {
  position: relative;
  width: 790px;
  height: 330px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: none;
}

.honggang-product::after {
  display: none;
}

.honggang-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.honggang-stats {
  display: grid;
  min-height: 178px;
  margin-block: 36px 40px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(106, 143, 124, 0.35);
  border-radius: 28px;
  background: #0a3022;
}

.stat-item {
  position: relative;
  min-height: 0;
  padding: 19px 29px 18px;
  border-right: 0;
  text-align: left;
}

.stat-item:not(:last-child)::after {
  position: absolute;
  top: 27px;
  right: 0;
  width: 1px;
  height: 122px;
  background: rgba(255, 255, 255, 0.14);
  content: "";
}

.count-value {
  display: block;
  min-height: 48px;
  color: var(--accent);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 40px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -1px;
  line-height: 48px;
}

.count-value.is-spinning {
  filter: blur(0.7px);
  text-shadow: 0 0 18px rgba(255, 188, 64, 0.26);
}

.stat-item h3 {
  margin: 5px 0 12px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.085px;
  line-height: 24px;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.06px;
  line-height: 18px;
}

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

.technology-card {
  position: relative;
  display: block;
  height: 330px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background-position: center;
  background-size: cover;
  color: #fff;
  cursor: pointer;
  text-align: left;
  isolation: isolate;
}

.technology-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.62);
  content: "";
  transition: background-color 0.35s ease;
}

.technology-card--healthy::before,
.technology-card--tasty::before,
.technology-card--purify::before {
  background: rgba(0, 0, 0, 0.64);
}

.technology-card--only {
  background-image: url("../assets/figma/hero-ginger.png");
  background-position: center 58%;
}

.technology-card--healthy {
  background-image: url("../assets/figma/rnd-ginger-lab.png");
}

.technology-card--tasty {
  background-image: url("../assets/figma/teagether-lifestyle.jpg");
}

.technology-card--purify {
  background-image: url("../assets/figma/oem-ginger-process.png");
}

.technology-card__index {
  position: absolute;
  top: 28px;
  left: 28px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.065px;
  line-height: 18px;
}

.technology-card__title {
  position: absolute;
  top: 72px;
  left: 28px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.16px;
  line-height: 38px;
}

.technology-card__copy {
  position: absolute;
  top: 34px;
  left: 275px;
  width: 317px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.06px;
  line-height: 19px;
}

.technology-card__metric {
  position: absolute;
  top: 70px;
  left: 28px;
  display: block;
  color: var(--accent);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 62px;
  font-weight: 700;
  letter-spacing: -1.55px;
  line-height: 82px;
}

.technology-card--healthy .technology-card__title,
.technology-card--purify .technology-card__title {
/*  top: 176px; */
  font-size: 30px;
  letter-spacing: -0.15px;
  line-height: 36px;
}

.technology-card--purify .technology-card__metric {
  font-size: 54px;
  letter-spacing: -1.35px;
  line-height: 74px;
}

/* Business */
.business {
  min-height: 900px;
  padding-block: 64px 0;
  background: #fbfaf6;
}

.business .section-heading {
  display: block;
  margin-bottom: 72px;
}

.business .section-heading .section-eyebrow {
  margin-bottom: 38px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.065px;
  line-height: 18px;
}

.business .section-heading h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 54px;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, 296px);
  gap: 32px;
}

.business-card {
  position: relative;
  display: block;
  width: 296px;
  height: 507px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  background-position: center;
  background-size: cover;
  color: #fff;
  cursor: pointer;
  text-align: left;
  isolation: isolate;
  border:1px solid #dfdfdf;
}

.business-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 49.3%, rgba(0, 0, 0, 0.78) 100%);
  content: "";
}

.business-card::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: inherit;
  background-position: center;
  background-size: cover;
  content: "";
  transition: transform 0.7s var(--ease-out);
}

.business-card--magic { background-image: url("../assets/figma/magic-ginger-lifestyle.jpg"); }
.business-card--teagether { background-image: url("../assets/figma/teagether-lifestyle.jpg"); }
.business-card--plus { background-image: url("../assets/figma/honggang-plus.jpg"); }
.business-card--general { background-image: url("../assets/figma/general-food.jpg"); }

.business-card__index {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  width: 52px;
  height: 30px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
}

.business-card__body {
  position: absolute;
  top: 382px;
  left: 22px;
  display: block;
  width: 252px;
  margin: 0;
  padding: 0;
}

.business-card__body strong,
.business-card__body small {
  display: block;
}

.business-card__body strong {
  margin-bottom: 17px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.44px;
  line-height: 30px;
}

.business-card__body small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.06px;
  line-height: 18px;
}

.business-card__arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 18px;
  transition: transform 0.35s var(--ease-out);
}

/* OEM */
.oem {
  min-height: 652px;
  padding-block: 60px;
  background: #f2f4f1;
}

.oem-panel {
  position: relative;
  display: block;
  min-height: 532px;
  overflow: hidden;
  border-radius: 28px;
  background: url("../assets/figma/oem-ginger-process.png") center center / cover no-repeat;
  color: #fff;
  isolation: isolate;
}

.oem-panel::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(4, 5, 4, 0.86) 0%, rgba(4, 5, 4, 0.56) 48%, rgba(4, 5, 4, 0.08) 100%);
  content: "";
}

.oem-copy {
  position: absolute;
  top: 112px;
  left: 64px;
  padding: 0;
}

.oem-copy .section-eyebrow {
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.56px;
  line-height: 20px;
}

.oem-copy h2 {
  margin-bottom: 22px;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.92px;
  line-height: 60px;
}

.oem-copy > p:not(.section-eyebrow) {
  margin-bottom: 54px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.09px;
  line-height: 29px;
}

.oem-copy .button {
  width: 168px;
  min-height: 50px;
  height: 50px;
  gap: 10px;
  padding: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
}

.oem-copy .button span {
  font-size: 18px;
  line-height: 18px;
}

/* R&D */
.rnd {
  background: var(--cream);
}

.rnd-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 96px;
  align-items: stretch;
}

.rnd-image {
  min-height: 760px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.rnd-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rnd-content {
  align-self: center;
}

.rnd-content h2 {
  margin-bottom: 28px;
  font-size: clamp(34px, 2.8vw, 40px);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.14;
}

.rnd-lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

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

.rnd-item {
  display: grid;
  padding-block: 28px;
  grid-template-columns: 48px 1fr 34px;
  gap: 20px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.rnd-item > span {
  color: var(--green-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.rnd-item h3 {
  margin-bottom: 8px;
  font-size: 19px;
  letter-spacing: -0.035em;
}

.rnd-item p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.rnd-item i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
  font-style: normal;
}

/* Contact */
.contact {
  padding-block: 60px;
  background: var(--cream);
}

.contact-panel {
  display: grid;
  min-height: 510px;
  padding: 36px;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 636px);
  grid-template-rows: 1fr auto;
  gap: 26px 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: var(--green);
  color: #fff;
}

.contact-heading {
  padding: 20px 0 0 16px;
}

.contact-heading h2 {
  font-size: clamp(28px, 2.3vw, 34px);
  font-weight: 680;
  letter-spacing: -0.055em;
  line-height: 1.22;
}

.contact-details {
  display: grid;
  margin: 0;
  padding: 26px 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 23px 28px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(15px);
}

.contact-details div:last-child {
  grid-column: 1 / -1;
}

.contact-details span {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.contact-details a,
.contact-details p {
  color: #26322c;
  font-size: 14px;
  line-height: 1.55;
}

.contact-map {
  position: relative;
  display: block;
  grid-column: 2;
  grid-row: 1 / 3;
  min-height: 438px;
  overflow: hidden;
  border-radius: 24px;
  background: #e8f0f4;
}

.contact-map::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 1181px) {
  .contact-panel {
    position: relative;
    display: block;
    width: 1280px;
    min-height: 510px;
    padding: 0;
  }

  .contact-heading {
    position: absolute;
    top: 48px;
    left: 44px;
    width: 510px;
    padding: 0;
  }

  .contact-heading .section-eyebrow {
    margin-bottom: 26px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.065px;
    line-height: 18px;
  }

  .contact-heading h2 {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -0.68px;
    line-height: 46px;
  }

  .contact-details {
    position: absolute;
    top: 218px;
    left: 44px;
    width: 510px;
    min-height: 256px;
    margin: 0;
    padding: 22px 24px;
    gap: 16px 24px;
  }

  .contact-details span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 16px;
  }

  .contact-details a {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.095px;
    line-height: 26px;
  }

  .contact-details p {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.075px;
    line-height: 23px;
  }

  .contact-map {
    position: absolute;
    top: 36px;
    left: 600px;
    width: 636px;
    height: 438px;
    min-height: 438px;
  }
}

/* Footer */
.site-footer {
  padding-block: 72px;
  background: #11130f;
  color: #fff;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.55fr 1fr;
  gap: 64px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 34px;
}

.footer-brand img {
  width: 185px;
  filter: grayscale(1) brightness(0) invert(1);
}

.footer-brand p {
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.footer-company {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.75;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 8px 34px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 700;
}

.footer-nav a {
  transition: color 0.25s ease;
}

/* Dialog and detail pages */
.site-modal {
  width: min(1200px, calc(100vw - 80px));
  max-width: none;
  height: min(820px, calc(100dvh - 64px));
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #f4f4f2;
  color: var(--ink);
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.42);
}

.site-modal::backdrop {
  background: rgba(3, 12, 8, 0.78);
  backdrop-filter: blur(8px);
}

.modal-frame {
  position: relative;
  display: grid;
  height: 100%;
  grid-template-rows: minmax(0, 1fr) auto;
}

.modal-content {
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: var(--accent) rgba(18, 60, 44, 0.08);
  scrollbar-width: thin;
}

.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: rgba(18, 60, 44, 0.08);
}

.modal-content::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: var(--accent);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  background: rgba(4, 13, 9, 0.45);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.modal-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 19px;
  height: 1px;
  background: #fff;
}

.modal-close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.modal-close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.modal-nav {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  padding-inline: 28px;
  border-top: 1px solid rgba(17, 19, 15, 0.12);
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(14px);
}

.modal-nav button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.detail img {
  width: 100%;
}

.detail-hero {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px 52px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  color: #fff;
  isolation: isolate;
}

.detail-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(3, 12, 8, 0.9) 0%, rgba(3, 12, 8, 0.55) 55%, rgba(3, 12, 8, 0.18) 100%);
  content: "";
}

.detail-hero--only { background-image: url("../assets/figma/hero-ginger.png"); }
.detail-hero--healthy { background-image: url("../assets/figma/rnd-ginger-lab.png"); }
.detail-hero--tasty { background-image: url("../assets/figma/teagether-lifestyle.jpg"); }
.detail-hero--purify { background-image: url("../assets/figma/oem-ginger-process.png"); }

.detail-hero > p {
  margin-bottom: 15px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-hero h2 {
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 1;
}

.detail-hero strong {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 500;
}

.detail-body {
  position: relative;
  padding: 72px 390px 86px 70px;
  min-height: 430px;
}

.detail-body > p {
  max-width: 650px;
  margin-bottom: 20px;
  color: #4e554f;
  font-size: 15px;
  line-height: 1.9;
}

.detail-body .detail-lead {
  margin-bottom: 26px;
  color: var(--green);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.5;
}

.detail-body .detail-note {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(18, 60, 44, 0.14);
  color: #7c837e;
  font-size: 12px;
}

.detail-data {
  position: absolute;
  top: 68px;
  right: 70px;
  display: flex;
  width: 260px;
  min-height: 280px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-radius: 24px;
  background: var(--green);
  color: #fff;
  text-align: center;
}

.detail-data span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.detail-data strong {
  margin-block: 10px 17px;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 75px;
  font-weight: 400;
  line-height: 1;
}

.detail-data p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.65;
}

.business-detail-head {
  display: grid;
  min-height: 220px;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--green);
  color: #fff;
}

.business-detail-head > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 44px;
}

.business-detail-head p {
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.business-detail-head h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 4.4vw, 48px);
  font-weight: 680;
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.business-detail-head span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.business-detail-head > img {
  height: 100%;
  min-height: 220px;
  max-height: 220px;
  object-fit: cover;
}

.business-story,
.feature-split,
.business-why,
.oem-block,
.coming-block,
.product-showcase {
  width: min(calc(100% - 120px), 980px);
  margin-inline: auto;
}

.business-story,
.feature-split {
  display: grid;
  padding-block: 80px;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 74px;
  align-items: center;
}

.business-story > img:not(.business-story__logo),
.feature-split > img {
  width: 100%;
  max-height: 430px;
  border-radius: 22px;
  object-fit: cover;
}

.business-story__logo {
  width: 100%;
  max-width: 390px;
  max-height: 260px;
  object-fit: contain;
}

.brand-visual-stack {
  position: relative;
  min-height: 410px;
}

.brand-visual-stack img {
  position: absolute;
  width: 78%;
  height: 72%;
  border-radius: 20px;
  object-fit: contain;
  background: #f3efe5;
  box-shadow: 0 14px 36px rgba(17, 19, 15, 0.1);
}

.brand-visual-stack img:first-child {
  top: 0;
  left: 0;
  z-index: 1;
}

.brand-visual-stack img:last-child {
  right: 0;
  bottom: 0;
  object-fit: cover;
}

.brand-visual-stack .business-story__logo {
  padding: 28px;
  object-fit: contain;
}

.business-story--text-only {
  width: min(calc(100% - 120px), 780px);
  grid-template-columns: 1fr;
  text-align: left;
}

.business-story h3,
.feature-split h3,
.business-why h3,
.product-showcase > h3,
.popup-section-title,
.oem-block h3,
.coming-block h3,
.product-copy h3 {
  margin-bottom: 24px;
  color: var(--green);
  font-size: 30px;
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.business-story h3 em {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

.business-story p,
.feature-split p,
.business-why p,
.why-item p,
.oem-block p,
.coming-block p,
.product-copy p {
  margin-bottom: 16px;
  color: #59605a;
  font-size: 14px;
  line-height: 1.85;
}

.feature-split {
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-split > div {
  padding: 42px 54px 42px 0;
}

.feature-split--reverse > img { order: 2; }
.feature-split--reverse > div { padding: 42px 0 42px 54px; }

.feature-split ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-split li {
  position: relative;
  margin-top: 9px;
  padding-left: 24px;
  color: #59605a;
  font-size: 13px;
}

.feature-split li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--accent);
  content: "✓";
  font-weight: 900;
}

.business-why {
  padding-block: 74px;
}

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

.why-item {
  padding: 28px;
  border: 1px solid rgba(18, 60, 44, 0.12);
  border-radius: 18px;
  background: #fff;
}

.why-item > span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.why-item strong,
.why-item h4 {
  display: block;
  margin-bottom: 9px;
  color: var(--green);
  font-size: 17px;
  font-weight: 750;
}

.why-item p {
  margin: 0;
  font-size: 13px;
}

.certificates {
  display: grid;
  width: min(calc(100% - 120px), 980px);
  margin: 68px auto 0;
  padding: 42px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  align-items: center;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.certificates img {
  height: 220px;
  object-fit: contain;
}

.certificates figure {
  margin: 0;
  text-align: center;
}

.certificates figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
}

.product-showcase {
  padding-block: 82px;
}

.product-grid {
  display: grid;
  gap: 22px;
}

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

.product-grid figure {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(18, 60, 44, 0.1);
  border-radius: 20px;
  background: #fff;
}

.product-grid figure img {
  width: 100%;
  height: 270px;
  object-fit: contain;
  background: #f6f3ea;
}

.product-grid figcaption {
  margin-top: auto;
  padding: 20px 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.product-grid figcaption small,
.product-grid figcaption strong,
.product-grid figcaption span {
  display: block;
}

.product-grid figcaption small {
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.product-grid figcaption span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.product-grid figcaption strong {
  color: var(--ink);
  font-size: 16px;
}

.oem-block,
.coming-block {
  display: grid;
  margin-top: 52px;
  padding: 50px;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 58px;
  align-items: center;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.oem-block img,
.coming-block img {
  width: 100%;
  max-height: 340px;
  border-radius: 18px;
  object-fit: cover;
}

.oem-block > div > p,
.coming-block > div > p {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.oem-block > div > span,
.coming-block > div > span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.oem-block--reverse > img {
  order: 2;
}

.coming-block {
  background: var(--accent);
}

.coming-block h3,
.coming-block p {
  color: var(--ink);
}

.detail-cta,
.shared-cta {
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 40px 70px;
  background: var(--green);
  color: #fff;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.shared-cta {
  position: relative;
  min-height: 300px;
  margin-top: 82px;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.shared-cta::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(3, 13, 8, 0.9), rgba(3, 13, 8, 0.48));
  content: "";
}

.shared-cta--magic { background-image: url("../assets/figma/popup-source/oem-cta.jpg"); }
.shared-cta--tea { background-image: url("../assets/figma/generated-popup/tea-cta-v1.png"); }
.shared-cta--plus { background-image: url("../assets/figma/generated-popup/plus-cta-v1.png"); }
.shared-cta--general { background-image: url("../assets/figma/generated-popup/general-cta-v1.png"); }

.shared-cta > div {
  max-width: 600px;
}

.shared-cta > div > p {
  margin-bottom: 9px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.shared-cta > div > h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 40px;
  letter-spacing: -0.05em;
  line-height: 1.15;
}

.shared-cta > div > span {
  display: block;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
}

.shared-cta > a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  padding: 13px 14px 13px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.shared-cta > a i {
  width: 30px;
  height: 30px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
}

.detail-cta i,
.shared-cta i {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-style: normal;
}

/* Scroll reveal */
.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 48px, 0);
  transition:
    opacity 0.82s ease,
    transform 0.82s var(--ease-out);
  transition-delay: calc(var(--reveal-order, 0) * 0.5s);
  will-change: opacity, transform;
}

.js [data-reveal].is-visible,
.js [data-reveal-group].is-visible [data-reveal] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-order="0"] { --reveal-order: 0; }
[data-order="1"] { --reveal-order: 1; }
[data-order="2"] { --reveal-order: 2; }
[data-order="3"] { --reveal-order: 3; }
[data-order="4"] { --reveal-order: 4; }
[data-order="5"] { --reveal-order: 5; }
[data-order="6"] { --reveal-order: 6; }
[data-order="7"] { --reveal-order: 7; }
[data-order="8"] { --reveal-order: 8; }

/* Pointer interactions */
@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .store-link:hover {
    background: rgba(255, 255, 255, 0.28);
  }

  .site-header.is-scrolled .store-link:hover {
    border-color: rgba(17, 19, 15, 0.34);
    background: #fff;
  }

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

  .button--gold:hover {
    background: #ffca69;
  }

  .technology-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.2);
  }

  .business-card:hover::after {
    transform: scale(1.06);
  }

  .business-card:hover .business-card__arrow {
    transform: translateX(4px);
  }

  .modal-close:hover {
    background: var(--accent);
  }

  .modal-close:hover span {
    background: var(--ink);
  }

  .modal-nav button:hover {
    color: var(--green-bright);
  }
}

/* Tablet */
@media (max-width: 1180px) {
  :root {
    --gutter: 42px;
  }

  .header-inner {
    width: calc(100% - 84px);
    grid-template-columns: 140px 1fr 140px;
  }

  .brand-link {
    width: 120px;
    height: 34px;
  }

  .desktop-nav {
    gap: 18px;
    font-size: 12px;
  }

  .about-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 42px;
  }

  .strengths {
    height: auto;
    padding-bottom: 64px;
  }

  .strength-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 32px;
  }

  .strength-item p {
    width: min(100%, 340px);
  }

  .honggang {
    height: auto;
    padding-bottom: 64px;
  }

  .honggang-intro {
    height: auto;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .honggang-product {
    width: 100%;
    height: auto;
  }

  .honggang-product img {
    aspect-ratio: 790 / 330;
  }

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

  .technology-card {
    width: 100%;
    height: 330px;
    min-height: 330px;
  }

  .technology-card__copy {
    width: calc(100% - 303px);
  }

  .business {
    height: auto;
    padding-bottom: 64px;
  }

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

  .business-card {
    width: 100%;
  }

  .business-card__body strong {
    font-size: 21px;
  }

  .rnd-layout {
    gap: 54px;
  }

  .contact-panel {
    grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
    gap: 32px;
  }

  .contact-heading {
    padding-left: 44px;
  }

  .contact-details {
    margin-left: 34px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --gutter: 20px;
    --radius-md: 18px;
    --radius-lg: 22px;
  }

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

  body {
    font-size: 15px;
    line-height: 1.65;
  }

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

  .section {
    padding-block: 86px;
  }

  .section-heading {
    display: block;
    margin-bottom: 38px;
  }

  .section-heading h2,
  .strengths .section-heading h2,
  .business .section-heading h2 {
    font-size: 23px;
    line-height: 1.35;
  }

  .section-eyebrow {
    margin-bottom: 16px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .section-eyebrow::before {
    width: 24px;
  }

  .header-inner {
    display: flex;
    min-height: 68px;
    justify-content: space-between;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 56px;
  }

  .brand-link {
    width: 126px;
    height: 34px;
  }

  .site-header.is-scrolled .brand-link {
    width: 100px;
    height: 28px;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .store-link {
    display: inline-flex;
    width: 88px;
    min-height: 40px;
    padding: 0 14px;
  }

  .store-link img {
    width: 57px;
  }

  .site-header.is-scrolled .store-link {
    width: 76px;
    min-height: 34px;
  }

  .site-header.is-scrolled .store-link img {
    width: 52px;
  }

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

  .menu-toggle {
    position: relative;
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    padding: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 24px;
    height: 1px;
    background: #fff;
    transition: transform 0.3s ease, width 0.3s ease, opacity 0.3s ease;
  }

  .site-header.is-scrolled .menu-toggle span {
    background: var(--ink);
  }

  .menu-toggle span:nth-child(2) {
    width: 18px;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    width: 24px;
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: flex;
    max-height: calc(100dvh - 68px);
    flex-direction: column;
    padding: 26px 20px 34px;
    overflow-y: auto;
    background: rgba(10, 35, 25, 0.98);
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
    transition: top 0.35s var(--ease-out), max-height 0.35s var(--ease-out);
  }

  .site-header.is-scrolled .mobile-nav {
    top: 56px;
    max-height: calc(100dvh - 56px);
  }

  .mobile-nav a {
    width: 100%;
    margin-inline: auto;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
    font-weight: 700;
  }

  .hero {
    display: block;
    height: 100vh;
    min-height: 0;
  }

  .hero-media {
    background-image: url("../assets/figma/hero-ginger.png");
    background-position: 62% center;
  }

  .hero::after {
    background: rgba(7, 17, 11, 0.56);
  }

  .hero-content {
    position: absolute;
    top: 27.95%;
    left: 50%;
    width: calc(100% - 40px);
    padding-top: 0;
    text-align: left;
    transform: translateX(-50%);
  }

  .hero-eyebrow {
    display: block;
    width: 100%;
    height: 16px;
    margin-bottom: 14px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 16px;
  }

  .hero h1 {
    font-size: 42px;
    letter-spacing: 0;
    line-height: 50px;
  }

  .hero-copy {
    margin-top: 26px;
    color: #fff;
    font-size: 15px;
    letter-spacing: 0;
    line-height: 24px;
  }

  .hero-copy br {
    display: inline;
  }

  .scroll-cue {
    bottom: 24px;
    width: 30px;
    height: 48px;
  }

  .about {
    padding: 88px 0 64px;
  }

  .about-wash {
    background-image: url("../assets/figma/about-background-mobile-v1.png");
    background-position: center top;
  }

  .about::after {
    background: rgba(249, 245, 236, 0.64);
  }

  .about-layout {
    position: relative;
    display: block;
  }

  .about-heading .section-eyebrow {
    position: static;
    margin: 0 0 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 16px;
  }

  .about-heading h2 {
    position: static;
    margin: 0 0 28px;
    font-size: 23px;
    letter-spacing: 0;
    line-height: 32px;
  }

  .about-copy,
  .about-copy--accent {
    position: static;
    width: 100%;
    padding-top: 0;
    padding-left: 0;
  }

  .about-copy--accent {
    margin-top: 26px;
  }

  .about-copy--accent::before {
    display: none;
  }

  .about-copy h3 {
    margin-bottom: 23px;
    font-size: 17px;
    letter-spacing: 0;
    line-height: 25px;
  }

  .about-copy p {
    font-size: 12px;
    letter-spacing: 0;
    line-height: 21px;
  }

  .strengths {
    padding-block: 54px 64px;
  }

  .strengths .section-heading {
    margin-bottom: 52px;
  }

  .strengths .section-heading .section-eyebrow {
    margin-bottom: 22px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 16px;
  }

  .strengths .section-heading h2,
  .strengths .section-heading h2::first-line {
    color: var(--ink);
    font-size: 23px;
    letter-spacing: 0;
    line-height: 32px;
  }

  .strength-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    border-bottom: 0;
  }

  .strength-item,
  .strength-item:last-child {
    display: grid;
    width: 100%;
    min-height: 88px;
    padding: 0;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 18px;
    border-right: 0;
    border-bottom: 0;
  }

  .strength-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    margin: 0;
  }

  .strength-icon img {
    width: 24px;
    height: 24px;
  }

  .strength-item h3 {
    margin-bottom: 6px;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 28px;
  }

  .strength-item h3::after {
    display: none;
  }

  .strength-item p {
    width: 100%;
    margin-top: 0;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 17px;
  }

  .strength-item > div:last-child {
    min-height: 88px;
    padding-bottom: 14px;
    border-bottom: 1px solid #ddd8cc;
  }

  .honggang {
    height: auto;
    padding-block: 54px 64px;
  }

  .honggang-intro {
    display: block;
    height: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .honggang-heading .section-eyebrow {
    margin-bottom: 22px;
    font-size: 11px;
    letter-spacing: 0;
    line-height: 16px;
  }

  .honggang-heading h2 {
    margin-bottom: 24px;
    font-size: 23px;
    letter-spacing: 0;
    line-height: 32px;
  }

  .honggang-heading > p:not(.section-eyebrow) {
    font-size: 12px;
    letter-spacing: 0;
    line-height: 20px;
  }

  .honggang-heading > p br {
    display: inline;
  }

  .honggang-logo {
    width: 150px;
    height: 40px;
    margin-top: 42px;
  }

  .honggang-product {
    width: 100%;
    height: 200px;
    margin-top: 18px;
    border-radius: 24px;
  }

  .honggang-product img {
    width: 100%;
    height: 100%;
  }

  .honggang-stats {
    width: 100%;
    min-height: 230px;
    margin-block: 24px 28px;
    padding: 17px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(92px, auto));
    gap: 10px 6px;
    border-radius: 24px;
  }

  .stat-item {
    width: 100%;
    min-height: 92px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .count-value {
    min-height: 36px;
    font-size: 30px;
    letter-spacing: -0.75px;
    line-height: 36px;
  }

  .stat-item:nth-child(4) .count-value {
    font-size: 26px;
    letter-spacing: -0.65px;
  }

  .stat-item h3 {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0;
    line-height: 15px;
  }

  .stat-item p {
    font-size: 10px;
    letter-spacing: 0;
    line-height: 15px;
  }

  .technology-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .technology-card {
    width: 100%;
    height: 200px;
    min-height: 200px;
    padding: 0;
    border-radius: 24px;
  }

  .technology-card__index {
    top: 20px;
    left: 20px;
    font-size: 11px;
    letter-spacing: 0;
    line-height: 16px;
  }

  .technology-card__title,
  .technology-card--healthy .technology-card__title,
  .technology-card--purify .technology-card__title {
    top: 54px;
    left: 20px;
    font-size: 27px;
    letter-spacing: 0;
    line-height: 34px;
  }

  .technology-card__title br {
    display: none;
  }

  .technology-card__copy {
    top: 112px;
    left: 20px;
    width: calc(100% - 40px);
    max-height: none;
    overflow: visible;
    font-size: 11.5px;
    letter-spacing: 0;
    line-height: 18px;
  }

  .technology-card__metric {
    top: 20px;
    right: 20px;
    left: auto;
    font-size: 22px;
    letter-spacing: -0.55px;
    line-height: 26px;
  }

  .technology-card--healthy .technology-card__metric {
    display: none;
  }

  .business {
    min-height: 870px;
    padding-block: 54px 64px;
  }

  .business .section-heading {
    margin-bottom: 42px;
  }

  .business .section-heading .section-eyebrow {
    margin-bottom: 34px;
    font-size: 11px;
    letter-spacing: 0;
    line-height: 16px;
  }

  .business .section-heading h2 {
    font-size: 23px;
    letter-spacing: 0;
    line-height: 32px;
  }

  .business-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 10px;
  }

  .business-card {
    width: 100%;
    height: 280px;
    min-height: 0;
    padding: 0;
    border-radius: 22px;
  }

  .business-card__index {
    top: 16px;
    left: 16px;
    display: block;
    width: auto;
    height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--accent);
    font-size: 11px;
    line-height: 16px;
  }

  .business-card__body {
    top: 222px;
    left: 16px;
    width: calc(100% - 32px);
    padding: 0;
  }

  .business-card__body strong {
    margin: 0;
    padding-right: 28px;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 22px;
  }

  .business-card__body small {
    display: none;
  }

  .business-card__arrow {
    top: auto;
    right: 14px;
    bottom: 20px;
    width: 28px;
    height: 28px;
    background: #fff;
    color: var(--green);
    font-size: 15px;
  }

  .oem {
    height: 540px;
    padding-block: 40px;
    background: #f2f4f1;
  }

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

  .oem-panel {
    width: 100%;
    height: 460px;
    min-height: 460px;
    background-position: 64% center;
    border-radius: 24px;
  }

  .oem-panel::before {
    background: rgba(3, 4, 3, 0.48);
  }

  .oem-copy {
    top: 38px;
    left: 24px;
    width: calc(100% - 48px);
    padding: 0;
  }

  .oem-copy .section-eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 0;
    line-height: 16px;
  }

  .oem-copy h2 {
    margin-bottom: 22px;
    font-size: 23px;
    letter-spacing: 0;
    line-height: 32px;
  }

  .oem-copy > p:not(.section-eyebrow) {
    margin-bottom: 0;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 23px;
  }

  .oem-copy > p br {
    display: inline;
  }

  .oem-copy .button {
    position: absolute;
    top: 340px;
    left: 0;
    width: 100%;
    height: 64px;
    min-height: 64px;
    justify-content: space-between;
    padding-inline: 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
  }

  .button {
    min-height: 46px;
    padding-inline: 18px;
    font-size: 12px;
  }

  .rnd-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .rnd-image {
    min-height: 330px;
  }

  .rnd-content h2 {
    margin-bottom: 20px;
    font-size: 23px;
    line-height: 1.35;
  }

  .rnd-lead {
    font-size: 12px;
    line-height: 1.78;
  }

  .rnd-list {
    margin-top: 36px;
  }

  .rnd-item {
    padding-block: 22px;
    grid-template-columns: 34px 1fr 28px;
    gap: 12px;
  }

  .rnd-item > span {
    font-size: 15px;
  }

  .rnd-item h3 {
    font-size: 16px;
  }

  .rnd-item p {
    font-size: 11px;
  }

  .rnd-item i {
    width: 27px;
    height: 27px;
  }

  .contact {
    padding-block: 86px;
    background: var(--green);
  }

  .contact-panel {
    position: relative;
    display: flex;
    min-height: 0;
    padding: 0;
    flex-direction: column;
    gap: 28px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .contact-heading {
    padding: 0;
  }

  .contact-heading h2 {
    font-size: 23px;
    line-height: 1.35;
  }

  .contact-map {
    position: relative;
    width: 100%;
    height: 330px;
    min-height: 330px;
    order: 2;
    overflow: hidden;
    border-radius: 20px;
  }

  .contact-map::after {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: inherit;
  }

  .contact-map iframe {
    width: 100%;
    height: 100%;
  }

  .contact-details {
    position: static;
    display: grid;
    width: 100%;
    order: 1;
    margin: 0;
    padding: 22px 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 17px;
    border-color: rgba(255, 255, 255, 0.58);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--ink);
    backdrop-filter: blur(17px);
  }

  .contact-details div:last-child {
    grid-column: 1 / -1;
  }

  .contact-details span {
    margin-bottom: 3px;
    color: var(--green);
    font-size: 8px;
  }

  .contact-details a,
  .contact-details p {
    color: #1e2923;
    font-size: 10px;
    line-height: 1.45;
  }

  .site-footer {
    padding-block: 54px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand {
    display: block;
  }

  .footer-brand img {
    width: 115px;
  }

  .footer-brand p {
    margin-top: 18px;
    padding: 0;
    border: 0;
    font-size: 11px;
  }

  .footer-company {
    font-size: 10px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
    font-size: 10px;
  }

  .site-modal {
    width: 100%;
    height: 100dvh;
    max-height: none;
    border-radius: 0;
  }

  .modal-close {
    position: fixed;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
  }

  .modal-nav {
    min-height: 60px;
    padding-inline: 20px;
  }

  .detail-hero {
    min-height: 220px;
    padding: 34px 24px;
  }

  .detail-hero::before {
    background: linear-gradient(180deg, rgba(3, 12, 8, 0.12) 15%, rgba(3, 12, 8, 0.9) 100%);
  }

  .detail-hero h2 {
    font-size: 38px;
  }

  .detail-hero strong {
    font-size: 13px;
  }

  .detail-body {
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding: 42px 24px;
  }

  .detail-body > p {
    font-size: 13px;
    line-height: 1.8;
  }

  .detail-body .detail-lead {
    font-size: 20px;
  }

  .detail-data {
    position: static;
    width: 100%;
    min-height: 220px;
    margin-top: 22px;
    order: 10;
  }

  .detail-data strong {
    font-size: 65px;
  }

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

  .business-detail-head > div {
    min-height: 190px;
    padding: 34px 24px;
  }

  .business-detail-head h2 {
    font-size: 36px;
  }

  .business-detail-head > img {
    min-height: 190px;
    max-height: 190px;
  }

  .business-story,
  .feature-split,
  .business-why,
  .oem-block,
  .coming-block,
  .product-showcase {
    width: calc(100% - 40px);
  }

  .business-story--text-only {
    width: calc(100% - 40px);
  }

  .brand-visual-stack {
    min-height: 340px;
  }

  .brand-visual-stack img {
    height: 74%;
  }

  .business-story,
  .feature-split {
    padding-block: 48px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .business-story__logo {
    max-width: 280px;
    margin-inline: auto;
  }

  .business-story h3,
  .feature-split h3,
  .business-why h3,
  .product-showcase > h3,
  .popup-section-title,
  .oem-block h3,
  .coming-block h3,
  .product-copy h3 {
    margin-bottom: 16px;
    font-size: 24px;
  }

  .business-story p,
  .feature-split p,
  .business-why p,
  .why-item p,
  .oem-block p,
  .coming-block p,
  .product-copy p {
    font-size: 12px;
    line-height: 1.75;
  }

  .feature-split {
    padding: 0;
  }

  .feature-split > div,
  .feature-split--reverse > div {
    padding: 8px 24px 34px;
  }

  .feature-split--reverse > img {
    order: 0;
  }

  .business-why {
    padding-block: 48px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-item {
    padding: 22px;
  }

  .certificates {
    width: calc(100% - 40px);
    margin-top: 42px;
    padding: 25px;
    gap: 12px;
  }

  .certificates img {
    height: 105px;
  }

  .product-showcase {
    padding-block: 50px;
  }

  .product-grid {
    gap: 12px;
  }

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

  .product-grid figure {
    min-height: 0;
  }

  .product-grid figure img {
    height: 310px;
  }

  .oem-block,
  .coming-block {
    margin-top: 32px;
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .oem-block--reverse > img {
    order: 0;
  }

  .shared-cta {
    min-height: 360px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    margin-top: 52px;
    padding: 32px 24px;
    background-position: center;
  }

  .shared-cta::before {
    background: linear-gradient(180deg, rgba(3, 13, 8, 0.15) 12%, rgba(3, 13, 8, 0.94) 100%);
  }

  .shared-cta > div > h3 {
    font-size: 31px;
  }

  .shared-cta > div > span {
    font-size: 11px;
  }

  .shared-cta > a {
    margin-top: 22px;
  }

  .detail-cta,
  .shared-cta {
    min-height: 112px;
    padding: 28px 24px;
    font-size: 18px;
  }

  .detail-cta i,
  .shared-cta i {
    width: 42px;
    height: 42px;
  }

  .js [data-reveal] {
    transform: translate3d(0, 34px, 0);
  }
}

@media (max-width: 374px) {
  .container,
  .header-inner,
  .hero-content {
    width: calc(100% - 40px);
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 42px);
  }

  .contact-map {
    width: 100%;
  }

  .strength-item,
  .strength-item:last-child {
    width: 100%;
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .strength-item p,
  .strength-item > div:last-child {
    width: 100%;
  }

  .honggang-product,
  .honggang-stats,
  .technology-card {
    width: 100%;
  }

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

  .honggang-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-item {
    width: 100%;
  }

  .business-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 8px;
  }

  .business-card {
    width: 100%;
  }

  .business-card__body {
    width: calc(100% - 32px);
  }

  .business-card__body strong {
    font-size: 15px;
  }
}

/* Business detail popups: flat editorial layout matched to the supplied detail pages. */
.detail--business {
  min-height: 100%;
  background: #f4f4f2;
}

.detail--business .business-detail-head {
  display: block;
  min-height: 0;
  padding: 52px 64px 64px;
  background: #f4f4f2;
  color: #262825;
}

.business-detail-head > .business-detail-head__copy {
  display: block;
  padding: 0;
}

.business-detail-head__copy > p {
  margin: 0 0 12px;
  color: #686d68;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0;
}

.business-detail-head__copy > p::before {
  display: block;
  width: 38px;
  height: 2px;
  margin-bottom: 14px;
  background: var(--accent);
  content: "";
}

.business-detail-head__copy > h2 {
  margin: 0;
  color: #282a27;
  font-size: clamp(42px, 4.5vw, 56px);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.business-detail-head__copy > span {
  display: block;
  margin-top: 14px;
  color: #6d726d;
  font-size: 14px;
  line-height: 1.7;
}

.business-detail-head__media {
  overflow: hidden;
}

.business-detail-head__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  border-radius: 0;
  object-fit: cover;
}

.business-detail-head--showcase .business-detail-head__copy {
  max-width: 680px;
}

.business-detail-head--showcase .business-detail-head__media--duo {
  display: grid;
  height: 360px;
  margin-top: 40px;
  grid-template-columns: minmax(0, 1.8fr) minmax(220px, 0.72fr);
  gap: 22px;
}

.business-detail-head--showcase .business-detail-head__wide {
  object-position: center;
}

.business-detail-head--showcase .business-detail-head__tall {
  object-position: center;
}

.business-detail-head--magic {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 72px;
  align-items: center;
}

.business-detail-head--magic .business-detail-head__copy {
  padding-top: 18px;
}

.business-detail-head__logo {
  display: block;
  width: min(100%, 500px) !important;
  height: auto;
  margin-top: 48px;
  object-fit: contain;
}

.business-detail-head__media--single {
  height: 430px;
}

.business-detail-head__media--single img {
  object-position: center 38%;
}

.detail--business .business-story,
.detail--business .feature-split,
.detail--business .business-why,
.detail--business .oem-block,
.detail--business .coming-block,
.detail--business .product-showcase {
  width: min(calc(100% - 128px), 1040px);
  margin-inline: auto;
}

.detail--business .business-story,
.detail--business .business-story--text-only {
  display: block;
  width: min(calc(100% - 128px), 1040px);
  padding: 72px 0 32px;
  text-align: left;
}

.detail--business .business-story h3,
.detail--business .business-why > h3,
.detail--business .product-showcase > h3 {
  position: relative;
  margin: 0 0 24px;
  padding-left: 12px;
  color: #2c2f2b;
  font-size: 24px;
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.detail--business .business-story h3::before,
.detail--business .business-why > h3::before,
.detail--business .product-showcase > h3::before {
  position: absolute;
  top: 0.12em;
  bottom: 0.12em;
  left: 0;
  width: 3px;
  background: var(--accent);
  content: "";
}

.detail--business .business-story h3 em {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

.detail--business .business-story p,
.detail--business .business-why p,
.detail--business .feature-split p {
  max-width: 980px;
  margin: 0 0 13px;
  color: #575c57;
  font-size: 13px;
  letter-spacing: -0.012em;
  line-height: 1.85;
}

.detail--business .business-why--plain {
  padding: 32px 0 68px;
}

.plain-copy-list {
  display: grid;
  max-width: 980px;
  gap: 12px;
}

.detail--business .plain-copy-list p {
  margin: 0;
}

.plain-copy-list strong {
  color: #2d302d;
  font-weight: 750;
}

.detail--business .feature-split {
  display: grid;
  padding: 34px;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 46px;
  align-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.detail--business .feature-split > img {
  width: 100%;
  height: 320px;
  max-height: none;
  border-radius: 0;
  object-fit: cover;
}

.detail--business .feature-split > div,
.detail--business .feature-split--reverse > div {
  padding: 0;
}

.detail--business .feature-split h3 {
  margin: 0 0 20px;
  color: #2b2e2a;
  font-size: 28px;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.detail--business .feature-split ul {
  margin-top: 20px;
}

.detail--business .feature-split li {
  margin-top: 7px;
  padding-left: 18px;
  color: #555a55;
  font-size: 12px;
  line-height: 1.65;
}

.detail--business .feature-split li::before {
  content: "—";
}

.detail--business .certificates {
  display: grid;
  width: min(calc(100% - 128px), 1040px);
  margin: 48px auto 0;
  padding: 34px 52px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  align-items: end;
  border-top: 1px solid rgba(31, 38, 32, 0.1);
  border-bottom: 1px solid rgba(31, 38, 32, 0.1);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.detail--business .certificates figure {
  margin: 0;
  text-align: center;
}

.detail--business .certificates img {
  width: 100%;
  height: 190px;
  object-fit: contain;
}

.detail--business .certificates figcaption {
  margin-top: 11px;
  color: #717671;
  font-size: 10px;
}

.detail--business .product-showcase {
  padding: 64px 0 76px;
}

.detail--business .product-grid--rows {
  display: grid;
  gap: 34px;
}

.detail--business .product-grid--rows figure {
  display: grid;
  min-height: 330px;
  margin: 0;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  align-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.detail--business .product-grid--rows figure > img {
  width: 100%;
  height: 330px;
  padding: 0;
  border-radius: 12px;
  background: #eeece6;
  object-fit: cover;
}

.detail--business .product-grid--rows figure > img[src$=".png"] {
  padding: 22px;
  background: #f8f6ef;
  object-fit: contain;
}

.detail--business .product-grid--rows figure.is-reverse > img {
  order: 2;
}

.detail--business .product-grid--rows figcaption {
  margin: 0;
  padding: 36px 48px;
}

.detail--business .product-grid--rows figcaption small {
  margin-bottom: 10px;
  color: #777c77;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.detail--business .product-grid--rows figcaption strong {
  color: #292c29;
  font-size: 30px;
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.detail--business .product-grid--rows figcaption span {
  margin-top: 14px;
  color: #626762;
  font-size: 13px;
  line-height: 1.75;
}

.detail--business .oem-block,
.detail--business .coming-block {
  display: grid;
  min-height: 310px;
  margin-top: 42px;
  padding: 0;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: 52px;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.detail--business .oem-block > img,
.detail--business .coming-block > img {
  width: 100%;
  height: 310px;
  max-height: none;
  border-radius: 12px;
  object-fit: cover;
}

.detail--business .oem-block--reverse > img {
  order: 2;
}

.detail--business .oem-block > div > p,
.detail--business .coming-block > div > p {
  margin: 0 0 9px;
  color: #777c77;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.detail--business .oem-block h3,
.detail--business .coming-block h3 {
  margin: 0 0 14px;
  color: #292c29;
  font-size: 31px;
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.detail--business .oem-block > div > span,
.detail--business .coming-block > div > span {
  color: #656a65;
  font-size: 13px;
  line-height: 1.75;
}

.detail--business .shared-cta {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 300px;
  margin-top: 76px;
  padding: 48px 64px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  background-position: center;
  background-size: cover;
  color: #fff;
  text-align: center;
  isolation: isolate;
}

.detail--business .shared-cta::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(4, 14, 9, 0.7);
  content: "";
}

.detail--business .shared-cta > div {
  max-width: 680px;
}

.detail--business .shared-cta > div > p {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.detail--business .shared-cta > div > h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 36px;
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.detail--business .shared-cta > div > span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.7;
}

.detail--business .shared-cta > a {
  display: inline-flex;
  min-width: 138px;
  height: 46px;
  margin-top: 24px;
  padding: 0 8px 0 20px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #21231f;
  font-size: 12px;
  font-weight: 750;
}

.detail--business .shared-cta > a i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #21231f;
  color: #fff;
  font-size: 12px;
  font-style: normal;
}

@media (max-width: 720px) {
  .site-modal {
    width: 100%;
    height: 100dvh;
    margin: 0;
    border-radius: 0;
  }

  .modal-nav {
    min-height: 58px;
    padding-inline: 20px;
  }

  .detail--business .business-detail-head {
    padding: 64px 20px 38px;
  }

  .business-detail-head__copy > h2 {
    font-size: 36px;
    line-height: 1.12;
  }

  .business-detail-head__copy > span {
    margin-top: 10px;
    font-size: 12px;
  }

  .business-detail-head--showcase .business-detail-head__media--duo {
    height: 250px;
    margin-top: 28px;
    grid-template-columns: minmax(0, 1.55fr) minmax(108px, 0.75fr);
    gap: 10px;
  }

  .business-detail-head--magic {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .business-detail-head--magic .business-detail-head__copy {
    padding-top: 0;
  }

  .business-detail-head__logo {
    width: min(100%, 320px) !important;
    margin-top: 32px;
  }

  .business-detail-head__media--single {
    height: 320px;
  }

  .detail--business .business-story,
  .detail--business .business-story--text-only,
  .detail--business .feature-split,
  .detail--business .business-why,
  .detail--business .oem-block,
  .detail--business .coming-block,
  .detail--business .product-showcase,
  .detail--business .certificates {
    width: calc(100% - 40px);
  }

  .detail--business .business-story,
  .detail--business .business-story--text-only {
    padding: 48px 0 20px;
  }

  .detail--business .business-story h3,
  .detail--business .business-why > h3,
  .detail--business .product-showcase > h3 {
    margin-bottom: 20px;
    font-size: 21px;
  }

  .detail--business .business-story p,
  .detail--business .business-why p,
  .detail--business .feature-split p {
    font-size: 12px;
    line-height: 1.8;
  }

  .detail--business .business-why--plain {
    padding: 28px 0 48px;
  }

  .detail--business .feature-split {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .detail--business .feature-split > img {
    height: 220px;
  }

  .detail--business .feature-split h3 {
    font-size: 23px;
  }

  .detail--business .certificates {
    margin-top: 34px;
    padding: 22px 12px;
    gap: 8px;
  }

  .detail--business .certificates img {
    height: 100px;
  }

  .detail--business .certificates figcaption {
    font-size: 8px;
  }

  .detail--business .product-showcase {
    padding: 48px 0 54px;
  }

  .detail--business .product-grid--rows {
    gap: 44px;
  }

  .detail--business .product-grid--rows figure {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .detail--business .product-grid--rows figure > img {
    height: 280px;
  }

  .detail--business .product-grid--rows figure.is-reverse > img {
    order: 0;
  }

  .detail--business .product-grid--rows figcaption {
    padding: 24px 6px 0;
  }

  .detail--business .product-grid--rows figcaption strong {
    font-size: 25px;
  }

  .detail--business .oem-block,
  .detail--business .coming-block {
    min-height: 0;
    margin-top: 42px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .detail--business .oem-block > img,
  .detail--business .coming-block > img {
    height: 260px;
  }

  .detail--business .oem-block--reverse > img {
    order: 0;
  }

  .detail--business .oem-block h3,
  .detail--business .coming-block h3 {
    font-size: 26px;
  }

  .detail--business .shared-cta {
    min-height: 320px;
    margin-top: 56px;
    padding: 42px 22px;
    align-items: center;
    text-align: center;
  }

  .detail--business .shared-cta > div > h3 {
    font-size: 29px;
  }

  .detail--business .shared-cta > div > span {
    font-size: 11px;
  }

  .detail--business .shared-cta > a {
    margin-top: 22px;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
