
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Inter+Tight:wght@500;600;700;800&display=swap');

:root{
  --green-1:#a8ff78;
  --green-2:#7bdd4d;
  --green-3:#335f1f;
  --bg:#090a0b;
  --bg-2:#101113;
  --surface:#1a1c1f;
  --surface-2:#23262a;
  --surface-3:#2b2f34;
  --text:#f5f5f7;
  --muted:#b6bac0;
  --muted-2:#8a8f97;
  --line:rgba(255,255,255,0.08);
  --line-green:rgba(168,255,120,0.22);
  --shadow:0 28px 80px rgba(0,0,0,0.45);
  --radius-xl:30px;
  --radius-lg:22px;
  --radius-md:16px;
  --max:1580px;
  --font-head:'Inter Tight',sans-serif;
  --font-body:'Inter',sans-serif;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-body);
  background:
    radial-gradient(circle at 50% -10%, rgba(168,255,120,0.10), transparent 34%),
    radial-gradient(circle at 10% 10%, rgba(168,255,120,0.04), transparent 26%),
    var(--bg);
  color:var(--text);
  overflow-x:hidden;
}
body.menu-open{overflow:hidden}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button{font:inherit}
::selection{background:var(--green-1);color:#0b0c0d}
::-webkit-scrollbar{width:10px}
::-webkit-scrollbar-thumb{background:#2a2d31;border-radius:999px}
::-webkit-scrollbar-track{background:var(--bg)}

.page-shell{min-height:100vh}
.container{width:min(var(--max), calc(100% - 32px));margin:0 auto}
.section{padding:112px 0}
.section.compact{padding:180px 0}
.section-label{
  color:var(--green-2);
  font-size:12px;
  font-weight:700;
  letter-spacing:.22em;
  text-transform:uppercase;
  margin-bottom:14px;
}
.section-title{
  font-family:var(--font-head);
  font-size:clamp(36px, 5.8vw, 72px);
  line-height:.98;
  letter-spacing:-0.045em;
  margin-bottom:18px;
}
.section-title .dim{color:rgba(245,245,247,0.34)}
.section-sub{
  max-width:720px;
  color:var(--muted);
  font-size:18px;
  line-height:1.75;
}

.site-nav{
  position:fixed; inset:0 0 auto 0; z-index:1000;
  height:72px;
  background:rgba(9,10,11,0.72);
  backdrop-filter:blur(24px) saturate(170%);
  -webkit-backdrop-filter:blur(24px) saturate(170%);
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.nav-inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.brand-mark{
  width:34px;height:34px;border-radius:12px;
  display:grid;place-items:center;
  background:linear-gradient(135deg, rgba(168,255,120,0.20), rgba(168,255,120,0.06));
  border:1px solid rgba(168,255,120,0.18);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.05);
}
.brand-text{
  font-family:var(--font-head);
  font-size:15px;
  font-weight:800;
  letter-spacing:-0.03em;
  white-space:nowrap;
}
.brand-text span{color:var(--green-1)}
.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.nav-links a{
  display:inline-flex;
  align-items:center;
  height:40px;
  padding:0 14px;
  border-radius:999px;
  color:var(--muted);
  font-size:14px;
  transition:.22s ease;
}
.nav-links a:hover,
.nav-links a.active{
  color:var(--text);
  background:rgba(255,255,255,0.06);
}
.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}
.menu-toggle{
  display:none;
  width:42px;height:42px;
  border:none;
  border-radius:14px;
  background:var(--surface);
  color:var(--text);
  cursor:pointer;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:50px;
  padding:0 24px;
  border-radius:16px;
  border:1px solid transparent;
  transition:transform .2s ease, opacity .2s ease, border-color .2s ease, background .2s ease;
  cursor:pointer;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  background:linear-gradient(135deg, var(--green-1), var(--green-2));
  color:#0c0d0f;
  font-weight:800;
}
.btn-secondary{
  background:rgba(255,255,255,0.04);
  border-color:rgba(255,255,255,0.11);
  color:var(--text);
}
.btn-secondary:hover{
  border-color:var(--line-green);
  background:rgba(255,255,255,0.06);
}
.btn-link{
  color:var(--green-1);
  font-weight:700;
  min-height:auto;
  padding:0;
  border:none;
  background:none;
}
.mobile-panel{
  position:fixed;
  inset:72px 16px auto 16px;
  background:rgba(24,26,29,0.98);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:24px;
  padding:16px;
  box-shadow:var(--shadow);
  display:none;
  z-index:999;
}
.mobile-panel.open{display:block}
.mobile-panel a{
  display:block;
  padding:14px 16px;
  color:var(--muted);
  border-radius:14px;
}
.mobile-panel a:hover,
.mobile-panel a.active{
  background:rgba(255,255,255,0.05);
  color:var(--text);
}

.hero{
  min-height:calc(100vh - 112px);
  display:grid;
  align-items:center;
  padding-top:44px;
  position:relative;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:30px;
  align-items:end;
}
.hero-copy{
  padding:18px 0 68px;
  position:relative;
  z-index:2;
}
.hero-badge{
  display:inline-flex;
  gap:10px;
  align-items:center;
  min-height:38px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(168,255,120,0.08);
  border:1px solid rgba(168,255,120,0.18);
  color:var(--green-1);
  font-size:13px;
  font-weight:700;
  margin-bottom:26px;
}
.badge-dot{
  width:8px;height:8px;border-radius:999px;background:var(--green-1);
  box-shadow:0 0 0 0 rgba(168,255,120,0.35);
  animation:pulse 1.9s infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(168,255,120,0.32)}
  100%{box-shadow:0 0 0 12px rgba(168,255,120,0)}
}
.hero-title{
  font-family:var(--font-head);
  font-size:clamp(58px, 10vw, 130px);
  line-height:.92;
  letter-spacing:-0.055em;
  margin-bottom:18px;
}
.hero-title .accent{
  display:block;
  color:var(--green-1);
}
.hero-sub{
  max-width:720px;
  font-size:clamp(18px, 2.2vw, 22px);
  line-height:1.75;
  color:var(--muted);
  margin-bottom:34px;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.hero-panel{
  position:relative;
  min-height:600px;
  display:grid;
  align-items:end;
}
.hero-card{
  position:relative;
  background:linear-gradient(180deg, rgba(35,38,42,0.96), rgba(26,28,31,0.96));
  border:1px solid rgba(255,255,255,0.08);
  border-radius:36px;
  padding:30px;
  min-height:560px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.hero-card::before{
  content:'';
  position:absolute;inset:0;
  background:
    radial-gradient(circle at 75% 20%, rgba(168,255,120,0.20), transparent 22%),
    radial-gradient(circle at 20% 80%, rgba(168,255,120,0.10), transparent 24%);
  pointer-events:none;
}
.hero-stack{
  position:absolute;
  inset:auto 30px 30px 30px;
  display:grid;
  gap:14px;
}
.glass-stat,
.info-card,
.preview-card,
.quote-card,
.tile,
.detail-card,
.map-box,
.legal-block,
.contact-card,
.timeline-card,
.value-card{
  background:linear-gradient(180deg, rgba(38,42,47,0.96), rgba(30,33,37,0.96));
  border:1px solid rgba(255,255,255,0.08);
  border-radius:var(--radius-lg);
  box-shadow:0 16px 46px rgba(0,0,0,0.28);
}
.glass-stat{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 20px;
  backdrop-filter:blur(14px);
}
.glass-stat strong{
  font-family:var(--font-head);
  font-size:20px;
  letter-spacing:-0.04em;
}
.glass-stat span{
  color:var(--muted);
  font-size:14px;
}
.hero-art{
  position:absolute;
  inset:28px 28px auto 28px;
  min-height:230px;
  border-radius:28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.05), transparent 55%),
    linear-gradient(180deg, rgba(168,255,120,0.10), rgba(168,255,120,0.02)),
    rgba(17,19,22,0.85);
  border:1px solid rgba(255,255,255,0.06);
  overflow:hidden;
}
.hero-ring{
  position:absolute;
  width:320px;height:320px;
  border-radius:50%;
  border:1px solid rgba(168,255,120,0.22);
  top:50%;left:50%;
  transform:translate(-50%,-50%);
}
.hero-ring::before,
.hero-ring::after{
  content:'';
  position:absolute;inset:24px;
  border-radius:50%;
  border:1px solid rgba(168,255,120,0.10);
}
.hero-leaf{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  font-size:92px;
  filter:drop-shadow(0 14px 30px rgba(168,255,120,0.15));
}
.hero-floating{
  position:absolute;
  display:grid;
  place-items:center;
  width:72px;height:72px;
  border-radius:22px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(14px);
  font-size:30px;
  animation:floaty 6s ease-in-out infinite;
}
.hero-floating.one{top:34px;left:34px}
.hero-floating.two{top:46px;right:42px;animation-delay:1.1s}
.hero-floating.three{bottom:28px;left:48px;animation-delay:2s}
@keyframes floaty{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-12px)}
}
.particles{position:absolute;inset:0;pointer-events:none}
.particle{
  position:absolute;
  border-radius:50%;
  background:rgba(168,255,120,0.85);
  opacity:0;
  animation:particleFloat var(--dur) ease-in infinite;
  animation-delay:var(--delay);
}
@keyframes particleFloat{
  0%{opacity:0; transform:translateY(60px) scale(0)}
  18%{opacity:.35}
  80%{opacity:.10}
  100%{opacity:0; transform:translateY(-110vh) scale(1)}
}
.marquee{
  border-top:1px solid rgba(255,255,255,0.06);
  border-bottom:1px solid rgba(255,255,255,0.06);
  background:rgba(168,255,120,0.96);
  overflow:hidden;
}
.marquee-track{
  display:flex;
  width:max-content;
  animation:marquee 24s linear infinite;
}
.marquee-item{
  color:#0b0c0d;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:11px;
  padding:10px 20px;
  white-space:nowrap;
}
@keyframes marquee{to{transform:translateX(-50%)}}

