/* ============================================
   MAJOKA HARDWARE — SHARED STYLESHEET
   index.html · about.html · products.html · reach-us.html
   ============================================ */

:root {
  --red: #E1251B;
  --red-dark: #B81D14;
  --blue: #1F7AC9;
  --blue-dark: #185F9F;
  --blue-light: #EAF4FB;
  --ink: #0F172A;
  --text: #334155;
  --muted: #64748B;
  --border: #E5E7EB;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-cream: #FAF5F2;
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.05);
  --shadow: 0 10px 30px -12px rgba(15,23,42,0.10);
  --shadow-lg: 0 22px 50px -16px rgba(15,23,42,0.16);
  --container: 1400px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Ubuntu', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-size: 18px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; color: inherit; }

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

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
  background: rgba(255,255,255,0.95);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; padding-bottom: 18px; }
.brand { display: flex; align-items: center; gap: 18px; transition: transform .3s var(--ease); }
.brand:hover { transform: translateY(-1px); }
.brand-logo { height: 64px; width: auto; display: block; transition: transform .35s var(--ease); }
.brand:hover .brand-logo { transform: scale(1.03); }
.brand-tagline {
  font-family: 'Ubuntu', sans-serif;
  font-size: 20px; font-weight: 300; font-style: italic;
  color: var(--blue); letter-spacing: 0.3px;
  padding-left: 18px; line-height: 1;
  border-left: 1px solid var(--border);
  white-space: nowrap;
}
.menu { display: flex; gap: 38px; }
.menu a {
  font-size: 15px; font-weight: 500; letter-spacing: 1.8px;
  color: var(--muted); position: relative; padding: 4px 0;
  transition: color .2s var(--ease);
}
.menu a:hover { color: var(--ink); }
.menu a.active { color: var(--ink); }
.menu a.active::after {
  content: ''; position: absolute;
  bottom: -22px; left: 0; height: 2px; width: 28px;
  background: var(--red);
  transform-origin: left;
  animation: linein .35s var(--ease);
}
.menu a:not(.active):hover::after {
  content: ''; position: absolute; bottom: -22px; left: 0;
  height: 2px; width: 28px;
  background: var(--muted); opacity: 0.5;
  transform-origin: left;
  animation: linein .35s var(--ease);
}
@keyframes linein { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ============ MOBILE DRAWER ============ */
.nav-toggle {
  display: none;
  background: transparent; border: none;
  width: 44px; height: 44px;
  cursor: pointer; padding: 12px;
  flex-direction: column; justify-content: space-between;
  align-items: stretch;
  z-index: 110;
}
.nav-toggle .bar {
  display: block;
  height: 2px; width: 100%; background: var(--ink);
  transition: transform .35s var(--ease), opacity .25s var(--ease);
  transform-origin: center;
}
.nav-toggle.open .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-backdrop {
  position: fixed; inset: 0; z-index: 105;
  background: rgba(15,23,42,0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility 0s linear .4s;
}
.nav-backdrop.open { opacity: 1; visibility: visible; transition: opacity .4s var(--ease); }

.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 108;
  width: 86%; max-width: 380px;
  background: #fff;
  transform: translateX(105%);
  transition: transform .55s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: -22px 0 60px -20px rgba(15,23,42,0.18);
}
.nav-drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}
.drawer-head .brand-logo { height: 44px; }
.drawer-close {
  width: 40px; height: 40px;
  background: var(--bg-soft); border: none;
  display: grid; place-items: center;
  cursor: pointer;
  border-radius: 50%;
  color: var(--ink);
  transition: background .25s var(--ease), color .25s var(--ease), transform .35s var(--ease);
}
.drawer-close:hover { background: var(--red); color: #fff; transform: rotate(90deg); }
.drawer-close .ti { font-size: 20px; }

.drawer-menu { flex: 1; padding: 18px 0; display: flex; flex-direction: column; }
.drawer-menu a {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 28px;
  font-size: 18px; font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  opacity: 0; transform: translateX(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), background .25s var(--ease), color .25s var(--ease), padding-left .25s var(--ease);
}
.drawer-menu a:last-child { border-bottom: none; }
.drawer-menu a .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--red);
  font-weight: 600; letter-spacing: 1px;
}
.drawer-menu a .label { flex: 1; }
.drawer-menu a .ti {
  font-size: 18px; color: var(--muted);
  margin-left: auto;
  transition: transform .25s var(--ease), color .25s var(--ease);
}
.drawer-menu a:hover { background: var(--bg-soft); padding-left: 36px; }
.drawer-menu a:hover .ti { color: var(--red); transform: translateX(3px); }
.drawer-menu a.active { color: var(--red); background: var(--bg-cream); }
.drawer-menu a.active .ti { color: var(--red); }

