:root {
  --ink: #141618;
  --muted: #5d6670;
  --paper: #fbfaf7;
  --line: #dfe4e8;
  --orange: #e25e22;
  --teal: #0f766e;
  --yellow: #f0b429;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--teal));
}

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

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 32px);
  color: #30363b;
  font-weight: 700;
  font-size: 14px;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--orange);
}

.header-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.header-call {
  color: var(--white);
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  background: #1b1d1f;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero picture {
  display: contents;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 10, 12, 0.88) 0%, rgba(8, 10, 12, 0.64) 42%, rgba(8, 10, 12, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 10, 12, 0.22), rgba(8, 10, 12, 0.06));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: clamp(42px, 8vw, 92px) 0;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

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

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

.btn.dark {
  color: var(--white);
  background: var(--ink);
}

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

.trust-strip span {
  min-height: 70px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: #2f363d;
  font-weight: 800;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-strip span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

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

.section-heading h2,
.contact-band h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.service-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  background: var(--yellow);
}

.service-card:nth-child(2) .service-icon {
  color: var(--white);
  background: var(--teal);
}

.service-card:nth-child(3) .service-icon {
  color: var(--white);
  background: var(--orange);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.work {
  background: #eef3f4;
}

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

.work-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 280px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

button.work-card:hover img,
button.work-card:focus-visible img {
  transform: scale(1.05);
}

.work-card--empty {
  cursor: default;
}

.work-card--empty img {
  opacity: 0.9;
}

.work-cta--soon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.22);
}

.work-caption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 22px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0));
}

.work-area {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.work-caption strong {
  font-size: 22px;
}

.work-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  background: var(--white);
}

.work-card:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 4vw, 48px);
  background: rgba(8, 10, 12, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lb-figure {
  margin: 0;
  max-width: min(1100px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lb-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  background: #1b1d1f;
}

.lb-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 15px;
}

.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.lb-btn:hover {
  background: var(--orange);
}

.lb-prev {
  left: clamp(8px, 2vw, 24px);
}

.lb-next {
  right: clamp(8px, 2vw, 24px);
}

.lb-close {
  top: clamp(10px, 3vw, 24px);
  right: clamp(10px, 3vw, 24px);
  transform: none;
  width: 46px;
  height: 46px;
  font-size: 28px;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(46px, 7vw, 80px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #20252a;
}

.phone-number {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: #4f5861;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.floating-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 20;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 8px;
  color: var(--white);
  font-weight: 800;
  background: var(--orange);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 860px) {
  .site-header {
    min-height: 68px;
  }

  .main-nav {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero-image {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hero-shade {
    display: none;
  }

  .hero-content {
    position: relative;
    width: auto;
    margin: 0;
    padding: 30px 18px 40px;
  }

  .trust-strip,
  .service-grid,
  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .contact-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .header-call {
    display: none;
  }

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

  .trust-strip,
  .service-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip span:last-child {
    border-bottom: 0;
  }

  .service-card,
  .work-card {
    min-height: 240px;
  }

  .floating-call {
    display: inline-flex;
  }
}
