:root {
  --leaf: #8fd400;
  --leaf-deep: #4c9e00;
  --forest: #071910;
  --forest-2: #0d2a1a;
  --ink: #e8f0e4;
  --muted: #9bb39a;
  --gold: #d4a017;
  --gold-soft: #f0d48a;
  --sky: #7ec8c4;
  --glass: rgba(13, 42, 26, 0.55);
  --line: rgba(143, 212, 0, 0.18);
  --danger: #e85d4c;
  --radius: 22px;
  --nav-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { min-height: 100%; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--forest);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

.cursor {
  position: fixed; z-index: 10000; pointer-events: none;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--leaf); mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, background .25s;
}
.cursor-ring {
  position: fixed; z-index: 10000; pointer-events: none;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(143,212,0,.7);
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, border-color .3s;
}
.cursor.grow, .cursor-ring.grow { width: 64px; height: 64px; }
body.hide-cursor .cursor, body.hide-cursor .cursor-ring { opacity: 0; }
@media (pointer: coarse) {
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
}

.grain {
  pointer-events: none; position: fixed; inset: 0; z-index: 9;
  opacity: .07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--leaf-deep), var(--leaf), var(--gold));
  z-index: 999; box-shadow: 0 0 16px var(--leaf);
}

.nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  width: min(1180px, calc(100% - 28px));
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 18px 0 16px;
  background: rgba(7, 25, 16, .55);
  border: 1px solid rgba(143,212,0,.16);
  backdrop-filter: blur(18px) saturate(140%);
  border-radius: 999px;
  z-index: 800;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(7, 25, 16, .82);
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%;
  background: url("../assets/mark.jpg") center/cover;
  box-shadow: 0 0 0 1px rgba(143,212,0,.35), 0 0 22px rgba(143,212,0,.25);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: "Fraunces", serif; font-weight: 500; letter-spacing: -.02em; font-size: 1.02rem; }
.brand-text span { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 12px; font-size: .82rem; color: var(--muted);
  border-radius: 999px; transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: rgba(143,212,0,.1); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--leaf); color: #06210e; font-weight: 700;
  padding: 10px 16px; border-radius: 999px; font-size: .82rem;
}
.nav-cta:hover { filter: brightness(1.08); }
.burger {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; color: var(--ink);
}
.burger span, .burger span::before, .burger span::after {
  display: block; width: 20px; height: 2px; background: currentColor; position: relative;
}
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }

.mobile-menu {
  position: fixed; inset: 0; background: rgba(7,25,16,.96);
  z-index: 750; display: none; flex-direction: column;
  justify-content: center; padding: 100px 32px 40px;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: "Fraunces", serif; font-size: clamp(1.6rem, 6vw, 2.4rem);
  color: var(--ink);
}
.mobile-menu a span { display: block; font-family: Manrope, sans-serif; font-size: .75rem; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }

.hero {
  position: relative; min-height: 100vh; display: grid; place-items: end start;
  padding: 140px 6vw 80px;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background: #071910 center/cover no-repeat;
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.05);
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,25,16,.25) 0%, rgba(7,25,16,.2) 40%, rgba(7,25,16,.88) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(143,212,0,.18), transparent 50%);
}
.hero-content { position: relative; z-index: 2; max-width: 980px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  letter-spacing: .22em; text-transform: uppercase; font-size: .72rem; color: var(--gold-soft);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
h1, .display {
  font-family: "Fraunces", serif; font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 6.2rem);
  line-height: .95; letter-spacing: -.03em;
}
h1 em, .display em { font-style: italic; color: var(--leaf); }
.hero p.lead {
  margin-top: 22px; max-width: 560px; color: #c9dbc8; font-size: 1.08rem; line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; font-size: .92rem; transition: transform .25s, box-shadow .25s, background .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--leaf); color: #06210e; box-shadow: 0 10px 30px rgba(143,212,0,.25); }
.btn-ghost { border-color: rgba(232,240,228,.25); color: var(--ink); background: rgba(255,255,255,.04); }
.hero-meta {
  margin-top: 56px; display: flex; flex-wrap: wrap; gap: 28px;
  color: var(--muted); font-size: .85rem;
}
.hero-meta strong { display: block; color: var(--ink); font-size: 1rem; font-family: Fraunces, serif; }

.marquee-wrap {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 16px 0; background: #06150e;
}
.marquee { display: flex; gap: 48px; width: max-content; animation: slide 28s linear infinite; }
.marquee span { white-space: nowrap; letter-spacing: .2em; text-transform: uppercase; font-size: .78rem; color: var(--muted); }
.marquee span::before { content: "✦ "; color: var(--leaf); }
@keyframes slide { to { transform: translateX(-50%); } }

section { padding: 96px 6vw; position: relative; }
.wrap { width: min(1180px, 100%); margin: 0 auto; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.kicker { color: var(--leaf); letter-spacing: .2em; text-transform: uppercase; font-size: .72rem; margin-bottom: 12px; }
h2 {
  font-family: "Fraunces", serif; font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.6rem); letter-spacing: -.03em; line-height: 1.05;
}
h2 em { font-style: italic; color: var(--leaf); }
.lede { margin-top: 16px; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }

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

.card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative; overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color .3s, transform .4s;
}
.card::after {
  content: ""; position: absolute; inset: auto -20% -40% auto; width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(143,212,0,.18), transparent 70%);
  pointer-events: none;
}
.card:hover { border-color: rgba(143,212,0,.4); }
.icon-orb {
  width: 52px; height: 52px; border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(143,212,0,.12); color: var(--leaf); margin-bottom: 18px;
  font-size: 1.3rem;
}
.card h3 { font-family: Fraunces, serif; font-size: 1.45rem; font-weight: 400; margin-bottom: 10px; }
.card p { color: var(--muted); line-height: 1.65; }
.card .link { display: inline-flex; margin-top: 18px; color: var(--leaf); font-weight: 700; font-size: .9rem; }