.nav-drawer.open .drawer-menu a { opacity: 1; transform: translateX(0); }
.nav-drawer.open .drawer-menu a:nth-child(1) { transition-delay: .18s; }
.nav-drawer.open .drawer-menu a:nth-child(2) { transition-delay: .26s; }
.nav-drawer.open .drawer-menu a:nth-child(3) { transition-delay: .34s; }
.nav-drawer.open .drawer-menu a:nth-child(4) { transition-delay: .42s; }

.drawer-foot {
  padding: 22px 28px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 12px;
  background: var(--bg-soft);
}
.drawer-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text);
  font-weight: 500;
  transition: color .2s var(--ease);
}
.drawer-link:hover { color: var(--red); }
.drawer-link .ti { font-size: 16px; color: var(--red); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 26px;
  font-size: 13px; font-weight: 500; letter-spacing: 1.3px;
  text-transform: uppercase;
  cursor: pointer; border: none; font-family: inherit;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .ti { font-size: 15px; transition: transform .25s var(--ease); }
.btn:hover .ti-arrow-narrow-right,
.btn:hover .ti-arrow-right { transform: translateX(3px); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 6px 18px -6px rgba(225,37,27,0.5); }
.btn-red:hover { background: var(--red-dark); box-shadow: 0 10px 24px -6px rgba(225,37,27,0.55); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 6px 18px -6px rgba(31,122,201,0.5); }
.btn-blue:hover { background: var(--blue-dark); box-shadow: 0 10px 24px -6px rgba(31,122,201,0.55); }
.btn-outline { background: #fff; color: var(--ink); border: 1px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border: 1px solid #fff; }
.btn-outline-white:hover { background: #fff; color: var(--blue); border-color: #fff; }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 6px 18px -6px rgba(37,211,102,0.45); }
.btn-wa:hover { background: #1FB955; box-shadow: 0 10px 24px -6px rgba(37,211,102,0.55); }

/* ============ EYEBROW ============ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--red); }
.eyebrow.centered::after { content: ''; width: 22px; height: 1px; background: var(--red); }
.eyebrow.white { color: #fff; }
.eyebrow.white::before { background: #fff; }
.eyebrow.red { color: var(--red); }

/* ============ HERO (shared across pages) ============ */
.hero { padding: 48px 0 40px; position: relative; overflow: hidden; background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-soft) 100%); }
.hero::before {
  content: ''; position: absolute; top: -100px; right: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(31,122,201,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { max-width: 1200px; position: relative; }
.hero h1 {
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 700; letter-spacing: -2.4px;
  line-height: 1.05; color: var(--ink);
}
.hero h1 .blue { color: var(--blue); }
.hero h1 .accent { color: var(--red); }
.hero-lede {
  font-size: 19px; color: var(--text);
  margin: 24px 0 30px; max-width: 640px; line-height: 1.7;
}
.hero-lede strong { color: var(--ink); font-weight: 700; }
.hero-cta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

/* ============ HOME — HERO BADGE + GRID ============ */
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px;
  align-items: center; position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--blue); color: #fff;
  padding: 14px 24px; margin-bottom: 24px;
  font-size: 15px; font-weight: 500; letter-spacing: 1.8px;
  text-transform: uppercase;
}
.hero-badge .ti { font-size: 18px; }

/* ============ HOME — MAP CARD ============ */
.map-card {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #FAFAFA 0%, #F2F2EF 100%);
  border-radius: 6px;
  overflow: hidden;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform .5s var(--ease);
}
.map-card:hover { transform: translateY(-4px); }
.map-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--red); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 2.2px;
  padding: 9px 16px; z-index: 2;
}
.map-card svg { width: 100%; height: 100%; }

