@font-face {
  font-family: "Libre Baskerville Local";
  src: local("Georgia");
}

:root {
  --ink: #111827;
  --body: #374151;
  --muted: #4b5563;
  --navy: #0e0c37;
  --navy-deep: #080622;
  --lavender: #7774aa;
  --gold: #d9a441;
  --cream: #f7f3ea;
  --panel: #f7f6fb;
  --line: rgba(14, 12, 55, 0.18);
  --radius: 24px;
  --font-heading: "Libre Baskerville Local", Georgia, serif;
  --font-body: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: #fff;
  font-size: 16px;
  line-height: 1.65;
}

body.mobile-menu-open {
  overflow: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

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

h2 {
  font-size: clamp(28px, 5vw, 38px);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.logo-link img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.desktop-nav {
  display: none !important;
}

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

.hamburger-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
}

.hamburger-toggle span,
.hamburger-toggle span::before,
.hamburger-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  position: relative;
}

.hamburger-toggle span::before,
.hamburger-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger-toggle span::before {
  top: -7px;
}

.hamburger-toggle span::after {
  top: 7px;
}

.mobile-panel {
  display: none;
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 50px rgba(14, 12, 55, 0.18);
  padding: 20px 16px 24px;
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel a:not(.btn) {
  display: block;
  padding: 14px 4px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  border-bottom: 1px solid rgba(14, 12, 55, 0.1);
}

.nav-link {
  color: var(--ink);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: color 180ms ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  text-decoration: none;
  min-height: 52px;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(14, 12, 55, 0.2);
}

.btn-primary {
  background: var(--gold);
  color: #111827;
  border-color: rgba(17, 24, 39, 0.08);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.phone-white {
  color: #fff !important;
}

.phone-black {
  color: #111827 !important;
}

.hero-section {
  background: radial-gradient(circle at top left, rgba(119, 116, 170, 0.42), transparent 36%), linear-gradient(135deg, var(--navy) 0%, #18154c 50%, var(--navy-deep) 100%);
  color: #fff;
  padding: 42px 0 34px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-visual {
  min-height: 100%;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.stars {
  color: var(--gold);
  letter-spacing: 5px;
  font-size: 26px;
  line-height: 1;
}

.trust-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 64px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.trust-icon-box img {
  width: auto;
  height: 48px;
  max-width: 118px;
  object-fit: contain;
  display: block;
}

.hero-visual {
  position: relative;
  border-radius: 32px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.11);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.hero-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 18px 35px rgba(8, 6, 34, 0.22);
}

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

.vintage-title {
  text-align: center;
  max-width: 830px;
  margin: 0 auto 32px;
}

.vintage-title::after {
  content: "★";
  display: block;
  width: min(280px, 80%);
  margin: 18px auto 0;
  color: var(--gold);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  line-height: 1.7;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.split-text {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  box-shadow: 0 18px 45px rgba(14, 12, 55, 0.07);
}

.split-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 8px solid var(--cream);
  box-shadow: 0 20px 42px rgba(14, 12, 55, 0.14);
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  display: block;
}

.panel-section {
  background: var(--panel);
}

.issue-grid,
.service-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.issue-card,
.service-card,
.review-card,
.faq-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  color: var(--body);
  padding: 22px;
  box-shadow: 0 14px 35px rgba(14, 12, 55, 0.06);
}

.issue-card strong,
.service-card h3,
.review-card strong,
.faq-card h3 {
  color: var(--ink);
}

.medallion {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 14px;
  background: var(--navy);
  color: var(--gold);
  font-weight: 900;
  border: 4px double var(--gold);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 12px 0;
}

.check-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}

.dark-band {
  background: linear-gradient(135deg, var(--navy), #1a1657);
  color: #fff;
}

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

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.area-pills span {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(119, 116, 170, 0.14);
  color: var(--ink);
  font-weight: 800;
  border: 1px solid rgba(119, 116, 170, 0.25);
}

.dark-band .area-pills span {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
}

.dark-band .service-card h3 {
  color: var(--ink);
}

.dark-band .service-card p {
  color: var(--body);
}

.icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--panel);
  color: var(--navy);
  border: 1px solid var(--line);
  margin-bottom: 14px;
}

.icon-circle svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reviews-shell {
  position: relative;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 320ms ease;
  will-change: transform;
}

.review-slide {
  min-width: 100%;
  padding: 8px;
}

.review-card {
  height: 100%;
}

.review-card .stars {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--navy), #211c68);
  color: #fff;
  padding: clamp(28px, 5vw, 50px);
  box-shadow: 0 22px 60px rgba(14, 12, 55, 0.2);
}

.cta-box h2,
.cta-box p {
  color: #fff;
}

.site-footer {
  background: var(--navy-deep);
  color: #fff;
  padding: 46px 0 96px;
  font-size: 14px;
}

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

.site-footer h3,
.site-footer h4 {
  color: #fff;
}

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

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
}

.sticky-call {
  display: none !important;
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 700ms ease forwards;
}

.delay-1 {
  animation-delay: 120ms;
}

.delay-2 {
  animation-delay: 220ms;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 640px) {
  .issue-grid,
  .service-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

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

  .hamburger-toggle,
  .mobile-panel {
    display: none !important;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  }

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

  .split-section.image-first {
    grid-template-columns: 35fr 65fr;
  }

  .review-slide {
    min-width: 33.3333%;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1.2fr;
  }

  .site-footer {
    padding-bottom: 46px;
  }
}

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

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

@media (max-width: 767px) {
  .site-header .container-shell {
    width: min(100% - 24px, 1160px);
  }

  .logo-link {
    font-size: 24px;
  }

  .logo-link span {
    max-width: 210px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-section {
    padding-top: 30px;
  }

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

  .sticky-call {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 62px;
    padding: 14px 12px calc(14px + env(safe-area-inset-bottom));
    background: var(--gold);
    color: #111827 !important;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 -12px 28px rgba(14, 12, 55, 0.24);
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }

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