:root {
  --bg: #f7f7f3;
  --surface: #ffffff;
  --text: #1f2933;
  --text-soft: #677483;
  --line: #e6e3db;
  --primary: #0d7f78;
  --primary-dark: #0b5d58;
  --shadow: 0 18px 40px rgba(31, 41, 51, 0.08);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

button {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  background: #1f2b36;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 44px;
}

.topbar__email {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.94);
}

.lang-switch,
.nav-toggle,
.button {
  cursor: pointer;
}

.lang-switch {
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 600;
  padding: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 247, 243, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand__logo {
  width: 172px;
  height: auto;
  display: block;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand__text strong {
  font-size: 1rem;
}

.brand__text small {
  color: var(--text-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  font-size: 0.96rem;
  font-weight: 500;
}

.nav a:not(.button) {
  color: var(--text-soft);
}

.nav a:not(.button):hover,
.nav a.is-active {
  color: var(--text);
}

.nav a.is-active {
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--primary);
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
}

.button--ghost {
  background: transparent;
  color: var(--primary);
}

.button--ghost:hover {
  background: rgba(13, 127, 120, 0.06);
}

.button--sm {
  min-height: 42px;
  padding: 0.7rem 1.1rem;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero--home {
  min-height: 680px;
  padding: 8.8rem 0 3.5rem;
}

.hero--inner {
  padding: 4.6rem 0 2.8rem;
}

.hero-slider,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transition: opacity 1.2s ease;
  background-position: center;
  background-size: cover;
  filter: saturate(1.18) contrast(1.08) brightness(1.02);
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide--1 {
  background-image: url("../images/home-banner-v3.jpg");
}

.hero-slide--2 {
  background-image: url("../images/slider2.jpg");
  background-size: 112% auto;
  background-position: center 6%;
  background-repeat: no-repeat;
  background-color: #eef1eb;
}



.hero-overlay {
  background: linear-gradient(180deg, rgba(247, 247, 243, 0.58) 0%, rgba(247, 247, 243, 0.7) 55%, rgba(247, 247, 243, 0.82) 100%);
}

.hero--home .hero-overlay {
  background:
    radial-gradient(circle at 50% 22%, rgba(77, 177, 255, 0.34) 0%, rgba(54, 130, 222, 0.18) 18%, rgba(7, 22, 42, 0.04) 34%, rgba(247, 247, 243, 0) 58%),
    linear-gradient(180deg, rgba(7, 23, 43, 0.18) 0%, rgba(16, 44, 75, 0.14) 22%, rgba(241, 245, 248, 0.36) 56%, rgba(247, 247, 243, 0.74) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero--home .hero__inner {
  min-height: 560px;
}

.hero-slogan {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
  width: min(96vw, 1220px);
  padding: 1.4rem 2rem 1.8rem;
  border: 1px solid rgba(112, 188, 255, 0.18);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(10, 32, 56, 0.18) 0%, rgba(7, 21, 38, 0.06) 100%);
  box-shadow:
    inset 0 1px 0 rgba(230, 244, 255, 0.18),
    0 10px 28px rgba(9, 32, 61, 0.12);
  backdrop-filter: blur(6px);
  text-align: center;
}

.hero-slogan::before {
  content: "";
  position: absolute;
  inset: -16% 8% 14%;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(90, 194, 255, 0.52) 0%, rgba(30, 120, 214, 0.28) 24%, rgba(8, 24, 46, 0.06) 44%, rgba(247, 247, 243, 0) 72%);
  filter: blur(26px);
  z-index: -2;
}

.hero-slogan::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(145, 220, 255, 0.92), rgba(72, 162, 255, 0.98), rgba(255, 255, 255, 0));
  box-shadow:
    0 0 18px rgba(93, 180, 255, 0.48),
    0 0 30px rgba(73, 151, 255, 0.28);
  opacity: 0.92;
  z-index: -1;
}

.hero-slogan__text {
  display: block;
  margin: 0;
  color: #f3fbff;
  font-size: clamp(1.35rem, 4.6vw, 4.8rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.18;
  background: linear-gradient(180deg, #ffffff 0%, #dff4ff 34%, #90d8ff 64%, #f7fcff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.2px rgba(12, 43, 79, 0.96);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 24px rgba(18, 63, 112, 0.28),
    0 0 16px rgba(126, 211, 255, 0.34),
    0 0 30px rgba(70, 151, 255, 0.24);
}

.hero-slogan__text[data-lang-scope="zh"] {
  color: #eef9ff;
  font-size: clamp(1.5rem, 5vw, 5.6rem);
  letter-spacing: 0.1em;
  background: none;
  -webkit-text-fill-color: currentColor;
  -webkit-text-stroke: 1px rgba(8, 37, 72, 0.9);
  text-shadow:
    0 0 10px rgba(146, 219, 255, 0.44),
    0 0 24px rgba(72, 162, 255, 0.26),
    0 10px 28px rgba(14, 48, 89, 0.22);
}

.hero-slogan__text[data-lang-scope="en"] {
  font-size: clamp(1.35rem, 4.1vw, 4.5rem);
  letter-spacing: 0.18em;
  line-height: 1.06;
}

.hero__intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero--home .hero__intro {
  position: relative;
  min-height: 560px;
}

.hero__intro--narrow {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.hero h1 {
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
}

body[data-page="cosmetics"] .hero--inner h1,
body[data-page="cosmeticsOverseas"] .hero--inner h1,
body[data-page="foods"] .hero--inner h1,
body[data-page="foodsNewMaterials"] .hero--inner h1,
body[data-page="foodsOverseas"] .hero--inner h1 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2.2rem, 3.4vw, 4.1rem);
}

body[data-page="contact"] .hero--inner h1,
body[data-page="contact"] .contact-copy h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.85rem, 2.65vw, 3.2rem);
  letter-spacing: -0.03em;
}

