/* ZenithMovement — shared brand styles */
:root {
  --pine: #0E2A24;
  --pine-soft: #143b32;
  --lime: #A3E635;
  --clay: #C97B4A;
  --sand: #F4F1EA;
  --stone: #8A9590;
  --line: rgba(244,241,234,0.12);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--pine);
  color: var(--sand);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--lime); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header */
.site-header {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 24px; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: rgba(14,42,36,0.92);
  backdrop-filter: blur(8px); z-index: 10;
}
.site-header .logo { width: 36px; height: auto; }
.site-header .brand { font-size: 18px; font-weight: 600; }
.site-header .brand span { color: var(--lime); }
.site-header nav { margin-left: auto; display: flex; gap: 20px; font-size: 15px; }
.site-header nav a { color: var(--sand); opacity: 0.85; }

/* Layout */
.wrap { max-width: 760px; margin: 0 auto; padding: 48px 24px 80px; }

/* Entry header */
.entry-level {
  display: inline-block; font-size: 12px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--pine); background: var(--lime);
  padding: 4px 12px; border-radius: 999px; font-weight: 700; margin-bottom: 16px;
}
h1 { font-size: 34px; line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 16px; }
.who-for { font-size: 18px; color: var(--sand); opacity: 0.9; margin-bottom: 8px; }

/* Sections */
section { margin-top: 44px; }
h2 {
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--lime); margin-bottom: 16px; padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
h3 { font-size: 19px; margin: 24px 0 8px; }
p { margin-bottom: 14px; }

/* Evidence strength callout */
.evidence {
  background: var(--pine-soft); border-left: 3px solid var(--clay);
  padding: 14px 18px; border-radius: 0 8px 8px 0; font-size: 15px; margin-top: 16px;
}

/* Findings */
.finding { margin-bottom: 14px; padding-left: 16px; border-left: 2px solid var(--line); }
.finding .cite { font-size: 13px; opacity: 0.7; }

/* Protocol */
.protocol-slot { margin-bottom: 28px; }
.protocol-slot .slot-name {
  font-size: 14px; font-weight: 700; color: var(--clay);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
}
.move {
  background: var(--pine-soft); border: 1px solid var(--line);
  border-radius: 10px; padding: 16px 18px; margin-bottom: 10px;
}
.move .move-name { font-weight: 600; margin-bottom: 6px; }
.move .move-inst { font-size: 15px; opacity: 0.88; }
.move .move-equip { font-size: 13px; opacity: 0.6; margin-top: 6px; }

/* Finish modalities */
.finish-card {
  background: var(--pine-soft); border: 1px solid var(--line);
  border-radius: 10px; padding: 16px 18px; margin-bottom: 10px;
}
.finish-card .fc-label { font-weight: 600; color: var(--lime); margin-bottom: 6px; }
.finish-card .fc-note { font-size: 13px; opacity: 0.7; margin-top: 6px; }

/* Video slot */
.video-slot {
  margin-top: 16px; aspect-ratio: 16/9; width: 100%;
  border: 1px dashed var(--line); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--stone); font-size: 14px; background: var(--pine-soft);
}
.video-slot iframe { width: 100%; height: 100%; border: 0; border-radius: 12px; }

/* Safety */
.safety {
  margin-top: 44px; font-size: 14px; color: var(--stone);
  border-top: 1px solid var(--line); padding-top: 20px;
}

/* Guides listing */
.guide-card {
  display: block; background: var(--pine-soft); border: 1px solid var(--line);
  border-radius: 12px; padding: 22px 24px; margin-bottom: 14px; color: var(--sand);
  transition: border-color 0.2s;
}
.guide-card:hover { border-color: var(--lime); text-decoration: none; }
.guide-card .gc-title { font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.guide-card .gc-meta { font-size: 13px; color: var(--stone); }

footer {
  text-align: center; padding: 40px 24px; font-size: 13px;
  color: var(--stone); border-top: 1px solid var(--line);
}

.banner { width: 100%; line-height: 0; }
.banner svg { display: block; width: 100%; }
.divider { max-width: 760px; margin: 8px auto; line-height: 0; }
.divider svg { display: block; width: 100%; }

.hero-photo { position: relative; max-width: 100%; line-height: 0; }
.hero-photo img { width: 100%; height: 220px; object-fit: cover; display: block; filter: brightness(0.7); }
.photo-credit {
  position: absolute; bottom: 6px; right: 10px; font-size: 11px;
  color: rgba(244,241,234,0.7); line-height: 1; background: rgba(14,42,36,0.5);
  padding: 3px 6px; border-radius: 4px;
}
.photo-credit a { color: rgba(244,241,234,0.85); }

.move-video { margin-top: 12px; aspect-ratio: 16/9; width: 100%; }
.move-video iframe { width: 100%; height: 100%; border: 0; border-radius: 8px; display: block; }