:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-gray: #1a1a1a;
  --medium-gray: #2a2a2a;
  --light-gray: #888888;
  --off-white: #f0f0f0;
  --white: #ffffff;
  --red: #c41e2a;
  --red-dark: #9b1620;
  --red-glow: rgba(196, 30, 42, 0.3);
  --border: rgba(255, 255, 255, 0.12);
  --surface: rgba(255, 255, 255, 0.045);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --header-height: 82px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(196, 30, 42, 0.08), transparent 34%),
    var(--black);
  color: var(--off-white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.32;
  background-image:
    linear-gradient(115deg, transparent 0 45%, rgba(196, 30, 42, 0.08) 45% 46%, transparent 46%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 4px);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--white);
  color: var(--black);
  border-radius: 4px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 130;
  width: 0;
  height: 3px;
  background: var(--red);
  box-shadow: 0 0 18px var(--red-glow);
}

.section-inner {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 120;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 10, 0.68);
  backdrop-filter: blur(18px);
  transition: height 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(10, 10, 10, 0.93);
  border-color: rgba(196, 30, 42, 0.32);
}

.nav-shell {
  width: min(calc(100% - 40px), var(--max-width));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
}

h1,
h2,
h3,
.stat-value,
.section-label,
.btn {
  font-family: "Oswald", Arial, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-logo {
  width: 52px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.42));
}

.brand-title {
  color: var(--white);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(240, 240, 240, 0.82);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  content: "";
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.btn {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  overflow: hidden;
}

.btn-small {
  min-height: 42px;
  padding: 11px 16px;
  font-size: 13px;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(196, 30, 42, 0.22);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
}

.btn-light {
  background: var(--white);
  color: var(--black);
}

.btn-dark {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-height);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media::before,
.hero-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
}

.hero-media::before {
  background:
    linear-gradient(90deg, var(--black) 0%, rgba(10, 10, 10, 0.82) 36%, rgba(10, 10, 10, 0.18) 68%, rgba(10, 10, 10, 0.62) 100%),
    linear-gradient(0deg, var(--black) 0%, rgba(10, 10, 10, 0.08) 30%, rgba(10, 10, 10, 0.55) 100%);
}

.hero-media::after {
  background: linear-gradient(115deg, transparent 0 54%, rgba(196, 30, 42, 0.2) 54% 54.6%, transparent 54.6%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(0.9) contrast(1.08);
}

.hero-blade {
  position: absolute;
  right: 6%;
  bottom: 11%;
  z-index: 2;
  width: 330px;
  height: 2px;
  transform: rotate(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), var(--red), transparent);
  opacity: 0.68;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  padding: 72px 0 62px;
}

.hero-copy {
  max-width: 690px;
}

.hero-badge,
.section-label {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 15px;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: 6rem;
  font-weight: 700;
  line-height: 0.94;
}

.headline-line {
  display: block;
  overflow: hidden;
}

.text-red {
  color: var(--red);
  text-shadow: 0 20px 58px rgba(196, 30, 42, 0.26);
}

.hero-subtitle {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(240, 240, 240, 0.83);
  font-size: 20px;
  line-height: 1.58;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(240, 240, 240, 0.7);
  font-size: 14px;
  font-weight: 700;
}

.hero-location svg,
.contact-item svg,
.footer-social svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-location svg {
  color: var(--red);
}

.stats-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(17, 17, 17, 0.88);
}

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

.stat-card {
  position: relative;
  min-height: 154px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 28px 22px;
  text-align: center;
}

.stat-card + .stat-card {
  border-left: 1px solid var(--border);
}

.stat-value {
  color: var(--white);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
}

.stat-label {
  margin-top: 8px;
  color: rgba(240, 240, 240, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: 118px 0;
}

.section-heading {
  max-width: 710px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.12;
}

.section-heading p:not(.section-label),
.about-copy p,
.review-card p,
.location-card span,
.cta-band p,
.site-footer p {
  color: rgba(240, 240, 240, 0.72);
}

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

.service-card,
.review-card,
.location-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.026)),
    var(--dark);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 306px;
  padding: 30px;
  overflow: hidden;
}

.card-accent {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
}

.icon-shell {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--red);
}

.icon-shell svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.service-card p {
  margin-bottom: 0;
  color: rgba(240, 240, 240, 0.68);
}

.about-section,
.location-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.045));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-grid,
.location-grid,
.cta-grid,
.footer-grid {
  display: grid;
  align-items: center;
  gap: 54px;
}

