:root {
  --ink: #15171b;
  --muted: #5f6670;
  --paper: #f5f2ec;
  --white: #ffffff;
  --line: #ded9cf;
  --blue: #176eb8;
  --red: #c80d27;
  --green: #2f6b5c;
  --gold: #bb8745;
  --dark: #20242b;
  --radius: 8px;
  --header-height: 135px;
  --shadow: 0 18px 46px rgba(21, 23, 27, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial,
    "Noto Sans SC", sans-serif;
  line-height: 1.58;
}

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

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

button {
  font: inherit;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(21, 23, 27, 0.1);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  gap: 24px;
  align-items: center;
  width: calc(100% - 108px);
  min-height: var(--header-height);
  margin: 0 auto;
}

.company-logo {
  display: flex;
  align-items: center;
  width: 140px;
}

.company-logo img {
  width: 140px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4.2vw, 58px);
  min-height: 48px;
  padding: 0;
  color: var(--ink);
  background: transparent;
}

.site-nav a {
  position: relative;
  padding: 12px 4px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 900;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--red);
  display: none;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a {
  color: var(--ink);
}

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

.language-switch {
  display: inline-flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 0;
  background: transparent;
}

.lang-button {
  min-width: auto;
  min-height: 40px;
  padding: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 900;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}

.lang-button.is-active {
  color: var(--red);
  background: transparent;
}

.language-divider {
  align-self: center;
  color: var(--ink);
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--white);
  border: 1px solid rgba(21, 23, 27, 0.16);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.35rem, 4.5vw, 4.15rem);
}

h2 {
  font-size: clamp(2rem, 4.3vw, 4rem);
}

h3 {
  font-size: clamp(1.22rem, 2vw, 1.55rem);
}

.home-hero {
  position: relative;
  width: 100%;
  height: min(920px, calc(100vw * 920 / 1488));
  min-height: 0;
  aspect-ratio: auto;
  overflow: hidden;
  color: var(--white);
  background: #020408;
  isolation: isolate;
}

.home-hero::before,
.home-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.home-hero::before,
.home-hero::after {
  display: none;
}

.home-hero::before {
  inset: 0;
  z-index: 2;
  background: rgba(4, 6, 9, 0.02);
}

.home-hero::after {
  inset: auto 0 0;
  z-index: 3;
  height: 18%;
  background: rgba(4, 6, 9, 0.12);
}

.home-hero__slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.home-hero__slides {
  z-index: 1;
}

.hero-slide {
  opacity: 0;
  overflow: hidden;
  transition: opacity 720ms ease;
}

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

