/* Design #5863 — Organic & Natural */
/* Palette: charcoal #1c1c1a · ice white #f0f0e8 · lime #b8f04a */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,600;12..96,800&family=Inter:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #1c1c1a;
  --bg2:      #252523;
  --bg3:      #2e2e2b;
  --text:     #f0f0e8;
  --muted:    #9a9a92;
  --lime:     #b8f04a;
  --lime-dim: rgba(184,240,74,.15);
  --lime-mid: rgba(184,240,74,.35);
  --radius:   16px;
  --radius-sm:8px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { max-width: 68ch; }
a  { color: var(--lime); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { font-weight: 500; color: var(--text); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 2.5rem;
  background: rgba(28,28,26,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,240,74,.08);
}
.nav-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.15rem; font-weight: 800;
  color: var(--text); letter-spacing: -.02em;
}
.nav-logo span { color: var(--lime); }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  color: var(--muted); font-size: .9rem; font-weight: 400;
  letter-spacing: .02em; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--lime); text-decoration: none; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; place-items: center;
  position: relative; overflow: hidden;
  padding: 8rem 2.5rem 5rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(184,240,74,.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(184,240,74,.04) 0%, transparent 60%),
    var(--bg);
}
/* geometric shapes */
.hero-bg::before {
  content: '';
  position: absolute; top: 15%; right: 8%;
  width: 340px; height: 340px;
  border: 1px solid rgba(184,240,74,.12);
  border-radius: 50%;
}
.hero-bg::after {
  content: '';
  position: absolute; bottom: 10%; left: 6%;
  width: 220px; height: 220px;
  border: 1px solid rgba(184,240,74,.08);
  transform: rotate(30deg);
}
.hero-geo {
  position: absolute; top: 30%; right: 12%;
  width: 180px; height: 180px;
  border: 1px solid rgba(184,240,74,.1);
  border-radius: var(--radius);
  transform: rotate(-15deg);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1100px; width: 100%;
}
.hero-label {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 1.8rem;
}
.hero-label::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--lime);
}
.hero-title { margin-bottom: 1.8rem; }
.hero-title em { font-style: normal; color: var(--lime); }
.hero-desc {
  font-size: 1.15rem; color: var(--muted);
  max-width: 55ch; margin-bottom: 3rem; line-height: 1.8;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: .7rem;
  background: var(--lime); color: #1c1c1a;
  padding: .9rem 2rem; border-radius: var(--radius);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: .95rem;
  transition: opacity .2s, transform .2s;
}
.hero-cta:hover { opacity: .9; transform: translateY(-2px); text-decoration: none; }
.hero-cta-secondary {
  display: inline-flex; align-items: center; gap: .7rem;
  border: 1px solid rgba(240,240,232,.2); color: var(--text);
  padding: .9rem 2rem; border-radius: var(--radius);
  font-size: .95rem; margin-left: 1rem;
  transition: border-color .2s;
}
.hero-cta-secondary:hover { border-color: var(--lime); text-decoration: none; color: var(--lime); }
.hero-img {
  position: absolute; right: 0; bottom: 0; top: 0;
  width: 44%; object-fit: cover;
  border-radius: var(--radius) 0 0 var(--radius);
  opacity: .35;
}

/* ── CORNER DETAIL ── */
.corner-detail {
  position: relative;
}
.corner-detail::before, .corner-detail::after {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
  border-color: rgba(184,240,74,.3);
  border-style: solid;
}
.corner-detail::before { top: -8px; left: -8px; border-width: 2px 0 0 2px; }
.corner-detail::after  { bottom: -8px; right: -8px; border-width: 0 2px 2px 0; }

/* ── SECTIONS ── */
section { padding: 6rem 2.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 1rem;
}
.section-label::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--lime);
}

/* ── BADGE NUMBERS ── */
.badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--lime-mid);
  border-radius: 50%;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .8rem; font-weight: 700;
  color: var(--lime);
  flex-shrink: 0;
}

/* ── CARDS ── */
.cards { display: grid; gap: 1.5rem; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--bg2);
  border-radius: var(--radius);
  border: 1px solid rgba(240,240,232,.06);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: var(--lime-mid); transform: translateY(-3px); }
.card-img { width: 100%; height: 220px; object-fit: cover; display: block; }
.card-body { padding: 1.8rem; }
.card-num { margin-bottom: 1rem; }
.card-title { margin: .5rem 0 .8rem; }
.card-text { color: var(--muted); font-size: .95rem; }
.card-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .85rem; color: var(--lime); margin-top: 1.2rem;
  font-weight: 500;
}
.card-link::after { content: '→'; }

/* ── FEATURE STRIP ── */
.feature-strip {
  display: flex; gap: 2rem;
  overflow-x: auto; padding-bottom: 1rem;
  scrollbar-width: none;
}
.feature-strip::-webkit-scrollbar { display: none; }
.feat {
  flex: 0 0 280px;
  background: var(--bg2);
  border-radius: var(--radius);
  border: 1px solid rgba(240,240,232,.06);
  padding: 2rem;
}