html[lang="en"] body[data-page="contact"] .hero--inner h1,
html[lang="en"] body[data-page="contact"] .contact-copy h2 {
  font-size: clamp(1.7rem, 2.35vw, 2.8rem);
  letter-spacing: -0.025em;
}

html[lang="en"] body[data-page="cosmetics"] .hero--inner h1,
html[lang="en"] body[data-page="cosmeticsOverseas"] .hero--inner h1,
html[lang="en"] body[data-page="foods"] .hero--inner h1,
html[lang="en"] body[data-page="foodsNewMaterials"] .hero--inner h1,
html[lang="en"] body[data-page="foodsOverseas"] .hero--inner h1 {
  font-size: clamp(1.75rem, 2.55vw, 3.15rem);
  letter-spacing: -0.03em;
}

.hero__lead,
.section-heading p,
.section-copy,
.contact-copy > p,
.about-panel__item p,
.process-row p,
.contact-card p,
.footer p,
.brand-pill,
.entry-card p,
.service-detail-card p {
  color: var(--text-soft);
  line-height: 1.8;
}

.hero__lead {
  max-width: 780px;
  margin: 1.35rem auto 0;
  font-size: 1.04rem;
}

.hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero--home .hero__actions {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  width: max-content;
  margin-top: 0;
  z-index: 3;
}

.service-details,
.brand-band__grid,
.entry-grid,
.contact-info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-link,
.service-detail-card,
.about-panel,
.process-list,
.contact-card,
.brand-pill,
.entry-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-link {
  position: relative;
  min-height: 136px;
  padding: 1.5rem;
  display: flex;
  align-items: end;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-link:hover,
.entry-card:hover {
  transform: translateY(-2px);
  border-color: #d7d1c2;
}

.service-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.56;
  filter: saturate(1.2) contrast(1.06) brightness(1.02);
}

.service-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.8) 78%);
}

.service-link[data-service="cosmetics"]::before {
  background-image: url("../images/new-cosmetics.png");
}

.service-link[data-service="foods"]::before {
  background-image: url("../images/food1.jpg");
}

.service-link h2,
.service-detail-card h3,
.process-row h3,
.entry-card strong {
  position: relative;
  z-index: 1;
  margin: 0;
  line-height: 1.35;
}

.service-link h2,
.service-detail-card h3 {
  font-size: 1.18rem;
}

.service-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.service-card-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  background: #faf8f2;
  color: var(--text);
  text-decoration: none;
  font-size: 0.94rem;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.service-card-links a:hover {
  border-color: rgba(13, 127, 120, 0.3);
  background: #f3f8f7;
  color: var(--primary);
}

.service-detail-card__actions {
  margin-top: 1.25rem;
}

