:root {
  --ink: #101827;
  --navy: #08213b;
  --navy-2: #12385c;
  --copper: #c7652b;
  --gold: #ffc328;
  --gold-2: #f5a51f;
  --paper: #f5f7fa;
  --white: #ffffff;
  --muted: #687383;
  --line: #d9e0ea;
  --green: #167455;
  --shadow: 0 22px 60px rgba(8, 33, 59, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

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

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 66px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-block: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 34px rgba(8, 33, 59, 0.14);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 62px;
  height: 54px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--white);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.08;
}

.brand strong {
  font-size: 1rem;
  font-weight: 900;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  font-size: 0.76rem;
  font-weight: 700;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a {
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 98vh;
  padding: 124px clamp(18px, 5vw, 66px) 34px;
  color: var(--white);
  overflow: hidden;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 33, 59, 0.94) 0%, rgba(8, 33, 59, 0.78) 47%, rgba(8, 33, 59, 0.28) 100%),
    linear-gradient(0deg, rgba(8, 33, 59, 0.82) 0%, rgba(8, 33, 59, 0) 58%);
}

.hero-content {
  position: relative;
  align-self: center;
  width: min(870px, 100%);
  padding-block: 54px;
}

.hero-kicker,
.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker {
  margin-bottom: 16px;
}

.eyebrow {
  margin-bottom: 12px;
}

h1 {
  max-width: 980px;
  font-size: clamp(3.4rem, 10vw, 8.4rem);
  line-height: 0.9;
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4.6vw, 4.35rem);
  line-height: 1;
  font-weight: 900;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-content p {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.66;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.btn.primary {
  color: var(--ink);
  background: var(--gold);
}

.btn.primary:hover {
  background: var(--gold-2);
}

.btn.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.1);
}

.hero-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  align-self: end;
  width: min(1180px, 100%);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.hero-strip div {
  min-height: 118px;
  padding: 24px;
  background: rgba(8, 33, 59, 0.82);
  backdrop-filter: blur(12px);
}

.hero-strip strong,
.hero-strip span {
  display: block;
}

.hero-strip strong {
  color: var(--gold);
  font-size: 1.55rem;
}

