/* ============================================
   FlexiMagCreative.com — v2 Stylesheet
   Palette: Warm Orange #E07A3C / Cream #FFF9F2 / Deep Coffee #2D2418
   Font: Poppins (display, geometric round) + Inter (body)
   Layout: Story-driven (Aesop / MOO inspired)
   ============================================ */

:root {
  --c-orange: #E07A3C;
  --c-orange-dark: #C25E1F;
  --c-orange-light: #F4A876;
  --c-orange-soft: #FCE8D5;
  --c-cream: #FFF9F2;
  --c-cream-deep: #F7EFE3;
  --c-coffee: #2D2418;
  --c-coffee-mid: #5C4A33;
  --c-coffee-soft: #8C7A60;
  --c-white: #FFFFFF;
  --c-line: #EBE1D1;
  --c-gray-bg: #F5F0E6;
  --shadow-sm: 0 2px 10px rgba(45,36,24,.05);
  --shadow-md: 0 8px 28px rgba(45,36,24,.09);
  --shadow-lg: 0 20px 50px rgba(45,36,24,.14);
  --shadow-orange: 0 12px 32px rgba(224,122,60,.22);
  --radius: 14px;
  --radius-sm: 8px;
  --container: 1280px;
  --font-display: 'Poppins', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', 'PingFang SC', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--c-coffee);
  line-height: 1.65;
  background: var(--c-cream);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--c-coffee); text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-orange); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* ---------- Typography (Poppins display) ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--c-coffee);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.015em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: .78rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--c-orange);
  font-weight: 600;
}
.eyebrow::before {
  content: ''; width: 28px; height: 2px; background: var(--c-orange); border-radius: 2px;
}

.section { padding: 104px 0; }
.section-tight { padding: 64px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .eyebrow { justify-content: center; margin-bottom: 16px; }
.section-header p { color: var(--c-coffee-soft); max-width: 640px; margin: 16px auto 0; font-size: 1.05rem; }

/* ---------- Buttons (rounded pill) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px; font-weight: 600; font-size: .95rem;
  border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; transition: all .25s; text-align: center;
  font-family: var(--font-display); letter-spacing: .01em;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--c-orange); color: var(--c-white); box-shadow: var(--shadow-orange); }
.btn-primary:hover { background: var(--c-orange-dark); color: var(--c-white); box-shadow: 0 16px 36px rgba(224,122,60,.32); }
.btn-coffee { background: var(--c-coffee); color: var(--c-cream); }
.btn-coffee:hover { background: #1A140C; color: var(--c-cream); }
.btn-outline { background: transparent; color: var(--c-coffee); border-color: var(--c-coffee); }
.btn-outline:hover { background: var(--c-coffee); color: var(--c-cream); }
.btn-outline-light { background: transparent; color: var(--c-cream); border-color: rgba(255,249,242,.5); }
.btn-outline-light:hover { background: var(--c-cream); color: var(--c-coffee); }
.btn-arrow::after { content: '→'; transition: transform .25s; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,249,242,.92);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--c-line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 160px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { display: block; height: 140px; width: auto; max-width: 600px; transition: height .3s; }
.site-footer .brand { display: inline-flex; padding: 4px 10px; background: var(--c-cream); border-radius: 8px; }
.site-footer .brand-logo { height: 120px; }
.footer-brand p { font-size: 1.05rem; line-height: 1.6; color: var(--c-cream); margin-top: 12px; }
@media (max-width: 768px) {
  .nav { height: 120px; }
  .brand-logo { height: 100px; max-width: 400px; }
  .site-footer .brand { padding: 4px 8px; }
  .site-footer .brand-logo { height: 90px; }
}
.brand-mark {
  width: 40px; height: 40px; background: var(--c-orange);
  display: grid; place-items: center; color: var(--c-cream);
  font-family: var(--font-display); font-weight: 700; border-radius: 50%;
  font-size: 1.15rem;
  box-shadow: var(--shadow-orange);
}
.brand-name { font-family: var(--font-display); font-size: 1.35rem; color: var(--c-coffee); font-weight: 700; letter-spacing: -.02em; }
.brand-name .accent { color: var(--c-orange); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { font-family: var(--font-display); font-size: .95rem; font-weight: 500; color: var(--c-coffee-mid); }
.nav-links a:hover, .nav-links a.active { color: var(--c-orange); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--c-coffee); margin: 5px 0; transition: .25s; border-radius: 2px; }

/* ---------- Hero (Story-driven) ---------- */
.hero {
  position: relative; padding: 100px 0 120px; overflow: hidden;
  background: var(--c-cream);
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, var(--c-orange-soft) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero::after {
  content: ''; position: absolute; bottom: -200px; left: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,122,60,.08) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 1fr; gap: 80px; align-items: center; }
.hero h1 { margin-bottom: 28px; }
.hero h1 .accent {
  color: var(--c-orange); position: relative; display: inline-block;
}
.hero h1 .accent::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px; height: 12px;
  background: var(--c-orange-soft); z-index: -1; border-radius: 4px;
}
.hero p.lead { font-size: 1.18rem; color: var(--c-coffee-mid); margin-bottom: 40px; max-width: 540px; line-height: 1.7; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-cta-text { font-size: .9rem; color: var(--c-coffee-soft); }
.hero-stats {
  display: flex; gap: 56px; margin-top: 64px; padding-top: 40px;
  border-top: 1px dashed var(--c-line);
}
.stat .num { font-family: var(--font-display); font-size: 2.4rem; color: var(--c-orange); font-weight: 700; letter-spacing: -.03em; }
.stat .label { font-size: .82rem; color: var(--c-coffee-soft); font-weight: 500; }

/* Hero visual — collage of "magnet cards" */
.hero-visual {
  position: relative; aspect-ratio: 1; max-width: 520px; justify-self: end;
}
.hero-card {
  position: absolute; border-radius: var(--radius);
  display: grid; place-items: center; color: var(--c-coffee);
  font-family: var(--font-display); font-weight: 600;
  text-align: center; padding: 20px;
  box-shadow: var(--shadow-md);
  transition: transform .4s;
}
.hero-card:hover { transform: scale(1.04) rotate(0deg) !important; }
.hero-card-1 {
  top: 0; left: 8%; width: 46%; aspect-ratio: 1;
  background: var(--c-orange); color: var(--c-cream);
  transform: rotate(-6deg);
  font-size: 1.1rem;
}
.hero-card-2 {
  top: 12%; right: 0; width: 42%; aspect-ratio: 1;
  background: var(--c-cream-deep); border: 2px solid var(--c-orange-soft);
  transform: rotate(8deg);
  font-size: 1rem;
}
.hero-card-3 {
  bottom: 4%; left: 0; width: 42%; aspect-ratio: 1.2;
  background: var(--c-coffee); color: var(--c-orange-light);
  transform: rotate(-4deg);
  font-size: .95rem;
}
.hero-card-4 {
  bottom: 0; right: 12%; width: 38%; aspect-ratio: 1;
  background: var(--c-white); border: 2px dashed var(--c-orange);
  transform: rotate(10deg);
  font-size: .9rem; color: var(--c-orange);
}

/* ---------- Trust Bar ---------- */
.trust-bar { background: var(--c-cream-deep); padding: 36px 0; }
.trust-bar .container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 28px; align-items: center; }
.trust-item { display: flex; gap: 14px; align-items: center; color: var(--c-coffee-mid); font-size: .92rem; font-weight: 500; }
.trust-icon {
  width: 38px; height: 38px; background: var(--c-orange-soft); border-radius: 50%;
  display: grid; place-items: center; color: var(--c-orange); font-weight: 700; flex-shrink: 0;
}

