:root {
  --ink: #07162f;
  --ink-2: #112341;
  --blue: #0572f0;
  --blue-2: #22a1ff;
  --gold: #d9a441;
  --paper: #f7f9fc;
  --white: #ffffff;
  --muted: #667085;
  --line: rgba(7, 22, 47, 0.12);
  --shadow: 0 22px 70px rgba(7, 22, 47, 0.18);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
  color-scheme: light;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 20;
  width: auto;
  height: auto;
  left: 1rem;
  top: 1rem;
  clip: auto;
  padding: .75rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 30px rgba(7, 22, 47, .1);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 34px rgba(7, 22, 47, .14);
}

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

.brand {
  display: flex;
  align-items: center;
  padding: 8px 0;
}

.brand img {
  width: 150px;
  height: auto;
  filter: none;
}

.site-header.is-scrolled .brand {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 12px;
  color: var(--ink);
  font-size: .93rem;
  font-weight: 750;
}

.site-header.is-scrolled .nav-links a {
  color: var(--ink);
}

.nav-call {
  padding: 12px 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #004fb8);
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(5, 114, 240, .28);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(7, 22, 47, .16);
  border-radius: var(--radius);
  background: rgba(7, 22, 47, .04);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 96vh;
  margin-top: 82px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/project-metal.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 22, 47, .94) 0%, rgba(7, 22, 47, .72) 42%, rgba(7, 22, 47, .24) 100%),
    linear-gradient(0deg, rgba(7, 22, 47, .88) 0%, rgba(7, 22, 47, .1) 42%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 128px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 360px);
  gap: 42px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3.15rem, 6vw, 5.85rem);
  line-height: .94;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 690px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.04rem, 1.6vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #004fb8);
  box-shadow: 0 14px 34px rgba(5, 114, 240, .34);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .28);
}

.hero-stats {
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .18);
}

.hero-stats div {
  padding: 18px;
  background: rgba(7, 22, 47, .48);
}

.hero-stats dt {
  color: rgba(255, 255, 255, .62);
  font-size: .72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 900;
}

.hero-card {
  padding: 26px;
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.hero-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .78);
}

.card-kicker {
  color: var(--gold);
  font-size: .8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-bar span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-right: 1px solid var(--line);
  color: var(--ink-2);
  font-weight: 850;
  text-align: center;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.42rem;
  line-height: 1.15;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 52px;
  align-items: start;
}

.repair-deep {
  display: grid;
  gap: 34px;
  padding-top: 34px;
}

.repair-deep-heading {
  max-width: 840px;
}

.repair-deep-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro .section-copy,
.intro .repair-panel {
  align-self: stretch;
}

.section-copy p:not(.eyebrow),
.about-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.repair-panel {
  padding: 32px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.repair-panel h3 {
  color: var(--white);
  font-size: 2rem;
}

.repair-panel p,
.repair-panel li {
  color: rgba(255, 255, 255, .78);
}

.repair-panel ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.repair-panel li {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.repair-types {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.repair-type {
  min-height: 220px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(7, 22, 47, .07);
}

.repair-type-featured {
  grid-column: span 2;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 22, 47, .94), rgba(5, 114, 240, .72)),
    url("assets/project-tile.jpg") center / cover;
  border-color: rgba(255, 255, 255, .16);
}

.repair-type span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: .75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.repair-type-featured span {
  color: var(--gold);
}

.repair-type p {
  margin: 12px 0 0;
  color: var(--muted);
}

.repair-type-featured h3,
.repair-type-featured p {
  color: var(--white);
}

.commercial {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: center;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.commercial-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.commercial-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.commercial-list span {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(7, 22, 47, .06);
  font-weight: 900;
}

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

.service-card {
  grid-column: span 2;
  min-height: 430px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 14px 44px rgba(7, 22, 47, .13);
}

.service-featured {
  grid-column: span 6;
  min-height: 500px;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 22, 47, .92), rgba(7, 22, 47, .18) 62%);
}

