/* ═══════════════════════════════════════════════════════════════════════════
   Wukong Outdoor Adventure — design system
   Brand: deep forest green · warm gold · cream/off-white
   Fonts: Playfair Display (display) · Source Sans 3 (body) · Dancing Script (script)
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --wk-green-dark:  #0f2e1a;
  --wk-green:       #184a2b;
  --wk-green-mid:   #2f6f47;
  --wk-green-light: #5c9e73;
  --wk-gold:        #c8992f;
  --wk-gold-light:  #e2c374;
  --wk-cream:       #f7f2e7;
  --wk-bg:          #faf7f0;
  --wk-ink:         #22271f;
  --wk-muted:       #5f6b5a;
  --wk-border:      #e7e0cd;
  --wk-shadow:      0 12px 34px rgba(15, 46, 26, .12);
  --wk-shadow-sm:   0 4px 14px rgba(15, 46, 26, .08);
  --wk-radius:      14px;
}

/* ── Base ──────────────────────────────────────────────────────────────────── */
body {
  font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
  background-color: var(--wk-bg);
  color: var(--wk-ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }

h1, h2, h3, h4, h5, .display-serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  color: var(--wk-green-dark);
  letter-spacing: -0.01em;
}
a { color: var(--wk-green-mid); text-decoration: none; }
a:hover { color: var(--wk-green); }

.script { font-family: 'Dancing Script', cursive; font-weight: 700; }
.text-gold { color: var(--wk-gold) !important; }
.text-green { color: var(--wk-green) !important; }
.text-cream { color: var(--wk-cream) !important; }
.bg-cream { background: var(--wk-cream) !important; }
.bg-green-dark { background: var(--wk-green-dark) !important; }
.eyebrow {
  font-size: .8rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; color: var(--wk-gold);
}
.skip-link {
  position: absolute; top: .5rem; left: .5rem; z-index: 2000;
  background: #fff; padding: .5rem .9rem; border-radius: 8px;
}
.section { padding: 76px 0; }
.section-tight { padding: 48px 0; }
:focus-visible { outline: 3px solid var(--wk-gold); outline-offset: 2px; }

/* ── Navbar ────────────────────────────────────────────────────────────────── */
.wk-navbar {
  background-color: var(--wk-green-dark);
  box-shadow: 0 2px 14px rgba(0, 0, 0, .28);
  padding-top: .5rem; padding-bottom: .5rem;
}
.wk-brand-badge {
  background: var(--wk-cream); border-radius: 10px; padding: 3px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
}
.wk-brand-badge img { height: 42px; width: 42px; object-fit: contain; display: block; }
.wk-wordmark {
  font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.15rem;
  line-height: 1; color: #fff; display: flex; flex-direction: column;
}
.wk-wordmark-sub {
  font-family: 'Source Sans 3', sans-serif; font-weight: 600; font-size: .58rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--wk-gold-light);
  margin-top: 3px;
}
.wk-beta-badge {
  font-family: 'Source Sans 3', sans-serif; font-weight: 700; font-size: .62rem;
  letter-spacing: .08em; text-transform: uppercase; white-space: nowrap;
  color: var(--wk-green-dark); background: var(--wk-gold-light);
  border: 1px solid var(--wk-gold); padding: .3em .7em; align-self: center;
}
.wk-navbar .nav-link {
  font-weight: 600; font-size: .92rem; color: rgba(255, 255, 255, .82) !important;
  padding: .5rem .85rem; border-radius: 6px; transition: background .18s, color .18s;
}
.wk-navbar .nav-link:hover, .wk-navbar .nav-link.active {
  background: rgba(255, 255, 255, .1); color: #fff !important;
}
.wk-navbar .dropdown-menu {
  border: none; box-shadow: var(--wk-shadow); border-radius: 10px; overflow: hidden;
}
.wk-navbar .dropdown-item:hover { background: var(--wk-cream); }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn-wk-primary {
  background: var(--wk-gold); border: 1px solid var(--wk-gold);
  color: var(--wk-green-dark); font-weight: 700; border-radius: 8px;
  padding: .6rem 1.4rem; transition: transform .15s, box-shadow .15s, background .15s;
}
.btn-wk-primary:hover {
  background: var(--wk-gold-light); color: var(--wk-green-dark);
  transform: translateY(-1px); box-shadow: var(--wk-shadow-sm);
}
.btn-wk-green {
  background: var(--wk-green); border: 1px solid var(--wk-green);
  color: #fff; font-weight: 700; border-radius: 8px; padding: .6rem 1.4rem;
}
.btn-wk-green:hover { background: var(--wk-green-dark); color: #fff; transform: translateY(-1px); }
.btn-wk-outline {
  background: transparent; border: 1.5px solid rgba(255, 255, 255, .7);
  color: #fff; font-weight: 700; border-radius: 8px; padding: .6rem 1.4rem;
}
.btn-wk-outline:hover { background: #fff; color: var(--wk-green-dark); }
.btn-wk-outline-gold {
  background: transparent; border: 1.5px solid var(--wk-gold);
  color: var(--wk-gold); font-weight: 700; border-radius: 8px;
}
.btn-wk-outline-gold:hover { background: var(--wk-gold); color: var(--wk-green-dark); }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.wk-hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    linear-gradient(rgba(15, 46, 26, .78), rgba(15, 46, 26, .88)),
    radial-gradient(1200px 400px at 70% -10%, rgba(200, 153, 47, .35), transparent 60%),
    linear-gradient(135deg, var(--wk-green-dark) 0%, var(--wk-green) 55%, var(--wk-green-mid) 100%);
  padding: 104px 0 92px;
}
.wk-hero h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.7rem); line-height: 1.05; }
.wk-hero .hero-accent { color: var(--wk-gold-light); }
.wk-hero .hero-tagline {
  font-family: 'Dancing Script', cursive; font-size: 1.7rem; color: var(--wk-gold-light);
}
.wk-hero .lead { color: rgba(255, 255, 255, .9); max-width: 40rem; }
.wk-hero-badge {
  width: 156px; height: 156px; margin: 0 auto 1.1rem; background: var(--wk-cream);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .32); border: 3px solid var(--wk-gold);
}
.wk-hero-badge img { width: 84%; height: 84%; object-fit: contain; }

