:root {
  --linlee-green: #1d632e;
  --linlee-dark: #124925;
  --linlee-light: #f1f9f2;
  --linlee-cream: #faf7f2;
  --linlee-text: #1f2229;
  --linlee-muted: #646a73;
  --linlee-soft: #f9fafb;
  --linlee-border: #e5e7eb;
  --linlee-yellow: #f4d24a;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  background: #fff;
  color: var(--linlee-text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
a:hover { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; letter-spacing: 0; }

.linlee-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}
.linlee-container.narrow { max-width: 992px; }

.linlee-header {
  height: 80px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(4px);
  z-index: 1030;
}
.linlee-logo {
  color: var(--linlee-green);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
  white-space: nowrap;
}
.linlee-logo:hover { color: var(--linlee-green); }
.linlee-desktop-nav { gap: 38px; }
.linlee-nav-link {
  position: relative;
  color: var(--linlee-green);
  display: inline-flex;
  align-items: center;
  min-height: 16px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0;
  white-space: nowrap;
  transition: color .16s ease, background-color .16s ease;
}
.linlee-nav-link:hover { color: var(--linlee-dark); }
.linlee-desktop-nav > .linlee-nav-link.active {
  min-width: 137px;
  height: 32px;
  justify-content: center;
  padding: 8px 24px;
  border-radius: 999px;
  background: var(--linlee-green);
  color: #fff !important;
  font-weight: 700;
}
.linlee-desktop-nav > .linlee-nav-link.active:hover {
  background: var(--linlee-dark);
  color: #fff !important;
}
.linlee-nav-link:focus-visible,
.linlee-language:focus-visible,
.linlee-menu-button:focus-visible {
  outline: 2px solid rgba(29, 99, 46, .35);
  outline-offset: 4px;
}
.linlee-contact-link.active {
  background: var(--linlee-green);
  color: #fff !important;
}
.offcanvas-body .linlee-nav-link.active {
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--linlee-green);
  color: #fff !important;
  font-weight: 700;
}
.linlee-language {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 86px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--linlee-green);
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}
.linlee-language:hover { color: var(--linlee-dark); }
.linlee-language::after { margin-left: 2px; }
.linlee-lang-icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  flex: 0 0 16px;
}
.linlee-lang-icon::before,
.linlee-lang-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
  border-style: solid;
}
.linlee-lang-icon::before {
  inset: 2px 5px;
  border-width: 0 1px;
  border-radius: 50%;
}
.linlee-lang-icon::after {
  left: 2px;
  right: 2px;
  top: 7px;
  border-width: 1px 0 0;
}
.dropdown-menu {
  border: 1px solid rgba(18, 73, 37, .12);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(18, 73, 37, .12);
}
.dropdown-item {
  color: var(--linlee-dark);
  font-size: 13px;
  line-height: 20px;
  padding: 8px 14px;
}
.dropdown-item:active,
.dropdown-item:hover {
  color: var(--linlee-dark);
  background: var(--linlee-light);
}
.linlee-menu-button {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--linlee-green);
}
.linlee-menu-button .navbar-toggler-icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 2px;
  vertical-align: middle;
  background: currentColor;
  background-image: none;
}
.linlee-menu-button .navbar-toggler-icon::before,
.linlee-menu-button .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: currentColor;
}
.linlee-menu-button .navbar-toggler-icon::before { top: -7px; }
.linlee-menu-button .navbar-toggler-icon::after { top: 7px; }

