:root {
  --green: #1f3d2b;
  --green-2: #2d553c;
  --gold: #c8a96a;
  --ivory: #f5f1e8;
  --paper: #fffaf0;
  --ink: #132219;
  --muted: #647061;
  --line: #d9d0bd;
  --shadow: 0 24px 70px rgba(31, 61, 43, 0.14);
  --header-glass: rgba(255, 250, 240, 0.82);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Helvetica Neue", "Alibaba PuHuiTi", "Source Han Sans SC", Arial, sans-serif;
  color: var(--ink);
  background: var(--ivory);
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
section[id] { scroll-margin-top: 92px; }

.site-header {
  position: fixed;
  z-index: 30;
  inset: 14px clamp(14px, 2vw, 28px) auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px 12px 18px;
  background: var(--header-glass);
  border: 1px solid rgba(31, 61, 43, 0.12);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(19, 34, 25, 0.14);
  backdrop-filter: blur(22px) saturate(140%);
}

.brand,
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand { min-width: 210px; }
.brand strong,
.logo-lockup strong {
  display: block;
  color: var(--green);
  font-size: 20px;
  line-height: 1;
  font-weight: 850;
}
.brand small,
.logo-lockup small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.panda-mark {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 2px solid var(--green);
  border-radius: 50%;
  background: linear-gradient(145deg, #fff 0%, #f8f3e9 72%);
  box-shadow: inset 0 -3px 0 rgba(200, 169, 106, 0.28);
}
.panda-mark::before,
.panda-mark::after {
  content: "";
  position: absolute;
  top: 7px;
  width: 9px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
}
.panda-mark::before { left: 7px; transform: rotate(22deg); }
.panda-mark::after { right: 7px; transform: rotate(-22deg); }
.panda-mark.large { width: 78px; height: 78px; }
.panda-mark.large::before,
.panda-mark.large::after { top: 17px; width: 18px; height: 26px; }
.panda-mark.large::before { left: 17px; }
.panda-mark.large::after { right: 17px; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(31, 61, 43, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--green);
}
.nav-link,
.nav-action {
  position: relative;
  display: grid;
  gap: 2px;
  min-width: 92px;
  padding: 10px 16px;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  transition: color 180ms ease, transform 180ms ease, background 180ms ease;
}
.nav-link::before,
.nav-action::before {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: -1;
  border-radius: inherit;
  background: var(--green);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 180ms ease, transform 180ms ease;
}
.nav-link span,
.nav-action span {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
}
.nav-link small,
.nav-action small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease;
}
.nav-link:hover,
.nav-action:hover {
  color: #fff;
  transform: translateY(-1px);
}
.nav-link:hover::before,
.nav-action:hover::before {
  opacity: 1;
  transform: scale(1);
}
.nav-link:hover small,
.nav-action:hover small { color: rgba(255, 255, 255, 0.74); }
.nav-action {
  min-width: 118px;
  margin-left: 4px;
  background: var(--gold);
  color: var(--green);
  box-shadow: inset 0 0 0 1px rgba(31, 61, 43, 0.08);
}
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green);
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 26, 18, 0.92), rgba(17, 42, 28, 0.58) 43%, rgba(10, 26, 18, 0.1)),
    linear-gradient(0deg, rgba(31, 61, 43, 0.42), transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 170px 0 86px;
  color: #fff;
}
.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 760px;
  margin: 18px 0 20px;
  font-size: clamp(48px, 7.4vw, 104px);
  line-height: 0.98;
  letter-spacing: 0;
}
.hero p:not(.eyebrow) {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 23px;
  border-radius: 4px;
  font-weight: 850;
}
.button-primary { background: var(--gold); color: #162318; }
.button-ghost { border: 1px solid rgba(255, 255, 255, 0.72); color: #fff; }

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.proof-strip article {
  min-height: 168px;
  padding: 28px clamp(18px, 3vw, 38px);
  border-right: 1px solid var(--line);
}
.proof-strip span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
}
.proof-strip strong {
  display: block;
  margin: 16px 0 8px;
  color: var(--green);
  font-size: 24px;
}
.proof-strip p,
.section-heading p,
.line-list p,
.standard-copy p,
.standard-grid p,
.gift-plan-list p {
  color: var(--muted);
  line-height: 1.75;
}
.proof-strip p { margin: 0; }

.section {
  padding: clamp(76px, 9vw, 128px) clamp(20px, 5vw, 72px);
}
.section-heading {
  max-width: 980px;
  margin-bottom: 38px;
}
.section-heading.narrow { max-width: 830px; }
.section-heading h2,
.standard-copy h2,
.contact-band h2 {
  margin: 12px 0 0;
  color: var(--green);
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.12;
  letter-spacing: 0;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 169, 106, 0.18), transparent 34%),
    #fffaf0;
}
.about-copy {
  position: sticky;
  top: 118px;
}
.about-copy h2 {
  margin: 12px 0 22px;
  color: var(--green);
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.08;
}
.about-copy p:not(.section-kicker) {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}
.about-tabs {
  display: grid;
  gap: 12px;
}
.about-tab-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.about-tab-list button {
  min-height: 54px;
  padding: 0 18px;
  color: var(--green);
  font: inherit;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(31, 61, 43, 0.1);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.about-tab-list button.is-active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}
