/* ═══════════════════════════════════════════════════════
   SGM SOYA PANEER — UNIFIED STYLESHEET
   Covers: sgmindex, sgmproducts, sgmcontact, sgm_about
   ═══════════════════════════════════════════════════════ */

/* ── TOKENS ────────────────────────────────────────────── */
:root {
  --cream:    #FAF7F2;
  --cream2:   #F2EDE4;
  --brown:    #2C1810;
  --brown2:   #4A2E20;
  --green:    #3D6B45;
  --green2:   #2E5234;
  --green-lt: #EBF3EC;
  --gold:     #C8963E;
  --gold-lt:  #F5E6CC;
  --text:     #1C1208;
  --sub:      #6B5B4E;
  --border:   #E4DDD3;
  --white:    #FFFFFF;

  /* ── warm hero palette ─────────────────────────── */
  /* replaces the dark-green hero/section backgrounds */
  --hero-bg:        #ECC84A;   /* warm golden yellow */
  --hero-bg2:       #D4A820;   /* deeper gold for gradient depth */
  --hero-bg3:       #F5DFA0;   /* light highlight end */
  --hero-text:      #1C2B1A;   /* dark green readable on gold */
  --hero-sub:       rgba(28,43,26,.62);
  --hero-card:      rgba(255,255,255,.82);
  --hero-border:    rgba(255,255,255,.55);

  /* scrollbar */
  --sb-track-color: #D4A820;
  --sb-thumb-color: #3D6B45;
  --sb-size: 11px;
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ─────────────────────────────────────────── */
body::-webkit-scrollbar               { width: var(--sb-size); }
body::-webkit-scrollbar-track         { background: var(--sb-track-color); border-radius: 5px; }
body::-webkit-scrollbar-thumb         { background: var(--sb-thumb-color); border-radius: 5px; border: 2px solid #232E33; }
@supports not selector(::-webkit-scrollbar) {
  body { scrollbar-color: var(--sb-thumb-color) var(--sb-track-color); }
}

/* ── SCROLL REVEAL ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible       { opacity: 1; transform: none; }
.reveal-delay-1       { transition-delay: .1s; }
.reveal-delay-2       { transition-delay: .2s; }
.reveal-delay-3       { transition-delay: .3s; }
.reveal-delay-4       { transition-delay: .4s; }

/* ══════════════════════════════════════════════════════════
   NAVBAR  (shared by all pages)
══════════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: all .35s ease;
}
nav.scrolled, nav.menu-open {
  background: rgba(250,247,242,.96);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--border);
}
.navbar-brand img { height: 48px; width: auto; }

/* default nav link colour: dark green (visible on light & hero bg) */
.navbar-nav .nav-link {
  font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--hero-text);
  padding: 6px 0;
  position: relative;
  transition: color .2s;
}
/* on hero pages where the hero is full-viewport the links start dark-green
   and stay legible; pages with a green hero override inline or via hero colour */
nav.scrolled .navbar-nav .nav-link,
nav.menu-open .navbar-nav .nav-link  { color: var(--brown); }

.navbar-nav .nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .25s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after  { width: 100%; }

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active          { color: var(--gold); }

nav.scrolled .navbar-nav .nav-link:hover,
nav.scrolled .navbar-nav .nav-link.active,
nav.menu-open .navbar-nav .nav-link:hover,
nav.menu-open .navbar-nav .nav-link.active { color: var(--green); }

/* "Where to Buy" pill button */
.wtbuy-btn {
  background: var(--green); color: white;
  border: none; border-radius: 50px;
  padding: 10px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; transition: all .25s; white-space: nowrap;
}
.wtbuy-btn:hover {
  background: var(--green2); transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(61,107,69,.3);
}

/* hamburger */
.navbar-toggler                           { border: 1.5px solid rgba(255,255,255,.4); padding: 6px 10px; }
nav.scrolled .navbar-toggler,
nav.menu-open .navbar-toggler             { border-color: var(--border); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
nav.scrolled .navbar-toggler-icon,
nav.menu-open .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844,24,16,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ══════════════════════════════════════════════════════════
   SHARED SECTION TYPOGRAPHY
══════════════════════════════════════════════════════════ */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px;
}
.ey-dot, .cat-dot, .hero-eyebrow-dot {
  width: 5px; height: 5px;
  background: currentColor; border-radius: 50%;
  display: inline-block;
}
.hero-eyebrow-dot { background: var(--gold); width: 6px; height: 6px; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700; color: var(--text);
  line-height: 1.15; letter-spacing: -.3px;
}
.section-title em { font-style: italic; color: var(--green); }

.section-sub, .section-body {
  font-size: 15px; color: var(--sub);
  line-height: 1.85; margin-top: 14px;
}
.section-sub { font-size: 16px; }

/* ── shared divider ── */
.rule { width: 100%; height: 1px; background: var(--border); margin: 36px 0; }

/* ══════════════════════════════════════════════════════════
   SHARED BUTTONS
══════════════════════════════════════════════════════════ */
/* gold (hero primary) */
.btn-primary-hero {
  background: var(--gold); color: var(--brown);
  border: none; border-radius: 50px; padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; display: inline-block; transition: all .25s;
}
.btn-primary-hero:hover { background: white; color: var(--brown); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

.brand-name-text{font-size:17px;font-weight:700;color:var(--ht);line-height:1.1;letter-spacing:-.2px;transition:color .35s;}
.brand-name-sub{font-size:11px;font-weight:500;letter-spacing:.06em;text-transform:uppercase;color:var(--green);font-family:'DM Sans',sans-serif;}
nav.scrolled .brand-name-text,nav.menu-open .brand-name-text{color:var(--brown);}

/* ghost (hero secondary) */
.btn-ghost-hero {
  background: transparent; color: var(--hero-text);
  border: 2px solid rgba(28,43,26,.35); border-radius: 50px; padding: 13px 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; display: inline-block; transition: all .25s;
}
.btn-ghost-hero:hover { background: rgba(28,43,26,.08); border-color: rgba(28,43,26,.6); color: var(--hero-text); }

/* solid green */
.btn-green, .btn-product, .btn-pcard, .btn-ntt, .btn-map, .btn-cta, .wtbuy-btn,
.btn-submit {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: white;
  border: none; border-radius: 50px; padding: 11px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: all .25s;
}
.btn-green:hover, .btn-product:hover, .btn-pcard:hover,
.btn-ntt:hover, .btn-map:hover, .btn-cta:hover {
  background: var(--green2); color: white;
  transform: translateY(-1px); box-shadow: 0 6px 20px rgba(61,107,69,.3);
}
.btn-product svg, .btn-pcard svg, .btn-cta svg { transition: transform .2s; }
.btn-product:hover svg, .btn-pcard:hover svg, .btn-cta:hover svg { transform: translateX(3px); }

/* larger submit */
.btn-submit {
  width: 100%; padding: 15px 32px; font-size: 15px; font-weight: 700;
  justify-content: center; margin-top: 24px;
}
.btn-submit:hover { background: var(--green2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(61,107,69,.3); }

/* solid gold */
.btn-gold, .btn-promise, .btn-ntt {
  display: inline-block;
  background: var(--gold); color: var(--brown);
  border: none; border-radius: 50px; padding: 13px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; transition: all .25s;
}
.btn-gold:hover, .btn-promise:hover, .btn-ntt:hover {
  background: white; color: var(--brown);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

/* outline green */
.btn-story, .btn-outline-green {
  display: inline-block;
  background: transparent; color: var(--green);
  border: 2px solid var(--green); border-radius: 50px; padding: 12px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; margin-top: 32px; transition: all .25s;
}
.btn-story:hover, .btn-outline-green:hover { background: var(--green); color: white; }

/* ══════════════════════════════════════════════════════════
   MODAL  (shared by all pages)
══════════════════════════════════════════════════════════ */
.modal-content        { border: none; border-radius: 20px; overflow: hidden; }
.modal-header         { background: var(--green); border-bottom: none; padding: 20px 28px; }
.modal-header .modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: white;
  text-align: center; width: 100%;
}
.modal-header .btn-close       { filter: brightness(0) invert(1); opacity: .7; }
.modal-header .btn-close:hover { opacity: 1; }
.modal-body                    { padding: 28px; }

/* modal map address block */
.map-address, .map-address-modal {
  text-align: center; padding: 16px;
  background: var(--cream); border-radius: 12px; margin-bottom: 20px;
}
.map-brand-name    { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.map-address-text  { font-size: 14px; color: var(--sub); margin-bottom: 12px; }
.map-link {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green); color: white; text-decoration: none;
  border-radius: 50px; padding: 9px 20px;
  font-size: 13px; font-weight: 600; transition: background .2s;
}
.map-link:hover { background: var(--green2); color: white; }
.map-iframe { border-radius: 12px; overflow: hidden; }

/* ══════════════════════════════════════════════════════════
   FOOTER  (shared by all pages)
══════════════════════════════════════════════════════════ */
footer { background: #014721; color: white; padding: 64px 0 32px; }

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
/* index page uses larger unfiltered logo; other pages use inverted white version */
.footer-brand img {
  height: 90px; margin-bottom: 18px;
}
.footer-brand img.inverted {
  height: 44px;
  filter: brightness(0) invert(1); opacity: .9;
}
.footer-brand-desc { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.75; max-width: 260px; }

.footer-social      { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 14px;
  text-decoration: none; transition: all .2s;
}
.footer-social a:hover { background: rgba(255,255,255,.1); color: white; border-color: rgba(255,255,255,.4); }

.footer-col-title   { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 18px; }
.footer-links       { display: flex; flex-direction: column; gap: 10px; }
.footer-links a     { font-size: 14px; color: rgba(255,255,255,.65); text-decoration: none; font-weight: 400; transition: color .2s; }
.footer-links a:hover { color: white; }

.footer-address     { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.75; }
.footer-address a   { color: var(--gold); text-decoration: none; }
.footer-address a:hover { text-decoration: underline; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; padding-top: 28px;
  font-size: 12px; color: rgba(255,255,255,.35);
}
.footer-bottom a        { color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover  { color: rgba(255,255,255,.75); }
.footer-dev a           { color: var(--gold); text-decoration: none; font-weight: 600; }
.footer-dev a:hover     { text-decoration: underline; }
.footer-bottom-links    { display: flex; flex-wrap: wrap; gap: 8px 20px; }

/* ══════════════════════════════════════════════════════════
   PAGE HERO  (products / contact / about — non-home pages)
══════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--hero-bg) 0%, var(--hero-bg2) 55%, var(--hero-bg3) 100%); padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(255,255,255,.20) 0%, transparent 65%),
    radial-gradient(circle at 5% 90%, rgba(61,107,69,.08) 0%, transparent 45%);
}
.page-hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(28,43,26,.12) 1px, transparent 1px);
  background-size: 28px 28px; opacity: .20;
}
.page-hero-inner {
  position: relative; z-index: 1;
  display: flex; align-items: flex-end;
  justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.hero-inner { position: relative; z-index: 1; }

.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.40); border: 1px solid rgba(255,255,255,.65);
  border-radius: 50px; padding: 6px 16px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--hero-text); margin-bottom: 16px;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 76px); font-weight: 900;
  line-height: .95; color: var(--hero-text); letter-spacing: -.5px; margin-bottom: 16px;
}
.page-hero-title em { font-style: italic; color: var(--green); }
.page-hero-desc     { font-size: 16px; color: var(--hero-sub); line-height: 1.75; max-width: 520px; }

/* stats cluster (used in products hero) */
.page-hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.phs-item        { text-align: center; }
.phs-num         { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--green); line-height: 1; margin-bottom: 4px; }
.phs-lbl         { font-size: 11px; color: var(--hero-sub); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }

/* ══════════════════════════════════════════════════════════
   HOME HERO  (sgmindex only)
══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; background: linear-gradient(135deg, var(--hero-bg) 0%, var(--hero-bg2) 50%, var(--hero-bg3) 100%);
  position: relative; display: flex; align-items: center; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(255,255,255,.22) 0%, transparent 65%),
    radial-gradient(circle at 8% 85%, rgba(61,107,69,.10) 0%, transparent 45%);
  pointer-events: none;
}
.hero-split {
  position: absolute; bottom: 0; right: 0; width: 50%; height: 100%;
  background: rgba(0,0,0,.05);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; padding: 120px 0 80px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.35); border: 1px solid rgba(255,255,255,.6);
  border-radius: 50px; padding: 7px 18px;
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--hero-text); margin-bottom: 28px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7vw, 88px); font-weight: 900;
  line-height: .95; color: var(--hero-text); margin-bottom: 24px; letter-spacing: -.5px;
}
.hero-title em  { font-style: italic; color: var(--green); display: block; }
.hero-desc      { font-size: 17px; color: var(--hero-sub); line-height: 1.75; max-width: 420px; margin-bottom: 40px; font-weight: 400; }
.hero-actions   { display: flex; gap: 14px; flex-wrap: wrap; }

/* floating product image */
.hero-img-wrap {
  position: relative; z-index: 2;
  display: flex; justify-content: flex-end; align-items: center;
  padding: 80px 0 40px;
}
.hero-img-wrap img {
  width: 100%; max-width: 520px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.35));
  animation: heroFloat 5s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* info badges on the hero image */
.hero-badge {
  position: absolute; background: white; border-radius: 14px;
  padding: 12px 18px; box-shadow: 0 8px 28px rgba(0,0,0,.15);
  display: flex; align-items: center; gap: 10px;
}
.hero-badge-1  { bottom: 18%; left: -4%; }
.hero-badge-2  { top: 22%; right: 2%; }
.hb-icon       { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.hb-icon.green { background: var(--green-lt); }
.hb-icon.gold  { background: var(--gold-lt); }
.hb-text-title { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 2px; }
.hb-text-sub   { font-size: 11px; color: var(--sub); font-weight: 400; }

/* ══════════════════════════════════════════════════════════
   CERTIFICATIONS STRIP  (home)
══════════════════════════════════════════════════════════ */
.cert-strip  { background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; }
.cert-inner  { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 20px 48px; }
.cert-item   { display: flex; align-items: center; gap: 12px; }
.cert-icon   { width: 40px; height: 40px; background: var(--green-lt); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.cert-label  { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); }
.cert-divider{ width: 1px; height: 32px; background: var(--border); }

/* ══════════════════════════════════════════════════════════
   HOME PRODUCT CARDS
══════════════════════════════════════════════════════════ */
.products-section  { padding: 100px 0; background: var(--cream); }
.products-header   { text-align: center; margin-bottom: 64px; }
.products-header .section-sub { margin: 14px auto 0; }

.product-card {
  background: white; border-radius: 24px; overflow: hidden;
  border: 1px solid var(--border); height: 100%; transition: all .3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(44,24,16,.1); border-color: var(--green); }

.product-card-img {
  background: var(--cream2); padding: 40px 32px 32px;
  display: flex; justify-content: center; align-items: center;
  min-height: 260px; position: relative; overflow: hidden;
}
.product-card-img::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(61,107,69,.06) 0%, transparent 70%);
}
.product-card-img img {
  width: 100%; max-width: 200px; object-fit: contain;
  position: relative; z-index: 1; transition: transform .4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-card-body   { padding: 28px 28px 32px; }
.product-card-tag    { display: inline-block; background: var(--green-lt); color: var(--green); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 4px 12px; border-radius: 50px; margin-bottom: 12px; }
.product-card-name   { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 10px; letter-spacing: -.2px; }
.product-card-desc   { font-size: 14px; color: var(--sub); line-height: 1.7; margin-bottom: 24px; }
.product-card-attrs  { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }

/* shared attr/tag pill */
.pattr {
  background: var(--cream2); border: 1px solid var(--border); border-radius: 50px;
  padding: 4px 12px; font-size: 11px; font-weight: 600; color: var(--sub);
}

/* ══════════════════════════════════════════════════════════
   NEW TO TOFU  (home)
══════════════════════════════════════════════════════════ */
.ntt-section {
  padding: 100px 0; background: var(--green);
  position: relative; overflow: hidden;
}
.ntt-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(250,247,242,.06) 0%, transparent 60%),
    radial-gradient(circle at 90% 10%, rgba(200,150,62,.1) 0%, transparent 45%);
}
.ntt-section::after {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 360px; height: 360px; background: rgba(255,255,255,.04); border-radius: 50%;
}
.ntt-inner  { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ntt-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px; padding: 6px 16px; font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.9); margin-bottom: 20px;
}
.ntt-title   { font-family: 'Playfair Display', serif; font-size: clamp(36px, 4.5vw, 56px); font-weight: 900; color: white; line-height: 1.05; letter-spacing: -.4px; margin-bottom: 20px; }
.ntt-title em{ font-style: italic; color: var(--gold); }
.ntt-desc    { font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 36px; }
.ntt-right   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ntt-feat    { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 22px 20px; transition: background .2s; }
.ntt-feat:hover { background: rgba(255,255,255,.14); }
.ntt-feat-icon  { font-size: 28px; margin-bottom: 12px; }
.ntt-feat-title { font-size: 15px; font-weight: 700; color: white; margin-bottom: 6px; }
.ntt-feat-desc  { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════
   STORY / BRAND SECTION  (home)
══════════════════════════════════════════════════════════ */
.story-section { padding: 100px 0; background: white; }
.story-inner   { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-visual  { position: relative; }
.story-img-main {
  width: 100%; border-radius: 24px; background: var(--cream2);
  aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center;
  overflow: hidden; border: 1px solid var(--border);
}
.story-img-main img { width: 75%; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(44,24,16,.15)); }
.story-stat-card {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--green); border-radius: 18px; padding: 22px 24px;
  color: white; min-width: 160px;
}
.ssc-num   { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; line-height: 1; margin-bottom: 4px; }
.ssc-label { font-size: 12px; opacity: .75; font-weight: 500; }
.story-badge-card {
  position: absolute; top: 20px; left: -20px;
  background: var(--gold-lt); border: 1px solid rgba(200,150,62,.25);
  border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
}
.sbc-icon { font-size: 22px; }
.sbc-text { font-size: 12px; font-weight: 600; color: var(--brown); line-height: 1.4; }
.story-text .section-sub { max-width: 100%; }
.story-values { margin-top: 36px; display: flex; flex-direction: column; }
.sv-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.sv-item:last-child { border-bottom: none; }
.sv-num   { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--green); min-width: 30px; line-height: 1.3; }
.sv-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.sv-desc  { font-size: 13px; color: var(--sub); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════
   CALLOUT QUOTE  (home + about)
══════════════════════════════════════════════════════════ */
.callout, .promise-callout {
  background: var(--cream2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}
.callout-inner, .pc-inner { text-align: center; }
.callout-quote, .pc-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 48px); font-weight: 700; color: var(--text);
  line-height: 1.25; max-width: 760px; margin: 0 auto 16px; letter-spacing: -.3px;
}
.callout-quote em, .pc-quote em { font-style: italic; color: var(--green); }
.callout-by, .pc-by { font-size: 13px; color: var(--sub); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 28px; }