.linlee-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 32px;
  padding: 8px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  white-space: nowrap;
  transition: color .16s ease, background-color .16s ease, border-color .16s ease;
}
.linlee-pill-green {
  background: var(--linlee-green);
  color: #fff;
}
.linlee-pill-green:hover {
  background: var(--linlee-dark);
  color: #fff;
}
.linlee-pill-outline {
  min-width: 155px;
  min-height: 34px;
  padding: 8px 32px;
  border-color: rgba(255, 255, 255, .5);
  background: transparent;
  color: #fff;
}
.linlee-pill-outline:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.home-hero {
  min-height: 880px;
  padding-top: 128px;
  background: var(--linlee-light);
  display: flex;
  flex-direction: column;
}
.home-hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 384px;
  align-items: center;
  gap: 88px;
  max-width: 1024px;
}
.home-hero-copy h1 {
  margin: 0;
  color: var(--linlee-green);
  font-size: 72px;
  font-weight: 700;
  line-height: 90px;
  letter-spacing: 0;
}
.home-hero-copy p {
  max-width: 430px;
  margin: 24px 0 0;
  color: var(--linlee-dark);
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
}
.home-hero-media img {
  width: 384px;
  height: 512px;
  object-fit: cover;
}
.home-hero-ramp {
  width: 100%;
  height: 160px;
  background: linear-gradient(180deg, var(--linlee-light) 0%, var(--linlee-green) 100%);
}

.home-image-band {
  position: relative;
  min-height: 462px;
  padding: 128px 0;
  overflow: hidden;
  color: #fff;
}
.home-image-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .36);
}
.home-band-content {
  position: relative;
  z-index: 1;
}
.home-band-title {
  max-width: 672px;
  margin: 0 auto 24px;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
}
.home-global-title {
  max-width: 672px;
  margin: 0 auto 24px;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}
.home-band-copy {
  max-width: 672px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, .9);
  font-size: 16px;
  line-height: 26px;
}
.home-split {
  min-height: 508px;
  padding: 128px 0;
  background: #fff;
}
.home-split-soft {
  min-height: 472px;
  background: rgba(241, 249, 242, .5);
}
.home-section-title {
  max-width: 560px;
  margin: 0 0 24px;
  color: var(--linlee-green);
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
}
.home-section-copy {
  max-width: 520px;
  margin: 0 0 32px;
  color: var(--linlee-muted);
  font-size: 16px;
  line-height: 28px;
}
.home-feature-img {
  width: 448px;
  height: 252px;
  object-fit: cover;
}
.home-duck-img {
  width: 384px;
  height: 216px;
}
.home-global-band {
  min-height: 404px;
}
.home-global-overlay {
  background: rgba(0, 0, 0, .42);
}
.home-contact-band {
  min-height: 600px;
  padding: 0;
  display: flex;
  align-items: center;
}
.home-contact-overlay {
  background: rgba(0, 0, 0, .18);
}
.home-contact-content {
  color: #fff;
}
.home-contact-content .home-band-title,
.home-contact-content .home-band-copy {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  text-shadow: 0 3px 16px rgba(0, 0, 0, .35);
}

.page-offset { margin-top: 80px; }
.page-section-title {
  margin: 0 0 64px;
  color: var(--linlee-green);
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}
.page-hero-title {
  margin: 0 0 24px;
  color: var(--linlee-green);
  font-size: 72px;
  font-weight: 700;
  line-height: 72px;
}
.page-hero-copy,
.section-subcopy {
  max-width: 720px;
  margin: 0 auto;
  color: var(--linlee-muted);
  font-size: 18px;
  line-height: 30px;
}

.about-hero {
  min-height: 612px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--linlee-light) 0%, #fff 52%, rgba(241, 249, 242, .5) 100%);
}
.about-hero-title {
  max-width: 561px;
  margin: 0;
  color: var(--linlee-green);
  font-size: 60px;
  font-weight: 700;
  line-height: 75px;
}
.about-title-rule {
  display: block;
  width: 96px;
  height: 4px;
  margin-top: 28px;
  background: var(--linlee-green);
}
.about-hero-visual {
  width: 100%;
  height: 320px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--linlee-dark), var(--linlee-green));
}
.brand-beginning-section {
  min-height: 497px;
  padding: 128px 0;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--linlee-dark) 0%, var(--linlee-green) 50%, var(--linlee-dark) 100%);
  color: #fff;
}
.brand-beginning-section h2 {
  margin: 0 0 32px;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}
