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

:root {
  --bg: #050608;
  --panel: rgba(255,255,255,.07);
  --line: rgba(255,255,255,.13);
  --text: #fff;
  --muted: #aeb4c0;
  --muted-2: #737b89;
  --red: #e21d2f;
  --red-light: #ff4052;
  --shadow: 0 30px 90px rgba(0,0,0,.52);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at 18% 16%, rgba(226,29,47,.20), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.08), transparent 21%),
    linear-gradient(135deg, #030405 0%, #0d1016 48%, #050608 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -10;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

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

button {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,6,8,.74);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-logo {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--red-light), var(--red));
  box-shadow: 0 18px 42px rgba(226,29,47,.32);
  font-weight: 900;
}

.brand strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.045em;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .22em;
}

.nav-links {
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  transition: .2s;
}

.nav-links a:hover {
  color: white;
}

.phone {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 19px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  font-weight: 800;
}

.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: white;
}

.mobile-menu {
  display: none;
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
  padding: 12px 0 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  color: var(--muted);
  font-weight: 750;
}

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

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  padding: 92px 0 76px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5,6,8,.98), rgba(5,6,8,.72) 42%, rgba(5,6,8,.92)),
    url("img/hero.png") center / cover no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 42%, rgba(226,29,47,.20), transparent 28%),
    linear-gradient(to bottom, transparent 62%, #050608 100%);
}

.hero-grid {
  min-height: calc(100vh - 250px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, .95fr);
  align-items: center;
  gap: 62px;
}

.label {
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(226,29,47,.32);
  background: rgba(226,29,47,.14);
  color: #ffc8ce;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(50px, 7.3vw, 94px);
  line-height: .9;
  letter-spacing: -.085em;
  font-weight: 900;
}

.lead {
  max-width: 650px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 900;
  transition: .22s;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-light), var(--red));
  box-shadow: 0 22px 50px rgba(226,29,47,.35);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.07);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  max-width: 720px;
  margin-top: 46px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.08);
}

.info-strip div {
  padding: 20px;
  background: rgba(5,6,8,.62);
}

.info-strip span {
  display: block;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.info-strip strong {
  display: block;
  margin-top: 8px;
  font-size: 17px;
}

.hero-card {
  padding: 16px;
  border-radius: 42px;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
}

.hero-photo {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border-radius: 31px;
  background:
    linear-gradient(to top, rgba(0,0,0,.86), transparent 58%),
    url("https://images.unsplash.com/photo-1625047509168-a7026f36de04?auto=format&fit=crop&w=1300&q=82") center / cover no-repeat;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 23px;
}

.hero-photo div {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
}

.hero-photo span {
  color: var(--muted);
  font-weight: 700;
}

.hero-photo strong {
  display: block;
  margin-top: 8px;
  font-size: 54px;
  line-height: .9;
  letter-spacing: -.075em;
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading h2,
.info-content h2,
.contact-box h2 {
  margin-top: 18px;
  font-size: clamp(36px, 5.4vw, 60px);
  line-height: .98;
  letter-spacing: -.07em;
  font-weight: 900;
}

.section-heading p:not(.label),
.info-content p,
.contact-box p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.service {
  min-height: 265px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.11);
  background:
    radial-gradient(circle at 90% -10%, rgba(226,29,47,.10), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  transition: .22s;
}

.service:hover {
  transform: translateY(-7px);
  border-color: rgba(226,29,47,.42);
}

.service span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 16px;
  background: rgba(226,29,47,.14);
  color: #ff6673;
  font-weight: 900;
}

.service h3 {
  max-width: 290px;
  font-size: 22px;
  line-height: 1.15;
}

.service p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.service-red {
  background: linear-gradient(135deg, #e21d2f, #8f101c);
}

.service-red span {
  background: rgba(255,255,255,.18);
  color: white;
}

.service-red p {
  color: rgba(255,255,255,.84);
}

.service-red a {
  display: inline-flex;
  margin-top: 24px;
  font-weight: 900;
  border-bottom: 2px solid rgba(255,255,255,.55);
}

.info-grid,
.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
}

.info-photo,
.info-content,
.contact-box,
.hours-box {
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 100% 0, rgba(226,29,47,.16), transparent 34%),
    rgba(255,255,255,.055);
  box-shadow: var(--shadow);
}

.info-photo {
  min-height: 560px;
  background:
    linear-gradient(to top, rgba(0,0,0,.72), transparent 48%),
    url("img/info.png") center / cover no-repeat;

}

.info-content,
.contact-box,
.hours-box {
  padding: 52px;
}

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

.features div {
  min-height: 126px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.045);
}

.features span {
  display: block;
  margin-top: 10px;
  color: var(--muted-2);
  font-size: 13px;
}

.contact-links {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-links a {
  display: block;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.045);
}

.contact-links span {
  display: block;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.contact-links strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
}

.hours {
  display: grid;
  overflow: hidden;
  margin-top: 26px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 26px;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.hours div:last-child {
  border-bottom: 0;
}

.hours span {
  color: var(--muted);
}

.closed {
  color: #ff6673;
}

.map {
  height: 360px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 38px;
  box-shadow: var(--shadow);
}

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

.mobile-call {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 90;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red-light), var(--red));
  box-shadow: 0 20px 60px rgba(226,29,47,.42);
  font-weight: 900;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted-2);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
}

.footer strong {
  color: white;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s, transform .7s;
}

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

@media (max-width: 1040px) {
  .nav-links,
  .phone {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero-grid,
  .info-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    order: -1;
  }

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

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

@media (max-width: 720px) {
  body {
    padding-bottom: 78px;
  }

  .container,
  .mobile-menu {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    height: 72px;
  }

  .hero {
    padding: 42px 0 48px;
  }

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

  .hero h1 {
    font-size: 46px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-buttons .btn,
  .info-strip {
    width: 100%;
  }

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

  .hero-photo {
    min-height: 330px;
  }

  .hero-photo strong {
    font-size: 42px;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading h2,
  .info-content h2,
  .contact-box h2 {
    font-size: 38px;
  }

  .service,
  .info-content,
  .contact-box,
  .hours-box {
    padding: 26px;
    border-radius: 28px;
  }

  .info-photo {
    min-height: 330px;
  }

  .hours div {
    flex-direction: column;
    gap: 6px;
  }

  .mobile-call {
    display: flex;
  }
}