/* ══════════════════════════════════════════════════════════
   PRODUCTS PAGE — FILTER BAR
══════════════════════════════════════════════════════════ */
.filter-bar   { background: white; border-bottom: 1px solid var(--border); padding: 0; box-shadow: 0 2px 12px rgba(44,24,16,.06); }
.filter-inner { display: flex; align-items: center; gap: 0; overflow-x: auto; scrollbar-width: none; }
.filter-inner::-webkit-scrollbar { display: none; }
.filter-btn {
  flex-shrink: 0; background: transparent; border: none; outline: none;
  padding: 18px 24px; font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--sub); cursor: pointer; border-bottom: 2px solid transparent; transition: all .2s; white-space: nowrap;
}
.filter-btn:hover { color: var(--green); }
.filter-btn.active { color: var(--green); border-bottom-color: var(--green); }

/* ══════════════════════════════════════════════════════════
   PRODUCTS PAGE — CARDS
══════════════════════════════════════════════════════════ */
.products-section { padding: 72px 0 100px; }   /* overrides home value for inner pages */

.cat-heading      { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; margin-top: 64px; }
.cat-heading:first-of-type { margin-top: 0; }
.cat-heading-line { flex: 1; height: 1px; background: var(--border); }
.cat-eyebrow      { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green); white-space: nowrap; }

