:root{
  --bg: #0b0c0f;
  --bg2:#101218;
  --panel:#141722;
  --panel2:#0f121a;
  --text:#ffffff;
  --muted:#b7bcc8;
  --line: rgba(255,255,255,.10);

  --yellow:#ffcc00;
  --yellow2:#f5b800;

  --shadow: 0 12px 30px rgba(0,0,0,.45);

  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background: #12141a; /* default page background */
  line-height: 1.5;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

.container{
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.muted{ color: var(--muted); }
.tiny{ font-size: 13px; }

.link{
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.35);
  text-underline-offset: 4px;
}
.link:hover{ text-decoration-color: var(--yellow); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: #fff;
  font-weight: 700;
  letter-spacing:.2px;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
  cursor:pointer;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); border-color: rgba(255,204,0,.45); }
.btn:active{ transform: translateY(0px); }

.btn-primary{
  border-color: rgba(255,204,0,.45);
  background: linear-gradient(180deg, var(--yellow), var(--yellow2));
  color:#101010;
}
.btn-primary:hover{ border-color: rgba(255,204,0,.85); }

.btn-ghost{ background: rgba(255,255,255,.03); }
.btn-block{ width:100%; }

/* =========================================================
   HEADER (brand scrolls away) + STICKY NAV (buttons only)
   ========================================================= */
.site-header{
  position: relative; /* brand scrolls away */
  z-index: 50;
  background: rgba(8,9,12,.92);
  border-bottom: 1px solid var(--line);
}

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

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 240px;
}
.brand-logo{
  width: 62px;
  height: 62px;
  border-radius: 14px;
  object-fit: cover;
  background: #000;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 20px rgba(0,0,0,.3);
}
.brand-name{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .3px;
  line-height: 1.05;
}
.brand-tagline{
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.header-divider{
  width: 100%;
  max-width: var(--max);
  height: 1px;
  background: rgba(255,255,255,.10);
  margin: 0 auto;
}

/* Sticky NAV bar */
.sticky-bar{
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(8,9,12,.96);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  transition: background .18s ease, border-color .18s ease;
}
.sticky-bar.is-scrolled{
  background: rgba(8,9,12,.985);
  border-bottom-color: rgba(255,255,255,.18);
}
.sticky-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 10px 0;
}

/* Nav */
.nav{
  display:flex;
  align-items:center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  flex-wrap: wrap;
  row-gap: 10px;
}
.nav-link{
  padding: 10px 10px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  opacity: .92;
  transition: background .15s ease, opacity .15s ease;
  text-align: center;
}
.nav-link:hover{
  background: rgba(255,255,255,.06);
  opacity: 1;
}
.nav-link--newtab{
  border: 1px dashed rgba(255,204,0,.35);
}

/* Cart button */
.cart-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: #fff;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
  min-width: 120px;
  position: relative;
}
.cart-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(255,204,0,.45);
  background: rgba(255,255,255,.05);
}
.cart-btn__text{
  display:flex;
  flex-direction: column;
  line-height: 1.05;
  align-items: center;
}
.cart-btn__title{ font-weight: 900; font-size: 14px; }
.cart-btn__sub{
  font-size: 12px;
  color: rgba(255,255,255,.78);
  margin-top: 3px;
}
.cart-badge{
  min-width: 26px;
  height: 26px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight: 1000;
  font-size: 12px;
  color: #101010;
  background: linear-gradient(180deg, var(--yellow), var(--yellow2));
  border: 1px solid rgba(0,0,0,.20);
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
}
.cart-btn--block{ width: 100%; }

/* Hamburger */
.nav-toggle{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding: 10px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  margin: 5px 0;
  opacity: .9;
}

/* =========================================================
   HOME (index-only header/hero overrides)
   ========================================================= */