.grid-4, .grid-3, .grid-2{
  display:grid;
  gap:18px;
}
.grid-4{grid-template-columns:repeat(4,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}

.tile{
  padding:28px;
  transition:transform .2s ease, border-color .2s ease, background .2s ease;
}
.tile:hover, .preview-card:hover, .quote-card:hover, .detail-card:hover, .value-card:hover, .timeline-card:hover, .contact-card:hover{
  transform:translateY(-4px);
  border-color:var(--line-green);
}
.tile-icon{
  width:58px;height:58px;border-radius:18px;
  display:grid;place-items:center;
  background:rgba(168,255,120,0.10);
  border:1px solid rgba(168,255,120,0.12);
  font-size:28px;
  margin-bottom:18px;
}
.tile h3, .preview-card h3, .detail-card h3, .value-card h3, .contact-card h3{
  font-family:var(--font-head);
  font-size:22px;
  line-height:1.05;
  letter-spacing:-0.04em;
  margin-bottom:10px;
}
.tile p, .preview-card p, .detail-card p, .quote-card p, .timeline-card p, .value-card p, .contact-card p{
  color:var(--muted);
  line-height:1.72;
  font-size:15px;
}
.tile small{
  color:var(--muted-2);
  display:block;
  margin-top:12px;
  font-size:13px;
}
.preview-card{
  padding:26px;
  position:relative;
  overflow:hidden;
}
.preview-top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-bottom:18px;
}
.badge{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(168,255,120,0.08);
  color:var(--green-1);
  border:1px solid rgba(168,255,120,0.14);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-weight:800;
}
.preview-icon{
  font-size:46px;
  line-height:1;
  margin-bottom:16px;
}
.preview-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.pill{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.05);
  color:var(--muted);
  border:1px solid rgba(255,255,255,0.06);
  font-size:13px;
}
.card-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:18px;
  color:var(--green-1);
  font-weight:800;
  font-size:14px;
}
.info-wrap{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:20px;
  align-items:stretch;
}
.info-card{
  padding:34px;
}
.info-card.dark{
  background:linear-gradient(180deg, rgba(28,31,35,0.96), rgba(21,23,26,0.96));
}
.info-card .eyebrow{
  color:var(--green-2);
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:11px;
  font-weight:800;
  margin-bottom:16px;
}
.info-card h3{
  font-family:var(--font-head);
  font-size:clamp(30px, 3.2vw, 48px);
  line-height:1.02;
  letter-spacing:-0.05em;
  margin-bottom:14px;
}
.info-card p{
  color:var(--muted);
  line-height:1.8;
}
.checklist{
  display:grid;
  gap:14px;
  margin:26px 0 32px;
}
.check-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  color:var(--text);
}
.check-item span:first-child{
  width:24px;height:24px;border-radius:8px;
  display:grid;place-items:center;
  background:rgba(168,255,120,0.12);
  color:var(--green-1);
  border:1px solid rgba(168,255,120,0.15);
  flex:0 0 auto;
  margin-top:2px;
}
.stat-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:28px;
}
.stat-block{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:18px;
  padding:18px 18px 20px;
}
.stat-block strong{
  display:block;
  font-family:var(--font-head);
  font-size:32px;
  letter-spacing:-0.05em;
  color:var(--green-1);
  margin-bottom:6px;
}
.stat-block span{
  color:var(--muted);
  font-size:14px;
}
.quote-card{
  padding:30px;
}
.quote-card .stars{
  color:var(--green-1);
  letter-spacing:.28em;
  margin-bottom:14px;
  font-size:14px;
}
.quote-card strong{
  display:block;
  margin-top:18px;
  font-family:var(--font-head);
  font-size:14px;
  letter-spacing:-0.03em;
}
.page-hero{
  padding:168px 0 88px;
}
.page-hero .section-sub{max-width:860px}
.filters{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}
.filter-btn{
  border:none;
  min-height:40px;
  padding:0 18px;
  border-radius:999px;
  background:rgba(255,255,255,0.05);
  color:var(--muted);
  border:1px solid rgba(255,255,255,0.06);
  cursor:pointer;
  transition:.2s ease;
}
.filter-btn.active,
.filter-btn:hover{
  background:rgba(168,255,120,0.12);
  color:var(--text);
  border-color:rgba(168,255,120,0.18);
}
.preview-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.preview-card[data-cat]{display:flex;flex-direction:column}
.preview-card .spacer{flex:1}
.map-layout{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:20px;
}
.map-box{
  min-height:520px;
  overflow:hidden;
  position:relative;
}
.map-box svg{position:absolute;inset:0;width:100%;height:100%}
.map-pin{
  position:absolute;
  left:52%;
  top:50%;
  transform:translate(-50%,-50%);
  display:grid;
  justify-items:center;
  gap:10px;
  z-index:2;
}
.map-pin-dot{
  width:20px;height:20px;border-radius:50%;
  background:var(--green-1);
  box-shadow:0 0 0 8px rgba(168,255,120,0.18), 0 0 0 18px rgba(168,255,120,0.06);
  animation:ripple 2s ease-out infinite;
}
.map-pin-label{
  background:var(--green-1);
  color:#0c0d0f;
  font-weight:800;
  font-size:12px;
  padding:8px 14px;
  border-radius:12px;
}
@keyframes ripple{
  0%{box-shadow:0 0 0 0 rgba(168,255,120,0.22), 0 0 0 0 rgba(168,255,120,0.10)}
  100%{box-shadow:0 0 0 18px rgba(168,255,120,0), 0 0 0 34px rgba(168,255,120,0)}
}
.map-overlay{
  position:absolute;
  left:20px;
  right:20px;
  bottom:20px;
  padding:16px 18px;
  border-radius:18px;
  background:rgba(9,10,11,0.70);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(16px);
}
.map-overlay strong{
  display:block;
  color:var(--green-2);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.18em;
  margin-bottom:4px;
}
.hours{
  display:grid;
  gap:10px;
  margin:24px 0 26px;
}
.hours-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  border-bottom:1px solid rgba(255,255,255,0.06);
  padding-bottom:10px;
}
.hours-row:last-child{border-bottom:none;padding-bottom:0}
.transport{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:24px 0 30px;
}
.transport .pill{background:rgba(255,255,255,0.06)}
.contact-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.timeline{
  display:grid;
  gap:18px;
}
.timeline-card, .value-card, .detail-card, .contact-card, .legal-block{
  padding:28px;
}
.timeline-meta{
  color:var(--green-2);
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:800;
  margin-bottom:12px;
}
.cta-strip{
  margin-top:34px;
  padding:34px;
  border-radius:30px;
  background:linear-gradient(135deg, rgba(168,255,120,0.10), rgba(168,255,120,0.03));
  border:1px solid rgba(168,255,120,0.12);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.cta-strip h3{
  font-family:var(--font-head);
  font-size:clamp(28px, 3vw, 42px);
  letter-spacing:-0.05em;
  margin-bottom:8px;
}
.cta-strip p{
  color:var(--muted);
  line-height:1.7;
}
.site-footer{
  padding:84px 0 34px;
  background:linear-gradient(180deg, rgba(10,11,12,0), rgba(10,11,12,0.82));
  border-top:1px solid rgba(255,255,255,0.06);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:26px;
}
.footer-brand p{
  color:var(--muted);
  line-height:1.8;
  margin-top:14px;
  max-width:460px;
}
.footer-links h4{
  font-family:var(--font-head);
  letter-spacing:-0.03em;
  margin-bottom:16px;
  font-size:18px;
}
.footer-links a{
  display:block;
  color:var(--muted);
  padding:8px 0;
}
.footer-links a:hover{color:var(--text)}
.footer-bottom{
  margin-top:34px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.06);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.footer-chip{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(168,255,120,0.08);
  color:var(--green-1);
  border:1px solid rgba(168,255,120,0.12);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.18em;
}
.reveal{opacity:0;transform:translateY(26px);transition:opacity .7s ease, transform .7s ease}
.reveal.visible{opacity:1;transform:none}
.load-up{animation:loadUp .9s cubic-bezier(.2,.8,.2,1) both}
.load-up:nth-child(2){animation-delay:.08s}
.load-up:nth-child(3){animation-delay:.16s}
.load-up:nth-child(4){animation-delay:.24s}
@keyframes loadUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:none}}