.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 520px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(31, 61, 43, 0.1);
  box-shadow: 0 22px 58px rgba(31, 61, 43, 0.09);
}
.about-panel[hidden] { display: none; }
.about-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.about-panel > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 44px);
}
.about-panel span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-panel h3 {
  margin: 14px 0 14px;
  color: var(--green);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
}
.about-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.about-tags b {
  padding: 9px 12px;
  border: 1px solid var(--line);
  color: var(--green);
  font-size: 12px;
}

.produce-section { background: var(--ivory); }
.produce-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.55fr);
  gap: 24px;
  align-items: stretch;
}
.family-image {
  position: relative;
  margin: 0;
  min-height: 560px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.family-image::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(31, 61, 43, 0.08);
  pointer-events: none;
}
.family-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 8% 50%;
  transition: object-position 240ms ease;
}
.line-list {
  display: grid;
  gap: 10px;
}
.line-list article {
  padding: 20px;
  background: #fff;
  border-left: 5px solid var(--line-color);
  box-shadow: 0 12px 34px rgba(31, 61, 43, 0.06);
}
.line-list span {
  color: var(--line-color);
  font-weight: 900;
}
.line-list strong {
  display: block;
  margin: 8px 0;
  color: var(--green);
  font-size: 20px;
}
.line-list p { margin: 0; }

.standard-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--green);
  color: #fff;
}
.standard-media {
  min-height: 620px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}
.standard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.standard-copy h2 { color: #fff; }
.standard-copy > p:last-of-type { color: rgba(255, 255, 255, 0.76); font-size: 18px; }
.standard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}
.standard-grid article {
  padding: 24px;
  border: 1px solid rgba(245, 241, 232, 0.18);
  background: rgba(255, 255, 255, 0.06);
}
.standard-grid strong {
  display: block;
  margin: 14px 0 8px;
  font-size: 20px;
}
.standard-grid p { margin: 0; color: rgba(255, 255, 255, 0.72); }
.icon-check,
.icon-se,
.icon-leaf,
.icon-heart {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
}
.icon-check::before {
  content: "";
  width: 15px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}
.icon-leaf::before {
  content: "";
  width: 18px;
  height: 25px;
  border: 2px solid currentColor;
  border-radius: 100% 0 100% 0;
  transform: rotate(22deg);
}
.icon-heart::before { content: "♡"; font-size: 25px; }