/* ---------- Story Section (Narrative blocks) ---------- */
.story {
  padding: 120px 0; background: var(--c-cream);
}
.story-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  margin-bottom: 120px;
}
.story-row:last-child { margin-bottom: 0; }
.story-row.reverse { direction: rtl; }
.story-row.reverse > * { direction: ltr; }
.story-text { padding: 24px 0; }
.story-text .eyebrow { margin-bottom: 18px; }
.story-text h2 { margin-bottom: 24px; }
.story-text p { color: var(--c-coffee-mid); margin-bottom: 20px; font-size: 1.05rem; line-height: 1.8; }
.story-text .link {
  display: inline-flex; gap: 8px; color: var(--c-orange); font-weight: 600;
  font-family: var(--font-display); margin-top: 16px;
}
.story-text .link::after { content: '→'; transition: transform .25s; }
.story-text .link:hover::after { transform: translateX(4px); }

.story-visual {
  aspect-ratio: 1; border-radius: var(--radius);
  background: none !important;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: none !important;
  border: none !important;
}
.story-img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  padding: 0 !important; margin: 0 !important;
  transform: none !important; /* Remove the zoom to show all information */
  mix-blend-mode: multiply; /* Key fix: Makes the image's white background transparent to blend with the cream page */
}
.story-visual-inner {
  font-family: var(--font-display); font-size: 1.4rem; color: var(--c-coffee);
  font-weight: 600; text-align: center; padding: 32px;
}
.story-visual.coffee { background: var(--c-coffee); color: var(--c-orange-light); }
.story-visual.coffee .story-visual-inner { color: var(--c-orange-light); }
.story-visual.cream { background: var(--c-cream-deep); border: 1px solid var(--c-line); }

/* Material grid (Home · OUR CRAFT) */
.material-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.material-card {
  background: var(--c-cream-deep); border: 1px solid var(--c-line);
  border-radius: 10px; padding: 18px 18px 16px;
  transition: border-color .2s, transform .2s;
}
.material-card:hover {
  border-color: var(--c-orange); transform: translateY(-2px);
}
.material-card .material-name {
  font-family: var(--font-display); font-weight: 600;
  color: var(--c-coffee); font-size: 1.05rem; margin-bottom: 6px;
  letter-spacing: .2px;
}
.material-card p {
  font-size: .82rem; color: var(--c-coffee-mid); line-height: 1.45; margin: 0;
}
@media (max-width: 640px) {
  .material-grid { grid-template-columns: 1fr; }
}

/* Customization process steps */
.process-list {
  display: flex; flex-direction: column; gap: 24px; max-width: 900px; margin: 0 auto;
}
.process-step {
  display: grid; grid-template-columns: 90px 1fr; gap: 28px;
  background: var(--c-white); border: 1px solid var(--c-line);
  border-radius: 14px; padding: 28px 32px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.process-step:hover {
  border-color: var(--c-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 122, 60, 0.08);
}
.process-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 2.8rem; color: var(--c-orange); line-height: 1;
  letter-spacing: -1px;
}
.process-body h3 {
  font-family: var(--font-display); font-size: 1.25rem;
  color: var(--c-coffee); margin: 4px 0 10px;
}
.process-tag {
  display: inline-block; margin-left: 8px;
  background: var(--c-orange); color: var(--c-white);
  font-family: var(--font-body); font-size: .7rem; font-weight: 600;
  padding: 3px 10px; border-radius: 12px; letter-spacing: .3px;
  vertical-align: middle;
}
.process-body p {
  color: var(--c-coffee-mid); margin-bottom: 12px; line-height: 1.6;
}
.process-list-bullets {
  list-style: none; padding: 0; margin: 0;
}
.process-list-bullets li {
  position: relative; padding-left: 22px; margin-bottom: 6px;
  font-size: .9rem; color: var(--c-coffee-mid); line-height: 1.5;
}
.process-list-bullets li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--c-orange); font-weight: 700;
}
@media (max-width: 640px) {
  .process-step { grid-template-columns: 1fr; gap: 12px; padding: 24px; }
  .process-num { font-size: 2.2rem; }
}

.story-numbers {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 28px;
}
.story-num {
  padding: 20px; background: var(--c-cream-deep); border-radius: var(--radius-sm);
  border-left: 3px solid var(--c-orange);
}
.story-num .n { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--c-orange); }
.story-num .l { font-size: .85rem; color: var(--c-coffee-mid); }

/* ---------- Category Cards (large, rounded, warm) ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.cat-card {
  position: relative; aspect-ratio: 1/1; border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  transition: transform .35s, box-shadow .35s;
  background: var(--c-cream-deep);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card-bg {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 5rem;
}
.cat-card.c-orange { background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-orange-light) 100%); }
.cat-card.c-orange .cat-card-bg { color: rgba(255,255,255,.25); }
.cat-card.c-coffee { background: linear-gradient(135deg, var(--c-coffee) 0%, var(--c-coffee-mid) 100%); }
.cat-card.c-coffee .cat-card-bg { color: rgba(244,168,118,.3); }
.cat-card.c-cream { background: var(--c-cream-deep); border: 1px solid var(--c-line); }
.cat-card.c-cream .cat-card-bg { color: var(--c-orange-light); opacity: .35; }
.cat-card.c-soft { background: var(--c-orange-soft); }
.cat-card.c-soft .cat-card-bg { color: var(--c-orange); opacity: .4; }
.cat-card-overlay {
  position: absolute; inset: 0; padding: 28px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.cat-card.c-orange .cat-card-overlay { color: var(--c-cream); }
.cat-card.c-coffee .cat-card-overlay { color: var(--c-cream); }
.cat-card.c-cream .cat-card-overlay { color: var(--c-coffee); }
.cat-card.c-soft .cat-card-overlay { color: var(--c-coffee); }
.cat-card-overlay h3 { color: inherit; margin-bottom: 6px; font-size: 1.3rem; }
.cat-card-overlay p { font-size: .92rem; opacity: .85; line-height: 1.5; }
.cat-card-count {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,249,242,.95); color: var(--c-coffee);
  padding: 6px 14px; border-radius: 100px; font-size: .8rem;
  font-weight: 600; font-family: var(--font-display);
}
.cat-card.c-cream .cat-card-count { background: var(--c-coffee); color: var(--c-cream); }
.cat-card-tier {
  position: absolute; top: 20px; left: 20px;
  background: var(--c-orange); color: var(--c-white);
  padding: 6px 14px; border-radius: 100px; font-size: .75rem;
  font-weight: 700; font-family: var(--font-display);
  letter-spacing: .04em; text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(224,122,60,.35);
  z-index: 2;
}
.hero-card-placeholder {
  display: flex; align-items: center; justify-content: center;
  text-align: center; font-family: var(--font-display);
  font-weight: 600; color: var(--c-coffee); line-height: 1.3;
  background: var(--c-cream-deep);
}

/* ---------- Hero Benefit Badges ---------- */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(224, 122, 60, 0.10);
  border: 1px solid rgba(224, 122, 60, 0.35);
  border-radius: 100px;
  color: var(--c-coffee);
  font-size: .88rem;
  font-family: var(--font-display);
  font-weight: 500;
  white-space: nowrap;
}
.hero-badge strong {
  color: var(--c-orange);
  font-weight: 700;
  margin-right: 5px;
}

