:root {
  --red: #ed1c24;
  --red-dark: #a21c26;
  --ink: #101010;
  --muted: #595959;
  --line: #e6e2df;
  --paper: #ffffff;
  --warm: #f6f4f1;
  --max: 1180px;
  --shadow: 0 18px 50px rgba(16, 16, 16, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(170px, 280px) 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 86px;
  padding: 14px clamp(18px, 4vw, 54px) 22px;
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background:
    linear-gradient(90deg, transparent 0 calc(50% + 14px), #fff calc(50% + 14px) calc(50% + 168px), transparent calc(50% + 168px) calc(50% + 287px), #fff calc(50% + 287px) calc(50% + 441px), transparent calc(50% + 441px)),
    var(--red-dark);
  box-shadow: 0 2px 10px rgba(16, 16, 16, 0.18);
}

.brand img {
  width: auto;
  height: 64px;
  min-width: 0;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(14px, 2.4vw, 32px);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a,
.header-phone,
.button,
.mobile-call {
  text-decoration: none;
}

.main-nav a {
  padding: 10px 0;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 2px solid var(--red);
  color: var(--red);
  font-size: 1rem;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid var(--red);
  background: #fff;
  color: var(--red);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 3px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
  background: #c9c9c9;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/hero-pict.webp");
  background-position: 53% 58%;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.78) 0%, rgba(16, 16, 16, 0.53) 36%, rgba(16, 16, 16, 0.08) 70%),
    linear-gradient(180deg, rgba(16, 16, 16, 0.10), rgba(16, 16, 16, 0.05) 50%, rgba(16, 16, 16, 0.28));
}

.hero::after {
  content: none;
}

.hero-content {
  width: min(680px, calc(100vw - 36px));
  margin-left: clamp(18px, 6vw, 84px);
  padding: 32px 0 104px;
  color: #fff;
}

.hero-logo {
  width: min(650px, 100%);
  height: auto;
  margin: 0 0 56px;
  opacity: 0.5;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fff;
}

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

h1 {
  max-width: 610px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 6.2vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.hero-lead {
  max-width: 590px;
  margin-bottom: 28px;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 2px solid #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.button-primary {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.button-secondary {
  color: #fff;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 650px;
  margin: 0;
  background: rgba(255, 255, 255, 0.22);
}

.hero-facts div {
  min-height: 96px;
  padding: 16px;
  background: rgba(16, 16, 16, 0.36);
}

.hero-facts dt {
  font-size: 1.35rem;
  font-weight: 900;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.section,
.section-band,
.red-section,
.contact-section {
  position: relative;
  padding: clamp(64px, 9vw, 112px) clamp(18px, 4vw, 54px);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.intro {
  padding-top: clamp(38px, 6vw, 66px);
  padding-bottom: clamp(38px, 6vw, 66px);
  background: var(--ink);
  color: #fff;
}

.intro h2 {
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.intro p {
  color: rgba(255, 255, 255, 0.80);
  font-size: 1.1rem;
}

.intro-grid,
.split,
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(140px, 0.42fr) minmax(0, 1fr) minmax(340px, 1.1fr);
  gap: clamp(22px, 3.4vw, 44px);
  align-items: start;
}

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

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

.service-card {
  min-height: 188px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--red);
  border-radius: 8px;
  background: #fff;
}

.service-card p,
.process-list p,
.contact-section p {
  color: var(--muted);
}

.red-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--red-dark);
}

.red-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 154px, rgba(255, 255, 255, 0.3) 154px 308px, transparent 308px 427px, rgba(255, 255, 255, 0.3) 427px 581px, transparent 581px);
}

.stripe-mark {
  display: none;
}

.red-copy,
.why-list {
  position: relative;
  z-index: 1;
}

.red-section .section-kicker {
  color: #fff;
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-list article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.why-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: none;
}

.process-list li {
  min-height: 210px;
  padding: 24px;
  border-left: 6px solid var(--red);
  background: var(--warm);
}

.process-list span {
  display: block;
  margin-bottom: 24px;
  color: var(--red);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
}

.photo-break {
  background: var(--ink);
}

.photo-break img {
  width: 100%;
  height: clamp(340px, 52vw, 720px);
  object-fit: cover;
  object-position: center;
}