.brand-beginning-section p {
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .9);
  font-size: 18px;
  line-height: 32px;
}
.milestones-section {
  min-height: 533px;
  padding: 112px 0;
  background: #fff;
}
.milestone-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  padding-top: 48px;
}
.milestone-track::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 3%;
  right: 3%;
  height: 2px;
  background: rgba(29, 99, 46, .22);
}
.milestone-item {
  position: relative;
  text-align: center;
}
.milestone-item::before {
  content: "";
  position: absolute;
  top: -19px;
  left: 50%;
  width: 14px;
  height: 14px;
  border: 3px solid var(--linlee-green);
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
}
.milestone-item span {
  display: block;
  margin-bottom: 14px;
  color: var(--linlee-green);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}
.milestone-item p {
  margin: 0 auto;
  max-width: 165px;
  color: var(--linlee-muted);
  font-size: 13px;
  line-height: 20px;
}
.values-section {
  min-height: 504px;
  padding: 112px 0;
  background: rgba(241, 249, 242, .4);
}
.value-card {
  min-height: 280px;
  padding: 32px;
  border-radius: 16px;
  background: var(--linlee-green);
  color: #fff;
}
.value-card h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}
.value-card p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
  line-height: 26px;
}

.products-hero {
  min-height: 381px;
  padding: 128px 0 80px;
  background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
}
.why-section {
  min-height: 622px;
  padding: 112px 0;
  background: #fff;
}
.ingredient-card {
  min-height: 278px;
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(241, 249, 242, .9), #fff);
  box-shadow: 0 1px 3px rgba(15, 23, 42, .05);
}
.ingredient-letter {
  margin-bottom: 24px;
  color: var(--linlee-green);
  font-size: 72px;
  font-weight: 700;
  line-height: 72px;
}
.ingredient-card h3 {
  margin: 0 0 16px;
  color: var(--linlee-dark);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}
