:root {
  --bg: #0b1411;
  --bg-2: #0f1d18;
  --ink: #0a1f17;
  --paper: #f6f7f3;
  --moss: #2f6b4f;
  --moss-2: #1f4a36;
  --lime: #c8f25d;
  --sun: #f6c453;
  --line: rgba(10, 31, 23, 0.12);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
.font-display { font-family: 'Fraunces', 'Times New Roman', serif; letter-spacing: -0.01em; }

.brand-grad {
  background: radial-gradient(1200px 600px at 80% -10%, #1f4a36 0%, transparent 60%),
              radial-gradient(900px 500px at 10% 110%, #2f6b4f 0%, transparent 55%),
              #0b1411;
}
.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .7rem; border-radius: 999px;
  background: rgba(200,242,93,.14); color: var(--lime);
  font-size: .78rem; font-weight: 500; letter-spacing: .02em;
  border: 1px solid rgba(200,242,93,.25);
}
.chip-dark {
  background: rgba(10,31,23,.06); color: var(--moss-2);
  border: 1px solid var(--line);
}
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .8rem 1.2rem; border-radius: 999px;
  font-weight: 500; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--lime); color: var(--ink); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 30px -10px rgba(200,242,93,.6); }
.btn-ghost { color: var(--paper); border: 1px solid rgba(246,247,243,.25); }
.btn-ghost:hover { background: rgba(246,247,243,.08); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: #0e2a1f; }
.btn-outline { border: 1px solid var(--line); color: var(--ink); background: white; }
.btn-outline:hover { border-color: var(--moss); }

.card {
  background: white; border: 1px solid var(--line); border-radius: 20px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -25px rgba(10,31,23,.25); border-color: rgba(47,107,79,.35); }

.divider-dot { width: 4px; height: 4px; border-radius: 999px; background: currentColor; opacity: .35; }

.spec-row { display: grid; grid-template-columns: 1fr auto; padding: .85rem 0; border-bottom: 1px dashed var(--line); }
.spec-row:last-child { border-bottom: none; }

.tab-btn { padding: .85rem 1rem; border-bottom: 2px solid transparent; color: rgba(10,31,23,.55); font-weight: 500; }
.tab-btn.active { color: var(--ink); border-color: var(--moss); }

.step-num {
  width: 36px; height: 36px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--lime); font-weight: 600;
}
.field { width: 100%; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: 12px; background: white; }
.field:focus { outline: none; border-color: var(--moss); box-shadow: 0 0 0 4px rgba(47,107,79,.12); }

.timeslot {
  padding: .7rem .9rem; border: 1px solid var(--line); border-radius: 12px;
  text-align: center; background: white; cursor: pointer; font-size: .9rem;
}
.timeslot:hover { border-color: var(--moss); }
.timeslot.selected { background: var(--ink); color: var(--lime); border-color: var(--ink); }
.timeslot.unavailable { opacity: .35; text-decoration: line-through; cursor: not-allowed; }

.hero-img {
  background-size: cover; background-position: center;
  border-radius: 24px;
}

.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.marquee-track { display: flex; gap: 3rem; animation: scroll 30s linear infinite; }
@keyframes scroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }
