/* =========================================================
   SR Solution — Design System (Mobile-First)
   Night-vision industrial: Charcoal black + Electric amber
========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --bg:         #0b0c0e;
  --bg2:        #111317;
  --bg3:        #181b20;
  --amber:      #f5a623;
  --amber-dim:  #b87a1a;
  --amber-glow: rgba(245,166,35,0.12);
  --white:      #f0ede8;
  --muted:      #8a8d96;
  --border:     rgba(245,166,35,0.18);
  --red:        #e8433a;
  --green:      #4ade80;
  --font-head:  'Syne', sans-serif;
  --font-body:  'DM Sans', sans-serif;
  --radius:     8px;
  --max:        1200px;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none; z-index: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
address { font-style: normal; }

/* ── LAYOUT ──────────────────────────────────────────── */
.container {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 640px) { .container { padding-inline: 24px; } }

/* ── TOPBAR ──────────────────────────────────────────── */
.topbar {
  background: rgba(245,166,35,0.06);
  border-bottom: 1px solid var(--border);
  padding: 7px 0;
  position: relative; z-index: 10;
  display: none;
}
@media (min-width: 640px) { .topbar { display: block; } }
.topbar .container {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap;
  gap: 6px; font-size: 13px; color: var(--muted);
}
.topbar a { color: var(--amber); font-weight: 500; }
.topbar span { display: flex; align-items: center; gap: 6px; }

/* ── NAVBAR ──────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,12,14,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
nav .container {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
}
.logo { display: flex; align-items: center; gap: 9px; min-width: 0; }
.logo-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--amber); border-radius: 7px;
  display: grid; place-items: center;
}
.logo-icon svg { width: 18px; height: 18px; }
.logo-text strong {
  font-family: var(--font-head); font-size: 15px;
  font-weight: 800; letter-spacing: -0.3px;
  display: block; line-height: 1.1; white-space: nowrap;
}
.logo-text span {
  font-size: 9px; color: var(--amber);
  letter-spacing: 0.07em; text-transform: uppercase; white-space: nowrap;
}
@media (min-width: 400px) {
  .logo-icon { width: 40px; height: 40px; }
  .logo-icon svg { width: 20px; height: 20px; }
  .logo-text strong { font-size: 17px; }
  .logo-text span { font-size: 11px; }
}

/* Desktop nav links — hidden on mobile */
.nav-links { display: none; gap: 24px; list-style: none; font-size: 14px; font-weight: 500; }
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a { color: var(--muted); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--amber); }

.nav-cta {
  display: none;
  background: var(--amber); color: #000;
  font-family: var(--font-head); font-weight: 700;
  font-size: 14px; padding: 10px 20px;
  border-radius: var(--radius); white-space: nowrap;
  align-items: center; gap: 6px;
  transition: background .2s;
}
.nav-cta:hover { background: #ffbb44; }
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }

/* Mobile actions (call button + hamburger) */
.nav-mobile-actions { display: flex; align-items: center; gap: 8px; }
@media (min-width: 900px) { .nav-mobile-actions { display: none; } }
.nav-call-btn {
  background: var(--amber); color: #000;
  font-family: var(--font-head); font-weight: 700;
  font-size: 13px; padding: 8px 13px;
  border-radius: var(--radius);
  display: inline-flex; align-items: center; gap: 5px;
  white-space: nowrap; border: none; cursor: pointer;
}
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  padding: 6px; background: none; border: none; cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 99;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 20px; font-size: 15px; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.04);
  color: var(--muted); transition: color .2s, background .2s;
}
.mobile-nav a:hover { color: var(--amber); background: var(--amber-glow); }
.mobile-nav a:last-child {
  border-bottom: none; color: #000;
  background: var(--amber);
  font-family: var(--font-head); font-weight: 700; text-align: center;
}
.mobile-nav a:last-child:hover { background: #ffbb44; }

/* ── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero {
  padding: 44px 0 36px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
@media (min-width: 640px) { .page-hero { padding: 64px 0 54px; } }
.page-hero::after {
  content: '';
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,.4), transparent);
  animation: scan 4s linear infinite; top: 0;
}
@keyframes scan {
  0%{top:0;opacity:0} 5%{opacity:1} 95%{opacity:1} 100%{top:100%;opacity:0}
}
.page-hero-label {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 10px;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(26px, 6vw, 52px);
  font-weight: 800; letter-spacing: -1px;
  margin-bottom: 12px; line-height: 1.1;
}
.page-hero h1 em { font-style: normal; color: var(--amber); }
.page-hero p {
  color: var(--muted); font-size: clamp(14px, 2.5vw, 17px);
  max-width: 560px; line-height: 1.65;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted);
  margin-bottom: 16px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--amber); }
.breadcrumb span { opacity: .4; }

/* ── SECTIONS ────────────────────────────────────────── */
section { padding: 52px 0; position: relative; z-index: 1; }
@media (min-width: 768px) { section { padding: 80px 0; } }

.section-label {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 4.5vw, 40px);
  font-weight: 800; letter-spacing: -0.6px;
  margin-bottom: 12px; line-height: 1.12;
}
.section-sub {
  color: var(--muted); font-size: clamp(14px, 2vw, 16px);
  line-height: 1.65; margin-bottom: 36px; max-width: 520px;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  background: var(--amber); color: #000;
  font-family: var(--font-head); font-weight: 700;
  font-size: 15px; padding: 14px 24px;
  border-radius: var(--radius);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s, transform .15s;
  cursor: pointer; border: none; text-align: center;
}
.btn-primary:hover { background: #ffbb44; transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid var(--border); color: var(--white);
  font-size: 15px; padding: 13px 22px;
  border-radius: var(--radius);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--amber); background: var(--amber-glow); }