.pcard {
  background: white; border-radius: 22px; border: 1px solid var(--border);
  overflow: hidden; height: 100%; display: flex; flex-direction: column; transition: all .3s ease;
}
.pcard:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(44,24,16,.1); border-color: var(--green); }

.pcard-img {
  background: var(--cream2); display: flex; justify-content: center; align-items: center;
  min-height: 240px; padding: 36px 28px 28px; position: relative; overflow: hidden;
}
.pcard-img::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 65%, rgba(61,107,69,.06) 0%, transparent 70%);
}
.pcard-img img { width: 100%; max-width: 180px; object-fit: contain; position: relative; z-index: 1; transition: transform .4s ease; }
.pcard:hover .pcard-img img { transform: scale(1.07); }

.pcard-badge      { position: absolute; top: 14px; left: 14px; background: var(--green); color: white; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 11px; border-radius: 50px; }
.pcard-badge.gold { background: var(--gold); color: var(--brown); }
.pcard-badge.new  { background: var(--brown2); }

.pcard-body     { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.pcard-tag      { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
.pcard-name     { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--text); letter-spacing: -.2px; margin-bottom: 10px; }
.pcard-desc     { font-size: 13.5px; color: var(--sub); line-height: 1.7; margin-bottom: 18px; flex: 1; }
.pcard-attrs    { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }

/* mini nutrition row */
.pcard-nutrition { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 20px; }
.pn-item { background: var(--cream); padding: 10px 8px; text-align: center; }
.pn-val  { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--green); line-height: 1; margin-bottom: 2px; }
.pn-lbl  { font-size: 10px; color: var(--sub); font-weight: 500; }

