:root {
  --green: #0f7f5f;
  --green-deep: #07543f;
  --mint: #e8f4ef;
  --blue: #1f6f96;
  --ink: #111a18;
  --muted: #6a7671;
  --paper: #f7f8f4;
  --warm: #c47a38;
  --gold: #c7a767;
  --tech: #57d2bd;
  --line: rgba(17, 26, 24, 0.14);
  --shadow: 0 24px 70px rgba(7, 84, 63, 0.14);
  --max: 1180px;
}

/* v4 lead-focused full-screen hero */
.design-v3 {
  --max: 1500px;
}

.design-v3 .topbar.light {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.design-v3 .header-tools {
  gap: 10px;
}

.design-v3 .nav-action {
  min-width: 142px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  box-shadow: 0 14px 34px rgba(7, 84, 63, 0.16);
}

.design-v3 .v4-hero {
  min-height: 100svh;
  height: 100svh;
  display: block;
  padding: 0;
  background: #061611;
}

.v4-slides,
.v4-slide,
.v4-slide img,
.v4-slide-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.v4-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

.v4-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.v4-slide img {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.03);
  transition: transform 7.2s ease;
  will-change: transform;
}

.v4-slide.is-active img {
  transform: scale(1.08);
}

.v4-slide-shade {
  background:
    linear-gradient(90deg, rgba(4, 17, 14, 0.82) 0%, rgba(4, 17, 14, 0.56) 38%, rgba(4, 17, 14, 0.13) 72%, rgba(4, 17, 14, 0.34) 100%),
    linear-gradient(0deg, rgba(4, 17, 14, 0.7) 0%, rgba(4, 17, 14, 0) 50%);
}

.v4-slide-copy {
  position: absolute;
  z-index: 4;
  top: 47%;
  left: max(32px, calc((100% - 1500px) / 2));
  width: min(560px, calc(100% - 64px));
  color: #fff;
  transform: translateY(-50%);
}

.v4-slide-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 0 12px;
  border: 1px solid rgba(196, 232, 210, 0.42);
  border-radius: 999px;
  color: #d8f2df;
  background: rgba(7, 84, 63, 0.38);
}

.v4-slide-copy h1,
.design-v3 .a-hero-content h1 {
  margin: 0;
  font-size: clamp(40px, 4.25vw, 68px);
  line-height: 1.08;
  letter-spacing: 0;
}

.v4-slide-copy .hero-lede {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.12vw, 20px);
  line-height: 1.78;
}

.v4-phone-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.v4-phone {
  display: grid;
  min-width: 186px;
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.v4-phone.primary {
  border-color: rgba(216, 242, 223, 0.52);
  background: rgba(15, 127, 95, 0.72);
}

.v4-phone small,
.v4-floating-call span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 850;
}

.v4-phone strong,
.v4-floating-call strong {
  margin-top: 3px;
  font-size: 20px;
  line-height: 1.2;
}

.v4-phone:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.v4-slider-tools {
  position: absolute;
  z-index: 5;
  right: max(32px, calc((100% - 1500px) / 2));
  bottom: 170px;
  display: grid;
  gap: 10px;
  width: min(260px, calc(100% - 64px));
}

.v4-slider-tools button {
  position: relative;
  min-height: 42px;
  padding: 0 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.v4-slider-tools button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.25s ease;
}

.v4-slider-tools button span {
  pointer-events: none;
}

.v4-slider-tools button.is-active,
.v4-slider-tools button:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(7, 84, 63, 0.62);
  transform: translateX(-3px);
}

.v4-slider-tools button.is-active::before {
  transform: scaleY(1);
}

.v4-hero-progress {
  position: absolute;
  z-index: 5;
  left: max(32px, calc((100% - 1500px) / 2));
  right: max(32px, calc((100% - 1500px) / 2));
  bottom: 150px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.v4-hero-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #e9d19a);
  transform-origin: left center;
  animation: v4Progress 6.5s linear forwards;
}

.design-v3 .v4-hero .a-hero-stats {
  left: max(32px, calc((100% - 1500px) / 2));
  right: max(32px, calc((100% - 1500px) / 2));
  bottom: 32px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(5, 31, 24, 0.72);
}

.design-v3 .v4-hero .a-hero-stats div {
  min-height: 92px;
  padding: 19px 22px;
}

.design-v3 .v4-hero .a-hero-stats strong {
  font-size: clamp(28px, 3.2vw, 44px);
}

.a-service-grid article {
  overflow: hidden;
  padding: 0 0 25px;
}

.a-service-grid article > img {
  width: 100%;
  height: 158px;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.a-service-grid article:hover > img {
  transform: scale(1.06);
}

.a-service-grid article > span,
.a-service-grid article > h3,
.a-service-grid article > p {
  display: block;
  margin-left: 25px;
  margin-right: 25px;
}

.a-service-grid article > span {
  margin-top: 22px;
}

.a-service-grid h3 {
  margin-top: 22px;
}

.v4-response-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.v4-response-phones a {
  min-width: 210px;
  justify-content: center;
}

.v4-floating-call {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 24px;
  display: grid;
  gap: 8px;
  width: 226px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(6, 29, 23, 0.84);
  box-shadow: 0 22px 58px rgba(5, 31, 24, 0.24);
  backdrop-filter: blur(16px);
}

.v4-floating-call a {
  display: grid;
  padding: 11px 13px;
  border-radius: 7px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, transform 0.25s ease;
}

.v4-floating-call a:first-child {
  background: linear-gradient(135deg, var(--green-deep), var(--green));
}

.v4-floating-call a:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

@keyframes v4Progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (max-width: 1180px) {
  .v4-slider-tools {
    right: 24px;
    bottom: 156px;
    width: 220px;
  }

  .v4-hero-progress {
    bottom: 136px;
  }
}

@media (max-width: 980px) {
  .design-v3 .v4-hero {
    min-height: 100svh;
    height: auto;
    padding: 0;
  }

  .v4-slides {
    min-height: 100svh;
  }

  .v4-slide {
    min-height: 100svh;
  }

  .v4-slide-copy {
    top: 41%;
    left: 22px;
    width: calc(100% - 44px);
  }

  .v4-slide-copy h1,
  .design-v3 .a-hero-content h1 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .v4-slider-tools {
    left: 22px;
    right: 22px;
    bottom: 190px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: auto;
  }

  .v4-slider-tools button {
    min-height: 38px;
    text-align: center;
  }

  .v4-hero-progress {
    left: 22px;
    right: 22px;
    bottom: 174px;
  }

  .design-v3 .v4-hero .a-hero-stats {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 24px;
    width: auto;
    margin-top: 0;
  }

  .design-v3 .v4-hero .a-hero-stats div {
    min-height: 72px;
    padding: 14px;
  }

  .design-v3 .v4-hero .a-hero-stats strong {
    font-size: 28px;
  }

  .v4-floating-call {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .design-v3 .v4-hero {
    min-height: 100svh;
  }

  .v4-slide-copy {
    top: 38%;
  }

  .v4-slide-copy .hero-lede {
    max-width: 94%;
    font-size: 15px;
    line-height: 1.72;
  }

  .v4-phone-row {
    gap: 8px;
    margin-top: 22px;
  }

  .v4-phone {
    min-width: calc(50% - 4px);
    padding: 10px 11px;
  }

  .v4-phone strong,
  .v4-floating-call strong {
    font-size: 16px;
  }

  .v4-slider-tools {
    bottom: 188px;
    gap: 8px;
  }

  .v4-slider-tools button {
    padding: 0 10px;
    font-size: 12px;
  }

  .v4-hero-progress {
    bottom: 172px;
  }

  .design-v3 .v4-hero .a-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    bottom: 22px;
  }

  .design-v3 .v4-hero .a-hero-stats div,
  .design-v3 .v4-hero .a-hero-stats div:nth-child(3),
  .design-v3 .v4-hero .a-hero-stats div:nth-child(4) {
    border-top: 0;
  }

  .design-v3 .v4-hero .a-hero-stats div:nth-child(odd) {
    border-left: 0;
  }

  .design-v3 .v4-hero .a-hero-stats div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .design-v3 .v4-hero .a-hero-stats span {
    font-size: 12px;
  }

  .v4-floating-call {
    padding: 8px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

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

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.choice-hero {
  min-height: 68vh;
  padding: 30px clamp(20px, 5vw, 72px) 80px;
  background:
    linear-gradient(90deg, rgba(247, 248, 244, 0.96), rgba(247, 248, 244, 0.68)),
    url("images/generated-2026/group-canteen-hero.png") center / cover;
}

.choice-nav,
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: 190px;
  min-width: 150px;
}

.brand-mark img {
  width: 100%;
  height: auto;
}

.brand-mark.dark {
  width: 180px;
}

.choice-meta {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.choice-headline {
  max-width: 780px;
  margin-top: clamp(70px, 11vw, 150px);
}

.choice-headline h1 {
  margin: 0;
  font-size: clamp(54px, 10vw, 118px);
  line-height: 0.95;
  letter-spacing: 0;
}

.choice-headline p:last-child {
  max-width: 620px;
  margin: 28px 0 0;
  color: #34433d;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(var(--max), calc(100% - 40px));
  margin: -58px auto 80px;
}

.choice-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.choice-image {
  position: relative;
  display: block;
  aspect-ratio: 1.42;
  overflow: hidden;
}

.choice-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transition: transform 0.45s ease;
}

.choice-image:hover img {
  transform: scale(1.04);
}

.choice-tag {
  position: absolute;
  z-index: 1;
  left: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
  background: rgba(7, 84, 63, 0.72);
  font-weight: 900;
}

.choice-copy {
  padding: 26px;
}

.choice-copy h2,
.source-note h2 {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
}

.choice-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.choice-copy dl {
  margin: 24px 0 0;
}

.choice-copy dl div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.choice-copy dt {
  color: var(--green);
  font-weight: 800;
}

.choice-copy dd {
  margin: 0;
  color: #2b3833;
}

.source-note {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 90px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.source-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.site-page {
  background: #fff;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  padding: 22px clamp(20px, 4vw, 60px);
  color: #fff;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.topbar.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 40px rgba(17, 26, 24, 0.08);
  backdrop-filter: blur(14px);
}

.topbar.light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(12px);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.6vw, 34px);
  font-size: 14px;
  font-weight: 750;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.topbar.is-scrolled .nav-action,
.nav-action.dark {
  border-color: rgba(17, 26, 24, 0.24);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(17, 26, 24, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.language-switcher span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.language-switcher select {
  min-width: 82px;
  height: 36px;
  padding: 0 28px 0 14px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  outline: none;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(20px, 6vw, 92px) 70px;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
}

.hero-global .hero-media,
.hero-experience .hero-media,
.hero-digital .hero-media {
  object-position: right center;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(0, 24, 18, 0.72), rgba(0, 24, 18, 0.18) 55%, rgba(0, 24, 18, 0.36));
}

.hero-shade.soft {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.55) 48%, rgba(255, 255, 255, 0.08));
}

.hero-shade.deep {
  background: linear-gradient(90deg, rgba(4, 20, 19, 0.84), rgba(4, 20, 19, 0.44) 58%, rgba(4, 20, 19, 0.78));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  color: #fff;
}

.hero-content.dark-text {
  color: var(--ink);
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(54px, 8vw, 124px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.8;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 14px;
}

.button.primary {
  color: #fff;
  background: var(--green);
}

.button.primary.warm {
  background: var(--warm);
}

.button.primary.tech {
  color: #071514;
  background: var(--tech);
}

.button.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.button.line {
  border: 1px solid rgba(17, 26, 24, 0.22);
}

.hero-index {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 54px;
  z-index: 2;
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, 0.82);
  text-align: right;
}

.hero-index.dark {
  color: rgba(17, 26, 24, 0.72);
}

.hero-index span {
  font-size: 12px;
  font-weight: 800;
}

.hero-index strong {
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.9;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 130px) 0;
}

