/* ============================================
   ENDLESS ECO Co., Ltd — eeco.co.th
   Awakening the Balance
   ============================================ */

:root {
  --brand: #4EC6E0;
  --brand-dark: #2BA3BD;
  --brand-deep: #17758C;
  --ink: #2c2d33;
  --ink-soft: #475569;
  --ink-muted: #64748b;
  --bg: #ffffff;
  --bg-soft: #F2FAFC;
  --bg-mist: #E8F6F9;
  --line: #E6E6E6;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(44, 45, 51, 0.08);
  --shadow-md: 0 6px 24px rgba(23, 117, 140, 0.12);
  --shadow-lg: 0 16px 48px rgba(23, 117, 140, 0.16);
  --font-head: 'Prompt', 'Sarabun', sans-serif;
  --font-body: 'Sarabun', 'Prompt', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

/* never allow stray horizontal overflow to shift/crop the page on mobile
   (clip, not hidden — hidden would break the sticky header) */
html, body { overflow-x: clip; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.3; font-weight: 600; }

a { color: var(--brand-deep); text-decoration: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Language toggle: body.lang-en hides Thai, shows English */
[data-lang="en"] { display: none; }
body.lang-en [data-lang="th"] { display: none; }
body.lang-en [data-lang="en"] { display: block; }
body.lang-en span[data-lang="en"],
body.lang-en a[data-lang="en"],
body.lang-en strong[data-lang="en"] { display: inline; }
body.lang-en li[data-lang="en"] { display: list-item; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img { width: 52px; height: 52px; border-radius: 50%; }

.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--brand-dark);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav a {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  transition: color 0.2s, background-color 0.2s;
}

.main-nav a:hover { color: var(--brand-deep); background: var(--bg-mist); }

.main-nav a.active { color: var(--brand-deep); font-weight: 600; }

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

.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.lang-switch button {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border: none;
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.lang-switch button.active { background: var(--brand); color: var(--white); }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary { background: var(--brand); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-dark); color: var(--white); box-shadow: var(--shadow-md); }

.btn-outline { border-color: var(--brand); color: var(--brand-deep); background: var(--white); }
.btn-outline:hover { background: var(--bg-mist); }

.btn-line { background: #06C755; color: var(--white); }
.btn-line:hover { background: #05a648; color: var(--white); }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(160deg, var(--bg-soft) 0%, var(--bg-mist) 60%, #DFF3F8 100%); overflow: hidden; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 72px 24px 80px;
  max-width: 1140px;
  margin: 0 auto;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: var(--white);
  border: 1px solid rgba(78, 198, 224, 0.4);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.hero h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 700; margin-bottom: 8px; }

.hero h1 .en-sub { display: block; font-size: 0.55em; font-weight: 500; color: var(--brand-deep); margin-top: 6px; }

.hero p.lead { font-size: 1.08rem; color: var(--ink-soft); margin: 18px 0 30px; max-width: 54ch; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-art img { width: 100%; max-width: 560px; margin: 0 auto; }

/* ---------- Sections ---------- */
section { padding: 76px 0; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }

.section-kicker {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 14px; }

.section-head p { color: var(--ink-soft); }

.bg-soft { background: var(--bg-soft); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-grid h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 18px; }

.about-grid p { color: var(--ink-soft); margin-bottom: 16px; }

.about-quote {
  border-left: 4px solid var(--brand);
  background: var(--bg-mist);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  font-weight: 600;
  color: var(--brand-deep);
  margin: 22px 0;
}

/* Vision / Mission */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; }

.vm-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, border-color 0.25s;
}

.vm-card:hover { box-shadow: var(--shadow-md); border-color: rgba(78, 198, 224, 0.5); }

.vm-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg-mist);
  color: var(--brand-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.vm-icon svg { width: 26px; height: 26px; }

.vm-card h3 { font-size: 1.2rem; margin-bottom: 10px; }

.vm-card p { color: var(--ink-soft); }

/* ---------- Service cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.svc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.svc-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(78, 198, 224, 0.55); }

.svc-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(140deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.svc-icon svg { width: 30px; height: 30px; }

.svc-card h3 { font-size: 1.25rem; margin-bottom: 12px; }

.svc-card p { color: var(--ink-soft); flex: 1; margin-bottom: 20px; }

.svc-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.svc-link svg { width: 16px; height: 16px; transition: transform 0.2s; }

.svc-card:hover .svc-link svg { transform: translateX(4px); }

/* ---------- Site reference ---------- */
.ref-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.ref-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

.ref-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: 999px;
  padding: 8px 20px;
  margin-bottom: 16px;
}

.ref-stats { display: flex; gap: 36px; margin-top: 26px; flex-wrap: wrap; }

.ref-stat .num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: var(--brand-deep); }