/* wide featured card */
.pcard-wide { background: white; border-radius: 22px; border: 1px solid var(--border); overflow: hidden; display: grid; grid-template-columns: 1fr 1.4fr; transition: all .3s ease; }
.pcard-wide:hover { box-shadow: 0 24px 48px rgba(44,24,16,.1); border-color: var(--green); }
.pcard-wide .pcard-img  { min-height: 280px; border-radius: 0; }
.pcard-wide .pcard-body { padding: 36px 36px 36px 32px; }
.pcard-wide .pcard-name { font-size: 28px; }

/* promise + cta banners */
.promise-section { background: var(--green); padding: 80px 0; position: relative; overflow: hidden; }
.promise-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(250,247,242,.06) 0%, transparent 60%); }
.promise-inner  { position: relative; z-index: 1; text-align: center; }
.promise-title  { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 52px); font-weight: 700; color: white; line-height: 1.15; letter-spacing: -.3px; margin-bottom: 14px; }
.promise-title em { font-style: italic; color: var(--gold); }
.promise-desc   { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.8; max-width: 560px; margin: 0 auto 40px; }
.promise-pills  { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 36px; }
.promise-pill   { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 50px; padding: 10px 20px; display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: white; }
.promise-pill span { font-size: 18px; }

.cta-banner     { background: var(--cream2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 64px 0; }
.cta-inner      { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-text-title { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--text); line-height: 1.2; letter-spacing: -.2px; margin-bottom: 8px; }
.cta-text-title em { font-style: italic; color: var(--green); }
.cta-text-sub   { font-size: 15px; color: var(--sub); line-height: 1.7; max-width: 460px; }
.btn-cta        { flex-shrink: 0; padding: 14px 32px; font-size: 14px; font-weight: 700; }

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════ */
.contact-section { padding: 80px 0 100px; }
.contact-grid    { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start; }

.contact-info-card { background: white; border-radius: 22px; border: 1px solid var(--border); padding: 36px; margin-bottom: 20px; }
.ci-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 6px; letter-spacing: -.2px; }
.ci-sub   { font-size: 14px; color: var(--sub); line-height: 1.7; margin-bottom: 28px; }
.ci-item  { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border); }
.ci-item:last-child { border-bottom: none; padding-bottom: 0; }
.ci-icon  { width: 40px; height: 40px; min-width: 40px; background: var(--green-lt); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 16px; }
.ci-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sub); margin-bottom: 3px; }
.ci-val   { font-size: 14px; color: var(--text); font-weight: 500; line-height: 1.5; }
.ci-val a { color: var(--green); text-decoration: none; }
.ci-val a:hover { text-decoration: underline; }