.ingredient-card p {
  margin: 0;
  color: var(--linlee-muted);
  font-size: 16px;
  line-height: 26px;
}
.product-feature-section {
  min-height: 746px;
  padding: 112px 0;
  background: var(--linlee-soft);
}
.menu-tabs {
  gap: 24px;
  margin-bottom: 96px;
}
.menu-tabs button {
  min-height: 44px;
  padding: 12px 24px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #374151;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  white-space: nowrap;
}
.menu-tabs button.active {
  background: var(--linlee-green);
  color: #fff;
}
.product-feature-row h3 {
  max-width: 553px;
  margin: 0 0 24px;
  color: var(--linlee-dark);
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
}
.product-feature-row p {
  max-width: 530px;
  margin: 0 0 32px;
  color: var(--linlee-muted);
  font-size: 16px;
  line-height: 28px;
}
.product-feature-row .linlee-pill {
  min-width: 174px;
  min-height: 44px;
  padding: 12px 32px;
  font-size: 14px;
  line-height: 20px;
}
.series-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(241, 249, 242, .9), #fff);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--linlee-green);
}
.series-card div {
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
}
.series-card p {
  margin: 24px 0 0;
  color: var(--linlee-dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}
.menu-accordion-section {
  min-height: 708px;
  padding: 112px 0;
  background: #fff;
}
.menu-accordion-section .section-subcopy {
  margin-top: -48px;
  margin-bottom: 48px;
}
.linlee-menu-accordion .accordion-item {
  scroll-margin-top: 96px;
  margin-bottom: 16px;
  border: 1px solid var(--linlee-border);
  border-radius: 16px;
  overflow: hidden;
}
.linlee-menu-accordion .accordion-button {
  min-height: 76px;
  padding: 24px 32px;
  background: #fff;
  color: var(--linlee-text);
  box-shadow: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
}
.linlee-menu-accordion .accordion-button::after {
  width: auto;
  height: auto;
  margin-left: auto;
  background-image: none;
  content: "+";
  color: var(--linlee-text);
  font-size: 24px;
  line-height: 24px;
  transform: none;
}
.linlee-menu-accordion .accordion-button:not(.collapsed)::after { content: "-"; }
.linlee-menu-accordion .accordion-body {
  color: var(--linlee-muted);
  font-size: 15px;
  line-height: 26px;
  padding: 0 32px 24px;
}

.duck-hero {
  min-height: 600px;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--linlee-green);
}
.duck-hero h1 {
  margin: 0 0 48px;
  color: #fff;
  font-size: 72px;
  font-weight: 700;
  line-height: 72px;
  text-align: center;
}
.duck-hero-badge {
  position: relative;
  overflow: hidden;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  background: var(--linlee-yellow);
  box-shadow: inset 0 -20px 0 rgba(18, 73, 37, .08);
}
.duck-intro-section,
.duck-customer-section {
  min-height: 560px;
  padding: 80px 0;
  background: #fff;
  display: flex;
  align-items: center;
}
.duck-intro-section h2,
.duck-get-section h2,
.duck-customer-section h2 {
  margin: 0 0 24px;
  color: var(--linlee-text);
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
}
.duck-intro-section p,
.duck-get-section p,
.duck-customer-section p {
  margin: 0;
  color: var(--linlee-muted);
  font-size: 18px;
  line-height: 30px;
}
.duck-visual-card {
  position: relative;
  overflow: hidden;
  height: 320px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--linlee-dark), var(--linlee-green));
  display: flex;
  align-items: center;
  justify-content: center;
}
.duck-visual-card span {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--linlee-yellow);
}
.duck-get-section {
  min-height: 680px;
  padding: 80px 0;
  background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
}
.duck-get-section strong {
  display: block;
  margin-top: 24px;
  color: var(--linlee-green);
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
}
.duck-giveaway-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 720px;
  height: 280px;
  margin: 48px auto 0;
  border-radius: 24px;
  background: var(--linlee-yellow);
}
.duck-customer-section h2 { color: var(--linlee-green); }
.duck-customer-card {
  min-height: 300px;
  border-radius: 24px;
  background: #f8fafc;
  padding: 24px;
}
.duck-customer-card div {
  height: 188px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--linlee-green), var(--linlee-yellow));
}
.duck-customer-card h3 {
  margin: 24px 0 0;
  color: var(--linlee-dark);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.global-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 0;
  background: linear-gradient(135deg, #111827 0%, #1f2937 55%, var(--linlee-dark) 100%);
}
.global-hero h1 {
  margin: 0;
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
}
.china-stores-section {
  min-height: 492px;
  padding: 96px 0;
  background: var(--linlee-cream);
}
.store-city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 48px auto 0;
}
.store-city-grid div {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  color: var(--linlee-text);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .04);
}
.coming-soon-section {
  min-height: 596px;
  padding: 96px 0;
  background: #fff;
}
.coming-soon-section .page-section-title {
  color: var(--linlee-green);
  font-size: 30px;
  line-height: 36px;
}
.coming-soon-map {
  max-width: 896px;
  height: 280px;
  margin: 48px auto 0;
  border-radius: 24px;
  background: #e5e7eb;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
}
.stores-section {
  min-height: 971px;
  padding: 96px 0;
  background: #fff;
  border-top: 1px solid #f3f4f6;
}
.stores-title {
  margin: 0;
  color: var(--linlee-green);
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}
.store-filter {
  gap: 12px;
  margin: 48px 0 24px;
}
.store-filter .form-select {
  width: 208px;
  height: 44px;
  border-color: #d1d5db;
  border-radius: 8px;
  color: #374151;
  box-shadow: none;
}
.store-filter button {
  width: 120px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--linlee-green);
  color: #fff;
  font-weight: 500;
}
.nearby-title {
  margin: 0 0 24px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
.nearby-store-card {
  min-height: 174px;
  padding: 20px;
  margin-bottom: 24px;
  border: 1px solid var(--linlee-border);
  border-radius: 16px;
  background: #fff;
}
.nearby-store-card h4 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.nearby-store-card p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 24px;
}
.store-map-panel {
  min-height: 642px;
  border-radius: 16px;
  background: #e5e7eb;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
}

