:root {
  --bg: #f4f5f6;
  --ink: #192d46;
  --graphite: #2a2a2a;
  --neutral: #6b6b6b;
  --line: #cccccc;
  --bronze: #8b7355;
  --radius: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: var(--graphite);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.48;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Print Styles */
@media print {

  .site-header,
  .hero-actions,
  .site-footer,
  .cta-actions,
  .lang-switch {
    display: none !important;
  }

  body {
    background: #ffffff;
    color: #000000;
  }

  .panel,
  .boundary-card,
  .cta {
    break-inside: avoid;
    border: 1px solid #ccc;
    box-shadow: none;
    background: transparent;
  }

  .cta {
    color: #000;
    margin: 1rem 0;
  }
}

.site-header,
main,
.site-footer {
  width: min(1060px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.site-header {
  padding: 1.15rem 0 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--bronze);
  position: relative;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--neutral);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--bronze);
}

.brand img {
  width: 188px;
  max-width: 48vw;
  display: block;
  border-radius: 10px;
}

/* Language Switch Link */
.lang-switch {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neutral);
  padding: 4px 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.lang-switch:hover {
  color: var(--bronze);
  border-color: var(--bronze);
}

.section {
  margin: 2.5rem 0;
}

.hero {
  padding: 1.5rem 0 2rem;
  position: relative;
}

.eyebrow {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--graphite);
}

h1 {
  margin-top: 1rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
  max-width: 20ch;
  line-height: 1.1;
  font-weight: 800;
}

.lead {
  margin-top: 1.5rem;
  max-width: 60ch;
  color: var(--neutral);
  font-size: 1.25rem;
  font-weight: 400;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  text-decoration: none;
  border-radius: 8px;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.button.primary {
  background: var(--bronze);
  color: #ffffff;
  border: 1px solid var(--bronze);
}

.button.primary:hover {
  background: #7a654a;
  border-color: #7a654a;
}

.button.ghost {
  border: 1px solid var(--graphite);
  color: var(--graphite);
  background: transparent;
}

.button.ghost:hover {
  background: rgba(42, 42, 42, 0.05);
}

.panel {
  border: 1px solid rgba(139, 115, 85, 0.2);
  border-left: 4px solid var(--bronze);
  border-radius: var(--radius);
  padding: 2rem;
  background: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  margin: 0;
  color: var(--neutral);
}

.boundary-grid,
.integration-row {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.boundary-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.integration-row {
  display: flex;
  flex-wrap: wrap;
}

.boundary-card,
.integration-row span {
  padding: 1rem;
  border: 1px solid rgba(139, 115, 85, 0.3);
  border-radius: 8px;
  color: var(--graphite);
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(139, 115, 85, 0.05);
  text-align: center;
}

.boundary-card h3 {
  font-size: 1rem;
  margin: 0;
}

.asistobe-grid,
.steps-grid,
.audience-grid,
.scope-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.5rem;
}

.asistobe-grid {
  grid-template-columns: 1fr 1fr;
}

.steps-grid {
  grid-template-columns: repeat(3, 1fr);
}

.audience-grid {
  grid-template-columns: repeat(2, 1fr);
}

.scope-grid {
  grid-template-columns: repeat(2, 1fr);
}

.asistobe-card,
.step-card,
.audience-card,
.scope-card {
  padding: 0;
  background: transparent;
}

.asistobe-card h3,
.step-card h3,
.audience-card h3,
.scope-card h3 {
  color: var(--bronze);
}

/* Governance Section Emphasis */
/* Removed custom color to match other sections */

.facts-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.fact-card {
  padding: 0;
  background: transparent;
}

.fact-card p {
  font-weight: 500;
}

ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

li {
  margin: 0.5rem 0;
  color: var(--neutral);
}

li::marker {
  color: var(--bronze);
}

.cta {
  margin: 3rem 0;
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  background: var(--bronze);
  color: #ffffff;
}

.cta h2 {
  color: #ffffff;
  margin-top: 1rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0.5rem 0 2rem;
  font-size: 1.1rem;
}

.cta-actions {
  justify-content: center;
}

.cta .button.primary {
  background: #ffffff;
  color: var(--bronze);
  border: 1px solid #ffffff;
}

.cta .button.primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.cta .button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.cta .button.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.cta-symbol {
  width: 80px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  margin-top: 4rem;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 60px;
  border-top: 4px solid var(--bronze);
}

.site-footer p {
  margin: 0.5rem 0;
  color: var(--neutral);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--graphite);
  text-decoration: none;
  font-weight: 500;
}

