/* =========================================================
   LANKA BUILD (PVT) LTD — Design System
   Signature idea: the logo's diagonal "site-level line" (the
   sweeping band that cuts across the skyline mark) is reused
   everywhere as a structural device — section dividers, tags,
   and the hero — like a level line laid across a job site.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600;700;800;900&family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root{
  --ink:        #0B1F13;
  --forest:     #0A4713;
  --forest-2:   #0E5A19;
  --leaf:       #279147;
  --leaf-2:     #34C061;
  --steel:      #435650;
  --steel-2:    #6E7F79;
  --concrete:   #FFFFFF;
  --concrete-2: #FFFFFF;
  --card:       #FFFFFF;
  --amber:      #F2A93B;
  --amber-2:    #D88F1F;
  --line:       rgba(11,31,19,0.14);
  --line-soft:  rgba(11,31,19,0.08);

  --display: 'Big Shoulders Display', sans-serif;
  --body:    'IBM Plex Sans', sans-serif;
  --mono:    'IBM Plex Mono', monospace;

  --maxw: 1240px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--body);
  color:var(--ink);
  background:var(--concrete);
  -webkit-font-smoothing:antialiased;
  line-height:1.55;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--display); margin:0; line-height:0.98; letter-spacing:0.2px; }
p{ margin:0 0 1em; }
button{ font-family:inherit; cursor:pointer; }

:focus-visible{ outline:3px solid var(--amber); outline-offset:2px; }

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

/* ---------- Eyebrow / warehouse-tag label ---------- */
.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--forest);
  background:#F1F7F2;
  border:1px solid var(--line);
  padding:6px 14px 6px 10px;
  border-radius:var(--radius-pill);
}
.tag::before{
  content:"";
  width:7px; height:7px;
  background:var(--leaf-2);
  border-radius:50%;
  box-shadow:0 0 0 2px rgba(46,158,76,0.18);
}
.tag.on-dark{ color:var(--leaf-2); background:rgba(255,255,255,0.06); border-color:rgba(255,255,255,0.16); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 26px;
  font-family:var(--body);
  font-weight:600;
  font-size:15px;
  border-radius:var(--radius-pill);
  border:2px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn:active{ transform:translateY(0); }
.btn-primary:hover{ box-shadow:0 10px 24px -10px rgba(242,169,59,0.55); }
.btn-dark:hover{ box-shadow:0 10px 24px -12px rgba(11,31,19,0.45); }
.btn-primary{ background:var(--amber); color:var(--ink); }
.btn-primary:hover{ background:var(--amber-2); }
.btn-dark{ background:var(--ink); color:#fff; }
.btn-dark:hover{ background:var(--forest); }
.btn-outline{ background:transparent; border-color:var(--ink); color:var(--ink); }
.btn-outline:hover{ background:var(--ink); color:#fff; }
.btn-outline-light{ background:transparent; border-color:rgba(255,255,255,0.55); color:#fff; }
.btn-outline-light:hover{ background:#fff; color:var(--ink); border-color:#fff; }
.btn-sm{ padding:9px 16px; font-size:13px; }
.btn-block{ width:100%; }

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:200;
  background:rgba(243,245,240,0.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.topbar{
  background:var(--ink); color:rgba(255,255,255,0.75);
  font-family:var(--mono); font-size:12.5px; letter-spacing:.03em;
}
.topbar .wrap{ display:flex; justify-content:space-between; align-items:center; padding:7px 28px; gap:16px; flex-wrap:wrap; }
.topbar a{ color:#fff; }
.topbar-links{ display:flex; gap:18px; }
.topbar-links a:hover{ color:var(--leaf-2); }

.navrow{ display:flex; align-items:center; justify-content:space-between; padding:14px 28px; gap:24px; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ width:42px; height:42px; }
.on-dark-logo, .footer-brand .brand img{
  background:#fff; border-radius:50%; padding:5px; width:42px; height:42px;
  box-shadow:0 0 0 1px rgba(255,255,255,0.08);
}
.brand-text{ font-family:var(--display); font-weight:800; font-size:22px; letter-spacing:.2px; line-height:1; }
.brand-text small{ display:block; font-family:var(--mono); font-weight:400; font-size:10px; letter-spacing:.16em; color:var(--steel); text-transform:uppercase; margin-top:3px; }

.main-nav{ display:flex; align-items:center; gap:0; }
.main-nav a{
  padding:10px 11px; font-weight:600; font-size:14px; color:var(--ink);
  border-bottom:2px solid transparent; transition:color .15s, border-color .15s; white-space:nowrap;
}
.main-nav a:hover, .main-nav a.active{ color:var(--forest); border-color:var(--amber); }

.nav-actions{ display:flex; align-items:center; gap:10px; }
.icon-btn{
  position:relative; width:40px; height:40px; display:flex; align-items:center; justify-content:center;
  border:1.5px solid var(--line); border-radius:var(--radius-sm); background:#fff;
  transition:transform .18s ease, border-color .18s ease;
}
.icon-btn:hover{ transform:translateY(-2px); border-color:var(--forest); }
.icon-btn svg{ width:19px; height:19px; }
.cart-count{
  position:absolute; top:-7px; right:-7px; background:var(--amber); color:var(--ink);
  font-family:var(--mono); font-size:10.5px; font-weight:600; min-width:18px; height:18px; border-radius:9px;
  display:flex; align-items:center; justify-content:center; padding:0 3px;
}
.burger{ display:none; }

/* ---------- Signature banner (previously a diagonal cut — redesigned for readability) ---------- */
.level-band{
  position:relative; overflow:hidden;
  background:linear-gradient(115deg, var(--forest) 0%, var(--forest-2) 55%, var(--leaf) 140%);
}
.level-band-inner{ position:relative; z-index:1; }

.section-divider{
  height:3px; width:100%;
  background:repeating-linear-gradient(-2.2deg, var(--forest) 0 60px, var(--leaf-2) 60px 64px, transparent 64px 74px);
  opacity:.55;
}

/* ---------- Hero ---------- */
.hero{
  position:relative; color:#fff; overflow:hidden; padding:0;
}
.hero-bg{ position:absolute; inset:0; z-index:0; background:#0E2416; }
.hero-bg img{ width:100%; height:100%; object-fit:cover; display:block; }
.hero-bg::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(11,31,19,0.97) 0%, rgba(11,31,19,0.9) 30%, rgba(11,31,19,0.55) 58%, rgba(11,31,19,0.22) 100%);
}
.hero-content{ position:relative; z-index:1; max-width:620px; padding:100px 0 76px; }
.hero h1{
  font-size:clamp(44px,6vw,78px); font-weight:800; color:#fff; margin:14px 0 22px;
}
.hero h1 em{ font-style:normal; color:var(--leaf-2); }
.hero p.lead{ font-size:18px; color:rgba(255,255,255,0.85); max-width:520px; margin-bottom:32px; }
.hero-cta{ display:flex; gap:14px; flex-wrap:wrap; }

.hero-badges{ position:absolute; top:26px; right:26px; z-index:2; display:flex; flex-direction:column; gap:10px; align-items:flex-end;}
.hero .corner-tag{
  position:absolute; bottom:104px; right:26px; z-index:2; font-family:var(--mono); font-size:12px; color:var(--leaf-2);
  letter-spacing:.08em; text-transform:uppercase;
}
.spec-chip{
  font-family:var(--mono); font-size:11.5px; background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.22); padding:6px 12px; color:rgba(255,255,255,0.9);
  border-radius:var(--radius-pill); backdrop-filter:blur(3px);
}

.hero-stats{ position:relative; z-index:1; display:flex; gap:0; border-top:1px solid rgba(255,255,255,0.15); background:rgba(11,31,19,0.72); backdrop-filter:blur(6px); }
.hero-stats .stat{ flex:1; padding:24px 0; border-right:1px solid rgba(255,255,255,0.15); }
.hero-stats .stat:last-child{ border-right:none; }
.hero-stats .stat .num{ font-family:var(--display); font-size:38px; font-weight:800; color:var(--leaf-2); }
.hero-stats .stat .label{ font-family:var(--mono); font-size:11.5px; text-transform:uppercase; letter-spacing:.08em; color:rgba(255,255,255,0.65); }

@media (max-width:980px){
  .hero-bg::after{ background:linear-gradient(180deg, rgba(11,31,19,0.75) 0%, rgba(11,31,19,0.94) 55%, rgba(11,31,19,0.98) 100%); }
  .hero-content{ max-width:100%; padding:64px 0 48px; }
  .hero .corner-tag{ display:none; }
}

/* ---------- Section basics ---------- */
.section{ padding:88px 0; }
.section-tight{ padding:56px 0; }
.section-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom:44px; flex-wrap:wrap; }
.section-head h2{ font-size:clamp(30px,3.6vw,48px); font-weight:800; margin-top:12px; }
.section-head .kicker{ margin-bottom:0; }
.section-head p{ max-width:480px; color:var(--steel); margin:12px 0 0; }
.on-dark{ background:var(--ink); color:#fff; }
.on-dark .section-head p{ color:rgba(255,255,255,0.68); }
.on-concrete-2{ background:var(--concrete-2); border-top:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft); }

/* ---------- Category / product cards ---------- */
.grid{ display:grid; gap:22px; }
.grid > *{ min-width:0; }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
.grid-2{ grid-template-columns:repeat(2,1fr); }

.cat-card{
  background:var(--card); border:1px solid var(--line); padding:0;
  border-radius:var(--radius-md); overflow:hidden;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s;
  position:relative; display:block;
}
.cat-card:hover{ transform:translateY(-6px); border-color:var(--line-soft); box-shadow:0 18px 34px -18px rgba(11,31,19,0.28); }
.cat-card .cat-media{ position:relative; aspect-ratio:4/3; background:#F1F7F2; overflow:hidden; }
.cat-card .cat-media img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s ease; }
.cat-card:hover .cat-media img{ transform:scale(1.06); }
.cat-card .cat-media::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(to top, rgba(11,31,19,0.78), rgba(11,31,19,0.05) 55%);
}
.cat-card .icon-wrap{
  position:absolute; left:16px; bottom:16px; z-index:1;
  width:44px; height:44px; display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,0.14); backdrop-filter:blur(3px); border:1px solid rgba(255,255,255,0.3);
  border-radius:var(--radius-sm);
}
.cat-card .icon-wrap svg{ stroke:#fff; width:22px; height:22px; }
.cat-card .cat-body{ padding:22px 24px 26px; }
.cat-card h3{ font-size:22px; font-weight:700; margin-bottom:8px; }
.cat-card p{ color:var(--steel); font-size:14.5px; margin-bottom:14px; }
.cat-card .see-more{ font-family:var(--mono); font-size:12.5px; text-transform:uppercase; letter-spacing:.05em; color:var(--forest); font-weight:600; }

/* ---------- Plain icon+text info card (About page trade cards etc) ---------- */
.icon-card{
  background:var(--card); border:1px solid var(--line); padding:28px;
  border-radius:var(--radius-md);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s;
  position:relative;
}
.icon-card:hover{ transform:translateY(-6px); border-color:var(--forest); box-shadow:0 18px 34px -18px rgba(11,31,19,0.28); }
.icon-card .icon-wrap{ position:static; width:56px; height:56px; display:flex; align-items:center; justify-content:center; background:#F1F7F2; margin-bottom:20px; border-radius:var(--radius-sm); backdrop-filter:none; }
.icon-card .icon-wrap svg{ width:30px; height:30px; stroke:var(--forest); }
.icon-card h3{ font-size:22px; font-weight:700; margin-bottom:8px; }
.icon-card p{ color:var(--steel); font-size:14.5px; margin-bottom:0; }

.product-card{
  background:var(--card); border:1px solid var(--line); display:flex; flex-direction:column;
  border-radius:var(--radius-md); overflow:hidden;
  transition:box-shadow .22s ease, transform .22s ease, border-color .22s ease;
}
.product-card:hover{ box-shadow:0 20px 38px -20px rgba(11,31,19,0.3); transform:translateY(-5px); border-color:var(--line-soft); }
.product-media{
  aspect-ratio:4/3; background:#F5F8F4; position:relative; display:flex; align-items:center; justify-content:center;
  border-bottom:1px solid var(--line);
}
.product-media svg{ width:46%; height:46%; stroke:var(--steel-2); opacity:.9; }
.product-media .stock-tag{
  position:absolute; top:10px; left:10px; font-family:var(--mono); font-size:10.5px; background:var(--ink); color:var(--leaf-2);
  padding:4px 9px; letter-spacing:.06em; text-transform:uppercase; border-radius:var(--radius-pill);
}
.product-media .badge-wholesale{
  position:absolute; top:10px; right:10px; font-family:var(--mono); font-size:10px; background:var(--amber); color:var(--ink);
  padding:4px 9px; letter-spacing:.04em; font-weight:600; border-radius:var(--radius-pill);
}
.product-body{ padding:18px 18px 20px; display:flex; flex-direction:column; gap:8px; flex:1; }
.product-brand{ font-family:var(--mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--forest); }
.product-body h4{ font-family:var(--body); font-size:16.5px; font-weight:600; }
.product-body .desc{ font-size:13px; color:var(--steel); margin:0; }
.product-foot{ margin-top:auto; display:flex; align-items:center; justify-content:space-between; padding-top:12px; border-top:1px dashed var(--line); }
.price{ font-family:var(--mono); font-weight:600; font-size:15px; }
.price small{ display:block; font-size:10px; color:var(--steel-2); font-weight:400; text-transform:uppercase; }
.add-btn{ width:38px; height:38px; background:var(--ink); color:#fff; display:flex; align-items:center; justify-content:center; border:none; border-radius:var(--radius-sm); transition:background .18s ease, transform .18s ease; }
.add-btn:hover{ background:var(--forest); transform:scale(1.08) rotate(-4deg); }
.add-btn svg{ width:16px; height:16px; }

/* ---------- Filters ---------- */
.filter-bar{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:32px; }
.filter-chip{
  font-family:var(--mono); font-size:12.5px; text-transform:uppercase; letter-spacing:.04em;
  padding:10px 18px; border:1.5px solid var(--line); background:#fff; color:var(--steel);
  border-radius:var(--radius-pill); transition:all .2s ease;
}
.filter-chip:hover{ border-color:var(--forest); color:var(--forest); transform:translateY(-2px); }
.filter-chip.active{ background:var(--ink); color:#fff; border-color:var(--ink); }

/* ---------- Brand strip / brand cards ---------- */
.brand-marquee{ border-top:1px solid var(--line); border-bottom:1px solid var(--line); overflow:hidden; background:var(--card); }
.brand-track{ display:flex; gap:0; width:max-content; animation:scroll 32s linear infinite; }
.brand-marquee:hover .brand-track{ animation-play-state:paused; }
@keyframes scroll{ from{transform:translateX(0);} to{transform:translateX(-50%);} }
.brand-item{ padding:26px 46px; font-family:var(--display); font-weight:800; font-size:24px; color:var(--steel-2); white-space:nowrap; border-right:1px dashed var(--line); }

.brand-card{
  background:var(--card); border:1px solid var(--line); padding:26px; display:flex; flex-direction:column; gap:14px;
  border-radius:var(--radius-md); transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.brand-card:hover{ transform:translateY(-6px); box-shadow:0 18px 34px -18px rgba(11,31,19,0.28); border-color:var(--line-soft); }
.brand-card .brand-mark{
  font-family:var(--display); font-weight:800; font-size:26px; color:var(--ink);
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.brand-card .brand-mark .tag{ font-size:10.5px; flex-shrink:0; }
.brand-logo-img{ max-height:44px; max-width:150px; width:auto; object-fit:contain; }
.brand-card p{ color:var(--steel); font-size:13.5px; margin:0; }
.brand-card .cats{ display:flex; gap:6px; flex-wrap:wrap; margin-top:auto; }
.brand-card .cats span{ font-family:var(--mono); font-size:10.5px; background:#F1F7F2; padding:5px 10px; color:var(--steel); border-radius:var(--radius-pill); }

/* ---------- Timeline / about ---------- */
.timeline{ border-left:2px solid var(--line); padding-left:28px; display:flex; flex-direction:column; gap:34px; }
.timeline .item{ position:relative; }
.timeline .item::before{
  content:""; position:absolute; left:-34px; top:4px; width:12px; height:12px; background:var(--amber); border:2px solid var(--ink); border-radius:50%;
}
.timeline .date{ font-family:var(--mono); font-size:12.5px; color:var(--forest); letter-spacing:.06em; }
.timeline h4{ font-family:var(--body); font-weight:700; font-size:17px; margin:6px 0 6px; }
.timeline p{ color:var(--steel); font-size:14.5px; margin:0; }

.value-card{ display:flex; gap:16px; padding:22px 0; border-bottom:1px solid var(--line-soft); }
.value-card .n{ font-family:var(--display); font-size:34px; font-weight:800; color:var(--leaf); width:52px; flex-shrink:0; }
.value-card h4{ font-size:18px; font-weight:700; margin-bottom:6px; }
.value-card p{ color:var(--steel); font-size:14.5px; margin:0; }

.md-card{ background:var(--ink); color:#fff; display:grid; grid-template-columns:.8fr 1.2fr; overflow:hidden; border-radius:var(--radius-lg); }
.md-photo{ position:relative; }
.md-photo img{ width:100%; height:100%; object-fit:cover; }
.md-info{ padding:44px; display:flex; flex-direction:column; justify-content:center; }
.md-info .role{ font-family:var(--mono); font-size:12.5px; color:var(--leaf-2); text-transform:uppercase; letter-spacing:.1em; margin-bottom:10px; }
.md-info h3{ font-size:34px; font-weight:800; margin-bottom:6px; }
.md-info .creds{ font-family:var(--mono); font-size:12.5px; color:rgba(255,255,255,0.6); margin-bottom:18px; }
.md-info p{ color:rgba(255,255,255,0.78); font-size:15px; }
.md-info .sig{ margin-top:18px; font-family:var(--display); font-size:26px; color:var(--leaf-2); border-top:1px solid rgba(255,255,255,0.16); padding-top:14px; }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start; }
.info-row{ display:flex; gap:16px; padding:18px 0; border-bottom:1px solid var(--line-soft); }
.info-row .ic{ width:40px; height:40px; background:#F1F7F2; display:flex; align-items:center; justify-content:center; flex-shrink:0; border-radius:var(--radius-sm); }
.info-row .ic svg{ width:19px; height:19px; stroke:var(--forest); }
.info-row h4{ font-size:14.5px; font-weight:700; margin-bottom:3px; }
.info-row p, .info-row a{ font-size:14px; color:var(--steel); margin:0; }
.info-row a:hover{ color:var(--forest); }

.social-row{ display:flex; gap:10px; margin-top:20px; }
.social-btn{ width:44px; height:44px; border:1.5px solid var(--line); border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; background:#fff; color:var(--ink); transition:all .2s ease; }
.social-btn:hover{ background:var(--ink); border-color:var(--ink); transform:translateY(-3px); }
.social-btn:hover svg{ stroke:#fff; fill:#fff; }
.social-btn svg{ width:19px; height:19px; }

.form-field{ margin-bottom:18px; }
.form-field label{ display:block; font-family:var(--mono); font-size:11.5px; text-transform:uppercase; letter-spacing:.06em; margin-bottom:7px; color:var(--steel); }
.form-field input, .form-field select, .form-field textarea{
  width:100%; padding:13px 16px; border:1.5px solid var(--line); background:#fff; font-family:var(--body); font-size:14.5px; color:var(--ink); border-radius:var(--radius-sm);
  transition:border-color .18s ease, box-shadow .18s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{ border-color:var(--forest); box-shadow:0 0 0 4px rgba(10,71,19,0.08); }
.form-row-2{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.map-embed{ border:1px solid var(--line); width:100%; height:340px; border-radius:var(--radius-md); }
.form-note{ font-size:12.5px; color:var(--steel-2); margin-top:10px; }

/* ---------- CTA band ---------- */
.cta-band{ background:var(--forest); color:#fff; text-align:center; padding:70px 0; }
.cta-band h2{ font-size:clamp(28px,4vw,44px); font-weight:800; margin-bottom:16px; }
.cta-band p{ color:rgba(255,255,255,0.8); max-width:540px; margin:0 auto 28px; }
.cta-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ---------- Footer ---------- */
.site-footer{ background:var(--ink); color:rgba(255,255,255,0.7); padding-top:64px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,0.12); }
.footer-brand .brand-text{ color:#fff; }
.footer-brand p{ font-size:13.5px; color:rgba(255,255,255,0.55); margin:16px 0 20px; max-width:280px; }
.footer-col h5{ font-family:var(--mono); font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--leaf-2); margin-bottom:16px; }
.footer-col ul li{ margin-bottom:10px; }
.footer-col a{ font-size:14px; color:rgba(255,255,255,0.75); }
.footer-col a:hover{ color:var(--leaf-2); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:22px 0; font-size:12.5px; color:rgba(255,255,255,0.45); flex-wrap:wrap; gap:10px; }
.footer-bottom .made{ font-family:var(--mono); }
.biz-hours{
  margin-top:18px; padding:14px 16px; background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1); border-radius:var(--radius-sm);
}
.biz-hours .label{ font-family:var(--mono); font-size:10.5px; text-transform:uppercase; letter-spacing:.08em; color:var(--leaf-2); margin-bottom:6px; }
.biz-hours p{ font-size:13px; color:rgba(255,255,255,0.68); margin:0; line-height:1.5; }
.footer-tags{ display:flex; gap:8px; align-items:center; font-family:var(--mono); font-size:11.5px; color:rgba(255,255,255,0.5); flex-wrap:wrap; }
.footer-tags .dot{ opacity:.5; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero{ background:var(--ink); color:#fff; padding:56px 0 60px; }
.page-hero h1{ font-size:clamp(36px,5vw,58px); font-weight:800; margin:14px 0 12px; }
.page-hero .crumbs{ font-family:var(--mono); font-size:12.5px; color:rgba(255,255,255,0.55); }
.page-hero .crumbs a:hover{ color:var(--leaf-2); }
.page-hero p{ color:rgba(255,255,255,0.7); max-width:560px; margin:0; }

/* ---------- Utility ---------- */
.mt-0{ margin-top:0; }
.center{ text-align:center; }
.stack{ display:flex; flex-direction:column; }
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.badge-list{ display:flex; gap:10px; flex-wrap:wrap; }

/* ---------- Toast (cart) ---------- */
.toast{
  position:fixed; bottom:96px; right:24px; background:var(--ink); color:#fff; padding:14px 22px;
  font-size:14px; display:flex; align-items:center; gap:10px;
  transform:translateY(140%) scale(.96); opacity:0; transition:transform .35s cubic-bezier(.2,.8,.2,1), opacity .3s ease;
  z-index:999; border-left:4px solid var(--leaf-2); border-radius:var(--radius-sm);
  box-shadow:0 16px 34px -14px rgba(11,31,19,0.4);
}
.toast.show{ transform:translateY(0) scale(1); opacity:1; }

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float{
  position:fixed; bottom:24px; right:24px; z-index:998;
  width:56px; height:56px; border-radius:50%; background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 12px 28px -10px rgba(0,0,0,0.4);
  transition:transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover{ transform:scale(1.08); box-shadow:0 16px 34px -10px rgba(0,0,0,0.5); }
.whatsapp-float svg{ width:28px; height:28px; fill:#fff; }
@media (max-width:480px){
  .whatsapp-float{ width:50px; height:50px; bottom:18px; right:18px; }
  .toast{ right:18px; bottom:86px; left:18px; }
}

/* ---------- Topbar hours + socials ---------- */
.topbar-meta{ display:flex; align-items:center; gap:16px; }
.topbar-hours{ display:flex; align-items:center; gap:6px; }
.topbar-social{ display:flex; align-items:center; gap:8px; }
.topbar-social a{ display:flex; align-items:center; justify-content:center; width:22px; height:22px; color:#fff; opacity:.85; transition:opacity .15s ease; }
.topbar-social a:hover{ opacity:1; color:var(--leaf-2); }
.topbar-social svg{ width:15px; height:15px; }
@media (max-width:860px){
  .topbar-hours{ display:none; }
}

/* ---------- Responsive ---------- */
@media (max-width:1180px){
  .main-nav a{ padding:10px 8px; font-size:13.5px; }
  .brand-text{ font-size:19px; }
}
@media (max-width:980px){
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .contact-grid, .two-col{ grid-template-columns:1fr; gap:32px; }
  .md-card{ grid-template-columns:1fr; }
  .md-photo{ height:320px; }
  .section{ padding:64px 0; }
}
@media (max-width:720px){
  .main-nav, .topbar-links{ display:none; }
  .burger{ display:flex; }
  .grid-4, .grid-3, .grid-2{ grid-template-columns:1fr 1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .form-row-2{ grid-template-columns:1fr; }
  .hero-stats{ flex-wrap:wrap; }
  .hero-stats .stat{ flex:1 1 50%; border-bottom:1px solid rgba(255,255,255,0.15); }
  .section{ padding:52px 0; }
  .section-tight{ padding:40px 0; }
  .page-hero{ padding:44px 0 46px; }
  .cta-band{ padding:52px 0; }
  .section-head{ margin-bottom:30px; }
  .hero-cta, .cta-actions{ flex-direction:column; align-items:stretch; }
  .hero-cta .btn, .cta-actions .btn{ width:100%; }
  .platform-card, .subscribe-card{ padding:28px; }
  .btn{ white-space:normal; text-align:center; }
  .subscribe-form{ flex-direction:column; align-items:stretch; }
  .subscribe-form .btn{ width:100%; }
  .rating-banner{ justify-content:center; text-align:center; }
}
@media (max-width:480px){
  .grid-4, .grid-3, .grid-2{ grid-template-columns:1fr; }
  .navrow{ padding:12px 18px; }
  .wrap{ padding:0 18px; }
  .hero h1{ font-size:34px; }
  .hero p.lead{ font-size:16px; }
  .brand-text{ font-size:17px; }
  .brand img{ width:34px; height:34px; }
  .on-dark-logo, .footer-brand .brand img{ width:34px; height:34px; }
  .section-head h2{ font-size:26px; }
  .cta-band h2{ font-size:26px; }
  .page-hero h1{ font-size:30px; }
  .md-info{ padding:28px; }
  .md-photo{ height:260px; }
  .info-row{ gap:12px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; gap:6px; }
  .topbar .wrap{ flex-direction:column; align-items:flex-start; gap:4px; }
}

/* ---------- Page transitions ---------- */
body{
  opacity:0;
  transition:opacity .18s ease;
}
body.is-loaded{ opacity:1; }
body.is-exiting{ opacity:0; transition:opacity .12s ease; }

/* ---------- Scroll-reveal ---------- */
.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.in-view{ opacity:1; transform:translateY(0); }
.reveal-stagger.in-view{ transition-delay:calc(var(--stagger, 0) * 70ms); }

@media (prefers-reduced-motion: reduce){
  body{ opacity:1 !important; transition:none !important; }
  .reveal{ opacity:1 !important; transform:none !important; transition:none !important; }
  .btn:hover, .cat-card:hover, .product-card:hover, .brand-card:hover, .icon-btn:hover, .social-btn:hover{ transform:none !important; }
}

/* Mobile nav drawer */
.mobile-nav{
  position:fixed; inset:0; background:var(--ink); z-index:300; padding:26px;
  display:flex; flex-direction:column; transform:translateX(100%); transition:transform .28s ease;
}
.mobile-nav.open{ transform:translateX(0); }
.mobile-nav a{ color:#fff; font-family:var(--display); font-size:28px; font-weight:700; padding:14px 0; border-bottom:1px solid rgba(255,255,255,0.12); }
.mobile-nav .close-x{ align-self:flex-end; color:#fff; background:none; border:none; font-size:28px; margin-bottom:20px; }
