:root {
  --ink: #182027;
  --muted: #5d6872;
  --paper: #ffffff;
  --soft: #f4f7f8;
  --line: #d9e1e6;
  --brand: #b5232b;
  --brand-dark: #86191f;
  --cool: #2c6f91;
  --cool-soft: #e7f3f8;
  --gold: #c58b2c;
  --shadow: 0 18px 45px rgba(24, 32, 39, 0.12);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--brand);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(12px);
}

.top-bar {
  background: var(--ink);
  color: #fff;
  font-size: 0.92rem;
}

.top-bar__inner,
.nav-wrap,
.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.top-bar__inner {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand img {
  width: 214px;
  height: auto;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  content: "";
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--brand);
  background: #fff1f2;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.1rem;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: var(--brand);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(181, 35, 43, 0.24);
}

.button:hover,
.button:focus-visible {
  background: var(--brand-dark);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: var(--brand);
  background: #fff7f7;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(560px, 58vw, 760px);
  color: #fff;
  background: #252525;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: 0 0 3.25rem;
}

.hero__content {
  max-width: 670px;
  padding: 1.35rem;
  border-radius: var(--radius);
  background: rgba(24, 32, 39, 0.64);
  backdrop-filter: blur(4px);
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
}

.hero__banner {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 5vw, 4.85rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

.hero p:not(.eyebrow) {
  margin-top: 1.1rem;
  max-width: 640px;
  color: #edf3f5;
  font-size: 1.15rem;
}

.hero__actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.65rem;
}

.trust-strip {
  background: var(--ink);
  color: #fff;
}

.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0;
  background: rgba(255, 255, 255, 0.16);
}

.trust-item {
  min-height: 118px;
  padding: 1.25rem;
  background: var(--ink);
}

.trust-item strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #fff;
  font-size: 1.55rem;
}

.trust-item span {
  color: #dce6eb;
}

.section {
  padding: 5rem 0;
}

.section.alt {
  background: var(--soft);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-head p {
  max-width: 620px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(24, 32, 39, 0.06);
  overflow: hidden;
}

.card__body {
  padding: 1.35rem;
}

.card p {
  margin-top: 0.65rem;
  color: var(--muted);
}

.service-card {
  position: relative;
  padding-top: 0.4rem;
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--brand), var(--cool));
}

.feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.4rem;
  align-items: center;
}

.feature img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature p {
  margin-top: 1rem;
  color: var(--muted);
}

.check-list,
.plain-list {
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  margin: 0.55rem 0;
  padding-left: 1.75rem;
  position: relative;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.42rem;
  color: var(--cool);
  content: "";
  width: 0.75rem;
  height: 0.38rem;
  border-bottom: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: rotate(-45deg);
}

.plain-list li::before {
  position: absolute;
  left: 0;
  color: var(--brand);
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: currentColor;
}

.brand-band {
  background: var(--ink);
  color: #fff;
}

.brand-band .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.brand-band p {
  color: #dce6eb;
}

.brand-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-end;
}

.brand-pills span {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.page-hero {
  padding: 5rem 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 24, 31, 0.92), rgba(16, 24, 31, 0.68)),
    url("../images/hero-storefront.png") center / cover no-repeat;
}

.page-hero p {
  margin-top: 1rem;
  max-width: 760px;
  font-size: 1.1rem;
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.info-panel {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.info-panel + .info-panel {
  margin-top: 1rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.testimonial blockquote {
  margin: 0.9rem 0 1rem;
  color: var(--ink);
  font-size: 1.06rem;
}

.testimonial footer {
  margin-top: auto;
  color: var(--muted);
  font-weight: 700;
}

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

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.project-card strong {
  display: block;
  margin-bottom: 0.2rem;
}

.cta {
  padding: 3rem 0;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--ink));
}

.cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta p {
  margin-top: 0.5rem;
  color: #f3dfe1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.contact-card a {
  color: var(--brand);
  font-weight: 800;
}

form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 145px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(44, 111, 145, 0.22);
  border-color: var(--cool);
}

.field-error {
  min-height: 1.2rem;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-status {
  min-height: 1.4rem;
  color: var(--cool);
  font-weight: 800;
}

.map {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-footer {
  color: #dce6eb;
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
  padding: 3rem 0;
}

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

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
  font-size: 1.1rem;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.footer-bottom {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #b9c8d0;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .top-bar__inner,
  .section-head,
  .cta .container,
  .brand-band .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 100% 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 0.85rem;
  }

  .hero {
    min-height: 650px;
  }

  .trust-strip .container,
  .grid.three,
  .grid.two,
  .feature,
  .split-panel,
  .contact-grid,
  .gallery-grid,
  .footer-main,
  .brand-band .container {
    grid-template-columns: 1fr;
  }

  .brand-pills {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .top-bar__inner {
    gap: 0.35rem;
  }

  .brand img {
    width: 176px;
  }

  .hero .container,
  .section,
  .page-hero {
    padding-block: 3.25rem;
  }

  .trust-item {
    min-height: auto;
  }

  .card__body,
  .info-panel {
    padding: 1.1rem;
  }
}