.contact-hero {
  min-height: 284px;
  padding: 96px 0;
  background: linear-gradient(180deg, var(--linlee-light) 0%, #fff 100%);
}
.contact-hero h1 {
  margin: 0 0 16px;
  color: var(--linlee-green);
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
}
.contact-hero p {
  margin: 0;
  color: var(--linlee-muted);
  font-size: 18px;
  line-height: 28px;
}
.franchise-process-section {
  min-height: 372px;
  padding: 80px 0;
  background: #fff;
}
.process-container {
  position: relative;
  max-width: 1024px;
}
.process-line {
  position: absolute;
  left: 102px;
  right: 102px;
  top: 154px;
  height: 2px;
  background: #d1d5db;
}
.process-steps {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
}
.process-steps div {
  width: 20%;
  text-align: center;
}
.process-steps span {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--linlee-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.process-steps p {
  max-width: 172px;
  margin: 0 auto;
  color: var(--linlee-text);
  font-size: 14px;
  line-height: 22px;
}
.contact-cards-section {
  min-height: 508px;
  padding: 80px 0;
  background: rgba(241, 249, 242, .5);
}
.contact-container {
  max-width: 992px;
}
.contact-card {
  min-height: 244px;
  padding: 32px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .04);
}
.contact-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 2px solid var(--linlee-green);
  position: relative;
}
.contact-icon::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 13px;
  width: 18px;
  height: 22px;
  border: 2px solid var(--linlee-green);
  border-radius: 5px;
}
.contact-icon.mail::before {
  left: 11px;
  top: 15px;
  width: 26px;
  height: 18px;
  border-radius: 3px;
}
.contact-icon.mail::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 18px;
  width: 22px;
  height: 12px;
  border-left: 2px solid var(--linlee-green);
  border-bottom: 2px solid var(--linlee-green);
  transform: rotate(-45deg);
}
.contact-card h3 {
  margin: 0 0 12px;
  color: var(--linlee-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}
.contact-card p {
  margin: 0 0 18px;
  color: var(--linlee-muted);
  font-size: 16px;
  line-height: 24px;
}
.contact-card a {
  color: var(--linlee-green);
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  overflow-wrap: anywhere;
}
.contact-cta-section {
  min-height: 288px;
  padding: 80px 0;
  background: var(--linlee-dark);
}
.contact-cta-section h2 {
  margin: 0 0 32px;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}
.contact-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 193px;
  min-height: 56px;
  padding: 16px 32px;
  border-radius: 999px;
  background: #fff;
  color: var(--linlee-dark);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.contact-cta-button:hover {
  color: var(--linlee-dark);
  background: rgba(255, 255, 255, .92);
}

.linlee-footer {
  min-height: 281px;
  padding: 64px 0;
  background: var(--linlee-green);
  color: #fff;
}
.linlee-footer-logo {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}
.linlee-footer p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .85);
  font-size: 13px;
  line-height: 20px;
}
.linlee-footer a {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}
.linlee-footer a:hover,
.linlee-footer a.active { color: rgba(255, 255, 255, .8); }
.linlee-footer a.linlee-footer-sub {
  color: rgba(255, 255, 255, .7);
  font-weight: 400;
}
.linlee-socials {
  display: flex;
  gap: 16px;
}
.linlee-socials span {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 50%;
}
.linlee-footer-bottom {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}
.linlee-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .85);
}

@media (min-width: 992px) {
  .linlee-header .linlee-container {
    display: grid !important;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 24px;
  }
  .linlee-desktop-nav { justify-content: center; }
}

@media (max-width: 1199.98px) {
  .linlee-desktop-nav { gap: 24px; }
}

