* {
  box-sizing: border-box;
}

:root {
  --ink: #111518;
  --muted: #687279;
  --line: #e8ebed;
  --paper: #ffffff;
  --soft: #f4f5f6;
  --accent: #ff6310;
  --accent-dark: #d64b00;
  --steel: #29323a;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 96px;
  margin: 0 auto;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.brand span {
  font-size: 19px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.section {
  padding: 88px 0;
}

.section.soft {
  background: var(--soft);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(850px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.hero {
  padding: 86px 0 72px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 80px);
  line-height: 1.05;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4.5vw, 50px);
  line-height: 1.12;
}

h3 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.2;
}

.lead {
  color: var(--muted);
  font-size: 21px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 2px solid var(--accent);
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.2;
}

.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button.ghost {
  background: transparent;
  color: var(--accent);
}

.hero-image {
  width: min(1200px, calc(100% - 40px));
  height: min(800px, 55vw);
  min-height: 380px;
  margin: 48px auto 0;
  border-radius: 4px;
  object-fit: cover;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.split.reverse .media {
  order: -1;
}

.media img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 4px;
}

.service-copy p,
.about-copy p {
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.gallery img {
  width: 100%;
  height: 384px;
  object-fit: cover;
  border-radius: 4px;
}

.why-grid,
.contact-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.feature,
.contact-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.feature-number {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-weight: 900;
}

.feature p,
.contact-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta {
  background: var(--steel);
  color: #fff;
  text-align: center;
}

.cta .lead {
  color: #d7dde1;
}

.site-footer {
  padding: 26px 0;
  background: #0f1215;
  color: #d7dde1;
  text-align: center;
  font-size: 15px;
}

.site-footer p {
  margin: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
  text-align: left;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 7px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfd5d9;
  border-radius: 4px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 760px) {
  .nav-wrap {
    width: min(100% - 28px, 1180px);
    min-height: 82px;
  }

  .brand img {
    width: 60px;
    height: 60px;
  }

  .brand span {
    font-size: 16px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 16px 24px;
    border-top: 1px solid var(--line);
  }

  .section,
  .hero {
    padding: 58px 0;
  }

  .split,
  .why-grid,
  .contact-grid,
  .services-grid,
  .gallery,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .split.reverse .media {
    order: 0;
  }

  .media img,
  .gallery img {
    height: 310px;
  }
}
