﻿:root {
  --ink: #071a15;
  --deep: #06251d;
  --green: #00a94f;
  --green-2: #18d483;
  --mint: #dff8ed;
  --paper: #f4faf6;
  --muted: #65736f;
  --line: rgba(7, 26, 21, 0.12);
  --white: #ffffff;
  --shadow: 0 30px 90px rgba(3, 40, 28, 0.16);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-standard: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
:focus-visible {
  outline: 3px solid rgba(24, 212, 131, 0.72);
  outline-offset: 4px;
}
button,
a,
input,
select,
textarea,
label {
  pointer-events: auto;
}
img,
video,
.hero-shade,
.ripple,
.about-hero-media::before,
.thawing-type-card::before,
.clean-visual::before,
.map-card::before {
  pointer-events: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 22px clamp(22px, 5vw, 76px);
  color: var(--white);
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  pointer-events: auto;
}
.site-header a,
.site-header button {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}
.site-header.light { color: var(--ink); }
.site-header.is-scrolled,
.site-header.is-open {
  padding-block: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(3, 40, 28, 0.1);
  backdrop-filter: blur(18px);
}
.brand img {
  display: block;
  width: 172px;
  height: 54px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 15px;
  font-weight: 700;
}
.main-nav a {
  position: relative;
  opacity: 0.86;
  transition: color 0.22s ease, opacity 0.22s ease;
}
.main-nav a:hover { opacity: 1; }
.main-nav a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--green);
  content: "";
  transition: right 0.25s ease;
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { right: 0; }
.main-nav .language-switch {
  display: inline-flex;
  min-width: 38px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.06em;
  opacity: 0.78;
  transition: color 0.24s ease, background 0.24s ease, border-color 0.24s ease, transform 0.3s var(--ease-out);
}
.main-nav .language-switch::after { display: none; }
.main-nav .language-switch:hover {
  color: #ffffff;
  border-color: var(--green);
  background: var(--green);
  opacity: 1;
  transform: translateY(-2px);
}
.main-nav .mobile-language-switch {
  display: none;
}
html[lang="en"] .main-nav {
  gap: clamp(12px, 1.7vw, 26px);
  font-size: 14px;
}
html[lang="en"] .hero-copy h1 {
  max-width: 680px;
  font-size: clamp(36px, 3.4vw, 54px);
  line-height: 1.06;
  white-space: normal;
}
html[lang="en"] .hero-copy {
  max-width: 740px;
}
html[lang="en"] .hero-copy p:not(.eyebrow) {
  max-width: 650px;
  font-size: 17px;
  line-height: 1.8;
}
html[lang="en"] .intro-copy h2 {
  max-width: 1240px;
  margin-inline: auto;
  font-size: clamp(30px, 3.4vw, 56px);
  line-height: 1.12;
  white-space: normal;
  text-wrap: balance;
}
html[lang="en"] .intro-copy p {
  max-width: 980px;
  white-space: normal;
  text-wrap: pretty;
}
html[lang="en"] .page-hero h1,
html[lang="en"] .detail-copy h1 {
  max-width: 900px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.06;
  overflow-wrap: normal;
  text-wrap: balance;
}
html[lang="en"] .showcase-copy h1 {
  max-width: 760px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.06;
  overflow-wrap: normal;
  text-wrap: balance;
}
html[lang="en"] .showcase-copy p:not(.eyebrow),
html[lang="en"] .detail-copy p {
  font-size: 17px;
  line-height: 1.75;
}
html[lang="en"] .series-card span,
html[lang="en"] .product-tile span {
  min-height: 38px;
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0.07em;
  overflow-wrap: anywhere;
}
html[lang="en"] .series-card h3,
html[lang="en"] .product-tile h2 {
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.15;
  overflow-wrap: anywhere;
}
html[lang="en"] .series-card p,
html[lang="en"] .product-tile p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}
html[lang="en"] .function-card { min-height: 280px; }
html[lang="en"] .function-card h3 {
  margin-top: 30px;
  font-size: clamp(21px, 1.65vw, 27px);
  line-height: 1.2;
  overflow-wrap: anywhere;
}
html[lang="en"] .function-card p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}
html[lang="en"] .profile-copy p {
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.8;
  text-wrap: pretty;
}
html[lang="en"] .belief-card { min-height: 380px; }
html[lang="en"] .belief-card h3 {
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.2;
}
html[lang="en"] .belief-card p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.75;
}
html[lang="en"] .thawing-type-card h2 {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.08;
  text-wrap: balance;
}
html[lang="en"] .cold-spec-card strong,
html[lang="en"] .model-card h3,
html[lang="en"] .footer-inner a,
html[lang="en"] .footer-inner p { overflow-wrap: anywhere; }
html[lang="en"] .showcase-copy,
html[lang="en"] .detail-copy,
html[lang="en"] .profile-copy,
html[lang="en"] .series-card,
html[lang="en"] .product-tile,
html[lang="en"] .function-card,
html[lang="en"] .belief-card {
  min-width: 0;
  max-width: 100%;
}
html[lang="en"] .belief-heading h2 {
  max-width: 900px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.08;
  text-wrap: balance;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown::before {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 18px;
  content: "";
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
  opacity: 0.86;
}
.nav-dropdown-trigger::after {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-dropdown-trigger[aria-current="page"] {
  color: var(--green-2);
  opacity: 1;
}
.nav-dropdown.is-open .nav-dropdown-trigger::after {
  transform: rotate(225deg) translate(-1px, -1px);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  z-index: 20;
  display: grid;
  min-width: 176px;
  gap: 3px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 60px rgba(3, 40, 28, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-7px) scale(0.975);
  transform-origin: top left;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.nav-dropdown-menu a {
  padding: 11px 13px;
  border-radius: 6px;
  opacity: 1;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
  color: var(--green);
  background: var(--mint);
}
.nav-dropdown-menu a:hover {
  transform: translateX(3px);
}
.nav-cta,
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 999px;
  padding: 0 26px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    border-color 0.22s ease,
    background 0.22s ease;
}
.nav-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--green-2), var(--green));
  color: var(--white);
  box-shadow: 0 18px 42px rgba(0, 169, 79, 0.25);
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.site-header.is-scrolled .btn-ghost { color: var(--ink); border-color: var(--line); }
.nav-cta:hover,
.btn:hover {
  transform: translateY(-3px) scale(1.012);
  box-shadow: 0 22px 48px rgba(0, 169, 79, 0.3);
}
.nav-cta:active,
.btn:active,
.footer-button:active {
  transform: translateY(0) scale(0.975);
  transition-duration: 0.08s;
}
.btn:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
  box-shadow: none;
}
.ripple {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 0.55s ease-out;
  pointer-events: none;
}
@keyframes ripple { to { transform: translate(-50%, -50%) scale(18); opacity: 0; } }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.28s var(--ease-out), opacity 0.2s ease;
}
.site-header.is-open .menu-button span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.site-header.is-open .menu-button span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.video-hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(24px, 5vw, 84px) 90px;
  color: var(--white);
  background: var(--deep);
}
.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-video {
  object-fit: cover;
  transform: scale(var(--hero-scale, 1));
  filter: saturate(0.92) brightness(var(--hero-brightness, 0.66));
  will-change: transform;
}
.hero-shade {
  background:
    radial-gradient(circle at 72% 28%, rgba(0, 169, 79, 0.26), transparent 34%),
    linear-gradient(90deg, rgba(3, 22, 17, 0.88), rgba(3, 22, 17, 0.32) 58%, rgba(3, 22, 17, 0.72));
}
.hero-copy {
  position: relative;
  z-index: 5;
  min-width: 0;
  max-width: 740px;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(3, 22, 17, 0.36);
  backdrop-filter: blur(10px);
}
.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: #5cf0a8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-copy h1,
.page-hero h1,
.intro-copy h2,
.feature-copy h2,
.detail-copy h1 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}
.hero-copy h1 {
  max-width: none;
  font-size: clamp(28px, 3.5vw, 60px);
  font-weight: 900;
  white-space: nowrap;
}
.hero-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.scroll-cue {
  position: absolute;
  right: clamp(22px, 4vw, 70px);
  bottom: 44px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.section {
  padding: clamp(74px, 10vw, 130px) clamp(22px, 5vw, 84px);
}
.intro-split {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 0;
  text-align: center;
  background: var(--white);
}
.intro-copy {
  width: 100%;
  min-width: 0;
}
.intro-copy h2 {
  max-width: none;
  font-size: clamp(28px, 3vw, 58px);
  white-space: nowrap;
}
.intro-copy p {
  margin: 20px auto 0;
  font-size: clamp(13px, 1.05vw, 18px);
  white-space: nowrap;
}
.feature-copy h2 {
  max-width: 880px;
  font-size: clamp(34px, 4.8vw, 72px);
}
.intro-copy p,
.feature-copy p,
.page-hero p,
.detail-copy p,
.product-tile p,
.value-card p,
.contact-info p {
  color: var(--muted);
  line-height: 1.85;
}
.series-grid,
.product-list,
.values-grid,
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 clamp(22px, 5vw, 84px) clamp(74px, 10vw, 120px);
}
.series-grid {
  background: var(--white);
}
.series-card,
.product-tile,
.value-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 500px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(3, 40, 28, 0.08);
  overflow: hidden;
  transition:
    transform 0.38s var(--ease-out),
    box-shadow 0.38s var(--ease-out),
    border-color 0.26s ease;
}
.series-card:hover,
.product-tile:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 169, 79, 0.28);
  box-shadow: 0 30px 72px rgba(3, 40, 28, 0.15);
}
.value-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 169, 79, 0.2);
  box-shadow: 0 22px 54px rgba(3, 40, 28, 0.11);
}
.series-card img,
.product-tile img {
  width: 100%;
  height: 330px;
  object-fit: contain;
  border-radius: 12px;
  background: transparent;
}
.series-card img {
  padding: 8px;
  filter: drop-shadow(0 14px 13px rgba(3, 40, 28, 0.18));
}
.product-tile img {
  padding: 8px;
}
.cold-operation-list .product-tile img {
  height: 280px;
  padding: 18px;
}
.series-card img,
.product-tile img {
  transition: transform 0.48s var(--ease-out), filter 0.4s ease;
}
.series-card:hover img,
.product-tile:hover img {
  transform: scale(1.035);
  filter: drop-shadow(0 19px 18px rgba(3, 40, 28, 0.22));
}
.series-card:active,
.product-tile:active,
.thawing-type-card:active {
  transform: translateY(-2px) scale(0.992);
  transition-duration: 0.08s;
}
.cryo-tile img {
  height: 400px;
  padding: 8px;
}
.series-card span,
.product-tile span,
.value-card span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.series-card h3,
.product-tile h2,
.value-card h3 {
  margin: 0;
  font-size: clamp(25px, 2.6vw, 38px);
}
.feature-band,
.story-grid,
.contact-layout,
.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}
.feature-media img,
.story-image,
.detail-image {
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--shadow);
  background: transparent;
}
.feature-copy .btn { margin-top: 26px; }

