/* Song's Deli Lei Cha — fresh home-kitchen brand system */
:root {
  --green-900: #1a3520;
  --green-800: #23462a;
  --green-700: #2f5d3a;
  --green-600: #3d7349;
  --green-500: #4f8a58;
  --green-100: #e8f2e9;
  --green-50: #f4f8f4;
  --cream: #faf6ef;
  --cream-dark: #f0e8d8;
  --sand: #e8dcc8;
  --gold: #c4a35a;
  --gold-soft: #d4bc7a;
  --ink: #1c2419;
  --ink-soft: #4a5546;
  --muted: #6b7568;
  --white: #ffffff;
  --wa: #25d366;
  --wa-dark: #1ebe57;
  --shadow: 0 18px 50px rgba(26, 53, 32, 0.12);
  --shadow-sm: 0 8px 24px rgba(26, 53, 32, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1120px;
  --header-h: 72px;
  --font-en: "DM Sans", system-ui, sans-serif;
  --font-zh: "Noto Sans SC", "DM Sans", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-en);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(79, 138, 88, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(196, 163, 90, 0.1), transparent 50%),
    var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.lang-zh {
  font-family: var(--font-zh);
}

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

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

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--green-800);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(250, 246, 239, 0.86);
  border-bottom: 1px solid rgba(47, 93, 58, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-logo {
  display: block;
  height: 42px;
  width: auto;
  max-width: min(200px, 46vw);
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.brand-logo.footer-logo {
  height: 40px;
  max-width: 180px;
  border-radius: 7px;
}

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

.brand-tag {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-700);
  letter-spacing: 0.02em;
  line-height: 1.25;
  max-width: 9.5rem;
}

body:not(.lang-zh) .brand-tag {
  font-size: 0.7rem;
  text-transform: none;
  letter-spacing: 0.01em;
  max-width: 8.5rem;
}

@media (max-width: 720px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 1.1rem;
    padding-block: 0.4rem;
  }

  .brand {
    flex: none;
    width: auto;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .brand-text {
    display: none;
  }

  .brand-logo {
    height: 26px;
    width: auto;
    max-width: 90px;
  }

  .header-actions {
    flex: none;
    justify-self: end;
    gap: 0.55rem;
    margin-left: 0;
  }

  .lang-switch {
    flex-shrink: 0;
  }

  .lang-btn {
    padding: 0.3rem 0.55rem;
    font-size: 0.74rem;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
}

@media (max-width: 380px) {
  .header-inner {
    column-gap: 0.85rem;
  }

  .brand-logo {
    max-width: 78px;
    height: 24px;
  }

  .lang-btn {
    padding: 0.28rem 0.45rem;
    font-size: 0.7rem;
  }
}

.nav {
  display: none;
  gap: 1.35rem;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--green-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav a:hover {
  color: var(--green-800);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 0 0 auto;
}

.lang-switch {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: var(--cream-dark);
  border: 1px solid rgba(47, 93, 58, 0.1);
}

.lang-btn {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  transition: 0.2s ease;
}

.lang-btn.is-active {
  background: var(--white);
  color: var(--green-800);
  box-shadow: var(--shadow-sm);
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  gap: 5px;
  background: var(--green-50);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green-800);
  border-radius: 2px;
  transition: 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: grid;
  gap: 0.25rem;
  padding: 0.5rem 1rem 1rem;
  border-top: 1px solid rgba(47, 93, 58, 0.08);
  background: rgba(250, 246, 239, 0.98);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 0.85rem 0.5rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 10px;
}

.mobile-nav a:hover {
  background: var(--green-50);
  color: var(--green-800);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease, background 0.2s ease;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-sm {
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 1rem 1.6rem;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(145deg, var(--green-600), var(--green-800));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(47, 93, 58, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(47, 93, 58, 0.34);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(47, 93, 58, 0.2);
  color: var(--green-800);
}

.btn-ghost:hover {
  background: var(--green-50);
}

.btn-ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
  width: 100%;
  margin-top: auto;
  border-color: rgba(47, 93, 58, 0.18);
  color: var(--green-800);
  background: var(--white);
}

.btn-outline:hover {
  border-color: var(--green-600);
  background: var(--green-50);
}

.btn-whatsapp {
  background: var(--wa);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: var(--wa-dark);
}

/* Hero */
.hero {
  position: relative;
  padding: 2.5rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.leaf {
  position: absolute;
  border-radius: 60% 40% 55% 45%;
  opacity: 0.45;
  filter: blur(0.5px);
}

.leaf-1 {
  width: 180px;
  height: 220px;
  background: linear-gradient(160deg, rgba(79, 138, 88, 0.35), rgba(47, 93, 58, 0.08));
  top: 8%;
  right: 8%;
  transform: rotate(18deg);
  animation: float 9s ease-in-out infinite;
}

.leaf-2 {
  width: 120px;
  height: 150px;
  background: linear-gradient(200deg, rgba(196, 163, 90, 0.28), transparent);
  bottom: 12%;
  left: 4%;
  transform: rotate(-24deg);
  animation: float 11s ease-in-out infinite reverse;
}

.leaf-3 {
  width: 80px;
  height: 100px;
  background: rgba(79, 138, 88, 0.15);
  top: 40%;
  left: 35%;
  animation: float 13s ease-in-out infinite;
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: radial-gradient(circle at 1px 1px, var(--ink) 1px, transparent 0);
  background-size: 18px 18px;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(18deg); }
  50% { transform: translateY(-12px) rotate(22deg); }
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-600);
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--green-900);
}

body.lang-zh .hero h1 {
  font-family: var(--font-zh);
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 .line-zh,
.hero h1 .line-en {
  display: none;
}

body:not(.lang-zh) .hero h1 .line-en,
body.lang-zh .hero h1 .line-zh {
  display: block;
}

.hero-lead {
  margin: 0 0 1.5rem;
  max-width: 36rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-pills li {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(47, 93, 58, 0.12);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.hero-pills li:has(.pill-promo) {
  padding: 0;
  background: none;
  border: 0;
}

/* Hero product photo card */
.hero-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(244, 248, 244, 0.98));
  border: 1px solid rgba(47, 93, 58, 0.1);
  border-radius: 28px;
  padding: 0.85rem;
  box-shadow: var(--shadow);
  max-width: 460px;
  margin-inline: auto;
  width: 100%;
}

.hero-photo {
  position: relative;
  margin: 0 0 0.85rem;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--cream-dark);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}

.hero-card:hover .hero-photo img {
  transform: scale(1.03);
}

.hero-photo-caption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  margin: 0;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(26, 53, 32, 0.88);
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.hero-note {
  margin: 0;
  padding: 0.45rem 0.65rem 0.65rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  text-align: center;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  color: var(--green-900);
  letter-spacing: -0.02em;
}

body.lang-zh .section-head h2 {
  font-family: var(--font-zh);
  font-weight: 700;
  letter-spacing: 0;
}

.section-lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* Steps */
.order {
  background: linear-gradient(180deg, transparent, rgba(232, 242, 233, 0.55) 20%, rgba(232, 242, 233, 0.55) 80%, transparent);
}

.order-layout {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.order-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(47, 93, 58, 0.1);
  box-shadow: var(--shadow-sm);
  background: var(--cream-dark);
  position: relative;
  height: 100%;
  min-height: 220px;
}

.order-photo img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.order-photo figcaption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  margin: 0;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(26, 53, 32, 0.88);
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.steps--combined {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(47, 93, 58, 0.1);
  box-shadow: var(--shadow-sm);
  padding: 0.35rem 0.35rem;
  gap: 0;
}

.steps--combined .step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 1.15rem 1.2rem;
  transition: background 0.2s ease;
}

