/*
Theme Name: Sherap Therchin
Theme URI: https://sheraptherchin.com
Author: Sherap Therchin
Author URI: https://sheraptherchin.com
Description: A professional personal website theme for Sherap Therchin — Executive Director and Human Rights Advocate. Features a refined editorial aesthetic with dark midnight tones and gold accents.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sherap-therchin
Tags: one-page, portfolio, dark, custom-colors, full-width-template
*/

:root {
  --midnight: #0a0b0e;
  --deep: #111318;
  --surface: #1a1c23;
  --panel: #21242e;
  --border: rgba(201,168,76,0.15);
  --border-dim: rgba(255,255,255,0.06);
  --gold: #c9a84c;
  --gold-light: #e2c57a;
  --gold-pale: rgba(201,168,76,0.08);
  --text: #f0ece2;
  --text-mid: #a89f8c;
  --text-dim: #5c5a52;
  --white: #faf9f5;
  --red-accent: #8b2635;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--midnight);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 4rem;
  background: rgba(10,11,14,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border-dim);
  transition: padding 0.3s;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 500;
  color: var(--gold); letter-spacing: 0.04em; text-decoration: none;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-mid); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 8rem 4rem 4rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-left { max-width: 580px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.hero-eyebrow span { display: block; width: 40px; height: 0.5px; background: var(--gold); }
.hero-eyebrow p {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem); font-weight: 300;
  line-height: 1.05; color: var(--white); margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-desc { font-size: 1rem; color: var(--text-mid); max-width: 480px; margin-bottom: 2.5rem; line-height: 1.8; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; background: var(--gold); color: #0a0b0e;
  font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border: 0.5px solid var(--border); color: var(--gold);
  font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { background: var(--gold-pale); border-color: var(--gold); }
.hero-right {
  display: flex; flex-direction: column; align-items: flex-end;
  justify-content: center; gap: 1.5rem; padding-left: 4rem;
}
.hero-stat-block {
  background: var(--surface); border: 0.5px solid var(--border-dim);
  padding: 1.5rem 2rem; min-width: 220px; position: relative; overflow: hidden;
}
.hero-stat-block::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--gold);
}
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 0.3rem; }
.stat-label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }
.hero-badge { background: rgba(139,38,53,0.12); border: 0.5px solid rgba(139,38,53,0.3); padding: 1rem 1.5rem; min-width: 220px; }
.badge-top { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: #c0576a; margin-bottom: 0.4rem; }
.badge-text { font-size: 0.82rem; color: var(--text-mid); line-height: 1.5; }
.scroll-hint { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.scroll-hint p { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); }
.scroll-line { width: 0.5px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

section { padding: 6rem 4rem; }
.section-label { display: flex; align-items: center; gap: 1rem; margin-bottom: 3.5rem; }
.section-label span { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.section-label::after { content: ''; flex: 1; height: 0.5px; background: linear-gradient(to right, var(--border), transparent); }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--white); line-height: 1.15; }
.section-title em { font-style: italic; color: var(--gold-light); }

#about { background: var(--deep); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 3rem; }
.about-text p { font-size: 1.05rem; color: var(--text-mid); margin-bottom: 1.5rem; line-height: 1.85; }
.about-text p strong { color: var(--text); font-weight: 500; }
.about-highlights { display: flex; flex-direction: column; gap: 1rem; }
.highlight-card { background: var(--surface); border: 0.5px solid var(--border-dim); border-left: 2px solid var(--gold); padding: 1.25rem 1.5rem; transition: border-left-color 0.2s, background 0.2s; }
.highlight-card:hover { background: var(--panel); border-left-color: var(--gold-light); }
.highlight-card h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.35rem; }
.highlight-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

#expertise { background: var(--midnight); }
.expertise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.expertise-item { padding: 2rem 1.5rem; border: 0.5px solid var(--border-dim); position: relative; overflow: hidden; cursor: default; transition: border-color 0.3s, transform 0.2s; }
.expertise-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.expertise-item:hover::before { transform: scaleX(1); }
.expertise-item:hover { border-color: var(--border); transform: translateY(-3px); }
.expertise-icon { font-size: 1.4rem; color: var(--gold); margin-bottom: 1rem; opacity: 0.7; }
.expertise-item h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500; color: var(--white); margin-bottom: 0.6rem; }
.expertise-item p { font-size: 0.82rem; color: var(--text-dim); line-height: 1.6; }

