:root{
  /* Core */
  --bg:#070a10;
  --bg2:#0a1020;
  --panel:#0f1726;
  --text:#eaf2ff;
  --muted:#a8b6cc;
  --line:#20304a;

  /* Logo-matched accents */
  --blue:#1e9bff;      /* Mini Mart blue */
  --blue2:#0b5ea8;     /* deeper blue */
  --red:#ff3b3b;       /* MMH red */
  --red2:#b31212;

  /* Neon glows */
  --glowBlue: rgba(30,155,255,.22);
  --glowRed: rgba(255,59,59,.14);
  --glowWhite: rgba(255,255,255,.06);

  --radius:18px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 520px at 12% -18%, var(--glowBlue), transparent 60%),
    radial-gradient(900px 520px at 86% -10%, var(--glowRed), transparent 60%),
    radial-gradient(900px 520px at 50% 120%, rgba(0,0,0,.55), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  color: var(--text);
  line-height: 1.55;
}

a{ color:inherit; text-decoration:none; }

.container{
  width:min(1100px, calc(100% - 32px));
  margin:0 auto;
}

/* Accessibility */
.skip-link{
  position:absolute;
  left:-999px;
  top:8px;
  background:#fff;
  color:#000;
  padding:10px 12px;
  border-radius:10px;
  z-index:9999;
}
.skip-link:focus{ left:12px; }

/* ================= HEADER ================= */

.site-header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7,10,16,.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(32,48,74,.9);
}

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

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width: 240px;
}

.brand-text{ display:flex; flex-direction:column; }
.brand-name{
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 16px;
}
.brand-sub{
  font-size: 13px;
  color: var(--muted);
}

.site-logo{
  height:64px;
  width:auto;
  display:block;
  border-radius:14px;
  box-shadow:
    0 10px 28px rgba(30,155,255,.18),
    0 10px 28px rgba(255,59,59,.10);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}

/* Desktop nav */
.nav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav a{
  font-size:14px;
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
  border:1px solid transparent;
  transition:.15s ease;
}

.nav a:hover{
  color:var(--text);
  background: rgba(30,155,255,.10);
  border-color: rgba(30,155,255,.22);
}

/* Mobile menu button */
.menu-btn{
  display:none;
  background:transparent;
  border:1px solid rgba(32,48,74,.95);
  border-radius:14px;
  padding:10px 11px;
  cursor:pointer;
}

.menu-btn span{
  display:block;
  width:20px;
  height:2px;
  background: var(--text);
  margin:4px 0;
  border-radius:2px;
  opacity:.9;
}

/* Mobile nav */
.mobile-nav{
  display:none;
  border-top:1px solid rgba(32,48,74,.95);
  padding: 10px 16px 16px;
}

.mobile-nav a{
  display:block;
  padding:10px 10px;
  border-radius:12px;
  color:var(--muted);
}

.mobile-nav a:hover{
  background: rgba(30,155,255,.10);
  color:var(--text);
}

.mobile-nav.open{ display:block; }

/* ================= HERO ================= */

.hero{
  padding: 66px 0 48px;
  border-bottom: 1px solid rgba(32,48,74,.95);
  background:
    radial-gradient(900px 420px at 20% -25%, rgba(30,155,255,.22), transparent 60%),
    radial-gradient(900px 420px at 85% -15%, rgba(255,59,59,.12), transparent 60%);
}

.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: start;
}

.pill{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
  color:#d7edff;
  background: rgba(30,155,255,.10);
  border: 1px solid rgba(30,155,255,.22);
  margin: 0 0 14px;
}

.hero h1{
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.08;
  margin: 0 0 14px;
  background: linear-gradient(180deg, #ffffff, #a8dcff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead{
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 18px;
}

.hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 18px 0 10px;
}

.fineprint{
  font-size: 12.5px;
  color: var(--muted);
  margin: 8px 0 0;
}

/* ================= BUTTONS ================= */

.btn{
  display:inline-block;
  padding: 12px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #04131f;
  font-weight: 900;
  letter-spacing: .15px;
  box-shadow: 0 16px 44px rgba(30,155,255,.40);
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(30,155,255,.55);
  filter: brightness(1.02);
}

.btn-outline{
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(32,48,74,.95);
  box-shadow: inset 0 0 0 1px rgba(30,155,255,.18);
}

