:root {
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Arial, Helvetica, sans-serif;
  --brass: #b8893a;
  --teal: #154d4d;
  --aqua: #4ba6a6;
  --cream: #f6f2e9;
  --ink: #111827;
  --muted: #4b5563;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(35px, 9vw, 68px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(28px, 6vw, 46px);
  line-height: 1.08;
}

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

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

.site-header {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(21, 77, 77, 0.1);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--ink);
}

footer .logo-text {
  color: ;
}

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

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

.mobile-menu-button {
  display: inline-flex !important;
}

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

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

  .mobile-menu-button,
  .mobile-panel {
    display: none !important;
  }
}

.nav-link {
  color: #1f2937;
  font-size: 18px;
  line-height: 1;
  transition: color 180ms ease;
  white-space: nowrap;
}

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

.phone-button,
.primary-button,
.secondary-button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  gap: 0.55rem;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  white-space: nowrap;
}

.phone-button,
.primary-button {
  background: var(--teal);
  box-shadow: 0 16px 34px rgba(21, 77, 77, 0.24);
  color: #ffffff !important;
}

.phone-button:hover,
.primary-button:hover {
  background: var(--primary-dark);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.secondary-button {
  background: #ffffff;
  border: 1px solid rgba(21, 77, 77, 0.18);
  color: #111827 !important;
}

.secondary-button:hover {
  box-shadow: 0 15px 30px rgba(21, 77, 77, 0.14);
  transform: translateY(-2px);
}

.hero-section {
  background: radial-gradient(circle at 18% 12%, rgba(75, 166, 166, 0.2), transparent 34%), linear-gradient(135deg, #f7f5ee 0%, #ffffff 48%, #edf4f2 100%);
  overflow: hidden;
  position: relative;
}

.hero-section:before,
.section-arch:before {
  background: linear-gradient(90deg, transparent, rgba(184, 137, 58, 0.75), transparent);
  content: "";
  height: 1px;
  left: 8%;
  position: absolute;
  right: 8%;
  top: 0;
}

.hero-card {
  border: 1px solid rgba(21, 77, 77, 0.12);
  border-radius: 48% 48% 28px 28px / 10% 10% 28px 28px;
  box-shadow: 0 28px 70px rgba(21, 77, 77, 0.18);
  overflow: hidden;
}

.arch-image,
.arch-panel {
  border-radius: 46% 46% 28px 28px / 13% 13% 28px 28px;
  overflow: hidden;
}

.rating-stars {
  color: var(--brass);
  font-size: 22px;
  letter-spacing: 0.12em;
}

.trust-icon {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(184, 137, 58, 0.28);
  border-radius: 999px;
  display: flex;
  height: 64px;
  justify-content: center;
  padding: 8px 12px;
  width: 88px;
}

.trust-icon img {
  height: 48px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.section-arch {
  position: relative;
}

.reveal-mask {
  animation: revealMask 900ms ease both;
  animation-timeline: view();
  animation-range: entry 8% cover 28%;
}

@keyframes revealMask {
  from {
    clip-path: inset(0 0 100% 0 round 28px);
    opacity: 0.4;
    transform: translateY(24px);
  }
  to {
    clip-path: inset(0 0 0 0 round 28px);
    opacity: 1;
    transform: translateY(0);
  }
}

.brass-line {
  background: var(--brass);
  display: inline-block;
  height: 2px;
  width: 72px;
}

.gold-dot {
  background: var(--brass);
  border-radius: 999px;
  display: inline-block;
  height: 8px;
  width: 8px;
}

.service-card,
.step-card,
.review-card,
.info-card {
  background: #ffffff;
  border: 1px solid rgba(21, 77, 77, 0.1);
  border-radius: 30px;
  box-shadow: 0 18px 45px rgba(21, 77, 77, 0.08);
  color: #374151;
}

.icon-badge {
  align-items: center;
  background: #e9f4f3;
  border: 1px solid rgba(75, 166, 166, 0.35);
  border-radius: 20px;
  color: var(--teal);
  display: inline-flex;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.two-column-feature {
  align-items: center;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .two-column-feature {
    grid-template-columns: minmax(0, 65%) minmax(240px, 35%);
  }

  .two-column-feature.image-left {
    grid-template-columns: minmax(240px, 35%) minmax(0, 65%);
  }
}

.carousel-track {
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .carousel-slide {
    flex-basis: calc((100% - 1.5rem) / 2);
  }
}

@media (min-width: 1180px) {
  .carousel-slide {
    flex-basis: calc((100% - 3rem) / 3);
  }
}

.footer-text,
.footer-text a,
footer p,
footer li {
  font-size: 14px;
}

.mobile-sticky-call {
  bottom: 0;
  display: flex !important;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transform: translateY(100%);
  transition: opacity 240ms ease, transform 240ms ease;
  width: 100%;
  z-index: 60;
}

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

@media (min-width: 768px) {
  .mobile-sticky-call {
    display: none !important;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: clamp(35px, 10vw, 48px);
  }

  h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  main {
    padding-bottom: 82px;
  }
}

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