.hero-slide__backdrop {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.hero-slide__reference {
  position: absolute;
  top: -14.7826087%;
  left: 50%;
  z-index: 1;
  width: auto;
  height: 114.7826087%;
  max-width: none;
  object-fit: contain;
  transform: translateX(-50%);
}

.hero-slide__backdrop,
.hero-slide__product,
.hero-product-callout {
  display: none;
}

.hero-copy-mask {
  display: none;
}

html[lang="en"] .home-hero__copy,
html[lang="en"] .hero-carousel {
  opacity: 0;
}

.hero-carousel {
  opacity: 0;
}

html[lang="zh-CN"] .hero-copy-mask {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: block;
  pointer-events: none;
  background:
    radial-gradient(ellipse 13% 9% at 39% 37%, rgba(2, 5, 9, 0.96) 0%, rgba(2, 5, 9, 0.78) 42%, rgba(2, 5, 9, 0) 78%),
    radial-gradient(ellipse 13% 10% at 37% 47%, rgba(2, 5, 9, 0.9) 0%, rgba(2, 5, 9, 0.58) 43%, rgba(2, 5, 9, 0) 82%);
}

html[lang="zh-CN"] .home-hero {
  background:
    radial-gradient(ellipse 38% 52% at 72% 10%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 58%),
    radial-gradient(ellipse 34% 28% at 56% 92%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 66%),
    linear-gradient(90deg, #020509 0%, #020509 37%, rgba(2, 5, 9, 0.96) 40%, rgba(2, 5, 9, 0.18) 49%, rgba(2, 5, 9, 0) 57%),
    #020408;
}

html[lang="zh-CN"] .home-hero::after {
  inset: 0;
  z-index: 4;
  display: block;
  height: auto;
  background:
    radial-gradient(ellipse 18% 5% at 50% 80.5%, rgba(2, 4, 8, 0.98) 0%, rgba(2, 4, 8, 0.94) 48%, rgba(2, 4, 8, 0) 80%),
    linear-gradient(180deg, rgba(2, 4, 8, 0) 0%, rgba(2, 4, 8, 0) 70%, rgba(2, 4, 8, 0.66) 79%, rgba(2, 4, 8, 0.96) 87%, rgba(2, 4, 8, 0.99) 100%);
}

html[lang="zh-CN"] .hero-slide__reference {
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.08) 42.5%, rgba(0, 0, 0, 0.72) 46%, #000 50%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.08) 42.5%, rgba(0, 0, 0, 0.72) 46%, #000 50%, #000 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

html[lang="zh-CN"] .home-hero__copy,
html[lang="zh-CN"] .hero-carousel {
  opacity: 1;
}

@media (min-width: 761px) {
  .hero-slide__backdrop,
  .hero-slide__product,
  .hero-product-callout {
    display: none !important;
  }
}

.hero-slide--coffee .hero-slide__backdrop,
.hero-slide--gelato .hero-slide__backdrop {
  position: absolute;
  top: 0;
  left: 7.1%;
  width: 96%;
  height: 100%;
  object-fit: fill;
}

.hero-slide--coffee,
.hero-slide--gelato {
  background: #000;
}

.hero-slide__product {
  position: absolute;
  z-index: 2;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.42));
}

.hero-slide--coffee .hero-slide__product {
  top: 6%;
  left: 39.5%;
  width: 55%;
  height: 72%;
}

.hero-slide--coffee .hero-slide__product,
.hero-slide--gelato .hero-slide__product,
.hero-slide--coffee .hero-product-callout,
.hero-slide--gelato .hero-product-callout {
  display: none;
}

.hero-slide--gelato .hero-slide__product {
  top: 15%;
  left: 44.5%;
  width: 41%;
  height: 63%;
}

.hero-slide--thawing .hero-slide__product {
  top: 22.5%;
  left: 50%;
  width: 41%;
  height: 59%;
}

.hero-slide--thawing .hero-slide__backdrop {
  transform: translateX(-10px) scale(1.155);
  transform-origin: center;
}

.hero-product-callout {
  position: absolute;
  z-index: 3;
  color: var(--white);
}

.hero-product-callout::before {
  display: block;
  width: 44px;
  height: 3px;
  margin-bottom: 18px;
  background: var(--red);
  content: "";
}

.hero-product-callout strong,
.hero-product-callout span {
  display: block;
}

.hero-product-callout strong {
  font-size: clamp(1.22rem, 1.8vw, 1.78rem);
  font-weight: 900;
  line-height: 1.08;
}