.section-kicker {
  margin-bottom: 20px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.intro-grid h2,
.split-copy h2,
.section-title h2,
.proof-band h2,
.editorial-intro h2,
.image-led-copy h2,
.story-lead h2,
.chef-band h2,
.control-room h2,
.operations-flow h2,
.tech-proof h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro-grid p,
.split-copy p,
.proof-band p,
.editorial-intro p,
.image-led-copy p,
.story-lead p,
.chef-band p,
.control-room p,
.tech-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric-strip div {
  padding: 28px 24px;
  border-left: 1px solid var(--line);
}

.metric-strip div:first-child {
  border-left: 0;
}

.metric-strip strong {
  display: block;
  color: var(--green-deep);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.metric-strip span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
}

.split-showcase {
  display: grid;
  grid-template-columns: 0.84fr 0.62fr 1fr;
  gap: 34px;
  align-items: center;
}

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

.service-list a {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-deep);
  background: #fff;
  font-weight: 850;
}

.split-showcase figure,
.proof-band figure,
.image-led figure,
.chef-band figure,
.control-room figure,
.tech-proof figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.split-showcase figure img,
.proof-band figure img,
.image-led figure img,
.chef-band figure img,
.control-room figure img,
.tech-proof figure img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.split-showcase figcaption {
  padding: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.capability-wall {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100% - var(--max)) / 2));
  padding-right: max(20px, calc((100% - var(--max)) / 2));
  background: var(--mint);
}

.section-title {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
  margin-bottom: 46px;
}

.capability-grid,
.matrix-grid,
.story-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.capability-grid article,
.matrix-grid article,
.story-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(17, 26, 24, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.capability-grid span,
.matrix-grid span,
.story-grid span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.capability-grid h3,
.matrix-grid h3,
.story-grid h3 {
  margin: 34px 0 16px;
  font-size: 24px;
  line-height: 1.25;
}

.capability-grid p,
.matrix-grid p,
.story-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.proof-band,
.chef-band,
.control-room,
.tech-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
}

.theme-experience {
  background: #fffaf4;
}

.editorial-intro {
  max-width: 940px;
  text-align: center;
}

.image-led {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill-row span {
  padding: 10px 14px;
  border: 1px solid rgba(196, 122, 56, 0.28);
  border-radius: 999px;
  color: #7a471e;
  background: rgba(255, 255, 255, 0.65);
  font-weight: 800;
}

.story-grid {
  grid-template-columns: 1.4fr repeat(3, 1fr);
}

.story-grid article {
  background: #fff;
}

.story-lead {
  min-height: 320px;
}

.story-lead h2 {
  font-size: clamp(34px, 4vw, 56px);
  margin: 18px 0 22px;
}

.story-grid article:not(.story-lead) h3 {
  margin-top: 78px;
}

.chef-band {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100% - var(--max)) / 2));
  padding-right: max(20px, calc((100% - var(--max)) / 2));
  background: #f1eadf;
}

.theme-digital {
  background: #071514;
  color: #f5fbf8;
}

.theme-digital .section {
  color: #f5fbf8;
}

.theme-digital .eyebrow {
  color: var(--tech);
}

.theme-digital p {
  color: rgba(245, 251, 248, 0.72);
}

.dashboard-panel {
  position: absolute;
  right: clamp(20px, 6vw, 86px);
  bottom: clamp(34px, 6vw, 86px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(560px, calc(100% - 40px));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 21, 20, 0.54);
  backdrop-filter: blur(14px);
}

.dashboard-panel div {
  padding: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.dashboard-panel div:first-child {
  border-left: 0;
}

.dashboard-panel span {
  display: block;
  color: rgba(245, 251, 248, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.dashboard-panel strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 32px;
}

.control-room {
  padding-top: 120px;
}

.module-matrix {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100% - var(--max)) / 2));
  padding-right: max(20px, calc((100% - var(--max)) / 2));
  background: #0d2926;
}

.module-matrix .section-title {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 36px;
}

.matrix-grid {
  grid-template-columns: repeat(3, 1fr);
}

