@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500&display=swap');
:root {
  --sand: #F5EDD8;
  --earth: #C4935A;
  --bark: #6B4226;
  --savanna: #311D10;
  --moss: #4A6741;
  --dust: #E8DBBF;
  --sky: #8BA5C7;
  --accent: #D4723A;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--savanna); margin: 0; padding: 0; min-height: 100vh; }
.wep-planner { font-family: 'DM Sans', sans-serif; background: var(--savanna); color: var(--sand); width: 100%; max-width: none; margin: 0; border-radius: 0; overflow-x: hidden; position: relative; }
.wep-grain { position: absolute; inset: 0; pointer-events: none; z-index: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"); opacity: 0.4; }
.wep-header { padding: 1.25rem 2rem; border-bottom: 0.5px solid rgba(196,147,90,0.3); position: relative; z-index: 1; display: flex; align-items: center; gap: 12px; }
.wep-logo-img { height: 40px; width: auto; display: block; }
.wep-logo-text { font-family: 'Playfair Display', serif; font-size: 1.8rem; letter-spacing: 1px; color: var(--earth); }
.wep-hero { padding: 2rem 2rem 1.5rem; position: relative; z-index: 1; }
.wep-eyebrow { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--earth); margin-bottom: 10px; }
.wep-title { font-family: 'Playfair Display', serif; font-size: clamp(24px, 5vw, 36px); line-height: 1.15; color: var(--sand); margin-bottom: 8px; }
.wep-title em { font-style: italic; color: var(--earth); }
.wep-sub { font-size: 14px; color: rgba(245,237,216,0.6); font-weight: 300; line-height: 1.6; }
.wep-planner-body { padding: 0 2rem 2rem; position: relative; z-index: 1; }
.wep-step { display: none; }
.wep-step.active { display: block; animation: wepFadeUp 0.35s ease forwards; }
@keyframes wepFadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.wep-step-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--earth); margin-bottom: 1.2rem; }
.wep-question { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--sand); margin-bottom: 1.2rem; line-height: 1.4; }
.wep-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 8px; margin-bottom: 1.5rem; }
.wep-opt { background: rgba(196,147,90,0.08); border: 0.5px solid rgba(196,147,90,0.25); border-radius: 8px; padding: 12px 10px; cursor: pointer; text-align: center; transition: all 0.18s; }
.wep-opt:hover { background: rgba(196,147,90,0.18); border-color: rgba(196,147,90,0.5); }
.wep-opt.selected { background: rgba(196,147,90,0.22); border: 1.5px solid var(--earth); }
.wep-opt-icon { font-size: 20px; margin-bottom: 6px; display: block; }
.wep-opt-label { font-size: 15px; color: var(--sand); font-weight: 500; display: block; }
.wep-opt-sub { font-size: 12px; color: rgba(245,237,216,0.55); margin-top: 6px; display: block; padding-top: 6px; border-top: 0.5px solid rgba(196,147,90,0.2); line-height: 1.5; }
.wep-slider-wrap { margin-bottom: 1.5rem; }
.wep-slider-val { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--earth); margin-bottom: 8px; }
.wep-slider-val span { font-size: 16px; color: rgba(245,237,216,0.5); }
input[type=range] { width: 100%; accent-color: var(--earth); height: 3px; cursor: pointer; }
.wep-slider-labels { display: flex; justify-content: space-between; font-size: 11px; color: rgba(245,237,216,0.4); margin-top: 4px; }
.wep-budget-wrap { position: relative; margin-bottom: 1.5rem; }
.wep-budget-prefix { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--earth); font-size: 16px; }
input[type=text] { width: 100%; background: rgba(196,147,90,0.08); border: 0.5px solid rgba(196,147,90,0.3); border-radius: 8px; padding: 14px 14px 14px 32px; color: var(--sand); font-size: 20px; font-family: 'Playfair Display', serif; outline: none; }
input[type=text]:focus { border-color: var(--earth); }
.wep-nav { display: flex; gap: 10px; align-items: center; }
.wep-btn-next { background: var(--accent); color: #fff; border: none; border-radius: 8px; padding: 13px 28px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.18s; font-family: 'DM Sans', sans-serif; letter-spacing: 0.03em; }
.wep-btn-next:hover { background: #c4622e; }
.wep-btn-next:disabled { opacity: 0.4; cursor: default; }
.wep-btn-back { background: transparent; border: 0.5px solid rgba(196,147,90,0.3); color: rgba(245,237,216,0.6); border-radius: 8px; padding: 13px 20px; font-size: 14px; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.18s; }
.wep-btn-back:hover { border-color: var(--earth); color: var(--sand); }
.wep-progress { display: flex; gap: 5px; margin-bottom: 2rem; }
.wep-prog-dot { height: 3px; border-radius: 2px; flex: 1; background: rgba(196,147,90,0.2); transition: background 0.3s; }
.wep-prog-dot.done { background: var(--earth); }
.wep-prog-dot.active { background: var(--accent); }
.wep-result-card { background: rgba(196,147,90,0.08); border: 0.5px solid rgba(196,147,90,0.3); border-radius: 12px; padding: 1.5rem; margin-bottom: 1rem; }
.wep-result-title { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--sand); margin-bottom: 4px; }
.wep-result-sub { font-size: 13px; color: var(--earth); margin-bottom: 1rem; }
.wep-result-divider { height: 0.5px; background: rgba(196,147,90,0.3); margin: 1rem 0 1.2rem; }
.wep-day-block { margin-bottom: 1.2rem; padding-bottom: 1.2rem; border-bottom: 0.5px solid rgba(196,147,90,0.15); }
.wep-day-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.wep-day-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--earth); margin-bottom: 5px; }
.wep-day-activity { font-size: 15px; color: var(--sand); line-height: 1.7; }
.wep-tag-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 1rem; }
.wep-itag { font-size: 12px; padding: 4px 12px; border-radius: 20px; background: rgba(196,147,90,0.15); color: var(--earth); }
.wep-lock { background: rgba(44,26,14,0.9); border: 0.5px solid rgba(196,147,90,0.3); border-radius: 12px; padding: 1.5rem; text-align: center; margin-top: 10px; }
.wep-lock-title { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--sand); margin-bottom: 6px; }
.wep-lock-sub { font-size: 13px; color: rgba(245,237,216,0.5); margin-bottom: 1.2rem; line-height: 1.6; }
.wep-btn-sub { background: var(--accent); color: #fff; border: none; border-radius: 8px; padding: 13px 32px; font-size: 14px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.18s; display: block; width: 100%; margin-bottom: 8px; text-decoration: none; text-align: center; }
.wep-btn-sub:hover { background: #c4622e; }
.wep-lock-price { font-size: 12px; color: rgba(245,237,216,0.4); }
.wep-pro-result { display: none; }
.wep-pro-result.visible { display: block; }
.wep-pro-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 1.5rem; }
.wep-pro-btn { flex: 1; min-width: 100px; background: rgba(196,147,90,0.1); border: 0.5px solid rgba(196,147,90,0.3); border-radius: 8px; padding: 11px 14px; color: var(--sand); font-size: 13px; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all 0.18s; text-align: center; }
.wep-pro-btn:hover { background: rgba(196,147,90,0.2); border-color: var(--earth); }
.wep-pro-btn.primary { background: var(--accent); border-color: var(--accent); font-weight: 500; }
.wep-pro-btn.primary:hover { background: #c4622e; }
.wep-pro-btn.disabled, .wep-pro-btn.disabled:hover { opacity: 0.5; cursor: not-allowed; background: rgba(196,147,90,0.1); border-color: rgba(196,147,90,0.3); pointer-events: none; }
.wep-pack-section { margin-top: 0; }
.wep-pack-divider { height: 0.5px; background: rgba(196,147,90,0.3); margin: 1rem 0 1.2rem; }
.wep-pack-cat { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--earth); margin: 1.1rem 0 0.4rem; padding-bottom: 0.3rem; border-bottom: 0.5px solid rgba(196,147,90,0.2); }
.wep-pack-cat-icon { font-size: 1rem; }
.wep-pack-cat-count { margin-left: auto; font-size: 0.7rem; background: rgba(196,147,90,0.15); border: 0.5px solid rgba(196,147,90,0.3); border-radius: 10px; padding: 0.1rem 0.5rem; color: var(--earth); font-weight: 600; letter-spacing: 0; }
.wep-pack-grid { display: flex; flex-direction: column; gap: 0.3rem; }
.wep-pack-item { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.55rem 0.65rem; border-radius: 8px; background: rgba(245,237,216,0.04); border: 0.5px solid rgba(245,237,216,0.08); cursor: pointer; transition: background 0.15s, opacity 0.15s; user-select: none; }
.wep-pack-item:hover { background: rgba(196,147,90,0.08); }
.wep-pack-item--checked { opacity: 0.45; }
.wep-pack-item--checked .wep-pack-item-text { text-decoration: line-through; }
.wep-pack-checkbox { flex-shrink: 0; width: 18px; height: 18px; border-radius: 4px; border: 1.5px solid rgba(196,147,90,0.5); background: rgba(196,147,90,0.08); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--earth); font-weight: 700; margin-top: 1px; }
.wep-pack-item--checked .wep-pack-checkbox { background: rgba(196,147,90,0.3); border-color: var(--earth); }
.wep-pack-item-body { display: flex; flex-direction: column; gap: 0.2rem; flex: 1; min-width: 0; }
.wep-pack-item-text { font-size: 0.875rem; color: rgba(245,237,216,0.92); line-height: 1.35; }
.wep-pack-note { font-size: 0.75rem; color: rgba(245,237,216,0.45); line-height: 1.4; font-style: italic; }
.wep-pack-actions { flex-shrink: 0; display: flex; opacity: 0; transition: opacity 0.15s; }
.wep-pack-item:hover .wep-pack-actions { opacity: 1; }
.wep-pack-actions button { background: none; border: none; color: rgba(245,237,216,0.4); font-size: 0.75rem; cursor: pointer; padding: 0.1rem 0.25rem; border-radius: 4px; line-height: 1; }
.wep-pack-actions button:hover { color: #e07070; background: rgba(200,80,80,0.1); }
.wep-add-item { margin-top: 15px; display: flex; gap: 10px; align-items: center; }
.wep-add-item input { flex: 1; background: rgba(196,147,90,0.08); border: 0.5px solid rgba(196,147,90,0.3); border-radius: 6px; padding: 8px 12px; color: var(--sand); font-size: 14px; }
.wep-add-item button { background: var(--earth); border: none; border-radius: 6px; padding: 8px 14px; color: #1a1a1a; cursor: pointer; font-weight: bold; font-size: 14px; }
.wep-ai-stream { font-size: 14px; color: var(--sand); line-height: 1.7; white-space: pre-wrap; }
.wep-edit-textarea { width: 100%; background: rgba(196,147,90,0.08); border: 0.5px solid var(--earth); border-radius: 8px; padding: 12px; color: var(--sand); font-family: monospace; font-size: 13px; line-height: 1.5; resize: vertical; }
.wep-save-btn { margin-top: 10px; background: var(--moss); border: none; border-radius: 6px; padding: 8px 16px; color: white; cursor: pointer; }
.wep-loading { text-align: center; padding: 2.5rem 0; }
.wep-dots span { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--earth); margin: 0 2px; animation: wepBounce 1.2s infinite; }
.wep-dots span:nth-child(2) { animation-delay: 0.2s; }
.wep-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes wepBounce { 0%,80%,100%{transform:translateY(0)}40%{transform:translateY(-6px)} }
.wep-gen-label { font-size: 13px; color: rgba(245,237,216,0.5); margin-top: 12px; }
.wep-regen { margin-top: 1rem; }
.wep-regen-title { font-size: 13px; color: var(--earth); margin-bottom: 8px; }
.wep-regen-input { width: 100%; background: rgba(196,147,90,0.08); border: 0.5px solid rgba(196,147,90,0.3); border-radius: 8px; padding: 12px 14px; color: var(--sand); font-size: 14px; font-family: 'DM Sans', sans-serif; outline: none; resize: none; }
.wep-regen-input:focus { border-color: var(--earth); }
.wep-divider { height: 0.5px; background: rgba(196,147,90,0.2); margin: 1.5rem 0; }
@media print { .wep-grain, .wep-header, .wep-hero, .wep-progress, .wep-pro-actions, .wep-regen, .wep-lock, .wep-pack-actions, .wep-add-item { display: none !important; } body, .wep-planner { background: #fff !important; color: #1a1a1a !important; } .wep-result-card { border: 1px solid #ddd !important; background: #fff !important; } .wep-result-title, .wep-day-label, .wep-species-title { color: #8B4513 !important; } .wep-day-activity, .wep-ai-stream { color: #333 !important; } .wep-pack-section { background: transparent !important; border: none !important; } .wep-species-sub, .wep-pack-item { color: #333 !important; } .wep-itag { background: #f0e0c8 !important; color: #8B4513 !important; } .wep-species-chip { background: #f0e0c8 !important; border-color: #c4935a !important; color: #5a2d0c !important; } }
.wep-footer { font-size: 11px; color: rgba(245,237,216,0.3); text-align: center; padding: 1rem 2rem; position: relative; z-index: 1; }
.wep-footer a { color: rgba(245,237,216,0.4); text-decoration: none; margin-right: 12px; }
.wep-footer a:hover { color: var(--earth); }
#wep-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1rem 1.25rem;
  background: rgba(49, 29, 16, 0.97);
  border-top: 0.5px solid rgba(196, 147, 90, 0.35);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(245, 237, 216, 0.85);
}
#wep-cookie-banner[hidden] { display: none !important; }
#wep-cookie-banner a { color: var(--earth); }
.wep-cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.wep-cookie-btn {
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
}
.wep-cookie-btn.accept { background: var(--earth); color: #1a1a1a; font-weight: 600; }
.wep-cookie-btn.decline { background: transparent; color: rgba(245, 237, 216, 0.7); border: 0.5px solid rgba(196, 147, 90, 0.35); }
.wep-editable { cursor: pointer; border-radius: 4px; transition: background 0.15s; }
.wep-editable:hover { background: rgba(196,147,90,0.12); outline: 1px dashed rgba(196,147,90,0.4); }
.wep-editable-input { background: rgba(196,147,90,0.1); border: 1px solid var(--earth); border-radius: 6px; color: var(--sand); font-family: inherit; font-size: inherit; font-weight: inherit; line-height: inherit; letter-spacing: inherit; width: 100%; padding: 4px 8px; outline: none; }
.wep-blog-section {
  margin-top: 2rem;
  padding: 1.5rem 2rem 0;
  border-top: 0.5px solid rgba(196,147,90,0.2);
}
.wep-blog-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 0.9rem;
}
.wep-blog-card {
  display: block;
  border: 0.5px solid rgba(196,147,90,0.25);
  border-radius: 8px;
  padding: 1rem 1.1rem;
  background: rgba(196,147,90,0.08);
  text-decoration: none;
  transition: all 0.18s;
}
.wep-blog-card:hover {
  background: rgba(196,147,90,0.18);
  border-color: rgba(196,147,90,0.5);
}
.wep-blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--sand);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}
.wep-blog-card-sub {
  font-size: 0.82rem;
  color: rgba(245,237,216,0.6);
  line-height: 1.5;
  font-weight: 300;
}
.wep-blog-link {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--earth);
  text-decoration: none;
}
.wep-blog-link:hover { opacity: 0.8; }