/* ── Cards ─────────────────────────────────────────────────────────────────── */
.wk-card {
  background: #fff; border: 1px solid var(--wk-border); border-radius: var(--wk-radius);
  box-shadow: var(--wk-shadow-sm); overflow: hidden; height: 100%;
  transition: transform .18s, box-shadow .18s;
}
.wk-card:hover { transform: translateY(-4px); box-shadow: var(--wk-shadow); }
.wk-card .wk-card-img {
  height: 190px; background: var(--wk-green) center/cover no-repeat;
  display: flex; align-items: flex-end;
}
.wk-card-body { padding: 1.25rem 1.35rem 1.4rem; }
.wk-card-title { font-size: 1.2rem; margin-bottom: .35rem; }

.wk-feature {
  background: #fff; border: 1px solid var(--wk-border); border-radius: var(--wk-radius);
  padding: 1.5rem;
}
/* Opt into equal-height only via Bootstrap's .h-100 (used in card grids).
   Base .wk-feature must NOT set height:100% — stacked cards in one column would
   each expand to the full column height and overflow (see DEBUG-contact-rendering.md). */
.wk-feature-icon {
  font-size: 1.7rem; color: var(--wk-green-mid);
  background: var(--wk-cream); width: 56px; height: 56px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: .9rem;
}
.wk-feature h3 { font-size: 1.1rem; }

/* Numbered "how it works" step */
.wk-step-num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--wk-gold);
  color: var(--wk-green-dark); font-family: 'Playfair Display', serif; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.25rem;
}

/* ── Badges ────────────────────────────────────────────────────────────────── */
.badge-wk {
  font-family: 'Source Sans 3', sans-serif; font-weight: 600; letter-spacing: .02em;
  padding: .4em .7em; border-radius: 999px; font-size: .78rem;
}
.badge-wk-success { background: #e4f2e8; color: #1c6b3f; }
.badge-wk-gold    { background: #f7eccf; color: #8a6b1a; }
.badge-wk-warning { background: #fbe8cf; color: #9a5a12; }
.badge-wk-danger  { background: #f7dcda; color: #9a2820; }
.badge-wk-secondary { background: #e9e7dd; color: #5f6b5a; }
.wk-price { font-family: 'Playfair Display', serif; font-weight: 800; color: var(--wk-green); }

/* ── Section headers ───────────────────────────────────────────────────────── */
.section-head { max-width: 46rem; margin: 0 auto 2.6rem; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.section-head p { color: var(--wk-muted); font-size: 1.08rem; }
.rule-gold { width: 64px; height: 3px; background: var(--wk-gold); border: 0; margin: 1rem auto; opacity: 1; }

/* ── Forms / auth ──────────────────────────────────────────────────────────── */
.form-control, .form-select {
  border: 1px solid var(--wk-border); border-radius: 8px; padding: .6rem .8rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--wk-green-light); box-shadow: 0 0 0 .2rem rgba(92, 158, 115, .25);
}
.wk-auth-card {
  max-width: 460px; margin: 3rem auto; background: #fff;
  border: 1px solid var(--wk-border); border-radius: var(--wk-radius);
  box-shadow: var(--wk-shadow); padding: 2.2rem;
}
.wk-auth-card h1 { font-size: 1.7rem; }

/* ── Footer ────────────────────────────────────────────────────────────────── */
.wk-footer { background: var(--wk-green-dark); color: rgba(255, 255, 255, .82); padding: 56px 0 26px; }
.wk-footer-head { color: #fff; font-family: 'Source Sans 3', sans-serif; font-weight: 700; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1rem; }
.wk-footer-links { list-style: none; padding: 0; margin: 0; }
.wk-footer-links li { margin-bottom: .5rem; }
.wk-footer-links a { color: rgba(255, 255, 255, .78); font-size: .95rem; }
.wk-footer-links a:hover { color: var(--wk-gold-light); }
.wk-footer-tagline { font-family: 'Dancing Script', cursive; font-size: 1.35rem; color: var(--wk-gold-light); margin-bottom: .4rem; }
.wk-footer-muted { color: rgba(255, 255, 255, .6); font-size: .92rem; }
.wk-footer-legal a { color: rgba(255, 255, 255, .6); }
.wk-footer-legal a:hover { color: var(--wk-gold-light); }
.wk-footer-rule { border-color: rgba(255, 255, 255, .14); margin: 2rem 0 1.2rem; }
.wk-social a { color: #fff; font-size: 1.25rem; margin-right: .9rem; }
.wk-social a:hover { color: var(--wk-gold-light); }

/* ── Utilities ─────────────────────────────────────────────────────────────── */
.wk-stat { background: #fff; border: 1px solid var(--wk-border); border-radius: var(--wk-radius); padding: 1.3rem; text-align: center; }
.wk-stat .num { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 2rem; color: var(--wk-green); line-height: 1; }
.wk-stat .lbl { color: var(--wk-muted); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; }
.wk-meta-list { list-style: none; padding: 0; margin: 0; }
.wk-meta-list li { display: flex; align-items: center; gap: .55rem; padding: .35rem 0; color: var(--wk-ink); }
.wk-meta-list .bi { color: var(--wk-green-mid); }