.media-card {
  position: relative; border-radius: 28px; overflow: hidden; min-height: 320px;
  border: 1px solid var(--line);
}
.media-card img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.media-card figcaption {
  position: absolute; inset: auto 16px 16px 16px;
  background: rgba(7,25,16,.72); backdrop-filter: blur(12px);
  padding: 16px 18px; border-radius: 16px;
}
.media-card h3 { font-family: Fraunces, serif; font-weight: 400; }
.media-card p { color: var(--muted); font-size: .9rem; }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  padding: 28px; border-radius: 28px;
  background: linear-gradient(135deg, rgba(143,212,0,.08), rgba(212,160,23,.05));
  border: 1px solid var(--line);
}
.stat b {
  display: block; font-family: Fraunces, serif; font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--leaf); letter-spacing: -.03em;
}
.stat span { color: var(--muted); font-size: .88rem; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.split img, .frame {
  width: 100%; border-radius: 28px; min-height: 420px; object-fit: cover;
  border: 1px solid var(--line);
}
.checklist { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.checklist li {
  display: flex; gap: 12px; color: #d5e4d3; line-height: 1.5;
}
.checklist li::before {
  content: "✓"; color: #06210e; background: var(--leaf);
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; font-size: .72rem; font-weight: 800; flex: 0 0 22px; margin-top: 2px;
}

.page-hero {
  padding: 160px 6vw 72px;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(143,212,0,.16), transparent 45%),
    linear-gradient(180deg, #0a2418, #071910);
}
.page-hero h1 { max-width: 16ch; }

.accordion { display: grid; gap: 10px; }
.acc-item {
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: rgba(255,255,255,.02);
}
.acc-item button {
  width: 100%; text-align: left; background: none; border: 0; color: var(--ink);
  padding: 18px 20px; font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center;
  font-family: Fraunces, serif;
}
.acc-item .panel { display: none; padding: 0 20px 18px; color: var(--muted); line-height: 1.7; }
.acc-item.open .panel { display: block; }
.acc-item .plus { color: var(--leaf); }

.form {
  display: grid; gap: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  padding: 28px; border-radius: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 6px; font-size: .82rem; color: var(--muted); letter-spacing: .04em; }
input, select, textarea {
  background: #06140d; border: 1px solid rgba(143,212,0,.2);
  color: var(--ink); padding: 12px 14px; border-radius: 12px; outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--leaf); box-shadow: 0 0 0 3px rgba(143,212,0,.15); }
textarea { min-height: 120px; resize: vertical; }
.form-note { color: var(--muted); font-size: .82rem; }
.toast {
  display: none; padding: 12px 14px; border-radius: 12px;
  background: rgba(143,212,0,.15); color: var(--leaf); border: 1px solid rgba(143,212,0,.3);
}

.map-block {
  border-radius: 24px; overflow: hidden; min-height: 360px; border: 1px solid var(--line);
}
.map-block iframe { width: 100%; height: 360px; border: 0; filter: grayscale(.3) contrast(1.05) saturate(.85); }

.hours { display: grid; gap: 8px; margin-top: 20px; }
.hours div { display: flex; justify-content: space-between; border-bottom: 1px dashed rgba(143,212,0,.15); padding: 8px 0; color: var(--muted); }
.hours b { color: var(--ink); font-weight: 600; }

.footer {
  padding: 64px 6vw 28px;
  border-top: 1px solid var(--line);
  background: #05110c;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
.footer h4 { font-family: Fraunces, serif; margin-bottom: 14px; font-weight: 400; }
.footer a, .footer p { color: var(--muted); line-height: 1.8; font-size: .92rem; }
.footer a:hover { color: var(--leaf); }
.legal { margin-top: 40px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: #6e8670; font-size: .78rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; } .delay-2 { transition-delay: .2s; } .delay-3 { transition-delay: .3s; }

.field-viz {
  position: relative; height: 420px; border-radius: 28px; overflow: hidden;
  background: #0a1f14; border: 1px solid var(--line);
}
.field-viz canvas { width: 100%; height: 100%; display: block; }
.field-legend {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(7,25,16,.8); backdrop-filter: blur(10px);
  padding: 12px 14px; border-radius: 14px; font-size: .78rem; color: var(--muted);
  display: grid; gap: 6px;
}
.sw { display: inline-block; width: 10px; height: 10px; border-radius: 2px; margin-right: 8px; }

.timeline { display: grid; gap: 0; }
.tl-item { display: grid; grid-template-columns: 120px 24px 1fr; gap: 18px; }
.tl-item .dot {
  width: 12px; height: 12px; border-radius: 50%; background: var(--leaf);
  margin: 6px auto 0; box-shadow: 0 0 0 6px rgba(143,212,0,.12);
  position: relative;
}
.tl-item:not(:last-child) .dot::after {
  content: ""; position: absolute; top: 16px; left: 50%; width: 1px; height: 72px;
  background: rgba(143,212,0,.2); transform: translateX(-50%);
}
.tl-year { color: var(--gold-soft); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; padding-top: 4px; }
.tl-body { padding-bottom: 36px; }
.tl-body h3 { font-family: Fraunces, serif; font-weight: 400; margin-bottom: 6px; }
.tl-body p { color: var(--muted); }

.price-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 18px; }
.price-table th, .price-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.price-table th { color: var(--muted); font-weight: 600; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.price-table td { color: var(--ink); }
.tag {
  display: inline-block; padding: 4px 8px; border-radius: 999px; font-size: .72rem; font-weight: 700;
  background: rgba(143,212,0,.15); color: var(--leaf);
}

canvas#aurora { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; opacity: .55; }

@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: grid; place-items: center; }
  .grid-3, .grid-4, .grid-2, .split, .footer-grid, .form-row, .stats { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 80px 20px 1fr; }
  section { padding: 72px 22px; }
  .hero { padding: 130px 22px 64px; }
  .page-hero { padding: 140px 22px 48px; }
}