.hero-product-callout span {
  margin-top: 15px;
  padding-top: 13px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-product-callout--side {
  top: 48%;
  right: 2.5%;
  width: 125px;
  transform: translateY(-50%);
}

.hero-slide--coffee .hero-product-callout--side {
  top: 60%;
}

.hero-slide--gelato .hero-product-callout--side {
  top: 47%;
}

.hero-product-callout--top {
  top: 11.5%;
  left: 58.5%;
  width: 28%;
  text-align: center;
}

.hero-product-callout--top::before {
  margin-right: auto;
  margin-left: auto;
}

.hero-product-callout--top strong {
  font-size: clamp(1.38rem, 2.1vw, 2.05rem);
}

.hero-product-callout--top::after {
  display: block;
  width: 136px;
  height: 1px;
  margin: 16px auto 0;
  background: rgba(255, 255, 255, 0.3);
  content: "";
}

.home-hero__content {
  position: relative;
  z-index: 5;
  display: grid;
  width: min(1318px, calc(100% - 170px));
  height: 100%;
  min-height: 0;
  grid-template-rows: 1fr auto;
  padding: 48px 0 46px;
}

.home-hero__copy {
  align-self: center;
  max-width: 620px;
  text-align: left;
  transform: translateY(-6px);
}

.hero-feature-labels {
  display: none;
}

.hero-feature-label {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  gap: 4px;
  max-width: 330px;
  margin: 0;
  padding: 11px 0 12px 18px;
  color: var(--white);
  background: transparent;
  border-left: 3px solid var(--red);
  border-radius: 0;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 360ms ease, transform 360ms ease;
}

.hero-feature-label.is-active {
  opacity: 1;
  transform: translateY(0);
}

.hero-feature-label strong {
  font-size: clamp(1.02rem, 1.4vw, 1.42rem);
  font-weight: 900;
  line-height: 1.08;
}

.hero-feature-label span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.home-hero h1 {
  max-width: 620px;
  font-size: clamp(3rem, 4.3vw, 4rem);
  color: var(--white);
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.48);
  overflow-wrap: normal;
  word-break: keep-all;
}

.home-hero h1 span {
  display: block;
}

.home-hero h1::after {
  display: block;
  width: 72px;
  height: 5px;
  margin-top: 24px;
  background: var(--red);
  border-radius: 999px;
  content: "";
}

html[lang="zh-CN"] .home-hero__copy {
  max-width: 600px;
}

html[lang="zh-CN"] .home-hero h1 {
  max-width: 600px;
  font-size: clamp(3rem, 3.5vw, 3.65rem);
  line-height: 1.12;
  overflow-wrap: normal;
  word-break: normal;
}

html[lang="zh-CN"] .home-hero h1 span {
  display: inline;
}

html[lang="zh-CN"] .home-hero__copy p:not(.eyebrow) {
  max-width: 470px;
}

.home-hero__copy p:not(.eyebrow) {
  max-width: 410px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.52;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.38);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 30px;
}

.home-hero .hero-actions .button {
  min-height: 62px;
  padding: 0 36px;
  font-size: 1.08rem;
}

.home-hero .hero-actions {
  transform: translateY(15px);
}

.hero-carousel {
  display: grid;
  gap: 22px;
  align-self: end;
  justify-items: center;
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button--primary:hover,
.button--primary:focus-visible {
  background: #a90b21;
}

.button--secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
}

.home-hero .button--secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(213, 0, 32, 0.86);
}

.home-hero .button--secondary:hover,
.home-hero .button--secondary:focus-visible {
  background: rgba(213, 0, 32, 0.1);
  border-color: var(--red);
}

.hero-progress {
  display: flex;
  justify-content: center;
  gap: 14px;
  width: fit-content;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border-radius: 999px;
}

.hero-progress button {
  width: 12px;
  height: 12px;
  padding: 0;
  background: rgba(255, 255, 255, 0.58);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background 220ms ease, transform 220ms ease;
}

.hero-progress button.is-active {
  background: var(--red);
  transform: scale(1.08);
}

.hero-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3.5vw, 46px);
  width: min(1160px, calc(100% - 80px));
  color: rgba(255, 255, 255, 0.62);
}

.hero-track__item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1px auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hero-track__item::before {
  order: 2;
  width: 1px;
  height: 54px;
  background: rgba(255, 255, 255, 0.52);
  content: "";
}

.hero-track__index {
  order: 1;
  color: rgba(255, 255, 255, 0.56);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1;
  transition: color 220ms ease;
}

.hero-track__thumb {
  order: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 54px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.hero-track__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-track__text {
  order: 4;
  display: grid;
  gap: 4px;
  min-width: 0;
}

.hero-track__text strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.1;
  transition: color 220ms ease;
}

.hero-track__text span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
  line-height: 1.2;
}

.hero-track__item.is-active .hero-track__index,
.hero-track__item:hover .hero-track__index,
.hero-track__item:focus-visible .hero-track__index {
  color: var(--red);
}

