:root {
  --ink: #211812;
  --muted: #5f554a;
  --line: #d8c9b6;
  --paper: #f7f1e8;
  --soft: #eee7de;
  --red: #c81d2c;
  --blue: #16233f;
  --sky: #8fb7df;
  --gold: #b98232;
  --soy: #2a1b13;
  --broth: #f2e5d4;
  --wheat: #d7a85e;
  --miso: #8b4a2f;
  --surface: #fffdf8;
  --surface-muted: #f3eee7;
  --white: #ffffff;
  --shadow: 0 18px 46px rgba(33, 24, 18, 0.11);
}

* {
  box-sizing: border-box;
}

main *,
header *,
dialog * {
  min-width: 0;
}

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

#about,
#products,
#advantages,
#training,
#contact {
  scroll-margin-top: 108px;
}

#products {
  scroll-margin-top: -108px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, "Noto Sans SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 16px;
  left: clamp(16px, 2.4vw, 36px);
  right: clamp(16px, 2.4vw, 36px);
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  min-height: 64px;
  padding: 8px clamp(14px, 2.2vw, 28px);
  border: 1px solid rgba(230, 216, 198, 0.58);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 40px rgba(42, 27, 19, 0.14);
  backdrop-filter: blur(22px) saturate(1.1);
}

.site-menu {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 228px;
  height: 52px;
  overflow: visible;
  display: flex;
  align-items: center;
}

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

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 30px);
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  min-width: 0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 40px;
  place-content: center;
  gap: 4px;
  padding: 0;
  border: 1px solid rgba(11, 29, 84, 0.2);
  border-radius: 6px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.76);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-links a {
  padding: 12px 0;
  white-space: nowrap;
}

:lang(en) .nav-links,
:lang(de) .nav-links,
:lang(vi) .nav-links {
  gap: clamp(12px, 1.9vw, 24px);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--red);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 700;
  white-space: nowrap;
}

.header-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--blue);
}

:lang(de) .header-cta,
:lang(vi) .header-cta {
  padding: 0 16px;
  font-size: 14px;
}

.language-select {
  min-height: 40px;
  padding: 0 34px 0 12px;
  border: 1px solid rgba(42, 27, 19, 0.16);
  border-radius: 6px;
  color: var(--blue);
  background: rgba(255, 252, 246, 0.78);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}

.first-screen {
  min-height: 100svh;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  background: var(--soy);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.54fr) minmax(0, 1fr);
  align-items: center;
  min-height: clamp(520px, 72svh, 760px);
  padding: clamp(118px, 14svh, 154px) clamp(20px, 5vw, 72px) clamp(34px, 5svh, 64px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(42, 27, 19, 0.94) 0%, rgba(42, 27, 19, 0.78) 32%, rgba(42, 27, 19, 0.32) 62%, rgba(42, 27, 19, 0.12) 100%),
    linear-gradient(180deg, rgba(42, 27, 19, 0.16) 0%, rgba(42, 27, 19, 0.42) 72%, rgba(42, 27, 19, 0.72) 100%),
    url("background-photo.png") center / cover no-repeat var(--soy);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(200, 29, 44, 0.17), rgba(200, 29, 44, 0) 30%),
    linear-gradient(180deg, rgba(247, 234, 215, 0), rgba(247, 234, 215, 0.1) 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  max-width: 720px;
  padding: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero .eyebrow {
  color: rgba(255, 232, 196, 0.92);
  font-size: 15px;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(54px, 6.1vw, 88px);
  line-height: 0.95;
  font-weight: 900;
  max-width: min(92vw, 8.8em);
  overflow-wrap: normal;
  word-break: keep-all;
  white-space: nowrap;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.08;
  font-weight: 850;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.22;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.hero-subtitle {
  max-width: 560px;
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  margin-top: 26px;
  max-width: 100%;
}

.button {
  padding: 0 24px;
  border: 1px solid transparent;
  flex: 0 0 auto;
  max-width: 100%;
}

:lang(de) .hero-actions .button,
:lang(vi) .hero-actions .button {
  padding: 0 18px;
  font-size: 15px;
}

.button.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 28px rgba(200, 29, 44, 0.2);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(230, 216, 198, 0.9);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.trust-band div {
  padding: 30px clamp(20px, 5vw, 72px);
  border-right: 1px solid rgba(230, 216, 198, 0.9);
}

.trust-band div:last-child {
  border-right: 0;
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  margin-bottom: 8px;
  color: var(--soy);
  font-size: 24px;
}

.trust-band span {
  color: var(--muted);
}

.section {
  padding: clamp(54px, 7vw, 92px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.compact-about {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: stretch;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 0;
}

.about-copy p {
  font-size: 19px;
}

.profile-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-muted);
  box-shadow: 0 14px 34px rgba(42, 27, 19, 0.08);
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.profile-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 130, 50, 0.44);
  background: var(--surface);
  box-shadow: 0 20px 42px rgba(42, 27, 19, 0.12);
}

.profile-panel img {
  width: 100%;
  height: auto;
}

.text-panel {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 38px rgba(42, 27, 19, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.text-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 130, 50, 0.42);
  background: var(--white);
  box-shadow: 0 20px 42px rgba(42, 27, 19, 0.12);
}

.text-panel h3 {
  color: var(--blue);
  font-size: clamp(24px, 3vw, 36px);
}

.text-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.text-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.text-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.advantage-section {
  background: var(--surface);
}

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

.advantage-grid article {
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(42, 27, 19, 0.07);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.advantage-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 130, 50, 0.44);
  background: var(--white);
  box-shadow: 0 20px 42px rgba(42, 27, 19, 0.12);
}