.hero-strip span {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

section {
  padding: clamp(70px, 9vw, 122px) clamp(18px, 5vw, 66px);
}

.band {
  background: var(--white);
}

.promise-band {
  padding-block: clamp(42px, 6vw, 76px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(8, 33, 59, 0.96), rgba(18, 56, 92, 0.92)),
    linear-gradient(90deg, var(--navy), var(--navy-2));
}

.promise-band p {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promise-band h2 {
  max-width: 1000px;
  margin-top: 10px;
}

.section-heading,
.section-copy {
  max-width: 850px;
}

.section-heading.wide {
  max-width: 1080px;
}

.section-heading > p,
.section-copy > p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.section-copy > p + p {
  margin-top: 18px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.image-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-card.tall img {
  aspect-ratio: 3 / 4;
}

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

.order-card {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(8, 33, 59, 0.1);
}

.order-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.order-card-body {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.order-card-body span {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-card-body h3 {
  min-height: 58px;
}

.order-card-body p {
  min-height: 72px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.55;
}

.order-card-body .btn {
  width: 100%;
  margin-top: 6px;
}

.service-list span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 900;
}

.service-list h3 {
  margin-bottom: 12px;
}

.service-list p,
.timeline p,
.coverage-card p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--navy);
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  content: "";
}

.check-list li::after {
  position: absolute;
  left: 6px;
  top: 5px;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  content: "";
  transform: rotate(40deg);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.service-list article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.timeline article {
  min-height: 260px;
  padding: 26px;
  background: var(--white);
}

.timeline strong {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline h3 {
  margin-bottom: 12px;
}

.quality-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.quality-points {
  display: grid;
  gap: 1px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.quality-points div {
  padding: 26px;
  background: var(--navy);
  color: var(--white);
}

.quality-points span {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quality-points strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.36;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.industry-grid span {
  display: grid;
  min-height: 88px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.gallery-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
}

.gallery-grid figcaption {
  min-height: 70px;
  padding: 16px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.35;
}

.coverage {
  background:
    linear-gradient(90deg, rgba(8, 33, 59, 0.92), rgba(8, 33, 59, 0.72)),
    url("assets/workshop-wire.jpeg") center / cover;
}

.coverage-card {
  width: min(760px, 100%);
  padding: clamp(28px, 5vw, 52px);
  border-radius: 8px;
  color: var(--white);
  background: rgba(8, 33, 59, 0.88);
  box-shadow: var(--shadow);
}

.coverage-card p {
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.04rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 540px);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.careers {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 540px);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

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

.career-copy > p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.career-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.career-points span {
  display: grid;
  min-height: 82px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--navy);
  font-weight: 900;
}

.job-form {
  background:
    linear-gradient(180deg, rgba(255, 195, 40, 0.16), rgba(255, 255, 255, 0)),
    var(--paper);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.contact-list span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list strong {
  color: var(--navy);
  font-size: 1.06rem;
}

address {
  margin-top: 24px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  min-height: 22px;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 66px);
  color: rgba(255, 255, 255, 0.75);
  background: var(--ink);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--white);
}

.site-footer span {
  margin-top: 6px;
}

.site-footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--gold);
  font-weight: 900;
}

@media (max-width: 1120px) {
  .order-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .site-header {
    gap: 12px;
    padding: 10px 14px;
  }

  .site-header.is-scrolled,
  .site-header.is-open {
    padding-block: 8px;
  }

  .nav-toggle {
    flex: 0 0 auto;
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    max-height: calc(100vh - 94px);
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
    overflow: auto;
  }

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

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

  .hero {
    min-height: auto;
    padding: 108px 16px 22px;
  }

  .hero-bg img {
    object-position: center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(8, 33, 59, 0.96), rgba(8, 33, 59, 0.72)),
      linear-gradient(90deg, rgba(8, 33, 59, 0.9), rgba(8, 33, 59, 0.5));
  }

  .hero-content {
    padding-block: 18px 26px;
  }

  .hero-strip,
  .section-grid,
  .quality-layout,
  .careers,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-strip div {
    min-height: auto;
    padding: 18px;
  }

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

  section {
    padding: 58px 16px;
  }

  .promise-band {
    padding-block: 42px;
  }

  .order-card-body h3,
  .order-card-body p {
    min-height: 0;
  }

  .contact-form {
    box-shadow: none;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 44px;
    height: 40px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 170px;
    font-size: 0.86rem;
    line-height: 1.1;
  }

  h1 {
    font-size: 3rem;
    line-height: 0.96;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.05;
  }

  h3 {
    font-size: 1.05rem;
  }

  .hero-kicker,
  .eyebrow {
    font-size: 0.72rem;
  }

  .hero-content p,
  .section-heading > p,
  .section-copy > p,
  .career-copy > p,
  .coverage-card p,
  .contact-copy p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .order-grid,
  .timeline,
  .industry-grid,
  .gallery-grid,
  .career-points {
    grid-template-columns: 1fr;
  }

  .order-card-body,
  .service-list article,
  .timeline article {
    min-height: auto;
    padding: 22px;
  }

  .order-card img,
  .image-card img,
  .image-card.tall img,
  .gallery-grid img {
    aspect-ratio: 4 / 3;
  }

  .contact,
  .careers,
  .section-grid {
    gap: 28px;
  }

  .contact-form {
    padding: 18px;
  }

  .btn {
    min-height: 48px;
    padding-inline: 14px;
    text-align: center;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 380px) {
  .brand strong {
    max-width: 132px;
    font-size: 0.78rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero {
    padding-inline: 14px;
  }
}