.social-card  { background: var(--green); border-radius: 22px; padding: 28px 36px; }
.sc-title     { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.sc-links     { display: flex; gap: 12px; }
.sc-link      { width: 42px; height: 42px; border: 1.5px solid rgba(255,255,255,.25); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.75); font-size: 16px; text-decoration: none; transition: all .2s; }
.sc-link:hover{ background: rgba(255,255,255,.15); color: white; border-color: rgba(255,255,255,.5); }

.form-card       { background: white; border-radius: 22px; border: 1px solid var(--border); padding: 40px 40px 44px; }
.form-card-title { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--text); margin-bottom: 6px; letter-spacing: -.2px; }
.form-card-sub   { font-size: 14px; color: var(--sub); line-height: 1.7; margin-bottom: 32px; }

.form-label-custom { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text); margin-bottom: 7px; display: block; }
.form-control-custom {
  width: 100%; border: 1.5px solid var(--border); border-radius: 12px;
  padding: 13px 16px; font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--text);
  background: var(--cream); outline: none; transition: border-color .2s, background .2s;
}
.form-control-custom::placeholder { color: #B0A090; }
.form-control-custom:focus { border-color: var(--green); background: white; box-shadow: 0 0 0 3px rgba(61,107,69,.08); }
textarea.form-control-custom { resize: vertical; min-height: 140px; }

.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { margin-bottom: 16px; }
.form-field:last-of-type { margin-bottom: 0; }

/* contact map section */
.map-section        { background: var(--cream2); border-top: 1px solid var(--border); padding: 72px 0; }
.map-inner          { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: center; }
.map-text-eyebrow   { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.map-title          { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; color: var(--text); line-height: 1.15; letter-spacing: -.3px; margin-bottom: 12px; }
.map-title em       { font-style: italic; color: var(--green); }
.map-address-block  { font-size: 15px; color: var(--sub); line-height: 1.85; margin-bottom: 24px; }
.map-embed          { border-radius: 20px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 8px 32px rgba(44,24,16,.08); }

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════ */
.stats-strip { background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-cell   { padding: 32px 24px; text-align: center; border-right: 1px solid var(--border); }
.stat-cell:last-child { border-right: none; }
.stat-num    { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; color: var(--green); line-height: 1; margin-bottom: 6px; }
.stat-lbl    { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--sub); }

.about-section { padding: 96px 0; }
.about-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual  { position: relative; }
.about-img-wrap { border-radius: 24px; overflow: hidden; background: var(--cream2); border: 1px solid var(--border); aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-float-card { position: absolute; bottom: -24px; right: -24px; background: var(--green); border-radius: 18px; padding: 22px 24px; color: white; min-width: 160px; }
.afc-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; line-height: 1; margin-bottom: 4px; }
.afc-lbl { font-size: 12px; opacity: .7; font-weight: 500; }
.about-badge { position: absolute; top: 24px; left: -24px; background: var(--gold-lt); border: 1px solid rgba(200,150,62,.25); border-radius: 14px; padding: 14px 18px; display: flex; align-items: center; gap: 10px; }
.ab-icon { font-size: 22px; }
.ab-text { font-size: 13px; font-weight: 600; color: var(--brown); line-height: 1.4; }

.about-values { margin-top: 36px; display: flex; flex-direction: column; }
.av-item  { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.av-item:last-child { border-bottom: none; padding-bottom: 0; }
.av-num   { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--green); min-width: 30px; line-height: 1.3; }
.av-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.av-desc  { font-size: 13px; color: var(--sub); line-height: 1.65; }

.mission-section { background: var(--green); padding: 96px 0; position: relative; overflow: hidden; }
.mission-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(250,247,242,.06) 0%, transparent 60%), radial-gradient(circle at 90% 10%, rgba(200,150,62,.1) 0%, transparent 45%); }
.mission-inner   { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.mission-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 50px; padding: 6px 16px; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 18px; }
.mission-title   { font-family: 'Playfair Display', serif; font-size: clamp(30px, 4vw, 46px); font-weight: 700; color: white; line-height: 1.1; letter-spacing: -.3px; margin-bottom: 16px; }
.mission-title em{ font-style: italic; color: var(--gold); }
.mission-body    { font-size: 15px; color: rgba(255,255,255,.72); line-height: 1.85; margin-bottom: 32px; }
.mission-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mp-card         { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 22px 20px; transition: background .2s; }
.mp-card:hover   { background: rgba(255,255,255,.14); }
.mp-icon         { font-size: 28px; margin-bottom: 12px; }
.mp-title        { font-size: 15px; font-weight: 700; color: white; margin-bottom: 6px; }
.mp-desc         { font-size: 13px; color: rgba(255,255,255,.62); line-height: 1.65; }

