﻿:root {
  --color-primary: #c1121f;
  --color-primary-dark: #8f0f19;
  --color-ink: #15212f;
  --color-muted: #5f6c7b;
  --color-line: #e7ebef;
  --color-soft: #f7f9fb;
  --color-white: #ffffff;
  --color-accent: #0f766e;
  --shadow-soft: 0 18px 48px rgba(21, 33, 47, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

a:hover,
a:focus-visible {
  color: var(--color-primary);
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.narrow {
  max-width: 920px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 6px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(12px);
}

.topbar {
  color: var(--color-white);
  background: var(--color-ink);
  font-size: 0.88rem;
}

.topbar-inner {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  flex-wrap: wrap;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.2;
}

.brand small {
  color: var(--color-muted);
  font-size: 0.8rem;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--color-muted);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.nav-cta,
.btn-primary {
  color: var(--color-white);
  background: var(--color-primary);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
  color: var(--color-white);
  background: var(--color-primary-dark);
}

.btn-secondary {
  color: var(--color-ink);
  background: var(--color-white);
  border-color: var(--color-line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--color-primary);
  border-color: rgba(193, 18, 31, 0.28);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--color-ink);
}

.hero {
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 46px;
  align-items: center;
  min-height: 680px;
  padding-block: 64px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: 1.16rem;
}

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

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 720px;
  margin: 34px 0 0;
}

.trust-stats div {
  padding: 16px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(21, 33, 47, 0.06);
}

.trust-stats dt {
  color: var(--color-primary);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.1;
}

.trust-stats dd {
  margin: 6px 0 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.hero-media {
  position: relative;
  margin: 0;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 9 / 7;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-media figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  color: var(--color-white);
  background: rgba(21, 33, 47, 0.82);
  border-radius: 8px;
  font-size: 0.9rem;
}

.breadcrumb {
  padding-block: 20px;
  color: var(--color-muted);
  font-size: 0.94rem;
}

.breadcrumb ol {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 10px;
  color: #9aa5b1;
}

.section {
  padding-block: 82px;
}

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

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

.section-copy p,
.section-heading p,
.seo-content p {
  color: var(--color-muted);
}

.highlight-panel,
.contact-form,
.service-card,
.why-card,
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(21, 33, 47, 0.06);
}

.highlight-panel {
  padding: 28px;
}

.highlight-panel ul,
.footer-grid ul {
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.highlight-panel li {
  padding: 10px 0;
  border-top: 1px solid var(--color-line);
}

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

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

.service-card,
.why-card {
  padding: 24px;
}

.service-card p,
.why-card p,
.category-card p {
  margin: 0;
  color: var(--color-muted);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: var(--color-white);
  background: var(--color-accent);
  border-radius: 8px;
  font-weight: 900;
}

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

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

.category-card {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(21, 33, 47, 0.06);
}

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

.category-card div {
  padding: 20px;
}

.seo-content p {
  margin: 0 0 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  min-height: 58px;
  padding: 18px 52px 18px 18px;
  font-weight: 900;
  cursor: pointer;
  position: relative;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary);
  font-size: 1.4rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 18px 20px;
  color: var(--color-muted);
}

.contact-section {
  background: #fff;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--color-muted);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--color-ink);
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 8px;
}

.contact-form textarea {
  resize: vertical;
}

address {
  color: var(--color-muted);
  font-style: normal;
}

address strong {
  color: var(--color-ink);
}

.site-footer {
  color: #d7dee8;
  background: #101826;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 30px;
  padding-block: 48px 28px;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
}

.site-footer p {
  color: #c5ced9;
}

.footer-grid li {
  margin-bottom: 8px;
}

.footer-bottom {
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #c5ced9;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

  .hero-grid {
    min-height: auto;
  }

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

@media (max-width: 860px) {
  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .navbar {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
  }

  .menu a {
    padding: 12px;
  }

  .menu.is-open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid {
    gap: 30px;
    padding-block: 42px;
  }

  .trust-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    max-width: 190px;
  }

  .section {
    padding-block: 56px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .service-grid,
  .why-grid,
  .category-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-media figcaption {
    position: static;
    color: var(--color-muted);
    background: transparent;
    padding: 10px 0 0;
  }
}

/* Main website header and footer compatibility */
.topbar {
  background: linear-gradient(90deg, #8f0f19, var(--color-primary), #8f0f19);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.topbar-inner,
.navbar,
.footer-inner,
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.topbar-inner {
  min-height: 34px;
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  align-items: center;
  gap: 26px;
}

.topbar-inner span:last-child {
  justify-self: end;
}

.navbar {
  min-height: 76px;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr) max-content;
  align-items: center;
  gap: 24px;
}

.brand-mark {
  width: 70px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  flex: 0 0 auto;
}

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

.brand strong {
  color: var(--color-primary);
  font-size: 17px;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  margin-top: 3px;
  color: #333;
  font-weight: 700;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu {
  gap: 22px;
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 800;
}

.menu a {
  position: relative;
  padding: 28px 0;
  white-space: nowrap;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.25s ease;
}

.menu a:hover::after,
.menu a:focus-visible::after {
  width: 100%;
}

.nav-cta {
  white-space: nowrap;
  padding: 12px 20px;
  font-size: 14px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  box-shadow: 0 12px 24px rgba(193, 18, 31, 0.24);
}

.mobile-shade {
  display: none;
}

.footer {
  margin-top: 56px;
  background: linear-gradient(135deg, #980000, var(--color-primary));
  color: #fff;
}

.footer-inner {
  padding-top: 36px;
  padding-bottom: 28px;
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 0.8fr 0.9fr 1.2fr;
  gap: 28px;
}

.footer h2,
.footer h3,
.footer p,
.footer a {
  color: #fff;
}

.footer h2,
.footer h3 {
  margin: 0 0 12px;
}

.footer p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.45;
}

.footer a {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
}

.newsletter {
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(16px);
}

.newsletter form {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.newsletter input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-ink);
  padding: 0 13px;
}

.newsletter button {
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 7px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(193, 18, 31, 0.24);
  cursor: pointer;
}

.socials {
  display: flex;
  gap: 9px;
  margin-top: 14px;
}

.socials a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 900;
}

.footer-bottom {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1250px) {
  .topbar-inner {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .topbar-inner span:last-child {
    justify-self: start;
  }

  .navbar {
    grid-template-columns: 300px minmax(0, 1fr) max-content;
  }

  .menu {
    gap: 16px;
  }

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

@media (max-width: 900px) {
  .navbar {
    position: relative;
    grid-template-columns: minmax(0, 1fr) 46px;
    grid-auto-rows: minmax(64px, auto);
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    padding-right: 58px;
  }

  .menu-toggle {
    display: flex !important;
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-color: var(--color-primary);
    background: var(--color-primary);
    box-shadow: 0 10px 22px rgba(193, 18, 31, 0.22);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    background: #fff;
    margin: 3px 0;
  }

  .menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    padding: 12px;
  }

  .menu a::after {
    display: none;
  }
}

@media (max-width: 620px) {
  .topbar {
    font-size: 10.5px;
  }

  .topbar-inner,
  .navbar,
  .footer-inner,
  .footer-bottom {
    padding-left: 16px;
    padding-right: 16px;
  }

  .navbar {
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 10px;
  }

  .menu-toggle {
    right: 8px;
  }

  .newsletter form,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
    gap: 6px;
    justify-content: start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
@media (max-width: 900px) {
  .mobile-shade {
    position: fixed;
    inset: 0;
    z-index: 29;
    background: rgba(0, 0, 0, 0.48);
  }

  .mobile-shade.open {
    display: block;
  }

  .menu {
    z-index: 30;
  }

  .menu.open {
    display: flex;
  }

  .menu-toggle {
    z-index: 32;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}