.service-card div {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.service-card span {
  color: var(--gold);
  font-size: .8rem;
  font-weight: 950;
}

.service-card h3 {
  margin-top: 8px;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.service-card p {
  max-width: 680px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .78);
}

.process {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-intro {
  color: var(--muted);
  font-size: 1.08rem;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 70px 170px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.process-list li:first-child {
  border-top: 0;
}

.process-list li::before {
  content: "0" counter(step);
  color: var(--blue);
  font-size: .9rem;
  font-weight: 950;
}

.process-list strong {
  font-size: 1.1rem;
}

.process-list span {
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: repeat(2, 270px);
  gap: 16px;
}

.gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--ink);
}

.gallery figure:first-child {
  grid-row: span 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(7, 22, 47, .72);
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 850;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 54px;
  align-items: center;
}

.about-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
}

.local {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: start;
}

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

.area-grid span {
  padding: 15px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
}

.faq {
  padding-top: 34px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1fr);
  gap: 42px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 96px;
  padding: 44px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 22, 47, .97), rgba(7, 22, 47, .9)),
    url("assets/project-tile.jpg") center / cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.contact-copy p {
  color: rgba(255, 255, 255, .76);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-methods a,
.contact-methods address {
  color: rgba(255, 255, 255, .9);
  font-style: normal;
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink-2);
  font-size: .9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(7, 22, 47, .18);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfcfe;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(5, 114, 240, .14);
}

textarea {
  resize: vertical;
}

.checkbox {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 650;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.honeypot {
  display: none;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: .8rem;
}

.form-note a {
  color: var(--blue);
  font-weight: 850;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr .65fr .7fr .6fr .6fr;
  gap: 32px;
  padding: 52px max(16px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, .76);
  background: #050d1d;
}

.site-footer img {
  width: 150px;
  height: auto;
  padding: 8px;
  background: rgba(255, 255, 255, .96);
  border-radius: var(--radius);
}

.site-footer strong {
  display: block;
  color: var(--white);
  margin-bottom: 12px;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 8px 0;
}

.legal {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .82rem;
}

.mobile-cta {
  display: none;
}

.legal-page {
  background: var(--paper);
}

.legal-main {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 150px 0 90px;
}

.legal-content {
  padding: 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(7, 22, 47, .1);
}

.legal-content h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: .98;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.15;
}

.legal-content p {
  color: var(--muted);
}

.legal-content a {
  color: var(--blue);
  font-weight: 850;
}

@media (max-width: 900px) {
  .nav {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    padding: 12px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .nav-links a,
  .site-header.is-scrolled .nav-links a {
    color: var(--ink);
  }

  .nav-call {
    display: none;
  }

  .hero-inner,
  .intro,
  .process,
  .about,
  .local,
  .commercial,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 120px;
  }

  .hero-card {
    max-width: 560px;
  }

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

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

  .service-card,
  .service-featured {
    grid-column: span 6;
    min-height: 410px;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery figure,
  .gallery figure:first-child {
    height: 320px;
    grid-row: auto;
  }

  .contact-section {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 64px;
  }

  .brand img {
    width: 122px;
  }

  .hero {
    min-height: 94vh;
  }

  .hero-inner {
    width: min(100% - 24px, 1180px);
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 15vw, 4.7rem);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .repair-types {
    grid-template-columns: 1fr;
  }

  .repair-type-featured {
    grid-column: auto;
  }

  .section {
    width: min(100% - 24px, 1180px);
    padding: 70px 0;
  }

  .repair-panel,
  .lead-form,
  .contact-section {
    padding: 22px;
  }

  .service-card,
  .service-featured {
    min-height: 360px;
  }

  .process-list li {
    grid-template-columns: 44px 1fr;
  }

  .process-list span {
    grid-column: 2;
  }

  .area-grid,
  .commercial-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-section {
    width: min(100% - 24px, 1180px);
    margin-bottom: 70px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 42px 16px;
  }

  .legal-content {
    padding: 28px 20px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 12;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 28px rgba(7, 22, 47, .12);
  }

  .mobile-cta a {
    min-height: 58px;
    display: grid;
    place-items: center;
    font-weight: 950;
  }

  .mobile-cta a:last-child {
    color: var(--white);
    background: var(--blue);
  }
}