.btn-outline:hover{
  border-color: rgba(255,59,59,.55);
  box-shadow: inset 0 0 0 1px rgba(255,59,59,.25);
}

.btn-small{
  width:100%;
  text-align:center;
  margin-top:12px;
}

/* ================= CARDS / PANELS ================= */

.card, .panel{
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(32,48,74,.95);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.03),
    0 26px 60px rgba(0,0,0,.55);
}

.quick-card{
  position: relative;
  overflow: hidden;
}

.quick-card::before{
  content:"";
  position:absolute;
  inset:-40% -20%;
  background:
    radial-gradient(closest-side at 30% 30%, rgba(30,155,255,.22), transparent 65%),
    radial-gradient(closest-side at 75% 35%, rgba(255,59,59,.16), transparent 65%);
  filter: blur(18px);
  opacity: .9;
  pointer-events:none;
}

.quick-card > *{ position: relative; }

.card-title{
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing:.2px;
}

.card-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding: 10px 0;
  border-top: 1px solid rgba(32,48,74,.75);
  color: var(--muted);
}

.card-row:first-of-type{ border-top:none; }
.card-row .k{ color: var(--muted); }
.card-row .v{ color: var(--text); text-align:right; }

.quick-card .tip{
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid rgba(32,48,74,.7);
  padding-top: 12px;
}

/* ================= SECTIONS ================= */

.section{ padding: 56px 0; }

.section-alt{
  background:
    radial-gradient(800px 360px at 10% 0%, rgba(30,155,255,.10), transparent 60%),
    radial-gradient(800px 360px at 90% 0%, rgba(255,59,59,.08), transparent 60%),
    rgba(255,255,255,.015);
  border-top: 1px solid rgba(32,48,74,.95);
  border-bottom: 1px solid rgba(32,48,74,.95);
}

.section-head{ margin-bottom: 18px; }

.section h2{
  margin:0 0 8px;
  font-size: 26px;
  letter-spacing:-.02em;
}

.muted{ color: var(--muted); margin:0; }

/* ================= LAYOUT GRIDS ================= */

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.panel h3{
  margin: 0 0 10px;
  font-size: 16px;
}

.panel p{ margin: 0; }

/* ================= LISTS ================= */

.bullets{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.bullets li{ padding: 6px 0; }

/* ================= GALLERY (more “store/product” feel) ================= */

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.shot{
  border:0;
  padding:0;
  background: transparent;
  cursor:pointer;
  border-radius: 16px;
  position: relative;
}

.shot::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:16px;
  border: 1px solid rgba(255,255,255,.07);
  pointer-events:none;
}

.shot img{
  width:100%;
  height: 240px;
  object-fit: cover;
  display:block;
  border-radius: 16px;
  border: 1px solid rgba(32,48,74,.95);
  background: rgba(255,255,255,.02);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.shot:hover img{
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,.68);
  filter: contrast(1.05) saturate(1.06);
}

/* ================= HOURS ================= */

.hours{
  list-style:none;
  padding:0;
  margin:0;
}

.hours li{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding: 10px 0;
  border-top: 1px solid rgba(32,48,74,.75);
  color: var(--muted);
}

.hours li:first-child{ border-top:none; }
.hours span:last-child{ color: var(--text); }

/* ================= MAP ================= */

.map-wrap{
  padding: 0;
  overflow: hidden;
}

.map-wrap iframe{
  width:100%;
  height: 320px;
  border:0;
  display:block;
  filter: saturate(1.05) contrast(1.05);
}

.actions-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}

/* ================= FOOTER ================= */

.site-footer{
  border-top: 1px solid rgba(32,48,74,.95);
  padding: 26px 0;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  color: var(--muted);
}

/* ================= LIGHTBOX ================= */

.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.82);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 22px;
  z-index: 999;
}

.lightbox.open{ display:flex; }

.lightbox img{
  max-width: min(1100px, 96vw);
  max-height: 86vh;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 40px 90px rgba(0,0,0,.85);
}

.lightbox-close{
  position:absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor:pointer;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2, .two-col{ grid-template-columns: 1fr; }
  .map-wrap iframe{ height: 300px; }
}

@media (max-width: 700px){
  .nav{ display:none; }
  .menu-btn{ display:inline-block; }
  .site-logo{ height: 54px; }
  .shot img{ height: 220px; }
}

@media (max-width: 520px){
  .gallery{ grid-template-columns: 1fr; }
  .shot img{ height: 230px; }
}