/* ── IMAGE BLOCKS ── */
.img-block {
  width: 100%; border-radius: var(--radius);
  object-fit: cover; display: block;
}
.img-caption {
  font-size: .8rem; color: var(--muted);
  margin-top: .6rem; text-align: center;
}

/* ── SPLIT LAYOUT ── */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

/* ── FULL-WIDTH BANNER ── */
.banner {
  background: var(--lime);
  color: #1c1c1a;
  border-radius: var(--radius);
  padding: 3rem 3.5rem;
}
.banner h2, .banner h3 { color: #1c1c1a; }
.banner p { color: rgba(28,28,26,.75); }
.banner-link {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #1c1c1a; color: var(--lime);
  padding: .75rem 1.7rem; border-radius: var(--radius-sm);
  font-weight: 700; margin-top: 1.5rem; font-size: .9rem;
}
.banner-link:hover { opacity: .85; text-decoration: none; }

/* ── LIST ── */
.prose-list {
  list-style: none; display: flex; flex-direction: column; gap: .8rem;
}
.prose-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 1.2rem;
  background: var(--bg2); border-radius: var(--radius-sm);
  border-left: 3px solid var(--lime);
}
.prose-list li strong { display: block; margin-bottom: .2rem; font-size: .95rem; }
.prose-list li span { color: var(--muted); font-size: .9rem; }

/* ── STAT BOXES ── */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.stat {
  background: var(--bg2); border-radius: var(--radius);
  padding: 1.8rem; text-align: center;
  border: 1px solid rgba(240,240,232,.06);
}
.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.5rem; font-weight: 800;
  color: var(--lime); line-height: 1;
  display: block; margin-bottom: .4rem;
}
.stat-label { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

/* ── FOOTER ── */
.footer {
  background: var(--bg2);
  border-top: 1px solid rgba(240,240,232,.06);
  padding: 3.5rem 2.5rem 2rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
}
.footer-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.2rem; font-weight: 800;
  color: var(--text); margin-bottom: .8rem;
}
.footer-logo span { color: var(--lime); }
.footer-desc { color: var(--muted); font-size: .9rem; max-width: 32ch; }
.footer-col h4 { margin-bottom: 1rem; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a { color: var(--muted); font-size: .9rem; }
.footer-col ul a:hover { color: var(--lime); text-decoration: none; }
.footer-bottom {
  max-width: 1200px; margin: 2.5rem auto 0;
  border-top: 1px solid rgba(240,240,232,.06);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: .8rem; color: var(--muted); }

/* ── PROSE ── */
.prose h2 { margin: 2.5rem 0 1rem; }
.prose h3 { margin: 2rem 0 .8rem; }
.prose p  { margin-bottom: 1.2rem; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.prose li { margin-bottom: .4rem; color: var(--muted); }

/* ── PAGE HEADER ── */
.page-header {
  padding: 9rem 2.5rem 5rem;
  position: relative; overflow: hidden;
}
.page-header-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(184,240,74,.06) 0%, transparent 65%), var(--bg);
}
.page-header-bg::before {
  content: '';
  position: absolute; bottom: 0; right: 5%;
  width: 300px; height: 300px;
  border: 1px solid rgba(184,240,74,.1);
  border-radius: 50%;
}
.page-header-inner {
  position: relative; z-index: 2;
  max-width: 860px;
}

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; }
.info-block { display: flex; flex-direction: column; gap: 1.5rem; }
.info-item {
  background: var(--bg2); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid rgba(240,240,232,.06);
}
.info-item h4 { margin-bottom: .4rem; }
.info-item p { color: var(--muted); font-size: .9rem; }
.form-grid { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label { font-size: .85rem; color: var(--muted); }
.form-group input, .form-group textarea, .form-group select {
  background: var(--bg2); border: 1px solid rgba(240,240,232,.12);
  color: var(--text); border-radius: var(--radius-sm);
  padding: .9rem 1.1rem; font-family: 'Inter', sans-serif; font-size: .95rem;
  outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--lime-mid);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  background: var(--lime); color: #1c1c1a;
  padding: .9rem 2.2rem; border-radius: var(--radius);
  border: none; cursor: pointer;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .95rem; font-weight: 700;
  transition: opacity .2s; width: fit-content;
}
.btn-submit:hover { opacity: .88; }

/* ── BREADCRUMB ── */
.bc { list-style:none; display:flex; gap:.4rem; align-items:center; flex-wrap:wrap; font-size:.8rem; margin-bottom:1.6rem; }
.bc li { color:var(--muted); }
.bc li+li::before { content:'›'; padding-right:.3rem; color:rgba(184,240,74,.5); }
.bc a { color:var(--muted); }
.bc a:hover { color:var(--lime); text-decoration:none; }
.bc li:last-child { color:var(--lime); }
.page-meta { font-size:.78rem; color:var(--muted); margin-top:1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-reverse { direction: ltr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-img { display: none; }
}
@media (max-width: 620px) {
  .nav { padding: 1rem 1.2rem; }
  .nav-links { gap: 1.2rem; }
  section { padding: 4rem 1.2rem; }
  .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 7rem 1.2rem 4rem; }
}
