/* ════════════════════════════════════════════════════════════════════════
   WOW Site — layout, nav, footer, components
   Loaded after colors_and_type.css. Plain CSS — no preprocessor.
   ════════════════════════════════════════════════════════════════════════ */

* { box-sizing: border-box; }
body {
  margin: 0;
  background: #fff;
  color: var(--wow-ink);
  font-family: var(--wow-font);
  font-weight: 300;
  line-height: var(--wow-lh-normal);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Fixed corner-gradient atmosphere (sits behind everything) */
.page-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse at 12% 8%, rgba(153,181,60,0.10) 0%, transparent 45%),
    radial-gradient(ellipse at 88% 92%, rgba(214,124,33,0.13) 0%, transparent 45%);
}
main, footer, nav.wow-nav { position: relative; z-index: 1; }

.wow-container { max-width: 820px; margin: 0 auto; padding: 0 28px; }
.wow-container--wide   { max-width: 900px; }
.wow-container--narrow { max-width: 760px; }

/* ── NAV ─────────────────────────────────────────────────────────────── */
.wow-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(214,124,33,0.12);
}
.wow-nav-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 14px 28px;
  display: flex; align-items: center; gap: 24px;
}
.wow-nav-logo img { height: 38px; display: block; }
.wow-nav-links {
  flex: 1; display: flex; gap: 22px;
  justify-content: center; flex-wrap: wrap;
}
.wow-nav-links a {
  font-size: 13px; font-weight: 500;
  color: var(--wow-ink); text-decoration: none;
  padding: 6px 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.wow-nav-links a:hover { color: var(--wow-orange); }
.wow-nav-links a.is-active {
  color: var(--wow-orange);
  border-bottom-color: var(--wow-orange);
  font-weight: 700;
}
.wow-nav-cta {
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  color: #fff; text-decoration: none;
  background: var(--wow-orange);
  padding: 8px 16px; border-radius: 50px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(214,124,33,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wow-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(214,124,33,0.4); }

/* Mobile nav */
.wow-nav-toggle { display: none; }
@media (max-width: 880px) {
  .wow-nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; border: 1.5px solid var(--wow-border);
    width: 38px; height: 38px; border-radius: 8px;
    cursor: pointer; padding: 0;
  }
  .wow-nav-toggle svg { width: 18px; height: 18px; }
  .wow-nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 16px 28px;
    flex-direction: column; gap: 4px;
    border-bottom: 1px solid var(--wow-border);
    display: none;
  }
  .wow-nav-links.is-open { display: flex; }
  .wow-nav-links a { font-size: 16px; padding: 12px 0; }
}

/* ── TYPOGRAPHY ROLES ───────────────────────────────────────────────── */
.wow-page-header { text-align: center; padding: 56px 0 24px; }
.wow-page-header h1 {
  font-size: clamp(1.8rem, 3vw + 1rem, 2.6rem);
  font-weight: 700; line-height: 1.15;
  color: var(--wow-orange);
  margin: 0 auto 14px;
  max-width: 640px;
  letter-spacing: -0.01em;
}
.wow-page-header.is-green h1 { color: var(--wow-green-dark); }
.wow-page-header .wow-sub {
  font-size: 17px; color: var(--wow-text-soft);
  line-height: 1.7; font-weight: 300;
  max-width: 560px; margin: 0 auto;
}

/* Eyebrow, divider, lead */
.wow-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--wow-orange);
}
.wow-eyebrow.is-green { color: var(--wow-green-dark); }

.wow-divider { display: flex; align-items: center; gap: 1rem; margin: 2.5rem 0 2rem; }
.wow-divider::before, .wow-divider::after {
  content:''; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(214,124,33,0.5), transparent);
}
.wow-divider span {
  font-size: 11px; color: var(--wow-orange);
  letter-spacing: 0.3em; font-weight: 700; text-transform: uppercase;
}