/* ---------- Craft Grid (5 Magnet Crafts) ---------- */
.craft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.craft-card {
  position: relative;
  background: var(--c-white);
  padding: 32px 28px 26px;
  border-radius: 14px;
  border-top: 3px solid var(--c-orange);
  box-shadow: 0 2px 12px rgba(45, 36, 24, 0.04);
  transition: transform .25s ease, box-shadow .25s ease;
}
.craft-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(45, 36, 24, 0.10);
}
.craft-card-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--c-orange);
  color: var(--c-white);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-family: var(--font-display);
}
.craft-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: var(--c-coffee);
}
.craft-card-desc {
  color: var(--c-coffee-mid);
  font-size: .92rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.craft-card-best {
  padding: 14px 16px;
  background: var(--c-cream-deep);
  border-left: 3px solid var(--c-orange);
  border-radius: 8px;
  margin-bottom: 14px;
  font-size: .88rem;
  color: var(--c-coffee);
  line-height: 1.55;
}
.craft-card-best strong {
  color: var(--c-orange);
  font-weight: 700;
}
.craft-card-meta {
  font-size: .8rem;
  color: var(--c-coffee-mid);
  opacity: .85;
  letter-spacing: .01em;
}

/* ---------- L3 · 4-Step Process ---------- */
.process-section { padding: 90px 0; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 50px;
  position: relative;
}
.process-grid .process-step {
  position: relative;
  background: var(--c-white);
  padding: 36px 28px 28px;
  border-radius: 14px;
  border-top: 3px solid var(--c-orange);
  box-shadow: 0 2px 12px rgba(45, 36, 24, 0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.process-grid .process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(45, 36, 24, 0.10);
}
.process-grid .process-num {
  position: absolute;
  top: -18px;
  right: 22px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.4rem;
  color: var(--c-orange);
  opacity: 0.18;
  line-height: 1;
  letter-spacing: -0.03em;
}
.process-grid .process-icon { font-size: 2.4rem; line-height: 1; margin-bottom: 16px; }
.process-grid .process-step h3 { font-size: 1.18rem; margin-bottom: 10px; color: var(--c-coffee); }
.process-grid .process-step p { font-size: .92rem; color: var(--c-coffee-mid); line-height: 1.65; margin-bottom: 16px; }
.process-grid .process-time {
  display: inline-block;
  padding: 5px 14px;
  background: var(--c-cream-deep);
  color: var(--c-orange);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .04em;
  border-radius: 100px;
}

/* ---------- L2 · Comparison Table ---------- */
.compare-table-wrap {
  margin-top: 40px;
  overflow-x: auto;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(45, 36, 24, 0.06);
}
.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--c-white);
  font-family: var(--font-body);
}
.compare-table th, .compare-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(45, 36, 24, 0.07);
  vertical-align: middle;
}
.compare-table thead th {
  background: var(--c-cream-deep);
  padding: 24px 22px;
  border-bottom: 2px solid rgba(224, 122, 60, 0.2);
  vertical-align: top;
}
.compare-table thead th strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--c-coffee);
  margin-bottom: 4px;
}
.compare-table thead th span {
  font-size: .82rem;
  color: var(--c-coffee-mid);
  font-weight: 500;
}
.compare-table .th-us {
  background: var(--c-orange);
  position: relative;
}
.compare-table .th-us strong, .compare-table .th-us span { color: var(--c-white); }
.compare-table .th-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--c-white);
  color: var(--c-orange);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  border-radius: 100px;
  margin-bottom: 10px;
  font-family: var(--font-display);
  text-transform: uppercase;
}
.compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--c-coffee);
  font-family: var(--font-display);
  background: var(--c-cream-deep);
  width: 22%;
}
.compare-table .td-us {
  background: rgba(224, 122, 60, 0.06);
  color: var(--c-coffee);
  border-left: 3px solid var(--c-orange);
}
.compare-table .td-us strong { color: var(--c-orange); display: block; margin-bottom: 2px; }
.compare-table .td-us span { font-size: .82rem; color: var(--c-coffee-mid); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody td { font-size: .93rem; color: var(--c-coffee-mid); line-height: 1.55; }

/* ---------- L4 · FAQ Accordion ---------- */
.faq-list {
  max-width: 860px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--c-white);
  border-radius: 12px;
  border: 1px solid rgba(45, 36, 24, 0.08);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] {
  border-color: rgba(224, 122, 60, 0.4);
  box-shadow: 0 6px 22px rgba(45, 36, 24, 0.06);
}
.faq-item summary {
  padding: 22px 26px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--c-coffee);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-cream-deep);
  color: var(--c-orange);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  transition: transform .25s ease, background .25s ease;
}
.faq-item[open] summary::after {
  content: '−';
  background: var(--c-orange);
  color: var(--c-white);
}
.faq-item summary:hover { color: var(--c-orange); }
.faq-body {
  padding: 0 26px 24px;
  color: var(--c-coffee-mid);
  font-size: .94rem;
  line-height: 1.75;
}
.faq-body p { margin: 0 0 10px; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body strong { color: var(--c-coffee); font-weight: 600; }

/* ---------- Certifications Grid ---------- */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.cert-card {
  background: var(--c-white);
  padding: 30px 26px;
  border-radius: 14px;
  border-top: 3px solid var(--c-orange);
  box-shadow: 0 2px 10px rgba(45, 36, 24, 0.05);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(45, 36, 24, 0.10);
}
.cert-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  line-height: 1;
}
.cert-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--c-orange);
  letter-spacing: .03em;
  margin-bottom: 4px;
}
.cert-fullname {
  font-size: .78rem;
  color: var(--c-coffee-mid);
  margin-bottom: 14px;
  font-style: italic;
  min-height: 32px;
}
.cert-desc {
  font-size: .88rem;
  color: var(--c-coffee);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cert-market {
  padding-top: 14px;
  border-top: 1px solid rgba(45, 36, 24, 0.08);
  font-size: .82rem;
  color: var(--c-coffee-mid);
  font-weight: 500;
}

/* ---------- WhatsApp Floating Button (left-bottom) ---------- */
#waFab {
  position: fixed;
  left: 28px;
  bottom: 28px;
  width: 78px;
  height: 78px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 3px 10px rgba(0, 0, 0, 0.18);
  z-index: 9999;
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
  animation: waPulse 2.4s ease-in-out infinite;
}
#waFab:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.65), 0 5px 14px rgba(0, 0, 0, 0.22);
}
#waFab svg { display: block; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 3px 10px rgba(0, 0, 0, 0.18), 0 0 0 0 rgba(37, 211, 102, 0.6); }
  50%      { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 3px 10px rgba(0, 0, 0, 0.18), 0 0 0 18px rgba(37, 211, 102, 0); }
}
@media (max-width: 768px) {
  #waFab { width: 64px; height: 64px; left: 16px; bottom: 16px; }
  #waFab svg { width: 36px; height: 36px; }
}

/* ---------- Get Quote Floating Button (right-bottom) ---------- */
#quoteFab {
  position: fixed;
  right: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  background: var(--c-orange);
  color: var(--c-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(224, 122, 60, 0.45), 0 3px 10px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  z-index: 9999;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
#quoteFab:hover {
  transform: translateY(-3px) scale(1.04);
  background: #c9692f;
  box-shadow: 0 12px 32px rgba(224, 122, 60, 0.6), 0 5px 14px rgba(0, 0, 0, 0.2);
  color: var(--c-white);
}
.quote-fab-icon { font-size: 1.2rem; line-height: 1; }
.quote-fab-text { white-space: nowrap; }
@media (max-width: 768px) {
  #quoteFab { right: 16px; bottom: 16px; padding: 14px 20px; font-size: .92rem; }
  .quote-fab-text { display: none; }
  .quote-fab-icon { font-size: 1.4rem; }
  #quoteFab { width: 54px; height: 54px; padding: 0; justify-content: center; border-radius: 50%; }
}

