/* ── VARIABLES ── */
:root {
  --g:    #7ED84B;
  --g2:   #9AEC5C;
  --gd:   #4A8A1F;
  --gg:   rgba(126,216,75,0.1);
  --bg:   #080C08;
  --bg2:  #0E140E;
  --bg3:  #111811;
  --sur:  #141C14;
  --b:    rgba(58,78,50,0.6);
  --bb:   rgba(126,216,75,0.28);
  --t:    #E8F0E0;
  --td:   #7A9070;
  --tm:   #3A4E32;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--t);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

/* ── TICKER ── */
.ticker { background: var(--g); padding: 9px 0; overflow: hidden; position: relative; z-index: 200; }
.ticker-inner { display: flex; width: max-content; animation: tick 22s linear infinite; }
.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: .22em;
  color: #050905; padding: 0 28px;
  white-space: nowrap; display: flex; align-items: center; gap: 14px;
}
.ticker-item::after { content: '·'; opacity: .35; }
@keyframes tick { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── NAV ── */
#main-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,12,8,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--b);
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
}
.nav-brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-brand-text { line-height: 1; }
.nav-brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--g); letter-spacing: .12em; }
.nav-brand-city { font-size: 8px; letter-spacing: .35em; color: var(--tm); text-transform: uppercase; display: block; margin-top: 1px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 11px; letter-spacing: .13em;
  text-transform: uppercase; color: var(--td); font-weight: 500; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--g); }
.nav-cta {
  background: var(--g); color: #050a05; font-weight: 700;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 4px; text-decoration: none;
  font-family: 'Bebas Neue', sans-serif; transition: all .2s;
}
.nav-cta:hover { background: var(--g2); box-shadow: 0 0 22px rgba(126,216,75,.35); }

/* Burger (mobile) */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--t); transition: all .25s; }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── CONTACT STRIP ── */
.contact-strip {
  background: var(--sur); border-top: 1px solid var(--b);
  padding: 40px 60px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.contact-info { display: flex; gap: 36px; flex-wrap: wrap; }
.cinfo-item { display: flex; flex-direction: column; gap: 3px; }
.cinfo-label { font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--tm); }
.cinfo-val { font-size: 13px; color: var(--t); font-weight: 500; }
.cinfo-val a { color: var(--t); text-decoration: none; }
.cinfo-val a:hover { color: var(--g); }
.open-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(74,222,128,.08); border: 1px solid rgba(74,222,128,.2);
  color: #4ADE80; font-size: 11px; padding: 8px 16px; border-radius: 6px; font-weight: 500;
}
.dot-g { width: 6px; height: 6px; border-radius: 50%; background: #4ADE80; animation: bl 2s ease-in-out infinite; }
@keyframes bl { 0%,100% { opacity:1; } 50% { opacity:.3; } }

/* ── FOOTER ── */
footer {
  background: var(--bg2); border-top: 1px solid var(--b);
  padding: 64px 60px 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 52px;
}
.footer-brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--g); letter-spacing: .1em; margin-bottom: 10px; }
.footer-brand-desc { font-size: 12px; color: var(--tm); line-height: 1.75; max-width: 240px; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 8px; }
.fsoc {
  width: 34px; height: 34px; border: 1px solid var(--bb);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--td); text-decoration: none;
  transition: all .2s; font-weight: 600; text-transform: uppercase;
}
.fsoc:hover { border-color: var(--g); color: var(--g); background: var(--gg); }
.fcol-title { font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--tm); margin-bottom: 18px; }
.flinks { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.flinks a { font-size: 12px; color: var(--td); text-decoration: none; transition: color .2s; }
.flinks a:hover { color: var(--g); }
.fhours { font-size: 12px; color: var(--td); line-height: 1.85; }
.fhours strong { color: var(--g); font-weight: 600; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 22px; border-top: 1px solid var(--b);
  font-size: 10px; color: var(--tm); letter-spacing: .05em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #main-nav { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: rgba(8,12,8,.98); border-bottom: 1px solid var(--b); padding: 20px; gap: 16px; }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-strip { padding: 28px 20px; }
  footer { padding: 40px 20px 24px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
