:root {
  --bg: #f4f4f3;
  --surface: #ffffff;
  --surface-soft: #eef4ff;
  --text: #232429;
  --muted: #5b616d;
  --line: #d9dde3;
  --brand-red: #d91f26;
  --brand-blue: #89a9d8;
  --brand-dark: #3f4550;
  --shadow: 0 18px 45px rgba(34, 41, 51, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main section[id],
main .hero[id] {
  scroll-margin-top: 9rem;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

p,
ul {
  margin-top: 0;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  color: #000;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  z-index: 9999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(244, 244, 243, 0.9);
  border-bottom: 1px solid rgba(63, 69, 80, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand img {
  width: min(260px, 48vw);
  height: auto;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.main-nav a {
  color: var(--muted);
  font-weight: 650;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--brand-red);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.25rem 0 4rem;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 1.5rem;
  align-items: center;
}

.hero-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.3px);
}

.hero-shape-blue {
  width: 58rem;
  height: 32rem;
  right: -12rem;
  top: -12rem;
  background: rgba(137, 169, 216, 0.88);
}

.hero-shape-red {
  width: 48rem;
  height: 22rem;
  right: -8rem;
  bottom: -14rem;
  background: rgba(217, 31, 38, 0.92);
}

.hero-copy,
.hero-card,
.card,
.quality-panel,
.contact-box,
.gallery-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(63, 69, 80, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(1.6rem, 3vw, 3rem);
}

.hero-card {
  padding: 1.75rem;
}

.eyebrow {
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-red);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  max-width: 12ch;
}

h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.lead,
.section-heading p,
.hero-card p,
.card p,
.contact-box p {
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.5rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

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

.button-secondary {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(63, 69, 80, 0.16);
  color: var(--brand-dark);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #b81a20;
  color: #fff;
  box-shadow: 0 12px 28px rgba(217, 31, 38, 0.22);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(137, 169, 216, 0.16);
  border-color: rgba(63, 69, 80, 0.2);
  color: var(--brand-dark);
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-pills li {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(137, 169, 216, 0.16);
  color: var(--brand-dark);
  font-weight: 700;
}

.hero-card h2 {
  font-size: 1.5rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0;
}

.contact-person {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(63, 69, 80, 0.1);
}

.contact-person:last-of-type {
  padding-bottom: 0;
}

.contact-name {
  margin-bottom: 0.1rem;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--brand-dark);
}

.contact-list a,
.contact-box a {
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-list a:hover,
.contact-box a:not(.button):hover,
.footer-links a:hover {
  color: var(--brand-red);
}

.contact-box .button:hover,
.contact-box .button:focus-visible,
.hero-actions .button:hover,
.hero-actions .button:focus-visible {
  text-decoration: none;
}

.mini-note {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.section {
  padding: 4.75rem 0;
}

.section-light {
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.95));
}

.section-accent {
  background:
    radial-gradient(circle at top right, rgba(137,169,216,0.32), transparent 28%),
    radial-gradient(circle at bottom left, rgba(217,31,38,0.18), transparent 24%),
    var(--bg);
}

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

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

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

.card {
  padding: 1.6rem;
}

.card-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.65rem;
  background: rgba(217, 31, 38, 0.1);
  border-radius: 999px;
  color: var(--brand-red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card ul,
.quality-list {
  padding-left: 1.1rem;
  margin-bottom: 0;
  color: var(--muted);
}

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

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 0.85rem 1rem;
  font-weight: 700;
}

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

.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 1.5rem;
  align-items: start;
}

.quality-panel,
.contact-box {
  padding: 1.6rem;
}

.contact-box > p {
  margin-top: 1.1rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin: 1.3rem 0 1rem;
}

.badges img {
  max-height: 76px;
  width: auto;
}

.site-footer {
  padding: 1.4rem 0 2.4rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid rgba(63,69,80,0.12);
  padding-top: 1.2rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1rem;
  margin: 0;
}

@media (max-width: 960px) {
  .hero-grid,
  .cards-3,
  .gallery,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 0.75rem 1rem;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 4rem;
  }

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

  .hero-copy,
  .hero-card,
  .card,
  .quality-panel,
  .contact-box {
    padding: 1.2rem;
    border-radius: 22px;
  }

  .section {
    padding: 3.7rem 0;
  }

  .gallery-item img {
    min-height: 220px;
  }
}
