:root {
  --ink: #151515;
  --muted: #5f646c;
  --line: #e3e2dd;
  --paper: #f8f6f0;
  --surface: #ffffff;
  --red: #d3222a;
  --red-dark: #9f151b;
  --teal: #0d6f73;
  --steel: #26333d;
  --gold: #c89f35;
  --shadow: 0 18px 50px rgba(21, 21, 21, 0.14);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

body::selection {
  background: rgba(211, 34, 42, 0.18);
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(248, 246, 240, 0.86);
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  width: 154px;
  height: auto;
  max-height: 50px;
  object-fit: contain;
}

.brand-tagline {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 4px;
  color: #242424;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.nav-links a:hover {
  background: rgba(211, 34, 42, 0.1);
  color: var(--red-dark);
}

.nav-cta {
  background: var(--ink);
  color: #fff !important;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  min-height: 84svh;
  padding: 116px 0 64px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.9) 0%, rgba(17, 17, 17, 0.64) 42%, rgba(17, 17, 17, 0.18) 100%),
    url("./assets/home-services.jpg") center / cover no-repeat;
  color: #fff;
}

.hero-inner,
.section-inner,
.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #f1c94a;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2.2vw, 24px);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}

.button:hover {
  background: var(--red-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button.dark {
  background: var(--ink);
}

.button.dark:hover {
  background: var(--steel);
}

.button.light {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button.light:hover {
  background: #f3f0e8;
}

.button .icon {
  width: 18px;
  height: 18px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 720px;
  margin-top: 44px;
  background: rgba(255, 255, 255, 0.24);
}

.hero-stats div {
  padding: 16px;
  background: rgba(21, 21, 21, 0.58);
}

.hero-stats strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 750;
}

.quick-strip {
  background: var(--ink);
  color: #fff;
}

.quick-strip .section-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.quick-item {
  min-height: 112px;
  padding: 24px;
  background: var(--ink);
  text-decoration: none;
}

.quick-item span {
  color: #f1c94a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-item strong {
  display: block;
  margin-top: 6px;
  font-size: 21px;
}

.section {
  padding: 86px 0;
}

.section.alt {
  background: #fff;
}

.section.steel {
  background: var(--steel);
  color: #fff;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section.steel .section-kicker {
  color: #f1c94a;
}

.section h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section.steel .section-head p,
.section.steel .muted {
  color: rgba(255, 255, 255, 0.74);
}

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

.service-card {
  overflow: hidden;
  border-radius: 6px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(21, 21, 21, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.service-card ul,
.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.service-card li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-weight: 950;
}

.feature-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.feature-media {
  position: relative;
}

.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-media::after {
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 34%;
  height: 34%;
  border-right: 8px solid var(--gold);
  border-bottom: 8px solid var(--gold);
  content: "";
}

.feature-copy h3 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.feature-copy p {
  color: var(--muted);
  font-size: 18px;
}

.work-types {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.18);
}

.work-type {
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
}

.work-type h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 24px;
}

.work-type p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.logo-card {
  display: grid;
  min-height: 118px;
  place-items: center;
  padding: 14px;
  border-radius: 6px;
  background: #fff;
}

.logo-card img {
  max-height: 74px;
  object-fit: contain;
}

.logo-card span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  gap: 44px;
  align-items: start;
}

.about-copy p {
  color: var(--muted);
  font-size: 18px;
}

.quote {
  margin: 28px 0 0;
  padding: 28px;
  border-left: 6px solid var(--red);
  background: #fff;
  font-size: 22px;
  font-weight: 780;
  line-height: 1.35;
}

.quote cite {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  font-style: normal;
  font-weight: 750;
}

.portrait-wrap {
  position: sticky;
  top: 104px;
}

.portrait-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.quality-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 42px;
  align-items: center;
}

.quality-grid img {
  width: min(340px, 100%);
  margin: 0 auto;
}

.quality-grid p {
  margin: 0 0 18px;
  font-size: 19px;
}

.quality-copy h2 {
  margin-bottom: 34px;
  line-height: 1.08;
}

.request-wrap {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 42px;
  align-items: start;
}

.request-copy p {
  color: var(--muted);
  font-size: 18px;
}

.request-copy .contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
}

.contact-line svg {
  width: 22px;
  height: 22px;
  color: var(--red);
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(21, 21, 21, 0.07);
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #343434;
  font-size: 13px;
  font-weight: 850;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #d8d7d2;
  border-radius: 4px;
  padding: 13px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--red);
  outline: 3px solid rgba(211, 34, 42, 0.14);
}

.honeypot {
  display: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 800;
}

.form-status[data-state="success"] {
  color: var(--teal);
}

.form-status[data-state="error"] {
  color: var(--red-dark);
}

.form-status[data-state="pending"] {
  color: var(--muted);
}

.request-form button[disabled] {
  cursor: wait;
  opacity: 0.64;
}

.privacy {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 42px 0;
}

.privacy .section-inner {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 38px;
}

.privacy h2 {
  margin: 0;
  font-size: 28px;
}

.privacy p {
  margin: 0 0 14px;
  color: var(--muted);
}

.contact-panel {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 32px;
  background: var(--ink);
  color: #fff;
}

.contact-panel h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0 0;
}

.contact-methods a {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.contact-methods a:hover {
  border-color: rgba(241, 201, 74, 0.8);
}

.contact-methods span {
  color: #f1c94a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-methods strong {
  font-size: 20px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.site-footer {
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.76);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner strong {
  color: #fff;
}

.footer-inner a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 73px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 14px;
  }

  .section-head,
  .feature-row,
  .about-grid,
  .quality-grid,
  .request-wrap,
  .privacy .section-inner {
    grid-template-columns: 1fr;
  }

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

  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .portrait-wrap {
    position: static;
  }
}

@media (max-width: 680px) {
  .brand-tagline {
    display: none;
  }

  .brand-logo {
    width: 132px;
  }

  .hero {
    min-height: 82svh;
    padding-top: 106px;
  }

  .hero-stats,
  .quick-strip .section-inner {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

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

  .request-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .footer-inner {
    display: grid;
  }

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