:root {
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --line: rgba(166, 17, 17, 0.16);
  --shadow: 0 24px 70px rgba(62, 16, 16, 0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
}

h1 {
  font-size: clamp(35px, 8vw, 70px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h3,
h4 {
  font-size: clamp(20px, 3vw, 25px);
  line-height: 1.16;
}

p,
li,
summary,
dd,
dt,
label,
input,
textarea,
select {
  font-size: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(166, 17, 17, 0.12);
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: linear-gradient(145deg, #A61111, #D36B6B);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(166, 17, 17, 0.26);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  color: #111827;
  letter-spacing: -0.035em;
}

.nav-link {
  color: #2c1b1b;
  font-size: 18px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.desktop-only-phone {
  display: none !important;
}

.mobile-only-button,
.mobile-menu-wrap {
  display: block !important;
}

@media (min-width: 768px) {
  .desktop-only-phone {
    display: inline-flex !important;
  }

  .mobile-only-button,
  .mobile-menu-wrap,
  .mobile-sticky-call {
    display: none !important;
  }
}

.phone-button,
.primary-button,
.outline-button {
  white-space: nowrap;
  border-radius: 999px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.phone-button,
.primary-button {
  background: linear-gradient(135deg, #A61111, #7B0D0D);
  color: #fff !important;
  box-shadow: 0 18px 42px rgba(166, 17, 17, 0.26);
}

.phone-button:hover,
.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(166, 17, 17, 0.36);
}

.outline-button {
  border: 1px solid rgba(166, 17, 17, 0.26);
  color: #111827 !important;
  background: rgba(255, 255, 255, 0.72);
}

.hero-shell {
  background:
    radial-gradient(circle at 18% 12%, rgba(211, 107, 107, 0.22), transparent 31%),
    linear-gradient(135deg, #fff8f5 0%, #f7ece7 43%, #fefdfb 100%);
}

.hero-grid {
  min-height: calc(100vh - 82px);
}

.hero-media {
  aspect-ratio: 1 / 1;
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 24px;
  pointer-events: none;
}

.stars {
  color: var(--accent);
  font-size: 22px;
  letter-spacing: 0.08em;
  text-shadow: 0 8px 20px rgba(212, 175, 55, 0.24);
}

.gallery-badge-row img {
  width: auto;
  height: 48px;
  max-width: 31%;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(166, 17, 17, 0.16);
  background: #fff;
  padding: 5px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(166, 17, 17, 0.2);
  color: #7b0d0d;
  background: rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-pad {
  padding: 72px 0;
}

.split-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(22px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 45px rgba(62, 16, 16, 0.08);
}

@media (min-width: 900px) {
  .split-block {
    grid-template-columns: 65fr 35fr;
  }

  .split-block.reverse {
    grid-template-columns: 35fr 65fr;
  }
}

.split-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(34, 14, 14, 0.14);
}

.service-card,
.part-card,
.review-card,
.faq-card,
.pay-card {
  background: #fff;
  color: #374151;
  border: 1px solid rgba(166, 17, 17, 0.14);
  border-radius: 28px;
  box-shadow: 0 14px 34px rgba(65, 16, 16, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover,
.part-card:hover,
.review-card:hover,
.pay-card:hover {
  transform: translateY(-4px);
  border-color: rgba(166, 17, 17, 0.32);
  box-shadow: 0 24px 60px rgba(80, 18, 18, 0.12);
}

.icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(166, 17, 17, 0.12), rgba(211, 107, 107, 0.16));
  color: #A61111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dark-band {
  background:
    linear-gradient(135deg, rgba(166, 17, 17, 0.28), transparent 36%),
    #170B0B;
  color: #fff;
}

.dark-band h2,
.dark-band h3,
.dark-band p,
.dark-band li {
  color: #fff;
}

.dark-band .muted-on-dark {
  color: #696969;
}

.muted-on-dark {
  color: #fff;
}

.process-step {
  position: relative;
  padding-left: 62px;
}

.process-step span {
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #A61111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.reviews-track {
  display: flex;
  transition: transform 0.4s ease;
}

.review-slide {
  flex: 0 0 100%;
  padding: 8px;
}

@media (min-width: 768px) {
  .review-slide {
    flex-basis: 50%;
  }
}

@media (min-width: 1200px) {
  .review-slide {
    flex-basis: 33.3333%;
  }
}

.carousel-button {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(166, 17, 17, 0.22);
  background: #fff;
  color: #A61111;
  font-weight: 900;
}

.faq-card summary {
  cursor: pointer;
  color: #111827;
  font-weight: 900;
  list-style: none;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.mobile-sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
}

.mobile-sticky-call.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-sticky-call a {
  width: 100%;
  color: #fff !important;
  font-size: 16px;
  white-space: nowrap;
}

.footer {
  background: #170B0B;
  color: #F8EAEA;
  font-size: 14px;
}

.footer a,
.footer p,
.footer li {
  color: #F8EAEA;
  font-size: 14px;
}

.footer h3,
.footer .logo-text {
  color: #fff;
}

@media (max-width: 767px) {
  h1,
  h2 {
    letter-spacing: -0.04em;
  }

  .section-pad {
    padding: 54px 0;
  }

  body {
    padding-bottom: 78px;
  }
}

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