.references-section {
  background: #fff;
}

.reference-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 16px;
  align-items: stretch;
}

.reference-card {
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-top: 6px solid var(--red);
  border-radius: 8px;
  background: var(--warm);
}

.reference-card blockquote {
  margin: 0;
}

.reference-card p {
  color: var(--muted);
}

.reference-card p:last-child {
  margin-bottom: 0;
}

.reference-card footer {
  display: grid;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.reference-card strong {
  font-size: 1.08rem;
}

.reference-card span {
  color: var(--muted);
}

.light-section {
  background: var(--warm);
}

.client-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.client-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 800;
}

.contact-section {
  color: #fff;
  background: var(--ink);
}

.contact-section .section-kicker {
  color: var(--red);
}

.contact-section p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
}

.contact-map {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
  background: var(--red-dark);
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-box {
  display: grid;
  gap: 14px;
  width: 90%;
  justify-self: end;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-style: normal;
}

.contact-box strong {
  font-size: 1.2rem;
}

.contact-box a {
  color: #fff;
  font-size: clamp(1.26rem, 2.7vw, 2.16rem);
  font-weight: 900;
  line-height: 1.05;
  text-decoration-color: var(--red);
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
}

.contact-box a[href^="mailto:"] {
  font-size: clamp(0.92rem, 1.98vw, 1.58rem);
}

.contact-box .map-link {
  margin-top: 1.35em;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  text-decoration-thickness: 2px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(18px, 4vw, 54px);
  color: #fff;
  background: var(--red-dark);
  font-weight: 800;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: none;
}

.site-footer .footer-map {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.mobile-call {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 30px rgba(16, 16, 16, 0.25);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 14px 16px;
    border-bottom: 1px solid rgba(16, 16, 16, 0.10);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 38px rgba(16, 16, 16, 0.14);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .main-nav a {
    min-height: 46px;
    padding: 13px 0;
    border-top: 1px solid rgba(16, 16, 16, 0.08);
  }

  body.menu-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero {
    min-height: 820px;
    align-items: end;
  }

  .hero-media {
    background-position: 66% 42%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(16, 16, 16, 0.08) 0%, rgba(16, 16, 16, 0.48) 45%, rgba(16, 16, 16, 0.90) 100%);
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 260px;
    padding-bottom: 92px;
  }

  .intro-grid,
  .split,
  .contact-grid,
  .why-grid,
  .service-grid,
  .reference-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .contact-map {
    width: min(520px, 100%);
  }

  .contact-box {
    width: min(520px, 100%);
    justify-self: start;
  }

  .stripe-mark {
    left: auto;
    right: 22px;
    width: 74px;
  }
}

@media (max-width: 680px) {
  .red-section::before {
    content: none;
  }

  .site-header {
    min-height: 70px;
    padding: 10px 14px 18px;
  }

  .site-header::after {
    height: 5px;
    background:
      linear-gradient(90deg, transparent 0 26.5%, #fff 26.5% 53%, transparent 53% 73.5%, #fff 73.5% 100%),
      var(--red-dark);
  }

  .brand img {
    width: auto;
    height: 48px;
    min-width: 0;
  }

  .hero-logo {
    width: min(362px, 100%);
    margin-bottom: 32px;
    transform: none;
  }

  .header-phone {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 900px;
    align-items: start;
  }

  .hero-media {
    background-size: clamp(605px, 186vw, 1123px) auto;
    background-position: 74% 9%;
    background-repeat: no-repeat;
  }

  .hero-content {
    width: calc(100vw - 28px);
    padding-top: 32px;
    padding-bottom: 88px;
  }

  .hero .eyebrow {
    margin-top: 244px;
  }

  .hero::after {
    bottom: 20px;
    height: 18px;
  }

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

  .button {
    width: 100%;
  }

  .service-card,
  .reference-card,
  .process-list li {
    min-height: auto;
  }

  .photo-break img {
    height: 360px;
    object-position: 58% center;
  }

  .section,
  .section-band,
  .red-section,
  .contact-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .mobile-call {
    display: none;
  }

  body.has-scrolled .mobile-call {
    display: inline-flex;
  }

  .site-footer {
    padding-bottom: 84px;
  }
}