.matrix-grid article {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.matrix-grid h3,
.matrix-grid p {
  color: #f5fbf8;
}

.operations-flow {
  text-align: center;
}

.flow-line {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 46px;
}

.flow-line div {
  min-height: 150px;
  padding: 20px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.flow-line strong,
.flow-line span {
  display: block;
}

.flow-line strong {
  color: #fff;
  font-size: 24px;
}

.flow-line span {
  margin-top: 18px;
  color: rgba(245, 251, 248, 0.68);
  line-height: 1.6;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px clamp(20px, 5vw, 72px);
  color: #26352f;
  background: #eef4ef;
}

.site-footer img {
  width: 170px;
}

.site-footer p {
  margin: 0;
}

.warm-footer {
  background: #f4eee5;
}

.tech-footer {
  background: #eef4ef;
  border-top: 1px solid rgba(17, 26, 24, 0.12);
}

@media (max-width: 980px) {
  .choice-grid,
  .intro-grid,
  .split-showcase,
  .section-title,
  .proof-band,
  .image-led,
  .chef-band,
  .control-room,
  .tech-proof {
    grid-template-columns: 1fr;
  }

  .choice-grid {
    margin-top: -34px;
  }

  .metric-strip,
  .capability-grid,
  .story-grid,
  .matrix-grid,
  .flow-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .topbar {
    padding: 16px 20px;
  }

  .brand-mark {
    width: 150px;
  }

  .main-nav {
    display: none;
  }

  .header-tools {
    gap: 8px;
  }

  .hero {
    min-height: 86vh;
  }

  .dashboard-panel {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 3;
    margin-top: 34px;
  }
}

@media (max-width: 640px) {
  .choice-hero {
    min-height: 58vh;
  }

  .choice-nav {
    align-items: flex-start;
  }

  .choice-meta {
    display: none;
  }

  .choice-grid,
  .metric-strip,
  .capability-grid,
  .story-grid,
  .matrix-grid,
  .flow-line,
  .dashboard-panel {
    grid-template-columns: 1fr;
  }

  .metric-strip div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .metric-strip div:first-child {
    border-top: 0;
  }

  .nav-action {
    min-height: 34px;
    padding: 0 8px;
    font-size: 11px;
  }

  .selected-a-home .topbar {
    padding: 14px 16px;
  }

  .selected-a-home .brand-mark.dark {
    width: 132px;
    min-width: 132px;
  }

  .language-switcher {
    min-height: 34px;
  }

  .language-switcher select {
    min-width: 64px;
    height: 32px;
    padding: 0 20px 0 10px;
    font-size: 12px;
  }

  .hero {
    min-height: 90vh;
    padding-top: 110px;
  }

  .hero-index {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 260px;
  }

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

.selected-a-home {
  background: #fbfcf8;
}

.selected-a-home .topbar.light {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(17, 26, 24, 0.08);
}

.a-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 138px clamp(20px, 6vw, 90px) 150px;
  background: #081d18;
}

.a-hero-media,
.a-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.a-hero-media {
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: aHeroImageIn 1.9s cubic-bezier(0.2, 0.74, 0.18, 1) both;
  will-change: transform;
}

.a-hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 22, 17, 0.82) 0%, rgba(4, 22, 17, 0.54) 38%, rgba(4, 22, 17, 0.08) 72%),
    linear-gradient(0deg, rgba(4, 22, 17, 0.68) 0%, rgba(4, 22, 17, 0) 48%);
  animation: aHeroShadeIn 1.5s ease both;
}

.a-hero-route {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  opacity: 0.92;
  pointer-events: none;
}

.a-hero-route::before,
.a-hero-route::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 2%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(190, 231, 204, 0.14), rgba(255, 255, 255, 0.72), rgba(190, 231, 204, 0.18), transparent);
  transform-origin: left center;
}

.a-hero-route::before {
  top: 42%;
  transform: rotate(-7deg) scaleX(0);
  animation: aRouteSweep 2.8s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both, aRouteBreathe 5.8s 3s ease-in-out infinite;
}

.a-hero-route::after {
  top: 62%;
  transform: rotate(5deg) scaleX(0);
  animation: aRouteSweepAlt 2.6s 0.85s cubic-bezier(0.22, 1, 0.36, 1) both, aRouteBreatheAlt 6.2s 3.2s ease-in-out infinite;
}

.a-hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  color: #fff;
  animation: aHeroContentIn 1s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.a-hero-content .eyebrow {
  color: #b7e3c8;
}

.a-hero-content h1 {
  margin: 0;
  font-size: clamp(52px, 8.2vw, 118px);
  line-height: 0.96;
  letter-spacing: 0;
}

.a-hero-stats {
  position: absolute;
  z-index: 3;
  left: clamp(20px, 6vw, 90px);
  right: clamp(20px, 6vw, 90px);
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(7, 35, 27, 0.68);
  backdrop-filter: blur(16px);
  animation: aHeroStatsIn 0.95s 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.a-hero-stats div {
  min-height: 104px;
  padding: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.28s ease, transform 0.28s ease;
}

.a-hero-stats div:first-child {
  border-left: 0;
}

.a-hero-stats div:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.a-hero-stats strong,
.a-hero-stats span {
  display: block;
}

.a-hero-stats strong {
  color: #fff;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
}

.a-hero-stats span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.a-intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.a-intro-head h2,
.a-supply-copy h2,
.a-catering-band h2,
.a-safety-title h2,
.a-smart-copy h2,
.a-client-head h2,
.a-contact h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 74px);
  line-height: 1.04;
  letter-spacing: 0;
}

.a-intro > p,
.a-supply-copy p,
.a-catering-band p,
.a-safety-title p,
.a-smart-copy p,
.a-client-head p,
.a-contact p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

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

.a-service-grid article,
.a-process-list article,
.a-safety-grid article,
.a-smart-modules article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.a-service-grid article {
  min-height: 270px;
  padding: 25px;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.a-service-grid span,
.a-process-list span,
.a-safety-grid span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.a-service-grid h3,
.a-process-list h3,
.a-safety-grid h3,
.a-smart-modules h3 {
  margin: 30px 0 14px;
  font-size: 24px;
  line-height: 1.24;
}

.a-service-grid p,
.a-process-list p,
.a-safety-grid p,
.a-smart-modules p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.a-service-grid article:hover,
.a-process-list article:hover,
.a-smart-modules article:hover {
  border-color: rgba(15, 127, 95, 0.34);
  box-shadow: 0 22px 54px rgba(7, 84, 63, 0.12);
  transform: translateY(-6px);
}

.a-supply {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 4.6vw, 62px);
  align-items: center;
  padding-top: 30px;
}

.a-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.a-pill-list span {
  padding: 10px 14px;
  border: 1px solid rgba(15, 127, 95, 0.24);
  border-radius: 999px;
  color: var(--green-deep);
  background: #fff;
  font-weight: 800;
}

.a-large-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dfe9e2;
}

.a-large-photo img {
  width: 100%;
  height: clamp(430px, 52vw, 620px);
  object-fit: cover;
  transform: scale(1.03) translate3d(0, var(--parallax-y, 0px), 0);
  transition: transform 0.14s linear;
  will-change: transform;
}

.a-process-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.a-process-list article {
  min-height: 218px;
  padding: 24px;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.a-catering-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  width: 100%;
  padding: clamp(78px, 9vw, 124px) max(20px, calc((100% - var(--max)) / 2));
  background: #f1f4eb;
}

.a-catering-band figure,
.a-safety-section figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.a-catering-band img,
.a-safety-section img {
  width: 100%;
  height: clamp(380px, 46vw, 560px);
  object-fit: cover;
  transform: scale(1.03) translate3d(0, var(--parallax-y, 0px), 0);
  transition: transform 0.14s linear;
  will-change: transform;
}

.a-safety-section {
  width: 100%;
  padding: clamp(84px, 10vw, 138px) max(20px, calc((100% - var(--max)) / 2));
  color: #f7fbf4;
  background:
    linear-gradient(135deg, rgba(7, 84, 63, 0.98), rgba(8, 30, 27, 0.98) 62%),
    #082e23;
}

.a-safety-inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(32px, 6vw, 74px);
  align-items: center;
}

.a-safety-title .eyebrow {
  color: #bce7cb;
}

.a-safety-title p {
  color: rgba(247, 251, 244, 0.74);
}

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

.a-safety-grid article {
  min-height: 228px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.a-safety-grid article:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-6px);
}

.a-safety-grid span,
.a-safety-grid h3 {
  color: #fff;
}

.a-safety-grid p {
  color: rgba(247, 251, 244, 0.72);
}

.a-smart {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 6vw, 76px);
  align-items: start;
}

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