.advantage-grid span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.advantage-grid h3 {
  color: var(--blue);
  font-size: clamp(20px, 1.9vw, 27px);
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.advantage-grid p {
  margin-bottom: 0;
  font-size: 16px;
}

.products-section {
  min-height: 100svh;
  display: grid;
  align-content: start;
  padding-top: clamp(104px, 12svh, 124px);
  padding-bottom: clamp(48px, 6svh, 72px);
  background: var(--surface-muted);
}

.products-section .section-heading {
  margin-bottom: clamp(28px, 3svh, 34px);
}

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

.product-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--miso);
  font-size: 13px;
  font-weight: 850;
}

.product-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.product-line {
  min-width: 0;
  display: block;
  min-height: 0;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(42, 27, 19, 0.09);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.product-line:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 130, 50, 0.46);
  background: var(--white);
  box-shadow: 0 22px 44px rgba(42, 27, 19, 0.13);
}

.compact-products .product-line {
  min-height: 0;
}

.compact-products .product-line h3 {
  margin-bottom: 18px;
}

.product-names {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--soy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.7;
  overflow-wrap: normal;
  word-break: normal;
}

.product-line h3 {
  margin-bottom: 16px;
  font-size: clamp(23px, 2.25vw, 30px);
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.product-line p {
  margin-bottom: 0;
  font-size: 16px;
}

.product-line ul {
  display: flex;
  flex-wrap: wrap;
  align-content: end;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.product-line li {
  padding: 8px 10px;
  border: 1px solid rgba(89, 98, 116, 0.18);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

:lang(en) .advantage-grid h3,
:lang(de) .advantage-grid h3,
:lang(vi) .advantage-grid h3 {
  font-size: clamp(19px, 1.65vw, 24px);
}

:lang(en) .product-line h3,
:lang(de) .product-line h3,
:lang(vi) .product-line h3 {
  font-size: clamp(22px, 2.15vw, 29px);
}

:lang(de) .product-names,
:lang(vi) .product-names {
  font-size: 14px;
  line-height: 1.65;
}

:lang(en) .product-line,
:lang(de) .product-line,
:lang(vi) .product-line {
  padding: clamp(22px, 2.5vw, 30px);
}

:lang(en) .service-list strong,
:lang(de) .service-list strong,
:lang(vi) .service-list strong {
  font-size: clamp(20px, 2.1vw, 27px);
}

:lang(de) .trend-points div,
:lang(vi) .trend-points div {
  font-size: 16px;
}

.chef-section {
  background: var(--surface-muted);
}

.chef-card {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 24px 54px rgba(42, 27, 19, 0.1);
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.chef-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--miso), var(--wheat));
}

.chef-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 74, 47, 0.42);
  box-shadow: 0 28px 60px rgba(42, 27, 19, 0.14);
}

.chef-card h2 {
  color: var(--soy);
  font-size: clamp(32px, 4vw, 52px);
}

.chef-card .eyebrow {
  color: var(--miso);
}

.chef-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.chef-list span {
  min-height: 78px;
  padding: 16px 18px;
  border: 1px solid rgba(216, 201, 182, 0.9);
  border-left: 4px solid var(--miso);
  border-radius: 6px;
  background: var(--surface);
  color: var(--soy);
  box-shadow: 0 12px 24px rgba(42, 27, 19, 0.08);
  font-weight: 800;
  line-height: 1.45;
}

.oem-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(42, 27, 19, 0.96), rgba(78, 45, 30, 0.94)),
    var(--soy);
  color: var(--white);
}