.page-hero {
  padding: 170px clamp(22px, 5vw, 84px) 86px;
  background:
    radial-gradient(circle at 76% 20%, rgba(24, 212, 131, 0.2), transparent 30%),
    linear-gradient(135deg, #effaf4, #ffffff);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  min-height: 100vh;
  padding: 150px clamp(22px, 5vw, 84px) 80px;
  background:
    radial-gradient(circle at 78% 24%, rgba(0, 169, 79, 0.18), transparent 32%),
    linear-gradient(135deg, #ffffff, #edf9f2);
}
.about-hero-copy h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(42px, 5.8vw, 86px);
  line-height: 1.06;
  letter-spacing: 0;
}
.about-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.9;
}
.about-hero-media {
  position: relative;
}
.about-hero-media::before {
  position: absolute;
  inset: -24px;
  border: 1px solid rgba(0, 169, 79, 0.18);
  border-radius: 30px;
  content: "";
}
.about-hero-media img {
  position: relative;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.about-profile {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: clamp(28px, 7vw, 100px);
  align-items: start;
  background: #06251d;
  color: var(--white);
}
.profile-mark {
  position: sticky;
  top: 120px;
  display: grid;
  min-height: 300px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}
.profile-mark img {
  width: min(260px, 80%);
  height: auto;
}
.profile-copy {
  display: grid;
  gap: 24px;
}
.profile-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 2;
}
.belief-section {
  background: var(--white);
}
.belief-heading {
  max-width: 900px;
  margin-bottom: 52px;
}
.belief-heading h2,
.about-product-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 68px);
  line-height: 1.1;
}
.belief-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.belief-card {
  min-height: 460px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, #ffffff, #f2fbf5);
  box-shadow: 0 18px 52px rgba(3, 40, 28, 0.08);
}
.belief-card span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.belief-card h3 {
  margin: 42px 0 18px;
  font-size: clamp(25px, 2.4vw, 36px);
}
.belief-card p {
  color: var(--muted);
  line-height: 1.95;
}
.about-product-band {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  background: linear-gradient(135deg, #edf9f2, #ffffff);
}
.about-product-copy .btn {
  margin-top: 28px;
}
.about-product-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.about-product-images img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  border-radius: 18px;
  background: transparent;
  box-shadow: 0 18px 52px rgba(3, 40, 28, 0.08);
}
.about-product-images img:first-child {
  grid-column: span 2;
  height: 320px;
}
.page-hero h1,
.detail-copy h1 {
  max-width: 980px;
  font-size: clamp(44px, 6vw, 90px);
  font-weight: 900;
}
.page-hero p { max-width: 760px; font-size: 18px; }
.product-list { padding-top: 0; }
.product-list.narrow { grid-template-columns: minmax(0, 0.7fr); }
.product-list.narrow-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.thawing-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  background: linear-gradient(180deg, #f4faf6, #ffffff);
}
.thawing-type-card {
  position: relative;
  display: grid;
  min-height: 620px;
  align-content: end;
  overflow: hidden;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.25s ease;
}
.thawing-type-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 42%, rgba(5,37,29,.9));
  content: "";
  z-index: 1;
}
.thawing-type-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 44px;
  transform: scale(1);
  transition: transform 0.55s var(--ease-out);
}
.thawing-type-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 169, 79, 0.28);
  box-shadow: 0 34px 88px rgba(3, 40, 28, 0.2);
}
.thawing-type-card:hover img {
  transform: scale(1.04);
}
.thawing-type-card span,
.thawing-type-card h2,
.thawing-type-card p {
  position: relative;
  z-index: 2;
}
.thawing-type-card span {
  color: #8ff5bd;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.thawing-type-card h2 {
  margin: 14px 0;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 58px);
}
.thawing-type-card p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 18px;
}
.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  min-height: 100vh;
  padding: 150px clamp(22px, 5vw, 84px) 80px;
  background:
    radial-gradient(circle at 78% 20%, rgba(0,169,79,.18), transparent 30%),
    linear-gradient(135deg, #ffffff, #edf9f2);
}
.showcase-copy h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 1.02;
  letter-spacing: 0;
}
.showcase-copy p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.9;
}
.showcase-copy .btn {
  margin-top: 28px;
}
.showcase-image {
  width: 100%;
  max-height: 660px;
  object-fit: contain;
  border-radius: 28px;
  background: transparent;
  box-shadow: var(--shadow);
}
.clean-product {
  grid-template-columns: minmax(0, 0.78fr) minmax(440px, 1fr);
}
.clean-visual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(0, 169, 79, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 66% 30%, rgba(0,169,79,.14), transparent 34%),
    linear-gradient(145deg, #ffffff, #f3fbf7);
  box-shadow: var(--shadow);
}
.clean-visual::before {
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(0, 169, 79, 0.1);
  border-radius: 24px;
  content: "";
}
.clean-visual img {
  position: relative;
  width: min(92%, 760px);
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 22px 42px rgba(3, 40, 28, 0.14));
}
.function-section {
  background: #061f19;
  color: #ffffff;
}
.function-heading {
  max-width: 900px;
  margin-bottom: 42px;
}
.function-heading h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 76px);
  line-height: 1.06;
}
.function-heading p:not(.eyebrow) {
  color: rgba(255,255,255,.68);
  line-height: 1.85;
}
.function-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.function-card {
  min-height: 260px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.04));
  transition: transform .34s var(--ease-out), border-color .28s ease, background .28s ease, box-shadow .34s var(--ease-out);
}
.function-card:hover {
  transform: translateY(-3px);
  border-color: rgba(92,240,168,.42);
  background: linear-gradient(145deg, rgba(24,212,131,.18), rgba(255,255,255,.05));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.13);
}
.function-card span {
  color: #5cf0a8;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
}
.function-card h3 {
  margin: 36px 0 14px;
  font-size: clamp(22px, 2.1vw, 31px);
}
.function-card p {
  color: rgba(255,255,255,.72);
  line-height: 1.85;
}
.model-section {
  background: linear-gradient(180deg, #f6fbf8, #ffffff);
}
.model-heading {
  max-width: 900px;
  margin-bottom: 40px;
}
.model-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.06;
}
.model-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.85;
}
.model-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.model-card {
  display: grid;
  align-content: space-between;
  min-height: 360px;
  padding: 22px;
  border: 1px solid rgba(0, 169, 79, 0.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 12%, rgba(0,169,79,.13), transparent 42%),
    #ffffff;
  box-shadow: 0 16px 40px rgba(5, 49, 38, 0.08);
  transition: transform .38s var(--ease-out), box-shadow .38s var(--ease-out), border-color .28s ease;
}
.model-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 169, 79, 0.28);
  box-shadow: 0 26px 60px rgba(5, 49, 38, 0.14);
}
.model-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(3, 40, 28, 0.12));
  transition: transform .45s var(--ease-out);
}
.model-card:hover img {
  transform: scale(1.025);
}
.model-card h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 22px;
}
.detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  background: #061f19;
}
.detail-gallery img {
  width: 100%;
  min-height: 360px;
  object-fit: contain;
  border-radius: 22px;
  background: transparent;
  box-shadow: 0 26px 70px rgba(0,0,0,.18);
}
.product-detail {
  min-height: 100vh;
  padding: 150px clamp(22px, 5vw, 84px) 78px;
  background: linear-gradient(135deg, #ffffff, #eefaf4);
}
.detail-copy {
  min-width: 0;
}
.detail-copy h1 {
  overflow-wrap: anywhere;
}
.detail-copy .btn { margin-top: 26px; }
.detail-image {
  max-height: 620px;
  object-fit: contain;
  padding: 24px;
}
.cold-operation-detail-image {
  width: min(100%, 560px);
  max-height: 480px;
  justify-self: center;
  padding: 20px;
}
.cold-spec-section {
  background: linear-gradient(180deg, #f3faf6 0%, #ffffff 100%);
}
.cold-spec-heading {
  max-width: 880px;
  margin-bottom: 40px;
}
.cold-spec-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.06;
}
.cold-spec-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.85;
}
.cold-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.cold-spec-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cold-spec-card {
  min-width: 0;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(0, 126, 76, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(3, 40, 28, 0.07);
  transition: transform 0.34s var(--ease-out), border-color 0.28s ease, box-shadow 0.34s var(--ease-out);
}
.cold-spec-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 169, 79, 0.34);
  box-shadow: 0 26px 60px rgba(3, 40, 28, 0.12);
}
.cold-spec-card span {
  display: block;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.cold-spec-card strong {
  display: block;
  margin: 20px 0 12px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.cold-spec-card p,
.cold-spec-note {
  color: var(--muted);
  line-height: 1.75;
}
.cold-spec-note {
  margin: 24px 0 0;
}
.contact-layout {
  align-items: stretch;
}
.contact-info,
.map-card {
  border-radius: 22px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  box-shadow: var(--shadow);
}
.contact-info h2 {
  margin-top: 0;
  font-size: clamp(30px, 4vw, 54px);
}
.contact-info p,
.footer-contact a {
  overflow-wrap: anywhere;
}
.map-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 460px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 49, 38, 0.82), rgba(0, 169, 79, 0.54)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.12) 0 1px, transparent 1px 32px),
    #0c4b38;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.map-card::before {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  content: "";
}
.map-card span,
.map-card strong,
.map-card em { position: relative; }
.map-card span { color: #a6ffd0; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
.map-card strong { margin-top: 18px; font-size: 34px; }
.map-card em { margin-top: 10px; color: rgba(255,255,255,.75); font-style: normal; }
.map-card.map-embed {
  display: block;
  min-height: 520px;
  padding: 0;
  background: #eef5f2;
}
.map-card.map-embed::before {
  display: none;
}
.map-frame {
  display: block;
  width: 100%;
  height: 520px;
  min-height: 520px;
  border: 0;
  border-radius: 22px;
  background: #eef5f2;
}

.utility-panel,
.form-section {
  background: linear-gradient(180deg, #f4faf6, #ffffff);
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}
.filter-bar input,
.filter-bar select,
.kemesser-form input,
.kemesser-form textarea,
.kemesser-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.filter-bar input:focus,
.filter-bar select:focus,
.kemesser-form input:focus,
.kemesser-form textarea:focus,
.kemesser-form select:focus {
  border-color: rgba(0, 169, 79, 0.62);
  outline: none;
  box-shadow: 0 0 0 4px rgba(24, 212, 131, 0.14);
}
.filter-bar input,
.filter-bar select {
  flex: 1 1 240px;
}
.table-card,
.kemesser-form,
.record-card,
.empty-state {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(3, 40, 28, 0.08);
}
.table-card {
  overflow-x: auto;
}
.download-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}
.download-table th,
.download-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.65;
}
.download-table th {
  color: var(--ink);
  background: #f4faf6;
  font-weight: 900;
}
.table-link {
  color: var(--green);
  font-weight: 900;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}
