/* ===== Variables ===== */
:root {
  --red: #7a1414;
  --red-light: rgba(122, 20, 20, 0.08);
  --red-mid: rgba(122, 20, 20, 0.5);
  --bg: #fcfcfc;
  --bg-alt: #f0f0f0;
  --text: #222;
  --text-light: #555;
  --text-muted: #888;
  --border: #ddd;
  --border-light: #e8e8e8;
  --font: 'Inter','Noto Sans','Noto Sans KR','Noto Sans Arabic',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --container: 1120px;
  --container-narrow: 820px;
  --nav-height: 60px;
  --radius: 6px;
  --radius-sm: 4px;
}

/* ===== Reset & Base ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:calc(var(--nav-height) + 8px)}
body{
  font-family:var(--font);background:var(--bg);color:var(--text);line-height:1.8;
  -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow-x:hidden
}
::selection{background:var(--red);color:#fff}

img,svg{display:block;max-width:100%}
a{color:inherit;text-decoration:none}

/* ===== Typography ===== */
h1,h2,h3,h4{font-family:var(--font);font-weight:700;color:#111;letter-spacing:-0.02em}
h1{font-size:clamp(1.6rem,3.5vw,2.5rem);line-height:1.25;margin-bottom:0.75rem}
h2{font-size:clamp(1.3rem,2.6vw,1.85rem);line-height:1.3;margin-bottom:0.75rem}
h3{font-size:1.1rem;line-height:1.4;margin-bottom:0.5rem;font-weight:600;letter-spacing:-0.01em}
h4{font-size:0.95rem;font-weight:600;margin-bottom:0.4rem}
p{margin-bottom:0.9rem;color:var(--text-light);font-size:1rem}
.accent{color:var(--red)}
.lead{font-size:1.08rem;color:#333;line-height:1.75;font-weight:400}
strong{font-weight:600;color:#111}
blockquote{
  border-left:3px solid var(--red);padding:1rem 1.25rem;margin:1.5rem 0;
  color:#444;background:var(--red-light);font-size:0.92rem;line-height:1.7;
  border-radius:0 var(--radius-sm) var(--radius-sm) 0
}
code{
  font-family:'SF Mono','Fira Code','Cascadia Code','Noto Sans Mono',monospace;
  font-size:0.82rem;background:#eee;padding:0.15rem 0.35rem;border-radius:3px;color:#333
}

/* ===== Container ===== */
.container{max-width:var(--container);margin:0 auto;padding:0 2rem}
.container.narrow{max-width:var(--container-narrow)}
.section{padding:5rem 0}
.section-alt{background:var(--bg-alt)}
.section-label{
  display:inline-flex;align-items:center;gap:0.5rem;
  font-size:0.65rem;font-weight:600;letter-spacing:0.08em;
  text-transform:uppercase;color:var(--red);margin-bottom:0.75rem;
  font-family:var(--font)
}
.section-label::before{
  content:'';display:inline-block;width:20px;height:2px;background:var(--red);border-radius:1px
}
.section-sub{color:var(--text-muted);font-size:0.88rem;margin-bottom:2.5rem;max-width:680px;line-height:1.6}

/* ===== Navigation ===== */
#navbar{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  padding:0;height:var(--nav-height);display:flex;align-items:center;
  background:rgba(252,252,252,0);transition:background 0.3s,border-color 0.3s,box-shadow 0.3s;
  border-bottom:1px solid transparent
}
#navbar.scrolled{
  background:rgba(252,252,252,0.96);backdrop-filter:blur(12px);
  border-bottom-color:var(--border-light);box-shadow:0 1px 8px rgba(0,0,0,0.04)
}
.nav-inner{
  max-width:var(--container);margin:0 auto;padding:0 2rem;
  display:flex;align-items:center;justify-content:space-between;gap:1rem;width:100%
}
.nav-links{display:flex;gap:1.75rem;list-style:none;margin:0}
.nav-links a{
  font-size:0.82rem;font-weight:500;color:var(--text-muted);
  transition:color 0.2s;letter-spacing:0.01em;position:relative;
  padding:0.25rem 0
}
.nav-links a::after{
  content:'';position:absolute;bottom:-2px;left:0;width:0;height:2px;
  background:var(--red);transition:width 0.25s;border-radius:1px
}
.nav-links a:hover{color:var(--text)}
.nav-links a:hover::after{width:100%}
.lang-switcher{display:flex;gap:0;flex-shrink:0;border:1px solid var(--border);border-radius:var(--radius-sm);overflow:hidden}
.lang-btn{
  background:none;border:none;color:var(--text-muted);padding:0.25rem 0.5rem;
  font-size:0.68rem;font-weight:500;cursor:pointer;transition:0.2s;
  font-family:var(--font);letter-spacing:0.03em;line-height:1
}
.lang-btn+.lang-btn{border-left:1px solid var(--border)}
.lang-btn.active{background:var(--red);color:#fff}
.lang-btn:not(.active):hover{color:var(--text);background:var(--red-light)}
.nav-brand{
  font-size:0.7rem;font-weight:700;letter-spacing:0.12em;color:var(--red);
  flex-shrink:0;font-family:var(--font);opacity:0;transition:opacity 0.3s
}
#navbar.scrolled .nav-brand{opacity:1}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:6px;flex-shrink:0}
.nav-toggle span{
  display:block;width:22px;height:2px;
  background:var(--text-muted);margin:5px 0;transition:0.3s;border-radius:2px
}
.nav-toggle.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.nav-toggle.active span:nth-child(2){opacity:0}
.nav-toggle.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

/* ===== Torture Methods Highlight ===== */
.torture-highlights{
  background:#1a0808;color:#fff;padding:3rem 0;
  border-bottom:3px solid rgba(255,255,255,0.08)
}
.torture-highlights .container{max-width:var(--container-narrow);margin:0 auto;padding:0 2rem}
.torture-highlights .th-label{
  font-size:0.65rem;font-weight:700;letter-spacing:0.12em;
  text-transform:uppercase;color:rgba(255,255,255,0.5);margin-bottom:1.25rem
}
.torture-highlights .th-list{
  margin:0;padding:0;list-style:none;
  display:flex;flex-direction:column;gap:0.5rem
}
.torture-highlights .th-list li{
  display:flex;align-items:center;gap:0.85rem;
  padding:0.85rem 1.1rem;
  background:rgba(255,255,255,0.05);
  border-radius:var(--radius);
  font-size:0.88rem;line-height:1.45;
  color:rgba(255,255,255,0.9);font-weight:500;
  transition:background 0.2s, transform 0.2s
}
.torture-highlights .th-list li:hover{
  background:rgba(255,255,255,0.09);
  transform:translateX(3px)
}
.torture-highlights .th-icon{
  flex-shrink:0;width:8px;height:8px;
  border-radius:50%;background:var(--red);
  opacity:0.7
}

/* ===== Call for Help Banner ===== */
.call-for-help{
  background:var(--red);color:#fff;padding:3rem 0;
  border-bottom:3px solid rgba(255,255,255,0.15)
}
.call-for-help .container{max-width:var(--container-narrow);margin:0 auto;padding:0 2rem}
.call-for-help .cfh-badge{
  display:inline-block;font-size:0.6rem;font-weight:700;letter-spacing:0.12em;
  text-transform:uppercase;padding:0.3rem 0.6rem;border:1px solid rgba(255,255,255,0.4);
  border-radius:3px;margin-bottom:1rem;color:rgba(255,255,255,0.85)
}
.call-for-help h2{
  font-size:clamp(1.2rem,2.4vw,1.6rem);color:#fff;margin-bottom:0.75rem;
  font-weight:800;line-height:1.3
}
.call-for-help .cfh-list{margin:0.75rem 0 1rem;padding:0;list-style:none}
.call-for-help .cfh-list li{
  position:relative;padding-left:1.15rem;margin-bottom:0.4rem;
  font-size:0.88rem;line-height:1.5;color:rgba(255,255,255,0.92)
}
.call-for-help .cfh-list li::before{content:"›";position:absolute;left:0;color:rgba(255,255,255,0.6);font-weight:700}
.call-for-help strong{color:#fff;font-weight:700}
.call-for-help .cfh-note{
  font-size:0.82rem;color:rgba(255,255,255,0.75);
  line-height:1.5;margin-bottom:0.5rem;font-style:italic
}
.call-for-help .cfh-cash{
  background:rgba(255,255,255,0.1);padding:0.75rem 1rem;border-radius:var(--radius-sm);
  font-size:0.85rem;line-height:1.5;color:rgba(255,255,255,0.92);margin-top:0.75rem;
  border-left:3px solid rgba(255,255,255,0.3)
}

/* ===== Hero ===== */
#hero{
  min-height:85vh;display:flex;align-items:center;position:relative;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(122,20,20,0.04) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-bottom:1px solid var(--border-light)
}
.hero-content{position:relative;z-index:1;max-width:820px;margin:0 auto;padding:5rem 2rem 4rem;text-align:center}
#hero h1{color:#111;margin-bottom:1.25rem}
.hero-sub{font-size:0.95rem;color:var(--text-light);margin-bottom:0.75rem;line-height:1.7}
.hero-warning{
  font-size:0.85rem;color:var(--text-muted);margin-bottom:0.75rem;
  line-height:1.5;font-style:italic;max-width:600px;margin-left:auto;margin-right:auto
}
.hero-purpose{
  font-size:0.85rem;color:var(--red);margin-bottom:2rem;
  line-height:1.5;max-width:600px;margin-left:auto;margin-right:auto;
  background:var(--red-light);padding:0.55rem 1rem;border-radius:var(--radius-sm);
  border-left:3px solid var(--red)
}
.hero-purpose strong{font-weight:600}
.hero-cta{display:flex;gap:0.75rem;justify-content:center;flex-wrap:wrap}
.hero-why{margin-top:2.5rem;padding:1.5rem;background:var(--bg-alt);border-radius:var(--radius);border:1px solid var(--border-light);text-align:left}
.hero-why-title{font-size:1.15rem;color:var(--red);margin-bottom:1rem;line-height:1.4}
.hero-why p{font-size:0.9rem;color:var(--text-light);line-height:1.7;margin-bottom:0.75rem}
.hero-why p:last-child{margin-bottom:0}

/* ===== Buttons ===== */
.btn{
  display:inline-flex;align-items:center;gap:0.5rem;padding:0.75rem 1.8rem;
  font-family:var(--font);font-size:0.85rem;font-weight:500;cursor:pointer;
  border-radius:var(--radius-sm);transition:0.2s
}
.btn-primary{background:var(--red);color:#fff;border:1px solid var(--red)}
.btn-primary:hover{background:#681111;border-color:#681111}
.btn-outline{background:transparent;color:var(--text-light);border:1px solid var(--border)}
.btn-outline:hover{color:var(--text);border-color:var(--text-muted)}

/* ===== About ===== */
.about-wrapper{
  display:flex;gap:2rem;align-items:flex-start;margin-top:1rem
}
.author-portrait{
  width:120px;height:120px;border-radius:50%;
  object-fit:cover;border:3px solid var(--red);
  flex-shrink:0
}
.about-text{flex:1;min-width:0}
.about-text p{margin-bottom:0.85rem}
.about-text .lead{font-size:1.08rem;margin-bottom:1.25rem;color:#333}

@media(max-width:600px){
  .about-wrapper{flex-direction:column;align-items:center;text-align:center}
  .author-portrait{margin-bottom:1rem}
  .about-text{text-align:left}
}

/* ===== Narrative Guide ===== */
.guide-narrative p{margin-bottom:0.85rem;color:var(--text-light)}
.guide-activists{
  margin:1.5rem 0;padding:1.25rem 1.5rem;
  background:rgba(122,20,20,0.04);border-left:4px solid var(--red);
  border-radius:0 var(--radius-sm) var(--radius-sm) 0
}
.guide-activists h3{margin-top:0;margin-bottom:0.5rem;color:var(--red);font-size:1.05rem}
.guide-activists p{font-size:0.92rem;line-height:1.7;margin-bottom:0;color:var(--text-light)}
.guide-narrative strong{color:#111}
.guide-narrative .warning,
.guide-narrative .highlight{
  margin:1.25rem 0;padding:1rem 1.15rem;
  font-size:0.9rem;line-height:1.65;border-radius:0 var(--radius-sm) var(--radius-sm) 0;
  position:relative
}
.guide-narrative .warning{
  background:rgba(122,20,20,0.06);border-left:4px solid var(--red);color:#5a2828
}
.guide-narrative .warning strong{color:var(--red)}
.guide-narrative .highlight{
  background:#f7f7f7;border-left:4px solid var(--red);color:#444;
  border:1px solid var(--border-light);border-left-width:4px
}
.guide-divider{
  border:0;height:1px;
  background:linear-gradient(90deg, transparent 5%, var(--border) 50%, transparent 95%);
  margin:2.25rem 0
}
.guide-narrative h3{
  margin-top:2rem;margin-bottom:0.5rem;padding-top:0.5rem;
  padding-bottom:0.4rem
}
.guide-narrative h4{
  font-size:0.95rem;font-weight:600;margin-top:1.5rem;margin-bottom:0.5rem;
  color:var(--red);letter-spacing:-0.01em
}
.guide-narrative .poison-symptoms{
  margin:0.75rem 0 1.25rem;padding-left:1.5rem;display:flex;flex-direction:column;gap:0.35rem
}
.guide-narrative .poison-symptoms li{
  font-size:0.88rem;line-height:1.55;color:var(--text-light);padding-left:0.3rem
}

/* ===== Help ===== */
.help-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.25rem;margin-bottom:2.5rem}
.help-card{
  background:#fff;border:1px solid var(--border-light);padding:1.5rem;
  border-radius:var(--radius-sm);transition:box-shadow 0.2s,border-color 0.2s
}
.help-card:hover{box-shadow:0 4px 16px rgba(0,0,0,0.05);border-color:var(--border)}
.help-card-wide{grid-column:1/-1}
.help-card h3{font-family:var(--font);color:#1a1a1a;font-size:0.9rem;letter-spacing:0.01em;margin-bottom:0.4rem;font-weight:600}
.help-note{font-size:0.78rem;color:var(--text-muted);margin-bottom:0.75rem}
.help-address{
  display:flex;align-items:center;gap:0.5rem;background:#f7f7f7;
  padding:0.6rem 0.8rem;border:1px solid var(--border-light);border-radius:var(--radius-sm)
}
.help-address-col{flex-direction:column;align-items:stretch}
.help-address-col code{line-height:1.5}
.help-address code{font-size:0.8rem;color:#333;word-break:break-all;flex:1}
.help-detail{font-size:0.75rem;color:var(--text-muted);margin-top:0.4rem;line-height:1.4}
.btn-copy{
  flex-shrink:0;background:transparent;border:1px solid var(--border);
  padding:0.35rem;color:var(--text-muted);cursor:pointer;transition:0.15s;
  line-height:0;display:inline-flex;align-items:center;justify-content:center;
  border-radius:3px
}
.btn-copy:hover{background:var(--border-light);color:var(--text)}
.btn-copy.copied{color:#2e7d32;border-color:rgba(46,125,50,0.3)}

.help-section{margin-bottom:1.5rem;padding-top:1.5rem;border-top:1px solid var(--border-light)}
.help-section h3{font-family:var(--font);font-size:0.92rem;font-weight:600;color:#1a1a1a;margin-bottom:0.5rem}
.help-section p{font-size:0.88rem;color:var(--text-light)}
.help-list{margin-top:0.75rem}
.help-list li{font-size:0.85rem;color:var(--text-light);margin-bottom:0.45rem;padding-left:1.25rem;line-height:1.5;list-style:none;position:relative}
.help-list li::before{content:"—";position:absolute;left:0;color:#bbb}
.help-list li strong{color:#333}

/* ===== Contact ===== */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.contact-card{
  display:flex;align-items:center;gap:1rem;padding:1.25rem;
  background:#fff;border:1px solid var(--border-light);border-radius:var(--radius-sm);
  transition:box-shadow 0.2s,border-color 0.2s
}
.contact-card:hover{
  box-shadow:0 4px 16px rgba(0,0,0,0.05);
  border-color:var(--red-mid)
}
.contact-icon{flex-shrink:0;color:var(--red);display:flex;align-items:center}
.contact-card strong{display:block;font-size:0.82rem;color:var(--text);margin-bottom:0.15rem;font-weight:600}
.contact-handle{font-size:0.78rem;color:var(--text-muted)}

/* ===== Perpetrators ===== */
.perpetrator-card{
  background:#fff;border:1px solid var(--border-light);
  padding:1.5rem;border-radius:var(--radius-sm);
  margin-bottom:1.5rem;transition:box-shadow 0.2s,border-color 0.2s
}
.perpetrator-card:hover{box-shadow:0 4px 16px rgba(0,0,0,0.05);border-color:var(--border)}
.perpetrator-card h3{font-family:var(--font);font-size:0.95rem;font-weight:600;color:#1a1a1a;margin-bottom:0.75rem;letter-spacing:0.01em}
.perpetrator-card p{margin-bottom:0.5rem;font-size:0.9rem;color:var(--text-light)}
.perpetrator-card strong{color:#111}
.perpetrator-card ul{margin:0.5rem 0 0 1.25rem}
.perpetrator-card li{font-size:0.9rem;color:var(--text-light);margin-bottom:0.35rem;line-height:1.5}

/* ===== Footer ===== */
footer{
  padding:3.5rem 0;
  border-top:1px solid var(--border-light);
  background:var(--bg-alt)
}
.footer-main{text-align:center;margin-bottom:1.5rem}
.footer-logo{
  font-size:0.7rem;font-weight:700;letter-spacing:0.15em;color:var(--red);
  font-family:var(--font)
}
.footer-bottom{text-align:center;font-size:0.72rem;color:var(--text-muted)}

/* ===== Responsive ===== */
@media(max-width:768px){
  .section{padding:3.5rem 0}
  .container{padding:0 1.25rem}
  .nav-inner{padding:0 1.25rem}
  .nav-links{
    position:fixed;top:0;right:-280px;width:280px;height:100vh;
    background:var(--bg);flex-direction:column;
    padding:5rem 1.75rem 1.75rem;gap:1.5rem;transition:right 0.35s ease;
    border-left:1px solid var(--border-light);z-index:999;list-style:none;
    box-shadow:-6px 0 30px rgba(0,0,0,0.06)
  }
  .nav-links.open{right:0}
  .nav-links li{padding:0;margin:0}
  .nav-links a{font-size:0.95rem;color:var(--text-light)}
  .nav-links a::after{display:none}
  .nav-toggle{display:block;z-index:1000;position:relative}
  .help-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .hero-cta{flex-direction:column;align-items:center}
  .hero-content{padding:3.5rem 1.25rem 3rem}
  #hero{min-height:80vh}
}
@media(max-width:480px){
  #hero{min-height:70vh}
  #hero h1{font-size:1.3rem}
  .hero-content{padding:2.5rem 1rem 2rem}
  .section{padding:2.5rem 0}
  .help-card{padding:1.25rem}
}
.letter-signature{margin-top:1.5rem;font-weight:600;color:var(--accent)}
