:root{
  --bg: #fff8f5;
  --surface: #ffffff;
  --text: #0b0b0b;
  --muted: #555555;
  --green: #ebb400;
  --gold: #d4af37;
  --card-shadow: rgba(11,12,12,0.06);
  --radius: 10px;
  --max-width: 1100px;
  --transition: 220ms ease;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

:root[data-theme="dark"]{
  --bg: #0b0b0b;
  --surface: #0f1512;
  --text: #e8e6e2;
  --muted: #bfc1b5;
  --green: #ebb400;
  --gold: #d4af37;
  --card-shadow: rgba(0,0,0,0.6);
}

* { box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: linear-gradient(180deg,var(--bg) 0%, color-mix(in srgb, var(--bg) 95%, #000 5%) 100%);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.6;
  transition: background var(--transition), color var(--transition);
}

.container{
  width:90%;
  max-width:var(--max-width);
  margin:0 auto;
}

/* Header */
.site-header{
  background: linear-gradient(90deg, rgba(0,0,0,0.02), rgba(0,0,0,0.01));
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 0;
}
.brand{
  font-weight:800;
  color:var(--text);
  text-decoration:none;
  font-size:1.125rem;
  letter-spacing:0.2px;
}
.header-right{ display:flex; align-items:center; gap:12px; }

.nav{
  display:flex;
  gap:14px;
  align-items:center;
}
.nav a{
  color:var(--muted);
  text-decoration:none;
  font-weight:600;
  padding:8px 10px;
  border-radius:8px;
}
.nav a:hover{ color:var(--green); background: color-mix(in srgb, var(--green) 10%, transparent); transition: var(--transition); }

/* Theme toggle & menu */
.theme-toggle{
  background: linear-gradient(180deg, color-mix(in srgb, var(--gold) 12%, transparent), transparent);
  border: 1px solid rgba(0,0,0,0.06);
  padding:8px;
  border-radius:8px;
  cursor:pointer;
}
.menu-toggle{ display:none; background:transparent; border:none; font-size:1.25rem; cursor:pointer; }

/* HERO: logo as blurred background via ::before; small logo under title */
.hero{
  padding:64px 0;
  position:relative;
  overflow:visible;
  z-index:1;
  min-height: 360px;
  display:flex;
  align-items:center;
}





/* hero content above background */
.hero-inner{
  position: relative;
  z-index: 2;
  display:flex;
  gap:28px;
  align-items:stretch;
  width:100%;
}
.hero-left{ flex:1; }
.hero-right{ width:360px; }

.lede{ color:var(--muted); font-size:1.05rem; margin-top:10px; }

/* Small clean logo under the H1 */
.hero-logo-small{
  display:block;
  width:84px;                 /* small and clean */
  max-width:18%;
  height:auto;
  margin-top:10px;
  margin-bottom:8px;
  object-fit:contain;
  border-radius:6px;
  background: rgba(0, 0, 0, 0);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0);
  z-index: 3;
}

/* Buttons */
.button{
  display:inline-block;
  background: linear-gradient(180deg, var(--green), color-mix(in srgb,var(--green) 80%, black 5%));
  color: #fff;
  padding:10px 18px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  box-shadow: 0 6px 18px rgba(15,30,20,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
}
.button:hover{ transform: translateY(-3px); box-shadow: 0 10px 24px rgba(15,30,20,0.14); }
.button.outline{
  background: transparent;
  color: var(--text);
  border: 2px solid color-mix(in srgb,var(--gold) 20%, transparent);
}

/* Card / sections */
.section{ padding:44px 0; }
.card{ background:var(--surface); padding:18px; border-radius:var(--radius); box-shadow: 0 6px 18px var(--card-shadow); }
.card.highlight{ border-left:4px solid var(--gold); }

/* layout helpers */
.split{ display:flex; gap:20px; align-items:flex-start; }
.split .box{ background:linear-gradient(180deg, rgba(212,175,55,0.06), transparent); padding:14px; border-radius:10px; min-width:220px; }

.grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:18px; }
.grid.small{ grid-template-columns:repeat(3,1fr); }
.person .person-photo{ width:64px; height:64px; border-radius:12px; background:linear-gradient(135deg,var(--green),var(--gold)); color:white; display:flex; align-items:center; justify-content:center; font-weight:800; margin-bottom:10px; box-shadow:0 8px 20px rgba(0,0,0,0.12); }

/* timeline */
.timeline{ display:flex; gap:12px; margin-top:18px; }
.timeline-item{ background:var(--surface); padding:12px; border-radius:8px; box-shadow:0 6px 16px var(--card-shadow); flex:1; }

/* FAQ */
.faq{ margin-top:16px; display:block; }
.faq-q{ width:100%; text-align:left; padding:12px 14px; background:transparent; border:none; border-radius:8px; font-weight:700; cursor:pointer; display:flex; justify-content:space-between; align-items:center; color:var(--text); }
.faq-a{ padding:12px 14px; display:none; color:var(--muted); background: linear-gradient(180deg, rgba(0,0,0,0.01), transparent); border-radius:8px; margin-bottom:8px; }

/* contact grid */
.contact-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:14px; }

/* footer */
.site-footer{ padding:18px 0; background:transparent; border-top:1px solid rgba(0,0,0,0.04); margin-top:30px; }
.footer-inner{ display:flex; justify-content:space-between; gap:12px; align-items:center; }

/* Counters */
.counters-section { text-align: center; padding: 48px 0; }
.section-title { margin-bottom: 6px; font-size: 1.6rem; }
.section-sub { color: var(--muted); margin-bottom: 18px; }

.counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items:stretch;
  justify-items: center;
  margin-top: 8px;
}

.counter {
  background: linear-gradient(180deg, rgba(212,175,55,0.04), transparent);
  border-radius: 12px;
  padding: 18px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 8px 18px rgba(2,6,23,0.06);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.counter:hover { transform: translateY(-6px); box-shadow: 0 18px 28px rgba(2,6,23,0.08); }

.counter-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.5px;
}
:root[data-theme="dark"] .counter-value { color: color-mix(in srgb, var(--green) 90%, #fff 10%); }

.counter-label {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Responsive tweaks */
@media (max-width:1000px){
  .hero-inner{ flex-direction:column-reverse; }
  .grid{ grid-template-columns:repeat(2,1fr); }
  .split{ flex-direction:column; }
  .grid.small{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:640px){
  .nav{ display:none; }
  .menu-toggle{ display:inline-block; }
  .grid{ grid-template-columns:1fr; }
  .grid.small{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .hero-right{ width:100%; }
  .footer-inner{ flex-direction:column; text-align:center; }
  .nav.open{ display:flex; flex-direction:column; position:absolute; right:16px; top:64px; background:var(--surface); padding:12px; box-shadow:0 6px 20px rgba(0,0,0,0.12); border-radius:8px; }
  .hero-logo-small { width:140px; max-width:40%; margin-top:8px; }
}