:root{
  --bg:#070B12;
  --bg2:#0C1320;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --text:#F2F6FF;
  --muted:rgba(242,246,255,.72);
  --border:rgba(255,255,255,.12);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 18px;

  --accent1:#5DD0FF;
  --accent2:#A78BFA;
  --accent3:#22C55E;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background:
    radial-gradient(1100px 520px at 15% 0%, rgba(93,208,255,.16), transparent 60%),
    radial-gradient(900px 520px at 85% 15%, rgba(167,139,250,.16), transparent 60%),
    radial-gradient(900px 520px at 50% 80%, rgba(34,197,94,.10), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  color: var(--text);
}

a{ color:inherit; text-decoration:none; }
img{ width:100%; height:auto; display:block; border-radius: 16px; }
.container{ width:min(1120px, 92vw); margin:0 auto; }

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(7,11,18,.62);
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.2px;
}

.brand-mark{
  width:12px; height:12px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  box-shadow: 0 0 0 6px rgba(93,208,255,.10);
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
  color: var(--muted);
  font-weight:700;
}

.nav a:hover{ color: var(--text); }

.nav-toggle{
  display:none;
  background: transparent;
  border:1px solid var(--border);
  border-radius: 12px;
  padding:10px 10px;
  color: var(--text);
}

.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  background: rgba(242,246,255,.85);
  margin:4px 0;
  border-radius: 2px;
}

.mobile-nav{
  display:none;
  padding: 10px 0 16px 0;
  border-top: 1px solid var(--border);
}

.mobile-nav a{
  display:block;
  padding: 12px 0;
  color: var(--muted);
  font-weight: 700;
}

.mobile-nav a:hover{ color: var(--text); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  color:#06101a;
}

.btn:hover{ filter: brightness(1.05); }
.btn-small{ padding:10px 14px; font-size:14px; }
.btn-ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