.a-smart-modules article {
  min-height: 250px;
  padding: 25px;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.a-smart-modules h3 {
  margin-top: 0;
}

.a-client-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: clamp(82px, 9vw, 128px) 0;
  background:
    linear-gradient(180deg, #f7faf2 0%, #eef5ef 100%);
}

.a-client-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background:
    linear-gradient(90deg, transparent 0%, rgba(15, 127, 95, 0.08) 48%, transparent 76%),
    repeating-linear-gradient(90deg, rgba(15, 127, 95, 0.08) 0 1px, transparent 1px 118px);
  pointer-events: none;
}

.a-client-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.a-client-head {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 6vw, 74px);
  align-items: end;
}

.a-client-tags {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 38px;
}

.a-client-tags span {
  display: grid;
  min-height: 54px;
  place-items: center;
  border: 1px solid rgba(15, 127, 95, 0.18);
  border-radius: 8px;
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  transition: color 0.28s ease, background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.a-client-tags span:hover {
  color: #fff;
  background: var(--green-deep);
  box-shadow: 0 18px 42px rgba(7, 84, 63, 0.14);
  transform: translateY(-4px);
}

.a-logo-wall {
  display: grid;
  gap: 16px;
  margin-top: clamp(34px, 5vw, 58px);
}

.a-logo-group {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 16px;
  align-items: stretch;
  padding: 16px;
  border: 1px solid rgba(17, 26, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 22px 64px rgba(7, 84, 63, 0.08);
}

.a-logo-group header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 106px;
  padding: 22px;
  border-radius: 8px;
  color: #f7fbf4;
  background: linear-gradient(145deg, #07543f, #0f7f5f);
}

.a-logo-group header span,
.a-logo-group header small {
  display: block;
}

.a-logo-group header span {
  overflow-wrap: anywhere;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 900;
  line-height: 1.15;
}

.a-logo-group header small {
  color: rgba(247, 251, 244, 0.68);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.a-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.a-logo-tile {
  position: relative;
  display: grid;
  min-height: 106px;
  place-items: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 26, 24, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 252, 247, 0.94));
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.a-logo-tile::after {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -80%;
  width: 54%;
  background: linear-gradient(90deg, transparent, rgba(15, 127, 95, 0.11), transparent);
  transform: rotate(14deg);
  transition: left 0.56s ease;
}

.a-logo-tile img {
  position: relative;
  z-index: 1;
  width: min(142px, 78%);
  max-height: 70px;
  object-fit: contain;
  opacity: 0.82;
  filter: saturate(0.78) contrast(0.96);
  transition: filter 0.28s ease, opacity 0.28s ease, transform 0.28s ease;
}

.a-logo-tile:hover {
  border-color: rgba(15, 127, 95, 0.28);
  box-shadow: 0 20px 48px rgba(7, 84, 63, 0.13);
  transform: translateY(-5px);
}

.a-logo-tile:hover::after {
  left: 126%;
}

.a-logo-tile:hover img {
  opacity: 1;
  filter: saturate(1) contrast(1);
  transform: scale(1.03);
}

.a-contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  padding: clamp(74px, 9vw, 118px) max(20px, calc((100% - var(--max)) / 2));
  color: #f7fbf4;
  background: #101c18;
}

.a-contact .eyebrow {
  color: #bce7cb;
}

.a-contact p {
  color: rgba(247, 251, 244, 0.72);
  margin-top: 22px;
}

.a-contact address {
  display: grid;
  gap: 12px;
  font-style: normal;
}

.a-contact address a,
.a-contact address span {
  display: block;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #f7fbf4;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  line-height: 1.55;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.a-contact address a:hover,
.a-contact address span:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.11);
  transform: translateX(6px);
}