/* ---------- Product Grid (Luxopack Style) ---------- */
.product-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
  gap: 24px; 
  margin-top: 32px;
}

.product-card {
  background: var(--c-white); 
  border-radius: 12px;
  overflow: hidden; 
  transition: transform .35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow .35s ease, border-color .35s ease; 
  border: 1.5px solid rgba(45,36,24,.06);
  display: flex;
  flex-direction: column;
}

.product-card:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 20px 45px rgba(45,36,24,.1); 
  border-color: var(--c-orange); 
}

.product-card-img {
  aspect-ratio: 1.1; /* Optimized ratio for photography */
  background: #F9F7F2; 
  display: grid; 
  place-items: center;
  color: var(--c-coffee); 
  font-family: var(--font-display); 
  font-size: 1rem; 
  font-weight: 500;
  padding: 16px; 
  text-align: center; 
  position: relative;
}

.product-card-desc-wrap {
  height: 48px; /* Fixed height for strictly 2 lines */
  overflow: hidden;
  margin-bottom: 26px;
}

.product-card-desc {
  font-size: 0.88rem;
  color: var(--c-coffee-mid);
  line-height: 1.45;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.spec-tag {
  background: var(--c-cream-deep);
  color: var(--c-coffee-mid);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: .65rem;
  font-weight: 600;
  min-width: 72px; /* Standardize tag length */
  text-align: center;
}

.btn-quote:hover {
  background: var(--c-orange-dark);
  box-shadow: 0 10px 24px rgba(224,122,60,.35);
  transform: translateY(-2px);
}


.product-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 15px 35px rgba(45,36,24,.12); 
  border-color: var(--c-orange-light); 
}

.product-card-img {
  aspect-ratio: 1; 
  background: #F9F7F2; 
  display: grid; 
  place-items: center;
  color: var(--c-coffee); 
  font-family: var(--font-display); 
  font-size: 1rem; 
  font-weight: 500;
  padding: 20px; 
  text-align: center; 
  position: relative;
}

.product-card-material-tag {
  position: absolute; 
  top: 12px; 
  right: 12px;
  background: var(--c-coffee); 
  color: var(--c-orange-light); 
  padding: 3px 10px;
  font-size: .62rem; 
  font-weight: 700; 
  border-radius: 4px; 
  letter-spacing: .05em;
  font-family: var(--font-display); 
  text-transform: uppercase;
  z-index: 2;
}

.product-card-badge {
  position: absolute; 
  top: 14px; 
  left: 14px;
  background: var(--c-orange); 
  color: var(--c-white); 
  padding: 4px 14px;
  font-size: .62rem; 
  font-weight: 800; 
  border-radius: 4px; 
  letter-spacing: .08em;
  font-family: var(--font-display); 
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(224,122,60,.2);
}

.product-card-desc-wrap {
  height: 60px; /* Further increased to prevent any cutoff */
  overflow: hidden;
  margin-bottom: 20px;
}

.product-card-desc {
  font-size: 0.88rem;
  color: #7A7267;
  line-height: 1.55; /* Better spacing between lines */
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-app-badge-wrap {
  height: 32px;
  margin-bottom: 28px; /* More space before specs grid */
  display: flex;
  align-items: center;
}

.product-app-badge {
  display: inline-block;
  background: var(--c-coffee);
  color: var(--c-white);
  padding: 6px 18px;
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 800;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: 0 4px 12px rgba(45,36,24,0.12);
}

.spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
  min-height: 28px; /* Maintain row height */
}


.product-card-body { 
  padding: 20px 20px 12px; 
  flex-grow: 1;
}

.product-card-body .sku { 
  font-size: .7rem; 
  color: var(--c-orange); 
  font-weight: 700; 
  letter-spacing: .08em; 
  margin-bottom: 6px; 
  text-transform: uppercase;
}

.product-card h3 { 
  font-size: 1.05rem; 
  margin-bottom: 12px; 
  line-height: 1.4; 
  min-height: 2.8em; 
  color: var(--c-coffee);
  font-weight: 700;
}

/* Metadata Grid (Strict 3 columns) */
.product-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(45,36,24,.06);
  align-items: stretch;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 48px; /* Ensure equal height */
}