.steps--combined .step + .step {
  border-top: 1px solid rgba(47, 93, 58, 0.1);
}

.steps--combined .step:hover {
  transform: none;
  background: rgba(232, 242, 233, 0.45);
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(47, 93, 58, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease);
}

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

.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.06em;
}

.steps--combined .step-num {
  margin-bottom: 0;
  min-width: 1.75rem;
  padding-top: 0.15rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  color: var(--green-900);
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Products */
.product-grid {
  display: grid;
  gap: 1.15rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(47, 93, 58, 0.1);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card.featured {
  background: linear-gradient(160deg, #fff, var(--green-50));
  border-color: rgba(47, 93, 58, 0.18);
}

.product-card--with-photo {
  padding-top: 1rem;
}

.product-photo {
  margin: 0 0 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(79, 138, 88, 0.12), transparent 55%),
    linear-gradient(165deg, var(--green-50), var(--cream));
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s var(--ease);
}

.product-card:hover .product-photo img {
  transform: scale(1.03);
}

.product-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

.tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--green-800);
  color: var(--cream);
}

.tag.muted {
  background: var(--cream-dark);
  color: var(--ink-soft);
}

.price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-700);
}

.price-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}

.price-stack .price {
  font-size: 1.15rem;
  line-height: 1.2;
}

.price-stack .price-alt {
  font-size: 1.05rem;
  color: var(--green-800);
}

.price-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 0.3rem;
}

body.lang-zh .price-label {
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: none;
}

.product-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
  color: var(--green-900);
}