.gift-section { background: #fff; }
.gift-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: 26px;
  align-items: stretch;
}
.gift-image {
  margin: 0;
  overflow: hidden;
  background: var(--ivory);
  box-shadow: var(--shadow);
}
.gift-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}
.gift-plan {
  display: grid;
  gap: 16px;
}
.gift-plan-head {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.gift-plan-head > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gift-plan-head h3 {
  margin: 18px 0 18px;
  color: var(--green);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.12;
}
.gift-plan-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}
.gift-plan-list {
  display: grid;
  gap: 10px;
}
.gift-plan-list div {
  padding: 20px;
  background: var(--green);
  color: #fff;
}
.gift-plan-list b {
  display: block;
  color: var(--gold);
  font-size: 18px;
}
.gift-plan-list p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}
.contact-band {
  padding: clamp(70px, 8vw, 112px) clamp(20px, 5vw, 72px);
  text-align: center;
  background: var(--green);
  color: #fff;
}
.contact-band h2 {
  max-width: 780px;
  margin: 14px auto 28px;
  color: #fff;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 22px;
}
.contact-actions span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 800;
}
.site-footer {
  padding: clamp(58px, 7vw, 92px) clamp(20px, 5vw, 72px) 28px;
  background:
    linear-gradient(135deg, rgba(200, 169, 106, 0.08), transparent 34%),
    radial-gradient(circle at 84% 10%, rgba(200, 169, 106, 0.1), transparent 30%),
    #101f17;
  color: rgba(255, 255, 255, 0.78);
}
.footer-shell {
  width: min(1220px, 100%);
  margin: 0 auto;
}
.footer-brand {
  display: grid;
  grid-template-columns: minmax(210px, 300px) minmax(0, 660px);
  justify-content: space-between;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
  padding-bottom: clamp(34px, 5vw, 54px);
  border-bottom: 1px solid rgba(245, 241, 232, 0.16);
}
.footer-logo img {
  width: min(260px, 100%);
  height: auto;
}
.footer-statement {
  display: grid;
  justify-items: start;
  gap: 24px;
}
.footer-statement p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 850;
  line-height: 1.8;
}
.footer-wecom {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(200, 169, 106, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.footer-wecom:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(200, 169, 106, 0.58);
  transform: translateY(-2px);
}
.footer-wecom img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.footer-wecom span {
  display: grid;
  gap: 3px;
}
.footer-wecom strong {
  font-size: 14px;
  line-height: 1.15;
}
.footer-wecom small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr 1.35fr;
  gap: clamp(18px, 3vw, 44px);
  padding: clamp(32px, 5vw, 48px) 0;
  border-bottom: 1px solid rgba(245, 241, 232, 0.16);
}
.footer-grid div {
  display: grid;
  align-content: start;
  gap: 12px;
}
.footer-grid small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.footer-grid strong,
.footer-grid a,
.footer-grid span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.65;
}
.footer-grid a {
  transition: color 180ms ease;
}
.footer-grid a:hover {
  color: var(--gold);
}
.footer-channels {
  grid-column: auto;
}
.footer-channels span {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-channels b {
  padding: 7px 10px;
  border: 1px solid rgba(245, 241, 232, 0.14);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}
.footer-bottom a {
  color: var(--gold);
  font-weight: 850;
}

.wecom-float {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100vw - 32px);
  padding: 12px 14px 12px 12px;
  border: 1px solid rgba(200, 169, 106, 0.44);
  border-radius: 999px;
  background: rgba(31, 61, 43, 0.94);
  color: #fff;
  box-shadow: 0 20px 50px rgba(19, 34, 25, 0.22);
  transform: translateY(-50%);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.wecom-float:hover {
  background: #244b34;
  box-shadow: 0 24px 58px rgba(19, 34, 25, 0.28);
  transform: translateY(-50%) translateX(-3px);
}

.wecom-float-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: #f3edd9;
  box-shadow: inset 0 0 0 2px rgba(200, 169, 106, 0.55);
}

.wecom-float-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wecom-float-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.wecom-float-copy strong {
  font-size: 14px;
  line-height: 1.15;
  white-space: nowrap;
}

.wecom-float-copy small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
}

@media (max-width: 1220px) {
  .produce-showcase,
  .about-section,
  .gift-grid { grid-template-columns: 1fr; }
  .family-image,
  .standard-media { min-height: 500px; }
  .about-copy { position: static; }
}

@media (max-width: 920px) {
  .desktop-nav { display: none; }
  .mobile-menu { display: block; position: relative; }
  .mobile-menu summary {
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid rgba(31, 61, 43, 0.16);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 28px rgba(31, 61, 43, 0.12);
    list-style: none;
    cursor: pointer;
  }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--green);
  }
  .mobile-menu nav {
    position: absolute;
    right: 0;
    top: 62px;
    display: grid;
    gap: 8px;
    width: min(320px, calc(100vw - 36px));
    padding: 12px;
    background: rgba(255, 250, 240, 0.96);
    border: 1px solid rgba(31, 61, 43, 0.12);
    border-radius: 24px;
    box-shadow: 0 26px 70px rgba(19, 34, 25, 0.18);
    backdrop-filter: blur(18px);
  }
  .mobile-menu nav a {
    display: grid;
    gap: 4px;
    padding: 15px 16px;
    color: var(--green);
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(31, 61, 43, 0.08);
  }
  .mobile-menu nav a:last-child {
    background: var(--green);
    color: #fff;
  }
  .mobile-menu nav strong { font-size: 16px; }
  .mobile-menu nav small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
  }
  .mobile-menu nav a:last-child small { color: rgba(255, 255, 255, 0.72); }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-brand,
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .standard-section { grid-template-columns: 1fr; }
  .standard-media { order: 2; }
  .standard-copy { order: 1; }
}

