* {
  box-sizing: border-box;
}

:root {
  --bg: #111;
  --panel: #181818;
  --panel-2: #1d1d1d;
  --text: #fff;
  --muted: #d2d2d2;
  --accent: #c40000;
  --border: #2f2f2f;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; }

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

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.site-header {
  background: rgba(0,0,0,0.96);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(6px);
}

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

.brand-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  max-height: 92px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.35));
}

.nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav a {
  color: #ff6464;
  text-decoration: none;
  font-weight: 700;
}

.nav a:hover {
  color: #fff;
}

.hero {
  padding: 96px 0;
  background-size: cover;
  background-position: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.06;
  margin: 0 0 18px;
  max-width: 880px;
}

.hero-copy p {
  max-width: 760px;
  color: #ededed;
  font-size: 1.06rem;
}

.eyebrow {
  color: #ff6666;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-panel,
.info-box,
.service-card,
.cta-box,
.gallery-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
}

.hero-panel,
.info-box,
.service-card,
.cta-box {
  padding: 24px;
}

.hero-panel ul {
  margin: 0;
  padding-left: 18px;
}

.section {
  padding: 68px 0;
}

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

.section-heading {
  text-align: center;
  margin-bottom: 28px;
}

.section-heading.left {
  text-align: left;
}

.section-heading h1,
.section-heading h2 {
  margin: 0;
  font-size: 2rem;
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-list.three-up {
  grid-template-columns: repeat(3, 1fr);
}

.split {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 28px;
  align-items: start;
}

.feature-photo {
  border-radius: 10px;
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin-bottom: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.contact-form {
  margin-top: 20px;
}

.contact-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 8px;
  border: 1px solid #444;
  background: #fff;
  color: #111;
  font: inherit;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .25s ease;
}

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

.cta-section {
  padding-top: 0;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid var(--accent);
}

.site-footer {
  background: #000;
  border-top: 1px solid #2a2a2a;
  padding: 20px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.small-note {
  color: var(--muted);
  margin: 0;
}

hr {
  border: none;
  border-top: 1px solid #333;
  margin: 20px 0;
}

@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .service-list.three-up {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .site-logo {
    max-height: 72px;
  }

  .hero {
    padding: 70px 0;
  }

  .hero-copy h1 {
    font-size: 2.45rem;
  }

  .footer-inner {
    flex-direction: column;
  }
}
