:root {
  --bg: #f4efe7;
  --bg-soft: #fbf8f2;
  --surface: #ffffff;
  --surface-strong: #14212b;
  --text: #1c242b;
  --muted: #606d76;
  --line: rgba(28, 36, 43, 0.1);
  --accent: #a97546;
  --accent-dark: #8f6239;
  --shadow: 0 18px 45px rgba(22, 34, 44, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1160px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(169, 117, 70, 0.08), transparent 28%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--surface-strong);
  color: #fff;
}

.skip-link:focus {
  top: 16px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(251, 248, 242, 0.82);
  border-bottom: 1px solid rgba(28, 36, 43, 0.06);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--surface-strong);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-text {
  display: grid;
  gap: 4px;
}

.brand-text strong {
  font-size: 0.92rem;
  font-weight: 700;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a,
.header-cta {
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 180ms ease, transform 180ms ease;
}

.nav a:hover,
.header-cta:hover {
  color: var(--accent-dark);
}

.header-cta {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.hero {
  padding: 32px 0 22px;
}

.hero-shell {
  display: grid;
  gap: 24px;
}

.hero-copy {
  max-width: 640px;
  padding-top: 12px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero-lead,
.section-head p,
.highlight-card p,
.service-card p,
.process-copy p,
.step-card p,
.local-card strong,
.review-card p,
.faq-list p,
.footer-copy p,
.footer-card p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-lead {
  margin: 18px 0 24px;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.slider-button,
.dot,
.faq-list summary {
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}

.button:hover,
.slider-button:hover,
.dot:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--surface-strong);
  color: #fff;
}

.button-primary:hover {
  background: #0f1a22;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.button-secondary:hover {
  border-color: rgba(28, 36, 43, 0.2);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 10px 14px;
  border: 1px solid rgba(28, 36, 43, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: #d6d0c8;
}

.slides {
  position: relative;
  min-height: 540px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 500ms ease, transform 500ms ease;
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

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

.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 33, 43, 0.12) 0%, rgba(20, 33, 43, 0.72) 100%),
    linear-gradient(90deg, rgba(20, 33, 43, 0.56) 0%, rgba(20, 33, 43, 0.08) 72%);
}

.slide-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 540px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(20, 33, 43, 0.52);
  color: #fff;
  backdrop-filter: blur(12px);
}

.slide-tag {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.slide-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.15;
}

.slide-content p {
  margin: 12px 0 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
}

.slider-controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.slider-button,
.dot {
  border: 0;
  cursor: pointer;
}

.slider-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--surface-strong);
  font-size: 1.4rem;
  line-height: 1;
}

.slider-dots {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(20, 33, 43, 0.24);
}

.dot.is-active {
  background: var(--surface-strong);
}

.highlights,
.section,
.site-footer {
  padding: 32px 0 88px;
}

.highlights-grid,
.services-grid,
.review-grid {
  display: grid;
  gap: 18px;
}

.highlight-card,
.service-card,
.step-card,
.local-card,
.review-card,
.faq-list details,
.footer-card {
  border: 1px solid rgba(28, 36, 43, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.highlight-card,
.service-card,
.review-card {
  padding: 24px;
}

.blog-card,
.inline-cta {
  border: 1px solid rgba(28, 36, 43, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.review-card img {
  width: 72px;
  height: 72px;
  margin-bottom: 14px;
  border-radius: 50%;
  object-fit: cover;
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  padding: 20px 24px;
}

.inline-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.highlight-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: 1.35rem;
  font-weight: 700;
}

.highlight-card h2,
.section-head h2,
.process-copy h2,
.footer-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.highlight-card h2,
.service-card h3,
.step-card h3,
.faq-list summary {
  margin-bottom: 10px;
}

.section-head {
  max-width: 680px;
  margin-bottom: 28px;
}

.section-head-left {
  margin-bottom: 0;
}

.services-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card h3,
.step-card h3,
.local-card span,
.review-card span {
  font-size: 1rem;
  font-weight: 700;
}

.section-soft {
  background: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(28, 36, 43, 0.05);
  border-bottom: 1px solid rgba(28, 36, 43, 0.05);
}

.process-layout,
.local-layout,
.faq-layout,
.footer-shell {
  display: grid;
  gap: 28px;
}

.article-shell {
  display: grid;
  gap: 20px;
}

.prose {
  max-width: 760px;
  padding: 28px;
  border: 1px solid rgba(28, 36, 43, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.prose p,
.prose li {
  color: var(--muted);
  line-height: 1.85;
}

.prose h2 {
  margin: 28px 0 10px;
  font-size: 1.4rem;
  line-height: 1.25;
}

.mini-list {
  margin: 0;
  padding-left: 20px;
}

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

.blog-card {
  padding: 24px;
}

.blog-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.5;
}

.blog-card h3 a:hover {
  color: var(--accent-dark);
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.process-steps,
.local-cards,
.faq-list {
  display: grid;
  gap: 14px;
}

.step-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px;
}

.step-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--surface-strong);
  color: #fff;
  font-size: 1rem;
}

.local-card {
  padding: 22px;
}

.local-card span,
.review-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.98rem;
  font-weight: 700;
}

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

.faq-list p {
  margin: 10px 0 0;
}

.footer-copy {
  max-width: 540px;
}

.footer-card {
  padding: 26px;
}

.footer-phone {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 860px) {
  .hero-shell,
  .process-layout,
  .local-layout,
  .faq-layout,
  .footer-shell {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
  }

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

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

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .inline-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 859px) {
  .site-header {
    position: static;
  }

  .topbar {
    flex-wrap: wrap;
    padding: 16px 0;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 18px;
    order: 3;
  }

  .header-cta {
    margin-left: auto;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 20px;
  }

  .hero-slider,
  .slides {
    min-height: 460px;
  }

  .slide-content {
    left: 16px;
    right: 16px;
    bottom: 70px;
    padding: 18px;
  }

  .slider-controls {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .hero-actions .button,
  .footer-card .button {
    width: 100%;
  }

  .site-footer,
  .section,
  .highlights {
    padding-bottom: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
