* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2933;
  background: #fff;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(760px, calc(100% - 2rem));
}

.center {
  text-align: center;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #1b1b1b;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.3rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #f97316;
}

.nav-call {
  background: linear-gradient(135deg, #f97316, #c2410c);
  padding: 0.75rem 1.1rem;
  border-radius: 8px;
  color: #fff !important;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 8px;
  padding: 0.55rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

.hero {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: #111;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
}

.hero-content {
  position: absolute;
  inset: 0;
  width: min(760px, calc(100% - 2rem));
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-logo {
  width: min(340px, 75vw);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.65));
  margin-bottom: 1.3rem;
}

.hero-text {
  font-size: clamp(1.1rem, 3vw, 1.55rem);
  line-height: 1.35;
  font-weight: 800;
  max-width: 760px;
  text-shadow: 0 3px 12px rgba(0,0,0,0.9);
  margin: 0 0 1.5rem;
}

.button {
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 1rem 1.6rem;
}

.button-primary {
  background: linear-gradient(135deg, #f97316, #c2410c);
  color: #fff;
}

.button-light {
  background: #fff;
  color: #111;
}

.section {
  padding: 5.5rem 0;
}

.section-orange {
  background: linear-gradient(135deg, #f97316, #d9470b);
  color: #fff;
}

.section-orange a {
  color: #fff;
  font-weight: 800;
}

.section-light {
  background: #f5f5f5;
}

.section h1,
.section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.12;
  margin: 0;
}

.section p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.divider {
  width: 58px;
  height: 3px;
  background: #f97316;
  margin: 1.5rem auto 2rem;
}

.divider.light {
  background: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.25rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.service-card p {
  margin: 0;
  color: #606975;
  font-size: 1rem;
}

.section-lead {
  max-width: 850px;
  margin: 0 auto 2rem;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  text-align: left;
}

.info-box {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.info-box h3 {
  margin-top: 0;
}

.info-box li {
  margin-bottom: 0.65rem;
  line-height: 1.5;
}

.faq-item {
  margin-bottom: 1.8rem;
}

.faq-item h3 {
  margin-bottom: 0.4rem;
}

.faq-item p {
  margin-top: 0;
  color: #606975;
}

.contact-form {
  text-align: left;
  margin-top: 2rem;
}

.contact-form label {
  display: block;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  margin-bottom: 1rem;
  font: inherit;
}

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

.form-button {
  width: 100%;
}

.honeypot {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.alert {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 700;
}

.alert.success {
  background: #dcfce7;
  color: #166534;
}

.alert.error {
  background: #fee2e2;
  color: #991b1b;
}

.site-footer {
  background: #1b1b1b;
  color: #fff;
  padding: 2.5rem 0;
}

.site-footer p {
  margin: 0.3rem 0;
}

.site-footer a {
  color: #f97316;
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .nav-inner {
    min-height: 64px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #1b1b1b;
    padding: 1rem;
  }

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

  .nav-links a {
    padding: 0.85rem 0;
  }

  .nav-call {
    text-align: center;
    margin-top: 0.5rem;
  }

  .hero {
    height: 360px;
  }

  .hero-logo {
    width: 150px;
    margin-bottom: 0.8rem;
  }

  .hero-text {
    font-size: 0.98rem;
    line-height: 1.22;
    max-width: 330px;
    margin-bottom: 1rem;
  }

  .button {
    padding: 0.85rem 1.25rem;
    font-size: 0.8rem;
  }

  .section {
    padding: 4rem 0;
  }

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

  .section p {
    font-size: 1rem;
    line-height: 1.6;
  }

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

  .service-card,
  .info-box {
    padding: 1.5rem;
  }
}