:root {
  --ink: #161616;
  --muted: #5c5f66;
  --paper: #fff7f7;
  --surface: #ffffff;
  --line: rgba(22, 22, 22, 0.14);
  --red: #c91524;
  --red-dark: #8e0f1a;
  --red-soft: #ffe6e8;
  --shadow: 0 18px 45px rgba(22, 22, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: white;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.42));
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 30px);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a:hover {
  color: white;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
}

.hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.34) 54%, rgba(0, 0, 0, 0.1)),
    linear-gradient(to top, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.05) 48%);
}

.hero-copy {
  position: relative;
  width: min(780px, calc(100% - 36px));
  margin: 0 0 clamp(52px, 9vw, 96px) clamp(18px, 7vw, 92px);
}

.eyebrow {
  margin: 0 0 12px;
  color: #ff3b4d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  max-width: 100%;
}

h1 {
  max-width: 740px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.15;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
}

.hero-actions,
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.filter-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: var(--red);
}

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

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-band div {
  min-height: 150px;
  padding: clamp(22px, 4vw, 42px);
  background: var(--surface);
}

.stats-band strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.stats-band span,
.section-heading p,
.work-card p,
.service-list p,
.about-section p,
.contact-copy p {
  color: var(--muted);
  overflow-wrap: break-word;
}

.section,
.split-section,
.about-section,
.contact-section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 30px;
}

.section-heading.compact {
  max-width: 520px;
  margin-bottom: 0;
}

.filter-bar {
  margin-bottom: 28px;
}

.filter-button {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.filter-button.is-active,
.filter-button:hover {
  color: white;
  border-color: var(--red);
  background: var(--red);
}

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

.work-card {
  min-height: 420px;
  overflow: hidden;
  display: grid;
  align-content: end;
  position: relative;
  border-radius: 8px;
  isolation: isolate;
  background: #222;
  box-shadow: var(--shadow);
}

.work-card.wide {
  grid-column: span 2;
}

.work-card.tall {
  grid-row: span 2;
  min-height: 620px;
}

.work-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.08) 58%);
}

.work-card:hover img {
  transform: scale(1.035);
}

.work-card div {
  padding: 26px;
  color: white;
}

.work-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: #ff5060;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.work-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.work-card.is-hidden {
  display: none;
}

.split-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(32px, 7vw, 84px);
  align-items: start;
  background: var(--red-soft);
}

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

.service-list article {
  min-height: 238px;
  padding: 28px;
  border-left: 4px solid var(--red);
  background: var(--surface);
}

.service-list span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--red-dark);
  font-weight: 800;
}

.gallery-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 520px;
}

.gallery-band img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.about-section p,
.about-card p {
  font-size: 1.08rem;
}

.about-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.about-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 24%;
}

.about-card p {
  margin: 0;
  padding: 24px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
  gap: clamp(30px, 6vw, 72px);
  color: white;
  background: #171717;
}

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

.contact-links {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  color: white;
  font-weight: 800;
}

.contact-links a {
  width: fit-content;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 4px;
}

.inquiry-form {
  display: grid;
  gap: 14px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  padding: 14px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.inquiry-form select option {
  color: var(--ink);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: white;
  background: #0d0d0d;
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer div {
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .stats-band,
  .work-grid,
  .split-section,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .work-card.wide,
  .work-card.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 430px;
  }

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

@media (max-width: 680px) {
  .site-header {
    position: absolute;
    align-items: center;
  }

  .nav {
    display: none;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-copy {
    margin-right: 18px;
    width: calc(100% - 36px);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 13vw, 3.55rem);
    overflow-wrap: break-word;
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 100%;
  }

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

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