:root {
  --bg: #f6f8f3;
  --surface: #ffffff;
  --surface-alt: #eef4ea;
  --text: #18221b;
  --muted: #526055;
  --line: #dce6d9;
  --primary: #2f7d32;
  --primary-dark: #235c25;
  --accent: #a3d977;
  --shadow: 0 18px 45px rgba(24,34,27,0.08);
  --radius: 22px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
a { color: var(--primary-dark); text-decoration: none; }
a:hover { color: var(--primary); }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,248,243,0.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220,230,217,0.8);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 82px; }
.brand img { height: 60px; width: auto; }
.site-nav { display: flex; gap: 24px; align-items: center; }
.site-nav a { font-weight: 600; color: var(--text); }
.site-nav a.active, .site-nav a:hover { color: var(--primary); }
.nav-toggle {
  display: none; border: 1px solid var(--line); background: var(--surface);
  padding: 10px 14px; border-radius: 12px; font-size: 20px; cursor: pointer;
}
.hero {
  position: relative; overflow: hidden; min-height: 82vh; display: grid; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(18,29,20,0.78), rgba(33,72,36,0.52)), url('../img/hero.webp') center/cover no-repeat;
}
.hero-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 36px; padding: 72px 0; }
.hero-copy h1, .page-hero h1 { font-size: clamp(2.3rem, 5vw, 4.4rem); line-height: 1.05; margin: 0 0 18px; }
.hero-copy p { color: rgba(255,255,255,0.9); font-size: 1.08rem; max-width: 62ch; }
.hero-copy { color: #fff; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px;
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; font-weight: 800;
  color: var(--accent);
}
.hero-actions, .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; padding: 14px 22px;
  border-radius: 999px; font-weight: 700; transition: transform .2s ease, background .2s ease, color .2s ease;
<a class="btn btn-secondary" href="https://www.instagram.com/green_lama_/" target="_blank">Instagram</a>
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-secondary { background: #fff; color: var(--text); }
.btn-secondary:hover { background: #eef4ea; color: var(--text); }
.glass {
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.24); color: #fff;
  box-shadow: var(--shadow); backdrop-filter: blur(16px); border-radius: var(--radius); padding: 28px;
}
.hero-card { align-self: center; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.18); }
.contact-list li:last-child { border-bottom: 0; }
.section { padding: 88px 0; }
.section-alt { background: var(--surface-alt); }
.section-heading { max-width: 760px; margin-bottom: 30px; }
.section-heading h2, .split h2, .cta-box h2, .legal-text h1, .legal-text h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.1; margin: 0 0 16px; }
.grid { display: grid; gap: 22px; }
.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
}
.card h3, .card h2 { margin-top: 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: center; }
.image-stack { position: relative; min-height: 440px; }
.image-stack > img:first-child, .rounded {
  width: 100%; height: 100%; object-fit: cover; border-radius: calc(var(--radius) + 6px); box-shadow: var(--shadow);
}
.image-stack .floating {
  position: absolute; right: -24px; bottom: -26px; width: 160px; background: #fff;
  padding: 10px; border-radius: 20px; box-shadow: var(--shadow);
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px;
}
.gallery-grid img, .media-card img {
  width: 100%; height: 280px; object-fit: cover; border-radius: 18px;
}
.media-card { padding: 16px; }
.media-card div { padding: 10px 8px 2px; }
.page-hero {
  padding: 92px 0 36px; background: linear-gradient(180deg, rgba(163,217,119,0.16), rgba(246,248,243,0));
}
.page-hero.slim h1 { font-size: clamp(2rem, 4vw, 3.3rem); }
.cta-box {
  background: linear-gradient(135deg, #1f4d22, #2f7d32); color: #fff; border-radius: calc(var(--radius) + 10px);
  padding: 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.text-link { font-weight: 700; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px; }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; font-weight: 600; }
input, textarea {
  width: 100%; padding: 14px 16px; border-radius: 14px; border: 1px solid var(--line);
  background: #fff; font: inherit;
}
.notice { padding: 14px 16px; border-radius: 14px; margin-bottom: 16px; }
.notice.success { background: #e7f6e8; color: #17501a; }
.notice.error { background: #fdecec; color: #8d2020; }
.stats-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
}
.stat span { display: block; color: var(--muted); margin-bottom: 8px; }
.stat strong { font-size: 1.35rem; }
.legal-text { max-width: 900px; }
.legal-text h2 { margin-top: 34px; font-size: 1.5rem; }
.site-footer {
  background: #18221b; color: rgba(255,255,255,0.85); padding-top: 58px;
}
.footer-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 30px; }
.site-footer a { color: #dff1d6; }
.footer-bottom { padding: 18px 0 28px; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 28px; }

@media (max-width: 980px) {
  .hero-content, .split, .contact-grid, .cards-2, .cards-4, .stats-grid, .footer-grid, .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-content { align-items: end; }
}
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute; top: 82px; left: 16px; right: 16px; background: rgba(255,255,255,0.98);
    border: 1px solid var(--line); border-radius: 18px; padding: 18px; box-shadow: var(--shadow);
    display: none; flex-direction: column; align-items: flex-start;
  }
  .site-nav.open { display: flex; }
  .hero-content, .split, .contact-grid, .cards-2, .cards-4, .stats-grid, .footer-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 68px 0; }
  .cta-box { padding: 28px; }
  .hero { min-height: auto; }
  .hero-content { padding: 54px 0; }
  .image-stack { min-height: auto; }
  .image-stack .floating { width: 120px; right: 8px; bottom: 8px; }
}
.insta-link {
  display: inline-flex; align-items: center; gap: 6px; 
  font-weight: 600; color: #e4405f; text-decoration: none;
}
.insta-link:hover { color: #c13584; }
.site-footer svg { vertical-align: middle; }