@media (max-width: 640px) {
  .site-header {
    inset: 10px 10px auto;
    padding: 10px 10px 10px 14px;
    border-radius: 28px;
  }
  .brand { min-width: 0; }
  .brand strong { font-size: 18px; }
  .brand small { display: none; }
  .hero { min-height: 88vh; }
  .hero-content { width: calc(100% - 34px); padding: 128px 0 54px; }
  .hero h1 { font-size: 45px; }
  .hero p:not(.eyebrow) { font-size: 17px; }
  .button { width: 100%; }
  .proof-strip,
  .standard-grid { grid-template-columns: 1fr; }
  .proof-strip article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .section { padding: 58px 18px; }
  .about-tab-list,
  .about-panel { grid-template-columns: 1fr; }
  .about-panel,
  .about-panel img { min-height: 0; }
  .family-image,
  .standard-media { min-height: 340px; }
  .gift-image img { min-height: 360px; }
  .contact-band { text-align: left; }
  .contact-actions { justify-content: flex-start; }
  .site-footer { padding-bottom: 112px; }
  .footer-brand,
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .wecom-float {
    right: 14px;
    top: auto;
    bottom: 18px;
    padding: 10px;
    transform: none;
  }
  .wecom-float:hover {
    transform: translateY(-2px);
  }
  .wecom-float-copy {
    display: none;
  }
}

/* Premium navigation and tomato-variety menu refinements */
.desktop-nav {
  gap: 8px;
}

.desktop-nav a {
  position: relative;
  display: grid;
  gap: 3px;
  min-width: 84px;
  padding: 9px 12px;
  border: 1px solid transparent;
  color: var(--green);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.desktop-nav a:hover {
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(31, 61, 43, 0.12);
}

.desktop-nav a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.desktop-nav a span {
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
}

.desktop-nav a small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.desktop-nav .nav-action {
  min-width: auto;
  margin-left: 8px;
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.desktop-nav .nav-action span {
  color: #fff;
}

.desktop-nav .nav-action::after {
  display: none;
}

.variety-menu {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 24px;
}

.variety-menu button {
  position: relative;
  min-height: 132px;
  padding: 18px;
  overflow: hidden;
  text-align: left;
  font: inherit;
  background: #fff;
  border: 1px solid rgba(31, 61, 43, 0.12);
  box-shadow: 0 12px 36px rgba(31, 61, 43, 0.06);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.variety-menu button::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--variety);
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.28);
}

.variety-menu button::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--variety);
}

.variety-menu button:hover,
.variety-menu button.is-active {
  border-color: color-mix(in srgb, var(--variety) 58%, #fff);
  box-shadow: 0 18px 46px rgba(31, 61, 43, 0.11);
  transform: translateY(-2px);
}

.variety-menu button.is-active::before {
  box-shadow:
    inset 0 0 0 7px rgba(255, 255, 255, 0.28),
    0 0 0 7px color-mix(in srgb, var(--variety) 18%, transparent);
}

.variety-menu b,
.variety-menu span,
.variety-menu small {
  position: relative;
  z-index: 1;
  display: block;
}

.variety-menu b {
  color: var(--green);
  font-size: 24px;
  line-height: 1;
}

.variety-menu span {
  margin-top: 8px;
  color: var(--variety);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.variety-menu small {
  max-width: 128px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.line-list article {
  opacity: 0.62;
  transform: translateX(0);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.line-list article.is-active {
  opacity: 1;
  transform: translateX(-4px);
  box-shadow: 0 18px 44px rgba(31, 61, 43, 0.12);
}

@media (max-width: 1220px) {
  .desktop-nav a {
    min-width: auto;
    padding-inline: 9px;
  }

  .desktop-nav a small {
    display: none;
  }

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

@media (max-width: 640px) {
  .variety-menu {
    grid-template-columns: 1fr;
  }

  .variety-menu button {
    min-height: 108px;
  }
}

/* Real PANDA logo integration and refined section craft */
.brand {
  min-width: 238px;
  gap: 10px;
}

.brand-symbol {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-wordmark {
  width: 132px;
  height: auto;
  object-fit: contain;
}

.hero-brand-seal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding: 9px 14px 9px 10px;
  border: 1px solid rgba(200, 169, 106, 0.42);
  border-radius: 999px;
  background: rgba(12, 29, 20, 0.44);
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
}

.hero-brand-seal img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.hero-brand-seal span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(217, 208, 189, 0.82);
}

.about-signature img {
  width: 154px;
  height: auto;
}

.about-signature span {
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0 16px;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 232, 0.2);
}

.process-rail span {
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 0 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

@media (max-width: 1220px) {
  .brand {
    min-width: auto;
  }

  .brand-wordmark {
    width: 118px;
  }
}

@media (max-width: 760px) {
  .brand-wordmark {
    width: 104px;
  }

  .hero-brand-seal {
    align-items: flex-start;
    border-radius: 14px;
  }

  .process-rail {
    grid-template-columns: 1fr;
  }

  .about-signature {
    align-items: flex-start;
    flex-direction: column;
  }
}