.product-card p {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  flex: 1;
}

.wa-preview {
  margin-top: 2.5rem;
  text-align: center;
}

.wa-preview-lead {
  margin: 0 auto 1rem;
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.wa-preview-frame {
  margin: 0 auto;
  max-width: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(47, 93, 58, 0.1);
  box-shadow: var(--shadow-sm);
  background: var(--white);
}

.wa-preview-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* Office / group promo */
.office {
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.office-banner {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(47, 93, 58, 0.97), rgba(26, 53, 32, 0.98)),
    radial-gradient(circle at 100% 0%, rgba(196, 163, 90, 0.35), transparent 50%);
  color: var(--cream);
  border-radius: 28px;
  padding: 1.75rem 1.5rem 2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 188, 122, 0.25);
}

.office-banner::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(196, 163, 90, 0.12);
  top: -100px;
  right: -60px;
  pointer-events: none;
}

.office-badge {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
  margin-inline: auto;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: linear-gradient(145deg, var(--gold-soft), var(--gold));
  color: var(--green-900);
  box-shadow: 0 12px 28px rgba(196, 163, 90, 0.35);
  border: 3px solid rgba(255, 255, 255, 0.35);
}

.office-badge-num {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

body.lang-zh .office-badge-num {
  font-size: 1.65rem;
  letter-spacing: 0;
}

.office-badge-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

body.lang-zh .office-badge-label {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.office-copy {
  position: relative;
  z-index: 1;
}

.eyebrow.light {
  color: var(--gold-soft);
}

.eyebrow.light::before {
  background: var(--gold-soft);
}

.office-copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  line-height: 1.25;
  color: var(--white);
  letter-spacing: -0.02em;
}

body.lang-zh .office-copy h2 {
  font-family: var(--font-zh);
  font-weight: 700;
  letter-spacing: 0;
}

.office-lead {
  margin: 0 0 1.15rem;
  color: rgba(250, 246, 239, 0.86);
  font-size: 1.02rem;
  max-width: 40rem;
}

.office-perks {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.office-perks li {
  position: relative;
  padding-left: 1.65rem;
  color: rgba(250, 246, 239, 0.92);
  font-size: 0.95rem;
}

.office-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%231a3520' stroke-width='2' d='M3.5 8.5l3 3 6-6'/%3E%3C/svg%3E") center / 70% no-repeat;
}

.office-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.btn-gold {
  background: linear-gradient(145deg, var(--gold-soft), var(--gold));
  color: var(--green-900);
  box-shadow: 0 10px 24px rgba(196, 163, 90, 0.35);
}

.btn-gold:hover {
  box-shadow: 0 14px 28px rgba(196, 163, 90, 0.45);
}

.office-note {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(250, 246, 239, 0.7);
  max-width: 32rem;
}

.office-clients {
  margin-top: 1.75rem;
}

.office-clients-lead {
  margin: 0 0 1.15rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 40rem;
  margin-inline: auto;
}

.office-clients-grid {
  display: grid;
  gap: 1rem;
}

.office-client-card {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(47, 93, 58, 0.1);
  box-shadow: var(--shadow-sm);
}

.office-client-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.office-client-card figcaption {
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem 0.85rem 0.9rem;
  text-align: center;
}

.office-client-card figcaption strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--green-900);
}

.office-client-card figcaption span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.35;
}

.hero-pills .pill-promo {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #e8a317, #c48a0a);
  border: 1px solid rgba(139, 90, 0, 0.35);
  color: #1a3520;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(196, 138, 10, 0.35);
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease, filter 0.2s ease;
}

.hero-pills .pill-promo:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 6px 18px rgba(196, 138, 10, 0.45);
  color: #1a3520;
}

@media (min-width: 720px) {
  .office-banner {
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 2.25rem 2.5rem;
  }

  .office-badge {
    width: 132px;
    height: 132px;
    margin-inline: 0;
  }

  .office-badge-num {
    font-size: 1.7rem;
  }

  body.lang-zh .office-badge-num {
    font-size: 1.8rem;
  }
}

/* Story */
.story {
  background: var(--green-900);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.story::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 163, 90, 0.18), transparent 65%);
  top: -120px;
  right: -80px;
}

