:root {
  --red: #ef1717;
  --red-dark: #bd0f0f;
  --black: #0c0c0d;
  --charcoal: #171719;
  --gray: #6c6c72;
  --light: #f5f5f6;
  --white: #ffffff;
  --border: #dedee2;
  --shadow: 0 20px 60px rgba(0,0,0,.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 88px;
  padding: 10px 5vw;
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(10,10,11,.96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.brand {
  width: 112px;
  height: 68px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.brand img {
  width: 100%;
  transform: scale(1.13);
}

.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  color: var(--white);
  font-size: .92rem;
  font-weight: 700;
  transition: color .2s ease;
}

.main-nav a:hover {
  color: var(--red);
}

.header-call {
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  text-align: right;
}

.header-call span {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  font-family: "Inter", sans-serif;
  font-size: .67rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  padding: 8px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 100px 6vw 90px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 3rem;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.72) 47%, rgba(0,0,0,.3) 100%),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2200&q=85") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: var(--red);
}

.hero-content,
.hero-logo-card {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.split-content h2,
.gallery-section h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(4rem, 7vw, 7.2rem);
}

.hero h1 span {
  color: var(--red);
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 32px;
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
}

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

.btn {
  min-height: 54px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 30px rgba(239,23,23,.28);
}

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

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

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

.trust-row {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}

.trust-row div {
  padding-left: 16px;
  border-left: 3px solid var(--red);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.trust-row span {
  color: rgba(255,255,255,.65);
  font-size: .8rem;
}

.hero-logo-card {
  justify-self: end;
  width: min(550px, 43vw);
  border-radius: 50%;
  filter: drop-shadow(0 28px 45px rgba(0,0,0,.5));
}

.quick-bar {
  padding: 22px 6vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  color: var(--white);
  background: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
}

.quick-bar div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-icon {
  color: var(--red);
}

.section {
  padding: 100px 6vw;
}

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

.section-heading h2,
.split-content h2,
.gallery-section h2,
.contact-copy h2 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.section-heading > p:last-child {
  color: var(--gray);
  font-size: 1.05rem;
}

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

.service-card {
  min-height: 350px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.service-card.featured {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.service-number {
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.featured .service-number {
  color: var(--white);
}

.service-card h3 {
  margin: 42px 0 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.service-card p {
  margin: 0 0 24px;
  color: var(--gray);
}

.featured p {
  color: rgba(255,255,255,.8);
}

.service-card a {
  margin-top: auto;
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.split-section {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--light);
}

.split-image {
  min-height: 560px;
  background:
    linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.08)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1600&q=85") center/cover;
}

.split-content {
  padding: 90px 7vw;
  align-self: center;
}

.split-content > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--gray);
}

.check-list {
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 34px;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

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

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

.process-step {
  padding: 30px 0;
  border-top: 4px solid var(--black);
}

.process-step span {
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}

.process-step h3 {
  margin: 20px 0 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.7rem;
  text-transform: uppercase;
}

.process-step p {
  max-width: 360px;
  color: var(--gray);
}

.gallery-section {
  padding: 100px 6vw;
  color: var(--white);
  background: var(--charcoal);
}

.section-heading.light {
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 16px;
}

.gallery-item {
  min-height: 460px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.gallery-item span {
  padding: 12px 16px;
  color: var(--white);
  background: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-1 {
  background-image: linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.38)), url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1400&q=85");
}

.gallery-2 {
  background-image: linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.38)), url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1200&q=85");
}

.gallery-3 {
  background-image: linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.38)), url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1200&q=85");
}

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

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

blockquote {
  margin: 0;
  padding: 34px;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(0,0,0,.06);
}

.stars {
  color: var(--red);
  letter-spacing: .08em;
}

blockquote p {
  font-size: 1.08rem;
}

blockquote footer {
  color: var(--gray);
  font-size: .84rem;
  font-weight: 700;
}

.contact-section {
  padding: 100px 6vw;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(239,23,23,.2), transparent 30%),
    var(--black);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255,255,255,.68);
}

.phone-panel {
  margin: 32px 0;
  padding: 20px 24px;
  display: inline-flex;
  flex-direction: column;
  border-left: 5px solid var(--red);
  background: rgba(255,255,255,.06);
}

.phone-panel span {
  color: rgba(255,255,255,.6);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.phone-panel strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.contact-details {
  display: grid;
  gap: 18px;
}

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

.contact-details strong {
  color: var(--red);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-details span {
  color: rgba(255,255,255,.7);
}

.contact-form {
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  color: var(--black);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form label:nth-of-type(5) {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #fafafa;
  font: inherit;
  text-transform: none;
}

textarea {
  resize: vertical;
}

.form-submit,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: var(--gray);
  font-size: .76rem;
  text-align: center;
}

.site-footer {
  padding: 52px 6vw 24px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
  color: rgba(255,255,255,.72);
  background: #050505;
}

.footer-brand img {
  width: 125px;
  margin-bottom: 12px;
}

.footer-brand p {
  margin: 0;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-contact span,
.footer-contact a {
  display: block;
}

.footer-contact a {
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
}

.copyright {
  grid-column: 1 / -1;
  margin: 20px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .75rem;
}

.mobile-call {
  display: none;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 16px;
  }

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

  .hero-logo-card {
    display: none;
  }

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

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

  .gallery-item:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 58px;
  }

  .site-header {
    min-height: 74px;
  }

  .brand {
    width: 90px;
    height: 56px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    padding: 20px 6vw;
    display: none;
    flex-direction: column;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,.08);
  }

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

  .header-call {
    display: none;
  }

  .hero {
    min-height: 690px;
    padding: 86px 6vw 80px;
    background-position: 62% center;
  }

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

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

  .hero-actions {
    display: grid;
  }

  .quick-bar {
    grid-template-columns: 1fr 1fr;
    font-size: 1rem;
  }

  .section,
  .gallery-section,
  .contact-section {
    padding: 74px 6vw;
  }

  .service-grid,
  .process-grid,
  .review-grid,
  .contact-section,
  .split-section {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 290px;
  }

  .split-image {
    min-height: 420px;
  }

  .split-content {
    padding: 70px 6vw;
  }

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

  .gallery-item:first-child {
    grid-column: auto;
  }

  .gallery-item {
    min-height: 350px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .contact-form label:nth-of-type(5),
  .form-submit,
  .form-note {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 38px;
  }

  .copyright {
    grid-column: auto;
  }

  .mobile-call {
    position: fixed;
    z-index: 2000;
    left: 0;
    right: 0;
    bottom: 0;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--red);
    font-weight: 900;
    box-shadow: 0 -8px 25px rgba(0,0,0,.2);
  }
}
