:root {
  --ink: #173b35;
  --ink-2: #214b42;
  --ink-3: #2c5a4e;
  --paper: #f8f6ef;
  --white: #fffefb;
  --muted: #68736c;
  --line: rgba(23, 59, 53, 0.14);
  --cyan: #b8e59f;
  --cyan-dark: #317a58;
  --lime: #ffd569;
  --orange: #f0835f;
  --radius: 24px;
  --container: min(1240px, calc(100vw - 64px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

[hidden] { display: none !important; }

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Be Vietnam Pro", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1200;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

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

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

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

img,
svg {
  display: block;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(68, 241, 209, 0.1), transparent 68%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(32px, calc((100vw - 1440px) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: height 0.35s var(--ease), background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  height: 72px;
  color: var(--ink);
  background: rgba(250, 252, 248, 0.9);
  border-color: rgba(23, 59, 53, 0.08);
  box-shadow: 0 18px 44px rgba(23, 59, 53, 0.08);
  backdrop-filter: blur(20px);
}

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

.brand-mark {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(23, 59, 53, 0.12);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(23, 59, 53, 0.14);
}

.brand-mark img {
  display: block;
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  letter-spacing: 0.035em;
}

.brand-copy small {
  margin-top: 5px;
  color: currentColor;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.28em;
  opacity: 0.58;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  padding: 28px 0;
  font-size: 13px;
  font-weight: 600;
}

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

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.site-header.scrolled .language-switcher {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.language-switcher button {
  min-width: 34px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 6px;
  color: currentColor;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.language-switcher button:hover { transform: translateY(-2px); }
.language-switcher button.active { color: var(--ink); background: var(--lime); border-color: rgba(23, 59, 53, 0.12); }
.language-switcher button span { font-size: 16px; line-height: 1; }
.language-switcher button small { font-size: 7px; font-weight: 800; }
.mobile-language-switcher { display: none; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 15px 11px 20px;
  color: var(--ink);
  background: var(--cyan);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(68, 241, 209, 0.22);
}

.header-cta svg,
.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.section {
  position: relative;
  padding: 120px 0;
}

.section > * {
  width: var(--container);
  margin-inline: auto;
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-tinted {
  background:
    radial-gradient(circle at 8% 12%, rgba(157, 212, 138, 0.2), transparent 25%),
    radial-gradient(circle at 92% 82%, rgba(49, 122, 88, 0.1), transparent 28%),
    #f4f7ef;
}

.about {
  background:
    radial-gradient(circle at 92% 8%, rgba(157, 212, 138, 0.2), transparent 25%),
    radial-gradient(circle at 5% 72%, rgba(255, 213, 105, 0.18), transparent 28%),
    var(--paper);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 780px;
  height: calc(100svh - 32px);
  max-height: 960px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 45, 39, 0.98) 0%, rgba(18, 45, 39, 0.87) 35%, rgba(18, 45, 39, 0.14) 68%, rgba(18, 45, 39, 0.08) 100%),
    linear-gradient(0deg, rgba(18, 45, 39, 0.78) 0%, transparent 42%);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #173b35 url("assets/hero-kitchen-cooking-bright-7476.jpg") 58% center / cover no-repeat;
  isolation: isolate;
}

.hero-sequence,
.hero-frame {
  position: absolute;
  inset: 0;
}

.hero-sequence {
  transform: translateZ(0);
}

.hero.has-custom-image .hero-sequence {
  display: none;
}

.hero-frame {
  overflow: hidden;
  backface-visibility: visible;
  transform: translateZ(0);
  will-change: clip-path, opacity, transform;
}

.hero-frame-kitchen {
  z-index: 2;
  opacity: 1;
  background: #173b35 url("assets/hero-kitchen-cooking-bright-7476.jpg") 58% center / cover no-repeat;
  transform-origin: left center;
}

.hero-frame-kitchen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  opacity: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 253, 248, 0.15) 48%, rgba(18, 45, 39, 0.38) 100%);
  mix-blend-mode: screen;
}

.hero-frame-truck {
  z-index: 1;
  opacity: 0;
  background:
    linear-gradient(135deg, rgba(244, 248, 237, 0.12), rgba(96, 181, 107, 0.1)),
    url("assets/hero-qba-truck-bellinturf-20260708.jpg") center / cover no-repeat;
  transform-origin: right center;
}

.hero-frame-truck::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: 0;
  opacity: 0;
  background: url("assets/hero-qba-truck-bellinturf-20260708.jpg") center / cover no-repeat;
  filter: blur(18px) saturate(1.08) brightness(0.86);
  transform: scale(1.05);
}

.hero-kitchen-fill {
  position: absolute;
  inset: -9%;
  z-index: 0;
  opacity: 0.7;
  background: url("assets/hero-kitchen-cooking-bright-7476.jpg") 58% center / cover no-repeat;
  filter: blur(12px) brightness(1.08) saturate(1.08);
  transform: scale(1.06);
}

.hero-scene-img {
  position: absolute;
  z-index: 1;
  display: block;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.hero-kitchen-img {
  top: 0;
  right: max(32px, calc((100vw - 1240px) / 2));
  bottom: 0;
  width: min(58vw, 780px);
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: brightness(1.04) contrast(1.04) saturate(1.04);
}

.hero-truck-img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-smoke {
  position: absolute;
  z-index: 4;
  width: min(32vw, 420px);
  height: min(48vh, 430px);
  border-radius: 50%;
  opacity: 0.24;
  filter: blur(18px);
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 42% 72%, rgba(255, 255, 255, 0.48), transparent 32%),
    radial-gradient(circle at 58% 42%, rgba(235, 241, 224, 0.32), transparent 35%),
    radial-gradient(circle at 30% 34%, rgba(255, 255, 255, 0.25), transparent 28%);
}

.hero-sequence.is-running .hero-frame-kitchen {
  animation: heroKitchenFlip 7.2s cubic-bezier(0.19, 0.88, 0.32, 1) both;
}

.hero-sequence.is-running .hero-frame-kitchen::after {
  animation: heroPageSheen 7.2s ease forwards;
}

.hero-sequence.is-running .hero-frame-truck {
  animation: heroTruckFlip 7.2s cubic-bezier(0.19, 0.88, 0.32, 1) both;
}

.hero-sequence.is-running .hero-smoke {
  animation: heroSmokeRise 5.8s ease-in-out infinite;
}

.hero-smoke-1 {
  left: 49%;
  bottom: 10%;
}

.hero-smoke-2 {
  left: 57%;
  bottom: 23%;
  width: min(24vw, 320px);
  height: min(38vh, 320px);
  opacity: 0.18;
  animation-delay: -2.1s;
  animation-duration: 6.6s;
}

.hero-smoke-3 {
  left: 40%;
  bottom: 20%;
  width: min(22vw, 280px);
  height: min(34vh, 290px);
  opacity: 0.13;
  animation-delay: -3.6s;
  animation-duration: 7.4s;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.45;
  background:
    radial-gradient(circle at 12% 28%, rgba(241, 200, 91, 0.18), transparent 17%),
    radial-gradient(circle at 52% 108%, rgba(157, 212, 138, 0.2), transparent 32%);
  mask-image: linear-gradient(90deg, black, transparent 78%);
}

@keyframes heroKitchenFlip {
  0%, 48% {
    opacity: 1;
    visibility: visible;
    clip-path: inset(0 0 0 0);
    transform: translateX(0) scale(1);
  }
  62% {
    opacity: 0.92;
    clip-path: polygon(0 0, 86% 0, 74% 100%, 0 100%);
    transform: translateX(-1.2%) scale(0.998);
  }
  76%, 100% {
    opacity: 0;
    visibility: hidden;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transform: translateX(-3.5%) scale(0.992);
  }
}

@keyframes heroTruckFlip {
  0%, 52% {
    opacity: 0;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    transform: translateX(2.5%) scale(1.012);
  }
  68% {
    opacity: 1;
    clip-path: polygon(24% 0, 100% 0, 100% 100%, 12% 100%);
    transform: translateX(0) scale(1.004);
  }
  82%, 100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0) scale(1);
  }
}

@keyframes heroPageSheen {
  0%, 49% { opacity: 0; transform: translateX(-12%); }
  61% { opacity: 0.28; transform: translateX(0); }
  76%, 100% { opacity: 0; transform: translateX(9%); }
}

@keyframes heroSmokeRise {
  0% {
    opacity: 0;
    transform: translate3d(-8px, 24px, 0) scale(0.72) rotate(-4deg);
  }
  28% {
    opacity: 0.24;
  }
  70% {
    opacity: 0.12;
  }
  100% {
    opacity: 0;
    transform: translate3d(22px, -74px, 0) scale(1.28) rotate(7deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-frame-kitchen,
  .hero-frame-truck,
  .hero-frame-kitchen::after,
  .hero-smoke {
    animation: none !important;
  }

  .hero-frame-kitchen {
    opacity: 1 !important;
    visibility: visible !important;
    clip-path: inset(0 0 0 0) !important;
    transform: none !important;
  }

  .hero-frame-truck,
  .hero-smoke {
    opacity: 0 !important;
    visibility: hidden !important;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  width: var(--container);
  margin-inline: auto;
  padding-top: 70px;
}

.hero-brand-card {
  width: min(230px, 46vw);
  padding: 10px 14px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 7px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.hero-brand-card img {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cyan-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.eyebrow {
  color: var(--cyan);
  text-transform: uppercase;
}

.pulse-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.pulse-dot::before {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid var(--cyan);
  border-radius: inherit;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { opacity: 0.8; transform: scale(0.4); }
  80%, 100% { opacity: 0; transform: scale(1.5); }
}

.hero h1 {
  max-width: 750px;
  margin: 28px 0 24px;
  font-family: "Space Grotesk", "Be Vietnam Pro", sans-serif;
  font-size: clamp(58px, 6.4vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.hero h1 span {
  color: var(--cyan);
}

.hero h1 em {
  position: relative;
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: 3%;
  bottom: 5px;
  width: 41%;
  height: 6px;
  background: var(--lime);
  clip-path: polygon(0 28%, 100% 0, 97% 100%, 2% 72%);
}

.hero-lead {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 38px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.25s var(--ease), background 0.25s ease, box-shadow 0.25s ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--cyan);
  box-shadow: 0 12px 32px rgba(68, 241, 209, 0.14);
}

.button-primary:hover {
  background: #ffd569;
  box-shadow: 0 18px 42px rgba(68, 241, 209, 0.24);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.13);
}

.play-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(68, 241, 209, 0.45);
  border-radius: 50%;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
}

.hero-proof p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  line-height: 1.5;
}

.hero-proof strong {
  color: var(--white);
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  color: var(--ink);
  background: var(--cyan);
  border: 3px solid var(--ink);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 800;
}

.avatar-stack span:first-child {
  margin-left: 0;
  background: var(--lime);
}

.avatar-stack span:last-child {
  background: var(--orange);
}

.hero-panel {
  position: absolute;
  right: max(32px, calc((100vw - 1240px) / 2));
  bottom: 90px;
  z-index: 4;
  width: 356px;
  padding: 22px;
  background: rgba(29, 63, 53, 0.86);
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 8px 28px 8px 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px);
}

.about-commitment-panel {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  max-width: 520px;
  margin-top: 42px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(33, 75, 66, 0.98), rgba(23, 59, 53, 0.96));
  box-shadow: 0 26px 65px rgba(23, 59, 53, 0.22);
}

.panel-topline,
.form-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.live-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  color: var(--cyan);
  background: rgba(157, 212, 138, 0.1);
  border: 1px solid rgba(157, 212, 138, 0.28);
  border-radius: 99px;
}

.live-pill i {
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: none;
}

.meal-preview {
  display: grid;
  grid-template-columns: 98px 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px 0 20px;
}

.meal-ring {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 253, 248, 0.2), transparent 28%),
    var(--orange);
  box-shadow: 0 12px 28px rgba(18, 45, 39, 0.22);
}

.meal-ring::before {
  content: "";
  grid-area: 1 / 1;
  width: 77px;
  height: 77px;
  background: #f3e6cf;
  border-radius: 50%;
}

.meal-core {
  z-index: 1;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 25px;
  font-weight: 700;
}

.meal-core small {
  color: var(--cyan-dark);
  font-size: 10px;
}

.meal-preview > div:last-child {
  display: flex;
  flex-direction: column;
}

.meal-preview small,
.meal-preview span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.meal-preview strong {
  margin: 5px 0;
  font-size: 14px;
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-metrics div {
  padding: 14px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-metrics div:last-child { border-right: 0; }

.panel-metrics span,
.panel-metrics strong {
  display: block;
  text-align: center;
}

.panel-metrics span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 7px;
  letter-spacing: 0.1em;
}

.panel-metrics strong {
  margin-top: 3px;
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
}

.kitchen-promise {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 16px;
}

.kitchen-promise span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.kitchen-promise i {
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
}

.scroll-cue {
  position: absolute;
  right: 28px;
  bottom: 70px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(90deg);
  transform-origin: right center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 8px;
  letter-spacing: 0.2em;
}

.scroll-cue i {
  width: 44px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-cue i::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--cyan);
  animation: scrollLine 2s linear infinite;
}

@keyframes scrollLine { from { transform: translateX(-20px); } to { transform: translateX(50px); } }

.intro-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
  background: var(--cyan-dark);
}

.intro-strip div {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 84px;
  padding: 0 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.intro-strip span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  opacity: 0.55;
}

.intro-strip strong {
  font-size: 11px;
  letter-spacing: 0.02em;
}

.section-kicker {
  margin-bottom: 22px;
}

.section-kicker::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

.section-kicker.light { color: var(--cyan); }

.about-layout,
.section-heading-row,
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: start;
}

