:root {
  --ink: #111214;
  --charcoal: #1b1d20;
  --stone: #f2eee7;
  --concrete: #d8d2c8;
  --muted: #6f6860;
  --line: rgba(17, 18, 20, 0.14);
  --blue: #2a6f9b;
  --blue-dark: #103a58;
  --copper: #c47a36;
  --white: #ffffff;
  --shadow: 0 26px 70px rgba(10, 12, 16, 0.22);
}

* {
  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;
  background: var(--stone);
  color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(1180px, calc(100% - 34px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand small {
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 800;
  color: rgba(17, 18, 20, 0.78);
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-call {
  padding: 16px 20px;
  color: white !important;
  background: var(--blue-dark);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--charcoal);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 3px auto;
  background: white;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  padding: 160px max(5vw, 24px) 80px;
  color: white;
  overflow: hidden;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 9, 11, 0.9) 0%, rgba(7, 9, 11, 0.74) 43%, rgba(7, 9, 11, 0.32) 100%),
    linear-gradient(0deg, rgba(7, 9, 11, 0.7), rgba(7, 9, 11, 0.1));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1040px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 950;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

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

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: white;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.hero-pills span {
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.intro-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px max(5vw, 24px);
  background: var(--blue-dark);
  color: white;
}

.intro-strip div {
  display: grid;
  gap: 6px;
}

.intro-strip strong {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.intro-strip span,
.intro-strip a {
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 105px max(5vw, 24px);
}

.section-heading {
  width: min(1180px, 100%);
  margin: 0 auto 44px;
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 50px;
  align-items: end;
}

.section-heading.compact {
  display: block;
}

.section-heading h2,
.feature-copy h2,
.contact-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4.5vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.section-heading p:not(.eyebrow),
.feature-copy p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.service-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-grid article {
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 48px rgba(40, 32, 24, 0.08);
}

.service-grid span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--charcoal);
  color: white;
  font-size: 0.82rem;
  font-weight: 950;
}

.service-grid h3 {
  margin: auto 0 14px;
  font-size: 1.35rem;
}

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

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: 100px max(5vw, 24px);
  background: #fbf8f2;
}

.feature-image {
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
}

.feature-copy {
  max-width: 620px;
}

.feature-copy p {
  margin-top: 24px;
}

.feature-copy ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.feature-copy li {
  position: relative;
  padding-left: 28px;
  color: var(--charcoal);
  font-weight: 850;
}

.feature-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
}

.work {
  background: var(--charcoal);
  color: white;
}

.work .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.work-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
}

.work-grid article {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 30px;
  background: #111;
  transform: translateY(0) scale(1);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.work-grid article:hover {
  transform: translateY(-9px) scale(1.02);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  z-index: 2;
}

.work-grid article.large {
  grid-row: span 2;
  min-height: 740px;
}

.work-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.work-grid article:hover img {
  transform: scale(1.05);
}

.work-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 58%);
}

.work-grid article div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
}

.work-grid span {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.work-grid h3 {
  margin: 8px 0 0;
  font-size: 1.5rem;
}

.reviews {
  background: var(--stone);
}

.review-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  columns: 3 280px;
  column-gap: 18px;
}

.review-grid article {
  break-inside: avoid;
  margin: 0 0 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: 0 18px 48px rgba(40, 32, 24, 0.08);
}

.review-grid p {
  margin: 0 0 20px;
  color: #3a3530;
  line-height: 1.7;
}

.review-grid strong {
  color: var(--blue-dark);
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  padding: 100px max(5vw, 24px);
  background:
    linear-gradient(rgba(16, 58, 88, 0.88), rgba(16, 58, 88, 0.88)),
    url("/assets/slab-alt.webp") center/cover;
  color: white;
}

.contact-card,
.contact-form {
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.contact-card {
  padding: 42px;
}

.contact-card p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-links a {
  display: inline-flex;
  width: fit-content;
  padding: 14px 18px;
  border-radius: 999px;
  background: white;
  color: var(--blue-dark);
  font-weight: 950;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  min-height: 60px;
  border: 0;
  border-radius: 999px;
  background: var(--copper);
  color: white;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px max(5vw, 24px);
  background: #0b0d0f;
  color: white;
}

.footer img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.footer p {
  margin: 0;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer div {
  display: flex;
  gap: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.floating-call {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 1.4rem;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
}

@media (max-width: 980px) {
  .site-header {
    border-radius: 28px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 84px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: white;
    border-radius: 26px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 16px;
    border-radius: 18px;
  }

  .nav-call {
    text-align: center;
  }

  .hero {
    min-height: 690px;
    padding-top: 132px;
  }

  .intro-strip,
  .section-heading,
  .feature,
  .contact {
    grid-template-columns: 1fr;
  }

  .intro-strip {
    align-items: flex-start;
  }

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

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

  .work-grid article.large {
    grid-column: 1 / -1;
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .hero {
    min-height: 720px;
    padding: 124px 18px 52px;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .hero-pills {
    gap: 8px;
  }

  .hero-pills span {
    font-size: 0.78rem;
  }

  .intro-strip,
  .section,
  .feature,
  .contact,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .section-heading {
    margin-bottom: 30px;
    gap: 18px;
  }

  .section-heading h2,
  .feature-copy h2,
  .contact-card h2 {
    font-size: clamp(2.1rem, 12vw, 3.35rem);
  }

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

  .service-grid article {
    min-height: 240px;
  }

  .feature-image img {
    height: 430px;
  }

  .work-grid article,
  .work-grid article.large {
    min-height: 360px;
  }

  .contact-card,
  .contact-form {
    padding: 22px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }
}
