:root {
  --brand-ink: #2c2c2c;
  --brand-ink-2: #3b3b3b;
  --brand-accent: #c8102e;
  --brand-accent-2: #b5b5b5;
  --brand-surface: #f2f2f2;
  --brand-border: #d7d7d7;
  --brand-muted: #636363;
  --brand-white: #ffffff;
  --shadow-soft: 0 20px 50px rgba(30, 30, 30, 0.12);
  --shadow-card: 0 18px 32px rgba(30, 30, 30, 0.12);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  color: var(--brand-ink);
  background: linear-gradient(180deg, #b90e2b 0%, #c8102e 120px, #efefef 120px, #efefef 100%);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-shell {
  background: var(--brand-white);
  margin: 36px auto 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(215, 215, 215, 0.9);
  box-shadow: var(--shadow-soft);
  padding-bottom: 36px;
  overflow: hidden;
  width: min(1120px, 92vw);
}

.site-shell .container {
  padding-left: 28px;
  padding-right: 28px;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: #ffffff;
  border-bottom: 1px solid rgba(215, 215, 215, 0.9);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #e51e3d, var(--brand-accent));
  display: grid;
  place-items: center;
  color: var(--brand-white);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: var(--shadow-soft);
}

.brand-name {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-logo {
  height: 46px;
  width: auto;
  display: block;
}

.brand-m {
  color: var(--brand-accent);
  font-weight: 700;
}

.brand-360 {
  color: #9c9c9c;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 600;
  color: var(--brand-muted);
}

.nav-links a {
  position: relative;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--brand-accent);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.cta-button {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--brand-accent);
  color: var(--brand-white);
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(11, 27, 43, 0.22);
}

.hero {
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 245, 245, 0.98));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.18), rgba(200, 16, 46, 0));
  z-index: 0;
}

.hero::before {
  top: -140px;
  right: -120px;
}

.hero::after {
  bottom: -180px;
  left: -140px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(2.6rem, 3vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--brand-muted);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.secondary-button {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--brand-accent);
  font-weight: 600;
  color: var(--brand-accent);
}

.hero-card {
  background: var(--brand-white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.hero-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.metric {
  background: var(--brand-surface);
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand-ink-2);
}

section {
  padding: 90px 0;
}

.section-title {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 2.1rem;
  margin-bottom: 16px;
}

.section-lead {
  color: var(--brand-muted);
  max-width: 640px;
}

.card-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.card {
  padding: 26px;
  background: var(--brand-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--brand-muted);
  font-size: 0.96rem;
}

.highlight-band {
  background: linear-gradient(120deg, rgba(200, 16, 46, 0.08), rgba(180, 180, 180, 0.18));
  border-top: 1px solid rgba(200, 16, 46, 0.18);
  border-bottom: 1px solid rgba(200, 16, 46, 0.18);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.feature {
  background: var(--brand-white);
  padding: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.footer {
  padding: 60px 0 76px;
  background: #2b2b2b;
  color: var(--brand-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.footer a {
  color: var(--brand-white);
  opacity: 0.8;
}

.footer small {
  opacity: 0.7;
}

.page-hero {
  padding: 80px 0 40px;
}

.page-hero p {
  color: var(--brand-muted);
  max-width: 680px;
}

.service-detail {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--brand-white);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-card);
}

.service-detail h3 {
  margin-bottom: 8px;
}

.map-frame {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

main {
  margin-bottom: 40px;
}

@media (max-width: 860px) {
  .site-shell {
    margin-top: 24px;
  }

  .site-shell .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.contact-card {
  padding: 26px;
  background: var(--brand-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

@media (max-width: 860px) {
  .nav-links {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 70px 0;
  }
}

@media (max-width: 640px) {
  .navbar {
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
