:root {
  color-scheme: light;
  --ink: #191919;
  --muted: #62656a;
  --line: #d9dbde;
  --paper: #ffffff;
  --white: #ffffff;
  --orange: #f45224;
  --orange-dark: #cf3d18;
  --steel: #8f949b;
  --charcoal: #2b2b2b;
  --shadow: 0 18px 45px rgba(25, 25, 25, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 10px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(25, 25, 25, 0.08);
  backdrop-filter: blur(16px);
}

.brand-link {
  width: min(178px, 46vw);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
  color: var(--charcoal);
}

.site-nav a:hover {
  color: var(--orange-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(30px, 4vw, 58px) clamp(20px, 5vw, 72px) clamp(38px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(255, 255,255, 0.95), rgba(242, 242, 242, 0.74)),
    repeating-linear-gradient(135deg, rgba(25, 25, 25, 0.035) 0 1px, transparent 1px 18px);
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 4.45vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.15rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.1;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 32px;
  color: #404246;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.button-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.button-secondary {
  background: transparent;
}

.button-secondary:hover {
  color: var(--white);
  background: var(--ink);
}

.hero-panel {
  min-width: 0;
  padding: clamp(22px, 3vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: min(235px, 72%);
  margin: 0 auto 20px;
}

.hero-panel dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.hero-panel div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.hero-panel dt {
  margin-bottom: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.service-strip,
.about-section,
.contact-section {
  padding: clamp(56px, 8vw, 106px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display:block;
  max-width:960px;
  margin-bottom: clamp(26px, 4vw, 44px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 275px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--orange);
  border-radius: 8px;
}

.service-number {
  display: block;
  margin-bottom: 28px;
  color: var(--steel);
  font-weight: 900;
}

.service-card p {
  font-size: 1rem;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  background: var(--charcoal);
}

.about-section h2,
.about-section .eyebrow {
  color: var(--white);
}

.about-section p {
  color: #d9dbde;
}

.logo-stack {
  display: grid;
  gap: 18px;
}

.logo-stack img {
  width: 100%;
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  font-style: normal;
}

.contact-card {
  display: grid;
  gap: 8px;
  min-height: 136px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
}

.contact-card:hover {
  border-color: var(--orange);
}

.contact-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  align-self: end;
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.address-card {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: #d9dbde;
  background: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-image {
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    border-bottom:4px solid var(--orange);
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

@media (max-width: 768px) {
    .hero-image {
        min-height: 300px;
    }

    .hero-image img {
        height: 300px;
    }
}

@media (max-width: 920px) {
  .hero,
  .about-section,
  .contact-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-actions,
  .button,
  .contact-grid {
    width: 100%;
  }

  .button {
    min-height: 48px;
  }

  .hero-panel {
    display: none;
  }

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