.site-footer a:hover {
  color: var(--bronze);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  margin: 0.5rem 0;
}

.footer-links a {
  color: var(--graphite);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--bronze);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.social-link svg {
  vertical-align: middle;
}

/* ===== NEW: Emotional Storytelling Sections ===== */

.hero-emotional {
  padding: 120px 40px 100px;
  text-align: center;
  background: #f7fafc;
  border-radius: var(--radius);
  margin: 2.5rem 0;
}

.hero-emotional h1 {
  font-size: clamp(2.8rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--graphite);
  max-width: none;
  text-align: center;
  margin: 0 auto;
  line-height: 1.15;
}

.hero-emotional .subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--neutral);
  margin-top: 1rem;
}

.hero-emotional .hero-actions {
  margin-top: 2.5rem;
  justify-content: center;
}

.narrative-section {
  padding: 80px 0;
  margin: 0;
}

.narrative-block {
  background: #ffffff;
  border-left: 4px solid var(--line);
  border-radius: var(--radius);
  padding: 48px 40px;
  margin-bottom: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.narrative-block:hover {
  border-left-color: var(--bronze);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.narrative-block:last-child {
  margin-bottom: 0;
}

.narrative-block h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--graphite);
  margin-bottom: 1rem;
}

.narrative-block p {
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--neutral);
}

.philosophy-section {
  padding: 80px 40px;
  text-align: center;
  background: #f7fafc;
  border-radius: var(--radius);
  margin: 2.5rem 0;
}

.philosophy-section h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 1.5rem;
}

.philosophy-section p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--graphite);
  max-width: 700px;
  margin: 0 auto;
}

.philosophy-section .italic {
  font-style: italic;
}

/* ===== About Section ===== */

.about-section {
  padding: 80px 40px;
  max-width: 800px;
  margin: 2.5rem auto;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--graphite);
}

.about-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--neutral);
  margin-bottom: 1rem;
}

/* ===== Improved CTA ===== */

.cta-improved {
  margin: 3rem 0;
  border-radius: var(--radius);
  padding: 100px 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--bronze) 0%, #7a654a 100%);
  color: #ffffff;
}

.cta-improved h2 {
  color: #ffffff;
  font-size: 2.4rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.cta-improved p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.cta-improved .button.primary {
  background: #ffffff;
  color: var(--bronze);
  border: 1px solid #ffffff;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.cta-improved .button.primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-improved .button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.cta-improved .button.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.cta-improved .cta-symbol {
  width: 64px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== Fade-in Animation (CSS-only, no JS needed) ===== */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeInUp 0.6s ease both;
}

@media (max-width: 920px) {

  .site-nav {
    display: none;
  }

  .boundary-grid,
  .asistobe-grid,
  .steps-grid,
  .audience-grid,
  .facts-grid,
  .scope-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero-emotional {
    padding: 80px 24px 60px;
  }

  .narrative-section {
    padding: 40px 0;
  }

  .narrative-block {
    padding: 32px 24px;
    margin-bottom: 24px;
  }

  .narrative-block h2 {
    font-size: 1.35rem;
  }

  .philosophy-section {
    padding: 60px 24px;
  }

  .about-section {
    padding: 60px 24px;
  }

  .cta-improved {
    padding: 60px 1.5rem;
  }

  .cta-improved h2 {
    font-size: 1.8rem;
  }
}