.home-services-section {
  padding-top: 1.4rem;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.home-service-card {
  display: block;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 127, 120, 0.22);
  box-shadow: 0 28px 60px rgba(31, 41, 51, 0.14);
}

.home-service-card__media {
  min-height: 280px;
  background-position: center;
  background-size: cover;
  position: relative;
}

.home-service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 25, 38, 0.05), rgba(255, 255, 255, 0.12));
}

.home-service-card__media--cosmetics {
  background-image: url("../images/new-cosmetics.png");
}

.home-service-card__media--foods {
  background-image: url("../images/food1.jpg");
}

.home-service-card__body {
  padding: 1.9rem 1.9rem 2rem;
}

.home-service-card__index {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.home-service-card__body h3 {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.home-service-card__body p {
  max-width: 40ch;
  margin: 1rem 0 1.25rem;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1rem;
}

.section {
  padding: 2rem 0 5.4rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.5rem;
}

.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading--compact {
  margin-bottom: 1.5rem;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.entry-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.entry-card,
.service-detail-card,
.about-panel,
.contact-card {
  padding: 1.5rem;
}

.service-detail-card {
  overflow: hidden;
}

.service-detail-card__media {
  margin: -1.5rem -1.5rem 1.25rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #eef3f1;
}

.service-detail-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service-page-visual {
  margin-bottom: 1.6rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.service-page-visual img {
  width: 100%;
  max-height: 360px;
  display: block;
  object-fit: cover;
}

.entry-card strong {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 1.08rem;
}

.service-detail-card__index,
.process-row span {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.service-detail-card__index {
  display: inline-block;
  margin-bottom: 1rem;
}

.service-detail-card p {
  margin: 0.8rem 0 0;
}

.service-article {
  max-width: 980px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 1.5rem;
  align-items: start;
}

.service-detail-main {
  min-width: 0;
}

.service-detail-main .service-article {
  max-width: none;
  margin: 0;
}

.service-article__section + .service-article__section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.service-article h2,
.service-article h3 {
  margin: 0;
  color: var(--text);
}

.service-article h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.35;
}

body[data-page="cosmetics"] .service-article h2,
body[data-page="cosmeticsOverseas"] .service-article h2,
body[data-page="foods"] .service-article h2,
body[data-page="foodsNewMaterials"] .service-article h2,
body[data-page="foodsOverseas"] .service-article h2 {
  white-space: nowrap;
  font-size: clamp(1.25rem, 1.95vw, 1.8rem);
}

html[lang="en"] body[data-page="cosmetics"] .service-article h2,
html[lang="en"] body[data-page="cosmeticsOverseas"] .service-article h2,
html[lang="en"] body[data-page="foods"] .service-article h2,
html[lang="en"] body[data-page="foodsNewMaterials"] .service-article h2,
html[lang="en"] body[data-page="foodsOverseas"] .service-article h2 {
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
  letter-spacing: -0.02em;
}

.service-article h3 {
  margin-top: 1.4rem;
  font-size: 1.15rem;
  line-height: 1.5;
}

.service-article p {
  margin: 1rem 0 0;
  color: var(--text-soft);
  line-height: 1.95;
  font-size: 1rem;
}

.service-article ul {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: var(--text-soft);
}

.service-article li + li {
  margin-top: 0.55rem;
}

.service-table-wrap {
  margin-top: 1rem;
  overflow-x: auto;
}

.service-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
}

.service-table th,
.service-table td {
  padding: 1rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}

.service-table th {
  color: var(--text);
  background: rgba(13, 127, 120, 0.08);
  font-weight: 700;
}

.service-table td {
  color: var(--text-soft);
}

.service-side-nav {
  position: sticky;
  top: 108px;
  align-self: start;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-side-nav__group + .service-side-nav__group {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.service-side-nav__group strong {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--text);
  font-size: 1rem;
}

.service-side-nav__group a,
.service-side-nav__group span {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  line-height: 1.5;
}

.service-side-nav__group a {
  color: var(--text);
  text-decoration: none;
  background: rgba(13, 127, 120, 0.04);
}

.service-side-nav__group a:hover {
  background: rgba(13, 127, 120, 0.08);
}

.service-side-nav__group a.is-active {
  background: rgba(13, 127, 120, 0.12);
  color: var(--primary);
  font-weight: 700;
}

.service-side-nav__group span {
  color: var(--text-soft);
  background: rgba(15, 23, 42, 0.03);
}

.about-article {
  max-width: 980px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-article__section + .about-article__section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.about-article h2,
.about-article h3 {
  margin: 0;
  color: var(--text);
}

.about-article h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.35;
}

.about-article h3 {
  font-size: 1.1rem;
  line-height: 1.45;
}

.about-article p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.95;
  font-size: 1rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.about-value-card {
  padding: 1.4rem;
  background: var(--surface-alt);
  border: 1px solid var(--line);
}

.about-value-card p {
  margin-top: 0.75rem;
}

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

.brand-pill {
  padding: 1.2rem 1.35rem;
  text-align: center;
  font-weight: 500;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.about-panel__item + .about-panel__item {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.about-panel__item strong,
.contact-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.process-list {
  max-width: 920px;
  margin: 0 auto;
}

.process-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  padding: 1.6rem;
}

.process-row + .process-row {
  border-top: 1px solid var(--line);
}

.process-row p {
  margin: 0.65rem 0 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-info-list {
  margin-top: 1.6rem;
}

.footer {
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding: 2rem 0 2.6rem;
}

.footer__column strong {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--text);
  font-size: 1rem;
}

.footer__column a,
.footer__column p {
  color: var(--text-soft);
  line-height: 1.85;
}

.footer__column a {
  display: inline-block;
  text-decoration: none;
}

.footer__column a + a {
  margin-top: 0.45rem;
}

.footer__column p {
  margin: 0;
}

.footer__column p + p,
.footer__column a + p {
  margin-top: 0.55rem;
}

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
  text-align: center;
}

.footer__bottom p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.85rem;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .hero-services,
  .service-details,
  .service-detail-layout,
  .home-services-grid,
  .brand-band__grid,
  .entry-grid,
  .about-layout,
  .contact-info-list {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 720px) {
  .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .topbar__email {
    margin-left: 0;
  }

  .hero--home,
  .hero--inner {
    padding-top: 6.5rem;
  }

  .hero--home {
    min-height: 520px;
  }

  .hero--home .hero__inner,
  .hero--home .hero__intro {
    min-height: 400px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  body[data-page="cosmetics"] .hero--inner h1,
  body[data-page="cosmeticsOverseas"] .hero--inner h1,
  body[data-page="foods"] .hero--inner h1,
  body[data-page="foodsNewMaterials"] .hero--inner h1,
  body[data-page="foodsOverseas"] .hero--inner h1,
  body[data-page="contact"] .hero--inner h1,
  body[data-page="contact"] .contact-copy h2,
  body[data-page="cosmetics"] .service-article h2,
  body[data-page="cosmeticsOverseas"] .service-article h2,
  body[data-page="foods"] .service-article h2,
  body[data-page="foodsNewMaterials"] .service-article h2,
  body[data-page="foodsOverseas"] .service-article h2 {
    white-space: normal;
  }

  .hero-slogan {
    top: 40%;
    width: min(96vw, 480px);
    padding: 0.9rem 0.6rem 1.2rem;
  }

  .hero-slogan__text {
    font-size: clamp(1.05rem, 5.2vw, 1.6rem);
    letter-spacing: 0.06em;
    -webkit-text-stroke: 0.8px rgba(12, 43, 79, 0.96);
  }

  .hero-slogan__text[data-lang-scope="zh"] {
    font-size: clamp(1.08rem, 4.8vw, 1.9rem);
    letter-spacing: 0.08em;
  }

  .hero-slogan__text[data-lang-scope="en"] {
    letter-spacing: 0.1em;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero--home .hero__actions {
    left: 50%;
    right: auto;
    bottom: 1.25rem;
    width: min(92vw, 360px);
  }

  .button,
  .button--sm {
    width: 100%;
  }

  .process-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .home-service-card__media {
    min-height: 220px;
  }

  .home-service-card__body {
    padding: 1.35rem;
  }

  .home-service-card__body h3 {
    font-size: 1.35rem;
  }

  .service-article {
    padding: 1.25rem;
  }

  .service-side-nav {
    top: auto;
    padding: 1rem;
  }

  .about-article {
    padding: 1.25rem;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.5rem 0 1.8rem;
  }
}