.reveal-item {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-item.reveal-zoom {
  transform: translate3d(0, 28px, 0) scale(0.985);
}

.reveal-item.reveal-zoom.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes aHeroImageIn {
  from {
    filter: saturate(0.84) brightness(0.84);
    transform: scale(1.1);
  }

  to {
    filter: saturate(1) brightness(1);
    transform: scale(1.04);
  }
}

@keyframes aHeroShadeIn {
  from {
    opacity: 0.65;
  }

  to {
    opacity: 1;
  }
}

@keyframes aHeroContentIn {
  from {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes aHeroStatsIn {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes aRouteSweep {
  from {
    opacity: 0;
    transform: rotate(-7deg) scaleX(0);
  }

  42% {
    opacity: 1;
  }

  to {
    opacity: 0.72;
    transform: rotate(-7deg) scaleX(1);
  }
}

@keyframes aRouteSweepAlt {
  from {
    opacity: 0;
    transform: rotate(5deg) scaleX(0);
  }

  42% {
    opacity: 1;
  }

  to {
    opacity: 0.58;
    transform: rotate(5deg) scaleX(1);
  }
}

@keyframes aRouteBreathe {
  0%,
  100% {
    opacity: 0.46;
  }

  50% {
    opacity: 0.84;
  }
}

@keyframes aRouteBreatheAlt {
  0%,
  100% {
    opacity: 0.34;
  }

  50% {
    opacity: 0.68;
  }
}

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

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

  .a-hero-media,
  .a-large-photo img,
  .a-catering-band img,
  .a-safety-section img {
    transform: none;
  }
}

@media (max-width: 1080px) {
  .a-service-grid,
  .a-safety-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .a-client-tags {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .a-hero {
    min-height: auto;
    padding-bottom: 46px;
  }

  .a-hero-stats {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 46px;
  }

  .a-hero-stats div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .a-hero-stats div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .a-intro,
  .a-supply,
  .a-catering-band,
  .a-safety-inner,
  .a-smart,
  .a-client-head,
  .a-contact {
    grid-template-columns: 1fr;
  }

  .a-smart-modules,
  .a-process-list {
    grid-template-columns: 1fr;
  }

  .a-logo-group {
    grid-template-columns: 1fr;
  }

  .a-logo-group header {
    min-height: auto;
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .a-hero {
    padding-top: 118px;
  }

  .a-hero-content h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .a-hero-stats,
  .a-service-grid,
  .a-safety-grid {
    grid-template-columns: 1fr;
  }

  .a-client-tags,
  .a-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .a-hero-stats div,
  .a-hero-stats div:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .a-hero-stats div:first-child {
    border-top: 0;
  }

  .a-service-grid article,
  .a-safety-grid article,
  .a-smart-modules article {
    min-height: auto;
  }

  .a-logo-group {
    padding: 12px;
  }

  .a-logo-group header {
    padding: 18px;
  }

  .a-logo-tile {
    min-height: 94px;
  }

  .a-logo-tile img {
    width: min(126px, 82%);
    max-height: 62px;
  }

  .a-large-photo img,
  .a-catering-band img,
  .a-safety-section img {
    height: 330px;
  }

  .a-contact address a,
  .a-contact address span {
    overflow-wrap: anywhere;
  }
}

/* v4 final overrides: full-screen banner, clearer copy, phone-first conversion */
.selected-a-home.design-v3 {
  --max: 1500px;
}

.selected-a-home.design-v3 .topbar.light {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.selected-a-home.design-v3 .nav-action {
  min-width: 142px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  box-shadow: 0 14px 34px rgba(7, 84, 63, 0.16);
}

.selected-a-home.design-v3 .v4-hero {
  min-height: 100svh;
  height: 100svh;
  display: block;
  padding: 0;
  background: #061611;
}

.selected-a-home.design-v3 .v4-slide-copy {
  width: min(560px, calc(100% - 64px));
}

.selected-a-home.design-v3 .v4-slide-copy h1,
.selected-a-home.design-v3 .v4-slide-copy h2,
.selected-a-home.design-v3 .a-hero-content h1 {
  font-size: clamp(40px, 4.25vw, 68px);
  line-height: 1.08;
}

.selected-a-home.design-v3 .v4-slide-copy .hero-lede {
  max-width: 520px;
  font-size: clamp(16px, 1.12vw, 20px);
  line-height: 1.78;
}

.selected-a-home.design-v3 .v4-hero .a-hero-stats {
  left: max(32px, calc((100% - 1500px) / 2));
  right: max(32px, calc((100% - 1500px) / 2));
  bottom: 32px;
}

.selected-a-home.design-v3 .a-service-grid article {
  min-height: 310px;
  overflow: hidden;
  padding: 0 0 25px;
}

.selected-a-home.design-v3 .a-service-grid article > img {
  width: 100%;
  height: 158px;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.selected-a-home.design-v3 .a-service-grid article:hover > img {
  transform: scale(1.06);
}

.selected-a-home.design-v3 .a-service-grid article > span,
.selected-a-home.design-v3 .a-service-grid article > h3,
.selected-a-home.design-v3 .a-service-grid article > p {
  display: block;
  margin-left: 25px;
  margin-right: 25px;
}

.selected-a-home.design-v3 .a-service-grid article > span {
  margin-top: 22px;
}

.selected-a-home.design-v3 .a-service-grid h3 {
  margin-top: 22px;
}

.selected-a-home.design-v3 .v3-response {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 40px));
  margin: clamp(28px, 4vw, 52px) auto;
  padding: 24px;
  border: 1px solid rgba(7, 84, 63, 0.16);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 84, 63, 0.98), rgba(15, 127, 95, 0.92)),
    var(--green-deep);
  box-shadow: 0 22px 56px rgba(7, 84, 63, 0.16);
}

.selected-a-home.design-v3 .v3-response > div:first-child {
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 950;
  line-height: 1.2;
}

.selected-a-home.design-v3 .v4-response-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.selected-a-home.design-v3 .v4-response-phones a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 218px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
}

.selected-a-home.design-v3 .v4-floating-call {
  position: fixed;
  z-index: 30;
  right: 22px;
  top: 50%;
  bottom: auto;
  display: grid;
  gap: 8px;
  width: 226px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(6, 29, 23, 0.84);
  box-shadow: 0 22px 58px rgba(5, 31, 24, 0.24);
  backdrop-filter: blur(16px);
  transform: translateY(-50%);
}

.selected-a-home.design-v3 .v4-floating-call a {
  display: grid;
  padding: 11px 13px;
  border-radius: 7px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, transform 0.25s ease;
}

.selected-a-home.design-v3 .v4-floating-call a:first-child {
  background: linear-gradient(135deg, var(--green-deep), var(--green));
}

.selected-a-home.design-v3 .v4-floating-call span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 850;
}

.selected-a-home.design-v3 .v4-floating-call strong {
  margin-top: 3px;
  font-size: 20px;
  line-height: 1.2;
}

@media (max-width: 980px) {
  .selected-a-home.design-v3 .v4-hero {
    min-height: 100svh;
    height: auto;
    padding: 0;
  }

  .selected-a-home.design-v3 .v4-slide-copy h1,
  .selected-a-home.design-v3 .a-hero-content h1 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .selected-a-home.design-v3 .v4-hero .a-hero-stats {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 24px;
    width: auto;
    margin-top: 0;
  }

  .selected-a-home.design-v3 .v3-response {
    align-items: flex-start;
    flex-direction: column;
  }

  .selected-a-home.design-v3 .v4-response-phones {
    justify-content: flex-start;
    width: 100%;
  }

  .selected-a-home.design-v3 .v4-floating-call {
    left: 12px;
    right: 12px;
    top: auto;
    bottom: 12px;
    width: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: none;
  }
}

@media (max-width: 640px) {
  .selected-a-home.design-v3 .v4-slide-copy {
    left: 22px;
    right: 22px;
    top: 37%;
    width: auto;
  }

  .selected-a-home.design-v3 .v4-slider-tools {
    bottom: 104px;
  }

  .selected-a-home.design-v3 .v4-hero-progress {
    bottom: 92px;
  }

  .selected-a-home.design-v3 .v4-hero .a-hero-stats {
    display: none;
  }

  .selected-a-home.design-v3 .v4-phone {
    min-width: calc(50% - 4px);
  }

  .selected-a-home.design-v3 .v4-phone strong,
  .selected-a-home.design-v3 .v4-floating-call strong {
    font-size: 16px;
  }

  .selected-a-home.design-v3 .v4-hero .a-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    bottom: 22px;
  }

  .selected-a-home.design-v3 .v4-hero .a-hero-stats div,
  .selected-a-home.design-v3 .v4-hero .a-hero-stats div:nth-child(3),
  .selected-a-home.design-v3 .v4-hero .a-hero-stats div:nth-child(4) {
    border-top: 0;
  }

  .selected-a-home.design-v3 .v4-hero .a-hero-stats div:nth-child(odd) {
    border-left: 0;
  }

  .selected-a-home.design-v3 .v4-hero .a-hero-stats div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .selected-a-home.design-v3 .v4-hero .a-hero-stats span {
    font-size: 12px;
  }

  .selected-a-home.design-v3 .v4-response-phones a {
    width: 100%;
    min-width: 0;
  }
}


/* top021 generated inner pages */
.zt-main-nav {
  gap: clamp(10px, 1.6vw, 24px);
}

.zt-nav-root,
.zt-nav-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
}

.zt-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.zt-nav-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  min-width: 158px;
  padding: 10px;
  border: 1px solid rgba(17, 26, 24, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 56px rgba(7, 84, 63, 0.14);
  opacity: 0;
  transform: translate(-50%, 8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.zt-nav-menu a {
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--ink);
  white-space: nowrap;
}

.zt-nav-menu a::after {
  display: none;
}

.zt-nav-menu a:hover {
  color: #fff;
  background: var(--green);
}

.zt-nav-item:hover .zt-nav-menu,
.zt-nav-item:focus-within .zt-nav-menu {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.zt-inner-page .topbar.light {
  border-bottom: 1px solid rgba(17, 26, 24, 0.08);
}

.zt-page-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 150px max(22px, calc((100% - var(--max)) / 2)) 86px;
  color: #fff;
  background: var(--zt-hero-image) center / cover no-repeat;
}

.zt-page-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 17, 14, 0.84) 0%, rgba(4, 17, 14, 0.58) 44%, rgba(4, 17, 14, 0.14) 100%),
    linear-gradient(0deg, rgba(4, 17, 14, 0.5), rgba(4, 17, 14, 0.08));
}

.zt-page-hero-copy {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.zt-page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.05;
  letter-spacing: 0;
}

.zt-page-hero p:not(.eyebrow) {
  width: min(680px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.85;
}

.zt-page-main {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(34px, 5vw, 76px);
  padding: clamp(70px, 8vw, 112px) max(22px, calc((100% - var(--max)) / 2));
  background: #fbfcf8;
}

.zt-page-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
}

.zt-sidebar-card,
.zt-sidebar-contact {
  border: 1px solid rgba(17, 26, 24, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 52px rgba(7, 84, 63, 0.08);
}

.zt-sidebar-card {
  padding: 24px;
}

.zt-sidebar-card > span,
.zt-sidebar-contact > span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.zt-sidebar-card strong {
  display: block;
  margin-top: 8px;
  font-size: 26px;
}

.zt-sidebar-card nav {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.zt-sidebar-card nav a {
  padding: 13px 14px;
  border-radius: 7px;
  color: var(--ink);
  background: #f4f8f3;
  font-weight: 850;
}

.zt-sidebar-card nav a.is-active,
.zt-sidebar-card nav a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
}

.zt-sidebar-contact {
  padding: 22px;
}

.zt-sidebar-contact a {
  display: block;
  margin-top: 9px;
  color: var(--green-deep);
  font-size: 22px;
  font-weight: 950;
}

.zt-sidebar-contact p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.zt-page-article {
  min-width: 0;
}

.zt-breadcrumb {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.zt-breadcrumb a {
  color: var(--green);
}

.zt-section-title {
  margin-top: 22px;
  margin-bottom: 28px;
}

.zt-section-title.compact {
  margin-top: 0;
}

.zt-section-title h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.16;
}

.zt-section-title p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.9;
}