.oem-section p,
.oem-section .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-list > div {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  min-height: 122px;
  border-bottom: 1px solid rgba(255, 248, 236, 0.2);
}

.service-list span {
  color: var(--red);
  font-weight: 900;
}

.service-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(20px, 2.4vw, 30px);
}

.service-list small {
  display: block;
  max-width: 700px;
  color: rgba(255, 248, 236, 0.74);
  font-size: 15px;
  line-height: 1.7;
}

.trend-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(33, 24, 18, 0.98), rgba(42, 27, 19, 0.96)),
    var(--soy);
  color: var(--white);
}

.trend-section p,
.trend-section .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

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

.trend-points div {
  min-height: 118px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  border: 1px solid rgba(255, 248, 236, 0.18);
  border-radius: 8px;
  background: rgba(255, 248, 236, 0.07);
  color: rgba(255, 248, 236, 0.92);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.trend-points div:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 248, 236, 0.3);
  background: rgba(255, 248, 236, 0.1);
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.68fr) minmax(260px, 0.72fr) minmax(360px, 0.9fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: center;
  padding: clamp(54px, 8vw, 88px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(42, 27, 19, 0.96), rgba(78, 45, 30, 0.88)),
    var(--soy);
  overflow: hidden;
}

.contact-section::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  width: min(820px, 50vw);
  aspect-ratio: 3.25 / 1;
  background: url("logo-web.png") center / contain no-repeat;
  opacity: 0.2;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 38%, rgba(0, 0, 0, 0.72) 58%, transparent 82%);
  mask-image: radial-gradient(ellipse at center, #000 38%, rgba(0, 0, 0, 0.72) 58%, transparent 82%);
  pointer-events: none;
}

.contact-heading,
.contact-details {
  position: relative;
  z-index: 1;
}

