/* ============================================================
   hurriyet.co.uk — main.css
   Kurdish Women Freedom Fighters
   ============================================================ */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --sun:        #f5c842;
  --sun-light:  #fef3c7;
  --sun-pale:   #fffbeb;
  --red:        #c0392b;
  --red-soft:   #e8b4b0;
  --red-pale:   #fdf2f0;
  --green:      #27ae60;
  --green-soft: #a8d5b5;
  --green-pale: #f0f9f3;
  --earth:      #8b5e3c;
  --earth-pale: #fdf4ec;
  --ink:        #1c1008;
  --text:       #2d1f10;
  --muted:      #7a6050;
  --border:     #e8d5c0;
  --bg:         #fdfaf5;
  --white:      #ffffff;
  --card-bg:    #fffef9;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Source Serif 4', Georgia, serif;
  --ff-ui:      'Fira Sans', system-ui, sans-serif;

  --radius: 4px;
  --shadow: 0 2px 16px rgba(28,16,8,0.08);
  --shadow-lg: 0 8px 40px rgba(28,16,8,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* ---- UTILITY ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt   { background: var(--earth-pale); }
.section-green { background: var(--green-pale); }
.section-sun   { background: var(--sun-pale); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.section-header .sub {
  font-family: var(--ff-ui);
  font-size: .9rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}
.section-header p {
  color: var(--muted);
  max-width: 600px;
  margin: .75rem auto 0;
  font-size: .98rem;
}

.tag {
  display: inline-block;
  font-family: var(--ff-ui);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 20px;
  background: var(--sun-light);
  color: var(--earth);
}

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253,250,245,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -.02em;
}
.nav-logo span { color: var(--red); }
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--ff-ui);
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: .04em;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--red); }
.nav-hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: .25rem;
}
.nav-hamburger span { width: 24px; height: 2px; background: var(--ink); display: block; transition: all .3s; }

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  gap: .75rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--ff-ui);
  font-size: .95rem;
  color: var(--text);
  text-decoration: none;
  padding: .4rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a.active { color: var(--red); }