.about-grid,
.location-grid {
  grid-template-columns: 1fr 1fr;
}

.about-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--dark);
  box-shadow: var(--shadow);
}

.about-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.72), transparent 44%);
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.about-highlights div {
  min-height: 116px;
  display: grid;
  align-content: center;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.about-highlights strong {
  color: var(--white);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
}

.about-highlights span {
  margin-top: 8px;
  color: rgba(240, 240, 240, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  min-height: 280px;
  padding: 30px;
}

.stars {
  margin-bottom: 28px;
  color: var(--red);
  font-size: 18px;
}

.review-card p {
  font-size: 18px;
}

.review-card footer {
  margin-top: 28px;
  color: var(--white);
  font-weight: 800;
}

.review-card footer span {
  display: block;
  color: rgba(240, 240, 240, 0.54);
  font-size: 13px;
  font-weight: 700;
}

.map-frame {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(196, 30, 42, 0.09), transparent 42%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    var(--dark-gray);
  background-size: auto, 58px 58px, 58px 58px, auto;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 520px;
  border: 0;
  opacity: 0.34;
  filter: grayscale(1) invert(0.88) contrast(1.05);
}

.map-fallback {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  justify-items: center;
  min-width: 240px;
  transform: translate(-50%, -50%);
  color: var(--white);
  text-align: center;
  pointer-events: none;
}

.map-fallback strong {
  margin-top: 14px;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}

.map-fallback span:not(.map-pin) {
  margin-top: 5px;
  color: rgba(240, 240, 240, 0.74);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.map-pin {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  background: var(--red);
  transform: rotate(-45deg);
  box-shadow: 0 18px 40px var(--red-glow);
}

.map-pin::after {
  position: absolute;
  top: 9px;
  left: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--black);
  content: "";
}

.location-card {
  padding: 38px;
}

.contact-list {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.contact-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--off-white);
}

.contact-item svg {
  color: var(--red);
}

.contact-item strong,
.contact-item span {
  display: block;
}

.contact-item strong {
  color: var(--white);
  font-size: 16px;
}

.link-item {
  transition: color 180ms ease;
}

.link-item:hover {
  color: var(--red);
}

.hours-list {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(240, 240, 240, 0.72);
  font-size: 14px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 74px 0;
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.2), transparent 48%),
    linear-gradient(135deg, var(--red-dark), var(--red));
}

.cta-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 6px);
  opacity: 0.22;
}

.cta-grid {
  position: relative;
  grid-template-columns: 1fr auto;
}

.cta-band h2 {
  margin-bottom: 10px;
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding: 42px 0;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.site-footer p {
  margin: 0;
  text-align: center;
  font-size: 13px;
}

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

.footer-social {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--white);
}

.footer-social svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 44px;
  }

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

@media (max-width: 820px) {
  :root {
    --header-height: 70px;
  }

  .section-inner,
  .nav-shell {
    width: min(calc(100% - 30px), var(--max-width));
  }

  .menu-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px 15px 26px;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
  }

  .nav-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link,
  .nav-panel .btn {
    justify-content: center;
    min-height: 54px;
  }

  .hero-grid {
    min-height: calc(100vh - var(--header-height));
    padding: 74px 0 42px;
  }

  .hero-media::before {
    background:
      linear-gradient(90deg, rgba(10, 10, 10, 0.94), rgba(10, 10, 10, 0.62)),
      linear-gradient(0deg, var(--black) 0%, rgba(10, 10, 10, 0.1) 42%, rgba(10, 10, 10, 0.58) 100%);
  }

  .hero-media img {
    object-position: 66% center;
  }

  h1 {
    font-size: 3.55rem;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .stats-grid,
  .about-grid,
  .location-grid,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat-card + .stat-card {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

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

  .section {
    padding: 82px 0;
  }

  .section-heading {
    text-align: left;
  }

  .about-image,
  .about-image img,
  .map-frame,
  .map-frame iframe {
    min-height: 390px;
    height: 390px;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .btn,
  .hero-actions .btn {
    flex: 1 1 210px;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .brand-logo {
    width: 43px;
    max-height: 40px;
  }

  .brand-title {
    font-size: 18px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 22px;
  }

  .hero-badge,
  .section-label {
    font-size: 13px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

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

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .hours-list li {
    display: grid;
    gap: 0;
  }
}

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