.contact-section p,
.contact-section .eyebrow {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-heading h2 {
  margin-bottom: 0;
}

.contact-heading {
  grid-column: 1;
}

.contact-details {
  grid-column: 3;
  display: grid;
  gap: 18px;
  justify-self: end;
  width: min(100%, 520px);
}

.contact-details p {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-details strong {
  color: var(--white);
  font-size: 14px;
}

.contact-details span,
.contact-details a {
  color: rgba(255, 255, 255, 0.82);
}

.legal-modal {
  width: min(620px, calc(100vw - 32px));
  padding: 32px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(7, 20, 54, 0.28);
}

.form-modal {
  width: min(920px, calc(100vw - 32px));
  max-height: min(86vh, 920px);
  padding: clamp(24px, 4vw, 42px);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(7, 20, 54, 0.28);
  overflow: auto;
}

.form-modal::backdrop {
  background: rgba(7, 20, 54, 0.46);
}

.modal-close {
  display: flex;
  justify-content: flex-end;
  margin: -14px -12px 8px 0;
}

.modal-close button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: var(--blue);
  background: var(--soft);
  font: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.account-form {
  display: grid;
  gap: 18px;
}

.account-form fieldset {
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.account-form legend {
  padding: 0 8px;
  color: var(--blue);
  font-weight: 850;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

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

.account-form label {
  display: grid;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.account-form input,
.account-form select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.account-form input[type="file"] {
  padding: 10px 12px;
}

.inline-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.field-help {
  position: relative;
}

.field-help summary {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 13px;
  cursor: pointer;
  list-style: none;
}

.field-help summary::-webkit-details-marker {
  display: none;
}

.field-help p {
  position: absolute;
  z-index: 3;
  right: 0;
  top: 28px;
  width: 220px;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: 13px;
  line-height: 1.55;
}

.form-note {
  margin: 0;
  font-size: 15px;
}

.text-link {
  padding: 0;
  border: 0;
  color: var(--red);
  background: transparent;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.legal-content {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.legal-content p {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 16px;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.legal-content strong {
  color: var(--blue);
  font-size: 14px;
}

.legal-content span {
  color: var(--muted);
  line-height: 1.7;
}

.legal-modal::backdrop {
  background: rgba(7, 20, 54, 0.46);
}

.legal-modal form {
  display: flex;
  justify-content: flex-end;
  margin: -14px -12px 8px 0;
}

.legal-modal button,
.footer-actions button {
  font: inherit;
  cursor: pointer;
}

.legal-modal form button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: var(--blue);
  background: var(--soft);
  font-size: 22px;
  line-height: 1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 248, 236, 0.74);
  background: #170f0b;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 248, 236, 0.62);
  font-size: 14px;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-actions button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 248, 236, 0.24);
  border-radius: 6px;
  color: rgba(255, 248, 236, 0.82);
  background: transparent;
  font-weight: 700;
}

.footer-actions button:hover {
  color: var(--white);
  border-color: rgba(255, 248, 236, 0.48);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto auto auto;
    gap: 12px;
  }

  .header-cta {
    order: 2;
  }

  .language-select {
    order: 3;
  }

  .menu-toggle {
    display: grid;
    order: 4;
  }

  .site-menu {
    display: none;
    order: 4;
  }

  .site-header.menu-open .site-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(22px) saturate(1.12);
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .nav-links {
    display: grid;
    gap: 8px;
    justify-content: stretch;
  }

  .site-header.menu-open .nav-links a {
    padding: 10px 0;
    border-bottom: 1px solid rgba(217, 222, 232, 0.72);
  }
}

@media (max-width: 980px) {

  .about-grid,
  .oem-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .contact-heading,
  .contact-details {
    grid-column: 1;
  }

  .trend-section {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    gap: 28px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    background-position: 62% center;
  }

  .trust-band,
  .advantage-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-band div {
    padding: 22px 16px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .trust-band div:last-child {
    border-right: 0;
  }

  .trust-band strong {
    font-size: 20px;
  }

  .trust-band span {
    font-size: 14px;
    line-height: 1.5;
  }

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

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

  :lang(en) .product-line h3,
  :lang(de) .product-line h3,
  :lang(vi) .product-line h3,
  :lang(en) .advantage-grid h3,
  :lang(de) .advantage-grid h3,
  :lang(vi) .advantage-grid h3 {
    font-size: clamp(20px, 3vw, 28px);
  }

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

  .trend-points div {
    min-height: 92px;
    padding: 16px;
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 92px;
  }

  #about,
  #products,
  #advantages,
  #training,
  #contact {
    scroll-margin-top: 92px;
  }

  #products {
    scroll-margin-top: 0;
  }

  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    min-height: 58px;
    padding: 8px 10px;
    gap: 8px;
  }

  .brand {
    width: 132px;
    height: 40px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 10px;
    font-size: 13px;
  }

  :lang(de) .header-cta,
  :lang(vi) .header-cta {
    padding: 0 8px;
    font-size: 12px;
  }

  .language-select {
    min-height: 38px;
    width: 112px;
    max-width: 112px;
    padding-left: 8px;
    font-size: 13px;
  }

  .hero {
    min-height: calc(100svh - 12px);
    padding: 96px 16px 58px;
    background:
      linear-gradient(90deg, rgba(42, 27, 19, 0.94) 0%, rgba(42, 27, 19, 0.86) 48%, rgba(42, 27, 19, 0.46) 100%),
      linear-gradient(180deg, rgba(42, 27, 19, 0.16), rgba(42, 27, 19, 0.54)),
      url("background-photo.png") 60% center / cover;
  }

  h1 {
    font-size: clamp(42px, 12vw, 58px);
    max-width: 100%;
  }

  h2 {
    font-size: 34px;
  }

  p,
  .about-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .contact-section {
    align-items: stretch;
  }

  .hero-actions {
    align-items: center;
    gap: 10px;
  }

  .hero-actions .button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }

  .trend-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .trend-points div {
    min-height: 86px;
    padding: 14px;
    font-size: 14px;
  }

  .section .button,
  .contact-section .button {
    width: 100%;
  }

  .section,
  .contact-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .products-section {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 54px;
  }

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

  .trust-band div {
    padding: 18px 12px;
  }

  .trust-band strong {
    font-size: 16px;
  }

  .trust-band span {
    font-size: 12px;
  }

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

  :lang(en) .product-line h3,
  :lang(de) .product-line h3,
  :lang(vi) .product-line h3,
  :lang(en) .advantage-grid h3,
  :lang(de) .advantage-grid h3,
  :lang(vi) .advantage-grid h3 {
    font-size: clamp(22px, 6.2vw, 30px);
  }

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

  .product-line {
    min-height: 0;
  }

  .compact-products .product-line {
    display: block;
    min-height: 0;
  }

  .product-names {
    margin-top: 16px;
    padding-top: 14px;
  }

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

  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .contact-details {
    justify-self: stretch;
  }

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

  .account-form fieldset {
    padding: 16px;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-left: 10px;
    padding-right: 10px;
    gap: 6px;
  }

  .brand {
    width: 108px;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 8px;
    font-size: 12px;
  }

  .language-select {
    width: 98px;
    max-width: 98px;
    font-size: 12px;
  }

  .menu-toggle {
    width: 38px;
    height: 36px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-actions .button {
    width: 100%;
  }
}
