:root {
  --bg: #f6f2ea;
  --surface: #ffffff;
  --surface-soft: #f0e8da;
  --surface-dark: #173126;
  --text: #1d2a24;
  --muted: #5a675f;
  --primary: #2d6a44;
  --primary-dark: #214f33;
  --accent: #c79646;
  --accent-soft: #f4e2c6;
  --border: #ddd4c7;
  --shadow: 0 18px 40px rgba(24, 31, 28, 0.08);
  --radius: 18px;
  --radius-lg: 28px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.topbar {
  background: var(--surface-dark);
  color: #eaf1ec;
  font-size: 0.95rem;
}

.topbar a {
  color: #f7d69f;
}

.topbar-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(221, 212, 199, 0.9);
}

.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text);
  font-weight: 800;
  font-size: 1.05rem;
}

.logo:hover {
  text-decoration: none;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 800;
}

.site-nav {
  display: flex;
  gap: 1.35rem;
  align-items: center;
}

.site-nav a {
  color: var(--text);
  font-weight: 600;
  position: relative;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--primary);
}

.site-nav a.active::after,
.site-nav a:hover::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.4rem;
  height: 2px;
  background: var(--accent);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  padding: 0.55rem 0.75rem;
  font-size: 1.25rem;
  cursor: pointer;
}

.hero,
.page-hero {
  padding: 5.4rem 0 4rem;
  background:
    radial-gradient(circle at top right, rgba(199, 150, 70, 0.14), transparent 28%),
    linear-gradient(180deg, #f5efe5 0%, var(--bg) 100%);
}

.compact-hero {
  padding: 4rem 0 3rem;
}

.hero-grid,
.split,
.card-grid,
.contact-grid,
.footer-grid,
.gallery-grid,
.testimonial-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: 1.45fr 0.95fr;
  align-items: center;
  gap: 2rem;
}

.hero-copy {
  max-width: 46rem;
}

.eyebrow,
.mini-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.82rem;
  margin-bottom: 0.85rem;
}

.mini-label {
  font-size: 0.72rem;
  color: var(--primary);
}

h1,
h2,
h3,
h4 {
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

p {
  margin-top: 0;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 48rem;
}

.centered {
  text-align: center;
  margin-inline: auto;
}

.light {
  color: #f4f6f5;
}

.hero-actions,
.cta-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.92rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.full-width {
  width: 100%;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-trust div {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(221, 212, 199, 0.8);
  border-radius: 16px;
  padding: 0.95rem;
}

.hero-trust strong,
.hero-trust span {
  display: block;
}

.hero-trust span {
  color: var(--muted);
  font-size: 0.93rem;
  margin-top: 0.25rem;
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.panel-card,
.card,
.highlight-box,
.service-item,
.cta-box,
.testimonial-card,
.gallery-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-card,
.card,
.highlight-box,
.service-item,
.testimonial-card {
  padding: 1.5rem;
}

.stat-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8f5ef 100%);
}

.note-card {
  background: linear-gradient(135deg, var(--accent-soft), #fff9ef);
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--surface-soft);
}

.section-dark {
  background: linear-gradient(180deg, #203f31 0%, #173126 100%);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.four-up {
  grid-template-columns: repeat(4, 1fr);
}

.three-up {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  height: 100%;
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.split {
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}

.align-center {
  align-items: center;
}

.rich-box {
  padding: 2rem;
}

.steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.step-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem;
}

.step-item span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  flex-shrink: 0;
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-card {
  min-height: 220px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ece4d5, #f9f7f2);
  color: var(--muted);
  font-weight: 700;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  color: #f4f6f5;
  border-color: rgba(255, 255, 255, 0.12);
}

.testimonial-card strong {
  color: #f7d69f;
}

.faq-wrap {
  display: grid;
  gap: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow);
}

summary {
  cursor: pointer;
  font-weight: 700;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  float: right;
  font-weight: 800;
  color: var(--accent);
}

details[open] summary::after {
  content: '–';
}

.service-stack {
  display: grid;
  gap: 1.2rem;
}

.service-item.enhanced {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 800;
}

.compact li {
  margin: 0;
}

.contact-grid {
  grid-template-columns: repeat(2, 1fr);
}

.wider-contact {
  align-items: stretch;
}

.emphasis-card {
  background: linear-gradient(180deg, #fffdf7 0%, #f8f2e8 100%);
}

.contact-steps {
  padding-left: 1.2rem;
  margin-top: 0;
  margin-bottom: 1.2rem;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
}

.strong-cta {
  background: linear-gradient(135deg, #f9f4ea, #fffdf9);
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
}

.footer-grid {
  padding: 2rem 0 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 0.55rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1rem 0 2rem;
}

ol,
ul {
  margin-bottom: 0;
}

@media (max-width: 1000px) {
  .four-up,
  .gallery-grid,
  .testimonial-grid,
  .hero-trust {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .topbar-inner,
  .cta-box,
  .service-item.enhanced,
  .hero-grid,
  .split,
  .card-grid,
  .contact-grid,
  .footer-grid,
  .gallery-grid,
  .testimonial-grid,
  .hero-trust {
    grid-template-columns: 1fr;
  }

  .topbar-inner,
  .cta-box {
    display: grid;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 4%;
    right: 4%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a.active::after,
  .site-nav a:hover::after {
    display: none;
  }
}