.zt-source-content {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(17, 26, 24, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(7, 84, 63, 0.08);
}

.zt-source-content p,
.zt-source-content li {
  color: #2a3934;
  font-size: 17px;
  line-height: 2;
}

.zt-source-content a {
  color: var(--green);
  font-weight: 850;
}

.zt-source-content img {
  max-width: 100%;
  height: auto !important;
  margin: 18px auto;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 18px 44px rgba(7, 84, 63, 0.12);
}

.zt-source-content ul {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.zt-source-content li {
  padding: 18px;
  border: 1px solid rgba(17, 26, 24, 0.08);
  border-radius: 8px;
  background: #f7faf5;
}

.zt-source-content h3 {
  margin: 12px 0 6px;
  color: var(--green-deep);
  font-size: 22px;
}

.zt-source-content .ry-list ul {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.zt-source-content .ry-list li {
  display: grid;
  place-items: center;
  background: #fff;
}

.zt-source-content .yh {
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 4px solid var(--green);
  color: var(--green-deep);
  background: #edf7ef;
  font-weight: 850;
}

.zt-related {
  margin-top: clamp(42px, 6vw, 72px);
}

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

.zt-related-grid a {
  display: grid;
  gap: 8px;
  min-height: 104px;
  padding: 20px;
  border: 1px solid rgba(17, 26, 24, 0.1);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 18px 44px rgba(7, 84, 63, 0.07);
}

.zt-related-grid a:hover {
  color: #fff;
  background: var(--green-deep);
}

.zt-related-grid span {
  font-size: 18px;
  font-weight: 950;
}

.zt-related-grid small {
  color: inherit;
  opacity: 0.72;
}

.zt-page-contact {
  padding-top: clamp(64px, 8vw, 96px);
  padding-bottom: clamp(64px, 8vw, 96px);
}

@media (max-width: 1180px) {
  .zt-page-main {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 980px) {
  .zt-main-nav {
    display: none;
  }

  .zt-page-hero {
    min-height: 520px;
    padding-top: 130px;
  }
}

@media (max-width: 640px) {
  .zt-page-hero {
    min-height: 500px;
    padding-top: 118px;
  }

  .zt-page-hero h1 {
    font-size: 40px;
  }

  .zt-page-main,
  .zt-page-sidebar,
  .zt-related-grid {
    grid-template-columns: 1fr;
  }

  .zt-source-content {
    padding: 24px 18px;
  }
}


/* top021 baidu seo heading parity */
.selected-a-home.design-v3 .v4-slide-copy h2 {
  margin: 0;
  color: inherit;
  font-weight: 950;
  letter-spacing: 0;
}

/* top021 layout and content fixes 20260612n */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

img {
  max-width: 100%;
}

.topbar,
.design-v3 .topbar.light,
.zt-inner-page .topbar.light {
  z-index: 1000;
}

.v4-slides,
.v4-slide,
.v4-slide.is-active,
.v4-slide img,
.v4-slide-shade {
  pointer-events: none;
}

.v4-slide-copy,
.v4-phone-row,
.v4-phone,
.v4-slider-tools,
.v4-slider-tools button,
.v4-floating-call,
.v4-floating-call a {
  pointer-events: auto;
}

.selected-a-home.design-v3 .v4-hero {
  position: relative;
  overflow: hidden;
}

.selected-a-home.design-v3 .v4-slide-copy,
.v4-slide-copy {
  z-index: 20;
  top: 46%;
}

.selected-a-home.design-v3 .v4-phone-row,
.v4-phone-row {
  position: relative;
  z-index: 24;
}

.selected-a-home.design-v3 .v4-slider-tools,
.v4-slider-tools {
  z-index: 30;
}

.selected-a-home.design-v3 .v4-hero-progress,
.v4-hero-progress {
  z-index: 12;
  pointer-events: none;
}

.selected-a-home.design-v3 .v4-floating-call {
  top: 50%;
  bottom: auto;
  z-index: 28;
  transform: translateY(-50%);
}

.design-v3 .v4-hero .a-hero-stats,
.selected-a-home.design-v3 .v4-hero .a-hero-stats {
  z-index: 14;
  pointer-events: none;
}

.selected-a-home.design-v3 .v4-slide-copy h1,
.selected-a-home.design-v3 .v4-slide-copy h2,
.selected-a-home.design-v3 .a-hero-content h1,
.v4-slide-copy h1,
.v4-slide-copy h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(38px, 3.8vw, 62px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.1;
}

.selected-a-home.design-v3 .v4-slide-copy .hero-lede {
  max-width: 500px;
  font-size: clamp(15px, 1vw, 18px);
}

.selected-a-home.design-v3 .v4-slide-copy.a-hero-content,
.v4-slide-copy.a-hero-content {
  position: absolute;
  z-index: 20;
  top: 46%;
  left: max(32px, calc((100% - 1500px) / 2));
  right: auto;
  bottom: auto;
  display: grid;
  width: min(560px, calc(100% - 64px));
  max-width: min(560px, calc(100% - 64px));
  color: #fff;
  transform: translateY(-50%);
  animation: none;
}

.selected-a-home.design-v3 .v3-about {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(82px, 9vw, 126px) 0;
}

.selected-a-home.design-v3 .v3-about-copy {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.selected-a-home.design-v3 .v3-about-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.1;
  letter-spacing: 0;
}

.selected-a-home.design-v3 .v3-about-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.selected-a-home.design-v3 .v3-about-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #e6eee7;
  box-shadow: 0 28px 70px rgba(7, 84, 63, 0.12);
}

.selected-a-home.design-v3 .v3-about-media > img {
  display: block;
  width: 100%;
  height: clamp(420px, 34vw, 580px);
  object-fit: cover;
  transform: none;
}

.selected-a-home.design-v3 .v3-about-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 8px;
  color: #fff;
  background: rgba(5, 31, 24, 0.78);
  backdrop-filter: blur(14px);
}

.selected-a-home.design-v3 .v3-about-badge strong {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.selected-a-home.design-v3 .v3-about-badge span {
  font-size: 14px;
  line-height: 1.65;
}

.selected-a-home.design-v3 .v3-safety .a-safety-inner {
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
}

.selected-a-home.design-v3 .v3-safety .a-safety-inner > figure {
  min-width: 0;
}

.selected-a-home.design-v3 .v3-safety .a-safety-inner > figure img {
  display: block;
  height: clamp(420px, 34vw, 560px);
  object-fit: cover;
  transform: none;
}

.selected-a-home.design-v3 .v3-supply {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(76px, 8vw, 118px) 0;
}

.selected-a-home.design-v3 .v3-supply .a-supply-copy {
  min-width: 0;
}

.selected-a-home.design-v3 .v3-supply .a-large-photo {
  grid-column: auto;
  align-self: stretch;
  min-width: 0;
}

.selected-a-home.design-v3 .v3-supply .a-large-photo img {
  display: block;
  height: 100%;
  min-height: clamp(420px, 34vw, 560px);
  object-fit: cover;
  transform: none;
}

.selected-a-home.design-v3 .v3-category-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.selected-a-home.design-v3 .v3-category-grid article {
  display: grid;
  grid-template-rows: 170px 1fr;
  overflow: hidden;
  min-width: 0;
  min-height: 250px;
  border: 1px solid rgba(17, 26, 24, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 84, 63, 0.07);
}

.selected-a-home.design-v3 .v3-category-grid img {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.selected-a-home.design-v3 .v3-category-grid p {
  display: flex;
  align-items: center;
  min-height: 68px;
  margin: 0;
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.45;
}

.selected-a-home.design-v3 .v3-honors {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(78px, 8vw, 118px) 0;
}

.selected-a-home.design-v3 .v3-honors .v3-section-head {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin-bottom: 34px;
}

.selected-a-home.design-v3 .v3-honors .v3-section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
}

.selected-a-home.design-v3 .v3-honors .v3-section-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.selected-a-home.design-v3 .v3-honor-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  overflow: visible;
}

.selected-a-home.design-v3 .v3-honor-card {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 318px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(17, 26, 24, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff, #f7faf6);
  box-shadow: 0 18px 44px rgba(7, 84, 63, 0.08);
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.selected-a-home.design-v3 .v3-honor-card:hover {
  border-color: rgba(15, 127, 95, 0.32);
  box-shadow: 0 24px 58px rgba(7, 84, 63, 0.13);
  transform: translateY(-5px);
}

.selected-a-home.design-v3 .v3-honor-card img,
.selected-a-home.design-v3 .v3-honor-track > img {
  display: block;
  width: 100%;
  height: clamp(220px, 18vw, 310px);
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  transform: none;
}

.selected-a-home.design-v3 .v4-hero .a-hero-stats {
  position: absolute;
  left: max(32px, calc((100% - 1500px) / 2));
  right: max(32px, calc((100% - 1500px) / 2));
  bottom: 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(5, 31, 24, 0.72);
  backdrop-filter: blur(16px);
}

.selected-a-home.design-v3 .v4-hero .a-hero-stats div {
  display: grid;
  align-content: center;
  min-width: 0;
  min-height: 104px;
  padding: 22px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 0;
}

.selected-a-home.design-v3 .v4-hero .a-hero-stats div:first-child {
  border-left: 0;
}

.selected-a-home.design-v3 .v4-hero .a-hero-stats strong {
  display: block;
  color: #fff;
  font-size: clamp(30px, 3.35vw, 48px);
  line-height: 1;
  white-space: nowrap;
}

.selected-a-home.design-v3 .v4-hero .a-hero-stats span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.42;
}

.selected-a-home.design-v3 .v3-news {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(74px, 8vw, 118px) 0;
}

.selected-a-home.design-v3 .v3-news-col {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.selected-a-home.design-v3 .v3-news-col h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

.selected-a-home.design-v3 .v3-feature-news {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(17, 26, 24, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(7, 84, 63, 0.08);
}

.selected-a-home.design-v3 .v3-feature-news img {
  display: block;
  width: 100%;
  height: clamp(250px, 22vw, 340px);
  object-fit: cover;
}

.selected-a-home.design-v3 .v3-feature-news h3 {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 24px 26px 0;
  color: var(--ink);
  font-size: clamp(20px, 1.65vw, 28px);
  line-height: 1.35;
}

.selected-a-home.design-v3 .v3-feature-news h3 span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.selected-a-home.design-v3 .v3-feature-news p {
  margin: 0;
  padding: 14px 26px 26px;
  color: var(--muted);
  line-height: 1.85;
}

.selected-a-home.design-v3 .v3-news-col ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.selected-a-home.design-v3 .v3-news-col li {
  min-width: 0;
}

.selected-a-home.design-v3 .v3-news-col li a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 58px;
  padding: 14px 18px;
  border: 1px solid rgba(17, 26, 24, 0.08);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  line-height: 1.45;
  box-shadow: 0 12px 30px rgba(7, 84, 63, 0.04);
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.selected-a-home.design-v3 .v3-news-col li a:hover {
  border-color: rgba(15, 127, 95, 0.28);
  box-shadow: 0 18px 42px rgba(7, 84, 63, 0.1);
  transform: translateY(-3px);
}

.selected-a-home.design-v3 .v3-news-col li span {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.selected-a-home.design-v3 .v3-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 22px 0 58px;
  color: var(--muted);
}

.selected-a-home.design-v3 .v3-links strong {
  color: var(--ink);
  font-weight: 950;
}

.selected-a-home.design-v3 .v3-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(17, 26, 24, 0.1);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
}

.selected-a-home.design-v3 .v3-contact {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto clamp(40px, 5vw, 78px);
}

.zt-inner-page .zt-modern-proof-gallery {
  display: grid;
  gap: 24px;
}

.zt-inner-page .zt-modern-proof-images {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.zt-inner-page .zt-modern-proof-images figure {
  align-content: start;
  min-height: 336px;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(7, 84, 63, 0.07);
}

.zt-inner-page .zt-modern-proof-images img {
  height: clamp(220px, 22vw, 320px);
  border-radius: 6px;
  background: #fff;
}

.zt-nav-item {
  position: relative;
}

.zt-nav-item::after,
.zt-nav-menu::before {
  content: "";
  position: absolute;
  left: -16px;
  right: -16px;
  height: 18px;
}

.zt-nav-item::after {
  top: 100%;
}

.zt-nav-menu {
  top: 100%;
  z-index: 1002;
  margin-top: 0;
}

.zt-nav-menu::before {
  top: -18px;
}

.zt-nav-menu a {
  position: relative;
  z-index: 1;
}

.zt-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(17, 26, 24, 0.14);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(7, 84, 63, 0.12);
  cursor: pointer;
}

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

.zt-inner-page {
  background: #f6f8f3;
}

.zt-page-hero {
  min-height: clamp(520px, 58vw, 720px);
  padding-top: 156px;
}

.zt-page-hero-copy {
  width: min(760px, 100%);
}

.zt-page-hero h1 {
  font-size: clamp(42px, 4.6vw, 76px);
}

.zt-page-main {
  display: block;
  padding: 0;
  background: #f6f8f3;
}

.zt-page-sidebar,
.zt-breadcrumb,
.zt-page-article > .zt-section-title {
  display: none;
}

.zt-page-article {
  width: 100%;
}

.zt-source-content {
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.zt-source-content img {
  margin: 0;
  box-shadow: none;
}

.zt-inner-modern {
  display: grid;
  gap: clamp(56px, 7vw, 108px);
  padding: clamp(70px, 8vw, 118px) 0;
}

.zt-modern-intro,
.zt-modern-feature,
.zt-modern-visual-grid,
.zt-modern-flow,
.zt-modern-proof-gallery,
.zt-related {
  width: min(var(--max), calc(100% - 44px));
  margin-inline: auto;
}

.zt-modern-intro {
  display: grid;
  grid-template-columns: minmax(160px, 240px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
}

.zt-modern-index {
  display: grid;
  gap: 10px;
  color: var(--green-deep);
}

.zt-modern-index span,
.zt-modern-feature-panel span,
.zt-modern-section-label span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.zt-modern-index strong {
  color: rgba(7, 84, 63, 0.12);
  font-size: clamp(86px, 11vw, 168px);
  line-height: 0.82;
}

.zt-modern-intro-copy h3,
.zt-modern-section-label h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(30px, 3.4vw, 56px);
  line-height: 1.12;
}

.zt-modern-intro-copy > p:not(.eyebrow) {
  width: min(880px, 100%);
  margin: 18px 0 0;
  color: #31413b;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.9;
}

.zt-modern-phonebar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.zt-modern-phonebar a {
  display: grid;
  min-width: 218px;
  padding: 14px 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  box-shadow: 0 18px 42px rgba(7, 84, 63, 0.16);
}

.zt-modern-phonebar a + a {
  color: var(--green-deep);
  background: #fff;
  border: 1px solid rgba(7, 84, 63, 0.14);
}

.zt-modern-phonebar span {
  font-size: 12px;
  font-weight: 850;
  opacity: 0.78;
}

.zt-modern-phonebar strong {
  margin-top: 3px;
  font-size: 22px;
  line-height: 1.2;
}

.zt-modern-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: stretch;
}

.zt-modern-feature figure,
.zt-modern-visual-grid article,
.zt-modern-proof-images figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.zt-modern-feature figure {
  min-height: 520px;
}

.zt-modern-feature img,
.zt-modern-visual-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zt-modern-feature-panel {
  display: grid;
  align-content: center;
  padding: clamp(30px, 4vw, 58px);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(6, 29, 23, 0.96), rgba(7, 84, 63, 0.92)),
    var(--green-deep);
}

.zt-modern-feature-panel h3 {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(28px, 2.8vw, 46px);
  line-height: 1.18;
}

.zt-modern-feature-panel p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.9;
}

.zt-modern-feature-panel ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.zt-modern-feature-panel li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
}

.zt-modern-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 36px);
}

