:root {
  --bg: #0c0c0d;
  --panel: #141416;
  --panel-light: #1c1c20;
  --text: #ffffff;
  --muted: #c8c8c8;
  --red: #d71920;
  --border: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 82px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  background: rgba(12, 12, 13, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.brand img {
  height: 52px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
}

.nav a {
  color: var(--text);
  opacity: 0.9;
}

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

.nav-quote {
  background: #ffffff;
  color: #000000 !important;
  padding: 14px 24px;
  border-radius: 999px;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 140px 6% 80px;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.45), rgba(0,0,0,0.12)),
    url("Images/MainPage.png") center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.95;
}

h1 {
  font-size: clamp(58px, 9vw, 135px);
  text-transform: uppercase;
  letter-spacing: -3px;
}

h2 {
  font-size: clamp(42px, 6vw, 86px);
  text-transform: uppercase;
  letter-spacing: -2px;
}

h3 {
  font-size: 25px;
}

p {
  line-height: 1.6;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 20px;
  margin: 28px 0;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  border: 0;
}

.btn.primary {
  background: var(--red);
  color: white;
}

.btn.secondary {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
}

.btn.full {
  width: 100%;
}

.section {
  padding: 110px 6%;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 50px;
}

.section-heading p,
.split-section p,
.quote-intro p {
  color: var(--muted);
  font-size: 18px;
}

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

.service-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px;
  min-height: 250px;
}

.service-card h3 {
  margin-bottom: 18px;
}

.service-card p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  background: #20201d;
}

.text-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--red);
  font-weight: 900;
}

.steps {
  display: grid;
  gap: 26px;
}

.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border);
}

.step span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  font-size: 24px;
  font-weight: 900;
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.portfolio-section {
  background: #0f0f11;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 22px;
}

.portfolio-large,
.portfolio-small,
.portfolio-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.portfolio-large img,
.portfolio-small img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.portfolio-card {
  padding: 32px;
}

.portfolio-card p {
  color: var(--muted);
}

.shop-section {
  background: linear-gradient(135deg, #141416, #210909);
}

.quote-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  background: #0c0c0d;
}

.contact-info {
  margin-top: 32px;
  padding: 28px;
  border-radius: 22px;
  background: var(--panel);
  border: 1px solid var(--border);
}

.contact-info p {
  margin: 6px 0;
}

.contact-info a {
  color: var(--red);
}

.quote-form {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: grid;
  gap: 9px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  background: #0d0d0f;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  padding: 16px;
  font-size: 16px;
}

textarea {
  resize: vertical;
}

.footer {
  padding: 60px 6%;
  text-align: center;
  background: #070708;
  border-top: 1px solid var(--border);
}

.footer img {
  width: 90px;
  margin: 0 auto 20px;
}

.footer p {
  color: var(--muted);
  margin: 5px 0;
}

@media (max-width: 950px) {
  .site-header {
    height: auto;
    padding: 18px 5%;
    align-items: flex-start;
    gap: 18px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
    font-size: 14px;
  }

  .brand img {
    height: 42px;
  }

  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-section,
  .quote-section,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 48px;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 780px;
    padding-top: 70px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }
}
