:root {
  --red: #ec1c24;
  --deep-red: #b70f17;
  --yellow: #ffd213;
  --ink: #22242a;
  --muted: #626977;
  --line: #e7e9ee;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --blue: #eaf5ff;
  --shadow: 0 18px 45px rgba(20, 24, 32, 0.16);
}

* {
  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.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: #fff;
  background: rgba(34, 36, 42, 0.2);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(183, 15, 23, 0.97);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(232px, 44vw);
  height: 48px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--red);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.92;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--yellow);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.header-cta {
  color: var(--deep-red);
  background: var(--yellow);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

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

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(26, 28, 34, 0.88), rgba(26, 28, 34, 0.48) 54%, rgba(26, 28, 34, 0.18)),
    linear-gradient(0deg, rgba(183, 15, 23, 0.68), rgba(183, 15, 23, 0.02) 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 36px));
  margin: 0 clamp(18px, 7vw, 96px) 74px;
}

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

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

h1 {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(4rem, 13vw, 8.8rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(1.08rem, 2.4vw, 1.45rem);
}

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

.btn-primary {
  color: var(--deep-red);
  background: var(--yellow);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.contact .btn-secondary {
  color: var(--deep-red);
  border-color: rgba(183, 15, 23, 0.22);
  background: #fff;
}

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

.trust-strip div {
  padding: 24px clamp(18px, 4vw, 54px);
  background: var(--paper);
}

.trust-strip strong {
  display: block;
  color: var(--deep-red);
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  line-height: 1;
}

.trust-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

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

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

.about-copy {
  max-width: 670px;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-photo {
  margin: 0;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-photo figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.care-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  color: #fff;
  background: var(--deep-red);
}

.care-band p:not(.eyebrow) {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.services {
  background: var(--soft);
}

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

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

.service-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--deep-red);
  background: var(--blue);
  font-weight: 900;
}

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

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  background: linear-gradient(#fff 0 50%, var(--red) 50% 100%);
}

.timeline-item {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.timeline-item time {
  display: block;
  margin-bottom: 28px;
  color: var(--deep-red);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}

.timeline-item p {
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: minmax(220px, 1fr) minmax(180px, 0.65fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #ddd;
  cursor: pointer;
}

.gallery-item.wide {
  grid-row: span 2;
}

.gallery-item img,
.gallery-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-logo {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 28px;
  border-radius: 8px;
  background: var(--red);
}

.gallery-logo img {
  object-fit: contain;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: var(--soft);
}

.contact-copy p:not(.eyebrow) {
  max-width: 710px;
  color: var(--muted);
  font-size: 1.1rem;
}

.contact-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(20, 24, 32, 0.08);
}

.contact-panel dl,
.contact-panel dd {
  margin: 0;
}

.contact-panel div + div {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-panel dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel dd {
  color: var(--deep-red);
  font-size: 1.05rem;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 32px;
  padding: 40px clamp(18px, 5vw, 72px);
  color: #fff;
  background: #22242a;
}

.site-footer img {
  width: min(290px, 100%);
  margin-bottom: 14px;
  border-radius: 6px;
  background: var(--red);
}

.site-footer p {
  margin-bottom: 8px;
}

.footer-meta {
  justify-self: end;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  text-align: right;
}

.modal {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 10, 14, 0.86);
}

.modal[hidden] {
  display: none;
}

.modal img {
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.modal-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

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

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-cta {
    display: flex;
  }

  .site-header.is-open {
    grid-template-columns: 1fr auto;
  }

  .site-header.is-open .site-nav {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 12px;
  }

  .site-header.is-open .header-cta {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .about-grid,
  .care-band,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .footer-meta {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand {
    width: min(210px, 58vw);
    height: 46px;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(26, 28, 34, 0.9), rgba(26, 28, 34, 0.18)),
      linear-gradient(90deg, rgba(183, 15, 23, 0.72), rgba(183, 15, 23, 0.05));
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 0 14px 44px;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5.4rem);
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .gallery-grid {
    grid-template-rows: auto;
  }

  .gallery-item.wide {
    grid-row: auto;
  }

  .section {
    padding: 54px 16px;
  }

  .service-card,
  .timeline-item {
    min-height: auto;
  }
}
