:root {
  --bg: #070708;
  --panel: #111114;
  --panel-2: #18181c;
  --text: #f5f1ec;
  --muted: #b8b3aa;
  --red: #ba1118;
  --red-bright: #ee1c25;
  --line: rgba(255,255,255,.12);
  --shadow: 0 24px 80px rgba(0,0,0,.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, rgba(186,17,24,.2), transparent 34%), var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(7,7,8,.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
nav { display: flex; align-items: center; gap: clamp(12px, 2vw, 28px); color: var(--muted); font-weight: 800; text-transform: uppercase; font-size: 12px; letter-spacing: .12em; }
nav a:hover { color: var(--text); }
.nav-cta { color: var(--red-bright); }

.hero {
  min-height: 84vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-image { position: absolute; inset: 0; background-image: url('/assets/hero-garage.png'); background-size: cover; background-position: center; filter: saturate(.95) contrast(1.05); transform: scale(1.02); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.74), rgba(0,0,0,.52), rgba(0,0,0,.92)), radial-gradient(circle at center, transparent, rgba(0,0,0,.6)); }
.hero-content { position: relative; width: min(100%, 980px); padding: 120px 24px 90px; text-align: center; }
.hero-logo { width: 155px; margin: 0 auto 22px; filter: drop-shadow(0 15px 28px rgba(0,0,0,.7)); }
.eyebrow { margin: 0 0 12px; color: var(--red-bright); font-weight: 950; text-transform: uppercase; letter-spacing: .18em; font-size: 12px; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 20px; font-size: clamp(44px, 9vw, 104px); line-height: .9; text-transform: uppercase; letter-spacing: .035em; text-shadow: 0 20px 45px rgba(0,0,0,.72); }
h2 { font-size: clamp(30px, 5vw, 60px); line-height: 1; letter-spacing: .02em; text-transform: uppercase; }
h3 { font-size: 21px; line-height: 1.12; }
.lede { width: min(760px, 100%); margin: 0 auto 32px; color: var(--muted); font-size: clamp(18px, 2.2vw, 24px); }
.hero-actions, .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 14px 22px; border: 1px solid var(--line); border-radius: 999px; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; font-size: 12px; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.34); }
.button.primary { background: var(--red); border-color: var(--red); color: white; box-shadow: 0 18px 42px rgba(186,17,24,.28); }
.button.secondary { background: rgba(255,255,255,.06); }

.intro, .services-section, .booking-band, footer { padding: clamp(56px, 8vw, 110px) clamp(18px, 5vw, 72px); }
.intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 6vw, 80px); max-width: 1220px; margin: 0 auto; }
.intro-copy { color: var(--muted); font-size: 19px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1220px; margin: 0 auto; padding: 0 clamp(18px, 5vw, 72px) clamp(56px, 8vw, 110px); }
.feature-grid article, .service-card { background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.025)); border: 1px solid var(--line); border-radius: 24px; padding: 26px; box-shadow: var(--shadow); }
.feature-grid span { color: var(--red-bright); font-weight: 950; letter-spacing: .14em; }
.feature-grid p, .service-card p, .section-heading p, .booking-band p, footer p { color: var(--muted); }

.services-section { background: linear-gradient(180deg, rgba(255,255,255,.03), transparent); }
.section-heading { max-width: 940px; margin: 0 auto 34px; text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1360px; margin: 0 auto; }
.service-card { padding: 24px; display: flex; flex-direction: column; min-height: 315px; }
.service-top { border-bottom: 1px solid var(--line); margin-bottom: 16px; padding-bottom: 14px; }
.service-top h3 { margin-bottom: 10px; }
.service-top p { color: var(--red-bright); font-weight: 950; letter-spacing: .06em; text-transform: uppercase; font-size: 13px; margin-bottom: 0; }
.service-card p:last-child { margin-bottom: 0; }

.booking-band { display: flex; justify-content: space-between; align-items: center; gap: 26px; max-width: 1220px; margin: 0 auto; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.booking-band div { max-width: 760px; }

.gallery { display: grid; grid-template-columns: .85fr 1.15fr; gap: 18px; padding: 0 clamp(18px, 5vw, 72px) clamp(56px, 8vw, 110px); max-width: 1360px; margin: 0 auto; }
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; border: 1px solid var(--line); box-shadow: var(--shadow); }

footer { display: flex; justify-content: space-between; align-items: center; gap: 24px; background: #050506; border-top: 1px solid var(--line); }
footer img { width: 90px; margin-bottom: 14px; }
footer p { margin-bottom: 6px; }
.footer-links { justify-content: flex-end; }
.footer-links a { color: var(--muted); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; border: 1px solid var(--line); border-radius: 999px; padding: 12px 15px; }
.footer-links a:hover { color: white; border-color: rgba(255,255,255,.3); }

@media (max-width: 950px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; }
  nav { width: 100%; overflow-x: auto; padding-bottom: 2px; }
  .intro, .feature-grid, .services-grid, .gallery { grid-template-columns: 1fr; }
  .booking-band, footer { flex-direction: column; align-items: flex-start; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .brand span { font-size: 13px; }
  nav { gap: 14px; font-size: 11px; }
  .hero { min-height: 76vh; }
  .hero-logo { width: 118px; }
  .button { width: 100%; }
  .hero-actions { width: 100%; }
  .service-card { min-height: auto; }
}

/* Contact additions */
.section-heading.compact { margin-bottom: 26px; }
.quick-contact { padding: clamp(56px, 8vw, 100px) clamp(18px, 5vw, 72px); max-width: 1360px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.contact-grid.large { grid-template-columns: repeat(2, 1fr); }
.contact-card { background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); border: 1px solid var(--line); border-radius: 24px; padding: 26px; box-shadow: var(--shadow); min-height: 220px; }
.contact-card span { display: block; color: var(--red-bright); font-weight: 950; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; margin-bottom: 12px; }
.contact-card h3 { font-size: clamp(22px, 2.7vw, 34px); margin-bottom: 10px; }
.contact-card p { color: var(--muted); }
.text-link { display: inline-flex; color: var(--red-bright); font-weight: 950; text-transform: uppercase; letter-spacing: .1em; font-size: 12px; border-bottom: 1px solid rgba(238,28,37,.55); padding-bottom: 3px; }
.inline-links { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.page-hero { min-height: 64vh; position: relative; display: grid; place-items: center; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero-bg { position: absolute; inset: 0; background-image: url('/assets/hero-garage.png'); background-size: cover; background-position: center; filter: saturate(.95) contrast(1.05); transform: scale(1.02); }
.page-hero-content { position: relative; width: min(100%, 980px); padding: 110px 24px 80px; text-align: center; }
.contact-page-section { padding: clamp(56px, 8vw, 110px) clamp(18px, 5vw, 72px); max-width: 1220px; margin: 0 auto; }
.contact-main-card { display: grid; grid-template-columns: 180px 1fr; gap: 28px; align-items: center; padding: 30px; margin-bottom: 20px; background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.contact-main-card img { width: 180px; }
.contact-main-card p { color: var(--muted); }
.small-button { min-height: 42px; padding: 10px 14px; font-size: 11px; width: auto; }

@media (max-width: 950px) {
  .contact-grid, .contact-grid.large, .contact-main-card { grid-template-columns: 1fr; }
  .contact-main-card img { width: 130px; }
}