.home .hero{
  position: relative;
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(255,204,0,.12), transparent 55%),
    radial-gradient(900px 600px at 90% 10%, rgba(255,204,0,.10), transparent 50%),
    linear-gradient(180deg, #0b0c0f, #08090d 70%);
}
.home .hero-bg,
.home .hero-noise{ display:none !important; }

/* Stacked brand + bigger logo on HOME only */
.home .header-inner{
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-bottom: 10px;
}
.home .brand{
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align:center;
  gap: 12px;
  min-width: unset;
}
.home .brand-logo{
  width: 248px;
  height:auto;
  border-radius: 22px;
}
.home .brand-name{
  font-size: 36px;
  font-weight: 1000;
  letter-spacing: .4px;
}

/* Hero headline same size as company title (home) */
.home .hero h1{ font-size: 36px; }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  padding: 64px 0 26px;
  overflow:hidden;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.3fr .8fr;
  gap: 22px;
  align-items: start;
}

.eyebrow{
  display:inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,204,0,.22);
  background: rgba(255,204,0,.08);
  margin: 0 0 14px;
}
.hero h1{
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.lead{
  font-size: 18px;
  color: rgba(255,255,255,.86);
  margin: 0 0 18px;
}
.hero-cta{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.card-title{ font-weight: 900; letter-spacing: .2px; margin-bottom: 10px; }
.card-row{
  display:grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.card-row:first-of-type{ border-top: 0; }
.card-row--wide{ grid-template-columns: 92px 1fr; }

.pill{
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  height: fit-content;
}

.hero-stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.stat{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 12px;
}
.stat-value{
  color: var(--yellow);
  font-weight: 1000;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.stat-label{ font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Optional hero effects (unused on home) */
.hero-bg{
  position:absolute;
  inset: -200px -200px auto -200px;
  height: 500px;
  background:
    radial-gradient(400px 300px at 20% 40%, rgba(255,204,0,.25), transparent 60%),
    radial-gradient(520px 360px at 75% 20%, rgba(255,204,0,.18), transparent 58%),
    radial-gradient(800px 500px at 50% 0%, rgba(255,255,255,.05), transparent 60%);
  filter: blur(10px);
  opacity: .9;
  pointer-events:none;
}
.hero-noise{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section{ padding: 70px 0; }
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section-head{ margin-bottom: 18px; }
.section h2{
  margin: 0 0 8px;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -0.02em;
}

/* Feature grid */
.grid-4{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.feature-card{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 16px;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.feature-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,204,0,.35);
  background: rgba(255,255,255,.04);
}
.feature-card h3{ margin: 10px 0 8px; font-size: 16px; }
.feature-card p{ margin: 0; color: rgba(255,255,255,.82); font-size: 14px; }
.icon-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(255,204,0,.10);
}

/* Split layout */
.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:start;
}
.about-card{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.about-card h3{ margin: 0 0 12px; }
.ticklist{ margin: 0; padding-left: 18px; color: rgba(255,255,255,.85); }
.ticklist li{ margin: 8px 0; }
.about-actions{ display:flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.callouts{ margin-top: 18px; display:grid; grid-template-columns: 1fr; gap: 12px; }
.callout{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.02);
  padding: 14px;
}
.callout-title{ font-weight: 900; margin-bottom: 6px; }

/* Contact */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-card{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 18px;
}
.contact-card h3{ margin: 0 0 12px; }
.contact-row{
  display:grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.contact-row:first-of-type{ border-top: 0; }
.label{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  font-weight: 900;
}
.contact-actions{ display:flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }

/* Form */
.form{ display:grid; gap: 12px; }
.form label span{
  display:block;
  font-size: 12px;
  color: rgba(255,255,255,.82);
  margin-bottom: 6px;
  font-weight: 800;
}
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color: #fff;
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(255,204,0,.45);
  box-shadow: 0 0 0 4px rgba(255,204,0,.12);
}

.optional-section{
  margin-top: 8px;
}

.optional-title{
  margin: 10px 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  color: rgba(255,255,255,.92);
}

.optional-section label{
  display: block;
  margin-bottom: 12px;
}

.optional-section .form-row label{
  margin-bottom: 0;
}

/* =========================================================
   HOME gallery preview (index section)
   ========================================================= */
.home-gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.home-thumb{
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  aspect-ratio: 4/3;
}
.home-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
@media (max-width: 980px){
  .home-gallery-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* =========================================================
   GALLERY page (grid + lightbox)
   ========================================================= */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}
@media (max-width: 980px){ .gallery-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px){ .gallery-grid{ grid-template-columns: 1fr; } }

.gallery-item{
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  aspect-ratio: 4/3;
  cursor: zoom-in;
  position: relative;
}
.gallery-item img{
  width:100%; height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1);
  transition: transform .18s ease;
}
.gallery-item:hover img{ transform: scale(1.03); }

.lightbox{
  position: fixed; inset: 0;
  background: rgba(0,0,0,.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  z-index: 99999;
}
.lightbox.is-open{ display:flex; }
.lightbox-inner{
  max-width: min(1100px, 96vw);
  max-height: 88vh;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(12,14,18,.92);
  position: relative;
}
.lightbox-img{
  width: 100%;
  height: 88vh;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  background: rgba(0,0,0,.35);
}
.lightbox-close{
  position:absolute;
  top: 10px; right: 10px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.45);
  color: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
}
.lightbox-close:hover{ background: rgba(0,0,0,.6); }
.hint{ margin-top: 10px; color: rgba(255,255,255,.7); font-size: 13px; }

/* =========================================================
   SERVICES page (grid)
   ========================================================= */
.services-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 980px){ .services-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px){ .services-grid{ grid-template-columns: 1fr; } }

.service-details{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  line-height: 1.45;
}
.service-details li{ margin: 6px 0; }
.service-subtitle{
  margin: 6px 0 0;
  font-weight: 900;
  color: rgba(255,255,255,.92);
  font-size: 14px;
}
.service-note{
  margin: 6px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 13px;
}

/* =========================================================
   STORE page (product layout)
   ========================================================= */
.product-card{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.product-row{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 18px;
  align-items: center;
}
.product-img{
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  overflow: hidden;
}
.product-img img{ width: 100%; height: auto; display:block; object-fit: cover; }
.product-meta{ padding: 6px 2px; }
.product-meta .line{ margin: 12px 0; font-size: 18px; color: rgba(255,255,255,.92); font-weight: 800; }
.product-meta .label{
  display:inline-block;
  min-width: 130px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 13px;
  color: rgba(255,255,255,.72);
}
.product-meta .value{ font-weight: 900; font-size: 18px; color: #fff; }
.price{ margin-top: 14px; font-weight: 1000; font-size: 24px; color: #ff3b3b; letter-spacing: -0.01em; }
.notice{ margin-top: 10px; font-size: 13px; color: rgba(255,255,255,.75); }
@media (max-width: 980px){
  .product-row{ grid-template-columns: 1fr; }
  .product-meta .label{ min-width: 120px; }
}

/* =========================================================
   QUOTE / CART panels
   ========================================================= */
.quote-wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.panel{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.mini{
  font-size: 13px;
  color: rgba(255,255,255,.75);
  margin-top: 10px;
  line-height: 1.45;
}
@media (max-width: 980px){
  .quote-wrap{ grid-template-columns: 1fr; }
}

.cart-wrap{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
}
.cart-item{
  display:grid;
  grid-template-columns: 1fr 100px 140px 44px;
  gap: 10px;
  align-items:center;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.cart-item:first-child{ border-top: 0; padding-top: 0; }
.ci-name{ font-weight: 900; }
.ci-sku{ font-size: 12px; color: rgba(255,255,255,.75); margin-top: 2px; }
.ci-qty{
  display:flex; align-items:center; justify-content:center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(0,0,0,.25);
  padding: 10px 0;
  font-weight: 900;
}
.ci-price{ text-align:right; font-weight: 900; }
.icon-btn{
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: #fff;
  cursor:pointer;
}
.totals{
  display:grid;
  gap: 10px;
  margin-top: 6px;
}
.total-row{
  display:flex; justify-content:space-between; align-items:center;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 10px;
}
.total-row:first-child{ border-top: 0; padding-top: 0; }
.grand{
  font-size: 20px;
  font-weight: 1000;
  color: #ffcc00;
}
@media (max-width: 980px){
  .cart-wrap{ grid-template-columns: 1fr; }
  .cart-item{ grid-template-columns: 1fr 90px 120px 44px; }
}

/* =========================================================
   FOOTER (map + follow-us)
   ========================================================= */
.site-footer{
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.25);
  padding: 26px 0 14px;
}
.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
}
.footer-brand{
  display:flex;
  gap: 12px;
  align-items:center;
}
.footer-logo{
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.10);
}
.footer-name{ font-weight: 1000; letter-spacing: .2px; }
.footer-brand .tiny{ max-width: 360px; }

.footer-cols{
  display:grid;
  grid-template-columns: 1fr 1fr 1.1fr .9fr;
  gap: 22px;
  align-items:start;
}
.footer-title{ font-weight: 1000; margin-bottom: 6px; color: rgba(255,255,255,.92); }

.footer-bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}

.footer-maplink{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  text-decoration:none;
  color: inherit;
}
.footer-mapimg{
  width: 140px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  flex: 0 0 auto;
}

.footer-follow{
  display:flex;
  flex-direction:column;
  gap: 8px;
}
.footer-social{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}
.footer-social img{
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  padding: 6px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .grid-4{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid{ grid-template-columns: 1fr; }

  .footer-inner{ flex-direction: column; }
  .footer-cols{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px){
  .nav-toggle{ display:inline-block; }

  /* Mobile nav dropdown pinned under sticky bar */
  .nav{
    position: fixed;
    left: 0;
    right: 0;
    top: var(--stickyTop, 60px);
    width: min(92vw, 440px);
    margin: 0 auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(10,12,16,.92);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--shadow);
    display: none;
    z-index: 10000;
  }

  .nav--open{ display:flex; }
  .nav .btn{ width: 100%; }
  .cart-btn{ width: 100%; }

  .home .brand-logo{ width: 180px; }
  .home .brand-name{ font-size: 28px; }
  .home .hero h1{ font-size: 28px; }
}

@media (max-width: 520px){
  .grid-4{ grid-template-columns: 1fr; }
  .footer-cols{ grid-template-columns: 1fr; }
  .container{ width: min(100% - 26px, var(--max)); }
}


/* --- Forms: row layout + attachments drop area --- */
.form-row{
  display:flex;
  gap:14px;
}
.form-row > label{ flex:1; }
@media (max-width: 640px){
  .form-row{ flex-direction:column; }
}

.field .label{
  display:block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
  color: rgba(255,255,255,.92);
}

.drop-area{
  position: relative;
  border: 1px dashed rgba(255,255,255,.22);
  background: rgba(255,255,255,.03);
  border-radius: 14px;
  padding: 18px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.drop-area:hover{
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.04);
}
.drop-area.is-dragover{
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.06);
}
.file-input{
  position:absolute;
  inset:0;
  opacity:0;
  width:100%;
  height:100%;
  cursor:pointer;
}
.drop-hint{
  text-align:center;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  line-height: 1.35;
}
.file-list{
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.82);
}
.file-list .file-item{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  margin-bottom: 6px;
}
.file-list .file-size{ color: rgba(255,255,255,.65); }

/* Honeypot field hidden */
.hp-field{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
}


/* =========================================================
   Shopify nav overrides (Cart button text-only)
   ========================================================= */
.cart-btn{ min-width: unset; }
.cart-btn__text{ flex-direction: row; }