.hero-track__item.is-active .hero-track__text strong,
.hero-track__item:hover .hero-track__text strong,
.hero-track__item:focus-visible .hero-track__text strong {
  color: var(--white);
}

.home-hero[data-active-slide="0"] .home-hero__content,
.home-hero[data-active-slide="1"] .home-hero__content {
  width: min(1344px, calc(100% - 144px));
}

.home-hero[data-active-slide="0"] h1,
.home-hero[data-active-slide="1"] h1 {
  line-height: 1.16;
}

.home-hero[data-active-slide="0"] .home-hero__copy,
.home-hero[data-active-slide="1"] .home-hero__copy {
  transform: translateY(-23px);
}

.home-hero[data-active-slide="0"] .hero-actions,
.home-hero[data-active-slide="1"] .hero-actions {
  transform: none;
}

.home-hero[data-active-slide="0"] .hero-progress,
.home-hero[data-active-slide="1"] .hero-progress {
  transform: translateY(-25px);
}

.home-hero[data-active-slide="0"] .hero-track,
.home-hero[data-active-slide="1"] .hero-track {
  transform: translateY(-15px);
}

.section {
  padding: clamp(64px, 9vw, 116px) 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p:not(.section-kicker) {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading--compact {
  max-width: 760px;
}

.brand-map-section {
  background: var(--white);
}

.brand-map-section .section-kicker {
  margin-bottom: 30px;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.brand-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  max-width: 980px;
  margin: 0 auto;
}

.brand-entry {
  display: grid;
  grid-template-rows: auto 260px 1fr;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(21, 23, 27, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(21, 23, 27, 0.08);
}

.brand-entry__site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding: 0 20px;
  color: var(--white);
  background: var(--dark);
  font-weight: 900;
}

.brand-entry:nth-child(1) .brand-entry__site {
  background: var(--red);
}

.brand-entry:nth-child(2) .brand-entry__site {
  background: var(--green);
}

.brand-entry__site span:first-child {
  font-size: clamp(1.08rem, 2.1vw, 1.48rem);
}

.brand-entry__site span:last-child {
  flex: 0 0 auto;
  font-size: 0.82rem;
  opacity: 0.82;
}

.brand-entry__visual {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 22px;
  background: linear-gradient(180deg, #fbfaf7 0%, #e7e9e3 100%);
}

.brand-entry__visual-link {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.brand-entry__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-entry__visual--westrock {
  padding: 18px 36px;
}

.brand-entry__visual--westrock img {
  width: auto;
  height: auto;
  max-width: min(92%, 380px);
  max-height: 232px;
}

.brand-entry__body {
  padding: 24px;
}

.brand-entry__logo {
  width: 154px;
  max-height: 56px;
  object-fit: contain;
  margin-bottom: 20px;
}

.brand-entry__logo--wide {
  width: 190px;
}

.brand-entry__body p {
  margin: 12px 0 0;
  color: var(--muted);
}

.product-section {
  background: #ece8df;
}

.product-section .section-kicker {
  margin-bottom: 30px;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.12;
}

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

.product-card {
  min-height: 360px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(21, 23, 27, 0.1);
  border-radius: var(--radius);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  padding: 18px;
  background: linear-gradient(180deg, #fbfaf7 0%, #e6ebe8 100%);
}

.product-card p {
  margin: 18px 18px 6px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0 18px 22px;
  font-size: 1.06rem;
}

.page-hero {
  min-height: 470px;
  padding: clamp(68px, 9vw, 122px) 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(21, 23, 27, 0.86) 0%, rgba(21, 23, 27, 0.68) 54%, rgba(21, 23, 27, 0.24) 100%),
    url("assets/images/hambach-factory-3.jpg") center / cover no-repeat;
}

.page-hero--contact {
  background:
    linear-gradient(90deg, rgba(21, 23, 27, 0.88) 0%, rgba(21, 23, 27, 0.7) 56%, rgba(47, 107, 92, 0.34) 100%),
    url("assets/images/westrock-factory-2.png") center / cover no-repeat;
}

.page-hero__inner {
  max-width: 790px;
}

.page-hero .eyebrow {
  color: var(--gold);
}

.page-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.about-story {
  background: var(--white);
}

.about-story__grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.48fr) minmax(300px, 1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.about-story__logo {
  width: min(310px, 80vw);
  margin: 0 auto;
}

.about-story__copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.factory-proof {
  background: var(--white);
}

.factory-proof__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: center;
}

.factory-proof p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.06rem;
}

.factory-proof__images {
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  gap: 12px;
}

.factory-proof__images img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.factory-proof__images img:last-child {
  min-height: 340px;
  margin-top: 54px;
}

.contact-main {
  background: var(--white);
}

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

.contact-panel {
  min-height: 420px;
  padding: clamp(28px, 5vw, 48px);
  background: var(--paper);
  border: 1px solid rgba(21, 23, 27, 0.1);
  border-radius: var(--radius);
}

.contact-panel h2 {
  font-size: clamp(2rem, 3.2vw, 3.25rem);
}

.contact-panel--dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(21, 23, 27, 0.94) 0%, rgba(47, 107, 92, 0.8) 100%),
    url("assets/images/westrock-factory-1.png") center / cover no-repeat;
}

