:root {
  color-scheme: light;
  --black: #111111;
  --ink: #1b1b1b;
  --gray-900: #242424;
  --gray-700: #515151;
  --gray-200: #e7e7e4;
  --gray-100: #f5f5f2;
  --white: #ffffff;
  --red: #d71927;
  --red-dark: #a9111d;
  --shadow: 0 24px 60px rgb(0 0 0 / 18%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--gray-100);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

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

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  min-height: 92vh;
  background:
    radial-gradient(circle at 84% 12%, rgb(215 25 39 / 32%), transparent 30%),
    radial-gradient(circle at 8% 86%, rgb(255 255 255 / 10%), transparent 28%),
    linear-gradient(135deg, #070707 0%, #191919 44%, #2b1114 74%, #050505 100%);
  color: var(--white);
}

.nav {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand span {
  color: var(--white);
  font-size: 1.55rem;
}

.brand small {
  color: #cfcfc9;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #eeeeea;
  font-size: 0.95rem;
  font-weight: 800;
}

.nav-button,
.button {
  border-radius: 8px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.nav-button {
  background: var(--white);
  color: var(--black);
  padding: 12px 16px;
}

.nav-button:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: center;
  padding: 32px 0 72px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #d7d7d2;
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow.red {
  color: var(--red);
}

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

h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(3rem, 6.5vw, 5.95rem);
  font-weight: 950;
  line-height: 0.92;
}

h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 950;
  line-height: 1;
}

h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 950;
}

.hero-text,
.split p,
.location p {
  color: #e2e2dc;
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 650px;
  margin: 26px 0 0;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-weight: 950;
}

.button.primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 16px 34px rgb(215 25 39 / 28%);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  border-color: rgb(255 255 255 / 24%);
  color: var(--white);
}

.button.secondary:hover {
  border-color: var(--red);
  color: var(--white);
}

.hero-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 8px;
  background: #222;
  box-shadow: var(--shadow);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgb(0 0 0 / 38%), transparent 44%),
    linear-gradient(180deg, transparent 42%, rgb(0 0 0 / 68%));
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(1.05) contrast(1.04);
}

.hero-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  border-radius: 8px;
  background: rgb(255 255 255 / 94%);
  color: var(--black);
  padding: 18px 20px;
  font-size: 1.05rem;
  font-weight: 950;
}

.trust-strip {
  background: var(--red);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.trust-grid strong {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 22px;
  background: rgb(0 0 0 / 12%);
  font-size: 1rem;
  line-height: 1.35;
}

.section {
  padding: 88px 0;
}

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

.section-heading.compact {
  margin-bottom: 28px;
}

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

.service-grid article {
  min-height: 245px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 18px 42px rgb(0 0 0 / 6%);
}

.service-grid span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--red);
  font-weight: 950;
}

.service-grid p,
.gallery-card p {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.65;
}

.brand-band,
.location {
  background: var(--black);
  color: var(--white);
  padding: 82px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
}

.split p {
  max-width: 660px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chips span {
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 8px;
  background: rgb(255 255 255 / 8%);
  padding: 12px 14px;
  font-weight: 900;
}

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

.gallery-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--black);
  box-shadow: 0 24px 50px rgb(0 0 0 / 12%);
}

.gallery-card {
  grid-column: span 2;
}

.gallery-card.wide {
  grid-column: span 3;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04) brightness(0.96);
  transform: scale(1.006);
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(120deg, rgb(215 25 39 / 12%), transparent 42%),
    linear-gradient(180deg, transparent 44%, rgb(0 0 0 / 84%));
}

.gallery-card div {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: var(--white);
}

.gallery-card p {
  margin: 7px 0 0;
  color: #e7e7e1;
}

.location {
  background:
    linear-gradient(90deg, rgb(215 25 39 / 18%), transparent 36%),
    var(--black);
}

.contact-card {
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 8px;
  background: rgb(255 255 255 / 8%);
  padding: 28px;
}

.contact-card strong,
.contact-card span {
  display: block;
}

.contact-card strong {
  font-size: 2rem;
  font-weight: 950;
}

.contact-card span {
  margin: 10px 0 24px;
  color: #d9d9d3;
  font-size: 1.1rem;
}

.hours {
  margin: 0 0 24px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 8px;
  background: rgb(0 0 0 / 18%);
  padding: 18px;
}

.hours p {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.3;
}

.hours dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.hours dt {
  color: #efefea;
  font-weight: 900;
}

.hours dd {
  margin: 4px 0 0;
  color: #cfcfc9;
  line-height: 1.45;
}

.contact-card .button {
  width: 100%;
  margin-top: 12px;
}

footer {
  background: #080808;
  color: #bdbdb6;
}

.footer-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-weight: 800;
}

@media (max-width: 920px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 400px;
  }

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

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

  .gallery-card,
  .gallery-card.wide {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .nav-actions {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-button {
    width: 100%;
    text-align: center;
  }

  h1 {
    font-size: 3.5rem;
  }

  .hero-grid {
    padding-top: 20px;
  }

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

  .section,
  .brand-band,
  .location {
    padding: 62px 0;
  }

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

  .gallery-card.wide {
    grid-column: span 1;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}
