/* YDB Website — Shared Styles */
/* ================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9922A;
  --gold-light: #F0C96A;
  --gold-pale: #FDF4E3;
  --dark: #1A5C38;
  --dark-mid: #13472B;
  --text: #1E2D22;
  --muted: #586E60;
  --cream: #F0F8F4;
  --white: #FFFFFF;
  --border: rgba(201,146,42,0.2);
  --ph-bg: #FFF8E1;
  --ph-border: #F5C518;
  --ph-text: #7A5C00;
}

html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans', sans-serif; background: var(--white); color: var(--text); line-height: 1.6; }

/* PLACEHOLDER */
.ph { background: var(--ph-bg); border: 1.5px dashed var(--ph-border); border-radius: 4px; padding: 2px 8px; display: inline; color: var(--ph-text); font-size: 13px; font-style: italic; }
.ph-block { background: var(--ph-bg); border: 1.5px dashed var(--ph-border); border-radius: 8px; padding: 14px 18px; margin: 10px 0; color: var(--ph-text); font-size: 13px; }
.ph-block-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; color: var(--ph-border); margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.ph-block-label::before { content: '✎'; font-style: normal; }
.ph-img { background: #F0EBD8; border: 1.5px dashed var(--ph-border); border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--ph-text); font-size: 13px; font-style: italic; min-height: 180px; }
.ph-img-icon { font-size: 28px; opacity: 0.5; }
.ph-img-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ph-border); font-weight: 600; }

/* PAGE TOC */
.page-toc {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 64px; z-index: 90;
  overflow-x: auto; scrollbar-width: none;
}
.page-toc::-webkit-scrollbar { display: none; }
.page-toc-inner {
  max-width: 820px; margin: 0 auto; padding: 0 2rem;
  display: flex; white-space: nowrap;
}
.page-toc a {
  font-size: 12px; color: var(--muted);
  text-decoration: none; flex-shrink: 0;
  padding: 11px 14px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.page-toc a:hover { color: var(--dark); border-bottom-color: var(--gold); }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; background: var(--dark); display: flex; align-items: center; justify-content: space-between; padding: 0 2rem; height: 64px; border-bottom: 1px solid rgba(201,146,42,0.3); }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-badge { width: 36px; height: 36px; border-radius: 50%; background: var(--gold); color: var(--dark); font-family: 'Playfair Display', serif; font-weight: 700; font-size: 13px; display: flex; align-items: center; justify-content: center; }
.nav-logo-text { color: rgba(255,255,255,0.7); font-size: 14px; }
.nav-back { color: var(--gold); font-size: 13px; text-decoration: none; display: flex; align-items: center; gap: 6px; border: 1px solid rgba(201,146,42,0.3); padding: 6px 14px; border-radius: 4px; transition: background 0.2s; }
.nav-back:hover { background: rgba(201,146,42,0.1); }

/* HERO */
.hero { background: var(--dark); padding: 64px 2rem 56px; border-bottom: 1px solid rgba(201,146,42,0.15); }
.hero-inner { max-width: 820px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.breadcrumb span { font-size: 12px; color: rgba(255,255,255,0.35); }
.breadcrumb a { font-size: 12px; color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.program-badge { display: inline-block; background: rgba(201,146,42,0.15); border: 1px solid rgba(201,146,42,0.4); color: var(--gold-light); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 2px; margin-bottom: 20px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 16px; }
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero-lead { font-size: 16px; color: rgba(255,255,255,0.55); max-width: 580px; line-height: 1.8; font-weight: 300; margin-bottom: 32px; }
.hero-meta { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-meta-item { display: flex; flex-direction: column; gap: 3px; }
.hero-meta-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); }
.hero-meta-val { font-size: 14px; color: rgba(255,255,255,0.75); }

/* CONTENT */
.content-wrap { max-width: 820px; margin: 0 auto; padding: 0 2rem; }
.pull-quote { background: var(--dark); border-left: 3px solid var(--gold); padding: 28px 32px; margin: 48px 0; border-radius: 0 6px 6px 0; }
.pull-quote blockquote { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1.05rem, 2.5vw, 1.3rem); color: var(--gold-light); line-height: 1.6; }
.pull-quote cite { display: block; margin-top: 12px; font-size: 12px; color: rgba(255,255,255,0.4); font-style: normal; letter-spacing: 0.05em; }

.prose { padding: 48px 0; }
.prose h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; color: var(--dark); margin-bottom: 16px; margin-top: 40px; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 15px; color: var(--text); line-height: 1.85; margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }

.highlight-box { background: var(--gold-pale); border: 1px solid var(--border); border-radius: 8px; padding: 24px 28px; margin: 32px 0; }
.highlight-title { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 500; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.highlight-title::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--gold); }
.highlight-list { list-style: none; }
.highlight-list li { font-size: 14px; color: var(--text); padding: 7px 0 7px 20px; position: relative; border-bottom: 1px solid rgba(201,146,42,0.1); }
.highlight-list li:last-child { border-bottom: none; }
.highlight-list li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 10px; top: 10px; }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 40px 0; }
.stat-card { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--gold); border-radius: 6px; padding: 20px; text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.stat-label { font-size: 12px; color: var(--muted); line-height: 1.4; }

.process { margin: 40px 0; }
.process-step { display: flex; gap: 20px; margin-bottom: 28px; }
.process-num { width: 36px; height: 36px; border-radius: 50%; background: var(--dark); color: var(--gold-light); font-family: 'Playfair Display', serif; font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.process-title { font-size: 14px; font-weight: 500; color: var(--dark); margin-bottom: 5px; }
.process-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

.foto-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 24px 0; }

/* TESTIMONI */
.testimoni-section { background: var(--white); padding: 64px 0; }
.testimoni-inner { max-width: 820px; margin: 0 auto; padding: 0 2rem; }
.section-tag { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.section-tag::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--gold); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 600; color: var(--dark); margin-bottom: 32px; }
.testimoni-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.t-card { background: var(--cream); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.t-card-top { padding: 22px 22px 14px; }
.t-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-pale); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 15px; color: var(--gold); margin-bottom: 10px; }
.t-name { font-size: 14px; font-weight: 500; color: var(--dark); margin-bottom: 2px; }
.t-meta { font-size: 12px; color: var(--muted); }
.t-role { display: inline-block; margin-top: 8px; background: rgba(201,146,42,0.1); border: 1px solid var(--border); color: var(--gold); font-size: 11px; padding: 3px 10px; border-radius: 3px; }
.t-body { padding: 14px 22px 22px; border-top: 1px solid var(--border); }
.t-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 13px; color: var(--text); line-height: 1.7; }

/* STATS IMPACT */
.impact-section { background: var(--dark); padding: 56px 0; }
.impact-inner { max-width: 820px; margin: 0 auto; padding: 0 2rem; }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.impact-item { text-align: center; padding: 20px; border: 1px solid rgba(201,146,42,0.15); border-radius: 8px; }
.impact-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold-light); margin-bottom: 6px; }
.impact-label { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* CTA */
.cta-section { background: var(--gold); padding: 48px 2rem; text-align: center; }
.cta-inner { max-width: 520px; margin: 0 auto; }
.cta-title { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--dark); margin-bottom: 12px; }
.cta-sub { font-size: 14px; color: rgba(28,26,23,0.7); margin-bottom: 28px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-dark { background: var(--dark); color: var(--white); padding: 12px 28px; border: none; border-radius: 4px; font-size: 14px; font-weight: 500; cursor: pointer; font-family: 'Noto Sans', sans-serif; text-decoration: none; display: inline-block; }
.btn-white { background: var(--white); color: var(--dark); padding: 12px 28px; border: none; border-radius: 4px; font-size: 14px; font-weight: 500; cursor: pointer; font-family: 'Noto Sans', sans-serif; text-decoration: none; display: inline-block; }

/* OTHER PROGRAMS */
.other-section { padding: 56px 0; background: var(--white); }
.other-inner { max-width: 820px; margin: 0 auto; padding: 0 2rem; }
.other-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.other-card { border: 1px solid var(--border); border-radius: 8px; padding: 18px; text-decoration: none; display: block; transition: border-color 0.2s; }
.other-card:hover { border-color: var(--gold); }
.other-bid { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 5px; }
.other-name { font-size: 13px; font-weight: 500; color: var(--dark); }

/* FOOTER */
footer { background: var(--dark-mid); padding: 24px 2rem; text-align: center; border-top: 1px solid rgba(201,146,42,0.2); }
footer p { font-size: 12px; color: rgba(255,255,255,0.3); }
footer span { color: var(--gold); }

/* PARTNER BOX */
.partner-box { background: var(--dark); border-radius: 8px; padding: 28px; margin: 32px 0; display: flex; gap: 20px; align-items: flex-start; }
.partner-icon { width: 44px; height: 44px; border-radius: 6px; background: rgba(201,146,42,0.15); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.partner-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 5px; font-weight: 500; }
.partner-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); margin-bottom: 7px; }
.partner-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }

@media (max-width: 640px) {
  .stat-row, .foto-grid, .other-grid, .impact-grid { grid-template-columns: 1fr 1fr; }
  .testimoni-grid { grid-template-columns: 1fr; }
  .partner-box { flex-direction: column; }
  nav { padding: 0 1rem; }
  .hero { padding: 48px 1.5rem 40px; }
  .content-wrap { padding: 0 1.5rem; }
}