.wow-lead {
  font-size: 19px; color: var(--wow-ink);
  line-height: 1.7; font-weight: 300; font-style: italic;
  text-align: center; margin: 0 auto 40px; max-width: 580px;
}
.wow-body p {
  font-size: 16px; color: var(--wow-text-soft);
  line-height: 1.9; font-weight: 300;
  margin: 0 0 22px;
}

/* Inline emphasis */
.wow-highlight       { color: var(--wow-orange); font-weight: 700; }
.wow-highlight-green { color: var(--wow-green-dark); font-weight: 700; }

/* ── CTA BUTTONS ────────────────────────────────────────────────────── */
.wow-btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--wow-orange), var(--wow-orange-light));
  color: #fff; text-decoration: none;
  padding: 0.95rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: 14px; letter-spacing: 0.04em;
  box-shadow: var(--wow-shadow-cta);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: none; cursor: pointer; font-family: inherit;
}
.wow-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(214,124,33,0.5); }

.wow-btn-secondary {
  display: inline-flex; align-items: center;
  background: #fff; color: var(--wow-orange);
  text-decoration: none;
  padding: 0.85rem 1.8rem; border-radius: 50px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.04em;
  border: 1.5px solid var(--wow-orange);
  transition: background 0.25s;
}
.wow-btn-secondary:hover { background: var(--wow-orange-pale); }

/* Big CTA block */
.wow-cta-block {
  border-radius: 10px; padding: 40px 32px;
  text-align: center; margin-bottom: 24px;
  background: var(--wow-orange);
}
.wow-cta-block.is-green { background: var(--wow-green-dark); }
.wow-cta-block h3 {
  font-size: 24px; font-weight: 700; color: #fff;
  margin: 0 0 8px; letter-spacing: -0.01em;
}
.wow-cta-block p {
  font-size: 14.5px; color: rgba(255,255,255,0.88);
  line-height: 1.6; margin: 0 auto 24px; font-weight: 300;
  max-width: 460px;
}
.wow-cta-block-btn {
  display: inline-block; background: #fff;
  color: var(--wow-orange); text-decoration: none;
  font-weight: 700; font-size: 14px; letter-spacing: 0.04em;
  padding: 0.95rem 2.2rem; border-radius: 50px;
  transition: transform 0.25s;
}
.wow-cta-block.is-green .wow-cta-block-btn { color: var(--wow-green-dark); }
.wow-cta-block-btn:hover { transform: translateY(-2px); }

/* ── ACCENT CARDS ───────────────────────────────────────────────────── */
.wow-card-orange {
  background: var(--wow-orange-pale);
  border: 1px solid var(--wow-border-orange);
  border-left: 4px solid var(--wow-orange);
  border-radius: 8px;
  padding: 28px 32px;
}
.wow-card-green {
  background: var(--wow-green-pale);
  border: 1px solid var(--wow-border-green);
  border-left: 4px solid var(--wow-green);
  border-radius: 8px;
  padding: 24px 32px;
}
.wow-card-cream {
  background: var(--wow-cream);
  border-radius: 12px;
  padding: 32px 36px;
  position: relative; overflow: hidden;
}
.wow-card-plain {
  background: #fff;
  border: 1px solid var(--wow-border);
  border-radius: 8px;
  padding: 24px 28px;
}