.zt-modern-visual-grid article {
  display: grid;
  min-height: 470px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(7, 84, 63, 0.1);
}

.zt-modern-visual-grid img {
  height: 310px;
}

.zt-modern-visual-grid h3,
.zt-modern-visual-grid p {
  margin-inline: clamp(22px, 3vw, 36px);
}

.zt-modern-visual-grid h3 {
  margin-top: 24px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 25px;
}

.zt-modern-visual-grid p {
  margin-top: 10px;
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.85;
}

.zt-modern-flow {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.zt-modern-flow-body {
  display: grid;
  gap: 14px;
}

.zt-modern-flow-body h3 {
  margin: 20px 0 4px;
  padding-left: 16px;
  border-left: 4px solid var(--green);
  color: var(--ink);
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.35;
}

.zt-modern-flow-body p {
  margin: 0;
  padding: 20px 24px;
  border: 1px solid rgba(17, 26, 24, 0.08);
  border-radius: 8px;
  color: #283832;
  background: #fff;
  font-size: 17px;
  line-height: 2;
}

.zt-modern-flow-body p.is-lead {
  border-color: rgba(15, 127, 95, 0.2);
  background: #eef7ef;
  font-weight: 850;
}

.zt-modern-proof-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.zt-modern-proof-images figure {
  display: grid;
  align-items: center;
  min-height: 180px;
  padding: 12px;
  border: 1px solid rgba(17, 26, 24, 0.1);
  background: #fff;
}

.zt-modern-proof-images img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.zt-modern-proof-images figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.zt-related {
  margin-top: 0;
}

.zt-page-contact {
  margin-top: 0;
}

.zt-error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 28px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(230, 243, 237, 0.92), rgba(255, 255, 255, 0.92)),
    #f6faf7;
}

