:root {
	--primary: #1f7a1f;
	--accent: #ff7a00;
	--neutral: #ffffff;
	--text: #1f2937;
	--muted: #6b7280;
	--bg: #f8fafc;
	--ring: rgba(31, 122, 31, 0.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji"; color: var(--text); background: var(--bg); }

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 16px; }

.site-header { background: var(--neutral); border-bottom: 1px solid #e5e7eb; position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-toggle { display:none; background: #ffffff; border: 1px solid #e5e7eb; padding: 8px; border-radius: 10px; width: 44px; height: 44px; align-items:center; justify-content:center; box-shadow: 0 2px 8px rgba(0,0,0,0.06); cursor: pointer; }
.nav-toggle:focus-visible { outline: 3px solid var(--ring); }
.nav-toggle .bar { display:block; width: 22px; height: 2.5px; background:#0f172a; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle .bar + .bar { margin-top: 5px; }
.nav-toggle.open .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open .bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.brand { color: var(--primary); font-weight: 300; text-decoration: none; font-size: 20px; letter-spacing: 0.2px; }
.main-nav ul { display: flex; gap: 16px; list-style: none; padding: 0; margin: 0; }
.main-nav a { color: var(--text); text-decoration: none; padding: 8px 10px; border-radius: 8px; transition: background .2s ease, transform .2s ease; }
.main-nav a:hover { background: #eef2ff; transform: translateY(-1px); }

.site-main { padding: 32px 0; }
.hero-cover { position: relative; height: 60vh; min-height: 400px; background: linear-gradient(135deg, rgba(31,122,31,0.8), rgba(255,122,0,0.6)), url('assets/hero-cover.jpg'); background-size: cover; background-position: center; background-attachment: fixed; display: flex; align-items: center; justify-content: center; margin: -32px 0 32px 0; }
.hero-cover-content { text-align: center; color: white; max-width: 800px; padding: 0 20px; }
.hero-cover h1 { font-size: 48px; margin: 0 0 16px; font-weight: 800; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.hero-cover .lead { font-size: 22px; margin: 0 0 24px; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.hero-cover .cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; align-items: center; background: linear-gradient(135deg, rgba(31,122,31,.06), rgba(255,122,0,.06)); border: 1px solid #e5e7eb; padding: 24px; border-radius: 16px; }
.hero h1 { font-size: 36px; margin: 0 0 8px; }
.hero p { color: var(--muted); font-size: 18px; }
.hero .cta { display: flex; gap: 12px; margin-top: 20px; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 12px; border: 1px solid transparent; cursor: pointer; text-decoration: none; font-weight: 700; transition: transform .15s ease, box-shadow .15s ease, filter .15s ease; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.btn.primary { background: var(--primary); color: #fff; }
.btn.secondary { background: #fff; border-color: #e5e7eb; color: var(--text); }
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,0.08); }
.btn.primary:hover { filter: brightness(0.96); }

.cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 24px; }
.card { background: #fff; padding: 18px; border: 1px solid #eef2f7; border-radius: 14px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; box-shadow: 0 2px 10px rgba(15,23,42,0.04); }
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(15,23,42,0.08); border-color: #e5e7eb; }
.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); }

/* Image galleries */
.gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.gallery img { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; border: 1px solid #e5e7eb; transition: transform .25s ease, box-shadow .25s ease; box-shadow: 0 2px 6px rgba(0,0,0,0.06); }
.gallery img:hover { transform: scale(1.02); box-shadow: 0 12px 20px rgba(0,0,0,0.10); }

@media (max-width: 900px) {
	.hero-cover { height: 50vh; min-height: 350px; background-attachment: scroll; }
	.hero-cover h1 { font-size: 36px; }
	.hero-cover .lead { font-size: 18px; }
	.hero { grid-template-columns: 1fr; }
	.cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
	.hero-cover { height: 45vh; min-height: 300px; }
	.hero-cover h1 { font-size: 28px; }
	.hero-cover .lead { font-size: 16px; }
	.hero-cover .cta { flex-direction: column; align-items: center; }
	.header-inner { height: auto; padding: 12px 0; align-items: flex-start; gap: 12px; }
	.nav-toggle { display:inline-flex; }
	.main-nav { display:none; width: 100%; }
	.main-nav.open { display:block; }
	.main-nav ul { flex-direction: column; gap: 8px; padding-top: 8px; }
	.hero h1 { font-size: 28px; }
	.cards { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: 1fr; }
}

/* Tablet refinements */
@media (max-width: 1200px) and (min-width: 901px) {
	.cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.site-footer { background: #0b1220; color: #cbd5e1; padding: 28px 0; margin-top: 48px; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.footer-dev { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; color: #94a3b8; }
.footer-dev img { height: 20px; width: auto; }
.newsletter { display: flex; gap: 8px; align-items: center; }
.newsletter input { padding: 10px 12px; border-radius: 6px; border: 1px solid #334155; background: #0f172a; color: #e5e7eb; }
.newsletter button { padding: 10px 14px; border-radius: 6px; background: var(--accent); color: #111827; border: 0; cursor: pointer; font-weight: 700; }
.newsletter-message { font-size: 14px; color: #93c5fd; }
.social-links { display: flex; gap: 12px; list-style: none; padding: 0; margin: 0; }
.social-links a { color: #e2e8f0; text-decoration: none; display: flex; align-items: center; gap: 6px; padding: 6px 8px; border-radius: 6px; transition: background .2s ease; }
.social-links a:hover { background: rgba(255,255,255,0.1); text-decoration: none; }
.social-links img { width: 16px; height: 16px; }
.social-links span { font-size: 12px; }

.section { margin: 28px 0; }
.section h2 { margin: 0 0 12px; font-size: 24px; }
.lead { font-size: 18px; color: var(--muted); }

/* Focus ring */
:focus-visible { outline: 3px solid var(--ring); outline-offset: 3px; border-radius: 8px; }

/* Badges/Pills */
.pill { display:inline-block; padding:6px 10px; border-radius:999px; background:#eef2ff; color:#1e293b; font-weight:600; font-size:12px; border:1px solid #e5e7eb; }

/* Contact */
.contact-form { display: grid; gap: 12px; max-width: 640px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 10px 12px; border-radius: 8px; border: 1px solid #e5e7eb; background: #fff; }
.contact-form button { width: fit-content; }