.ref-stat .lbl { font-size: 0.9rem; color: var(--ink-muted); }

/* ---------- Blog cards ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.post-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, border-color 0.25s;
  cursor: pointer;
}

.post-card:hover { box-shadow: var(--shadow-md); border-color: rgba(78, 198, 224, 0.55); }

.post-thumb {
  height: 150px;
  background: linear-gradient(140deg, var(--bg-mist), rgba(78, 198, 224, 0.35));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-deep);
}

.post-thumb svg { width: 44px; height: 44px; opacity: 0.85; }

.post-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }

.post-cat {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.post-body h3 { font-size: 1.05rem; margin-bottom: 10px; }

.post-body p { font-size: 0.95rem; color: var(--ink-soft); flex: 1; margin-bottom: 14px; }

.post-date { font-size: 0.85rem; color: var(--ink-muted); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--bg-soft), var(--bg-mist));
  padding: 56px 0;
  text-align: center;
}

.page-hero h1 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }

.page-hero p { color: var(--ink-soft); max-width: 640px; margin: 12px auto 0; }

.breadcrumb { font-size: 0.85rem; color: var(--ink-muted); margin-bottom: 10px; }

.breadcrumb a { color: var(--brand-deep); }

/* ---------- Hafele categories ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.cat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, border-color 0.25s;
  cursor: pointer;
}

.cat-card:hover { box-shadow: var(--shadow-md); border-color: rgba(78, 198, 224, 0.55); }

.cat-card .cat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 12px;
  background: var(--bg-mist);
  color: var(--brand-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-card .cat-icon svg { width: 24px; height: 24px; }

.cat-card h3 { font-size: 1rem; }

/* ---------- Feature list (Deco) ---------- */
.feature-list { list-style: none; display: grid; gap: 14px; margin: 22px 0; }

.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }

.feature-list svg { width: 22px; height: 22px; color: var(--brand-dark); flex: none; margin-top: 3px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--bg-mist); }

.contact-item:last-child { border-bottom: none; }

.contact-item .ci-icon {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 12px;
  background: var(--bg-mist);
  color: var(--brand-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item .ci-icon svg { width: 22px; height: 22px; }

.contact-item h3 { font-size: 1rem; margin-bottom: 4px; }

.contact-item p, .contact-item a { color: var(--ink-soft); font-size: 0.98rem; }

.contact-item a:hover { color: var(--brand-deep); }

.map-frame { border: 0; width: 100%; height: 100%; min-height: 420px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-dark) 55%, var(--brand) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: 56px 48px;
  text-align: center;
}

.cta-band h2 { font-size: clamp(1.4rem, 2.8vw, 1.9rem); margin-bottom: 12px; }

.cta-band p { opacity: 0.92; margin-bottom: 28px; }

.cta-band .btn-primary { background: var(--white); color: var(--brand-deep); }

.cta-band .btn-primary:hover { background: var(--bg-mist); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cbd5e1; margin-top: 76px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding: 56px 0 40px;
}

.footer-grid h3 {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }

.footer-brand img { width: 48px; height: 48px; border-radius: 50%; }

.footer-brand span { font-family: var(--font-head); font-weight: 700; color: var(--white); }

.site-footer p { font-size: 0.92rem; }

.footer-links { list-style: none; display: grid; gap: 10px; }

.footer-links a { color: #cbd5e1; transition: color 0.2s; }

.footer-links a:hover { color: var(--brand); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner, .about-grid, .ref-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 48px 24px 56px; }
  .hero-art { order: -1; }
  .card-grid, .post-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1080px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 18px;
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 14px; }
  .nav-toggle { display: flex; }
}