.btn-sm { font-size: 13px !important; padding: 10px 18px !important; }
.btn-full { width: 100%; }

/* ── CARD ────────────────────────────────────────────── */
.card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 12px; padding: 22px;
  transition: border-color .25s, transform .2s, box-shadow .25s;
  position: relative; overflow: hidden;
}
@media (min-width: 640px) { .card { padding: 28px; } }
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0; transition: opacity .3s;
}
.card:hover { border-color: var(--amber-dim); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0,0,0,.4); }
.card:hover::before { opacity: 1; }

.icon-box {
  width: 44px; height: 44px;
  background: var(--amber-glow); border: 1px solid var(--border);
  border-radius: 10px; display: grid; place-items: center;
  margin-bottom: 14px; flex-shrink: 0;
}
.icon-box svg { width: 22px; height: 22px; stroke: var(--amber); fill: none; stroke-width: 2; }

/* ── GRIDS ───────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; } }

.grid-3 { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 540px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-auto { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 480px) { .grid-auto { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px) { .grid-auto { grid-template-columns: repeat(3, 1fr); } }

/* ── CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #1a1200, #0b0c0e);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 52px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(245,166,35,.07), transparent);
}
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(20px, 4vw, 38px);
  font-weight: 800; letter-spacing: -.6px; margin-bottom: 10px; position: relative;
}
.cta-banner p { color: var(--muted); font-size: 15px; margin-bottom: 28px; position: relative; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; position: relative; }
@media (min-width: 480px) { .cta-actions { flex-direction: row; justify-content: center; } }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: #07080a; border-top: 1px solid rgba(255,255,255,.05);
  padding: 44px 0 20px; position: relative; z-index: 1;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
@media (min-width: 540px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 48px; } }
.footer-brand p { font-size: 14px; color: var(--muted); margin: 12px 0 16px; line-height: 1.65; }
.footer-nap { font-size: 13px; color: var(--muted); line-height: 1.9; }
.footer-nap a { color: var(--amber); }
footer h5 {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 12px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 14px; color: var(--muted); transition: color .2s; }
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05); padding-top: 16px;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12px; color: var(--muted); text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }

/* ── TAGS / BADGES ───────────────────────────────────── */
.tag {
  background: var(--amber-glow); border: 1px solid var(--border);
  color: var(--amber); font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 100px; display: inline-block;
}
.badge-dot {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber-glow); border: 1px solid var(--border);
  color: var(--amber); font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
}
.badge-dot .dot {
  width: 6px; height: 6px; background: var(--amber);
  border-radius: 50%; animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

/* ── UTILITIES ───────────────────────────────────────── */
.text-amber { color: var(--amber); }
.text-muted { color: var(--muted); }
.bg-2 { background: var(--bg2); }
.bg-3 { background: var(--bg3); }
.text-center { text-align: center; }
.mt-8{margin-top:8px} .mt-16{margin-top:16px} .mt-24{margin-top:24px} .mt-40{margin-top:40px}
.mb-0{margin-bottom:0}

/* ── FORMS (16px inputs prevent iOS zoom) ────────────── */
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--white);
  font-family: var(--font-body); font-size: 16px; /* 16px prevents iOS zoom */
  padding: 12px 14px; outline: none;
  transition: border-color .2s; -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--amber); }
.form-group select option { background: var(--bg3); }
.form-group textarea { resize: vertical; min-height: 88px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; gap: 12px; } }

/* ── HOURS BOX ───────────────────────────────────────── */
.hours-box { background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin-top: 20px; }
.hours-header {
  padding: 11px 16px; background: var(--amber-glow); border-bottom: 1px solid var(--border);
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--amber);
}
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--muted); }
.hours-row .open-time { font-weight: 600; color: var(--green); }
.hours-row .closed { font-weight: 600; color: var(--red); }

/* ── CONTACT ROW ─────────────────────────────────────── */
.contact-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.contact-row .icon-wrap {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--amber-glow); border: 1px solid var(--border);
  border-radius: 8px; display: grid; place-items: center;
}
.contact-row .icon-wrap svg { width: 18px; height: 18px; stroke: var(--amber); fill: none; stroke-width: 2; }
.contact-row strong { font-family: var(--font-head); font-size: 14px; display: block; margin-bottom: 2px; }
.contact-row span { font-size: 13px; color: var(--muted); line-height: 1.5; }
.contact-row a { color: var(--amber); }

/* ── SCROLL FADE ─────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
