:root {
  --bg: #ffffff;
  --bg-alt: #f6f1e8;
  --bg-dark: #0f0f0f;
  --text: #121212;
  --muted: #666666;
  --line: #ddd2c2;
  --accent: #e7d8c2;
  --accent-dark: #b7a58c;
  --card: #fffdf9;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) - 6px);
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

h1, h2, h3 {
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.2rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: #fff;
  padding: .75rem 1rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0,0,0,.06);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: .85rem;
  min-width: 0;
}

.logo strong,
.logo small {
  display: block;
}

.logo strong {
  font-size: 1rem;
}

.logo small {
  font-size: .78rem;
  color: var(--muted);
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--bg-dark);
  color: #fff;
  font-weight: 700;
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: .4rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  color: #1b1b1b;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--accent);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--bg-alt);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #111;
  margin: 4px auto;
}

.hero,
.page-hero {
  padding: 4.5rem 0 2rem;
}

.hero {
  background: linear-gradient(180deg, #fff 0%, #fcfaf7 100%);
}

.hero-grid,
.two-col,
.grid-2,
.grid-3,
.footer-grid,
.media-block,
.align-center {
  display: grid;
  gap: 1.5rem;
}

.hero-grid,
.two-col,
.footer-grid,
.media-block,
.align-center {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-copy,
.page-hero .container {
  align-self: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .8rem;
  border-radius: 999px;
  background: var(--bg-alt);
  color: #37342f;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.08rem;
  color: #383838;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin: 1.6rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .95rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--bg-dark);
  color: #fff;
}

.btn-primary:hover {
  background: #262626;
}

.btn-secondary {
  background: var(--accent);
  color: #111;
}

.btn-secondary:hover {
  background: #d8c6ad;
}

.trust-list,
.footer-list,
.data-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.trust-list li,
.footer-list li,
.data-list li {
  padding: .45rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.section {
  padding: 4.25rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 1.75rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.info-card,
.service-card,
.offer-box,
.testimonial-card,
.media-card,
.company-card,
.contact-box,
.map-placeholder {
  height: 100%;
}

.testimonials-grid p,
.large-testimonial p {
  font-size: 1.05rem;
}

.large-testimonial span {
  color: var(--muted);
  display: block;
  margin-top: .35rem;
}

.company-card .microcopy {
  color: var(--muted);
  font-size: .95rem;
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  margin-bottom: .75rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-item {
  position: relative;
  padding-top: 4.3rem;
}

.step {
  position: absolute;
  left: 1.4rem;
  top: 1.2rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-dark);
  color: #fff;
  font-weight: 700;
}

.site-footer {
  background: var(--bg-dark);
  color: #fff;
  padding: 4rem 0 1.4rem;
}

.site-footer .btn-primary {
  background: var(--accent);
  color: #111;
}

.site-footer .btn-primary:hover {
  background: #d7c3a7;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 2rem;
  padding-top: 1.25rem;
  color: rgba(255,255,255,.78);
  font-size: .95rem;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: rgba(0,0,0,.06);
  padding: .1rem .35rem;
  border-radius: 6px;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .grid-2,
  .grid-3,
  .footer-grid,
  .media-block,
  .align-center,
  .timeline {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid rgba(0,0,0,.06);
    padding: .5rem 1rem 1rem;
    display: none;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a {
    justify-content: flex-start;
    border-radius: 14px;
  }

  .nav-toggle {
    display: inline-block;
  }
}

@media (max-width: 640px) {
  .hero,
  .page-hero,
  .section,
  .site-footer {
    padding-top: 3rem;
  }

  .container {
    width: min(100% - 1.2rem, var(--container));
  }

  .card {
    padding: 1.1rem;
  }

  .logo {
    max-width: calc(100% - 64px);
  }

  .logo strong {
    font-size: .96rem;
  }

  .logo small {
    font-size: .72rem;
  }
}