.story-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.story-panel {
  border-radius: 24px;
  padding: 2rem;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(160deg, rgba(61, 115, 73, 0.5), rgba(26, 53, 32, 0.2)),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 12px,
      rgba(255, 255, 255, 0.03) 12px,
      rgba(255, 255, 255, 0.03) 13px
    );
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.story-badge {
  align-self: flex-start;
  margin-bottom: auto;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 188, 122, 0.5);
  color: var(--gold-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-quote-en,
.story-quote-zh {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  line-height: 1.3;
  color: var(--white);
}

.story-quote-zh {
  display: none;
  font-family: var(--font-zh);
  font-weight: 600;
}

body.lang-zh .story-quote-en {
  display: none;
}

body.lang-zh .story-quote-zh {
  display: block;
}

.story .eyebrow {
  color: var(--gold-soft);
}

.story .eyebrow::before {
  background: var(--gold-soft);
}

.story h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  line-height: 1.2;
  color: var(--white);
}

body.lang-zh .story h2 {
  font-family: var(--font-zh);
  font-weight: 700;
}

.story .section-lead {
  color: rgba(250, 246, 239, 0.78);
  margin-bottom: 1.25rem;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  color: rgba(250, 246, 239, 0.9);
  font-size: 0.98rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%231a3520' stroke-width='2' d='M3.5 8.5l3 3 6-6'/%3E%3C/svg%3E") center / 70% no-repeat;
}

/* Delivery */
.delivery-panel {
  background: var(--white);
  border-radius: 24px;
  padding: 1.75rem;
  border: 1px solid rgba(47, 93, 58, 0.1);
  box-shadow: var(--shadow);
}

.days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.day {
  min-width: 0;
  padding: 0.75rem 0.25rem;
  text-align: center;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
}

/* Delivery days — cyan / teal */
.day.is-on {
  background: linear-gradient(145deg, #2ec4b6, #1aa6a0);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(26, 166, 160, 0.28);
}

/* No delivery — red */
.day.is-off {
  background: linear-gradient(145deg, #f07167, #e0453a);
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(224, 69, 58, 0.22);
}

.days-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.legend-item i {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 4px;
  display: inline-block;
}

.legend-on i {
  background: #2ec4b6;
  box-shadow: 0 0 0 2px rgba(46, 196, 182, 0.25);
}

.legend-off i {
  background: #e0453a;
  box-shadow: 0 0 0 2px rgba(224, 69, 58, 0.2);
}

@media (max-width: 520px) {
  .days {
    gap: 0.35rem;
  }

  .day {
    padding: 0.65rem 0.15rem;
    font-size: 0.78rem;
    border-radius: 10px;
  }
}

.delivery-meta {
  display: grid;
  gap: 1rem;
}

.meta-card {
  background: var(--green-50);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.2rem;
}

.meta-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: var(--green-800);
}

.meta-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* Voices */
.voices {
  background: linear-gradient(180deg, transparent, rgba(232, 220, 200, 0.35));
}

.quote-grid {
  display: grid;
  gap: 1rem;
}

.quote-card {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
  border: 1px solid rgba(47, 93, 58, 0.08);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.quote-card::before {
  content: "“";
  position: absolute;
  top: 0.4rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: rgba(47, 93, 58, 0.12);
}

.quote-card p {
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.quote-card footer {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-700);
}

/* CTA */
.cta {
  padding-top: 2rem;
}

.cta-box {
  display: grid;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: var(--white);
  border-radius: 28px;
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(196, 163, 90, 0.15);
  right: -60px;
  bottom: -80px;
}

.cta-box h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  position: relative;
  z-index: 1;
}

body.lang-zh .cta-box h2 {
  font-family: var(--font-zh);
  font-weight: 700;
}

.cta-box p {
  margin: 0;
  opacity: 0.88;
  max-width: 34rem;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 6rem;
  border-top: 1px solid rgba(47, 93, 58, 0.08);
}

.footer-inner {
  display: grid;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.footer-brand strong {
  display: block;
  color: var(--green-900);
}

.footer-brand p {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-note,
.footer-copy {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Float WhatsApp */
.float-wa {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s var(--ease);
}

.float-wa:hover {
  transform: scale(1.06);
}

/* Responsive */
@media (min-width: 720px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    display: flex;
  }

  .mobile-nav {
    display: none !important;
  }

  .order-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1.5rem;
    align-items: stretch;
  }

  .order-photo {
    min-height: 0;
  }

  .order-photo img {
    min-height: 0;
    position: absolute;
    inset: 0;
  }

  .office-clients-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .office-client-card img {
    height: 180px;
  }

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

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

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

  .cta-box {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    padding: 2.75rem;
  }

  .cta-actions {
    justify-content: flex-end;
  }
}

@media (min-width: 960px) {
  .hero {
    padding: 3.5rem 0 5rem;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }

  .story-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }

  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-card.featured {
    grid-column: auto;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .leaf,
  .step,
  .product-card,
  .btn,
  .float-wa {
    animation: none !important;
    transition: none !important;
  }

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