:root {
  --bg: #0a0a0a;
  --bg-alt: #141414;
  --text: #f5f5f5;
  --text-muted: #b3b3b3;
  --accent: #e21f26;
  --border: #262626;
  --max-width: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

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

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

h1, h2, h3 { line-height: 1.2; }

h2 {
  font-size: 2rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-align: center;
}

a { color: var(--accent); text-decoration: none; }

.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-outline { border: 2px solid var(--accent); color: var(--accent); }
.btn:hover { transform: translateY(-2px); opacity: 0.9; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
}
.logo-mark { width: 40px; height: 40px; object-fit: contain; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); }

.site-nav { display: flex; gap: 24px; }
.site-nav a { color: var(--text); font-weight: 600; }
.site-nav a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    flex-direction: column;
    padding: 16px 20px;
    display: none;
    border-bottom: 1px solid var(--border);
  }
  .site-nav.open { display: flex; }
}
@media (min-width: 769px) {
  .nav-toggle { display: none; }
}

/* Hero */
.hero { padding: 60px 0; }
.hero-inner { display: flex; flex-direction: column; gap: 40px; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 8px; }
.hero h1 { font-size: 2.2rem; margin-bottom: 12px; }
.hero h1 span { color: var(--accent); }
.hero-sub { color: var(--text-muted); margin-bottom: 24px; }
.hero-media { align-self: stretch; }
.hero-media img {
  border-radius: 8px;
  border: 1px solid var(--border);
  max-height: 60vh;
  width: 100%;
  object-fit: cover;
}

@media (min-width: 900px) {
  .hero-inner { flex-direction: row; align-items: flex-start; }
  .hero-copy, .hero-media { flex: 1; }
  .hero h1 { font-size: 3rem; }
}

/* About */
.about { padding: 60px 0; background: var(--bg-alt); }
.about-inner { display: flex; flex-direction: column; gap: 32px; align-items: center; }
.about-media img { border-radius: 8px; max-width: 320px; height: auto; }
.about-copy p { margin-bottom: 1rem; color: var(--text-muted); }

@media (min-width: 900px) {
  .about-inner { flex-direction: row; align-items: flex-start; }
}

/* Services */
.services { padding: 60px 0; }
.card-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
}
.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}
.card h3 { color: var(--accent); margin-bottom: 8px; }
.card p { color: var(--text-muted); margin-bottom: 12px; }

/* Gallery */
.gallery { padding: 60px 0; background: var(--bg-alt); }
.gallery-media img { border-radius: 8px; margin: 0 auto; max-width: 500px; max-height: 60vh; object-fit: cover; }

/* Testimonials */
.testimonials { padding: 60px 0; }
.testimonial {
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  padding: 24px;
  border-radius: 4px;
}
.testimonial p { margin-bottom: 12px; font-style: italic; }
.testimonial cite { color: var(--accent); font-weight: 700; font-style: normal; }
.stars { color: var(--accent); margin-left: 6px; }

/* Contact */
.contact { padding: 60px 0; background: var(--bg-alt); text-align: center; }
.contact-links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin: 24px 0; }

/* Footer */
.site-footer { padding: 40px 0; text-align: center; border-top: 1px solid var(--border); }
.footer-inner .logo-mark { margin: 0 auto 12px; }
.copyright { color: var(--text-muted); font-size: 0.85rem; margin-top: 8px; }