@media (max-width: 720px) {
  .card-grid, .post-grid, .footer-grid, .vm-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .cta-band { padding: 40px 24px; }
}

/* compact header on small phones — brand + language switch + menu button
   must all fit at 375px without overflowing (the previous layout cropped) */
@media (max-width: 560px) {
  .header-inner { padding: 10px 14px; gap: 8px; }
  .brand { gap: 8px; }
  .brand img { width: 40px; height: 40px; }
  .brand-name { font-size: 0.85rem; }
  .brand-tag { display: none; }
  .lang-switch button { padding: 8px 10px; font-size: 0.72rem; }
  .nav-toggle { width: 40px; height: 40px; flex: none; }
}

/* ---------- Product cards (Deco) ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.prod-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, border-color 0.25s;
}

.prod-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(78, 198, 224, 0.55); }

.prod-head {
  background: linear-gradient(140deg, var(--bg-mist), rgba(78, 198, 224, 0.28));
  padding: 26px 26px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.prod-head h3 { font-size: 1.35rem; font-weight: 700; }

.prod-head .prod-type { font-size: 0.85rem; color: var(--brand-deep); }

.badge-new {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--brand-deep);
  color: var(--white);
  border-radius: 999px;
  padding: 4px 12px;
  white-space: nowrap;
}

.prod-body { padding: 22px 26px 26px; display: flex; flex-direction: column; flex: 1; }

.spec-list { list-style: none; display: grid; gap: 10px; margin-bottom: 18px; flex: 1; }

.spec-list li { display: flex; gap: 10px; align-items: center; font-size: 0.95rem; color: var(--ink-soft); }

.spec-list svg { width: 18px; height: 18px; color: var(--brand-dark); flex: none; }

.prod-price { font-family: var(--font-head); margin-bottom: 16px; }

.prod-price .amount { font-size: 1.5rem; font-weight: 700; color: var(--brand-deep); }

.prod-price .note { display: block; font-size: 0.8rem; color: var(--ink-muted); font-weight: 400; }

/* ---------- Portfolio gallery ---------- */
.proj-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.proj-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, border-color 0.25s;
}

.proj-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(78, 198, 224, 0.55); }

.proj-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(140deg, var(--bg-mist), rgba(78, 198, 224, 0.3)); }

.proj-media img { width: 100%; height: 100%; object-fit: cover; }

.proj-media .proj-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  color: var(--brand-deep);
}

.proj-media .proj-placeholder svg { width: 46px; height: 46px; opacity: 0.8; }

.proj-tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-head); font-size: 0.75rem; font-weight: 700;
  background: rgba(255, 255, 255, 0.92); color: var(--brand-deep);
  border-radius: 999px; padding: 5px 14px;
}

.proj-body { padding: 24px 26px 26px; }

.proj-body h3 { font-size: 1.15rem; margin-bottom: 8px; }

.proj-body p { color: var(--ink-soft); font-size: 0.97rem; }

.proj-meta { display: flex; gap: 22px; margin-top: 16px; flex-wrap: wrap; }

.proj-meta .m { font-size: 0.85rem; color: var(--ink-muted); display: flex; align-items: center; gap: 6px; }

.proj-meta svg { width: 16px; height: 16px; color: var(--brand-dark); }

/* ---------- Process steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }

.step-card { text-align: center; padding: 26px 18px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }

.step-num {
  width: 44px; height: 44px; margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--brand), var(--brand-deep));
  color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}

.step-card h3 { font-size: 1.02rem; margin-bottom: 8px; }

.step-card p { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-list details[open] { border-color: rgba(78, 198, 224, 0.55); }

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-head);
  font-weight: 600;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--brand-dark);
  line-height: 1;
  flex: none;
}

.faq-list details[open] summary::after { content: "–"; }

.faq-list .faq-a { padding: 0 22px 20px; color: var(--ink-soft); }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }

.stat .num { font-family: var(--font-head); font-size: 2.1rem; font-weight: 700; color: var(--brand-deep); }

.stat .lbl { color: var(--ink-muted); font-size: 0.92rem; }

@media (max-width: 960px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .proj-grid { grid-template-columns: 1fr; }
  .steps-grid, .stats-band { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .product-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