@media (max-width: 991.98px) {
  .linlee-container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .linlee-header { height: 72px; }
  .page-offset { margin-top: 72px; }
  .home-hero {
    min-height: auto;
    padding-top: 112px;
  }
  .home-hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 48px;
    text-align: center;
    padding-bottom: 64px;
  }
  .home-hero-copy h1 {
    font-size: 64px;
    line-height: 76px;
  }
  .home-hero-copy p {
    margin-left: auto;
    margin-right: auto;
    font-size: 22px;
    line-height: 32px;
  }
  .home-hero-media img {
    width: 320px;
    height: 427px;
  }
  .home-hero-ramp { height: 96px; }
  .home-image-band,
  .home-split {
    padding: 96px 0;
  }
  .home-contact-band {
    padding: 96px 0;
  }
  .home-section-title,
  .home-section-copy,
  .home-contact-content .home-band-title,
  .home-contact-content .home-band-copy {
    max-width: none;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .home-feature-img,
  .home-duck-img {
    width: 100%;
    max-width: 448px;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .milestone-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 56px;
  }
  .milestone-track::before { display: none; }
  .store-city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .store-map-panel { min-height: 420px; }
}

@media (max-width: 767.98px) {
  .linlee-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .home-hero-copy h1 {
    font-size: 56px;
    line-height: 66px;
  }
  .home-hero-copy p {
    font-size: 20px;
    line-height: 30px;
  }
  .home-band-title,
  .home-section-title,
  .product-feature-row h3,
  .duck-intro-section h2,
  .duck-get-section h2,
  .duck-customer-section h2 {
    font-size: 36px;
    line-height: 44px;
  }
  .home-global-title,
  .page-section-title,
  .contact-cta-section h2,
  .brand-beginning-section h2,
  .stores-title {
    font-size: 30px;
    line-height: 36px;
  }
  .page-hero-title,
  .duck-hero h1,
  .global-hero h1,
  .about-hero-title {
    font-size: 44px;
    line-height: 54px;
  }
  .products-hero,
  .why-section,
  .product-feature-section,
  .menu-accordion-section,
  .milestones-section,
  .values-section,
  .brand-beginning-section,
  .duck-intro-section,
  .duck-get-section,
  .duck-customer-section,
  .china-stores-section,
  .coming-soon-section,
  .stores-section,
  .franchise-process-section,
  .contact-cards-section,
  .contact-cta-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .about-hero { min-height: auto; padding: 72px 0; }
  .about-hero-visual { height: 240px; }
  .duck-hero { min-height: 520px; }
  .duck-hero-badge {
    width: 220px;
    height: 220px;
  }
  .menu-tabs {
    gap: 12px;
    margin-bottom: 64px;
  }
  .menu-tabs button {
    width: 100%;
    white-space: normal;
  }
  .milestone-track { grid-template-columns: 1fr; }
  .store-city-grid { grid-template-columns: 1fr; }
  .store-filter .form-select,
  .store-filter button {
    width: 100%;
  }
  .process-line { display: none; }
  .process-steps {
    flex-direction: column;
    gap: 24px;
  }
  .process-steps div {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }
  .process-steps span {
    margin: 0;
    flex: 0 0 48px;
  }
  .process-steps p {
    margin: 0;
    max-width: none;
  }
  .coming-soon-map,
  .store-map-panel {
    font-size: 34px;
  }
  .linlee-footer { padding: 48px 0; }
}
.about-hero-visual, .duck-customer-image, .coming-soon-map, .store-map-panel {
  position: relative;
  overflow: hidden;
}
.section-media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.section-media-caption { position: relative; z-index: 1; }
#why-choose-us, #our-menu, #store-search { scroll-margin-top: 96px; }
.catalog-product { display: flex; align-items: center; gap: 20px; padding: 20px 0; border-top: 1px solid var(--linlee-border); }
.catalog-product img { width: 96px; height: 112px; object-fit: contain; flex: 0 0 96px; }
.catalog-product h4 { font-size: 18px; margin: 0 0 8px; }
.catalog-product p { margin: 0; white-space: pre-line; overflow-wrap: anywhere; }
.catalog-product > div { min-width: 0; }