/* ── ✓ / ✕ LIST CARDS ───────────────────────────────────────────────── */
.wow-list-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.wow-list-card {
  border-radius: 8px; padding: 20px 22px;
}
.wow-list-card .h {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 14px;
}
.wow-list-card.is-avoid { background: #fff5f5; border: 1px solid rgba(200,80,80,0.2); }
.wow-list-card.is-avoid .h { color: var(--wow-error); }
.wow-list-card.is-enjoy { background: var(--wow-green-pale); border: 1px solid var(--wow-border-green); }
.wow-list-card.is-enjoy .h { color: var(--wow-green-dark); }
.wow-list-card ul { list-style: none; padding: 0; margin: 0; }
.wow-list-card li {
  font-size: 14px; color: var(--wow-text-soft);
  padding: 6px 0; display: flex; gap: 10px; align-items: flex-start;
}
.wow-list-card li + li { border-top: 1px solid rgba(0,0,0,0.04); }
.wow-list-card.is-avoid li::before { content:'✕'; color: var(--wow-error); font-weight: 700; flex-shrink: 0; }
.wow-list-card.is-enjoy li::before { content:'✓'; color: var(--wow-green-dark); font-weight: 700; flex-shrink: 0; }

/* ── PROGRAM CARDS (home) ───────────────────────────────────────────── */
.wow-prog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.wow-prog-card {
  display: block; text-decoration: none;
  background: #fff;
  border: 1px solid var(--wow-border-orange);
  border-radius: 10px;
  padding: 32px 32px 28px;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.wow-prog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.wow-prog-card.is-green { border-color: var(--wow-border-green); }
.wow-prog-card .badge {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 16px;
  background: var(--wow-orange-pale); color: var(--wow-orange);
}
.wow-prog-card.is-green .badge {
  background: var(--wow-green-pale); color: var(--wow-green-dark);
}
.wow-prog-card h3 {
  font-size: 28px; font-weight: 700; line-height: 1.1;
  color: var(--wow-orange); margin: 0 0 12px; letter-spacing: -0.01em;
}
.wow-prog-card.is-green h3 { color: var(--wow-green-dark); }
.wow-prog-card .sub {
  font-size: 14.5px; color: var(--wow-text-soft);
  line-height: 1.7; font-weight: 300; margin: 0 0 18px;
}
.wow-prog-card ul { list-style: none; padding: 0; margin: 0 0 20px; }
.wow-prog-card li {
  font-size: 13.5px; color: var(--wow-ink);
  line-height: 1.6; padding: 4px 0;
  display: flex; align-items: flex-start; gap: 8px;
}
.wow-prog-card li::before { content:'✓'; color: var(--wow-orange); font-weight: 700; flex-shrink: 0; }
.wow-prog-card.is-green li::before { color: var(--wow-green-dark); }
.wow-prog-card .more {
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--wow-orange);
}
.wow-prog-card.is-green .more { color: var(--wow-green-dark); }

/* ── LEAF-BULLET LIST ───────────────────────────────────────────────── */
.wow-leaf-list { list-style: none; padding: 0; margin: 0; }
.wow-leaf-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--wow-border);
  font-size: 15.5px; color: var(--wow-ink); line-height: 1.6;
}
.wow-leaf-list li:last-child { border-bottom: 0; }
.wow-leaf-list li::before {
  content: ''; width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px;
  background: url('assets/icon-leaf-bullet.svg') center/contain no-repeat;
}
.wow-leaf-list.is-small li { font-size: 14px; padding: 6px 0; gap: 10px; border-bottom: none; }
.wow-leaf-list.is-small li::before { width: 16px; height: 16px; margin-top: 4px; }

/* ── FOOTER ─────────────────────────────────────────────────────────── */
.wow-footer {
  margin-top: 64px; padding: 48px 28px 32px;
  border-top: 1px solid var(--wow-border);
  background: rgba(249,247,244,0.5);
  text-align: center;
}
.wow-footer img { width: 180px; display: block; margin: 0 auto 16px; opacity: 0.85; }
.wow-footer .tag {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--wow-text-muted); margin: 0 0 8px; font-weight: 700;
}
.wow-footer .based { font-size: 13px; color: var(--wow-text-soft); margin: 0 0 12px; }
.wow-footer a { color: var(--wow-green-dark); text-decoration: none; font-weight: 600; font-size: 14px; }
.wow-footer .copy {
  font-size: 11px; color: var(--wow-text-muted);
  margin: 24px 0 0; letter-spacing: 0.05em;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 740px) {
  .wow-prog-grid, .wow-list-grid { grid-template-columns: 1fr; }
}
