:root {
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Arial, Helvetica, sans-serif;
  --nav-height: 78px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.65;
  background: #f7f5ee;
}

a {
  text-decoration: none;
}

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

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(39px, 7vw, 72px);
}

h2 {
  font-size: clamp(31px, 5vw, 48px);
}

h3,
h4 {
  font-size: 22px;
}

p,
li,
td,
th,
button,
input,
a {
  font-size: 16px;
}

.site-shell {
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 238, 0.94);
  border-bottom: 1px solid rgba(44, 43, 71, 0.18);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #111827;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border: 2px solid #2c2b47;
  background: #2c2b47;
  display: inline-grid;
  place-items: center;
  box-shadow: inset 0 0 0 4px rgba(252, 234, 122, 0.18);
}

.logo-mark svg {
  width: 26px;
  height: 26px;
}

.desktop-nav {
  display: none !important;
  align-items: center;
  gap: 18px;
}

.desktop-nav a {
  color: #2c2b47;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav a:hover {
  color: #000000;
}

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

.mobile-menu-toggle {
  display: inline-flex !important;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid #2c2b47;
  background: #2c2b47;
  color: #ffffff;
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(44, 43, 71, 0.15);
  padding: 14px 16px 20px;
  background: #f7f5ee;
}

.mobile-menu.is-open {
  display: grid;
  gap: 10px;
}

.mobile-menu a:not(.btn-gold) {
  color: #111827;
  font-weight: 700;
  padding: 10px 0;
}

.btn-gold,
.btn-dark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid #fcea7a;
  background: #fcea7a;
  color: #111827;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
  animation: ctaGlow 2.1s ease-in-out infinite;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn-dark {
  background: #2c2b47;
  color: #ffffff;
  border-color: #2c2b47;
}

.btn-gold:hover,
.btn-dark:hover {
  transform: translateY(-2px);
  background: #ffffff;
  color: #111827;
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.44); }
  50% { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.08); }
}

.hero-section {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(20, 19, 40, 0.96) 0%, rgba(44, 43, 71, 0.88) 45%, rgba(44, 43, 71, 0.52) 100%), url('../images/hero-technician.png');
  background-position: center;
  background-size: cover;
  color: #ffffff;
  padding: 72px 0;
}

.hero-grid {
  display: grid;
  gap: 36px;
}

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

.hero-copy h1,
.hero-copy p {
  color: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #fcea7a;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
}

.stars {
  color: #fcea7a;
  font-size: 25px;
  letter-spacing: 0.12em;
  margin: 18px 0 12px;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 22px;
}

.hero-badges img {
  width: auto;
  height: 48px;
  object-fit: contain;
  border: 1px solid rgba(252, 234, 122, 0.58);
  background: rgba(255, 255, 255, 0.1);
  padding: 5px;
}

.hero-lead {
  max-width: 680px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.93) !important;
}

.hero-actions {
  margin-top: 26px;
}

.benefit-panel {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(252, 234, 122, 0.42);
  backdrop-filter: blur(12px);
  padding: 24px;
  color: #ffffff;
}

.benefit-panel h2 {
  color: #ffffff;
  font-size: 31px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #fcea7a;
  color: #111827;
}

.section-block {
  padding: 72px 0;
  background: #f7f5ee;
}

.section-dark {
  background: #2c2b47;
  color: #ffffff;
}

.section-blue {
  background: #e9eef3;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-dark .section-heading h2,
.section-dark .section-heading p,
.section-dark h3,
.section-dark h4 {
  color: #ffffff;
}

.accent-line {
  width: 76px;
  height: 4px;
  background: #fcea7a;
  margin: 18px 0 0;
}

.centered .accent-line {
  margin-left: auto;
  margin-right: auto;
}

.split-two {
  display: grid;
  gap: 28px;
  align-items: center;
}

.split-media {
  border: 1px solid rgba(44, 43, 71, 0.25);
  padding: 10px;
  background: #ffffff;
  box-shadow: 16px 16px 0 rgba(118, 146, 171, 0.28);
}

.split-media img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.museum-grid {
  display: grid;
  gap: 18px;
}

.museum-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(44, 43, 71, 0.22);
  padding: 22px;
  min-height: 240px;
  box-shadow: 12px 12px 0 rgba(44, 43, 71, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.museum-card:hover {
  transform: translateY(-8px);
  box-shadow: 16px 18px 0 rgba(44, 43, 71, 0.13);
}

.museum-card.tall {
  min-height: 320px;
}

.museum-card.short {
  min-height: 205px;
}

.service-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 14px;
  border: 1px solid rgba(44, 43, 71, 0.16);
  background: #f7f5ee;
}

.service-table,
.payment-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  background: #ffffff;
}