.meta-label {
  font-size: .62rem;
  color: var(--c-coffee-soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.meta-value {
  font-size: .78rem;
  color: var(--c-coffee);
  font-weight: 800; /* Extra bold for commercial values */
  font-family: var(--font-display);
}

.btn-quote {
  width: 100%;
  background: linear-gradient(135deg, var(--c-orange) 0%, #D4692B 100%); /* Premium gradient */
  color: var(--c-white);
  padding: 18px 32px;
  border-radius: 6px;
  font-size: .95rem;
  font-weight: 700;
  font-family: var(--font-display);
  text-align: center;
  transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-quote::after {
  content: '→'; /* Added directional arrow */
  font-size: 1.1rem;
  transition: transform .3s ease;
}

.btn-quote:hover::after {
  transform: translateX(4px);
}

.btn-quote:hover {
  background: linear-gradient(135deg, #FF8C52 0%, var(--c-orange) 100%);
  box-shadow: 0 10px 24px rgba(224,122,60,.35);
  transform: translateY(-2px);
}


/* Spec Tags (pill style) */
.spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.spec-tag {
  background: var(--c-cream-deep);
  color: var(--c-coffee-mid);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: .68rem;
  font-weight: 500;
}

.product-card-actions {
  padding: 0 20px 20px;
}

.product-card-desc-wrap {
  height: 52px; /* Fixed height for 2 lines */
  overflow: hidden;
  margin-bottom: 26px; /* Increased spacing to app-badge by ~8px */
}

.product-card-desc {
  font-size: 0.88rem;
  color: var(--c-coffee-mid);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Maximum 2 lines */
  -webkit-box-orient: vertical;
}

.product-app-badge {
  display: inline-block;
  background: var(--c-coffee);
  color: var(--c-white);
  padding: 6px 16px;
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 800;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 24px;
}

.product-card-desc-wrap {
  height: 80px; /* Locked height for 3 lines of text */
  overflow: hidden;
  margin-bottom: 30px; /* Clear vertical space for the badge */
}

.product-card-desc {
  font-size: 0.88rem;
  color: #7A7267;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.product-app-badge-wrap {
  height: 36px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
}


.product-card-desc {
  font-size: 0.88rem;
  color: var(--c-coffee-mid);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-app-badge {
  display: inline-block;
  background: var(--c-coffee);
  color: var(--c-white);
  padding: 6px 18px;
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 800;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 26px;
  box-shadow: 0 4px 12px rgba(45,36,24,0.12);
}

.btn-quote {
  width: 100%;
  background: var(--c-orange);
  color: var(--c-white);
  padding: 18px 40px; /* Increased height and padding */
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-display);
  text-align: center;
  transition: all .2s;
  display: block;
}


.btn-quote:hover {
  background: var(--c-orange-dark);
  box-shadow: 0 8px 20px rgba(224,122,60,.3);
  transform: translateY(-2px);
}

/* ---------- Page Hero (sub-pages) ---------- */
.page-hero {
  background: var(--c-cream-deep); padding: 72px 0 56px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -150px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, var(--c-orange-soft), transparent 70%);
}
.page-hero .container { position: relative; }
.page-hero p { color: var(--c-coffee-mid); max-width: 680px; margin: 16px auto 0; font-size: 1.05rem; }
.breadcrumb { font-size: .85rem; color: var(--c-coffee-soft); margin-bottom: 16px; }
.breadcrumb a { color: var(--c-coffee-soft); }
.breadcrumb a:hover { color: var(--c-orange); }
.breadcrumb .sep { margin: 0 10px; color: var(--c-orange); }

/* ---------- Product List Toolbar ---------- */
.product-toolbar { display: flex; justify-content: space-between; align-items: center; padding: 36px 0 24px; flex-wrap: wrap; gap: 16px; }
.filter-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  padding: 9px 20px; background: var(--c-white); border: 1.5px solid var(--c-line);
  border-radius: 100px; font-size: .85rem; cursor: pointer; transition: all .2s;
  color: var(--c-coffee-mid); font-family: var(--font-display); font-weight: 500;
}
.chip:hover { border-color: var(--c-orange); color: var(--c-orange); }
.chip.active { background: var(--c-orange); color: var(--c-cream); border-color: var(--c-orange); }
.result-count { color: var(--c-coffee-soft); font-size: .9rem; }

/* ---------- Product Detail ---------- */
.pd-hero { padding: 48px 0 32px; }
.pd-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: start; }
.pd-gallery { position: sticky; top: 100px; }
.pd-main-img {
  aspect-ratio: 1; background: var(--c-cream-deep); border-radius: var(--radius);
  display: block; color: var(--c-coffee); overflow: hidden; position: relative;
  font-family: var(--font-display); font-weight: 600; font-size: 1.8rem; text-align: center; padding: 40px;
  box-shadow: var(--shadow-sm); margin-bottom: 16px;
}
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.pd-thumb {
  aspect-ratio: 1; background: var(--c-cream-deep); border-radius: var(--radius-sm);
  display: grid; place-items: center; cursor: pointer; border: 2px solid transparent;
  color: var(--c-coffee-soft); font-size: .75rem; font-family: var(--font-display); font-weight: 500;
}
.pd-thumb.active, .pd-thumb:hover { border-color: var(--c-orange); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: calc(var(--radius-sm) - 2px); display: block; }
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-main-img.placeholder { display: grid; place-items: center; padding: 24px; text-align: center; font-family: var(--font-display); font-weight: 500; }
.pd-thumb.placeholder { display: grid; place-items: center; }

.pd-info h1 { font-size: 2.2rem; margin: 12px 0 18px; }
.pd-meta { display: flex; gap: 18px; font-size: .85rem; color: var(--c-coffee-soft); margin-bottom: 28px; flex-wrap: wrap; }
.pd-meta span::before { content: '•'; margin-right: 14px; color: var(--c-orange); }
.pd-meta span:first-child::before { display: none; }

.pd-price-box {
  background: var(--c-cream-deep); padding: 28px; border-radius: var(--radius);
  border-left: 4px solid var(--c-orange); margin-bottom: 32px;
}
.pd-price-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 16px; }
.pd-tier { text-align: center; padding: 16px 8px; background: var(--c-white); border-radius: var(--radius-sm); }
.pd-tier .qty { font-size: .8rem; color: var(--c-coffee-soft); margin-bottom: 6px; font-weight: 500; }
.pd-tier .price { font-family: var(--font-display); color: var(--c-coffee); font-weight: 700; font-size: 1.4rem; }
.pd-tier.recommended { background: var(--c-orange); color: var(--c-cream); position: relative; box-shadow: var(--shadow-orange); }
.pd-tier.recommended .qty { color: rgba(255,249,242,.85); }
.pd-tier.recommended .price { color: var(--c-cream); }
.pd-tier.recommended::after {
  content: 'Best Value'; position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--c-coffee); color: var(--c-cream); font-size: .65rem;
  padding: 4px 12px; border-radius: 100px; font-family: var(--font-body); font-weight: 600; letter-spacing: .04em;
}
.pd-moq { font-size: .85rem; color: var(--c-coffee-mid); display: flex; gap: 18px; flex-wrap: wrap; padding-top: 4px; }
.pd-moq strong { color: var(--c-coffee); }

.pd-actions { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }

.pd-specs { background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; }
.pd-specs h3 { padding: 18px 24px; background: var(--c-cream-deep); font-size: 1rem; margin: 0; }
.pd-specs table { width: 100%; border-collapse: collapse; }
.pd-specs td { padding: 14px 24px; border-top: 1px solid var(--c-line); font-size: .9rem; }
.pd-specs td:first-child { color: var(--c-coffee-soft); width: 40%; }
.pd-specs td:last-child { color: var(--c-coffee); font-weight: 500; }

.pd-section { padding: 80px 0; border-top: 1px solid var(--c-line); background: var(--c-cream); }
.pd-section h2 { margin-bottom: 36px; font-size: 1.7rem; }
.pd-feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.pd-feature {
  padding: 28px; background: var(--c-white); border-radius: var(--radius);
  border-top: 3px solid var(--c-orange);
  transition: transform .25s, box-shadow .25s;
}
.pd-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.pd-feature h4 { font-size: 1.05rem; margin-bottom: 10px; color: var(--c-coffee); }
.pd-feature p { font-size: .92rem; color: var(--c-coffee-mid); line-height: 1.6; }

