:root {
  --bg: #f8f7f2;
  --surface: #ffffff;
  --text: #272720;
  --muted: #646255;
  --brand: #215f58;
  --brand-dark: #193f3d;
  --accent: #cf6a2b;
  --border: #ddd8c9;
  --radius: 14px;
  --shadow: 0 16px 36px rgba(33, 42, 51, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  background: var(--brand-dark);
  color: #d3efe8;
  font-size: 0.9rem;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: #fff;
  font-weight: 700;
}

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

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-size: 1.15rem;
  font-weight: 800;
}

.brand span {
  color: var(--brand);
}

nav {
  display: flex;
  gap: 1.2rem;
  color: var(--muted);
  font-weight: 500;
}

nav a:hover {
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.72rem 1.25rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-solid {
  background: var(--brand);
  color: #fff;
}

.btn-solid:hover {
  background: var(--brand-dark);
}

.btn-outline {
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(31, 109, 94, 0.08);
}

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

.hero {
  padding: 4.2rem 0 3.2rem;
  background: radial-gradient(circle at 8% 15%, #fff6db 0, rgba(255, 246, 219, 0) 38%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0 0 0.7rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-actions {
  margin: 1.3rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-points {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.hero-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
}

.facts article {
  padding: 0.9rem;
  text-align: center;
}

.facts article + article {
  border-left: 1px solid var(--border);
}

.fact-value {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.fact-label {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.section {
  padding: 4rem 0;
}

.alt {
  background: #ecefe6;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.grid {
  margin-top: 1.3rem;
  display: grid;
  gap: 1rem;
}

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

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

.card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.15rem;
}

#services .grid-3 .card:nth-child(2) {
  transform: translateY(18px);
}

#services .grid-3 .card:nth-child(3) {
  transform: translateY(34px);
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card-media {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.card-media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.photo-badge {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  background: rgba(23, 78, 68, 0.9);
  color: #fff;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.4rem 0.75rem;
}

.highlight {
  border-left: 4px solid var(--accent);
}

#process .grid-3 {
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

#process .highlight {
  border-left: 0;
  border-top: 4px solid var(--accent);
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 1rem;
}

#process .highlight h3 {
  margin: 0;
}

.cta {
  padding-top: 0;
}

.cta-inner {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  color: #fff;
  border-radius: var(--radius);
  text-align: center;
  padding: 2.2rem 1.4rem;
}

.cta-inner p {
  margin: 0.4rem 0 1.2rem;
  color: rgba(255, 255, 255, 0.86);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #fdfcf8;
}

.footer-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.93rem;
}

.footer-inner a {
  color: var(--brand);
}

@media (max-width: 920px) {
  .nav {
    min-height: 62px;
  }

  .hero {
    padding: 0.9rem 0 2.2rem;
  }

  nav {
    display: none;
  }

  .nav .btn {
    display: none;
  }

  .hero-grid,
  .grid-3,
  .grid-2,
  .facts {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 2.8rem 0;
  }

  #services .grid-3 .card:nth-child(2),
  #services .grid-3 .card:nth-child(3) {
    transform: none;
  }

  #process .highlight {
    grid-template-columns: 1fr;
  }

  .facts article + article {
    border-left: 0;
    border-top: 1px solid var(--border);
  }
}