.values-strip  { padding: 80px 0; background: white; }
.values-header { text-align: center; margin-bottom: 56px; }
.values-header .section-body { margin: 14px auto 0; max-width: 500px; }
.values-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vcard         { background: var(--cream); border: 1.5px solid var(--border); border-radius: 20px; padding: 32px 28px; text-align: center; transition: all .3s; }
.vcard:hover   { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(44,24,16,.08); border-color: var(--green); }
.vcard-icon    { width: 56px; height: 56px; background: var(--green-lt); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 18px; }
.vcard-title   { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 10px; letter-spacing: -.1px; }
.vcard-desc    { font-size: 14px; color: var(--sub); line-height: 1.7; }


/* ── hero cover season badge (sgmindex) ── */
.cover-season-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.7);
  color: var(--hero-text);
  border-radius: 50px; padding: 8px 20px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 24px;
}
.cover-season-badge em { color: var(--green); font-style: normal; }

/* hero stat strip on gold bg */
.stat-strip { background: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.7); }
.stat-cell  { background: transparent; }
.ss-num     { color: var(--hero-text); }
.ss-num em  { color: var(--green); font-style: normal; }
.ss-label   { color: var(--hero-sub); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  /* home hero */
  .hero-img-wrap   { display: none; }
  .hero-content    { padding: 120px 0 80px; text-align: center; }
  .hero-actions    { justify-content: center; }
  .hero-desc       { margin: 0 auto 40px; }
  /* home sections */
  .ntt-inner       { grid-template-columns: 1fr; gap: 48px; }
  .ntt-right       { max-width: 480px; }
  .story-inner     { grid-template-columns: 1fr; gap: 48px; }
  .story-visual    { max-width: 400px; margin: 0 auto; }
  .story-badge-card{ left: 0; }
  /* products */
  .pcard-wide      { grid-template-columns: 1fr; }
  .pcard-wide .pcard-img { min-height: 200px; }
  .cta-inner       { flex-direction: column; text-align: center; }
  .cta-text-sub    { margin: 0 auto; }
  /* contact */
  .contact-grid    { grid-template-columns: 1fr; }
  .map-inner       { grid-template-columns: 1fr; gap: 36px; }
  /* about */
  .about-grid      { grid-template-columns: 1fr; gap: 48px; }
  .about-visual    { max-width: 420px; margin: 0 auto; }
  .about-badge     { left: 0; }
  .about-float-card{ right: 0; }
  .mission-inner   { grid-template-columns: 1fr; gap: 48px; }
  .values-grid     { grid-template-columns: 1fr 1fr; }
  .stats-inner     { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-cell:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  /* footer */
  .footer-top      { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 767px) {
  .cert-inner      { gap: 16px 28px; }
  .cert-divider    { display: none; }
  .products-section{ padding: 48px 0 72px; }
  .ntt-section     { padding: 72px 0; }
  .story-section   { padding: 72px 0; }
  .ntt-right       { grid-template-columns: 1fr; max-width: 100%; }
  .page-hero       { padding: 120px 0 60px; }
  .page-hero-stats { gap: 20px; }
  .form-row        { grid-template-columns: 1fr; }
  .form-card       { padding: 28px 24px 32px; }
  .contact-section { padding: 56px 0 72px; }
  .map-section     { padding: 56px 0; }
  .values-grid     { grid-template-columns: 1fr; }
  .about-section   { padding: 64px 0; }
  .mission-section { padding: 64px 0; }
  .values-strip    { padding: 56px 0; }
  .about-float-card{ display: none; }
  .mission-pillars { grid-template-columns: 1fr; }
  .footer-top      { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom   { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title      { font-size: 42px; }
  .story-stat-card { display: none; }
  .hero-badge      { display: none; }
  .stats-inner     { grid-template-columns: 1fr; }
  .stat-cell       { border-right: none !important; border-top: 1px solid var(--border); }
  .stat-cell:first-child { border-top: none; }
}