@media (max-width: 1100px){
  .hero-grid, .info-wrap, .map-layout{grid-template-columns:1fr}
  .hero-panel{min-height:420px}
  .hero-card{min-height:480px}
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .preview-grid, .contact-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width: 860px){
  .site-nav{height:68px}
  .mobile-panel{inset:68px 16px auto 16px}
  .nav-links, .nav-actions .btn-primary{display:none}
  .menu-toggle{display:grid;place-items:center}
  .hero{min-height:auto}
  .hero-copy{padding-bottom:48px}
  .section{padding:90px 0}
  .page-hero{padding:138px 0 74px}
  .preview-grid, .grid-3, .contact-grid, .footer-grid, .stat-row{grid-template-columns:1fr}
}
@media (max-width: 640px){
  .container{width:min(var(--max), calc(100% - 28px))}
  .hero-title{font-size:clamp(46px, 15vw, 88px)}
  .hero-sub, .section-sub{font-size:16px}
  .grid-4, .grid-2{grid-template-columns:1fr}
  .tile, .preview-card, .quote-card, .detail-card, .contact-card, .timeline-card, .value-card, .info-card, .legal-block{padding:22px}
  .hero-card{padding:22px;border-radius:28px}
  .hero-art{inset:22px 22px auto 22px}
  .hero-stack{inset:auto 22px 22px 22px}
}