.zt-error-shell {
  width: min(760px, 100%);
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(7, 84, 63, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(6, 41, 32, 0.14);
}

.zt-error-logo img {
  width: 168px;
  height: auto;
}

.zt-error-shell h1 {
  margin: 10px 0 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.zt-error-shell p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.zt-error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.zt-error-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--green-deep);
  font-weight: 900;
  text-decoration: none;
}

.zt-inner-modern > section,
.zt-modern-feature-panel,
.zt-modern-visual-grid article,
.zt-related-grid a,
.a-service-grid article,
.a-logo-group {
  animation: ztFadeUp 0.72s ease both;
}

@keyframes ztFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .zt-main-nav,
  .main-nav.zt-main-nav {
    display: none;
  }

  .zt-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    flex: 0 0 44px;
    position: relative;
    z-index: 1003;
  }

  body.zt-nav-open {
    overflow: hidden;
  }

  body.zt-nav-open .main-nav,
  body.zt-nav-open .zt-main-nav {
    display: grid;
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    width: auto;
    max-height: calc(100svh - 92px);
    overflow: auto;
    gap: 4px;
    padding: 16px;
    border: 1px solid rgba(7, 84, 63, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 28px 70px rgba(6, 41, 32, 0.2);
    z-index: 1002;
  }

  body.zt-nav-open .zt-nav-root,
  body.zt-nav-open .zt-nav-item > a {
    justify-content: flex-start;
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
  }

  body.zt-nav-open .zt-nav-item {
    display: grid;
    align-items: stretch;
  }

  body.zt-nav-open .zt-nav-item::after,
  body.zt-nav-open .zt-nav-menu::before {
    display: none;
  }

  body.zt-nav-open .zt-nav-menu {
    position: static;
    min-width: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    border: 0;
    padding: 2px 0 8px 14px;
    background: transparent;
  }

  body.zt-nav-open .zt-nav-menu a {
    padding: 9px 12px;
  }

  .selected-a-home.design-v3 .v4-floating-call {
    display: none;
  }

  .design-v3 .v4-hero .a-hero-stats,
  .selected-a-home.design-v3 .v4-hero .a-hero-stats {
    display: none !important;
  }

  .selected-a-home.design-v3 .v4-slider-tools,
  .v4-slider-tools {
    bottom: 32px;
    z-index: 30;
  }

  .selected-a-home.design-v3 .v4-hero-progress,
  .v4-hero-progress {
    bottom: 20px;
  }

  .selected-a-home.design-v3 .v3-about,
  .selected-a-home.design-v3 .v3-supply,
  .selected-a-home.design-v3 .v3-safety .a-safety-inner {
    grid-template-columns: 1fr;
  }

  .selected-a-home.design-v3 .v3-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .selected-a-home.design-v3 .v3-honor-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .selected-a-home.design-v3 .v3-news {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .zt-modern-intro,
  .zt-modern-feature,
  .zt-modern-flow,
  .zt-modern-visual-grid {
    grid-template-columns: 1fr;
  }

  .zt-modern-feature figure {
    min-height: 360px;
  }

  .zt-page-hero {
    min-height: 520px;
    padding-top: 128px;
  }

  .selected-a-home.design-v3 .v3-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .selected-a-home.design-v3 .v3-honor-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .selected-a-home.design-v3 .v3-news-col li a {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 640px) {
  .selected-a-home.design-v3 .nav-action,
  .nav-action {
    display: none;
  }

  .selected-a-home.design-v3 .header-tools,
  .header-tools {
    min-width: 0;
    margin-left: auto;
  }

  .selected-a-home.design-v3 .language-switcher,
  .language-switcher {
    min-width: 88px;
  }

  .selected-a-home.design-v3 .v4-slide-copy,
  .v4-slide-copy {
    top: 41%;
    width: calc(100% - 44px);
    max-width: calc(100% - 44px);
  }

  .selected-a-home.design-v3 .v4-slide-copy.a-hero-content,
  .v4-slide-copy.a-hero-content {
    top: 41%;
    width: calc(100% - 44px);
    max-width: calc(100% - 44px);
  }

  .selected-a-home.design-v3 .v4-slide-copy h1,
  .selected-a-home.design-v3 .v4-slide-copy h2,
  .selected-a-home.design-v3 .a-hero-content h1,
  .v4-slide-copy h1,
  .v4-slide-copy h2 {
    font-size: clamp(30px, 8.4vw, 42px);
  }

  .selected-a-home.design-v3 .v4-slide-copy .hero-lede {
    font-size: 14px;
    line-height: 1.68;
  }

  .selected-a-home.design-v3 .v4-phone-row,
  .v4-phone-row {
    gap: 8px;
    margin-top: 20px;
  }

  .selected-a-home.design-v3 .v4-phone,
  .v4-phone {
    box-sizing: border-box;
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    padding: 11px 12px;
  }

  .selected-a-home.design-v3 .v4-phone strong,
  .v4-phone strong {
    font-size: 15px;
  }

  .selected-a-home.design-v3 .v4-slider-tools,
  .v4-slider-tools {
    bottom: 26px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .selected-a-home.design-v3 .v4-hero-progress,
  .v4-hero-progress {
    bottom: 14px;
  }

  .zt-modern-phonebar a {
    width: 100%;
    min-width: 0;
  }

  .zt-modern-visual-grid img {
    height: 230px;
  }

  .selected-a-home.design-v3 .v3-about,
  .selected-a-home.design-v3 .v3-supply {
    width: calc(100% - 32px);
    padding: 62px 0;
  }

  .selected-a-home.design-v3 .v3-about-media > img,
  .selected-a-home.design-v3 .v3-supply .a-large-photo img,
  .selected-a-home.design-v3 .v3-safety .a-safety-inner > figure img {
    min-height: 320px;
    height: 320px;
  }

  .selected-a-home.design-v3 .v3-about-badge {
    position: static;
    grid-template-columns: 1fr;
    margin: 0;
    border-radius: 0;
  }

  .selected-a-home.design-v3 .v3-category-grid {
    grid-template-columns: 1fr;
  }

  .selected-a-home.design-v3 .v3-category-grid article {
    grid-template-rows: 190px 1fr;
    min-height: 258px;
  }

  .selected-a-home.design-v3 .v3-category-grid img {
    height: 190px;
  }

  .selected-a-home.design-v3 .v3-honors {
    width: calc(100% - 32px);
    padding: 62px 0;
  }

  .selected-a-home.design-v3 .v3-honor-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .selected-a-home.design-v3 .v3-honor-card {
    min-height: 238px;
    padding: 10px;
  }

  .selected-a-home.design-v3 .v3-honor-card img,
  .selected-a-home.design-v3 .v3-honor-track > img {
    height: 210px;
  }

  .selected-a-home.design-v3 .v3-news,
  .selected-a-home.design-v3 .v3-links,
  .selected-a-home.design-v3 .v3-contact {
    width: calc(100% - 32px);
  }

  .selected-a-home.design-v3 .v3-news {
    padding: 62px 0 44px;
  }

  .selected-a-home.design-v3 .v3-feature-news img {
    height: 220px;
  }

  .selected-a-home.design-v3 .v3-feature-news h3 {
    padding: 20px 20px 0;
  }

  .selected-a-home.design-v3 .v3-feature-news p {
    padding: 12px 20px 22px;
  }

  .selected-a-home.design-v3 .v3-news-col li a {
    min-height: 52px;
    padding: 13px 15px;
  }

  .zt-inner-page .zt-modern-proof-images {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
/* end top021 layout and content fixes 20260612n */
