:root {
  --black: #0b0b0d;
  --panel: #141418;
  --panel-2: #1b1b21;
  --red: #d7212b;
  --red-dark: #a11117;
  --silver: #c7ccd4;
  --white: #f5f6f8;
  --muted: #9aa0aa;
  --max: 1120px;
  --radius: 10px;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 36px; }

.kicker {
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.muted { color: var(--muted); font-size: 0.92em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 13, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--red);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand-logo { height: 62px; width: auto; }

.site-nav { display: flex; gap: 26px; margin-left: auto; }

.site-nav a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}

.site-nav a:hover { color: var(--red); border-color: var(--red); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 6px;
  transition: transform .12s, background .15s, color .15s, box-shadow .15s;
  font-size: 1.05rem;
}

.btn:active { transform: translateY(1px); }

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 18px rgba(215, 33, 43, 0.35);
}

.btn-red:hover { background: var(--red-dark); }

.btn-outline {
  border: 2px solid var(--silver);
  color: var(--white);
}

.btn-outline:hover { border-color: var(--red); color: var(--red); }

.btn-lg { padding: 15px 34px; font-size: 1.2rem; }

.header-call { white-space: nowrap; }

/* ---------- Mobile nav ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(11,11,13,0.93) 0%, rgba(11,11,13,0.72) 45%, rgba(11,11,13,0.35) 100%),
    url("../img/storefront.jpg") center 62% / cover no-repeat;
}

.hero-content { position: relative; padding-top: 70px; padding-bottom: 90px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  background: rgba(215, 33, 43, 0.16);
  border: 1px solid var(--red);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.95rem;
  margin-bottom: 26px;
}

.pulse-dot {
  width: 9px; height: 9px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(215,33,43,0.6); }
  70% { box-shadow: 0 0 0 9px rgba(215,33,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(215,33,43,0); }
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.6rem);
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 .accent { color: var(--red); }

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--silver);
  margin-bottom: 34px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.stripe {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 10px;
  background: repeating-linear-gradient(-45deg,
    var(--red) 0 26px,
    var(--white) 26px 34px,
    var(--black) 34px 60px);
  opacity: 0.85;
}

/* ---------- Highlights ---------- */
.highlights {
  background: var(--panel);
  border-bottom: 1px solid #23232a;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 48px;
  padding-bottom: 48px;
}

.highlight-icon { font-size: 1.8rem; margin-bottom: 10px; }

.highlight h3 { font-size: 1.25rem; margin-bottom: 6px; }

.highlight p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }

.section-dark { background: var(--panel); }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--panel-2);
  border: 1px solid #26262e;
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .15s, border-color .15s, box-shadow .15s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  border-left-color: var(--white);
}

.service-card h3 { font-size: 1.35rem; margin-bottom: 10px; }

.service-card p { color: var(--muted); font-size: 0.97rem; }

.services-note { margin-top: 30px; color: var(--silver); }

.services-note a { color: var(--red); font-weight: 600; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-photo img {
  border-radius: var(--radius);
  border: 1px solid #2a2a32;
  box-shadow: 0 18px 50px rgba(0,0,0,0.5);
}

.caption { color: var(--muted); font-size: 0.88rem; margin-top: 12px; }

.about-text blockquote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--silver);
  border-left: 4px solid var(--red);
  padding-left: 20px;
  margin: 24px 0;
}

.about-text p { margin-bottom: 16px; }

.about-text .btn { margin-top: 10px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #26262e;
  aspect-ratio: 4 / 3;
}

.gallery-item.wide { grid-column: span 2; aspect-ratio: 21 / 9; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.gallery-item:hover img { transform: scale(1.03); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-info { display: grid; gap: 26px; }

.contact-block h3 {
  font-size: 1.2rem;
  color: var(--red);
  margin-bottom: 6px;
}

.text-link { color: var(--white); text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 4px; }

.text-link:hover { color: var(--red); }

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

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #2a2a32;
  min-height: 420px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: grayscale(0.2) contrast(1.05);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 2px solid var(--red);
  background: var(--black);
  text-align: center;
  padding: 40px 0;
}

.footer-logo { height: 74px; margin: 0 auto 16px; }

.site-footer a { color: var(--white); }

.footer-inner p { margin-bottom: 6px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .header-call { display: none; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; gap: 22px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 4 / 3; }
  .hero { min-height: 74vh; }

  .nav-toggle { display: flex; margin-left: auto; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--black);
    border-bottom: 2px solid var(--red);
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 18px;
  }

  .site-nav.open { display: flex; }

  .site-nav a { padding: 12px 0; border-bottom: 1px solid #222; }

  .brand-logo { height: 52px; }
}
