:root {
  --bg: #050505;
  --panel: rgba(17, 17, 17, 0.92);
  --panel-2: rgba(23, 23, 23, 0.92);
  --text: #ffffff;
  --muted: #d0d0d0;
  --gold: #f5a800;
  --gold-2: #ffb500;
  --line: rgba(255,255,255,0.08);
  --shadow: 0 18px 60px rgba(0,0,0,0.35);
  --radius: 22px;
  --container: min(1160px, calc(100% - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: var(--container); margin: 0 auto; }
.narrow { max-width: 900px; }
.centered { text-align: center; }
.centered-text { margin-left: auto; margin-right: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

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

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

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
}

.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-text strong {
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.brand-text small { color: var(--muted); }

.nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.nav a {
  color: var(--muted);
  font-weight: 600;
}
.nav a:hover { color: var(--text); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 72px;
  min-height: 78vh;
  background: linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.52)), url('assets/hero-bg.jpg') center center / cover no-repeat fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.20) 35%, rgba(0,0,0,0.34) 100%);
  pointer-events: none;
}

.hero-grid,
.hours-grid,
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-size: 0.92rem;
}

.eyebrow-large {
  font-size: clamp(1rem, 2vw, 1.35rem);
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(2.7rem, 7vw, 5.2rem);
  line-height: 0.95;
  margin-bottom: 18px;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--muted);
  max-width: 58ch;
  margin-bottom: 26px;
}

.lead.compact { max-width: 50ch; }

.hero-announcement {
  max-width: 420px;
  padding: 18px 22px;
  border: 1px solid rgba(245,168,0,0.25);
  border-radius: 18px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
}

.hero-announcement p:last-child {
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  color: #fff;
}

.blink {
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--gold);
  text-transform: uppercase;
  animation: blinkPulse 1.25s infinite;
}

@keyframes blinkPulse {
  0%, 49% { opacity: 1; text-shadow: 0 0 16px rgba(245,168,0,0.35); }
  50%, 100% { opacity: 0.35; text-shadow: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #000;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}
.btn-full { width: 100%; }

.hero-card,
.info-card,
.availability-box,
.contact-card,
.placeholder-section .section-heading {
  position: relative;
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
  overflow: hidden;
}

.card-accent {
  position: absolute;
  inset: auto -40px -40px auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,168,0,0.35), rgba(245,168,0,0));
}

.hero-card h2 { max-width: 12ch; }
.phone {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 22px;
}

.section { padding: 72px 0; }
.section-alt {
  background: linear-gradient(180deg, #090909 0%, #070707 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-dark {
  background: linear-gradient(180deg, #0b0b0b 0%, #080808 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-heading { margin-bottom: 26px; }
.placeholder-section .section-heading { padding: 28px; margin-bottom: 0; }

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

.info-card {
  padding: 24px;
  min-height: 245px;
}
.info-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.info-card p { color: var(--muted); margin-bottom: 0; }
.info-card-highlight { border-color: rgba(245,168,0,0.28); }
.service-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  object-fit: contain;
}

.hours-list {
  display: grid;
  gap: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
}
.hours-row span { color: var(--muted); }
.hours-row strong { color: var(--text); }

.availability-box,
.contact-card { padding: 26px; }
.availability-box h3,
.contact-card h3 { margin-bottom: 12px; }
.availability-box ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.availability-box li + li { margin-top: 10px; }

.contact-section {
  background:
    radial-gradient(circle at right bottom, rgba(245,168,0,0.10), transparent 30%),
    linear-gradient(180deg, #070707 0%, #050505 100%);
}

.contact-card {
  display: grid;
  gap: 14px;
}
.contact-phone {
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.contact-link {
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.contact-social { margin-bottom: 0; color: var(--muted); }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .hours-grid,
  .contact-grid,
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid,
  .hours-grid,
  .contact-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .nav { gap: 14px; }
  .hero { padding-top: 56px; }
  .phone, .contact-phone { word-break: break-word; }
  .hours-row { flex-direction: column; align-items: flex-start; }
  .brand-logo { width: 50px; height: 50px; }
}


.contact-grid-full {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  grid-template-rows: auto auto;
  gap: 28px;
  align-items: start;
}

.map-embed {
  grid-column: 1 / -1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}

@media (max-width: 760px) {
  .contact-grid-full {
    grid-template-columns: 1fr;
  }
  .map-embed {
    grid-column: 1;
  }
}



.contact-card .contact-link {
  width: fit-content;
}

.social-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.social-link:hover {
  background: rgba(245,168,0,0.12);
  border-color: rgba(245,168,0,0.45);
  color: var(--gold);
  transform: translateY(-2px);
}

.social-link svg {
  flex-shrink: 0;
}


@media (max-width: 980px) {
  .hero {
    background-attachment: fixed;
    background-position: center top;
  }
}
