:root {
  --burgundy: #7a1f2b;
  --burgundy-dark: #58151e;
  --burgundy-soft: #f4e9eb;
  --ink: #1c1a1a;
  --muted: #746e6e;
  --line: #e7dddd;
  --paper: #ffffff;
  --warm: #faf7f7;
  --radius: 22px;
  --shadow: 0 20px 55px rgba(79, 22, 31, .08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

a { color: inherit; }

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(122,31,43,.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .02em;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--burgundy);
  color: #fff;
  font-size: 14px;
}

.brand__text { font-size: 18px; }

.topbar__phone {
  text-decoration: none;
  font-weight: 750;
}

.hero {
  padding: 86px 0 100px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(52px, 7vw, 96px);
  line-height: .95;
  letter-spacing: -.045em;
  font-weight: 850;
}

.hero__actions {
  margin: 38px 0 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

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

.btn--primary {
  background: var(--burgundy);
  color: #fff;
}

.btn--primary:hover { background: var(--burgundy-dark); }

.btn--ghost {
  border: 1px solid var(--line);
  background: #fff;
}

.contact-line {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.contact-line span {
  color: var(--muted);
  font-size: 14px;
}

.contact-line a {
  text-decoration: none;
  font-weight: 750;
}


.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.hero__visual img {
  display: block;
  width: 100%;
  max-width: 650px;
  height: auto;
  object-fit: contain;
}

.directions {
  padding: 100px 0 110px;
  background: var(--warm);
}

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

h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -.03em;
}

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

.card {
  min-height: 240px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(122,31,43,.3);
  box-shadow: var(--shadow);
}

.card__num {
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 850;
}

.card__label {
  margin: auto 0 10px;
  color: var(--muted);
  font-size: 14px;
}

.card h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -.02em;
}

.contact {
  padding: 100px 0;
}

.contact__box {
  padding: 52px;
  border-radius: 30px;
  background: var(--burgundy);
  color: #fff;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.eyebrow--light { color: rgba(255,255,255,.68); }

.contact__box h2 {
  font-size: clamp(36px, 5vw, 58px);
}

.contact__links {
  display: grid;
  gap: 0;
}

.contact__links a {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  text-decoration: none;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
}

.contact__links a span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.6);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer__inner {
  min-height: 86px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.footer a {
  text-decoration: none;
  font-weight: 750;
}

@media (max-width: 900px) {
  .hero { padding-top: 58px; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual img { max-width: 620px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .contact__box { grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .topbar__inner { min-height: 66px; }
  .brand__text { display: none; }
  .topbar__phone { font-size: 14px; }

  .hero { padding: 48px 0 70px; }
  h1 { font-size: clamp(44px, 16vw, 68px); }

  .hero__actions {
    display: grid;
  }

  .btn { width: 100%; }

  .contact-line {
    grid-template-columns: 1fr;
    gap: 2px;
  }


  .hero__visual {
    margin-top: 6px;
  }

  .hero__visual img {
    width: min(100%, 560px);
  }

  .directions { padding: 72px 0; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 190px; }

  .contact { padding: 72px 0; }
  .contact__box { padding: 30px 24px; }

  .footer__inner {
    min-height: 100px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
}
