/* Basic reset */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif; color: #101214; background: #fff; }

:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #6b7280;
  --brand: #3caa3c; /* farm green */
  --brand-600: #2c8c2c;
  --accent: #f4b603; /* warm yellow */
  --border: #e5e7eb;
}

.container { max-width: 1000px; padding: 0 16px; margin: 0 auto; }

.site-header { position: sticky; top: 0; background: var(--bg); border-bottom: 1px solid var(--border); z-index: 2; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-size: 20px; margin: 0; }
.nav a { margin-left: 16px; color: var(--text); text-decoration: none; font-weight: 600; }
.nav a:hover { color: var(--brand); }

.hero {
  padding: 64px 0;
  background-image:
    linear-gradient(var(--hero-overlay-top, rgba(0,0,0,0.6)), var(--hero-overlay-bottom, rgba(0,0,0,0.4))),
    var(--hero-image, url("assets/oldsite/Umk3KQLjzNZ_6Qswglncm.png"));
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
}
.hero h2 { font-size: 40px; margin: 0 0 12px; }
.hero h2 { color: #ffffff; text-shadow: 0 1px 2px rgba(0,0,0,.6); }
.hero p { color: #e5e7eb; max-width: 720px; text-shadow: 0 1px 2px rgba(0,0,0,.5); }

@media (max-width: 640px) {
  .hero { background-position: center top; padding: 48px 0; }
  .hero h2 { font-size: 32px; }
}
.lead { color: #374151; }
.hero .lead { color: #e5e7eb; }
.hero .muted, .hero .en { color: #f3f4f6; opacity: 0.9; }

.button { display: inline-block; padding: 10px 16px; border: 1px solid var(--border); border-radius: 10px; background: #fff; color: var(--text); text-decoration: none; font-weight: 600; }
.button:hover { border-color: var(--brand); color: var(--brand); }
.button.primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.button.primary:hover { background: var(--brand-600); border-color: var(--brand-600); color: #fff; }
.cta-row { display: flex; gap: 12px; align-items: center; margin-top: 16px; flex-wrap: wrap; }

section { padding: 40px 0; }
h3 { margin: 0 0 12px; font-size: 24px; }
.muted { color: var(--muted); }
.tiny { font-size: 12px; }
.hidden { display: none; }

form { margin-top: 16px; }
label span { display: block; font-weight: 600; margin-bottom: 6px; }
input, textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: 8px; font: inherit; }
input:focus, textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(14,165,233,.15); }
label.block { display: block; margin-top: 10px; }
.grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 720px) { .grid { grid-template-columns: 1fr 1fr; } }
.fineprint { margin: 10px 0; color: var(--muted); }

.form-type-switch { display: flex; gap: 8px; margin-top: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.chip { border: 1px solid var(--border); background: #fff; color: var(--text); padding: 6px 10px; border-radius: 999px; font-weight: 600; cursor: pointer; }
.chip:hover { border-color: var(--brand); color: var(--brand); }
.chip.active { background: var(--brand); color: #fff; border-color: var(--brand); }

.process .steps { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 720px) { .process .steps { grid-template-columns: repeat(3, 1fr); } }
.process .step { display: flex; gap: 12px; align-items: flex-start; padding: 12px; border: 1px solid var(--border); border-radius: 12px; background: #fff; }
.process .num { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: #111827; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }

.gallery .media-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.gallery figure { margin: 0; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: #fff; }
.gallery img, .gallery video { display: block; width: 100%; height: 220px; object-fit: cover; background: #f9fafb; }
.gallery figcaption { padding: 8px 10px; color: var(--muted); font-size: 14px; }
.gallery figure.video video { height: 220px; }

.faq details { border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; margin: 10px 0; }
.faq summary { cursor: pointer; font-weight: 600; }

.site-footer { border-top: 1px solid var(--border); padding: 16px 0; color: var(--muted); }
.site-footer .container { display: flex; justify-content: space-between; align-items: center; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: var(--brand); }

.map-frame { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.map-frame iframe { width: 100%; height: 320px; border: 0; display: block; }