/* Hero */
.hero{
  position:relative;
  min-height: 74vh;
  display:flex;
  align-items:center;
  border-bottom: 1px solid var(--border);
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  background-image: url("images/hero-warehouse.jpeg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.05);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(800px 600px at 70% 40%, rgba(93,208,255,.10), transparent 60%),
    linear-gradient(90deg, rgba(7,11,18,.96) 0%, rgba(7,11,18,.78) 45%, rgba(7,11,18,.58) 100%);
}

.hero-content{
  position:relative;
  padding: 70px 0;
  max-width: 760px;
}

.hero-kicker{
  display:inline-block;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 14px;
}

.hero h1{
  margin:0 0 12px 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.03;
  letter-spacing: -.02em;
}

.hero-sub{
  margin:0 0 22px 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom: 22px;
}

.hero-metrics{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric{
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  box-shadow: 0 14px 34px rgba(0,0,0,.30);
}

.metric-title{ font-weight: 800; }
.metric-sub{ color: var(--muted); font-weight: 600; margin-top: 4px; }

/* Trust strip */
.trust{
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}

.trust-inner{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.trust-item{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
}

.icon-bubble{
  width: 32px; height: 32px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(93,208,255,.14);
  border: 1px solid rgba(93,208,255,.30);
  color: rgba(242,246,255,.90);
  font-weight: 900;
}

.trust-title{ font-weight: 800; margin-bottom: 4px; }

/* Sections */
.section{ padding: 70px 0; }
.section-alt{
  background: rgba(255,255,255,.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head{ margin-bottom: 18px; }
.section-head h2{ margin:0 0 10px 0; font-size: 32px; letter-spacing:-.01em; }
.muted{ color: var(--muted); }
.tiny{ font-size: 13px; }

/* Sustainability */
.sustainability{
  background: rgba(255,255,255,.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sustain-card{
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(93,208,255,.22);
  background: linear-gradient(135deg, rgba(93,208,255,.12), rgba(167,139,250,.12));
  box-shadow: var(--shadow);
}

.sustain-kicker{
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: rgba(242,246,255,.85);
  font-size: 12px;
}

.values-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.value-card{
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
}

.value-title{
  font-weight: 800;
  margin-bottom: 8px;
}

/* Tabs */
.tabs{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
  margin: 16px 0 18px 0;
}

.tab{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.tab.active{
  background: linear-gradient(135deg, rgba(93,208,255,.18), rgba(167,139,250,.18));
  color: var(--text);
  border-color: rgba(93,208,255,.28);
}

.tab-panel{ display:none; }
.tab-panel.active{ display:block; }

/* Grids and cards */
.grid{ display:grid; gap: 16px; }
.grid-2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  padding: 14px;
  box-shadow: var(--shadow);
}

.card-body{ padding: 10px 6px 2px 6px; }
.card h3{ margin: 0 0 6px 0; font-size: 18px; }
.card p{ margin: 0 0 10px 0; }

.pill-row{ display:flex; gap:8px; flex-wrap:wrap; }
.pill{
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
}

.size-panel{
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

.size-title{
  font-weight: 800;
  margin-bottom: 10px;
}

.size-pills{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-pill{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(93,208,255,.26);
  background: rgba(93,208,255,.10);
  color: var(--text);
  font-weight: 700;
  font-size: 12px;
}

/* CTA banner */
.cta-banner{
  margin-top: 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(93,208,255,.20);
  background: linear-gradient(135deg, rgba(93,208,255,.12), rgba(167,139,250,.10));
}

.cta-banner h4{ margin: 0 0 6px 0; font-size: 16px; }
.cta-banner p{ margin: 0; }

/* Info cards */
.info-card{
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  box-shadow: 0 18px 45px rgba(0,0,0,.30);
}

.info-title{ font-weight: 800; margin-bottom: 8px; }

/* About */
.two-col{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
}

.bullets{
  display:grid;
  gap: 12px;
  margin-top: 16px;
}

.bullet{
  display:flex;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
}

.bullet-icon{
  width: 36px; height: 36px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(167,139,250,.14);
  border: 1px solid rgba(167,139,250,.28);
}

.bullet-title{ font-weight: 800; margin-bottom: 4px; }

.media img{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
}

.media-note{
  margin-top: 10px;
  color: rgba(242,246,255,.60);
  font-weight: 700;
  font-size: 13px;
}

/* Gallery */
.gallery{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.media-placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  height: 220px;
  border-radius: 16px;
  border: 1px dashed rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
  color: rgba(242,246,255,.75);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

/* Contact */
.contact{ padding-bottom: 84px; }
.contact-hero{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.contact-card{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
}

.contact-item{ margin-bottom: 14px; }
.contact-item:last-child{ margin-bottom: 0; }

.label{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(242,246,255,.55);
  margin-bottom: 6px;
  font-weight: 800;
}

.value{ font-weight: 800; }

input, textarea{
  width: 100%;
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(7,11,18,.55);
  color: var(--text);
  outline: none;
  font: inherit;
}

input::placeholder, textarea::placeholder{ color: rgba(242,246,255,.45); }
input:focus, textarea:focus{ border-color: rgba(93,208,255,.45); box-shadow: 0 0 0 6px rgba(93,208,255,.10); }

/* Footer */
.footer{
  border-top: 1px solid var(--border);
  padding: 22px 0;
  background: rgba(7,11,18,.62);
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
}

.made-in-canada{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
  color: var(--muted);
}

.made-in-canada img{
  height: 28px;
  width: auto;
  display:block;
}

/* Responsive */
@media (max-width: 900px){
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .hero-metrics{ grid-template-columns: 1fr; }
  .trust-inner{ grid-template-columns: 1fr; }
  .values-grid{ grid-template-columns: 1fr; }

  .nav{ display:none; }
  .nav-toggle{ display:inline-flex; }
  .mobile-nav{ display:block; }
}

@media (max-width: 760px){
  .two-col{ grid-template-columns: 1fr; }
}