body[data-page="index"] .page-shell{overflow:hidden}
.brand-copy{display:flex;flex-direction:column;line-height:1.02;gap:4px}
.brand-kicker{font-size:10px;letter-spacing:.22em;text-transform:uppercase;color:var(--green-2);font-weight:800}
.brand-mark-image{width:46px;height:46px;padding:0;overflow:hidden;border-radius:14px;background:#06100a}
.brand-mark-image img{width:100%;height:100%;object-fit:cover}
.brand-text{font-size:16px}
.hero-home{padding-top:110px}
.hero-overline{color:var(--green-2);font-size:12px;text-transform:uppercase;letter-spacing:.22em;font-weight:800;margin-bottom:14px}
.hero-brandline{font-family:var(--font-head);font-size:clamp(22px,2.3vw,28px);line-height:1.2;letter-spacing:-0.04em;color:rgba(245,245,247,0.92);margin-bottom:14px;max-width:760px}
.hero-logo-disk{position:absolute;inset:50% auto auto 50%;transform:translate(-50%,-50%);width:180px;height:180px;border-radius:50%;overflow:hidden;box-shadow:0 26px 70px rgba(0,0,0,0.42);border:1px solid rgba(255,255,255,0.12)}
.hero-logo-image{width:100%;height:100%;object-fit:cover}
.hero-wordmark{position:absolute;left:26px;right:26px;bottom:18px;text-align:center;color:rgba(245,245,247,0.44);font-size:11px;letter-spacing:.34em;text-transform:uppercase;font-weight:800}
.hero-ambient{position:absolute;border-radius:50%;filter:blur(0);pointer-events:none;opacity:.55}
.hero-ambient-a{width:520px;height:520px;right:-120px;top:120px;background:radial-gradient(circle, rgba(168,255,120,0.14), rgba(168,255,120,0.02) 58%, transparent 70%)}
.hero-ambient-b{width:380px;height:380px;left:-110px;bottom:60px;background:radial-gradient(circle, rgba(123,221,77,0.12), rgba(123,221,77,0.02) 58%, transparent 70%)}
.marquee-top{margin-top:72px;position:relative;z-index:2}
.section-home-tight{padding-top:92px;padding-bottom:92px}
.home-cards .tile p{max-width:22ch}
.info-wrap-home{grid-template-columns:1.05fr .8fr}
.checklist-tight{gap:12px;margin:22px 0 28px}
.reveal-left,.reveal-right,.reveal-scale{opacity:0;transition:opacity .75s ease,transform .75s ease}
.reveal-left{transform:translateX(-30px)}
.reveal-right{transform:translateX(30px)}
.reveal-scale{transform:scale(.95)}
.reveal-left.visible,.reveal-right.visible,.reveal-scale.visible{opacity:1;transform:none}
.site-footer{padding:58px 0 34px;background:none;border-top:1px solid rgba(255,255,255,0.06)}
.footer-grid{grid-template-columns:1.18fr .76fr .82fr;gap:34px;align-items:start}
.footer-links-company{justify-self:end}
.footer-links h4{text-transform:uppercase;letter-spacing:.18em;font-size:11px;color:var(--muted-2);margin-bottom:14px}
.footer-bottom{margin-top:26px;padding-top:18px;border-top:1px solid rgba(255,255,255,0.06);display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;gap:10px}
.footer-copy{color:var(--muted);font-size:14px}
.map-box-live{padding:0}
.store-map{width:100%;height:100%;min-height:520px}
.leaflet-container{background:#1f2327;font-family:var(--font-body)}
.leaflet-control-zoom{border:none !important;box-shadow:0 18px 40px rgba(0,0,0,0.28)}
.leaflet-control-zoom a{background:rgba(20,22,24,0.92) !important;color:var(--text) !important;border:none !important;width:38px;height:38px;line-height:38px;font-size:20px}
.leaflet-control-zoom a:hover{background:rgba(168,255,120,0.16) !important;color:#fff !important}
.store-marker{background:transparent;border:none}
.store-marker span{display:block;width:18px;height:18px;border-radius:50%;background:var(--green-1);box-shadow:0 0 0 8px rgba(168,255,120,0.18),0 0 0 18px rgba(168,255,120,0.08)}
@media (max-width: 1100px){
  .info-wrap-home{grid-template-columns:1fr}
}
@media (max-width: 860px){
  .marquee-top{margin-top:68px}
  .footer-grid{grid-template-columns:1fr}
  .footer-links-company{justify-self:start}
}


.footer-links-social{justify-self:end;display:flex;flex-direction:column;align-items:flex-end;gap:14px;text-align:right}
.footer-chip-top{margin-bottom:2px}
.social-row{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:10px}
.social-link{
  width:42px;height:42px;border-radius:13px;
  display:grid;place-items:center;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  color:var(--text);
  transition:transform .2s ease,border-color .2s ease,background .2s ease,color .2s ease;
}
.social-link:hover{transform:translateY(-2px);border-color:var(--line-green);background:rgba(168,255,120,0.08);color:var(--green-1)}
.social-link svg{width:18px;height:18px;display:block;fill:currentColor}
.contact-layout{display:grid;grid-template-columns:.84fr 1.16fr;gap:20px;align-items:stretch}
.contact-stack{display:grid;gap:18px}
.contact-form{
  padding:30px;
  border-radius:var(--radius-xl);
  background:linear-gradient(180deg, rgba(38,42,47,0.96), rgba(30,33,37,0.96));
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 16px 46px rgba(0,0,0,0.28);
  display:grid;
  gap:18px;
}
.contact-form h3{font-family:var(--font-head);font-size:32px;letter-spacing:-0.05em}
.contact-form p{color:var(--muted);line-height:1.75}
.field-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.field{display:grid;gap:8px}
.field span{font-size:13px;color:var(--muted)}
.field input,.field textarea{
  width:100%;
  border:none;
  border-radius:14px;
  padding:14px 16px;
  font:inherit;
  color:var(--text);
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  outline:none;
}
.field textarea{min-height:170px;resize:vertical}
.field input:focus,.field textarea:focus{border-color:rgba(168,255,120,0.28);background:rgba(255,255,255,0.05)}
.form-actions{display:flex;flex-wrap:wrap;gap:14px;align-items:center}
.form-note{color:var(--muted-2);font-size:13px;line-height:1.6}
@media (max-width: 1100px){
  .contact-layout{grid-template-columns:1fr}
}
@media (max-width: 860px){
  .footer-grid{grid-template-columns:1fr}
  .footer-links-company,.footer-links-social{justify-self:start;align-items:flex-start;text-align:left}
  .social-row{justify-content:flex-start}
}
@media (max-width: 640px){
  .field-grid{grid-template-columns:1fr}
}


/* incremental refinements requested */

.marquee-item{padding:7px 20px;font-size:10px;}
.hero-home{min-height:calc(100vh - 124px);padding-top:0;}
.hero-home .hero-grid{align-items:start;}
.hero-home .hero-copy{padding:0 0 40px;}
.hero-home .hero-panel{min-height:560px;}
.hero-home .hero-title{margin-bottom:14px;}
.hero-home .hero-sub{margin-bottom:28px;}
.page-hero{padding:160px 0 34px;}
.page-hero + .section.compact{padding-top:18px;}
.filters{margin-top:20px;}
.site-footer{padding:56px 0 34px;background:none;border-top:1px solid rgba(255,255,255,0.06);}
.footer-brand{display:flex;flex-direction:column;gap:14px;margin-bottom:24px;}
.footer-brand p{margin-top:0;}
.footer-meta{display:grid;grid-template-columns:1fr auto auto;gap:34px;align-items:end;}
.footer-links-company{justify-self:start;align-self:end;}
.footer-links-social{justify-self:center;display:flex;flex-direction:column;align-items:center;gap:14px;text-align:center;}
.footer-links-social h4{margin-bottom:0;}
.footer-sale{display:flex;justify-content:flex-end;align-items:flex-end;}
.social-row{justify-content:center;}
.footer-bottom{margin-top:26px;padding-top:18px;border-top:1px solid rgba(255,255,255,0.06);display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;gap:10px;}
@media (max-width: 860px){
  .hero-home{min-height:auto;padding-top:0;}
  .page-hero{padding:138px 0 32px;}
  .page-hero + .section.compact{padding-top:18px;}
  .footer-meta{grid-template-columns:1fr;gap:20px;}
  .footer-links-company,.footer-links-social,.footer-sale{justify-self:start;align-items:flex-start;text-align:left;}
  .social-row{justify-content:flex-start;}
}


/* targeted polish: footer spacing and hero top spacing */
.marquee-item{padding:9px 20px;font-size:10px;}
.hero-home{
  align-items:start;
  min-height:calc(100vh - 96px);
  padding-top:6px;
}
.hero-home .hero-grid{
  align-items:start;
  padding-top:8px;
}
.hero-home .hero-copy{padding:6px 0 34px;}
.hero-home .hero-panel{min-height:540px;}
.hero-home .hero-badge{margin-bottom:18px;}
.hero-home .hero-brandline{margin-bottom:12px;}

.footer-meta-centered{
  width:fit-content;
  max-width:100%;
  margin:0 auto;
  grid-template-columns:auto auto auto;
  gap:26px;
  align-items:end;
  justify-content:center;
}
.footer-meta-centered .footer-links-company{
  justify-self:end;
  align-self:end;
}
.footer-meta-centered .footer-links-social{
  justify-self:center;
  align-self:end;
}
.footer-meta-centered .footer-sale{
  justify-self:start;
  align-self:end;
}

@media (max-width: 860px){
  .hero-home{
    min-height:auto;
    padding-top:4px;
  }
  .hero-home .hero-grid{padding-top:2px;}
  .footer-meta-centered{
    width:100%;
    grid-template-columns:1fr;
    gap:20px;
    justify-content:start;
  }
}


/* final fine-tuning: subtle marquee, balanced hero gap, footer cluster to the right */
.marquee-item{padding:10px 20px;font-size:10px;}

.hero-home{
  align-items:start;
  min-height:calc(100vh - 100px);
  padding-top:12px;
}
.hero-home .hero-grid{
  align-items:start;
  padding-top:10px;
}
.hero-home .hero-copy{padding:10px 0 34px;}
.hero-home .hero-badge{margin-bottom:18px;}
.hero-home .hero-brandline{margin-bottom:12px;}

.site-footer{
  padding:46px 0 28px;
  background:none;
  border-top:1px solid rgba(255,255,255,0.06);
}
.site-footer .container{
  display:grid;
  grid-template-columns:minmax(300px,1fr) auto;
  column-gap:42px;
  row-gap:18px;
  align-items:end;
}
.footer-brand{
  grid-column:1;
  grid-row:1;
  align-self:end;
  margin-bottom:0;
  padding-top:18px;
  gap:12px;
}
.footer-brand p{max-width:440px;}
.footer-meta,
.footer-meta-centered{
  grid-column:2;
  grid-row:1;
  width:fit-content;
  max-width:100%;
  margin:0 0 0 auto;
  grid-template-columns:auto auto auto;
  gap:22px;
  align-items:end;
  justify-content:end;
}
.footer-meta-centered .footer-links-company,
.footer-links-company{
  justify-self:end;
  align-self:end;
  text-align:left;
}
.footer-meta-centered .footer-links-social,
.footer-links-social{
  justify-self:center;
  align-self:end;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  text-align:center;
}
.footer-meta-centered .footer-sale,
.footer-sale{
  justify-self:start;
  align-self:end;
  display:flex;
  justify-content:flex-start;
  align-items:flex-end;
}
.footer-bottom{
  grid-column:1 / -1;
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,0.06);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  gap:10px;
}

@media (max-width: 860px){
  .hero-home{
    min-height:auto;
    padding-top:8px;
  }
  .hero-home .hero-grid{padding-top:6px;}
  .hero-home .hero-copy{padding:8px 0 30px;}
  .site-footer{
    padding:42px 0 28px;
  }
  .site-footer .container{
    grid-template-columns:1fr;
    row-gap:20px;
  }
  .footer-brand,
  .footer-meta,
  .footer-meta-centered,
  .footer-bottom{
    grid-column:1;
  }
  .footer-brand{
    padding-top:0;
  }
  .footer-meta,
  .footer-meta-centered{
    width:100%;
    margin:0;
    grid-template-columns:1fr;
    gap:20px;
    justify-content:start;
  }
  .footer-links-company,
  .footer-links-social,
  .footer-sale,
  .footer-meta-centered .footer-links-company,
  .footer-meta-centered .footer-links-social,
  .footer-meta-centered .footer-sale{
    justify-self:start;
    align-items:flex-start;
    text-align:left;
  }
  .social-row{justify-content:flex-start;}
}

/* 2026-04-02 precise adjustment: slightly thicker marquee, small hero gap, tighter right footer cluster */
.marquee-item{padding:11px 20px;font-size:10px;}

.hero-home{
  align-items:start;
  min-height:calc(100vh - 100px);
  padding-top:16px;
}
.hero-home .hero-grid{
  align-items:start;
  padding-top:12px;
}
.hero-home .hero-copy{padding:12px 0 34px;}

.site-footer{
  padding:34px 0 24px;
  background:none;
  border-top:1px solid rgba(255,255,255,0.06);
}
.site-footer .container{
  display:grid;
  grid-template-columns:minmax(280px,1fr) auto;
  column-gap:28px;
  row-gap:12px;
  align-items:end;
}
.footer-brand{
  grid-column:1;
  grid-row:1;
  align-self:end;
  margin:8px 0 0;
  padding-top:0;
  gap:10px;
}
.footer-brand p{max-width:420px;}
.footer-meta,
.footer-meta-centered{
  grid-column:2;
  grid-row:1;
  width:max-content;
  max-width:100%;
  margin:0 0 0 auto;
  grid-template-columns:auto auto auto;
  gap:16px;
  align-items:end;
  justify-content:end;
}
.footer-meta-centered .footer-links-company,
.footer-links-company{
  justify-self:end;
  align-self:end;
  text-align:left;
}
.footer-meta-centered .footer-links-social,
.footer-links-social{
  justify-self:center;
  align-self:end;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  text-align:center;
}
.footer-meta-centered .footer-sale,
.footer-sale{
  justify-self:start;
  align-self:end;
  display:flex;
  justify-content:flex-start;
  align-items:flex-end;
}
.footer-bottom{
  grid-column:1 / -1;
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,0.06);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  gap:10px;
}

@media (max-width: 860px){
  .hero-home{min-height:auto;padding-top:10px;}
  .hero-home .hero-grid{padding-top:8px;}
  .hero-home .hero-copy{padding:10px 0 30px;}
  .site-footer{padding:36px 0 24px;}
  .site-footer .container{grid-template-columns:1fr;row-gap:18px;}
  .footer-brand,.footer-meta,.footer-meta-centered,.footer-bottom{grid-column:1;}
  .footer-brand{margin-top:0;}
  .footer-meta,.footer-meta-centered{width:100%;margin:0;grid-template-columns:1fr;gap:18px;justify-content:start;}
  .footer-links-company,.footer-links-social,.footer-sale,
  .footer-meta-centered .footer-links-company,.footer-meta-centered .footer-links-social,.footer-meta-centered .footer-sale{
    justify-self:start;align-items:flex-start;text-align:left;
  }
}

/* 2026-04-02 ajuste fino solicitado: un poco más de aire arriba y abajo en el hero de inicio */
.hero-home{
  min-height:calc(100vh - 490px);
  padding-top:125px;
}
.hero-home .hero-grid{
  padding-top:24px;
  padding-bottom:18px;
}
.hero-home .hero-copy{padding:8px 0 20px;}

@media (max-width: 860px){
  .hero-home{
    min-height:auto;
    padding-top:14px;
  }
  .hero-home .hero-grid{
    padding-top:18px;
    padding-bottom:12px;
  }
  .hero-home .hero-copy{padding:10px 0 40px;}
}