/* ---------- Inquiry Form ---------- */
.inquiry-section { background: var(--c-cream-deep); padding: 96px 0; }
.inquiry-wrap {
  max-width: 760px; margin: 0 auto; background: var(--c-white);
  padding: 56px; border-radius: var(--radius); box-shadow: var(--shadow-md);
}
.inquiry-wrap h2 { text-align: center; margin-bottom: 10px; }
.inquiry-wrap .sub { text-align: center; color: var(--c-coffee-soft); margin-bottom: 40px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row.full { grid-template-columns: 1fr; }
.form-field label {
  display: block; font-family: var(--font-display); font-size: .8rem; font-weight: 600;
  color: var(--c-coffee); margin-bottom: 8px; letter-spacing: .03em;
}
.form-field label .req { color: var(--c-orange); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 16px; font-family: var(--font-body); font-size: .95rem;
  border: 1.5px solid var(--c-line); border-radius: var(--radius-sm); background: var(--c-cream);
  color: var(--c-coffee); transition: all .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--c-orange); background: var(--c-white);
  box-shadow: 0 0 0 4px rgba(224,122,60,.08);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-actions { text-align: center; margin-top: 32px; }
.form-actions .btn { padding: 17px 52px; font-size: 1rem; }
.form-note { font-size: .82rem; color: var(--c-coffee-soft); text-align: center; margin-top: 18px; }

.form-success {
  display: none; padding: 28px; background: var(--c-orange-soft); border-left: 4px solid var(--c-orange);
  border-radius: var(--radius-sm); color: var(--c-coffee); margin-bottom: 24px;
}
.form-success.show { display: block; }

/* ---------- Stats Cards ---------- */
.mini-stats {
  max-width: 900px; margin: 40px auto 0; display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px;
}
.mini-stat { min-height: 112px; padding: 24px 18px; background: var(--c-white); border-radius: var(--radius); text-align: center; display: grid; place-content: center; }
.mini-stat .n { font-family: var(--font-display); font-size: 1.6rem; color: var(--c-orange); font-weight: 700; }
.mini-stat .l { font-size: .85rem; color: var(--c-coffee-soft); margin-top: 4px; }

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 100px 0; background: var(--c-coffee); color: var(--c-cream);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,122,60,.15), transparent 70%);
}
.cta-section .container { position: relative; text-align: center; }
.cta-section h2 { color: var(--c-cream); margin-bottom: 18px; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.cta-section p { color: rgba(255,249,242,.75); max-width: 580px; margin: 0 auto 36px; font-size: 1.08rem; }
.cta-section .hero-cta { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-coffee); color: rgba(255,249,242,.7); padding: 80px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 56px; margin-bottom: 56px; }
.footer-grid h4 { color: var(--c-cream); font-family: var(--font-display); font-size: .9rem; margin-bottom: 20px; letter-spacing: .05em; }
.footer-grid p, .footer-grid li { font-size: .9rem; line-height: 1.95; }
.footer-grid ul { list-style: none; }
.footer-grid a { color: rgba(255,249,242,.7); }
.footer-grid a:hover { color: var(--c-orange-light); }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand .brand-name { color: var(--c-cream); }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid rgba(255,249,242,.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: .82rem; color: rgba(255,249,242,.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { justify-self: center; max-width: 420px; width: 100%; }
  .story-row, .story-row.reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; margin-bottom: 80px; }
  .pd-grid { grid-template-columns: 1fr; }
  .pd-gallery { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.mobile-open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 78px; left: 0; right: 0;
    background: var(--c-cream); padding: 24px; border-bottom: 1px solid var(--c-line); gap: 18px;
  }
  .section, .story { padding: 64px 0; }
  .hero { padding: 64px 0 80px; }
  .hero-stats { gap: 32px; flex-wrap: wrap; }
  .inquiry-wrap { padding: 32px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .pd-price-tiers { grid-template-columns: 1fr; }
  .mini-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
}
@media (max-width: 480px) {
  .mini-stats { grid-template-columns: 1fr; }
}

/* ============= Industries Page ============= */
.page-hero-anchors{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}
.page-anchor{display:inline-flex;align-items:center;gap:8px;padding:10px 18px;border-radius:999px;background:var(--c-cream);color:var(--c-coffee);font-family:var(--font-body);font-size:14px;font-weight:600;text-decoration:none;border:1.5px solid rgba(45,36,24,.12);transition:all .2s}
.page-anchor:hover{background:var(--c-orange);color:#fff;border-color:var(--c-orange);transform:translateY(-2px)}

.industry-block{padding:90px 0;background:#fff}
.industry-block-alt{background:var(--c-cream)}
.industry-grid{display:grid;grid-template-columns:1.45fr 1fr;gap:64px;align-items:center}
.industry-grid-reverse{direction:rtl}
.industry-grid-reverse>*{direction:ltr}
.industry-tag{display:inline-block;padding:6px 14px;border-radius:999px;background:rgba(224,122,60,.12);color:var(--c-orange);font-family:var(--font-display);font-size:13px;font-weight:600;letter-spacing:.5px;margin-bottom:14px}
.industry-title{font-family:var(--font-display);font-size:38px;font-weight:700;color:var(--c-coffee);line-height:1.15;margin:0 0 18px}
.industry-lead{font-family:var(--font-body);font-size:17px;line-height:1.6;color:var(--c-coffee-mid);margin:0 0 32px}
.industry-h4{font-family:var(--font-display);font-size:15px;font-weight:600;color:var(--c-coffee);text-transform:uppercase;letter-spacing:1px;margin:28px 0 12px;padding-bottom:8px;border-bottom:1.5px solid rgba(224,122,60,.25)}
.industry-pains,.industry-solutions{list-style:none;padding:0;margin:0 0 8px}
.industry-pains li,.industry-solutions li{padding:8px 0;font-family:var(--font-body);font-size:15px;line-height:1.55;color:var(--c-coffee-mid)}
.industry-pains li strong{color:var(--c-coffee)}
.industry-solutions li{padding-left:4px}
.industry-products{display:flex;flex-wrap:wrap;gap:10px;margin-top:8px}
.industry-product-chip{display:inline-block;padding:10px 16px;border-radius:8px;background:#fff;border:1.5px solid rgba(45,36,24,.12);color:var(--c-coffee);font-family:var(--font-body);font-size:14px;font-weight:500;text-decoration:none;transition:all .2s}
.industry-block-alt .industry-product-chip{background:#fff}
.industry-product-chip:hover{border-color:var(--c-orange);color:var(--c-orange);transform:translateY(-2px)}
.industry-product-chip-cta{background:var(--c-orange);color:#fff;border-color:var(--c-orange);font-weight:600}
.industry-product-chip-cta:hover{background:#c9682f;border-color:#c9682f;color:#fff}

.industry-visual{border-radius:20px;padding:40px 32px;min-height:360px;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden}
.industry-visual-museum{background:linear-gradient(135deg,#3a2b1c 0%,#5a3f28 100%)}
.industry-visual-stationery{background:linear-gradient(135deg,#2d4a5e 0%,#456b85 100%)}
.industry-visual-tourism{background:linear-gradient(135deg,#3a5a3a 0%,#5a7a5a 100%)}
.industry-visual-promo{background:linear-gradient(135deg,var(--c-orange) 0%,#c9682f 100%)}
.industry-visual-inner{display:grid;grid-template-columns:1fr 1fr;gap:18px;width:100%;max-width:340px}
.industry-stat{background:rgba(255,255,255,.12);backdrop-filter:blur(6px);border:1px solid rgba(255,255,255,.18);border-radius:14px;padding:22px 16px;text-align:center;color:#fff;display:flex;flex-direction:column;align-items:center;gap:8px}
.industry-stat-icon{display:flex;align-items:center;justify-content:center;color:var(--c-orange-light);margin-bottom:4px}
.industry-stat-icon svg{width:28px;height:28px;stroke-width:1.8}
.industry-stat-num{display:block;font-family:var(--font-display);font-size:28px;font-weight:700;line-height:1}
.industry-stat-lbl{display:block;margin-top:8px;font-family:var(--font-body);font-size:12px;font-weight:500;opacity:.9;letter-spacing:.3px}

/* ============= Cases Page ============= */
.cases-disclaimer{display:inline-flex;align-items:center;gap:10px;margin-top:24px;padding:12px 20px;border-radius:10px;background:rgba(224,122,60,.08);border:1px solid rgba(224,122,60,.2);color:var(--c-coffee-mid);font-family:var(--font-body);font-size:14px;line-height:1.5;max-width:680px}
.cases-disclaimer-icon{font-size:18px;flex-shrink:0}

.cases-section{padding:80px 0;background:var(--c-cream)}
.cases-grid{display:grid;grid-template-columns:1fr;gap:28px;max-width:920px;margin:0 auto}
.case-card{background:#fff;border-radius:16px;padding:36px 36px 28px;border:1px solid rgba(45,36,24,.08);box-shadow:0 4px 20px rgba(45,36,24,.05);transition:all .25s}
.case-card:hover{transform:translateY(-3px);box-shadow:0 12px 32px rgba(45,36,24,.1)}
.case-card-head{display:flex;align-items:flex-start;gap:18px;margin-bottom:22px;padding-bottom:20px;border-bottom:1px solid rgba(45,36,24,.08)}
.case-flag{font-size:42px;line-height:1;flex-shrink:0}
.case-card-title{font-family:var(--font-display);font-size:22px;font-weight:700;color:var(--c-coffee);margin:0 0 4px;line-height:1.2}
.case-card-sub{font-family:var(--font-body);font-size:14px;color:var(--c-coffee-mid);margin:0}
.case-card-meta{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-bottom:22px;padding:18px;background:var(--c-cream);border-radius:10px}
.case-meta-lbl{display:block;font-family:var(--font-body);font-size:11px;font-weight:600;color:var(--c-coffee-mid);text-transform:uppercase;letter-spacing:.5px;margin-bottom:4px}
.case-meta-val{display:block;font-family:var(--font-display);font-size:15px;font-weight:600;color:var(--c-coffee);line-height:1.3}
.case-card-quote{font-family:var(--font-body);font-style:italic;font-size:15px;line-height:1.6;color:var(--c-coffee-mid);background:rgba(224,122,60,.05);border-left:3px solid var(--c-orange);padding:16px 20px;border-radius:0 8px 8px 0;margin:0 0 20px}
.case-card-tags{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:16px}
.case-tag{display:inline-block;padding:5px 12px;border-radius:999px;background:var(--c-cream);color:var(--c-coffee);font-family:var(--font-body);font-size:12px;font-weight:500;border:1px solid rgba(45,36,24,.08)}
.case-card-nda{font-family:var(--font-body);font-size:13px;color:var(--c-coffee-mid);margin:0;opacity:.75}

.cases-more-note{max-width:780px;margin:60px auto 0;text-align:center;padding:32px;background:#fff;border-radius:14px;border:1.5px dashed rgba(45,36,24,.15)}
.cases-more-note p{font-family:var(--font-body);font-size:15px;line-height:1.65;color:var(--c-coffee-mid);margin:0}
.cases-more-note strong{color:var(--c-coffee)}

/* ============= Shared CTA Band ============= */
.cta-band{padding:80px 0;background:linear-gradient(135deg,var(--c-coffee) 0%,#1a1410 100%);color:#fff;text-align:center}
.cta-band h2{font-family:var(--font-display);font-size:36px;font-weight:700;color:#fff;margin:0 0 14px;line-height:1.2}
.cta-band p{font-family:var(--font-body);font-size:17px;line-height:1.55;color:rgba(255,249,242,.85);max-width:640px;margin:0 auto 32px}
.cta-band-actions{display:flex;justify-content:center;gap:14px;flex-wrap:wrap}
.cta-band-actions .btn-ghost{background:transparent;color:#fff;border:1.5px solid rgba(255,255,255,.4)}
.cta-band-actions .btn-ghost:hover{background:rgba(255,255,255,.1);border-color:#fff}

/* ============= Industries/Cases Responsive ============= */
@media (max-width:880px){
  .industry-block{padding:60px 0}
  .industry-grid,.industry-grid-reverse{grid-template-columns:1fr;gap:36px;direction:ltr}
  .industry-grid-reverse>*{direction:ltr}
  .industry-title{font-size:30px}
  .industry-visual{min-height:280px;padding:28px 20px}
  .industry-visual-inner{max-width:300px}
  .industry-stat-num{font-size:24px}

  .case-card{padding:24px 22px}
  .case-card-meta{grid-template-columns:repeat(2,1fr);padding:14px}
  .case-card-title{font-size:19px}
  .case-flag{font-size:36px}

  .cta-band{padding:60px 0}
  .cta-band h2{font-size:28px}
  .cta-band p{font-size:15px}
}



/* ============================================
   QUOTE HERO + LUCY CONSULTANT (Dark Section)
   ============================================ */
.quote-hero{
  background:linear-gradient(180deg, #1A1410 0%, #2D2418 100%);
  color:#FFF9F2;
  padding:90px 0 70px;
  text-align:center;
}
.quote-hero-eyebrow{
  color:var(--c-orange);
  font-family:var(--font-display);
  font-size:.85rem;
  font-weight:600;
  letter-spacing:.18em;
  margin-bottom:18px;
  text-transform:uppercase;
}
.quote-hero-title{
  font-family:var(--font-display);
  font-size:clamp(2rem,4.5vw,3.2rem);
  line-height:1.15;
  font-weight:700;
  margin-bottom:22px;
  color:#FFF9F2;
}
.quote-hero-accent{
  color:var(--c-orange);
  font-style:italic;
}
.quote-hero-sub{
  font-size:1.05rem;
  color:rgba(255,249,242,.7);
  max-width:620px;
  margin:0 auto 40px;
  line-height:1.65;
}

/* Lucy consultant card */
.consultant-card{
  display:flex;
  align-items:center;
  gap:18px;
  background:rgba(255,249,242,.05);
  border:1px solid rgba(224,122,60,.25);
  border-radius:14px;
  padding:18px 22px;
  max-width:680px;
  margin:0 auto 28px;
  text-align:left;
}
.consultant-avatar{
  width:56px;
  height:56px;
  border-radius:50%;
  object-fit:cover;
  object-position:center 25%;
  border:2px solid var(--c-orange);
  flex-shrink:0;
}
.consultant-info{flex:1; min-width:0;}
.consultant-greeting{
  font-family:var(--font-display);
  font-size:1rem;
  color:#FFF9F2;
  margin-bottom:4px;
}
.consultant-greeting strong{color:var(--c-orange);}
.consultant-sub{
  font-size:.85rem;
  color:rgba(255,249,242,.6);
}
.consultant-status{
  display:flex;
  align-items:center;
  gap:8px;
  flex-shrink:0;
}
.status-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#2ECC71;
  box-shadow:0 0 8px rgba(46,204,113,.6);
  animation:pulseGreen 2s infinite;
}
@keyframes pulseGreen{
  0%,100%{opacity:1;}
  50%{opacity:.5;}
}
.status-text{
  font-size:.8rem;
  color:rgba(255,249,242,.7);
  font-family:var(--font-display);
}
.form-divider{
  color:rgba(255,249,242,.4);
  font-size:.85rem;
  margin-top:24px;
  font-family:var(--font-display);
}

/* ============================================
   QUOTE FORM (Dark theme)
   ============================================ */
.quote-form-section{
  background:#1A1410;
  padding:0 0 80px;
}
.quote-form{
  max-width:820px;
  margin:0 auto;
  background:rgba(45,36,24,.4);
  border:1px solid rgba(224,122,60,.15);
  border-radius:16px;
  padding:40px 36px;
}
.qf-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-bottom:20px;
}
.qf-row-full{grid-template-columns:1fr;}
.qf-field label{
  display:block;
  font-family:var(--font-display);
  font-size:.72rem;
  font-weight:600;
  color:rgba(255,249,242,.55);
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:8px;
}
.qf-field .req{color:var(--c-orange);}
.qf-field input,
.qf-field select,
.qf-field textarea{
  width:100%;
  background:rgba(0,0,0,.25);
  border:1px solid rgba(255,249,242,.12);
  border-radius:8px;
  padding:12px 14px;
  color:#FFF9F2;
  font-family:var(--font-body);
  font-size:.95rem;
  transition:border-color .2s, background .2s;
}
.qf-field input::placeholder,
.qf-field textarea::placeholder{
  color:rgba(255,249,242,.3);
}
.qf-field input:focus,
.qf-field select:focus,
.qf-field textarea:focus{
  outline:none;
  border-color:var(--c-orange);
  background:rgba(0,0,0,.35);
}
.qf-field select{
  cursor:pointer;
  appearance:none;
  -webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23E07A3C' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  padding-right:36px;
}
.qf-field select option{
  background:#2D2418;
  color:#FFF9F2;
}
.qf-field textarea{resize:vertical; min-height:100px;}

/* File upload */
.qf-upload{
  border:1.5px dashed rgba(224,122,60,.35);
  border-radius:10px;
  padding:30px 20px;
  text-align:center;
  cursor:pointer;
  transition:border-color .2s, background .2s;
}
.qf-upload:hover{
  border-color:var(--c-orange);
  background:rgba(224,122,60,.05);
}
.qf-upload-icon{
  font-size:1.8rem;
  margin-bottom:8px;
  opacity:.7;
}
.qf-upload-text{
  color:rgba(255,249,242,.6);
  font-size:.9rem;
  margin-bottom:4px;
}
.qf-upload-name{
  color:var(--c-orange);
  font-size:.85rem;
  font-weight:600;
  font-family:var(--font-display);
}

/* Submit button */
.qf-submit{text-align:center; margin-top:30px;}
.qf-btn{
  width:100%;
  background:linear-gradient(135deg, #E07A3C 0%, #D4691E 100%);
  color:#FFF9F2;
  border:none;
  padding:18px 28px;
  border-radius:10px;
  font-family:var(--font-display);
  font-size:1rem;
  font-weight:600;
  letter-spacing:.05em;
  cursor:pointer;
  transition:transform .15s, box-shadow .2s;
  box-shadow:0 4px 14px rgba(224,122,60,.35);
}
.qf-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 20px rgba(224,122,60,.5);
}
.qf-disclaimer{
  color:rgba(255,249,242,.5);
  font-size:.82rem;
  margin-top:14px;
}

/* Trust checkmarks row */
.qf-trust{
  display:flex;
  justify-content:center;
  gap:22px;
  flex-wrap:wrap;
  margin-top:28px;
  padding-top:24px;
  border-top:1px solid rgba(255,249,242,.08);
}
.qf-trust-item{
  color:rgba(255,249,242,.75);
  font-size:.88rem;
  font-family:var(--font-display);
  font-weight:500;
}

/* Form success message */
.form-success{
  max-width:820px;
  margin:0 auto 24px;
  background:rgba(46,204,113,.12);
  border:1px solid rgba(46,204,113,.4);
  border-radius:10px;
  padding:18px 22px;
  color:#FFF9F2;
  text-align:center;
}

/* Responsive */
@media(max-width:720px){
  .quote-hero{padding:60px 0 50px;}
  .consultant-card{
    flex-direction:column;
    text-align:center;
    gap:12px;
    padding:20px 18px;
  }
  .consultant-status{justify-content:center;}
  .quote-form{padding:28px 20px;}
  .qf-row{grid-template-columns:1fr; gap:16px;}
  .qf-trust{gap:14px; font-size:.8rem;}
  .qf-trust-item{font-size:.8rem;}
}


/* ============================================
   HERO VIDEO BACKGROUND (luxopack-style)
   ============================================ */
.hero.hero-with-video{
  position:relative;
  overflow:hidden;
}
.hero.hero-with-video > .container{
  position:relative;
  z-index:3;
}
/* Make hero text readable on dark video bg */
.hero.hero-with-video .hero-text .eyebrow{color:var(--c-orange);}
.hero.hero-with-video .hero-text h1{color:#FFF9F2;}
.hero.hero-with-video .hero-text .lead{color:rgba(255,249,242,.85);}
.hero.hero-with-video .hero-badge{
  background:rgba(255,249,242,.08);
  border:1px solid rgba(255,249,242,.2);
  color:#FFF9F2;
}
.hero.hero-with-video .hero-badge strong{color:var(--c-orange);}
.hero.hero-with-video .hero-stats .num{color:var(--c-orange);}
.hero.hero-with-video .hero-stats .label{color:rgba(255,249,242,.7);}

.hero-video-bg{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
  background:#1A1410;
}
.hero-video-bg video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
/* Placeholder when no video yet */
.hero-video-placeholder{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  background:repeating-linear-gradient(
    45deg,
    #2D2418 0,
    #2D2418 20px,
    #3A2F1F 20px,
    #3A2F1F 40px
  );
  color:rgba(255,249,242,.4);
  text-align:center;
  font-family:var(--font-display);
  font-weight:600;
  letter-spacing:.08em;
}
.hero-video-placeholder-icon{
  font-size:3.5rem;
  opacity:.6;
}
.hero-video-placeholder-text{
  font-size:1.1rem;
  line-height:1.6;
}
.hero-video-placeholder-text small{
  display:block;
  margin-top:8px;
  font-size:.75rem;
  font-weight:400;
  letter-spacing:.04em;
  opacity:.7;
}
/* Dark overlay to mute the video for text readability */
.hero-video-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:rgba(0,0,0,.55);
}
/* Left → right gradient: pure dark on text side, fades to transparent over visual */
.hero-video-gradient{
  position:absolute;
  inset:0;
  z-index:2;
  background:linear-gradient(90deg, rgba(26,20,16,.92) 0%, rgba(26,20,16,.55) 50%, rgba(26,20,16,.2) 100%);
}
/* Hide the right-side visual cards on video hero (video itself is the visual) */
.hero.hero-with-video .hero-visual{
  display:none;
}
.hero.hero-with-video > .container{
  display:block;
}
.hero.hero-with-video .hero-text{
  max-width:680px;
}

/* ============================================
   FACTORY LIVE SECTION (luxopack-style)
   ============================================ */
.factory-live-section{
  background:linear-gradient(180deg, #1A1410 0%, #2D2418 100%);
  color:#FFF9F2;
  padding:90px 0;
}
.factory-live-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.factory-live-eyebrow{
  color:var(--c-orange);
  font-family:var(--font-display);
  font-size:.8rem;
  font-weight:600;
  letter-spacing:.18em;
  margin-bottom:18px;
  text-transform:uppercase;
}
.factory-live-title{
  font-family:var(--font-display);
  font-size:clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight:700;
  line-height:1.2;
  color:#FFF9F2;
  margin-bottom:20px;
}
.factory-live-accent{
  color:var(--c-orange);
  font-style:italic;
}
.factory-live-sub{
  font-size:1rem;
  color:rgba(255,249,242,.7);
  line-height:1.7;
  margin-bottom:28px;
}
.factory-live-cta{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.factory-live-cta .btn-outline{
  color:#FFF9F2;
  border-color:rgba(255,249,242,.3);
}
.factory-live-cta .btn-outline:hover{
  background:rgba(255,249,242,.1);
  border-color:var(--c-orange);
}
.factory-live-video{
  position:relative;
  aspect-ratio:16/9;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,.4);
}
.factory-live-video video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.factory-live-placeholder{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  background:repeating-linear-gradient(
    45deg,
    #3A2F1F 0,
    #3A2F1F 20px,
    #4A3D29 20px,
    #4A3D29 40px
  );
  color:rgba(255,249,242,.5);
  text-align:center;
  font-family:var(--font-display);
  font-weight:600;
  letter-spacing:.08em;
}
.factory-live-badge{
  position:absolute;
  left:18px;
  bottom:18px;
  background:linear-gradient(135deg, #E07A3C 0%, #D4691E 100%);
  color:#FFF9F2;
  font-family:var(--font-display);
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.1em;
  padding:8px 14px;
  border-radius:6px;
  box-shadow:0 4px 14px rgba(224,122,60,.4);
}

@media(max-width:880px){
  .factory-live-grid{
    grid-template-columns:1fr;
    gap:40px;
  }
  .factory-live-section{padding:60px 0;}
  .hero-video-gradient{
    background:linear-gradient(180deg, rgba(26,20,16,.5) 0%, rgba(26,20,16,.85) 100%);
  }
}
