:root {
  --red: #b91c1c;
  --red-dark: #8f1515;
  --red-soft: #fff1f1;
  --ink: #151515;
  --muted: #5d646f;
  --line: #e6e8ec;
  --panel: #ffffff;
  --surface: #f7f7f8;
  --shadow: 0 18px 55px rgba(24, 24, 27, 0.09);
  --radius: 8px;
  --header-height: 82px;
  --container: 1540px;
  --gutter: clamp(20px, 4vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img,
svg,
iframe {
  display: block;
}

img {
  max-width: 100%;
}

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

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

p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  background: var(--red);
  color: #fff;
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -80px;
  z-index: 100;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  min-height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.nav-shell {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--container);
  min-height: var(--header-height);
  padding: 0 var(--gutter);
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-size: 1.05rem;
  font-weight: 800;
  gap: 12px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand img {
  height: 44px;
  width: 50px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 8px;
}

.nav-link {
  border-radius: var(--radius);
  color: #232323;
  font-size: 0.96rem;
  font-weight: 700;
  padding: 11px 14px;
}

.nav-link:hover,
.nav-link.is-active {
  background: var(--red-soft);
  color: var(--red);
}

.button {
  align-items: center;
  border: 1px solid var(--red);
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

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

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

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

.button-secondary:hover {
  background: var(--red-soft);
  color: var(--red-dark);
}

.menu-toggle {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  display: none;
  height: 46px;
  justify-content: center;
  padding: 0;
  width: 46px;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  background: currentColor;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  transition: transform 160ms ease, opacity 160ms ease;
  width: 20px;
}

.menu-toggle {
  position: relative;
}

.menu-toggle::before {
  transform: translateY(-7px);
}

.menu-toggle::after {
  transform: translateY(7px);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: rotate(-45deg);
}

.page-main {
  min-height: calc(100svh - var(--header-height));
}

.container {
  margin: 0 auto;
  max-width: var(--container);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.hero {
  display: grid;
  gap: clamp(32px, 4vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  min-height: calc(100svh - var(--header-height));
  padding-bottom: clamp(48px, 6vw, 88px);
  padding-top: clamp(54px, 7vw, 98px);
}

.hero-copy {
  align-self: center;
  max-width: 820px;
}

.hero h1,
.page-title {
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.hero h1 .accent {
  color: var(--red);
  display: block;
}

.hero-text {
  color: #222;
  display: grid;
  font-size: clamp(1.12rem, 1.6vw, 1.42rem);
  gap: 22px;
  line-height: 1.62;
  margin-top: 34px;
  max-width: 790px;
}

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

.contact-pill {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  min-height: 48px;
  padding: 11px 15px;
}

.contact-pill::before {
  background: var(--red);
  border-radius: 999px;
  content: "";
  height: 9px;
  width: 9px;
}

.hero-media {
  align-self: stretch;
  min-height: 560px;
  position: relative;
}

.hero-media::before {
  background: var(--red);
  content: "";
  inset: 24px -18px -18px 24px;
  position: absolute;
  z-index: 0;
}

.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}

.section {
  padding-bottom: clamp(64px, 8vw, 112px);
  padding-top: clamp(64px, 8vw, 112px);
}

.section-muted {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-heading h2,
.page-title {
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
}

.section-heading p {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 520px;
}

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

.service-card,
.vendor-card,
.info-panel,
.form-panel,
.empty-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 286px;
  padding: clamp(24px, 3vw, 34px);
}

.service-icon {
  align-items: center;
  background: var(--red-soft);
  border: 1px solid #ffd3d3;
  border-radius: var(--radius);
  color: var(--red);
  display: flex;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.service-icon svg {
  height: 31px;
  width: 31px;
}

.service-card h2,
.service-card h3,
.vendor-card h2,
.info-panel dt {
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.18;
}

.service-card p,
.vendor-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.page-hero {
  padding-bottom: 32px;
  padding-top: clamp(48px, 7vw, 82px);
}

.page-title {
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.vendor-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding-bottom: clamp(72px, 8vw, 112px);
}

.vendor-card {
  align-items: stretch;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  height: 268px;
  padding: 18px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.vendor-card:hover {
  border-color: #f4b3b3;
  box-shadow: 0 14px 30px rgba(185, 28, 28, 0.08);
  color: var(--ink);
  transform: translateY(-2px);
}

.vendor-logo {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex: 0 0 132px;
  height: 132px;
  justify-content: center;
  padding: 18px;
}

.vendor-logo img {
  height: 86px;
  object-fit: contain;
  width: 100%;
}

.vendor-card h2 {
  align-items: center;
  display: flex;
  height: 100px;
  justify-content: center;
  line-height: 1.1;
  padding-top: 16px;
  text-align: center;
}

.empty-panel {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 320px;
  padding: 48px;
  text-align: center;
}

.empty-panel h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.contact-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.75fr);
  padding-bottom: clamp(72px, 8vw, 112px);
}

.form-panel,
.info-panel {
  box-shadow: var(--shadow);
  padding: clamp(24px, 3vw, 38px);
}

.contact-form {
  display: grid;
  gap: 22px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 1rem;
  font-weight: 900;
}

.field input,
.field textarea {
  background: #fff;
  border: 1px solid #cfd3da;
  border-radius: var(--radius);
  color: var(--ink);
  min-height: 56px;
  padding: 13px 15px;
  width: 100%;
}

.field textarea {
  min-height: 226px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.13);
  outline: none;
}

.form-status {
  color: var(--muted);
  font-weight: 800;
  min-height: 28px;
}

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: 284px;
  margin-bottom: 28px;
  overflow: hidden;
}

.map-frame iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.info-panel dl {
  display: grid;
  gap: 20px;
}

.info-panel dt {
  color: var(--red);
  margin-bottom: 4px;
}

.info-panel dd {
  color: #252525;
  font-size: 1.08rem;
}

.info-panel span {
  display: block;
}

.site-footer {
  background: var(--red);
  color: #fff;
  padding: clamp(42px, 6vw, 76px) 0;
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(240px, 1.1fr) repeat(3, minmax(170px, 0.55fr));
}

.footer-brand {
  display: grid;
  gap: 16px;
  max-width: 360px;
}

.footer-brand img {
  filter: brightness(0) invert(1);
  height: 72px;
  width: 82px;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 900;
}

.footer-list {
  color: rgba(255, 255, 255, 0.82);
}

.footer-column h2 {
  font-size: 1rem;
  margin: 0 0 12px;
}

.footer-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list a:hover {
  color: #fff;
  text-decoration: underline;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  margin-top: 34px;
  padding-top: 22px;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 430px;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
    --gutter: 18px;
  }

  html {
    font-size: 17px;
  }

  .nav-shell {
    gap: 12px;
  }

  .brand span {
    max-width: 190px;
    white-space: normal;
  }

  .brand img {
    height: 38px;
    width: 43px;
  }

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

  .site-nav {
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 45px rgba(24, 24, 27, 0.1);
    display: none;
    gap: 6px;
    left: 0;
    padding: 12px var(--gutter) 18px;
    position: absolute;
    right: 0;
    top: var(--header-height);
  }

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

  .site-nav .button {
    width: 100%;
  }

  .nav-link {
    padding: 13px 4px;
  }

  .hero {
    gap: 28px;
    min-height: auto;
    padding-bottom: 58px;
    padding-top: 44px;
  }

  .hero h1,
  .page-title {
    font-size: clamp(2.65rem, 15vw, 4rem);
  }

  .hero-text {
    font-size: 1.08rem;
    gap: 18px;
    margin-top: 26px;
  }

  .hero-actions,
  .contact-links {
    display: grid;
  }

  .button,
  .contact-pill {
    width: 100%;
  }

  .hero-media {
    min-height: 310px;
  }

  .hero-media::before {
    inset: 14px -10px -10px 14px;
  }

  .section-heading {
    align-items: start;
    display: grid;
  }

  .services-grid,
  .vendor-grid {
    grid-template-columns: 1fr;
  }

  .vendor-card {
    min-height: 206px;
  }

  .form-panel,
  .info-panel {
    padding: 22px;
  }

  .map-frame {
    height: 250px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

.preview-banner {
  background-color: #f8f9fa;
  color: #333333;
  border-bottom: 1px solid #dee2e6;
  padding: 6px 12px;
  text-align: center;
  font-size: 0.85rem;
  width: 100%;
  box-sizing: border-box;
}
.preview-banner a {
  color: #0066cc;
  text-decoration: underline;
}