.contact-panel--dark .section-kicker {
  color: var(--gold);
}

.contact-methods,
.website-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-methods a,
.website-list a {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(21, 23, 27, 0.09);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease;
}

.contact-methods a:hover,
.contact-methods a:focus-visible,
.website-list a:hover,
.website-list a:focus-visible {
  border-color: rgba(200, 13, 39, 0.38);
  transform: translateY(-2px);
}

.contact-methods span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-methods strong {
  font-size: clamp(1.04rem, 2vw, 1.35rem);
  overflow-wrap: anywhere;
}

.website-list a {
  align-items: center;
  grid-template-columns: 140px 1fr;
  color: var(--ink);
}

.website-list img {
  width: 126px;
  max-height: 50px;
  object-fit: contain;
}

.website-list span {
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-brief {
  padding: clamp(60px, 8vw, 96px) 0;
  background: #ece8df;
}

.contact-brief__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.54fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
}

.contact-brief ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-brief li {
  padding: 18px 20px;
  color: var(--muted);
  background: var(--white);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--dark);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner img {
  width: 126px;
  padding: 8px;
  background: var(--white);
  border-radius: var(--radius);
}

.footer-inner p {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 1020px) {
  .header-inner {
    grid-template-columns: 142px auto auto;
  }

  .site-nav {
    gap: 16px;
  }

  .home-hero__content,
  .about-story__grid,
  .factory-proof__grid,
  .contact-brief__grid {
    grid-template-columns: 1fr;
  }

  .factory-proof__images {
    grid-template-columns: 1fr 1fr;
  }

  .brand-map {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .section-inner,
  .header-inner {
    width: min(100% - 32px, 1180px);
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }

  .company-logo {
    width: 116px;
  }

  .company-logo img {
    width: 116px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .language-switch {
    order: 2;
    gap: 2px;
  }

  .lang-button {
    min-width: 38px;
    min-height: 34px;
    padding: 0 8px;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 8px);
    right: 16px;
    left: 16px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    min-height: auto;
    padding: 8px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(21, 23, 27, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 12px;
  }

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

  .home-hero {
    height: 760px;
    min-height: 760px;
    aspect-ratio: auto;
  }

  .home-hero::before {
    background: rgba(4, 6, 9, 0.1);
  }

  .home-hero::after {
    height: 24%;
  }

  .hero-slide {
    overflow: hidden;
  }

  .hero-slide__backdrop {
    display: block;
    object-position: center;
  }

  .hero-slide__reference,
  .hero-copy-mask {
    display: none;
  }

  html[lang="en"] .home-hero__copy,
  html[lang="en"] .hero-carousel,
  .hero-carousel {
    opacity: 1;
  }

  .hero-slide--thawing .hero-slide__product,
  .hero-slide--thawing .hero-product-callout {
    display: block !important;
  }

  .hero-slide--coffee .hero-slide__backdrop,
  .hero-slide--gelato .hero-slide__backdrop {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-slide--coffee .hero-slide__backdrop {
    content: url("assets/images/hero-mobile-01-coffee.jpg");
  }

  .hero-slide--gelato .hero-slide__backdrop {
    content: url("assets/images/hero-mobile-02-gelato.jpg");
  }

  .hero-slide--thawing .hero-slide__backdrop {
    transform: none;
  }

  .hero-slide--coffee .hero-slide__product {
    top: 51%;
    left: 3%;
    width: 94%;
    height: 35%;
  }

  .hero-slide--gelato .hero-slide__product {
    top: 50%;
    left: 13%;
    width: 74%;
    height: 37%;
  }

  .hero-slide--thawing .hero-slide__product {
    top: 52%;
    left: 10%;
    width: 80%;
    height: 36%;
  }

  .hero-product-callout,
  .hero-product-callout--top {
    top: 45%;
    right: auto;
    left: 20px;
    width: calc(100% - 40px);
    text-align: left;
    transform: none;
  }

  .hero-product-callout::before,
  .hero-product-callout--top::before {
    width: 36px;
    margin: 0 0 8px;
  }

  .hero-product-callout strong,
  .hero-product-callout--top strong {
    font-size: 1.02rem;
  }

  .hero-product-callout span {
    display: none;
  }

  .hero-feature-labels {
    min-height: 54px;
    margin-bottom: 14px;
  }

  .hero-feature-label {
    max-width: min(100%, 300px);
    padding: 10px 12px 11px;
  }

  .hero-feature-label span {
    display: none;
  }

  .home-hero__content {
    width: calc(100% - 40px);
    height: 760px;
    min-height: 0;
    padding-top: 28px;
    padding-bottom: 16px;
  }

  .home-hero__copy {
    max-width: 100%;
    align-self: start;
    padding-top: 24px;
    transform: none;
  }

  .home-hero[data-active-slide="0"] .home-hero__copy,
  .home-hero[data-active-slide="1"] .home-hero__copy,
  .home-hero[data-active-slide="0"] .hero-progress,
  .home-hero[data-active-slide="1"] .hero-progress {
    transform: none;
  }

  .home-hero h1 {
    max-width: min(100%, 360px);
    font-size: clamp(2.05rem, 9.4vw, 2.8rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  html[lang="zh-CN"] .home-hero__copy {
    max-width: 100%;
  }

  html[lang="zh-CN"] .home-hero h1 {
    max-width: min(100%, 360px);
    font-size: clamp(2.05rem, 9.4vw, 2.8rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .factory-proof__images,
  .contact-main__grid {
    grid-template-columns: 1fr;
  }

  .home-hero__copy p:not(.eyebrow) {
    max-width: 340px;
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  html[lang="zh-CN"] .home-hero__copy p:not(.eyebrow) {
    max-width: 340px;
  }

  .home-hero .hero-actions {
    margin-top: 26px;
    transform: none;
  }

  .home-hero .hero-actions .button {
    min-height: 48px;
    padding: 0 20px;
    font-size: 0.95rem;
  }

  .hero-carousel {
    align-self: end;
  }

  .hero-track {
    display: none;
  }

  .hero-progress {
    padding: 8px 10px;
  }

  .factory-proof__images img,
  .factory-proof__images img:last-child {
    min-height: 260px;
    margin-top: 0;
  }

  .brand-entry {
    grid-template-rows: auto 220px 1fr;
  }

  .brand-entry__site {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    min-height: 82px;
  }

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

  .product-card {
    min-height: auto;
  }

  .product-card img {
    height: 230px;
  }

  .page-hero {
    min-height: 390px;
    padding: 58px 0 70px;
  }

  .contact-panel {
    min-height: auto;
  }

  .website-list a {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-slide,
  .hero-progress button {
    transition: none !important;
  }
}
