:root {
  color-scheme: light;
  --ink: #111816;
  --muted: #5a6660;
  --line: #dce5df;
  --paper: #fbfcf8;
  --surface: #ffffff;
  --leaf: #8abd23;
  --leaf-dark: #4f7f22;
  --water: #21a5cf;
  --work: #202522;
  --shadow: 0 24px 70px rgba(27, 38, 34, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(33, 165, 207, 0.11), transparent 34%),
    linear-gradient(315deg, rgba(138, 189, 35, 0.14), transparent 31%),
    var(--paper);
}

a {
  color: inherit;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 24px;
  padding: 32px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(138, 189, 35, 0.42);
  border-radius: 999px;
  color: var(--leaf-dark);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(4.1rem, 11vw, 8.7rem);
  line-height: 0.86;
  letter-spacing: 0;
  color: var(--work);
}

.subtitle {
  max-width: 620px;
  margin: 24px 0 0;
  color: #35413c;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.25;
  font-weight: 650;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.services span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  color: #25302b;
  font-weight: 750;
  box-shadow: 0 10px 24px rgba(27, 38, 34, 0.06);
}

.services span::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--leaf), #63a51f);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button svg,
.contact-band svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.button:hover,
.contact-band a:hover {
  transform: translateY(-2px);
}

.primary {
  color: white;
  background: #151b18;
  box-shadow: 0 16px 34px rgba(17, 24, 22, 0.24);
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
}

.brand-panel {
  position: relative;
  min-height: 540px;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(33, 165, 207, 0.12), transparent 28%),
    radial-gradient(circle at 22% 80%, rgba(138, 189, 35, 0.14), transparent 30%),
    #ffffff;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 48px);
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.brand-panel::after {
  content: none;
}

.brand-panel img {
  width: min(100%, 520px);
  height: auto;
  min-height: 0;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(17, 24, 22, 0.1));
  pointer-events: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}

.contact-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 40px rgba(27, 38, 34, 0.08);
}

.contact-band a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 11px 14px;
  border-radius: 7px;
  color: #202a25;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
  transition: transform 160ms ease, background-color 160ms ease;
}

.contact-band a:hover {
  background: #f3f7f3;
}

@media (max-width: 900px) {
  .site-shell {
    width: min(100% - 24px, 680px);
    padding: 18px 0;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    align-content: start;
  }

  .hero-copy {
    padding-top: 18px;
  }

  .brand-panel {
    min-height: 300px;
  }

  .brand-panel img {
    width: min(100%, 360px);
  }

  .contact-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site-shell {
    min-height: auto;
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(3.15rem, 18vw, 4.15rem);
  }

  .subtitle {
    font-size: 1.12rem;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}

.intro {
  max-width: 680px;
  margin: 18px 0 0;
  color: #46534d;
  font-size: 1.05rem;
  line-height: 1.7;
}

.services a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.84);
  color: #25302b;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(27,38,34,.06);
}

.services a::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 2px;
  background: linear-gradient(135deg,var(--leaf),#63a51f);
}

.services a:hover { transform: translateY(-2px); }

.seo-content {
  padding: 36px 0 0;
}

.seo-content h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.seo-content > p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.service-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.82);
}

.service-grid h3 { margin: 0; font-size: 1.15rem; }
.service-grid h3 a { color: inherit; }
.service-grid p { margin: 9px 0 0; color: var(--muted); line-height: 1.55; }

@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .service-grid { grid-template-columns: 1fr; }
}

.page-shell { width:min(1100px,calc(100% - 32px)); margin:0 auto; padding:24px 0 50px; }
.page-header { display:flex; align-items:center; justify-content:space-between; gap:24px; padding:8px 0 28px; }
.site-brand { display:inline-flex; align-items:center; gap:10px; color:var(--work); text-decoration:none; font-weight:900; font-size:1.2rem; }
.site-brand img { width:52px; height:52px; object-fit:contain; }
.page-header nav { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:8px 16px; }
.page-header nav a { color:#35413c; text-decoration:none; font-weight:750; }
.page-header nav a:hover { text-decoration:underline; }
.content-card { max-width:850px; padding:clamp(28px,5vw,58px); border:1px solid var(--line); border-radius:16px; background:rgba(255,255,255,.9); box-shadow:var(--shadow); }
.content-card h1 { margin:0; font-size:clamp(2.7rem,7vw,5.6rem); line-height:.95; }
.content-card h2 { margin:34px 0 10px; font-size:clamp(1.5rem,3vw,2.2rem); }
.content-card p { color:#46534d; line-height:1.75; }
.content-card .lead { max-width:720px; margin:22px 0 0; font-size:1.25rem; line-height:1.6; }
.content-card address { color:#35413c; font-style:normal; line-height:1.8; font-weight:650; }
.back-link { margin-top:32px; }
.back-link a { color:var(--leaf-dark); font-weight:800; }
@media(max-width:800px){ .page-header { align-items:flex-start; flex-direction:column; } .page-header nav { justify-content:flex-start; } }


.site-footer {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 34px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.6;
}
.site-footer nav { display:flex; flex-wrap:wrap; gap:8px 18px; margin-top:8px; }
.site-footer a { color:var(--leaf-dark); font-weight:750; text-decoration:none; }
.site-footer a:hover { text-decoration:underline; }
.legal-note { padding:16px 18px; border:1px solid #e7d7a5; border-radius:10px; background:#fff9e8; color:#5b4b1f; line-height:1.65; }
.legal-list { padding-left:1.25rem; color:#46534d; line-height:1.75; }
.content-card .small { font-size:.92rem; color:var(--muted); }
.content-card h3 { margin:24px 0 8px; font-size:1.2rem; }


.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
  text-align: center;
}
.error-card {
  width: min(680px, 100%);
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
}
.error-code {
  margin: 0;
  font-size: clamp(5rem, 18vw, 9rem);
  line-height: .85;
  color: var(--work);
}
.error-card h1 {
  margin-top: 24px;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1;
}
.error-card p {
  color: #35413c;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 18px auto 28px;
  max-width: 520px;
}
.error-card .button {
  display: inline-flex;
}
.error-logo {
  width: min(180px, 45vw);
  height: auto;
  margin-bottom: 22px;
}
    