/* ---- PAGE BANNER (inner pages) ---- */
.page-banner {
  background: var(--ink);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(245,200,66,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(39,174,96,0.07) 0%, transparent 50%);
}
.page-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.page-banner-flag {
  display: flex;
  gap: 5px;
  margin-bottom: 1.25rem;
}
.page-banner-flag span { height: 3px; width: 40px; border-radius: 2px; }
.page-banner h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: .75rem;
}
.page-banner h1 em { color: var(--sun); font-style: italic; }
.page-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 580px;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(245,200,66,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(39,174,96,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(192,57,43,0.12) 0%, transparent 45%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(45deg, #f5c842 0, #f5c842 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, #f5c842 0, #f5c842 1px, transparent 0, transparent 50%);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  width: 100%;
}
.hero-text { display: flex; flex-direction: column; gap: 0; }
.hero-right { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.hero-painting { position: relative; border-radius: 3px; overflow: hidden; box-shadow: 0 12px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,200,66,0.2); width: 100%; }
.hero-painting img { width: 100%; display: block; object-fit: contain; filter: saturate(1.05) brightness(0.95); }
.hero-painting-caption { padding: .4rem .85rem; font-family: var(--ff-ui); font-size: .68rem; letter-spacing: .06em; color: rgba(255,255,255,0.25); text-align: right; margin-top: .4rem; }
.hero-quote-mobile { display: none; }
.hero-quote-desktop { display: block; }
.hero-flag { display: flex; gap: 6px; margin-bottom: 2rem; }
.hero-flag span { height: 4px; border-radius: 2px; flex: 1; }
.hero-flag .f-red   { background: #c0392b; }
.hero-flag .f-sun   { background: #f5c842; }
.hero-flag .f-green { background: #27ae60; }
.hero h1 { font-family: var(--ff-display); font-size: clamp(2.5rem, 5vw, 4.2rem); font-weight: 900; color: var(--white); line-height: 1.05; letter-spacing: -.03em; margin-bottom: 1rem; }
.hero h1 em { font-style: italic; color: var(--sun); }
.hero-kurd { font-family: var(--ff-display); font-size: clamp(1.2rem, 2.5vw, 1.8rem); color: var(--sun); font-style: italic; font-weight: 400; margin-bottom: 1.5rem; opacity: 0.9; }
.hero p { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.8; margin-bottom: 1.5rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-quote { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-left: 3px solid var(--sun); padding: 1.25rem 1.5rem; border-radius: var(--radius); }
.hero-quote blockquote { font-family: var(--ff-display); font-style: italic; font-size: 1rem; color: rgba(255,255,255,0.9); line-height: 1.6; margin-bottom: .5rem; }
.hero-quote cite { font-family: var(--ff-ui); font-size: .72rem; color: var(--sun); letter-spacing: .08em; text-transform: uppercase; font-style: normal; }
.hero-sun { position: absolute; right: -80px; top: 50%; transform: translateY(-50%); width: 600px; height: 600px; opacity: 0.04; animation: rotateSun 60s linear infinite; z-index: 1; }
@keyframes rotateSun { to { transform: translateY(-50%) rotate(360deg); } }

/* ---- BUTTONS ---- */
.btn-primary { display: inline-block; background: var(--red); color: var(--white); font-family: var(--ff-ui); font-size: .9rem; font-weight: 500; letter-spacing: .04em; padding: .85rem 2rem; border-radius: var(--radius); text-decoration: none; transition: background .2s, transform .15s; }
.btn-primary:hover { background: #9b1e1e; transform: translateY(-1px); }
.btn-outline { display: inline-block; border: 1px solid rgba(255,255,255,0.3); color: var(--white); font-family: var(--ff-ui); font-size: .9rem; font-weight: 400; padding: .85rem 2rem; border-radius: var(--radius); text-decoration: none; transition: border-color .2s, background .2s; }
.btn-outline:hover { border-color: var(--sun); background: rgba(245,200,66,0.08); }
.btn-dark { display: inline-block; background: var(--ink); color: var(--white); font-family: var(--ff-ui); font-size: .88rem; font-weight: 500; padding: .75rem 1.75rem; border-radius: var(--radius); text-decoration: none; transition: background .2s; border: 1px solid rgba(255,255,255,0.1); }
.btn-dark:hover { background: #2c1a0e; }

/* ---- STATS BAR ---- */
.stats-bar { background: var(--red); padding: 1.5rem 0; }
.stats-inner { display: flex; justify-content: space-around; align-items: center; max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; flex-wrap: wrap; gap: 1.5rem; }
.stat-item { text-align: center; color: var(--white); }
.stat-number { font-family: var(--ff-display); font-size: 2rem; font-weight: 900; line-height: 1; color: var(--sun); }
.stat-label { font-family: var(--ff-ui); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; opacity: .85; margin-top: .3rem; }

/* ---- ARTICLES GRID ---- */
.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.article-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .2s, box-shadow .2s; cursor: pointer; }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-card-img { width: 100%; height: 200px; object-fit: cover; }
.article-card-img-placeholder { width: 100%; height: 200px; background: linear-gradient(135deg, var(--sun-light) 0%, var(--red-pale) 50%, var(--green-pale) 100%); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.article-card-body { padding: 1.5rem; }
.article-card-body .tag { margin-bottom: .75rem; }
.article-card-body h3 { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700; color: var(--ink); line-height: 1.3; margin-bottom: .5rem; }
.article-card-body p { font-size: .9rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.article-card-meta { display: flex; justify-content: space-between; font-family: var(--ff-ui); font-size: .78rem; color: var(--muted); }

/* ---- JIN JIYAN AZADI SECTION ---- */
.jiyan-section { background: var(--ink); color: var(--white); padding: 6rem 0; position: relative; overflow: hidden; }
.jiyan-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 0% 100%, rgba(39,174,96,0.12) 0%, transparent 50%), radial-gradient(ellipse at 100% 0%, rgba(245,200,66,0.1) 0%, transparent 50%); }
.jiyan-inner { position: relative; z-index: 2; max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.jiyan-words { display: flex; flex-direction: column; gap: 1.5rem; }
.jiyan-word { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: start; }
.jiyan-word-kurd { font-family: var(--ff-display); font-size: 2.5rem; font-weight: 900; line-height: 1; min-width: 100px; }
.jiyan-word-kurd.w1 { color: var(--red-soft); }
.jiyan-word-kurd.w2 { color: var(--sun); }
.jiyan-word-kurd.w3 { color: var(--green-soft); }
.jiyan-word-text h3 { font-family: var(--ff-display); font-size: 1.1rem; color: var(--white); margin-bottom: .25rem; }
.jiyan-word-text p { font-size: .9rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.jiyan-text h2 { font-family: var(--ff-display); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 1.5rem; }
.jiyan-text h2 em { color: var(--sun); font-style: italic; }
.jiyan-text p { color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 1.2rem; font-size: .98rem; }
.jiyan-text .highlight { border-left: 3px solid var(--sun); padding: 1rem 1.5rem; background: rgba(245,200,66,0.06); border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: rgba(255,255,255,0.85); }

/* ---- FIGHTERS GRID ---- */
.fighters-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }
.fighter-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.fighter-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.fighter-photo { height: 180px; background: linear-gradient(135deg, var(--sun-light), var(--green-pale)); display: flex; align-items: center; justify-content: center; font-size: 4rem; overflow: hidden; }
.fighter-photo img { width: 100%; height: 100%; object-fit: cover; }
.fighter-body { padding: 1.5rem; }
.fighter-body h3 { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700; margin-bottom: .25rem; }
.fighter-body .nom { font-style: italic; color: var(--muted); font-size: .9rem; margin-bottom: .75rem; }
.fighter-body .role { font-family: var(--ff-ui); font-size: .78rem; font-weight: 500; color: var(--red); letter-spacing: .04em; text-transform: uppercase; margin-bottom: .75rem; }
.fighter-body p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* ---- TIMELINE ---- */
.timeline-wrap { position: relative; }
.timeline-wrap::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--border); transform: translateX(-50%); }
.timeline-item { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: start; margin-bottom: 2.5rem; position: relative; }
.timeline-item.left .timeline-content { grid-column: 1; text-align: right; }
.timeline-item.left .timeline-dot   { grid-column: 2; }
.timeline-item.left .timeline-empty { grid-column: 3; }
.timeline-item.right .timeline-empty   { grid-column: 1; }
.timeline-item.right .timeline-dot     { grid-column: 2; }
.timeline-item.right .timeline-content { grid-column: 3; }
.timeline-dot { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--ff-ui); font-size: .7rem; font-weight: 600; flex-shrink: 0; z-index: 1; }
.cat-kurdish     { background: var(--sun-light); color: var(--earth); }
.cat-ypj         { background: var(--green-pale); color: var(--green); border: 2px solid var(--green-soft); }
.cat-isis        { background: var(--red-pale); color: var(--red); border: 2px solid var(--red-soft); }
.cat-jiyan       { background: #f0e6ff; color: #6b3fa0; border: 2px solid #d4b8f0; }
.cat-political   { background: #e6f0ff; color: #1a4a8a; }
.cat-international { background: var(--earth-pale); color: var(--earth); }
.timeline-content { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
.timeline-year { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 900; color: var(--sun); margin-bottom: .25rem; }
.timeline-content h3 { font-family: var(--ff-display); font-size: 1rem; font-weight: 700; margin-bottom: .5rem; line-height: 1.3; }
.timeline-content p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* ---- VIDEOS ---- */
.videos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.video-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.video-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.video-thumb { position: relative; aspect-ratio: 16/9; background: var(--ink); overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: opacity .2s; }
.video-card:hover .video-thumb img { opacity: 1; }
.video-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.video-play-btn { width: 52px; height: 52px; background: rgba(192,57,43,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--white); transition: transform .2s, background .2s; }
.video-card:hover .video-play-btn { transform: scale(1.1); background: var(--red); }
.video-body { padding: 1.25rem; }
.video-body .tag { margin-bottom: .5rem; }
.video-body h3 { font-family: var(--ff-display); font-size: 1rem; font-weight: 700; line-height: 1.4; margin-bottom: .5rem; }
.video-body p { font-size: .85rem; color: var(--muted); line-height: 1.5; }
.video-source { font-family: var(--ff-ui); font-size: .75rem; color: var(--muted); margin-top: .75rem; }

/* ---- QUIZ ---- */
.quiz-box { max-width: 760px; margin: 0 auto; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.quiz-progress-bar { height: 4px; background: var(--border); }
.quiz-progress-fill { height: 100%; background: var(--sun); transition: width .4s ease; width: 0%; }
.quiz-content { padding: 2.5rem; }
.quiz-status { font-family: var(--ff-ui); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.quiz-question { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 700; color: var(--ink); line-height: 1.4; margin-bottom: 2rem; }
.quiz-options { display: flex; flex-direction: column; gap: .75rem; }
.quiz-option { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; border: 2px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: border-color .15s, background .15s; font-size: .95rem; }
.quiz-option:hover { border-color: var(--sun); background: var(--sun-pale); }
.quiz-option.correct { border-color: var(--green); background: var(--green-pale); }
.quiz-option.wrong { border-color: var(--red); background: var(--red-pale); }
.quiz-option-letter { width: 32px; height: 32px; border-radius: 50%; background: var(--border); display: flex; align-items: center; justify-content: center; font-family: var(--ff-ui); font-weight: 600; font-size: .85rem; flex-shrink: 0; }
.quiz-explanation { margin-top: 1.5rem; padding: 1rem 1.25rem; background: var(--sun-pale); border-left: 3px solid var(--sun); border-radius: 0 var(--radius) var(--radius) 0; font-size: .9rem; line-height: 1.7; display: none; }
.quiz-explanation.visible { display: block; }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; }
.quiz-btn { font-family: var(--ff-ui); font-size: .9rem; font-weight: 500; padding: .75rem 1.5rem; border-radius: var(--radius); border: none; cursor: pointer; transition: background .2s; }
.quiz-btn-next { background: var(--red); color: var(--white); }
.quiz-btn-next:hover { background: #9b1e1e; }
.quiz-btn-next:disabled { opacity: .4; cursor: default; }
.quiz-score { text-align: center; padding: 3rem 2rem; }
.quiz-score-num { font-family: var(--ff-display); font-size: 5rem; font-weight: 900; color: var(--red); line-height: 1; }
.quiz-score-label { color: var(--muted); font-size: 1rem; margin-top: .5rem; }
.quiz-score-msg { font-family: var(--ff-display); font-size: 1.3rem; font-style: italic; margin: 1.5rem 0; color: var(--ink); }

/* ---- MAP ---- */
#kurdistan-map { height: 520px; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }

/* ---- RESOURCES ---- */
.resources-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.resource-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; text-decoration: none; color: inherit; transition: transform .15s, box-shadow .15s; display: block; }
.resource-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--sun); }
.resource-card h4 { font-family: var(--ff-display); font-weight: 700; font-size: 1rem; color: var(--ink); margin-bottom: .5rem; }
.resource-card p { font-size: .85rem; color: var(--muted); line-height: 1.5; }
.resource-link { font-family: var(--ff-ui); font-size: .75rem; color: var(--red); margin-top: .75rem; display: flex; align-items: center; gap: .25rem; }

/* ---- MODALS ---- */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(28,16,8,0.8); z-index: 2000; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.active { display: flex; }
.modal-box { background: var(--white); border-radius: var(--radius); max-width: 720px; width: 100%; max-height: 85vh; overflow-y: auto; padding: 2.5rem; position: relative; }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--muted); line-height: 1; }
.modal-close:hover { color: var(--red); }
.modal-box h2 { font-family: var(--ff-display); font-size: 1.8rem; margin-bottom: .5rem; }
.modal-box .modal-subtitle { color: var(--red); font-family: var(--ff-ui); font-size: .85rem; font-weight: 500; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1.5rem; }
.modal-box p { line-height: 1.8; margin-bottom: 1rem; font-size: .98rem; color: var(--text); }
.modal-box .quote-block { border-left: 3px solid var(--sun); padding: 1rem 1.5rem; background: var(--sun-pale); font-style: italic; margin: 1.5rem 0; border-radius: 0 var(--radius) var(--radius) 0; font-family: var(--ff-display); font-size: 1.1rem; color: var(--earth); }
.article-modal .modal-body h2, .article-modal .modal-body h3 { font-family: var(--ff-display); margin: 1.5rem 0 .75rem; color: var(--ink); }
.article-modal .modal-body p { margin-bottom: 1rem; line-height: 1.85; color: var(--text); }
.article-modal .modal-body h2 { font-size: 1.5rem; }
.article-modal .modal-body h3 { font-size: 1.2rem; }

/* Video modal */
.video-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 3000; align-items: center; justify-content: center; padding: 1rem; }
.video-modal.active { display: flex; }
.video-modal-inner { width: 100%; max-width: 900px; position: relative; }
.video-modal iframe { width: 100%; aspect-ratio: 16/9; border: none; border-radius: var(--radius); }
.video-modal-close { position: absolute; top: -3rem; right: 0; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* ---- FOOTER ---- */
footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 4rem 0 2rem; }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand h3 { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 900; color: var(--white); margin-bottom: .5rem; }
.footer-brand h3 span { color: var(--red-soft); }
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-flag { display: flex; gap: 4px; height: 4px; }
.footer-flag span { flex: 1; border-radius: 2px; }
footer h4 { font-family: var(--ff-ui); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: .5rem; }
footer ul a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: .9rem; transition: color .2s; }
footer ul a:hover { color: var(--sun); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; max-width: 1180px; margin: 0 auto; padding-left: 1.5rem; padding-right: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; }

/* ---- "VIEW ALL" TEASER LINK ---- */
.section-more { text-align: center; margin-top: 2.5rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero { min-height: auto; padding: 0; }
  .hero-content { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1.5rem; }
  .hero-text { padding-top: 0; }
  .hero-flag { margin-bottom: 1.25rem; }
  .hero-right { width: 100%; }
  .hero-sun { display: none; }
  .hero-quote-desktop { display: none; }
  .hero-quote-mobile { display: block; }
  .jiyan-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .timeline-wrap::before { left: 24px; }
  .timeline-item { grid-template-columns: 48px 1fr; }
  .timeline-item.left .timeline-content,
  .timeline-item.right .timeline-content { grid-column: 2; text-align: left; }
  .timeline-item.left .timeline-dot,
  .timeline-item.right .timeline-dot { grid-column: 1; }
  .timeline-item.left .timeline-empty,
  .timeline-item.right .timeline-empty { display: none; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .stats-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .page-banner { padding: 2.5rem 0 2rem; }
}