#experience { background: var(--deep); }
.experience-main { background: var(--surface); border: 0.5px solid var(--border-dim); padding: 3rem; margin-top: 3rem; margin-bottom: 2rem; position: relative; }
.experience-main::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, var(--gold), transparent); }
.exp-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.exp-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 500; color: var(--white); }
.exp-org { color: var(--gold); font-size: 0.9rem; margin-top: 0.2rem; }
.exp-date { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); padding: 0.4rem 0.9rem; border: 0.5px solid var(--border-dim); white-space: nowrap; }
.exp-pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 1.5rem; }
.pillar { padding: 1.2rem; background: var(--panel); border: 0.5px solid var(--border-dim); }
.pillar-title { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.pillar ul { list-style: none; }
.pillar ul li { font-size: 0.85rem; color: var(--text-mid); padding: 0.25rem 0; padding-left: 1rem; position: relative; line-height: 1.5; }
.pillar ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; }
.exp-others { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.exp-other { padding: 1.25rem 1.5rem; background: var(--surface); border: 0.5px solid var(--border-dim); transition: border-color 0.2s; }
.exp-other:hover { border-color: var(--border); }
.exp-other-title { font-weight: 500; font-size: 0.9rem; color: var(--text); margin-bottom: 0.2rem; }
.exp-other-org { font-size: 0.8rem; color: var(--gold); margin-bottom: 0.15rem; }
.exp-other-loc { font-size: 0.72rem; color: var(--text-dim); margin-bottom: 0.5rem; }
.exp-other-date { display: inline-block; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); border: 0.5px solid var(--border-dim); padding: 0.2rem 0.6rem; }
.exp-other p { font-size: 0.82rem; color: var(--text-dim); margin-top: 0.5rem; line-height: 1.5; }

#awards { background: var(--midnight); }
.awards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.award-card { padding: 2.5rem; border: 0.5px solid var(--border-dim); position: relative; overflow: hidden; }
.award-card.gold-card { background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%); border-color: var(--border); }
.award-card.red-card { background: linear-gradient(135deg, rgba(139,38,53,0.06) 0%, transparent 60%); border-color: rgba(139,38,53,0.2); }
.award-year { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.award-card.red-card .award-year { color: #c0576a; }
.award-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; color: var(--white); line-height: 1.2; margin-bottom: 0.75rem; }
.award-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }
.award-icon { position: absolute; bottom: -0.5rem; right: 1.5rem; font-size: 5rem; opacity: 0.04; color: var(--gold); font-family: 'Cormorant Garamond', serif; font-style: italic; line-height: 1; }

#education { background: var(--deep); }
.edu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.edu-card { padding: 2rem; border: 0.5px solid var(--border-dim); background: var(--surface); transition: border-color 0.2s, transform 0.2s; }
.edu-card:hover { border-color: var(--border); transform: translateY(-2px); }
.edu-degree { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 500; color: var(--white); line-height: 1.3; margin-bottom: 0.5rem; }
.edu-school { font-size: 0.8rem; color: var(--gold); margin-bottom: 0.35rem; }
.edu-year { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; color: var(--text-dim); }

#languages { background: var(--midnight); padding-top: 0; padding-bottom: 5rem; }
.lang-row { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem; }
.lang-pill { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.5rem; border: 0.5px solid var(--border-dim); background: var(--surface); transition: border-color 0.2s; }
.lang-pill:hover { border-color: var(--border); }
.lang-name { font-size: 0.9rem; color: var(--text); font-weight: 500; }
.lang-level { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); padding: 0.2rem 0.6rem; border: 0.5px solid var(--border-dim); }

#contact { background: var(--deep); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 3rem; }
.contact-left p { font-size: 1rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 2rem; }
.contact-links { display: flex; flex-direction: column; gap: 1rem; }
.contact-link { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; border: 0.5px solid var(--border-dim); text-decoration: none; color: var(--text); font-size: 0.88rem; transition: border-color 0.2s, background 0.2s; }
.contact-link:hover { border-color: var(--border); background: var(--gold-pale); }
.contact-link-icon { width: 36px; height: 36px; background: var(--gold-pale); border: 0.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--gold); flex-shrink: 0; }
.contact-link-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.1rem; }
.contact-link-val { font-size: 0.88rem; color: var(--text); }
.contact-right { background: var(--surface); border: 0.5px solid var(--border-dim); padding: 2.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); }
.form-field input, .form-field textarea { background: var(--panel); border: 0.5px solid var(--border-dim); color: var(--text); font-family: 'Jost', sans-serif; font-size: 0.9rem; font-weight: 300; padding: 0.75rem 1rem; outline: none; transition: border-color 0.2s; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--gold); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-dim); }
.form-submit { width: 100%; padding: 0.9rem; background: var(--gold); color: #0a0b0e; font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.form-note { font-size: 0.75rem; color: var(--text-dim); text-align: center; margin-top: -0.5rem; }

footer { padding: 2.5rem 4rem; background: var(--midnight); border-top: 0.5px solid var(--border-dim); display: flex; justify-content: space-between; align-items: center; }
footer p { font-size: 0.75rem; color: var(--text-dim); }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--gold); letter-spacing: 0.05em; }

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 8rem 2.5rem 4rem; }
  .hero-right { flex-direction: row; flex-wrap: wrap; padding-left: 0; align-items: flex-start; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-pillars { grid-template-columns: 1fr; }
  .exp-others { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .edu-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  nav { padding: 1.25rem 2.5rem; }
  section { padding: 4rem 2.5rem; }
  .experience-main { padding: 2rem; }
}
@media (max-width: 640px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 7rem 1.5rem 4rem; }
  section { padding: 3.5rem 1.5rem; }
  .expertise-grid { grid-template-columns: 1fr; }
  .edu-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 0.5rem; text-align: center; padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .experience-main { padding: 1.5rem; }
}