.service-table th,
.service-table td,
.payment-table th,
.payment-table td {
  border: 1px solid rgba(44, 43, 71, 0.22);
  padding: 12px;
  text-align: left;
  vertical-align: top;
  color: #111827;
}

.service-table th,
.payment-table th {
  background: #2c2b47;
  color: #ffffff;
}

.parts-list,
.choice-list,
.zip-list {
  display: grid;
  gap: 12px;
}

.parts-list li,
.choice-list li,
.zip-list li {
  background: #ffffff;
  border-left: 4px solid #fcea7a;
  padding: 14px 16px;
  color: #111827;
}

.reviews-shell {
  position: relative;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 2px 28px;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  scroll-snap-align: start;
  background: #ffffff;
  color: #111827;
  border: 1px solid rgba(252, 234, 122, 0.72);
  padding: 24px;
  min-height: 270px;
  box-shadow: 10px 10px 0 rgba(252, 234, 122, 0.16);
}

.review-card strong,
.review-card p {
  color: #111827;
}

.review-card:nth-child(3n+2) {
  min-height: 325px;
}

.review-controls {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.review-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid #fcea7a;
  background: #fcea7a;
  color: #111827;
  font-weight: 900;
}

.process-grid {
  display: grid;
  gap: 18px;
}

.process-step {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(252, 234, 122, 0.4);
  padding: 24px;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: #fcea7a;
  color: #111827;
  font-weight: 900;
  margin-bottom: 14px;
}

.cta-band {
  background: linear-gradient(135deg, #17162c 0%, #2c2b47 55%, #7692ab 100%);
  color: #ffffff;
  border-top: 1px solid rgba(252, 234, 122, 0.4);
  border-bottom: 1px solid rgba(252, 234, 122, 0.4);
}

.cta-band h2,
.cta-band p {
  color: #ffffff;
}

.faq-grid {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(44, 43, 71, 0.18);
  padding: 22px;
}

.site-footer {
  background: #17162c;
  color: #ffffff;
  padding: 46px 0 34px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.site-footer h2,
.site-footer h3 {
  color: #ffffff;
}

.site-footer .logo-link {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 28px;
  padding-top: 22px;
}

.mobile-sticky-call {
  display: none !important;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(23, 22, 44, 0.96);
  transform: translateY(110%);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-sticky-call.is-visible {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}

.mobile-sticky-call a {
  width: 100%;
  color: #111827;
  font-size: 16px;
}

@media (max-width: 767px) {
  h1 {
    font-size: clamp(39px, 11vw, 50px);
  }

  h2 {
    font-size: clamp(31px, 9vw, 36px);
  }

  .logo-link span:last-child {
    max-width: 205px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .section-block {
    padding: 56px 0;
  }

  .hero-section {
    padding: 54px 0 66px;
  }

  .hero-badges img {
    height: 42px;
  }

  body.has-mobile-cta {
    padding-bottom: 82px;
  }
}

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

  .header-phone-desktop {
    display: inline-flex !important;
  }

  .mobile-menu-toggle,
  .mobile-menu,
  .mobile-sticky-call,
  .mobile-sticky-call.is-visible {
    display: none !important;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    align-items: center;
  }

  .split-two {
    grid-template-columns: minmax(0, 65fr) minmax(280px, 35fr);
  }

  .split-two.media-left {
    grid-template-columns: minmax(280px, 35fr) minmax(0, 65fr);
  }

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

  .reviews-track {
    grid-auto-columns: calc((100% - 36px) / 3);
  }

  .process-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .museum-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