.table-link:hover {
  color: #007f3c;
  text-decoration: underline;
}
.empty-state {
  margin-top: 18px;
  padding: 28px;
  color: var(--muted);
  text-align: center;
}
.kemesser-form {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.kemesser-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ink);
  font-weight: 800;
}
.kemesser-form textarea {
  min-height: 150px;
  resize: vertical;
}
.privacy-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted) !important;
  font-weight: 500 !important;
  line-height: 1.8;
}
.privacy-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 5px;
}
.form-message {
  min-height: 28px;
  color: var(--green);
  font-weight: 900;
}
.btn-ghost.dark {
  color: var(--ink);
  border-color: var(--line);
  background: #ffffff;
}
.records-list {
  display: grid;
  gap: 18px;
}
.record-card {
  padding: 24px;
}
.record-card h2 {
  margin-top: 0;
}
.record-card pre {
  overflow-x: auto;
  white-space: pre-wrap;
  padding: 18px;
  border-radius: 14px;
  background: #f4faf6;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #021d16;
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) repeat(4, minmax(112px, .58fr)) minmax(250px, 1fr);
  gap: clamp(18px, 2.4vw, 42px);
  padding: clamp(44px, 6vw, 74px) clamp(22px, 5vw, 84px);
}
.footer-brand img {
  width: 148px;
  height: auto;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  max-width: 330px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.8;
}
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  background: rgba(255,255,255,.06);
  transition: transform .3s var(--ease-out), border-color .22s ease, background .22s ease, box-shadow .3s var(--ease-out);
}
.footer-button:hover {
  transform: translateY(-3px);
  border-color: rgba(92, 240, 168, .54);
  background: rgba(255,255,255,.11);
}
.footer-button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, #25dd8f, #00a95a);
  box-shadow: 0 18px 36px rgba(0, 169, 79, .28);
}
.footer-col h3,
.footer-contact h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 18px;
}
.footer-col a,
.footer-contact a,
.footer-contact span {
  display: block;
  margin: 0 0 12px;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
  transition: color .22s ease, transform .28s var(--ease-out);
}
.footer-col a:hover,
.footer-contact a:hover {
  color: #5cf0a8;
  transform: translateX(3px);
}
.footer-contact strong {
  display: block;
  margin-bottom: 4px;
  color: #5cf0a8;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(22px, 5vw, 84px);
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.58);
}
.footer-bottom a {
  color: rgba(255,255,255,.72);
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.58s ease, transform 0.68s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.page-enter {
  animation: pageEnter 0.34s var(--ease-standard) both;
}
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1450px) {
  html[lang="en"] .footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1100px) {
  .series-grid,
  .product-list,
  .values-grid,
  .model-grid,
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-band,
  .story-grid,
  .contact-layout,
  .product-detail,
  .intro-split,
  .about-hero,
  .about-profile,
  .about-product-band,
  .product-showcase,
  .thawing-type-grid { grid-template-columns: 1fr; }
  .function-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cold-spec-grid,
  .cold-spec-grid.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .belief-grid { grid-template-columns: 1fr; }
  .profile-mark { position: static; }
  .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand,
  .footer-contact { grid-column: 1 / -1; }
}
@media (max-width: 1200px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .brand img { width: 134px; }
  .main-nav,
  .nav-cta { display: none; }
  .menu-button { display: block; justify-self: end; }
  .site-header.is-open .main-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    box-shadow: var(--shadow);
    animation: mobileMenuIn 0.3s var(--ease-out) both;
  }
  .site-header.is-open .main-nav a { padding: 14px; }
  .site-header.is-open .main-nav .language-switch {
    display: inline-flex;
    width: max-content;
    min-width: 64px;
    margin: 8px 14px 4px;
    padding: 8px 14px;
  }
  .site-header.is-open .nav-dropdown {
    display: grid;
  }
  .site-header.is-open .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 14px;
    color: var(--ink);
  }
  .site-header.is-open .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 8px 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .site-header.is-open .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }
  .site-header.is-open .nav-dropdown-menu a {
    padding: 12px 14px;
  }
}
@keyframes mobileMenuIn {
  from { opacity: 0; transform: translateY(-10px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 680px) {
  .video-hero,
  .page-hero,
  .product-detail,
  .about-hero,
  .product-showcase { padding-top: 116px; }
  .hero-copy h1 { font-size: clamp(26px, 5vw, 40px); }
  .page-hero h1,
  .detail-copy h1 { font-size: 40px; }
  .series-grid,
  .product-list,
  .values-grid,
  .spec-grid,
  .model-grid,
  .product-list.narrow-two,
  .detail-gallery,
  .function-grid,
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .thawing-type-card { min-height: 480px; }
  .clean-visual { min-height: 360px; }
  .detail-gallery img { min-height: 240px; }
  .about-hero-media img { min-height: 320px; }
  .about-product-images,
  .about-product-images img:first-child { grid-template-columns: 1fr; grid-column: auto; }
  html[lang="en"] .hero-copy h1 { font-size: 34px; }
  html[lang="en"] .page-hero h1,
  html[lang="en"] .detail-copy h1,
  html[lang="en"] .showcase-copy h1 { font-size: 38px; }
  html[lang="en"] .function-card,
  html[lang="en"] .belief-card { min-height: 0; }
}

@media (max-width: 520px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  html[lang="en"] .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(27px, 8.3vw, 35px);
    line-height: 1.08;
    white-space: normal;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  html[lang="en"] .intro-copy h2,
  html[lang="en"] .intro-copy p {
    max-width: 100%;
    white-space: normal;
    text-wrap: pretty;
  }

  html[lang="en"] .page-hero h1,
  html[lang="en"] .detail-copy h1,
  html[lang="en"] .showcase-copy h1 {
    max-width: 100%;
    font-size: clamp(32px, 10vw, 40px);
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  html[lang="en"] .belief-heading h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .site-header.is-scrolled,
  .site-header.is-open {
    padding-block: 10px;
  }

  .brand img {
    width: 118px;
    height: 38px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .site-header.is-open .main-nav {
    top: 64px;
    left: 12px;
    right: 12px;
    max-height: calc(100vh - 86px);
    overflow: auto;
  }

  .video-hero {
    min-height: 100svh;
    padding: 112px 16px 44px;
    align-items: end;
  }

  .hero-copy {
    width: 100%;
    padding: 20px;
    border-radius: 18px;
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-copy h1,
  .showcase-copy h1,
  .about-hero-copy h1 {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1.08;
  }

  .hero-copy h1 {
    font-size: clamp(21px, 6.4vw, 28px);
    white-space: nowrap;
  }

  .detail-copy h1 {
    font-size: clamp(28px, 8vw, 34px);
    text-wrap: wrap;
  }

  .product-detail {
    min-height: auto;
    padding-bottom: 58px;
  }

  .detail-copy .btn {
    max-width: 100%;
  }

  .hero-copy p:not(.eyebrow),
  .page-hero p,
  .showcase-copy p:not(.eyebrow),
  .about-hero-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-actions,
  .footer-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn,
  .nav-cta,
  .footer-button {
    width: 100%;
    min-height: 46px;
  }

  .scroll-cue {
    display: none;
  }

  .section,
  .page-hero,
  .about-hero,
  .product-showcase,
  .product-detail {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-hero {
    padding-top: 112px;
    padding-bottom: 52px;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .intro-split {
    padding-left: 8px;
    padding-right: 8px;
  }

  .series-grid,
  .product-list,
  .values-grid,
  .spec-grid {
    gap: 14px;
    padding: 0 16px 64px;
  }

  .series-card,
  .product-tile,
  .value-card {
    min-height: auto;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
  }

  .series-card img,
  .product-tile img {
    height: clamp(210px, 62vw, 300px);
    max-height: 320px;
    padding: 6px;
  }

  .cryo-tile img {
    height: clamp(250px, 72vw, 360px);
  }

  .series-card h3,
  .product-tile h2,
  .value-card h3 {
    font-size: clamp(25px, 8vw, 34px);
  }

  .intro-split,
  .feature-band,
  .story-grid,
  .contact-layout,
  .about-profile,
  .about-product-band,
  .thawing-type-grid,
  .product-showcase,
  .product-detail {
    gap: 28px;
  }

  .intro-copy h2,
  .feature-copy h2,
  .belief-heading h2,
  .about-product-copy h2,
  .function-heading h2,
  .model-heading h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .intro-copy h2 {
    font-size: clamp(17px, 4.8vw, 42px);
    white-space: nowrap;
  }

  .intro-copy p {
    margin-top: 12px;
    font-size: clamp(7px, 1.85vw, 14px);
    white-space: nowrap;
  }

  .about-hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 56px;
  }

  .about-hero-media::before {
    inset: -10px;
    border-radius: 22px;
  }

  .about-hero-media img,
  .story-image {
    min-height: 260px;
    border-radius: 20px;
  }

  .profile-mark {
    min-height: 180px;
  }

  .profile-copy p {
    font-size: 16px;
    line-height: 1.9;
  }

  .belief-card,
  .function-card {
    min-height: auto;
    padding: 22px;
  }

  .belief-card h3,
  .function-card h3 {
    margin-top: 24px;
  }

  .about-product-images {
    gap: 12px;
  }

  .about-product-images img,
  .about-product-images img:first-child {
    height: 220px;
  }

  .thawing-type-card {
    min-height: 420px;
    padding: 22px;
    border-radius: 20px;
  }

  .thawing-type-card img {
    padding: 18px;
  }

  .thawing-type-card h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .product-showcase {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 56px;
  }

  .showcase-image,
  .detail-image {
    max-height: 380px;
    padding: 12px;
    border-radius: 20px;
  }

  .clean-visual {
    min-height: 320px;
    border-radius: 22px;
  }

  .clean-visual::before {
    inset: 14px;
    border-radius: 18px;
  }

  .clean-visual img {
    width: 96%;
    max-height: 280px;
  }

  .function-grid,
  .model-grid,
  .detail-gallery,
  .cold-spec-grid,
  .cold-spec-grid.three {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .model-card {
    min-height: auto;
    padding: 18px;
  }

  .model-card img {
    height: 220px;
  }

  .detail-gallery img {
    min-height: 0;
    height: auto;
    max-height: 340px;
    border-radius: 18px;
  }

  .contact-info,
  .map-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .map-card {
    min-height: 320px;
  }

  .map-card strong {
    font-size: 26px;
  }

  .footer-inner {
    gap: 26px;
    padding: 42px 16px;
  }

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

  .footer-bottom {
    padding: 18px 16px;
    font-size: 13px;
  }
}

.map-open-link {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(0, 169, 79, 0.24);
}
.map-frame {
  background: #eef5f2;
}
.map-address-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 3;
  max-width: min(420px, calc(100% - 36px));
  padding: 16px 18px;
  border: 1px solid rgba(7, 26, 21, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(3, 40, 28, 0.14);
  backdrop-filter: blur(10px);
}
.map-address-badge span {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.map-address-badge strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}
.map-address-badge em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  font-style: normal;
}
@media (max-width: 520px) {
  .map-address-badge {
    left: 12px;
    right: 12px;
    top: 12px;
    max-width: none;
    padding: 13px 14px;
  }
  .map-address-badge strong { font-size: 17px; }
  .map-address-badge em { font-size: 13px; }
}

@media (hover: none) {
  .nav-cta:hover,
  .btn:hover,
  .footer-button:hover,
  .series-card:hover,
  .product-tile:hover,
  .value-card:hover,
  .thawing-type-card:hover,
  .function-card:hover,
  .model-card:hover {
    transform: none;
  }

  .series-card:hover img,
  .product-tile:hover img,
  .thawing-type-card:hover img,
  .model-card:hover img {
    transform: none;
  }
}

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

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

  .hero-video { will-change: auto; }
}