.section-title {
  margin: 0;
  font-family: "Space Grotesk", "Be Vietnam Pro", sans-serif;
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.section-title span {
  color: var(--cyan-dark);
}

.section-title.light { color: var(--white); }
.section-title.light span { color: var(--cyan); }

.about-copy {
  padding-top: 10px;
}

.about-copy p,
.section-summary,
.capacity-note {
  color: var(--muted);
  font-size: 14px;
}

.about-copy .lead-copy {
  color: var(--ink);
  font-size: 17px;
}

.about-copy .lead-copy strong {
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.text-link span { color: var(--cyan-dark); }

.company-profile-card {
  width: min(100%, 1120px);
  min-height: 320px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 10px;
  margin: 38px auto 0;
  padding: 8px;
  background: linear-gradient(135deg, #fff7d9, #e5f4da 58%, #fffdf8);
  border: 1px solid rgba(49, 122, 88, 0.16);
  border-radius: 26px;
  box-shadow: 0 22px 58px rgba(23, 59, 53, 0.1);
  overflow: hidden;
}

.company-profile-card .profile-cover-frame.editable-frame {
  position: relative;
  display: flex;
  min-height: 300px;
  align-items: center;
  justify-content: center;
  background-color: var(--ink);
  background-image: linear-gradient(145deg, #317a58, #173b35);
  border: 0;
  border-radius: 20px;
}

.profile-cover-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  transition: opacity 0.25s ease;
}

.profile-cover-frame.has-custom-image .profile-cover-placeholder { opacity: 0; }

.profile-pdf-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.profile-pdf-mark:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 5px;
}

.profile-cover-placeholder span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.profile-cover-placeholder img {
  display: block;
  width: min(200px, 74%);
  height: auto;
  margin-top: 20px;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.24);
}

.profile-cover-placeholder small { margin-top: 2px; color: rgba(255, 255, 255, 0.55); font-size: 8px; letter-spacing: 0.2em; }

.company-profile-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 40px;
}

.company-profile-copy > span { color: var(--orange); font-size: 8px; font-weight: 800; letter-spacing: 0.17em; }
.company-profile-copy h3 { margin: 8px 0 14px; font-family: "Space Grotesk", sans-serif; font-size: clamp(28px, 3.4vw, 46px); line-height: 1.02; letter-spacing: -0.05em; }
.company-profile-copy p { max-width: 620px; margin: 0; color: var(--muted); font-size: 12px; }

.company-profile-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.company-profile-meta b { font-size: 9px; }
.company-profile-meta i { width: 5px; height: 5px; background: var(--orange); border-radius: 50%; }