@keyframes pulse-ring {
  0%   { r: 9;  opacity: 0.55; }
  100% { r: 28; opacity: 0;    }
}
.pulse-1 { animation: pulse-ring 2.4s ease-out infinite; }
.pulse-2 { animation: pulse-ring 2.4s ease-out infinite; animation-delay: 1.2s; }

@keyframes dashflow { to { stroke-dashoffset: -10; } }
.route { stroke-dasharray: 2 3; animation: dashflow 1.4s linear infinite; }

/* ============ HOME — TOWNS + STATS ============ */
.towns { padding: 48px 0 0; }
.chip-list { display: flex; flex-wrap: wrap; gap: 6px; }
.chip-list .chip {
  font-size: 10px; padding: 7px 13px;
  background: #F4F4F2; color: var(--text);
  letter-spacing: 0.5px; font-weight: 600;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
  cursor: default;
}
.chip-list .chip:hover { background: var(--blue-light); color: var(--blue); transform: translateY(-2px); }
.chip-accent { background: #FEEEEC !important; color: var(--red) !important; font-weight: 700; }
.chip-accent:hover { background: var(--red) !important; color: #fff !important; }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 48px;
}
.stat { padding: 26px 20px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-num {
  font-size: 28px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.7px;
  line-height: 1.1;
}
.stat-num .red { color: var(--red); }
.stat-num .small { font-size: 0.55em; vertical-align: super; color: var(--red); font-weight: 700; }
.stat-label {
  font-size: 10px; letter-spacing: 1.5px;
  color: var(--muted); text-transform: uppercase;
  margin-top: 6px; font-weight: 600;
}

/* ============ HOME — HOW IT WORKS ============ */
.how {
  background: var(--blue); color: #fff;
  padding: 72px 0 56px;
  position: relative; overflow: hidden;
}
.how::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--red);
}
.how::after {
  content: ''; position: absolute;
  bottom: -120px; right: -120px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.how-head h2 { font-size: 36px; font-weight: 700; letter-spacing: -1px; color: #fff; }
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 36px; margin-top: 40px;
  position: relative;
}
.step { position: relative; padding-left: 0; }
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 38px; font-weight: 600;
  color: #fff; line-height: 1;
  display: inline-block; position: relative;
}
.step-num::after {
  content: ''; position: absolute;
  left: 0; bottom: -8px;
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.5);
}
.step-title { font-size: 16px; font-weight: 700; margin: 18px 0 8px; }
.step-body { font-size: 13px; color: rgba(220,235,247,0.95); line-height: 1.7; }
.how-cta { margin-top: 36px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ============ HOME — PRODUCTS GRID ============ */
.products { padding: 88px 0; background: #fff; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}
.section-head h2 { font-size: 40px; font-weight: 700; letter-spacing: -1.2px; color: var(--ink); }
.see-all {
  font-size: 11px; color: var(--red);
  font-weight: 700; letter-spacing: 1.8px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s var(--ease);
}
.see-all:hover { gap: 12px; }
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.product-card {
  background: #fff;
  padding: 32px 26px;
  position: relative;
  min-height: 180px;
  transition: background .3s var(--ease);
  cursor: pointer;
}
.product-card::before {
  content: ''; position: absolute;
  left: 0; bottom: 0; width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.product-card:hover { background: var(--bg-soft); }
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover .product-icon { color: var(--red); transform: scale(1.1); }
.product-card:hover .product-arrow { opacity: 1; transform: translate(0,0); }
.product-num {
  position: absolute; top: 16px; right: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: #9CA3AF; font-weight: 600;
}
.product-icon {
  font-size: 34px; color: var(--ink);
  transition: color .3s var(--ease), transform .3s var(--ease);
  display: inline-block;
}
.product-title { font-size: 15px; font-weight: 700; margin-top: 22px; color: var(--ink); }
.product-sub { font-size: 12px; color: var(--muted); margin-top: 5px; }
.product-arrow {
  position: absolute; right: 22px; bottom: 22px;
  font-size: 18px; color: var(--red);
  opacity: 0; transform: translate(-6px, 6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

/* ============ HOME — WHY MAJOKA ============ */
.why { padding: 80px 0; background: var(--bg-soft); }
.why-head { text-align: center; margin-bottom: 48px; }
.why-head .eyebrow { justify-content: center; }
.why-head h2 { font-size: 36px; font-weight: 700; letter-spacing: -1px; color: var(--ink); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff; border: 1px solid var(--border);
  padding: 30px 26px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position: relative;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.why-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 1.5px;
  color: var(--red); font-weight: 700;
  margin-bottom: 14px;
}
.why-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.why-body { font-size: 13px; color: var(--text); line-height: 1.7; }

/* ============ HOME — LOCATION ============ */
.location { padding: 0; background: #fff; }
.location-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 0; }
.location-info { padding: 88px 56px 88px 0; }
.location-info h2 { font-size: 36px; font-weight: 700; letter-spacing: -1px; color: var(--ink); margin: 10px 0 14px; }
.location-lede { font-size: 14px; color: var(--muted); margin-bottom: 24px; line-height: 1.65; }
.location-list { font-size: 14px; color: var(--text); }
.location-list li { list-style: none; padding: 12px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.location-list .ti { color: var(--red); font-size: 17px; }
.location-cta { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.map-embed {
  background: var(--bg-cream);
  position: relative; overflow: hidden;
  min-height: 480px;
  display: grid; place-items: center;
}
.map-pin {
  position: absolute;
  background: var(--red); color: #fff;
  padding: 8px 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
}
.map-pin .ti { font-size: 12px; vertical-align: -2px; margin-right: 4px; }
.map-center {
  display: flex; flex-direction: column; align-items: center;
  position: relative; z-index: 2;
  text-align: center;
}
.map-center .pin-big {
  width: 56px; height: 56px;
  background: var(--red); color: #fff;
  border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 12px 32px -8px rgba(225,37,27,0.5);
}
.map-center .pin-big .ti { font-size: 26px; }
.map-center .label { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: 1px; margin-top: 12px; }
.map-watermark {
  position: absolute; bottom: -20px; right: -40px;
  font-family: 'Ubuntu Mono', monospace;
  font-size: 300px; color: var(--red); opacity: 0.06;
  font-weight: 700; line-height: 1; pointer-events: none;
}

/* ============ HOME — CTA ============ */
.cta { padding: 88px 0; background: var(--bg-soft); border-top: 1px solid var(--border); }
.cta-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 36px; align-items: center; }
.cta h2 { font-size: 44px; font-weight: 700; letter-spacing: -1.4px; color: var(--ink); line-height: 1.1; }
.cta .accent { color: var(--red); }
.cta-lede { font-size: 15px; color: var(--text); margin-top: 14px; }
.cta-buttons { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }

/* ============ ABOUT — STORY ============ */
.story-photo {
  position: relative;
  aspect-ratio: 4/3.4;
}
.story-photo .photo-inner {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #F4F4F2 0%, #ECECE8 100%);
  overflow: hidden;
}
.story-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .8s var(--ease);
}
.story-photo:hover img { transform: scale(1.04); }
.story-photo::before, .story-photo::after {
  content: ''; position: absolute; width: 80px; height: 80px;
  pointer-events: none; z-index: 3;
}
.story-photo::before {
  top: -14px; left: -14px;
  border-top: 4px solid var(--red);
  border-left: 4px solid var(--red);
}
.story-photo::after {
  bottom: -14px; right: -14px;
  border-bottom: 4px solid var(--blue);
  border-right: 4px solid var(--blue);
}

.story { padding: 24px 0 80px; position: relative; }
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  max-width: 1080px;
  margin: 0 auto;
}
.story-head h2 {
  font-size: 36px;
  font-weight: 700; letter-spacing: -1px;
  color: var(--ink); line-height: 1.15;
}
.story-body p {
  font-size: 14px; line-height: 1.75;
  color: var(--text); margin-bottom: 18px;
}
.story-body p:last-child { margin-bottom: 0; }
.story-body strong { color: var(--ink); font-weight: 700; }
.story-tagline {
  font-size: 15px !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: 8px !important;
}

/* ============ ABOUT — STATS WRAP ============ */
.stats-wrap { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-wrap .stats { display: grid; grid-template-columns: repeat(4, 1fr); border: none; margin-top: 0; }
.stats-wrap .stat { padding: 56px 32px; text-align: left; border-right: 1px solid var(--border); }

/* ============ ABOUT — BELIEFS ============ */
.beliefs { padding: 88px 0; background: #fff; }
.beliefs-head { text-align: center; margin-bottom: 56px; }
.beliefs-head .eyebrow { justify-content: center; }
.beliefs-head h2 {
  font-size: 36px;
  font-weight: 700; letter-spacing: -1px;
  color: var(--ink); line-height: 1.15;
  max-width: 720px; margin: 0 auto;
}
.beliefs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.belief-card {
  border: 1px solid var(--border);
  padding: 36px 28px;
  background: #fff;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.belief-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; height: 2px; width: 0;
  background: var(--red);
  transition: width .4s var(--ease);
}
.belief-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.belief-card:hover::before { width: 100%; }
.belief-card:hover .belief-icon { transform: scale(1.1) rotate(-4deg); }
.belief-icon { font-size: 28px; color: var(--red); display: inline-block; transition: transform .4s var(--ease); }
.belief-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 1.6px;
  color: var(--muted); margin-top: 20px;
  font-weight: 600;
}
.belief-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-top: 8px; }
.belief-body { font-size: 13px; line-height: 1.7; color: var(--text); margin-top: 10px; }

/* ============ ABOUT — BLUE CTA ============ */
.blue-cta {
  background: var(--blue); color: #fff;
  padding: 80px 0;
  position: relative; overflow: hidden;
  margin-top: 24px;
}
.blue-cta::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--red);
}
.blue-cta::after {
  content: ''; position: absolute;
  bottom: -120px; right: -120px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.blue-cta-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center; position: relative; }
.blue-cta .ti-truck-delivery.bg {
  position: absolute; bottom: -40px; left: 32px;
  font-size: 220px; opacity: 0.10; color: #fff;
  pointer-events: none; line-height: 1;
}
.blue-cta .head .ti-truck-delivery { font-size: 32px; margin-bottom: 14px; display: inline-block; }
.blue-cta h2 { font-size: 36px; font-weight: 700; letter-spacing: -1px; color: #fff; line-height: 1.1; }
.blue-cta p { font-size: 13px; color: rgba(220,235,247,0.95); margin-top: 10px; max-width: 540px; line-height: 1.7; }
.blue-cta-buttons { display: flex; justify-content: flex-end; align-items: center; }

/* ============ REACH-US — INFO CARDS ============ */
.info { padding: 20px 0 56px; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.info-card {
  background: #fff; border: 1px solid var(--border);
  padding: 36px 32px;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.info-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; height: 2px; width: 0;
  background: var(--red);
  transition: width .4s var(--ease);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.info-card:hover::before { width: 100%; }
.info-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  color: var(--red); text-transform: uppercase;
}
.info-eyebrow .ti { font-size: 18px; }
.info-card h3 {
  font-size: 28px; font-weight: 700;
  color: var(--ink); margin-top: 14px;
  letter-spacing: -0.7px; line-height: 1.2;
}
.info-card .strong-line { font-size: 16.5px; font-weight: 700; color: var(--ink); margin-top: 22px; }
.info-card .body-line { font-size: 16px; color: var(--text); line-height: 1.7; }
.divider { height: 1px; background: var(--border); margin: 26px 0; }

.opening-title {
  font-size: 12px; font-weight: 700; letter-spacing: 1.8px;
  color: var(--muted); text-transform: uppercase;
  margin-bottom: 14px;
}
.hours { display: flex; flex-direction: column; gap: 10px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; font-size: 15px; }
.hours-row .day { color: var(--ink); font-weight: 500; }
.hours-row .time { color: var(--text); font-family: 'JetBrains Mono', monospace; font-size: 14px; }
.hours-row .closed { color: var(--muted); }
.hours-note { font-size: 14px; color: var(--muted); font-style: italic; margin-top: 14px; line-height: 1.55; }

.contact-list { display: flex; flex-direction: column; gap: 16px; margin-top: 22px; }
.contact-row { display: flex; align-items: center; gap: 14px; transition: transform .25s var(--ease); }
.contact-row:hover { transform: translateX(3px); }
.contact-icon {
  width: 42px; height: 42px;
  background: rgba(225,37,27,0.08);
  display: grid; place-items: center;
  color: var(--red); flex-shrink: 0;
  transition: background .25s var(--ease);
}
.contact-row:hover .contact-icon { background: var(--red); color: #fff; }
.contact-icon .ti { font-size: 20px; }
.contact-meta { display: flex; flex-direction: column; gap: 3px; }
.contact-label { font-size: 11px; font-weight: 700; letter-spacing: 1.8px; color: var(--muted); text-transform: uppercase; }
.contact-value { font-size: 16.5px; font-weight: 500; color: var(--ink); }
.contact-blurb { font-size: 15.5px; color: var(--text); line-height: 1.7; }

/* ============ REACH-US — FORM ============ */
.form-wrap {
  background: var(--bg-cream);
  padding: 56px 0 64px;
  position: relative; overflow: hidden;
}
.form-wrap::before {
  content: ''; position: absolute;
  bottom: -180px; left: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(225,37,27,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.form-head { max-width: 820px; margin-bottom: 36px; position: relative; }
.form-head h2 { font-size: 46px; font-weight: 700; letter-spacing: -1.2px; color: var(--ink); line-height: 1.15; }
.form-head p { font-size: 17px; color: var(--text); margin-top: 14px; line-height: 1.7; }
.form {
  background: #fff;
  padding: 40px;
  border: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px 28px;
  max-width: 1200px;
  position: relative;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  color: var(--muted); text-transform: uppercase;
}
.field label .req { color: var(--red); margin-left: 2px; }
.field input, .field select, .field textarea {
  border: 1px solid var(--border);
  background: #fff;
  padding: 14px 16px;
  font-size: 16px;
  color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  outline: none; width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: #9CA3AF; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31,122,201,0.10);
}
.field textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px; cursor: pointer;
}
.form-foot {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap; margin-top: 8px;
}
.form-foot .note { font-size: 15px; color: var(--muted); font-style: italic; }

/* ============ REACH-US — STORE MAP ============ */
.store { padding: 56px 0 0; background: #fff; }
.store-head { max-width: 980px; margin-bottom: 32px; }
.store-head h2 { font-size: 46px; font-weight: 700; letter-spacing: -1.2px; color: var(--ink); line-height: 1.2; }
.map-frame {
  position: relative;
  background: var(--blue-light);
  height: 480px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-frame svg { width: 100%; height: 100%; display: block; }
.map-action {
  position: absolute; top: 24px; right: 24px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 13px 20px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--ink); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  cursor: pointer;
}
.map-action:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: transparent; }
.map-action .ti { font-size: 15px; color: var(--red); }
.map-frame .map-tag {
  position: absolute; top: 24px; left: 24px;
  background: var(--blue); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  padding: 8px 14px; text-transform: uppercase;
  z-index: 2;
}
@keyframes pulse-ring-lg { 0% { r: 14; opacity: 0.55; } 100% { r: 38; opacity: 0; } }
.pin-pulse { animation: pulse-ring-lg 2.4s ease-out infinite; }

/* ============ DELIVERY CTA (shared by reach-us + products) ============ */
.deliver {
  background: var(--blue); color: #fff;
  padding: 56px 0;
  position: relative; overflow: hidden;
  margin-top: 24px;
}
.deliver::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--red);
}
.deliver::after {
  content: ''; position: absolute;
  bottom: -120px; right: -120px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.deliver-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 36px; align-items: center; position: relative; }
.deliver .ti-truck-delivery.head { font-size: 44px; display: inline-block; margin-bottom: 14px; }
.deliver h2 { font-size: 42px; font-weight: 700; letter-spacing: -1.1px; color: #fff; line-height: 1.15; }
.deliver p { font-size: 17px; color: rgba(220,235,247,0.95); margin-top: 12px; max-width: 600px; line-height: 1.7; }
.deliver-action { display: flex; justify-content: flex-end; }

/* ============ PRODUCTS — INTRO + CHIP STRIP ============ */
.intro { padding: 12px 0 36px; }
.intro p { font-size: 14px; color: var(--text); line-height: 1.85; max-width: 1080px; }
.chip-strip-wrap {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.chip-strip { display: flex; flex-wrap: wrap; gap: 10px; padding: 22px 0; }
.chip-strip .chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.6px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.chip-strip .chip .num { font-family: 'JetBrains Mono', monospace; color: var(--muted); font-weight: 500; }
.chip-strip .chip:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }
.chip-strip .chip:hover .num { color: rgba(255,255,255,0.7); }

/* ============ PRODUCTS — CATEGORY LIST ============ */
.cats { padding: 56px 0 64px; }
.cat {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  position: relative;
  scroll-margin-top: 100px;
}
.cat:last-child { border-bottom: 1px solid var(--border); }
.cat-left {
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  padding-top: 4px;
}
.cat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 600;
  color: var(--red); letter-spacing: 0.5px;
}
.cat-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  color: var(--ink);
  transition: color .35s var(--ease), transform .35s var(--ease);
}
.cat-icon .ti { font-size: 38px; stroke-width: 1.4; }
.cat:hover .cat-icon { color: var(--red); transform: translateY(-3px); }
.cat-body { padding-top: 4px; }
.cat-title { font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -0.5px; line-height: 1.2; }
.cat-desc { font-size: 14px; color: var(--text); line-height: 1.7; margin-top: 10px; max-width: 720px; }
.cat-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.cat-chip {
  font-size: 12px; font-weight: 500;
  color: var(--text);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 7px 12px;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
  cursor: default;
}
.cat-chip:hover { background: #fff; color: var(--ink); border-color: var(--ink); transform: translateY(-1px); }

/* ============ PRODUCTS — NEED SOMETHING ============ */
.need { background: var(--bg-soft); border-top: 1px solid var(--border); }
.need-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: center; padding: 56px 0; }
.need h2 { font-size: 28px; font-weight: 700; letter-spacing: -0.6px; color: var(--ink); line-height: 1.2; }
.need p { font-size: 14px; color: var(--text); margin-top: 12px; line-height: 1.7; max-width: 560px; }
.need-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.need-actions .btn { width: 100%; max-width: 260px; justify-content: center; }

/* ============ FOOTER ============ */
footer.bottom {
  background: var(--blue);
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
}
footer.bottom .container {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
footer.bottom span { font-size: 11px; color: rgba(220,235,247,0.92); letter-spacing: 1.5px; font-weight: 500; }
footer.bottom .build { color: #fff; font-weight: 700; }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ============ BACK TO TOP ============ */
.to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  border: none; cursor: pointer;
  box-shadow: 0 12px 28px -10px rgba(15,23,42,0.45);
  opacity: 0; transform: translateY(16px) scale(0.9); pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .25s var(--ease);
}
.to-top.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.to-top:hover { background: var(--red); transform: translateY(-3px) scale(1.04); }
.to-top .ti { font-size: 20px; }

/* ============ COOKIE BANNER (home only) ============ */
.cookie {
  position: fixed; left: 24px; bottom: 24px; z-index: 70;
  width: calc(100% - 48px); max-width: 380px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 60px -22px rgba(15,23,42,0.25), 0 8px 18px -12px rgba(15,23,42,0.12);
  padding: 22px 22px 18px;
  transform: translateY(160%) scale(0.96);
  opacity: 0;
  transition: transform .6s var(--ease), opacity .4s var(--ease);
  overflow: hidden;
}
.cookie::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, #F59E0B 100%);
}
.cookie.show { transform: translateY(0) scale(1); opacity: 1; }
.cookie-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.cookie-icon {
  width: 40px; height: 40px;
  background: #FDF6EC;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #B45309; flex-shrink: 0;
  position: relative;
}
.cookie-icon .ti { font-size: 22px; }
.cookie-icon::after {
  content: ''; position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px dashed rgba(180,83,9,0.25);
}
.cookie-title { font-size: 14px; font-weight: 700; color: var(--ink); letter-spacing: -0.2px; }
.cookie-text { font-size: 12.5px; color: var(--text); line-height: 1.65; margin-bottom: 16px; }
.cookie-text a {
  color: var(--blue); font-weight: 500;
  border-bottom: 1px solid rgba(31,122,201,0.3);
  transition: border-color .2s var(--ease);
}
.cookie-text a:hover { border-bottom-color: var(--blue); }
.cookie-actions { display: flex; gap: 6px; align-items: center; justify-content: flex-end; }
.cookie-btn {
  border: none; cursor: pointer; font-family: inherit;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.cookie-btn.accept {
  background: var(--ink); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.4px;
}
.cookie-btn.accept:hover { background: var(--red); transform: translateY(-1px); }
.cookie-btn.decline {
  background: transparent; color: var(--muted);
  padding: 10px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.2px;
}
.cookie-btn.decline:hover { color: var(--ink); background: var(--bg-soft); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .menu { display: none; }
  .nav-toggle { display: flex; }

  /* HOME */
  .hero-grid, .location-inner, .cta-grid { grid-template-columns: 1fr; gap: 36px; }
  .location-info { padding: 56px 0; }
  .map-embed { min-height: 340px; }
  .product-grid, .how-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border); }
  .cta-buttons { flex-direction: row; }

  /* ABOUT */
  .story-inner { grid-template-columns: 1fr; gap: 28px; }
  .stats-wrap .stats { grid-template-columns: 1fr 1fr; }
  .beliefs-grid { grid-template-columns: 1fr; gap: 18px; }
  .blue-cta-grid { grid-template-columns: 1fr; gap: 24px; }
  .blue-cta-buttons { justify-content: flex-start; }

  /* REACH-US */
  .info-grid { grid-template-columns: 1fr; }
  .form { padding: 32px; grid-template-columns: 1fr; }

  /* PRODUCTS */
  .cat { grid-template-columns: 100px 1fr; gap: 20px; }
  .cat-icon { width: 44px; height: 44px; }
  .cat-icon .ti { font-size: 30px; }
  .need-inner { grid-template-columns: 1fr; gap: 24px; }
  .need-actions { align-items: flex-start; }

  /* DELIVERY */
  .deliver-grid { grid-template-columns: 1fr; gap: 24px; }
  .deliver-action { justify-content: flex-start; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .nav-inner { padding-top: 14px; padding-bottom: 14px; }
  .brand-logo { height: 50px; }
  .brand-tagline { display: none; }

  /* HOME */
  .hero { padding: 40px 0 32px; }
  .product-grid, .how-grid, .why-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .cta-buttons { flex-direction: column; }

  /* Universal hero size on mobile */
  .hero h1 { font-size: 46px; letter-spacing: -1.8px; }
  .cta h2 { font-size: 38px; }
  .section-head h2, .how-head h2, .why-head h2, .location-info h2 { font-size: 34px; }

  /* ABOUT */
  .stats-wrap .stats { grid-template-columns: 1fr; }
  .stats-wrap .stat { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 22px; }
  .stats-wrap .stat:last-child { border-bottom: none; }
  .story-head h2, .beliefs-head h2, .blue-cta h2 { font-size: 34px; }

  /* REACH-US */
  .form { padding: 24px; }
  .info-card { padding: 28px 24px; }
  .form-head h2, .store-head h2 { font-size: 34px; }
  .map-frame { height: 360px; }
  .map-action { top: auto; bottom: 16px; right: 16px; left: 16px; justify-content: center; }

  /* PRODUCTS */
  .cat { grid-template-columns: 1fr; gap: 4px; padding: 24px 0; }
  .cat-left { flex-direction: row; align-items: center; gap: 14px; }
  .cat-icon { width: 42px; height: 42px; }
  .cat-icon .ti { font-size: 28px; }
  .cat-title { font-size: 24px; }
  .need h2 { font-size: 28px; }

  /* DELIVERY */
  .deliver h2 { font-size: 32px; }

  /* Cookie + back-to-top */
  .cookie { left: 12px; right: 12px; bottom: 12px; width: auto; padding: 18px 18px 16px; }
  .to-top { right: 16px; bottom: 16px; }
}