.profile-pdf-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.profile-pdf-button {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(49, 122, 88, 0.28);
  border-radius: 12px;
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.profile-pdf-button:hover {
  border-color: var(--cyan-dark);
  background: #fff;
  transform: translateY(-2px);
}

.profile-pdf-button span { color: var(--orange); font-weight: 800; }

.profile-pdf-upload {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 12px;
  cursor: pointer;
  font: inherit;
  font-size: 9px;
  font-weight: 800;
}

.profile-pdf-upload:hover { background: var(--cyan-dark); }
.profile-pdf-upload:disabled { cursor: wait; opacity: 0.66; }
.profile-pdf-upload[hidden] { display: none; }

.profile-pdf-status {
  display: block;
  margin-top: 10px;
  color: var(--cyan-dark);
  font-size: 9px;
  font-weight: 700;
}

.profile-pdf-status.error { color: #a33124; }
.profile-pdf-status[hidden] { display: none; }

.company-profile-card.profile-pdf-drag-over {
  border-color: var(--cyan-dark);
  box-shadow: 0 0 0 4px rgba(49, 122, 88, 0.16), 0 22px 58px rgba(23, 59, 53, 0.13);
}

.company-profile-card.profile-pdf-uploading { cursor: wait; }

.origin-story {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 8px;
  margin-top: 64px;
  padding: 8px;
  background:
    linear-gradient(135deg, #102f2a, var(--ink-2));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(23, 59, 53, 0.2);
}

.origin-story::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 430px;
  height: 430px;
  top: -310px;
  left: 32%;
  background: radial-gradient(circle, rgba(157, 212, 138, 0.18), transparent 68%);
  border-radius: 50%;
  animation: originGlow 7s ease-in-out infinite alternate;
}

.origin-note,
.origin-story article {
  position: relative;
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  overflow: hidden;
}

.origin-note {
  background: linear-gradient(145deg, #ee936d, #c95e40);
  border-color: rgba(255, 255, 255, 0.18);
}

.origin-note::before {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  border: 24px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: transform 0.6s var(--ease);
}

.origin-note::after {
  content: "2006 → NAY";
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Space Grotesk", sans-serif;
  font-size: 7px;
  letter-spacing: 0.14em;
}

html:lang(en) .origin-note::after {
  content: "2006 → PRESENT";
}

html:lang(ko) .origin-note::after {
  content: "2006 → 현재";
}

html:lang(ja) .origin-note::after {
  content: "2006 → 現在";
}

html:lang(zh-CN) .origin-note::after {
  content: "2006 → 至今";
}

.origin-note > span {
  position: relative;
  z-index: 1;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.origin-note p {
  position: relative;
  z-index: 1;
  max-width: 270px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
}

.origin-story article {
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.45s var(--ease), background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.origin-story article::before {
  position: absolute;
  top: 10px;
  right: 16px;
  color: rgba(255, 255, 255, 0.07);
  font-family: "Space Grotesk", sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
}

.origin-story article:nth-child(2)::before { content: "01"; }
.origin-story article:nth-child(3)::before { content: "02"; }
.origin-story article:nth-child(4)::before { content: "03"; }

.origin-story article::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 20px;
  left: 26px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--lime));
  border-radius: 99px;
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.origin-story article:hover {
  z-index: 2;
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(157, 212, 138, 0.38);
  box-shadow: 0 20px 35px rgba(18, 45, 39, 0.26);
}

.origin-story article:hover::after { transform: scaleX(1); }
.origin-note:hover::before { transform: scale(1.12) rotate(10deg); }

.origin-story article strong {
  position: relative;
  z-index: 1;
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.045em;
  transition: color 0.3s ease, transform 0.4s var(--ease);
}

.origin-story article span {
  position: relative;
  z-index: 1;
  max-width: 150px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
}

.origin-story article:hover strong {
  color: var(--lime);
  transform: translateY(-3px);
}

.origin-story.visible article {
  animation: originRise 0.75s var(--ease) backwards;
}

.origin-story.visible article:nth-child(2) { animation-delay: 0.12s; }
.origin-story.visible article:nth-child(3) { animation-delay: 0.22s; }
.origin-story.visible article:nth-child(4) { animation-delay: 0.32s; }

@keyframes originRise {
  from { opacity: 0; transform: translateY(22px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes originGlow {
  to { transform: translate(90px, 34px) scale(1.18); }
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 80px;
}

.value-card {
  position: relative;
  min-height: 285px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.35s ease;
}

.value-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -100px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(68, 241, 209, 0.2), transparent 65%);
  transition: transform 0.5s var(--ease);
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 184, 157, 0.35);
  box-shadow: 0 30px 70px rgba(23, 59, 53, 0.09);
}

.value-card:hover::after { transform: scale(1.5); }

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  color: var(--cyan-dark);
  background: rgba(68, 241, 209, 0.11);
  border-radius: 15px;
}

.card-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card > span,
.service-tag,
.stat-label {
  color: var(--cyan-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.value-card h3 {
  margin: 8px 0;
  font-size: 19px;
}

.value-card p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.section-heading-row {
  align-items: end;
}

.section-summary {
  max-width: 440px;
  margin: 0 0 8px;
}

.section-summary.light { color: rgba(255, 255, 255, 0.56); }

.service-showcase {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  margin-top: 70px;
}

.service-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(145deg, var(--white), #fbf4e4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card-featured {
  grid-row: 1 / 3;
  min-height: 600px;
  padding: 36px;
  color: var(--white);
  background: linear-gradient(145deg, #3f8b66, #1d5547 62%, #173b35);
}

.service-card:nth-child(2) { background: linear-gradient(145deg, #fffefb, #edf5e9); }
.service-card:nth-child(3) { background: linear-gradient(145deg, #fffefb, #e5f3dc); }
.service-card:nth-child(4) { background: linear-gradient(145deg, #fffefb, #f1f6ea); }
.service-card:nth-child(5) { background: linear-gradient(145deg, #fffefb, #e4f1ea); }

.service-card-no {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(23, 59, 53, 0.27);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
}

.service-card-featured .service-card-no { color: rgba(255, 255, 255, 0.35); }

.service-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.52;
}

.industrial-visual {
  background:
    radial-gradient(circle at 74% 25%, rgba(241, 200, 91, 0.34), transparent 23%),
    radial-gradient(circle at 93% 7%, rgba(231, 131, 94, 0.28), transparent 22%),
    linear-gradient(145deg, rgba(157, 212, 138, 0.08), transparent 55%);
}

.industrial-visual::before,
.industrial-visual::after {
  content: "";
  position: absolute;
  border-radius: 46% 54% 38% 62% / 56% 40% 60% 44%;
}

.industrial-visual::before {
  top: 50px;
  right: 80px;
  width: 250px;
  height: 250px;
  background: rgba(157, 212, 138, 0.13);
  transform: rotate(-12deg);
}

.industrial-visual::after {
  top: 90px;
  right: 120px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  transform: rotate(16deg);
}

.tray {
  position: absolute;
  top: 105px;
  right: 136px;
  width: 138px;
  height: 138px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 12px;
  transform: rotate(-10deg);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 28px;
}

.tray i {
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(157, 212, 138, 0.85), rgba(157, 212, 138, 0.22));
}

.tray i:nth-child(2) { background: linear-gradient(145deg, rgba(231, 131, 94, 0.86), rgba(231, 131, 94, 0.18)); }
.tray i:nth-child(3) { grid-column: span 2; background: rgba(255, 255, 255, 0.2); }

.industrial-visual > span {
  position: absolute;
  top: 20px;
  left: 25px;
  color: rgba(255, 255, 255, 0.18);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
}

.service-content { position: relative; z-index: 2; }

.service-content h3 {
  max-width: 540px;
  margin: 10px 0;
  font-family: "Space Grotesk", "Be Vietnam Pro", sans-serif;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.service-card-featured .service-content h3 {
  font-size: clamp(30px, 3.6vw, 50px);
}

.service-content p {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.service-card-featured .service-content p { color: rgba(255, 255, 255, 0.6); }

.service-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-content li {
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  font-size: 9px;
}

.service-content > a {
  display: inline-flex;
  gap: 10px;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
}

.service-content > a span { color: var(--cyan-dark); }

.service-plate {
  position: absolute;
  top: -32px;
  right: -18px;
  width: 200px;
  height: 200px;
  display: grid;
  place-items: center;
  background: #f0c56a;
  border-radius: 50%;
  box-shadow: inset 0 0 0 24px rgba(255, 253, 248, 0.38);
  transform: rotate(-8deg);
}

.service-plate::before,
.service-plate::after {
  content: "";
  position: absolute;
  width: 68px;
  height: 48px;
  background: rgba(255, 253, 248, 0.5);
  border-radius: 52% 48% 55% 45%;
  transform: translate(-18px, -8px) rotate(22deg);
}

.service-plate::after {
  width: 44px;
  height: 70px;
  background: rgba(49, 122, 88, 0.45);
  transform: translate(32px, 18px) rotate(-28deg);
  border-radius: 50%;
}

.service-plate span {
  position: absolute;
  right: 42px;
  bottom: 34px;
  z-index: 1;
  color: rgba(23, 59, 53, 0.58);
  font-family: "Space Grotesk", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.service-plate.vegan-plate {
  background: #abd18e;
  box-shadow: inset 0 0 0 24px rgba(255, 253, 248, 0.35);
  transform: rotate(9deg);
}

.service-plate.vegan-plate::before { background: rgba(49, 122, 88, 0.48); }
.service-plate.vegan-plate::after { background: rgba(231, 131, 94, 0.5); }
.service-plate.vegan-plate span { color: rgba(23, 59, 53, 0.68); }

.service-plate.breakfast-plate {
  background: #f2b35f;
  transform: rotate(-5deg);
}

.service-plate.breakfast-plate::before { background: rgba(255, 253, 248, 0.62); }
.service-plate.breakfast-plate::after { background: rgba(231, 131, 94, 0.52); }

.service-plate.night-plate {
  background: #365a50;
  box-shadow: inset 0 0 0 24px rgba(255, 253, 248, 0.16);
  transform: rotate(7deg);
}

.service-plate.night-plate::before { background: rgba(241, 200, 91, 0.58); }
.service-plate.night-plate::after { background: rgba(157, 212, 138, 0.46); }
.service-plate.night-plate span { color: rgba(255, 253, 248, 0.76); }

.service-card:hover .service-plate {
  transform: rotate(2deg) scale(1.03);
  transition: transform 0.5s var(--ease);
}

.qba-sample-menu-suite {
  position: relative;
  margin-top: 64px;
  padding: clamp(22px, 4vw, 38px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(238, 247, 232, 0.9)),
    linear-gradient(90deg, rgba(49, 122, 88, 0.1), rgba(240, 131, 95, 0.08));
  border: 1px solid rgba(23, 59, 53, 0.12);
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(23, 59, 53, 0.08);
}

main > .qba-sample-menu-suite {
  width: var(--container);
  margin: clamp(64px, 7vw, 96px) auto clamp(106px, 9vw, 132px);
}

.qba-sample-menu-suite::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--cyan-dark), var(--lime), var(--orange));
}

.qba-sample-menu-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.qba-sample-menu-head span,
.qba-sample-menu-card-head span {
  color: var(--cyan-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.qba-sample-menu-head h3,
.qba-sample-menu-card-head h4 {
  margin: 8px 0 0;
  font-family: "Space Grotesk", "Be Vietnam Pro", sans-serif;
  letter-spacing: 0;
}

.qba-sample-menu-head h3 {
  max-width: 620px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.05;
}

.qba-sample-menu-head p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.qba-sample-menu-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.qba-sample-menu-card {
  position: relative;
  min-width: 0;
  padding: 18px;
  background: rgba(255, 254, 251, 0.86);
  border: 1px solid rgba(23, 59, 53, 0.1);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(23, 59, 53, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.35s ease;
}

.qba-sample-menu-card:hover {
  transform: translateY(-5px);
  border-color: rgba(49, 122, 88, 0.26);
  box-shadow: 0 24px 52px rgba(23, 59, 53, 0.1);
}

.qba-sample-menu-card-wide {
  grid-column: 1 / -1;
}

.qba-sample-menu-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 6px 16px;
  margin-bottom: 14px;
}

.qba-sample-menu-card-head h4 {
  width: 100%;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.08;
}

.qba-sample-menu-card-head small {
  color: rgba(23, 59, 53, 0.58);
  font-size: 11px;
  font-weight: 800;
}

.qba-sample-menu-details {
  border-top: 1px solid rgba(23, 59, 53, 0.1);
  padding-top: 12px;
}

.qba-sample-menu-details summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.qba-sample-menu-details summary::-webkit-details-marker { display: none; }

.qba-sample-menu-details summary::after {
  content: "↓";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: none;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  transition: transform 0.25s ease, background 0.25s ease;
}

.qba-sample-menu-details[open] summary::after {
  background: var(--cyan-dark);
  transform: rotate(180deg);
}

.qba-sample-menu-subtitle {
  margin: 18px 0 8px;
  color: var(--ink);
  font-family: "Space Grotesk", "Be Vietnam Pro", sans-serif;
  font-size: 15px;
  letter-spacing: 0;
}

.qba-sample-menu-subtitle:first-of-type {
  margin-top: 14px;
}

.qba-sample-menu-scroll {
  margin-top: 14px;
  overflow-x: auto;
  border: 1px solid rgba(23, 59, 53, 0.08);
  border-radius: 14px;
  background: #fffefb;
  scrollbar-color: rgba(49, 122, 88, 0.38) transparent;
}

.qba-sample-menu-details[open] .qba-sample-menu-scroll {
  animation: qbaSampleMenuReveal 0.34s var(--ease) both;
}

.qba-sample-menu-table {
  width: 100%;
  min-width: 940px;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.45;
}

.qba-sample-menu-table.compact {
  min-width: 1040px;
  font-size: 11px;
}

.qba-sample-menu-table th,
.qba-sample-menu-table td {
  min-width: 118px;
  padding: 11px 12px;
  vertical-align: top;
  border-right: 1px solid rgba(23, 59, 53, 0.08);
  border-bottom: 1px solid rgba(23, 59, 53, 0.08);
}

.qba-sample-menu-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: var(--ink);
  background: #e8f1e3;
  font-size: 11px;
  font-weight: 900;
}

.qba-sample-menu-table tbody th,
.qba-sample-menu-table tbody td:first-child {
  color: var(--cyan-dark);
  background: rgba(232, 241, 227, 0.72);
  font-weight: 900;
}

.qba-sample-menu-table td span {
  display: block;
  margin-top: 5px;
  color: rgba(23, 59, 53, 0.74);
}

.qba-sample-menu-table .qba-menu-empty {
  color: rgba(23, 59, 53, 0.28);
  text-align: center;
  font-weight: 800;
}

.qba-sample-menu-table tbody tr:hover td,
.qba-sample-menu-table tbody tr:hover th {
  background: rgba(255, 213, 105, 0.16);
}

@keyframes qbaSampleMenuReveal {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .qba-sample-menu-card,
  .qba-sample-menu-details summary::after,
  .qba-sample-menu-details[open] .qba-sample-menu-scroll {
    animation: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .qba-sample-menu-head {
    display: grid;
    align-items: start;
  }

  .qba-sample-menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .qba-sample-menu-suite {
    margin-top: 46px;
    padding: 18px 16px 20px;
    border-radius: 22px;
  }

  .qba-sample-menu-head h3 {
    font-size: 25px;
  }

  .qba-sample-menu-head p {
    font-size: 12px;
  }

  .qba-sample-menu-card {
    padding: 14px;
    border-radius: 16px;
  }

  .qba-sample-menu-card-head h4 {
    font-size: 20px;
  }

  .qba-sample-menu-table,
  .qba-sample-menu-table.compact {
    min-width: 820px;
    font-size: 11px;
  }

  .qba-sample-menu-table th,
  .qba-sample-menu-table td {
    min-width: 108px;
    padding: 10px;
  }
}

.menu-tabs {
  display: flex;
  gap: 6px;
  padding: 5px;
  background: rgba(23, 59, 53, 0.06);
  border-radius: 999px;
}

.menu-tab {
  padding: 9px 14px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.menu-tab.active {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 8px 20px rgba(23, 59, 53, 0.16);
}

.menu-panel {
  display: grid;
  gap: 22px;
  margin-top: 46px;
}

.menu-week {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  align-items: center;
  gap: 30px;
  margin-top: 0;
}

.menu-week-copy {
  display: flex;
  flex-direction: column;
}

.menu-week-copy span {
  color: var(--orange);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.menu-week-copy strong {
  margin-top: 5px;
  font-family: "Space Grotesk", "Be Vietnam Pro", sans-serif;
  font-size: 18px;
}

.menu-week-copy small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.menu-day-carousel {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(23, 59, 53, 0.07);
}

.menu-days {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(72px, 1fr));
  gap: 5px;
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-days::-webkit-scrollbar { display: none; }

.menu-day,
.menu-day-arrow {
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-day {
  min-height: 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 9px;
  border-radius: 15px;
  scroll-snap-align: center;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.menu-day small { font-size: 7px; opacity: 0.58; }
.menu-day span { font-size: 10px; font-weight: 800; white-space: nowrap; }

.menu-day:hover { color: var(--ink); background: rgba(157, 212, 138, 0.12); }

.menu-day.active {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(23, 59, 53, 0.2);
  transform: translateY(-2px);
}

.menu-day-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 17px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.menu-day-arrow:hover { color: var(--white); background: var(--cyan-dark); transform: scale(1.05); }

.menu-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 10px;
  min-height: 0;
  max-width: none;
  margin: 0;
  padding: 10px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(23, 59, 53, 0.08);
}

.menu-price-overlay {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 8;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 22px;
  color: var(--white);
  background: rgba(23, 59, 53, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(23, 59, 53, 0.28);
  backdrop-filter: blur(14px);
}

.menu-price-overlay span,
.menu-price-overlay small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.menu-price-overlay strong {
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.menu-slide-arrow {
  position: absolute;
  top: 50%;
  z-index: 9;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(23, 59, 53, 0.14);
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(23, 59, 53, 0.18);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(10px);
}

.menu-slide-arrow:hover { color: var(--white); background: var(--ink); transform: translateY(-50%) scale(1.06); }
.menu-slide-prev { left: 28px; }
.menu-slide-next { right: 28px; }

.menu-code {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  min-height: 250px;
  padding: 28px;
  background: var(--ink);
  border-radius: 20px;
}

.menu-code span,
.menu-code small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.menu-code .menu-service-quantity {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.menu-code strong {
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
}

.menu-board.has-representative-image {
  grid-template-columns: minmax(360px, 0.42fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 12px;
  padding: 12px;
  background:
    radial-gradient(circle at 18% 10%, rgba(68, 241, 209, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(238, 247, 232, 0.92), rgba(255, 253, 248, 0.82));
}

.menu-board.has-representative-image .menu-code {
  display: none;
}

.menu-day-representative[hidden] { display: none; }

.menu-day-representative {
  position: relative;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 14px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 38%),
    linear-gradient(150deg, #143930 0%, #246c50 56%, #0bb89d 130%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.menu-day-representative::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -76px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(241, 200, 91, 0.28), transparent 68%);
  pointer-events: none;
}

.menu-day-representative figcaption {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  width: fit-content;
  max-width: min(100%, 360px);
  padding: 12px 14px;
  background: rgba(8, 31, 26, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(7, 28, 23, 0.18);
  backdrop-filter: blur(10px);
}

.menu-day-representative span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.menu-day-representative strong {
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.menu-day-representative-photo {
  position: relative;
  z-index: 2;
  flex: none;
  width: min(100%, 430px);
  max-width: 100%;
  aspect-ratio: 4 / 5;
  background-color: #eeeee9;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(7, 28, 23, 0.16);
}

.menu-board[data-menu-tier="light"] .menu-day-representative-photo {
  aspect-ratio: 4 / 3;
  background-size: cover;
}

.menu-week-gallery[hidden] { display: none; }

.menu-week-gallery {
  display: grid;
  gap: 18px;
  padding: 20px;
  background:
    radial-gradient(circle at 10% 0%, rgba(31, 178, 125, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(239, 247, 234, 0.96), rgba(255, 253, 247, 0.92));
  border: 1px solid rgba(28, 88, 71, 0.12);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(12, 55, 43, 0.08);
}

.menu-week-gallery-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 8px 14px;
  color: var(--ink);
}

.menu-week-gallery-copy span {
  width: 100%;
  color: var(--cyan-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.menu-week-gallery-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.menu-week-gallery-copy small {
  color: rgba(30, 58, 50, 0.68);
  font-size: 13px;
  font-weight: 700;
}

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

.menu-week-gallery-card {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 10px;
  color: var(--ink);
  text-align: left;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 82, 64, 0.1);
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(13, 50, 40, 0.09);
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.menu-week-gallery-card:hover,
.menu-week-gallery-card.active {
  transform: translateY(-3px);
  border-color: rgba(17, 138, 107, 0.48);
  box-shadow: 0 22px 38px rgba(13, 50, 40, 0.14);
}

.menu-week-gallery-card.active::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(17, 138, 107, 0.72);
  border-radius: 16px;
  pointer-events: none;
}

.menu-week-gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #eeeee9;
  border-radius: 14px;
}

.menu-week-gallery-card .menu-week-gallery-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: #eeeee9;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 14px;
}

.menu-week-gallery-card .menu-week-gallery-photo.has-default-image {
  background-image: var(--menu-week-image);
}

.menu-week-gallery-card.is-empty {
  border-style: dashed;
  background:
    radial-gradient(circle at 50% 18%, rgba(48, 169, 133, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.66);
}

.menu-week-gallery-card .menu-week-gallery-photo.is-empty {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 18px;
  color: rgba(30, 58, 50, 0.52);
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(238, 242, 236, 0.96), rgba(247, 248, 244, 0.82));
  border: 1px solid rgba(24, 82, 64, 0.1);
  border-radius: 14px;
}

.menu-week-gallery-photo > em {
  position: relative;
  z-index: 2;
  font-style: normal;
}

.menu-week-gallery-photo.has-custom-image > em,
.menu-week-gallery-photo.has-default-image > em {
  display: none;
}

.menu-week-gallery-card .menu-week-gallery-day {
  color: var(--cyan-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.menu-week-gallery-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.menu-board.has-representative-image .menu-dishes {
  align-content: stretch;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.menu-board.has-representative-image .menu-dishes > div {
  min-height: 108px;
  padding: 12px;
}

.menu-dishes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 8px;
  padding: 10px;
}

.menu-dishes > div {
  position: relative;
  min-width: 0;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.menu-dishes > div:hover { background: rgba(68, 241, 209, 0.07); transform: translateY(-4px); }

.menu-dishes span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--cyan-dark);
  background: rgba(68, 241, 209, 0.09);
  border: 1px solid rgba(11, 184, 157, 0.16);
  border-radius: 50%;
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
}

.menu-dishes strong {
  font-size: 11px;
  line-height: 1.35;
}

.menu-dishes small {
  color: var(--muted);
  font-size: 8px;
}

.menu-empty-note {
  grid-column: 1 / -1;
  min-height: 160px;
}

.menu-image-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.menu-image-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 26px;
  background: #eee9dc;
  border: 1px solid var(--line);
  border-radius: 28px;
}

.menu-image-copy span {
  color: var(--orange);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.menu-image-copy strong {
  font-family: "Space Grotesk", "Be Vietnam Pro", sans-serif;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.menu-image-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.menu-image-board {
  position: relative;
  min-height: clamp(500px, 57vw, 690px);
  padding: 10px;
  overflow: hidden;
  background: #e8eee4;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(23, 59, 53, 0.08);
}

.nutrition-orb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--cyan);
  border-radius: 50%;
  aspect-ratio: 1;
  align-self: center;
  text-align: center;
  box-shadow: 0 0 0 10px rgba(68, 241, 209, 0.13);
}

.nutrition-orb span,
.nutrition-orb small {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.nutrition-orb strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
}

.menu-business-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
}

.menu-portion-strip {
  min-height: 58px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 18px;
  color: var(--muted);
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.menu-portion-strip > span {
  margin-right: 4px;
  color: var(--orange);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.menu-portion-strip b { color: var(--ink); font-size: 8px; }
.menu-portion-strip i { width: 4px; height: 4px; background: var(--cyan-dark); border-radius: 50%; }

.menu-business-actions { display: flex; justify-content: center; gap: 8px; }
.menu-business-actions .button { min-height: 48px; white-space: nowrap; }

.menu-gallery-toggle {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
}

.menu-gallery-toggle:hover { border-color: var(--cyan-dark); transform: translateY(-2px); }

.menu-gallery {
  margin-top: 28px;
  padding: 28px;
  background: #eee9dc;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 26px 80px rgba(23, 59, 53, 0.1);
}

.menu-gallery-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.menu-gallery-head span { color: var(--orange); font-size: 8px; font-weight: 800; letter-spacing: 0.16em; }
.menu-gallery-head h3 { margin: 5px 0 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(24px, 3vw, 38px); letter-spacing: -0.04em; }

.menu-gallery-head button {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 23px;
}

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

.menu-gallery-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.menu-gallery-card:hover { transform: translateY(-5px); box-shadow: 0 18px 46px rgba(23, 59, 53, 0.12); }

.menu-gallery .menu-gallery-photo {
  display: block;
  height: auto;
  aspect-ratio: 4 / 3;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background-color: #dce7d6;
  background-image: radial-gradient(circle at 72% 28%, rgba(241, 200, 91, 0.75), transparent 22%), linear-gradient(145deg, rgba(49, 122, 88, 0.2), rgba(255, 253, 248, 0.3));
}

.menu-gallery-photo::after {
  content: attr(data-menu-badge);
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(23, 59, 53, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(23, 59, 53, 0.18);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.menu-gallery-card-body { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px; }
.menu-gallery-price { padding: 9px 12px; color: var(--ink); background: var(--lime); border-radius: 999px; font-size: 11px; font-weight: 800; }
.menu-gallery-card h4 { margin: 13px 0 8px; font-family: "Space Grotesk", sans-serif; font-size: 18px; }
.menu-gallery-card p { min-height: 44px; margin: 0; color: var(--muted); font-size: 9px; line-height: 1.55; }

.menu-gallery-card button {
  margin: 0;
  padding: 10px 12px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
}

.process { overflow: hidden; }

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background:
    radial-gradient(circle at 90% 10%, rgba(241, 200, 91, 0.1), transparent 28%),
    radial-gradient(circle at 4% 100%, rgba(157, 212, 138, 0.1), transparent 30%);
}

.process-glow {
  position: absolute;
  top: -300px;
  right: -200px;
  width: 800px !important;
  height: 800px;
  background: radial-gradient(circle, rgba(68, 241, 209, 0.12), transparent 65%);
  pointer-events: none;
}

.process-line {
  position: relative;
  height: 1px;
  margin-top: 72px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.process-line i {
  display: block;
  width: 30%;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), var(--cyan), transparent);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process-step {
  position: relative;
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.process-step:hover { background: rgba(68, 241, 209, 0.05); }

.process-step > span {
  color: rgba(255, 255, 255, 0.3);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
}

.process-step > i {
  position: absolute;
  top: 27px;
  right: 28px;
  width: 9px;
  height: 9px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: none;
}

.process-step h3 {
  margin: 62px 0 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
}

.process-step p {
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.capacity-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
}

.capacity-note {
  max-width: 440px;
  margin-top: 30px;
}

.capacity-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.stat-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-card > strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1;
  letter-spacing: -0.07em;
}

.capacity-word {
  display: block;
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
}

.stat-card sup {
  color: var(--cyan-dark);
  font-size: 18px;
  letter-spacing: 0;
}

.stat-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.stat-card em {
  display: block;
  width: max-content;
  margin-top: 7px;
  padding: 2px 5px;
  color: #8b5c00;
  background: #fff2c2;
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.coverage-panel {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  min-height: 500px;
  margin-top: 90px;
  padding: 14px;
  background: var(--ink);
  border-radius: 30px;
  box-shadow: 0 35px 90px rgba(23, 59, 53, 0.17);
}

.coverage-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  color: var(--white);
}

.coverage-copy h3 {
  margin: 14px 0 12px;
  font-family: "Space Grotesk", "Be Vietnam Pro", sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.coverage-copy > p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.location-tags span {
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 8px;
}

.placeholder-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.placeholder-alert strong {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--orange);
  border-radius: 50%;
  font-size: 10px;
}

.placeholder-alert span {
  color: rgba(255, 255, 255, 0.43);
  font-size: 8px;
}

.vn-map-wrap {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 25%, rgba(241, 200, 91, 0.22), transparent 22%),
    linear-gradient(145deg, #f8f0de, #e6dfce);
  border-radius: 20px;
}

.vn-map-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: radial-gradient(rgba(23, 59, 53, 0.28) 0.8px, transparent 0.8px);
  background-size: 14px 14px;
  mask-image: linear-gradient(90deg, transparent, black 55%, transparent);
}

.vn-map {
  position: absolute;
  inset: 18px;
  z-index: 1;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
}

.vn-outline {
  fill: #d8cfba;
  stroke: rgba(23, 59, 53, 0.42);
  stroke-width: 2;
}

.map-islands {
  opacity: 0.96;
  filter: drop-shadow(0 10px 18px rgba(23, 59, 53, 0.16));
}

.map-island-chain {
  transform-box: fill-box;
  transform-origin: center;
  animation: islandFloat 5.8s ease-in-out infinite;
}

.map-island-chain-lower {
  animation-delay: -1.7s;
}

.map-sea-ring {
  fill: rgba(64, 166, 183, 0.09);
  stroke: rgba(49, 122, 88, 0.28);
  stroke-width: 1;
  stroke-dasharray: 4 7;
}

.map-island-dot {
  fill: #c23127;
  stroke: rgba(255, 253, 248, 0.96);
  stroke-width: 1.4;
}

.map-geography-label {
  fill: #287252;
  font-family: "Be Vietnam Pro", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
}

.map-geography-label-strong {
  fill: #123d34;
  font-family: "Space Grotesk", "Be Vietnam Pro", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.map-leader {
  fill: none;
  stroke: rgba(177, 47, 38, 0.58);
  stroke-width: 1.5;
  stroke-dasharray: 4 5;
}

.marker-ring {
  fill: rgba(194, 49, 39, 0.14);
  stroke: #c23127;
  stroke-width: 1.5;
  animation: markerPulse 2.4s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.marker-core {
  fill: #c23127;
  stroke: var(--white);
  stroke-width: 2;
}

.capital-marker {
  filter: drop-shadow(0 6px 12px rgba(23, 59, 53, 0.18));
}

.capital-halo {
  fill: rgba(241, 200, 91, 0.2);
  stroke: rgba(177, 47, 38, 0.35);
  stroke-width: 1;
  stroke-dasharray: 3 4;
}

.capital-star {
  fill: #f1c85b;
  stroke: #8a261f;
  stroke-width: 1.4;
  stroke-linejoin: round;
}

.capital-label {
  fill: #123d34;
  font-family: "Space Grotesk", "Be Vietnam Pro", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
}

.marker-dongthap .marker-ring { animation-delay: 0.5s; }
.marker-hcm .marker-ring { animation-delay: 1s; }

@keyframes markerPulse {
  0%, 100% { opacity: 0.9; transform: scale(0.72); }
  55% { opacity: 0.22; transform: scale(1.22); }
}

@keyframes islandFloat {
  0%, 100% { opacity: 0.9; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

.province-label {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(23, 59, 53, 0.15);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(23, 59, 53, 0.1);
}

.province-label span {
  color: #c23127;
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
}

.province-label div { display: flex; flex-direction: column; }
.province-label strong { font-size: 9px; line-height: 1.2; }
.province-label small { margin-top: 2px; color: var(--muted); font-size: 6.5px; }
.label-dongnai { top: 66%; right: 3%; }
.label-tiengiang { top: 78%; left: 2%; }
.label-brvt { top: 83%; right: 1%; }

.map-caption {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.map-caption span {
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.16em;
}

.map-caption strong {
  margin-top: 2px;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
}

.partner-marquee-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  color: var(--muted);
  font-size: 9px;
}

.partner-marquee-toolbar button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
}

.partner-marquee-toolbar button:hover { border-color: var(--cyan-dark); }
.partner-marquee-toolbar i { color: var(--orange); font-style: normal; }

.partner-marquee {
  width: 100%;
  max-width: none;
  margin-top: 12px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee-track {
  width: max-content;
  display: flex;
  animation: marquee 58s linear infinite;
}

.partner-marquee:hover .marquee-track { animation-play-state: paused; }
.partner-marquee.paused .marquee-track { animation-play-state: paused; }

@keyframes marquee { to { transform: translateX(-50%); } }

.partner-logo {
  width: 320px;
  min-height: 164px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  border-right: 1px solid var(--line);
  color: rgba(23, 59, 53, 0.6);
}

.partner-logo b {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  color: var(--cyan-dark);
  border: 1px solid rgba(11, 184, 157, 0.22);
  border-radius: 50%;
  font-family: "Space Grotesk", sans-serif;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 10px 26px rgba(23, 59, 53, 0.12);
}

.partner-logo b.has-default-image { color: transparent; }

[data-image-slot="partner-01"].has-default-image {
  background-image: url("assets/partner-e-top.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

[data-image-slot="partner-02"].has-default-image {
  background-image: url("assets/partner-twinkle.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 220% auto;
}

[data-image-slot="partner-03"].has-default-image {
  background-image: url("assets/partner-hoang-gia.png");
  background-position: center 42%;
  background-repeat: no-repeat;
  background-size: 215% auto;
}

[data-image-slot="partner-04"].has-default-image {
  background-image: url("assets/partner-jys.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

[data-image-slot="partner-05"].has-default-image {
  background-image: url("assets/partner-bellinturf.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 175% auto;
}

[data-image-slot="partner-06"].has-default-image {
  background-image: url("assets/partner-jintian.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

[data-image-slot="partner-07"].has-default-image {
  background-image: url("assets/partner-leow-foods.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

[data-image-slot="partner-08"].has-default-image {
  background-image: url("assets/partner-tah-tong.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

[data-image-slot="partner-09"].has-default-image {
  background-image: url("assets/partner-minh-tri.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 220% auto;
}

[data-image-slot="partner-10"].has-default-image {
  background-image: url("assets/partner-kinh-thien.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 88%;
}

[data-image-slot="partner-11"].has-default-image {
  background-image: url("assets/partner-vinh-hung.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 88% auto;
}

.partner-logo > span {
  max-width: 195px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.partner-logo small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.industry-list {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.industry-list > span {
  margin-right: auto;
  color: var(--muted);
  font-size: 10px;
}

.industry-list div {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 99px;
  font-size: 9px;
}

.industry-list i {
  width: 5px;
  height: 5px;
  background: var(--cyan-dark);
  border-radius: 50%;
}

.contact { overflow: hidden; }

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: radial-gradient(rgba(68, 241, 209, 0.5) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, black, transparent 60%);
}

.contact-orb {
  position: absolute;
  left: -280px;
  bottom: -400px;
  width: 900px !important;
  height: 900px;
  border: 1px solid rgba(68, 241, 209, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(68, 241, 209, 0.025),
    0 0 0 160px rgba(68, 241, 209, 0.018);
}

.contact-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: 0.85fr 1.15fr;
}

.contact-copy > p {
  max-width: 500px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 50px;
}

.contact-info a {
  width: max-content;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.contact-info a[data-hotline] {
  padding: 10px 14px 10px 0;
  border-radius: 12px;
  transition: padding 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.contact-info a[data-hotline]:hover {
  padding-left: 14px;
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(3px);
}

.contact-info small {
  color: rgba(255, 255, 255, 0.36);
  font-size: 8px;
  letter-spacing: 0.15em;
}

.contact-info strong {
  margin-top: 2px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.contact-info a > span {
  margin-top: 1px;
  color: var(--orange);
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.contact-info a:last-child strong {
  font-size: 15px;
}

.contact-form {
  padding: 36px;
  color: var(--ink);
  background: var(--white);
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.form-topline {
  margin-bottom: 30px;
  color: var(--muted);
}

.form-topline i {
  width: 48px;
  height: 1px;
  background: var(--cyan-dark);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.contact-form label.field-highlight > span { color: var(--orange); }
.contact-form label.field-highlight select { border-color: var(--orange); }

.contact-form label > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  font-size: 13px;
  resize: vertical;
  transition: border-color 0.25s ease;
}

.contact-form select {
  appearance: none;
  padding-right: 24px;
  background-image: linear-gradient(45deg, transparent 50%, var(--cyan-dark) 50%), linear-gradient(135deg, var(--cyan-dark) 50%, transparent 50%);
  background-position: calc(100% - 13px) 50%, calc(100% - 8px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--cyan-dark); }

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #a9b1b7; }

.contact-form .consent-label {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 4px;
  cursor: pointer;
}

.consent-label input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--cyan-dark);
}

.contact-form .consent-label > span {
  font-size: 8px;
  font-weight: 500;
  line-height: 1.55;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.contact-form .form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  opacity: 0;
  pointer-events: none;
}

.form-note {
  display: block;
  margin-top: 14px;
  color: #94a0a8;
  text-align: center;
  font-size: 8px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 46px;
  padding: 58px max(32px, calc((100vw - 1240px) / 2)) 30px;
  background: #040c13;
  color: var(--white);
}

.footer-logo-full {
  display: block;
  width: min(260px, 70vw);
  height: auto;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.footer-brand p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
}

.footer-links a:hover { color: var(--cyan); }

.footer-privacy {
  grid-column: 1 / -1;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
}

.footer-privacy summary {
  width: max-content;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font-weight: 700;
}

.footer-privacy p { margin: 12px 0 0; }

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 8px;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.floating-actions a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(23, 59, 53, 0.2);
  transition: transform 0.25s ease, background 0.25s ease;
}

.floating-actions a:last-child {
  color: var(--ink);
  background: var(--cyan);
}

.floating-actions a:hover { transform: scale(1.08) translateY(-2px); }

body.hotline-open { overflow: hidden; }

.hotline-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.hotline-modal[hidden] { display: none; }
.hotline-modal.open { opacity: 1; }

.hotline-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(4, 12, 19, 0.76);
  border: 0;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.hotline-dialog {
  position: relative;
  width: min(520px, 100%);
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.3s var(--ease);
}

.hotline-modal.open .hotline-dialog { transform: translateY(0) scale(1); }

.hotline-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.hotline-head small {
  color: var(--cyan-dark);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hotline-head h2 {
  margin: 5px 0 0;
  font-family: "Space Grotesk", "Be Vietnam Pro", sans-serif;
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: -0.04em;
}

.hotline-close {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  background: #f1eee5;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
}

.hotline-dialog > p {
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: 11px;
}

.hotline-person {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  background: #f5f1e7;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color 0.25s ease, transform 0.25s var(--ease), background 0.25s ease;
}

.hotline-person + .hotline-person { margin-top: 10px; }
.hotline-person:hover { background: #fffaf0; border-color: var(--orange); transform: translateY(-2px); }
.hotline-person > span { display: flex; flex-direction: column; }
.hotline-person small { color: var(--muted); font-size: 7px; letter-spacing: 0.14em; }
.hotline-person strong { margin-top: 3px; font-size: 12px; }
.hotline-person b { margin-top: 3px; color: var(--cyan-dark); font-family: "Space Grotesk", sans-serif; font-size: 18px; }
.hotline-person em { color: var(--orange); font-size: 10px; font-style: normal; font-weight: 800; white-space: nowrap; }

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  padding: 18px 22px;
  color: var(--white);
  background: var(--ink-2);
  border: 1px solid rgba(68, 241, 209, 0.3);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s var(--ease);
}

.toast.show { opacity: 1; transform: translateY(0); }
.toast.error { border-color: rgba(231, 131, 94, 0.65); }
.toast strong { color: var(--cyan); font-size: 12px; }
.toast.error strong { color: var(--orange); }
.toast span { margin-top: 3px; color: rgba(255, 255, 255, 0.55); font-size: 9px; }

/* Image editor */
.editable-frame {
  position: relative;
  display: none;
  background-color: rgba(49, 122, 88, 0.08);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid rgba(49, 122, 88, 0.18);
  border-radius: 18px;
  overflow: hidden;
}

.editable-frame.has-custom-image,
.editable-frame.has-default-image,
.image-edit-mode .editable-frame {
  display: block;
}

[data-image-slot="company-profile-cover"].has-default-image {
  background-image: linear-gradient(rgba(23, 59, 53, 0.72), rgba(23, 59, 53, 0.86)), url("assets/qba-hero-natural-v2.jpg");
  background-position: 64% center;
  background-size: cover;
}

[data-image-slot="value-safety"].has-default-image {
  background-image: url("assets/hsnl/chung-nhan/iso-22000-qba-2023-2026.jpg");
}

[data-image-slot="value-flexible"].has-default-image {
  background-image: url("assets/hsnl/chung-nhan/iso-dao-tao-tran-thi-thanh-thuy-web.jpg");
}

[data-image-slot="value-ontime"].has-default-image {
  background-image: url("assets/hsnl/chung-nhan/iso-dao-tao-nguyen-quoc-chinh-web.jpg");
}

[data-image-slot="service-lunch"].has-default-image {
  background-image:
    linear-gradient(90deg, rgba(23, 59, 53, 0.94), rgba(23, 59, 53, 0.48)),
    linear-gradient(0deg, rgba(23, 59, 53, 0.72), transparent 55%),
    url("assets/services/service-lunch-tray-v4.jpg");
  background-position: 62% center;
  background-size: cover;
}

[data-image-slot="service-event"].has-default-image {
  background-image: url("assets/services/service-event-banquet-v3-web.jpg");
}

[data-image-slot="service-vegan"].has-default-image {
  background-image: url("assets/services/service-vegan-tray-v3.jpg");
}

[data-image-slot="service-breakfast"].has-default-image {
  background-image: url("assets/services/service-breakfast-prep-v3-web.jpg");
}

[data-image-slot="service-night"].has-default-image {
  background-image: url("assets/services/service-night-portioning.jpg");
}

[data-image-slot^="service-"].has-default-image {
  background-position: center;
  background-size: cover;
}

[data-image-slot="capacity-kitchen"].has-default-image {
  background-image: url("assets/capacity/capacity-team-meeting.jpg");
}

[data-image-slot="capacity-equipment"].has-default-image {
  background-image: url("assets/capacity/capacity-equipment.jpg");
}

[data-image-slot="capacity-meat-cutter"].has-default-image {
  background-image: url("assets/capacity/capacity-meat-cutter.jpg");
}

[data-image-slot="capacity-portioning"].has-default-image {
  background-image: url("assets/capacity/capacity-portioning.jpg");
}

[data-image-slot="capacity-dining-hall"].has-default-image {
  background-image: url("assets/capacity/capacity-dining-hall-web.jpg");
  background-position: center 42%;
}

[data-image-slot^="capacity-"].has-default-image {
  background-color: #eee9dc;
  background-position: center;
  background-size: cover;
}

[data-image-slot="capacity-dining-hall"].has-default-image {
  background-position: center 42%;
}

[data-image-slot="process-source"].has-default-image { background-image: url("assets/process/process-source-raw-materials.jpg"); }
[data-image-slot="process-receive"].has-default-image { background-image: url("assets/process/process-receive-handover.jpg"); }
[data-image-slot="process-prep"].has-default-image { background-image: url("assets/process/process-prep-meat-cutter.jpg"); }
[data-image-slot="process-cook"].has-default-image { background-image: url("assets/process/process-cook-equipment.jpg"); }
[data-image-slot="process-serve"].has-default-image { background-image: url("assets/process/process-serve-portioning.jpg"); }
[data-image-slot="process-sample"].has-default-image { background-image: url("assets/process/process-sample-retention.jpg"); }

[data-image-slot^="process-"].has-default-image {
  background-position: center;
  background-size: cover;
}

.value-photo-frame {
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: 420px;
  aspect-ratio: 4 / 5;
  margin: -10px 0 24px;
  background-color: #eee9dc;
  background-size: contain;
  box-shadow: inset 0 0 0 8px rgba(255, 253, 248, 0.72);
}

.value-card:has(.value-photo-frame.has-custom-image),
.value-card:has(.value-photo-frame.has-default-image),
.image-edit-mode .value-card {
  min-height: 610px;
  padding: 18px;
}

.value-card:has(.value-photo-frame.has-custom-image) .card-icon,
.value-card:has(.value-photo-frame.has-default-image) .card-icon,
.image-edit-mode .value-card .card-icon {
  display: none;
}

.value-card:has(.value-photo-frame.has-custom-image) > span,
.value-card:has(.value-photo-frame.has-custom-image) > h3,
.value-card:has(.value-photo-frame.has-custom-image) > p,
.value-card:has(.value-photo-frame.has-default-image) > span,
.value-card:has(.value-photo-frame.has-default-image) > h3,
.value-card:has(.value-photo-frame.has-default-image) > p,
.image-edit-mode .value-card > span,
.image-edit-mode .value-card > h3,
.image-edit-mode .value-card > p {
  position: relative;
  z-index: 2;
  margin-inline: 10px;
}

.service-photo-frame {
  position: absolute;
  top: 14px;
  right: 14px;
  left: 14px;
  z-index: 2;
  height: 148px;
  border-radius: 20px;
}

[data-image-slot="service-vegan"].service-photo-frame {
  height: 190px;
}

.service-card:has(.service-photo-frame.has-custom-image) .service-plate,
.service-card:has(.service-photo-frame.has-default-image) .service-plate,
.image-edit-mode .service-card .service-plate {
  opacity: 0.18;
}

.service-card:has(.service-photo-frame.has-custom-image),
.service-card:has(.service-photo-frame.has-default-image) {
  padding-top: 188px;
}

.service-card:has([data-image-slot="service-vegan"].service-photo-frame.has-custom-image),
.service-card:has([data-image-slot="service-vegan"].service-photo-frame.has-default-image),
.image-edit-mode .service-card:has([data-image-slot="service-vegan"].service-photo-frame) {
  padding-top: 230px;
}

.menu-photo-stack {
  position: relative;
  display: block;
  min-width: 0;
  min-height: clamp(500px, 60vw, 700px);
  overflow: hidden;
  background: #e8eee4;
  border-radius: 22px;
}

.menu-photo-stack.has-images,
.image-edit-mode .menu-photo-stack {
  display: block;
}

.menu-photo-frame {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background-color: #e8eee4;
}

.menu-empty-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  color: rgba(23, 59, 53, 0.58);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.menu-empty-placeholder::before {
  content: "QBA";
  position: absolute;
  top: calc(50% - 52px);
  color: rgba(49, 122, 88, 0.22);
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  letter-spacing: -0.05em;
}

.has-default-image > .menu-empty-placeholder,
.has-custom-image > .menu-empty-placeholder { display: none; }

.menu-photo-frame:not(.active) { display: none !important; }
.image-editor-available .menu-photo-frame.active { display: block; }
.menu-photo-frame.has-default-image { display: block; }

.image-edit-mode .menu-photo-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  min-height: auto;
  padding: 12px;
  overflow: visible;
  background:
    linear-gradient(135deg, rgba(232, 238, 228, 0.94), rgba(248, 250, 245, 0.88));
  border: 1px dashed rgba(17, 138, 107, 0.36);
}

.image-edit-mode .menu-photo-stack .menu-photo-frame {
  display: none !important;
}

.image-edit-mode .menu-photo-stack[data-edit-menu-tier="basic"] .menu-photo-frame[data-menu-photo^="basic-"],
.image-edit-mode .menu-photo-stack[data-edit-menu-tier="standard"] .menu-photo-frame[data-menu-photo^="standard-"],
.image-edit-mode .menu-photo-stack[data-edit-menu-tier="energy"] .menu-photo-frame[data-menu-photo^="energy-"],
.image-edit-mode .menu-photo-stack[data-edit-menu-tier="premium"] .menu-photo-frame[data-menu-photo^="premium-"],
.image-edit-mode .menu-photo-stack[data-edit-menu-tier="light"] .menu-photo-frame[data-menu-photo^="light-"] {
  position: relative;
  inset: auto;
  display: block !important;
  min-height: clamp(190px, 25vw, 310px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(48, 169, 133, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(241, 246, 238, 0.96), rgba(226, 235, 221, 0.9));
  border: 1px dashed rgba(24, 82, 64, 0.22);
  box-shadow: 0 14px 24px rgba(13, 50, 40, 0.08);
}

.image-edit-mode .menu-photo-stack[data-edit-menu-tier="basic"] .menu-photo-frame[data-menu-photo^="basic-"].active,
.image-edit-mode .menu-photo-stack[data-edit-menu-tier="standard"] .menu-photo-frame[data-menu-photo^="standard-"].active,
.image-edit-mode .menu-photo-stack[data-edit-menu-tier="energy"] .menu-photo-frame[data-menu-photo^="energy-"].active,
.image-edit-mode .menu-photo-stack[data-edit-menu-tier="premium"] .menu-photo-frame[data-menu-photo^="premium-"].active,
.image-edit-mode .menu-photo-stack[data-edit-menu-tier="light"] .menu-photo-frame[data-menu-photo^="light-"].active {
  border-color: rgba(194, 49, 39, 0.58);
  box-shadow:
    0 0 0 3px rgba(194, 49, 39, 0.14),
    0 18px 30px rgba(13, 50, 40, 0.14);
}

.image-edit-mode .menu-photo-stack .menu-photo-frame::after {
  content: attr(data-image-label);
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 4;
  padding: 7px 9px;
  color: #173b35;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.03em;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(24, 82, 64, 0.12);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(13, 50, 40, 0.12);
  pointer-events: none;
}

@media (max-width: 760px) {
  .image-edit-mode .menu-photo-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-edit-mode .menu-photo-stack[data-edit-menu-tier="basic"] .menu-photo-frame[data-menu-photo^="basic-"],
  .image-edit-mode .menu-photo-stack[data-edit-menu-tier="standard"] .menu-photo-frame[data-menu-photo^="standard-"],
  .image-edit-mode .menu-photo-stack[data-edit-menu-tier="energy"] .menu-photo-frame[data-menu-photo^="energy-"],
  .image-edit-mode .menu-photo-stack[data-edit-menu-tier="premium"] .menu-photo-frame[data-menu-photo^="premium-"],
  .image-edit-mode .menu-photo-stack[data-edit-menu-tier="light"] .menu-photo-frame[data-menu-photo^="light-"] {
    min-height: 210px;
  }
}

[data-image-slot="menu-basic-mon"].has-default-image { background-image: url("assets/menu/qba-23k-actual-gallery-mon-20260803.png"); }
[data-image-slot="menu-basic-tue"].has-default-image { background-image: url("assets/menu/qba-23k-actual-gallery-tue-20260803.png"); }
[data-image-slot="menu-basic-wed"].has-default-image { background-image: url("assets/menu/qba-23k-actual-gallery-wed-20260803.png"); }
[data-image-slot="menu-basic-thu"].has-default-image { background-image: url("assets/menu/qba-23k-actual-gallery-thu-20260803.png"); }
[data-image-slot="menu-basic-fri"].has-default-image { background-image: url("assets/menu/qba-23k-actual-gallery-fri-20260803.png"); }
[data-image-slot="menu-basic-sat"].has-default-image { background-image: url("assets/menu/qba-23k-actual-gallery-sat-20260803.png"); }
[data-image-slot="menu-standard-mon"].has-default-image { background-image: url("assets/menu-24k-real-pro-01.jpg"); }
[data-image-slot="menu-standard-tue"].has-default-image { background-image: url("assets/menu-24k-real-pro-02.jpg"); }
[data-image-slot="menu-standard-wed"].has-default-image { background-image: url("assets/menu-24k-real-pro-03.jpg"); }
[data-image-slot="menu-standard-thu"].has-default-image { background-image: url("assets/menu-24k-real-pro-04.jpg"); }
[data-image-slot="menu-standard-fri"].has-default-image { background-image: url("assets/menu-24k-real-pro-05.jpg"); }
[data-image-slot="menu-standard-sat"].has-default-image { background-image: url("assets/menu-24k-real-pro-06.jpg"); }
[data-image-slot="menu-energy-mon"].has-default-image { background-image: url("assets/menu/qba-25k-actual-mon-gallery-landscape.jpg"); }
[data-image-slot="menu-energy-tue"].has-default-image { background-image: url("assets/menu/qba-25k-actual-tue-gallery-landscape.jpg"); }
[data-image-slot="menu-energy-wed"].has-default-image { background-image: url("assets/menu/qba-25k-actual-wed-gallery-landscape.jpg"); }
[data-image-slot="menu-energy-thu"].has-default-image { background-image: url("assets/menu/qba-25k-actual-thu-gallery-landscape.jpg"); }
[data-image-slot="menu-energy-fri"].has-default-image { background-image: url("assets/menu/qba-25k-actual-fri-gallery-landscape.jpg"); }
[data-image-slot="menu-energy-sat"].has-default-image { background-image: url("assets/menu/qba-25k-actual-sat-gallery-landscape.jpg"); }
[data-image-slot="menu-premium-mon"].has-default-image { background-image: url("assets/menu/qba-40k-chinese-mon-gallery-landscape.jpg"); }
[data-image-slot="menu-premium-tue"].has-default-image { background-image: url("assets/menu/qba-40k-chinese-tue-gallery-landscape.jpg"); }
[data-image-slot="menu-premium-wed"].has-default-image { background-image: url("assets/menu/qba-40k-chinese-wed-gallery-landscape.jpg"); }
[data-image-slot="menu-premium-thu"].has-default-image { background-image: url("assets/menu/qba-40k-chinese-thu-gallery-landscape.jpg"); }
[data-image-slot="menu-premium-fri"].has-default-image { background-image: url("assets/menu/qba-40k-chinese-fri-gallery-landscape.jpg"); }
[data-image-slot="menu-premium-sat"].has-default-image { background-image: url("assets/menu/qba-40k-chinese-sat-gallery-landscape.jpg"); }
[data-image-slot="menu-light-mon"].has-default-image { background-image: url("assets/menu-45-50k-sample-01.jpg"); }
[data-image-slot="menu-light-tue"].has-default-image { background-image: url("assets/menu-45-50k-sample-02.jpg"); }
[data-image-slot="menu-light-wed"].has-default-image { background-image: url("assets/menu-45-50k-sample-03.jpg"); }
[data-image-slot="menu-light-thu"].has-default-image { background-image: url("assets/menu-50k-pro-01.jpg"); }
[data-image-slot="menu-light-fri"].has-default-image { background-image: url("assets/menu-50k-pro-02.jpg"); }
[data-image-slot="menu-light-sat"].has-default-image { background-image: url("assets/menu-50k-pro-03.jpg"); }

[data-image-slot^="menu-basic-"].has-default-image,
[data-image-slot^="menu-standard-"].has-default-image,
[data-image-slot^="menu-energy-"].has-default-image,
[data-image-slot^="menu-premium-"].has-default-image,
[data-image-slot^="menu-light-"].has-default-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.menu-image-board:has(.menu-photo-stack.has-images),
.image-edit-mode .menu-image-board {
  display: block;
}

.process-photo-frame {
  height: 116px;
  margin-top: 24px;
  border-color: rgba(255, 255, 255, 0.12);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
}

.process-step:has(.process-photo-frame.has-custom-image) h3,
.process-step:has(.process-photo-frame.has-default-image) h3,
.image-edit-mode .process-step h3 {
  margin-top: 18px;
}

.capacity-photo-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) repeat(2, minmax(0, 0.82fr));
  gap: 14px;
  margin-top: 72px;
}

.capacity-collage-photo {
  height: 250px;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(23, 59, 53, 0.12);
}

.capacity-collage-main {
  grid-row: span 2;
  height: auto;
  min-height: 514px;
}

.image-slot-target {
  --image-editor-accent: var(--orange);
}

.image-slot-target.has-frame-layout:not([data-image-mode="background"]):not([data-image-mode="logo"]) {
  width: clamp(72px, var(--frame-width), calc(100vw - 32px)) !important;
  max-width: none !important;
  height: var(--frame-height) !important;
  min-height: var(--frame-height) !important;
  aspect-ratio: auto !important;
  margin-left: var(--frame-margin-left) !important;
  margin-top: var(--frame-margin-top) !important;
}

.menu-photo-frame.has-frame-layout,
.service-photo-frame.has-frame-layout {
  right: auto !important;
  bottom: auto !important;
}

.slot-image-layer {
  position: absolute;
  inset: -10%;
  z-index: 0;
  display: block;
  pointer-events: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform-origin: center;
  transition: transform 0.2s ease, background-position 0.2s ease, background-size 0.2s ease;
}

[data-image-mode="logo"] > .slot-image-layer {
  inset: 0;
  border-radius: inherit;
  background-size: contain;
}

[data-image-fit="contain"] > .slot-image-layer {
  inset: 0;
}

.image-slot-target.has-custom-image > :not(.slot-image-layer):not(.slot-upload-trigger):not(.frame-resize-handles) {
  position: relative;
  z-index: 2;
}

.image-edit-mode .image-slot-target {
  outline: 2px dashed rgba(231, 131, 94, 0.62);
  outline-offset: -7px;
}

.image-edit-mode .image-slot-target.image-drag-over {
  outline-color: var(--lime);
  box-shadow: inset 0 0 0 999px rgba(241, 200, 91, 0.1);
}

.image-edit-mode .image-slot-target.has-custom-image,
.image-edit-mode .image-slot-target.has-default-image { cursor: grab; }
.image-edit-mode .image-slot-target.image-positioning { cursor: grabbing; }
.image-processing .slot-camera { animation: editorSpin 0.8s linear infinite; }

@keyframes editorSpin { to { transform: rotate(360deg); } }

.frame-resize-handles {
  position: absolute;
  inset: 0;
  z-index: 95;
  display: none;
  pointer-events: none;
}

.image-edit-mode .image-slot-target[data-frame-resizable="true"] > .frame-resize-handles {
  display: block;
}

.frame-resize-handle {
  position: absolute;
  z-index: 1;
  width: 18px;
  height: 18px;
  padding: 0;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(23, 59, 53, 0.22);
  cursor: grab;
  opacity: 0.86;
  pointer-events: auto;
  touch-action: none;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.frame-resize-handle::before {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--orange);
  border-radius: inherit;
}

.frame-resize-handle:hover,
.image-slot-target.frame-resizing .frame-resize-handle {
  background: var(--orange);
  opacity: 1;
  transform: scale(1.12);
}

.frame-resize-handle:hover::before,
.image-slot-target.frame-resizing .frame-resize-handle::before {
  background: var(--white);
}

.frame-resize-n { top: 0; left: 50%; transform: translate(-50%, -50%); cursor: ns-resize; }
.frame-resize-s { bottom: 0; left: 50%; transform: translate(-50%, 50%); cursor: ns-resize; }
.frame-resize-e { top: 50%; right: 0; transform: translate(50%, -50%); cursor: ew-resize; }
.frame-resize-w { top: 50%; left: 0; transform: translate(-50%, -50%); cursor: ew-resize; }
.frame-resize-ne { top: 0; right: 0; transform: translate(50%, -50%); cursor: nesw-resize; }
.frame-resize-nw { top: 0; left: 0; transform: translate(-50%, -50%); cursor: nwse-resize; }
.frame-resize-se { right: 0; bottom: 0; transform: translate(50%, 50%); cursor: nwse-resize; }
.frame-resize-sw { bottom: 0; left: 0; transform: translate(-50%, 50%); cursor: nesw-resize; }

.frame-resize-handle:hover.frame-resize-n,
.image-slot-target.frame-resizing .frame-resize-n { transform: translate(-50%, -50%) scale(1.12); }
.frame-resize-handle:hover.frame-resize-s,
.image-slot-target.frame-resizing .frame-resize-s { transform: translate(-50%, 50%) scale(1.12); }
.frame-resize-handle:hover.frame-resize-e,
.image-slot-target.frame-resizing .frame-resize-e { transform: translate(50%, -50%) scale(1.12); }
.frame-resize-handle:hover.frame-resize-w,
.image-slot-target.frame-resizing .frame-resize-w { transform: translate(-50%, -50%) scale(1.12); }
.frame-resize-handle:hover.frame-resize-ne,
.image-slot-target.frame-resizing .frame-resize-ne { transform: translate(50%, -50%) scale(1.12); }
.frame-resize-handle:hover.frame-resize-nw,
.image-slot-target.frame-resizing .frame-resize-nw { transform: translate(-50%, -50%) scale(1.12); }
.frame-resize-handle:hover.frame-resize-se,
.image-slot-target.frame-resizing .frame-resize-se { transform: translate(50%, 50%) scale(1.12); }
.frame-resize-handle:hover.frame-resize-sw,
.image-slot-target.frame-resizing .frame-resize-sw { transform: translate(-50%, 50%) scale(1.12); }

.image-slot-target.frame-resizing {
  outline-color: var(--orange);
  box-shadow: 0 20px 48px rgba(231, 131, 94, 0.18);
}

.slot-upload-trigger {
  position: absolute;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(23, 59, 53, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(18, 45, 39, 0.2);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
  backdrop-filter: blur(10px);
  transition: transform 0.25s var(--ease), background 0.25s ease;
  width: auto !important;
  margin: 0 !important;
}

.image-edit-mode .slot-upload-trigger { display: inline-flex; }
.slot-upload-trigger:hover { transform: translateY(-2px); background: var(--orange); }
.slot-upload-trigger .slot-camera { font-size: 14px; }

[data-image-mode="background"] > .slot-upload-trigger {
  top: 94px;
  right: max(18px, calc((100vw - 1240px) / 2));
}

.about[data-image-mode="background"] > .slot-upload-trigger,
.process[data-image-mode="background"] > .slot-upload-trigger,
.contact[data-image-mode="background"] > .slot-upload-trigger {
  top: 24px;
}

.service-card-featured[data-image-mode="background"] > .slot-upload-trigger {
  top: 22px;
  right: 22px;
}

.editable-frame > .slot-upload-trigger {
  inset: 50% auto auto 50%;
  max-width: calc(100% - 22px);
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.editable-frame > .slot-upload-trigger:hover {
  transform: translate(-50%, calc(-50% - 2px));
}

[data-image-mode="logo"] {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

[data-image-mode="logo"].has-custom-image {
  color: transparent;
}

[data-image-mode="logo"] > .slot-upload-trigger {
  inset: -6px;
  min-width: 56px;
  min-height: 56px;
  padding: 0;
  border-radius: 50%;
}

[data-image-mode="logo"] > .slot-upload-trigger .slot-label { display: none; }

.site-editor-dock {
  position: fixed;
  left: 20px;
  bottom: 24px;
  z-index: 160;
  display: flex;
  align-items: center;
  gap: 8px;
}

.draft-editor-toggle,
.image-editor-toggle,
.content-editor-toggle {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 16px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(23, 59, 53, 0.24);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease;
}

.draft-editor-toggle {
  color: var(--ink);
  background: var(--lime);
  border-color: rgba(23, 59, 53, 0.14);
}

.draft-editor-toggle:hover,
.image-editor-toggle:hover,
.content-editor-toggle:hover { transform: translateY(-3px); }
.draft-editor-toggle.active,
.image-editor-toggle.active,
.content-editor-toggle.active { color: var(--ink); background: var(--lime); }
.draft-editor-toggle.active { box-shadow: 0 0 0 4px rgba(184, 229, 159, 0.28), 0 16px 44px rgba(23, 59, 53, 0.24); }
.editor-pencil,
.editor-camera { font-size: 15px; }
.editor-text-icon { font-family: "Space Grotesk", sans-serif; font-size: 12px; font-weight: 800; }

.draft-editor-popover {
  position: absolute;
  left: 0;
  bottom: calc(100% + 12px);
  width: min(300px, calc(100vw - 28px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 14px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid rgba(23, 59, 53, 0.12);
  border-radius: 20px;
  box-shadow: 0 22px 64px rgba(23, 59, 53, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s var(--ease);
  backdrop-filter: blur(18px);
}

.draft-editor-popover.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.draft-editor-popover strong,
.draft-editor-popover span {
  grid-column: 1 / -1;
}

.draft-editor-popover strong {
  color: var(--green);
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
}

.draft-editor-popover span {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.draft-editor-popover button {
  min-height: 38px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
}

.draft-editor-popover button:hover { background: var(--green); }

.content-editor-bar {
  position: fixed;
  top: 86px;
  left: 50%;
  z-index: 165;
  width: min(760px, calc(100vw - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 16px;
  color: var(--white);
  background: rgba(23, 59, 53, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(23, 59, 53, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s var(--ease);
  backdrop-filter: blur(16px);
}

.content-editor-bar.open { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.content-editor-bar > span { display: flex; flex-direction: column; gap: 2px; }
.content-editor-bar b { color: var(--cyan); font-size: 10px; }
.content-editor-bar small { color: rgba(255, 255, 255, 0.62); font-size: 8px; }
.content-editor-bar > div { display: flex; gap: 6px; }
.content-editor-bar button {
  padding: 8px 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  cursor: pointer;
  font-size: 8px;
  font-weight: 750;
}
.content-editor-bar button:hover:not(:disabled) { border-color: var(--cyan); }
.content-editor-bar button:disabled { opacity: 0.35; cursor: not-allowed; }
.content-editor-bar button.primary { color: var(--ink); background: var(--cyan); border-color: transparent; }

.content-edit-mode [data-content-editable] {
  position: relative;
  min-width: 1ch;
  outline: 1px dashed rgba(49, 122, 88, 0.34);
  outline-offset: 5px;
  border-radius: 4px;
  cursor: text;
  transition: outline-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.content-edit-mode [data-content-editable]:hover {
  outline-color: var(--cyan-dark);
  background: rgba(184, 229, 159, 0.12);
}

.content-edit-mode [data-content-editable].content-edit-selected,
.content-edit-mode [data-content-editable]:focus {
  z-index: 12;
  outline: 2px solid var(--cyan-dark);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 8px 28px rgba(23, 59, 53, 0.16);
}

.content-edit-mode .section-dark [data-content-editable].content-edit-selected,
.content-edit-mode .section-dark [data-content-editable]:focus,
.content-edit-mode .hero [data-content-editable].content-edit-selected,
.content-edit-mode .hero [data-content-editable]:focus {
  color: var(--ink);
}

.content-edit-mode .partner-marquee .marquee-track { animation-play-state: paused; }
.content-edit-mode [data-content-editable][contenteditable="true"] { -webkit-user-select: text; user-select: text; }

.image-manager {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 170;
  width: min(430px, 94vw);
  display: flex;
  flex-direction: column;
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.98);
  border-left: 1px solid var(--line);
  box-shadow: -28px 0 80px rgba(23, 59, 53, 0.2);
  backdrop-filter: blur(22px);
  transform: translateX(105%);
  transition: transform 0.45s var(--ease);
}

.image-manager.open { transform: translateX(0); }

.image-manager-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.image-manager-head > div { display: flex; flex-direction: column; }
.image-manager-head small { color: var(--cyan-dark); font-size: 7px; font-weight: 800; letter-spacing: 0.16em; }
.image-manager-head strong { margin-top: 4px; font-family: "Space Grotesk", sans-serif; font-size: 22px; }

.image-manager-head button {
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
}

.image-manager-help { margin: 14px 0; color: var(--muted); font-size: 10px; }

.image-manager-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding: 2px 4px 18px 0;
}

.image-manager-item {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 12px;
  padding: 11px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.image-manager-item.is-active {
  border-color: var(--orange);
  box-shadow: 0 14px 34px rgba(231, 131, 94, 0.18);
  transform: translateY(-1px);
}

.manager-thumb {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--muted);
  background: #ebe8df;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  font-size: 8px;
  text-align: center;
}

.manager-copy { min-width: 0; }
.manager-copy strong { display: block; font-size: 10px; line-height: 1.35; }
.manager-status { display: block; margin-top: 3px; color: var(--muted); font-size: 7px; }
.manager-status.saved { color: var(--cyan-dark); }

.manager-buttons { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.manager-buttons button,
.image-manager-actions button {
  padding: 6px 8px;
  color: var(--ink);
  background: #f3efe5;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-size: 7px;
  font-weight: 700;
}

.manager-buttons button:hover,
.image-manager-actions button:hover { border-color: var(--cyan-dark); }
.manager-buttons .danger,
.image-manager-actions .danger { color: #a4382f; }

.manager-settings {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.manager-settings label { display: flex; flex-direction: column; gap: 3px; color: var(--muted); font-size: 7px; }
.manager-settings label span { color: rgba(104, 111, 96, 0.78); font-size: 7px; line-height: 1.35; }
.manager-settings select,
.manager-settings input[type="range"] { width: 100%; accent-color: var(--cyan-dark); }
.manager-settings select { padding: 5px; border: 1px solid var(--line); border-radius: 7px; background: var(--white); font-size: 8px; }

.image-manager-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.image-manager-actions .danger { grid-column: 1 / -1; }

.image-editor-toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 190;
  max-width: min(430px, calc(100vw - 32px));
  padding: 11px 16px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 16px 44px rgba(23, 59, 53, 0.26);
  opacity: 0;
  transform: translate(-50%, 18px);
  pointer-events: none;
  font-size: 9px;
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
}

.image-editor-toast.show { opacity: 1; transform: translate(-50%, 0); }
.image-editor-toast.error { background: #9c332c; }

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

.js.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.js.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (max-width: 1100px) {
  :root { --container: min(100% - 40px, 960px); }
  .desktop-nav { gap: 20px; }
  .desktop-nav a { font-size: 11px; }
  .desktop-language-switcher button small { display: none; }
  .desktop-language-switcher button { min-width: 30px; width: 30px; padding: 0; }
  .hero-panel { width: 310px; }
  .about-commitment-panel { width: 100%; max-width: 520px; }
  .hero h1 { max-width: 620px; }
  .about-layout, .section-heading-row { gap: 46px; }
  .service-showcase { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .service-card-featured { grid-column: 1 / -1; grid-row: auto; min-height: 540px; }
  .menu-board,
  .menu-board.has-representative-image { grid-template-columns: 1fr; }
  .menu-dishes { grid-template-columns: repeat(3, 1fr); }
  .menu-image-section { grid-template-columns: 1fr; }
  .capacity-layout { grid-template-columns: 1fr; }
  .origin-story { grid-template-columns: 1fr 1fr; }
  .origin-note, .origin-story article { min-height: 174px; }
}

@media (max-width: 1024px) {
  :root { --container: calc(100vw - 32px); }
  .site-header { height: 72px; padding: 0 18px; }
  .desktop-nav, .header-cta, .desktop-language-switcher { display: none; }
  .menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 7px;
    padding: 0;
    color: currentColor;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 50%;
    opacity: 0.8;
  }
  .menu-toggle span { width: 17px; height: 1px; background: currentColor; transition: transform 0.3s ease; }
  .menu-toggle.active span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.active span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 95;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    color: var(--white);
    background: rgba(23, 59, 53, 0.97);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .mobile-menu.open { opacity: 1; visibility: visible; }
  .mobile-menu a { font-family: "Space Grotesk", sans-serif; font-size: 30px; font-weight: 700; }
  .mobile-language-switcher { display: flex; margin-top: 18px; background: rgba(255, 255, 255, 0.08); }
  .mobile-language-switcher button { min-width: 42px; height: 42px; }
  .hero { min-height: 820px; height: auto; padding: 130px 0 85px; align-items: start; }
  .hero::before { background: linear-gradient(90deg, rgba(18, 45, 39, 0.97), rgba(18, 45, 39, 0.5)), linear-gradient(0deg, var(--ink), transparent 55%); }
  .hero-backdrop { background-position: 62% center; opacity: 1; }
  .hero-kitchen-img { right: 0; width: min(76vw, 640px); }
  .hero-frame-truck::before { opacity: 0.42; }
  .hero-truck-img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero-smoke-1 { left: 43%; bottom: 15%; }
  .hero-smoke-2 { left: 55%; bottom: 28%; }
  .hero-smoke-3 { left: 34%; bottom: 24%; }
  .hero-content { padding-top: 40px; }
  .hero-brand-card { width: 210px; }
  .hero h1 { font-size: clamp(52px, 11vw, 82px); }
  .hero-lead { max-width: 530px; }
  .hero-panel { position: relative; right: auto; bottom: auto; z-index: 4; width: var(--container); margin: 55px auto 0; }
  .about-commitment-panel { width: 100%; max-width: 520px; margin: 36px 0 0; }
  .scroll-cue { display: none; }
  .intro-strip { grid-template-columns: 1fr 1fr; }
  .intro-strip div { border-bottom: 1px solid rgba(255,255,255,.16); }
  .section { padding: 90px 0; }
  .about-layout, .section-heading-row, .contact-layout { grid-template-columns: 1fr; }
  .company-profile-copy { padding: 30px; }
  .section-heading-row { gap: 26px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 235px; }
  .value-photo-frame { max-width: 520px; margin-inline: auto; }
  .card-icon { margin-bottom: 28px; }
  .service-showcase { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .service-card-featured { grid-column: 1 / -1; grid-row: auto; min-height: 540px; }
  .menu-week { grid-template-columns: 1fr; align-items: stretch; gap: 16px; }
  .menu-board { min-height: 0; }
  .menu-week-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu-business-row { grid-template-columns: 1fr; }
  .menu-business-actions { justify-content: flex-start; }
  .menu-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu-code { min-height: 120px; }
  .menu-code strong { writing-mode: initial; transform: none; }
  .nutrition-orb { width: 190px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .capacity-stats { grid-template-columns: repeat(2, 1fr); }
  .capacity-photo-collage { grid-template-columns: 1fr 1fr; }
  .capacity-collage-main { grid-column: 1 / -1; min-height: 420px; }
  .coverage-panel { grid-template-columns: 1fr; }
  .coverage-copy { padding: 38px 26px; }
  .industry-list { flex-wrap: wrap; }
  .industry-list > span { width: 100%; }
  .contact-layout { gap: 48px; }
  .menu-photo-stack { min-height: 570px; }
  [data-image-mode="background"] > .slot-upload-trigger { right: 18px; }
}

@media (max-width: 580px) {
  .brand-copy strong { font-size: 13px; }
  .brand-mark { width: 42px; height: 42px; }
  .section { padding: 74px 0; }
  .hero {
    min-height: 820px;
    height: calc(100svh - 48px);
    max-height: none;
    padding: 92px 0 38px;
  }
  .hero-kitchen-fill { opacity: 0.38; }
  .hero-kitchen-img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 54% center;
  }
  .hero-truck-img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% center;
  }
  .hero-smoke {
    width: 68vw;
    height: 38vh;
    filter: blur(15px);
  }
  .hero-smoke-1 { left: 23%; bottom: 18%; }
  .hero-smoke-2 { left: 36%; bottom: 32%; }
  .hero-smoke-3 { left: 16%; bottom: 28%; }
  .hero-content { padding-top: 45px; }
  .hero-brand-card { width: 176px; margin-bottom: 18px; padding: 8px 10px; }
  .hero h1 { margin-top: 20px; font-size: clamp(45px, 15.2vw, 68px); }
  .hero-lead { font-size: 14px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-panel { margin-top: 42px; padding: 18px; }
  .about-commitment-panel { width: 100%; margin: 32px 0 0; }
  .meal-preview { grid-template-columns: 80px 1fr; }
  .meal-ring { width: 78px; height: 78px; }
  .meal-ring::before { width: 63px; height: 63px; }
  .intro-strip { grid-template-columns: 1fr; }
  .intro-strip div { min-height: 66px; }
  .section-title { font-size: clamp(38px, 12vw, 54px); }
  .about-layout { gap: 24px; }
  .company-profile-card { grid-template-columns: 1fr; margin-top: 34px; border-radius: 24px; }
  .company-profile-card .profile-cover-frame { min-height: 280px; }
  .company-profile-copy { padding: 28px 20px 24px; }
  .profile-pdf-actions { width: 100%; }
  .profile-pdf-button,
  .profile-pdf-upload { width: 100%; justify-content: center; }
  .origin-story { grid-template-columns: 1fr; margin-top: 44px; }
  .origin-note, .origin-story article { min-height: 156px; }
  .value-grid { margin-top: 50px; }
  .service-showcase { grid-template-columns: 1fr; }
  .service-card-featured { grid-column: auto; min-height: 560px; }
  .industrial-visual::before { right: -25px; }
  .industrial-visual::after { right: 15px; }
  .tray { right: 30px; }
  .menu-tabs { width: 100%; overflow-x: auto; }
  .menu-tab { flex: 0 0 auto; }
  .menu-panel { margin-top: 32px; gap: 16px; }
  .menu-week { gap: 12px; }
  .menu-day-carousel { grid-template-columns: 38px minmax(0, 1fr) 38px; border-radius: 18px; }
  .menu-days { grid-template-columns: repeat(6, minmax(68px, 1fr)); }
  .menu-board { min-height: 0; border-radius: 24px; }
  .menu-week-gallery {
    padding: 14px;
    border-radius: 24px;
  }
  .menu-week-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .menu-week-gallery-card {
    padding: 8px;
    border-radius: 16px;
  }
  .menu-week-gallery-card img {
    border-radius: 12px;
  }
  .menu-week-gallery-card strong {
    font-size: 15px;
  }
  .menu-day-representative {
    min-height: 0;
    padding: 10px;
  }
  .menu-day-representative figcaption {
    max-width: 100%;
    padding: 10px 12px;
  }
  .menu-day-representative-photo {
    width: min(100%, 330px);
  }
  .menu-dishes { grid-template-columns: 1fr; padding: 8px; }
  .menu-dishes > div { min-height: 112px; }
  .menu-image-copy { padding: 20px; border-radius: 22px; }
  .menu-image-board { min-height: 520px; border-radius: 24px; }
  .menu-photo-stack { min-height: 500px; }
  .menu-price-overlay { right: 22px; bottom: 22px; left: 22px; min-width: 0; padding: 16px 18px; }
  .menu-price-overlay strong { font-size: 30px; }
  .menu-slide-arrow { top: 43%; width: 42px; height: 42px; }
  .menu-slide-prev { left: 18px; }
  .menu-slide-next { right: 18px; }
  .menu-business-actions { flex-direction: column; }
  .menu-business-actions .button { width: 100%; }
  .menu-portion-strip { align-items: flex-start; }
  .menu-portion-strip > span { width: 100%; }
  .menu-gallery { padding: 18px 14px; border-radius: 24px; }
  .menu-gallery-grid { grid-template-columns: 1fr; }
  .menu-gallery .menu-gallery-photo { height: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .capacity-stats { grid-template-columns: 1fr; }
  .capacity-photo-collage { grid-template-columns: 1fr; gap: 10px; margin-top: 44px; }
  .capacity-collage-main,
  .capacity-collage-photo { min-height: 0; height: 260px; border-radius: 22px; }
  .stat-card { min-height: 230px; }
  .coverage-panel { padding: 8px; }
  .vn-map-wrap { min-height: 0; }
  .vn-map { inset: 12px; width: calc(100% - 24px); height: calc(100% - 24px); }
  .province-label { padding: 6px 8px; }
  .label-dongnai { top: 66%; right: 1%; }
  .label-tiengiang { top: 78%; left: 1%; }
  .label-brvt { top: 83%; right: 1%; }
  .partner-logo { width: 270px; min-height: 154px; }
  .partner-marquee-toolbar { align-items: flex-end; margin-top: 44px; }
  .partner-marquee-toolbar span { max-width: none; line-height: 1.5; }
  .partner-marquee-toolbar button { display: none; }
  .partner-marquee { overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-inline: contain; }
  .partner-marquee::-webkit-scrollbar { height: 5px; }
  .partner-marquee::-webkit-scrollbar-thumb { background: rgba(49, 122, 88, 0.28); border-radius: 999px; }
  .partner-marquee .marquee-track { animation: none; }
  .partner-logo { scroll-snap-align: start; }
  .partner-logo.partner-duplicate { display: none; }
  .industry-list div { flex: 1 0 42%; }
  .contact-form { padding: 26px 20px; }
  .contact-form input:not([type="checkbox"]),
  .contact-form textarea,
  .contact-form select { font-size: 16px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hotline-modal { align-items: end; padding: 10px; }
  .hotline-dialog { padding: 22px 18px; border-radius: 24px; }
  .hotline-person { padding: 15px 14px; }
  .hotline-person b { font-size: 16px; }
  .hotline-person em { font-size: 9px; }
  .site-footer { grid-template-columns: 1fr; padding-inline: 20px; }
  .footer-links { flex-wrap: wrap; }
  .footer-meta { gap: 20px; }
  .floating-actions { right: 12px; bottom: 16px; }
  .floating-actions a { width: 42px; height: 42px; }
  .site-editor-dock { left: 12px; bottom: 16px; }
  .draft-editor-toggle,
  .image-editor-toggle,
  .content-editor-toggle { width: 46px; padding: 0; justify-content: center; }
  .draft-editor-popover { width: min(300px, calc(100vw - 24px)); }
  .editor-toggle-label { display: none; }
  .content-editor-bar { top: 78px; align-items: stretch; flex-direction: column; gap: 8px; padding: 12px; }
  .content-editor-bar > div { display: grid; grid-template-columns: 1fr 1fr 0.72fr; }
  .content-editor-bar button { min-height: 36px; }
  .image-manager { width: 100vw; padding: 18px 16px; }
  .image-manager-item { grid-template-columns: 54px 1fr; }
  .manager-thumb { width: 54px; height: 54px; }
  .value-photo-frame { height: auto; max-height: none; aspect-ratio: 4 / 5; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .map-island-chain { transform: none; }
}

/* Premium visual refinement layer: visual-only polish, no content or layout logic changes. */
:root {
  --ink: #123d34;
  --ink-2: #1b5045;
  --ink-3: #2b6658;
  --paper: #f7f4eb;
  --white: #fffdf7;
  --muted: #5f6e66;
  --line: rgba(18, 61, 52, 0.13);
  --cyan: #a8d889;
  --cyan-dark: #287252;
  --lime: #f4cb5c;
  --orange: #d97756;
  --radius: 26px;
  --shadow-soft: 0 24px 70px rgba(18, 61, 52, 0.1);
  --shadow-card: 0 18px 48px rgba(18, 61, 52, 0.08);
}

html {
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 0%, rgba(168, 216, 137, 0.12), transparent 28%),
    var(--paper);
  font-size: 16.5px;
  line-height: 1.72;
}

.brand-copy strong,
.hero h1,
.section-title,
.company-profile-copy h3,
.origin-story article strong,
.service-content h3,
.menu-week-copy strong,
.menu-code strong,
.menu-week-gallery-copy strong,
.menu-gallery-head h3,
.process-step h3,
.coverage-copy h3,
.contact-info strong,
.hotline-head h2 {
  text-wrap: balance;
}

.about-copy p,
.section-summary,
.capacity-note,
.company-profile-copy p,
.value-card p,
.service-content p,
.menu-image-copy p,
.process-step p,
.coverage-copy > p,
.contact-copy > p,
.footer-privacy,
.hotline-dialog > p {
  line-height: 1.75;
}

.site-header.scrolled {
  background: rgba(255, 253, 247, 0.92);
  border-color: rgba(18, 61, 52, 0.1);
  box-shadow: 0 18px 50px rgba(18, 61, 52, 0.09);
}

.brand-copy strong {
  font-size: 17px;
  letter-spacing: 0.028em;
}

.brand-copy small {
  font-size: 8.5px;
  letter-spacing: 0.24em;
  opacity: 0.64;
}

.desktop-nav a {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.language-switcher button small {
  font-size: 7.5px;
  letter-spacing: 0.04em;
}

.header-cta,
.button {
  min-height: 54px;
  font-size: 13.5px;
  letter-spacing: -0.01em;
}

.section {
  padding: clamp(106px, 9vw, 132px) 0;
}

.section-tinted {
  background:
    radial-gradient(circle at 8% 10%, rgba(168, 216, 137, 0.18), transparent 25%),
    radial-gradient(circle at 92% 82%, rgba(40, 114, 82, 0.1), transparent 28%),
    linear-gradient(180deg, #f7f6ef 0%, #eff5e8 100%);
}

.about {
  background:
    radial-gradient(circle at 92% 8%, rgba(168, 216, 137, 0.18), transparent 25%),
    radial-gradient(circle at 5% 72%, rgba(244, 203, 92, 0.16), transparent 28%),
    linear-gradient(180deg, #fffdf7 0%, #f7f4eb 100%);
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(14, 42, 36, 0.99) 0%, rgba(14, 42, 36, 0.88) 34%, rgba(14, 42, 36, 0.22) 67%, rgba(14, 42, 36, 0.1) 100%),
    linear-gradient(0deg, rgba(14, 42, 36, 0.78) 0%, transparent 44%);
}

.hero h1 {
  max-width: 790px;
  line-height: 0.96;
  letter-spacing: -0.058em;
}

.hero h1 em {
  -webkit-text-stroke-color: rgba(255, 253, 247, 0.76);
}

.hero-lead {
  max-width: 660px;
  color: rgba(255, 253, 247, 0.78);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.75;
}

.hero-proof p {
  color: rgba(255, 253, 247, 0.66);
  font-size: 12px;
}

.eyebrow,
.section-kicker {
  font-size: 11.5px;
  line-height: 1.35;
  letter-spacing: 0.145em;
}

.section-title {
  line-height: 1.06;
  letter-spacing: -0.048em;
}

.about-copy p,
.section-summary,
.capacity-note {
  color: #65746c;
  font-size: 15px;
}

.about-copy .lead-copy {
  color: #173f36;
  font-size: 18px;
  line-height: 1.75;
}

.about .about-copy p {
  color: #52645b;
  text-shadow: none;
}

.about .about-copy .lead-copy {
  color: #173f36;
  text-shadow: none;
}

.about .about-copy p strong,
.about .about-copy .lead-copy strong {
  color: #173f36;
  font-weight: 800;
}

.about .about-copy .text-link {
  color: #173f36;
  border-bottom-color: rgba(23, 63, 54, 0.48);
  text-shadow: none;
}

.about .about-copy .text-link span {
  color: #2f7655;
}

.company-profile-card,
.value-card,
.service-card,
.menu-board,
.menu-week-gallery,
.menu-gallery,
.contact-form,
.coverage-panel,
.hotline-dialog {
  box-shadow: var(--shadow-soft);
}

.company-profile-copy p {
  font-size: 13.5px;
}

.company-profile-copy > span,
.value-card > span,
.service-tag,
.stat-label,
.menu-week-copy span,
.menu-week-copy small,
.menu-price-overlay span,
.menu-price-overlay small,
.menu-week-gallery-copy span,
.menu-image-copy span,
.menu-gallery-head span,
.contact-info small,
.contact-form label > span,
.map-caption span,
.partner-logo small,
.footer-brand p,
.footer-meta,
.hotline-head small,
.hotline-person small,
.toast span {
  letter-spacing: 0.115em;
}

.value-card {
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.98), #fbfbf5);
  border-color: rgba(18, 61, 52, 0.11);
}

.value-card h3 {
  font-size: 20px;
  line-height: 1.25;
}

.value-card p {
  color: #62726a;
  font-size: 13px;
}

.service-card {
  border-color: rgba(18, 61, 52, 0.11);
  box-shadow: var(--shadow-card);
}

.service-card-featured {
  background: linear-gradient(145deg, #2f815d, #1a5748 60%, #123d34);
}

.service-visual {
  opacity: 0.46;
}

.service-content h3 {
  font-size: 25px;
  line-height: 1.18;
  letter-spacing: -0.028em;
}

.service-card-featured .service-content h3 {
  line-height: 1.06;
}

.service-content p {
  color: #64736b;
  font-size: 13.5px;
}

.service-card-featured .service-content p,
.service-content li {
  color: rgba(255, 253, 247, 0.74);
}

.service-content li {
  padding: 7px 11px;
  font-size: 10px;
}

.service-content > a {
  font-size: 12px;
}

.menu-tabs {
  background: rgba(18, 61, 52, 0.065);
  border: 1px solid rgba(18, 61, 52, 0.08);
}

.menu-tab {
  min-height: 38px;
  font-size: 11px;
  font-weight: 800;
}

.menu-week-copy strong {
  font-size: 20px;
  line-height: 1.2;
}

.menu-week-copy span,
.menu-week-copy small {
  font-size: 9px;
}

.menu-day {
  min-height: 66px;
}

.menu-day small {
  font-size: 8.5px;
}

.menu-day span {
  font-size: 11px;
  line-height: 1.2;
}

.menu-board,
.menu-day-carousel,
.menu-image-board,
.menu-week-gallery,
.menu-gallery {
  border-color: rgba(18, 61, 52, 0.12);
}

.menu-day-representative figcaption {
  background: rgba(8, 31, 26, 0.78);
}

.menu-day-representative span {
  font-size: 9px;
}

.menu-day-representative strong {
  line-height: 1.1;
}

.menu-week-gallery-copy small {
  font-size: 13.5px;
  line-height: 1.45;
}

.menu-week-gallery-card .menu-week-gallery-day {
  font-size: 10.5px;
}

.menu-week-gallery-card strong {
  font-size: 18.5px;
  line-height: 1.12;
}

.menu-dishes > div {
  border-color: rgba(18, 61, 52, 0.1);
  box-shadow: 0 8px 18px rgba(18, 61, 52, 0.04);
}

.menu-dishes strong {
  color: #173f36;
  font-size: 12.5px;
  line-height: 1.42;
}

.menu-dishes small {
  font-size: 9px;
}

.menu-image-copy strong {
  line-height: 1.12;
}

.menu-image-copy p {
  font-size: 11.5px;
}

.menu-portion-strip > span {
  font-size: 8.5px;
}

.menu-portion-strip b {
  font-size: 10px;
}

.menu-gallery-card p {
  color: #63736b;
  font-size: 10.5px;
  line-height: 1.65;
}

.menu-gallery-card button,
.menu-gallery-photo::after {
  font-size: 9.5px;
}

.process-line,
.process-grid {
  border-color: rgba(255, 253, 247, 0.13);
}

.process-step {
  padding: 30px;
}

.process-step > span {
  font-size: 11px;
}

.process-step h3 {
  font-size: 21px;
  line-height: 1.25;
}

.process-step p {
  color: rgba(255, 253, 247, 0.64);
  font-size: 12.5px;
}

.stat-card p,
.coverage-copy > p,
.location-tags span,
.placeholder-alert span,
.partner-marquee-toolbar,
.industry-list > span,
.industry-list div {
  font-size: 10.5px;
}

.stat-card em {
  font-size: 8px;
}

.province-label small {
  font-size: 7.5px;
}

.province-label strong,
.map-caption strong,
.partner-logo > span {
  font-size: 10.5px;
}

.contact-copy > p {
  color: rgba(255, 253, 247, 0.66);
  font-size: 14.5px;
}

.contact-info small {
  font-size: 9px;
}

.contact-info strong {
  font-size: 19px;
  line-height: 1.25;
}

.contact-form label > span {
  color: #607068;
  font-size: 10.5px;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea,
.contact-form select {
  padding: 14px 0;
  font-size: 14.5px;
  line-height: 1.45;
}

.contact-form .consent-label > span,
.form-note {
  font-size: 9.5px;
}

.footer-brand p,
.footer-privacy,
.footer-meta {
  font-size: 10px;
}

.footer-links {
  font-size: 11px;
}

.hotline-dialog > p,
.hotline-person strong,
.toast strong {
  font-size: 12.5px;
}

.hotline-person b {
  font-size: 19px;
}

.image-manager-help {
  font-size: 11.5px;
  line-height: 1.6;
}

.language-switcher button small,
.panel-metrics span,
.nutrition-orb span,
.nutrition-orb small,
.province-label small,
.map-caption span,
.partner-logo small,
.hotline-person small,
.content-editor-bar small,
.image-manager-head small,
.manager-status,
.manager-settings label,
.manager-settings label span {
  font-size: 8.5px;
}

.manager-buttons button,
.image-manager-actions button {
  font-size: 10px;
  line-height: 1.25;
}

@media (max-width: 1100px) {
  .desktop-nav a {
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  body {
    font-size: 16px;
  }

  .mobile-menu a {
    font-size: clamp(28px, 7vw, 44px);
    line-height: 1.12;
  }

  .section {
    padding: 88px 0;
  }

  .hero h1 {
    line-height: 0.98;
  }

  .hero-lead {
    font-size: 16px;
  }
}

@media (max-width: 580px) {
  body {
    font-size: 15.5px;
    line-height: 1.7;
  }

  .brand-copy strong {
    font-size: 13.5px;
    letter-spacing: 0.018em;
  }

  .brand-copy small {
    font-size: 8px;
    letter-spacing: 0.18em;
  }

  .section {
    padding: 74px 0;
  }

  .section-title {
    font-size: clamp(36px, 11.4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.045em;
  }

  .section-kicker,
  .eyebrow {
    gap: 10px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    font-size: clamp(42px, 14.2vw, 64px);
    letter-spacing: -0.05em;
  }

  .hero-lead {
    color: rgba(255, 253, 247, 0.8);
    font-size: 15px;
    line-height: 1.7;
  }

  .button {
    min-height: 52px;
  }

  .about-copy p,
  .section-summary,
  .capacity-note,
  .service-content p,
  .contact-copy > p {
    font-size: 14px;
  }

  .about-copy .lead-copy {
    font-size: 16.5px;
  }

  .value-card h3,
  .service-content h3,
  .process-step h3 {
    font-size: 20px;
  }

  .value-card p,
  .process-step p,
  .menu-image-copy p {
    font-size: 12.5px;
  }

  .menu-tab {
    font-size: 10.5px;
  }

  .menu-day small {
    font-size: 8px;
  }

  .menu-day span {
    font-size: 10.5px;
  }

  .menu-dishes strong {
    font-size: 12px;
  }

  .menu-week-gallery-card strong {
    font-size: 15.5px;
  }

  .contact-info strong {
    font-size: 17px;
  }

  .site-footer {
    gap: 34px;
  }
}

/* Accessibility and mobile readability refinements. */
.text-link,
.service-content > a,
.language-switcher button,
.menu-tab,
.partner-marquee-toolbar button,
.footer-links a,
.footer-privacy summary,
.qba-sample-menu-details summary {
  min-height: 44px;
  align-items: center;
}

.text-link,
.service-content > a {
  padding-top: 8px;
  padding-bottom: 8px;
}

.intro-strip span {
  font-size: 10px;
}

.intro-strip strong,
.company-profile-meta b,
.origin-story article span {
  font-size: 11px;
}

.origin-story article span {
  line-height: 1.5;
}

.company-profile-copy > span,
.profile-cover-placeholder small {
  font-size: 10px;
}

.service-content li {
  font-size: 11px;
}

.service-content > a,
.text-link,
.footer-links {
  font-size: 12px;
}

.menu-day small {
  font-size: 10px;
}

.menu-day span {
  font-size: 12px;
}

.menu-week-copy span,
.menu-week-copy small,
.partner-logo small,
.form-note {
  font-size: 10.5px;
}

.qba-sample-menu-table,
.qba-sample-menu-table.compact,
.qba-sample-menu-table thead th {
  font-size: 12px;
}

.footer-brand p,
.footer-privacy,
.footer-meta {
  font-size: 10.5px;
}

.brand,
.menu-toggle,
.menu-day-arrow,
.menu-slide-arrow,
.profile-pdf-button,
.contact-info a,
.footer-meta a,
.hotline-close {
  min-width: 44px;
  min-height: 44px;
}

.contact-info a,
.footer-meta a {
  justify-content: center;
}

.footer-meta a {
  display: inline-flex;
  align-items: center;
}

.footer-links a {
  padding-inline: 6px;
}

@media (max-width: 1024px) {
  .menu-toggle,
  .menu-day-arrow,
  .menu-slide-arrow,
  .floating-actions a {
    width: 44px;
    height: 44px;
  }
}

.about .about-copy p,
.about .about-copy .lead-copy {
  color: #303633;
  font-size: 18px;
  line-height: 1.82;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.96),
    0 0 5px rgba(255, 255, 255, 0.86);
}

.about .about-copy .lead-copy {
  font-size: 21px;
}

.about .about-copy p strong,
.about .about-copy .lead-copy strong {
  color: #202724;
  font-weight: 800;
}

.about .about-copy .text-link {
  color: #303633;
  border-bottom-color: rgba(48, 54, 51, 0.62);
  font-size: 14px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

@media (max-width: 700px) {
  .about .about-copy p {
    font-size: 17px;
    line-height: 1.78;
  }

  .about .about-copy .lead-copy {
    font-size: 20px;
  }
}
