:root {
  --ink: #e94859;
  --paper: #f3efe6;
  --gold: #b89454;
  --gold-light: #dfc784;
  --text: #17191e;
  --serif: Georgia, "Times New Roman", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  --sans: Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

p#tsuikasyuusei{
font-size:16px;
line-height:25px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 84px;
  border-bottom: 1px solid rgba(184, 148, 84, 0.42);
    background: #e94859;
  color: #f7f1e7;
  backdrop-filter: blur(14px);
}

.header-inner,
.footer-inner {
  width: min(100% - 48px, 1400px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font: 20px/1 var(--serif);
}

.brand-name {
  display: grid;
  gap: 2px;
  letter-spacing: 0.12em;
}

.brand-name strong {
  font: 15px/1.1 var(--serif);
}

.brand-name small {
  color: #c9b78f;
  font-size: 8px;
  letter-spacing: 0.2em;
}

.desktop-nav,
footer nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a,
footer nav a {
  position: relative;
  padding: 31px 0 27px;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.12em;
  transition: color 180ms ease;
}

.desktop-nav a::after,
footer nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  background:#ffffff;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.active,
footer nav a:hover,
footer nav a:focus-visible {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.active::after,
footer nav a:hover::after,
footer nav a:focus-visible::after {
  transform: scaleX(1);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  background:
    radial-gradient(circle at 20% 12%, rgba(255,255,255,.8) 0 1px, transparent 1.5px) 0 0/8px 8px,
    linear-gradient(90deg, var(--paper) 0 52%, var(--ink) 52% 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  content: "";
}

.hero-rule {
  position: absolute;
  top: 24px;
  right: 6%;
  width: 48%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-inner {
  position: relative;
  width: min(100% - 48px, 1400px);
  min-height: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 47% 53%;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: 72px 46px 74px 24px;
}

.eyebrow,
.section-kicker,
.section-heading > p {
  margin: 0 0 22px;
  color: #222222;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.26em;
}

.hero-copy h1 {
  margin: 0;
  font: 500 clamp(54px, 5.8vw, 92px)/0.85 var(--serif);
  letter-spacing: -0.045em;
}

.hero-copy h1 span {
  display: block;
  margin-left: 0.7em;
  color: var(--ink);
}

.role {
  margin: 21px 0 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.17em;
}

.role i {
  width: 1px;
  height: 16px;
  background: var(--gold);
}

.intro-block {
  max-width: 515px;
}

.intro-block h2 {
  margin: 0 0 22px;
  font: 500 clamp(27px, 2.25vw, 38px)/1.35 var(--serif);
  letter-spacing: 0.03em;
}

.intro-block > p,
.message-copy > p,
.activities-intro > p:last-child {
  margin: 0;
  color: #4d4b47;
  font-size: 17px;
  line-height: 2;
}

.intro-block ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.intro-block li {
  position: relative;
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid rgba(184, 148, 84, 0.28);
  font: 17px/1.4 var(--serif);
}

.intro-block li::before {
  position: absolute;
  top: 17px;
  left: 1px;
  width: 7px;
  height: 1px;
  background: var(--gold);
  content: "";
}

blockquote {
  position: relative;
  margin: 28px 0 0;
  padding: 14px 0 0 26px;
  font: italic 16px/1.65 var(--serif);
}

blockquote span {
  position: absolute;
  top: -12px;
  left: 0;
  color: var(--gold);
  font: 52px/1 var(--serif);
}

.hero-visual {
  position: relative;
  min-height: 780px;
  background: #e94859;
}

.photo {
  position: absolute;
  overflow: hidden;
  background: #d9d9d9;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-secondary {
  z-index: 1;
  bottom: 34px;
  left: -70px;
  width: 54%;
  height: 63%;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.38);
}

.photo-primary {
  z-index: 2;
  top: 64px;
  right: 5%;
  width: 56%;
  height: 66%;
  border: 1px solid var(--gold);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.48);
}

.placeholder-label,
.message-image > span {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  padding: 7px 10px;
  background: rgba(18, 23, 35, 0.82);
  color: #e4c986;
  font-size: 8px;
  letter-spacing: 0.16em;
}

.gold-button {
  position: absolute;
  z-index: 3;
  right: 11%;
  bottom: 50px;
  min-width: 270px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(100deg, #9e783b, #dfc784 50%, #b38e4e);
  color: #171717;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  transition: transform 180ms ease, filter 180ms ease;
}

.gold-button svg,
.official-links svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.gold-button:hover,
.gold-button:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.journey-section {
  padding: 110px 0 120px;
  background:
    linear-gradient(rgba(255,255,255,.44), rgba(255,255,255,.44)),
    radial-gradient(circle at 30% 20%, #fff 0 1px, transparent 1px) 0 0/7px 7px,
    var(--paper);
}

.section-inner {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: end;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(184, 148, 84, 0.45);
}

.section-heading h2,
.activities-intro h2,
.message-copy h2,
.contact-inner h2 {
  margin: 0;
  font: 500 clamp(38px, 4.2vw, 64px)/1.24 var(--serif);
  letter-spacing: 0.02em;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.timeline article {
  position: relative;
  min-height: 288px;
  padding: 38px 28px 24px;
  border-right: 1px solid rgba(184, 148, 84, 0.36);
}

.timeline article:first-child {
  border-left: 1px solid rgba(184, 148, 84, 0.36);
}

.phase {
  display: block;
  margin-bottom: 54px;
  color: var(--gold);
  font: 28px/1 var(--serif);
}

.timeline-en {
  margin: 0 0 14px !important;
  color: #20242d !important;
  font: 17px/1.3 var(--serif) !important;
  letter-spacing: 0.04em;
}

.timeline article p:last-child {
  margin: 0;
  color: #5f5c57;
  font-size: 12px;
  line-height: 1.85;
}

.activities-section {
  padding: 120px 0;
  background: var(--ink);
  color: #f3eee4;
}

.activities-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.75fr;
  gap: 84px;
}

.activities-intro h2 {
  margin-bottom: 32px;
}

.activities-intro > p:last-child {
  color: #b8b7b4;
}

.activity-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(223, 199, 132, 0.45);
  border-bottom: 1px solid rgba(223, 199, 132, 0.45);
}

.activity-cards article {
  position: relative;
  padding: 42px 28px 38px;
  border-right: 1px solid rgba(223, 199, 132, 0.25);
  transition: background 200ms ease, transform 200ms ease;
}

.activity-cards article:first-child {
  border-left: 1px solid rgba(223, 199, 132, 0.25);
}

.activity-cards article:hover {
  background: rgba(255, 255, 255, 0.035);
  transform: translateY(-4px);
}

.activity-number {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 54px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font: 16px/1 var(--serif);
}

.activity-en {
  min-height: 30px;
  margin: 0 0 12px;
  color: #b7a983;
  font: 12px/1.4 var(--serif);
  letter-spacing: 0.05em;
}

.activity-cards h3 {
  margin: 0 0 24px;
  font: 500 24px/1.4 var(--serif);
}

.activity-cards article > p:last-child {
  margin: 0;
  color: #b8b7b4;
  font-size: 12px;
  line-height: 1.9;
}

.message-section {
  min-height: 700px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
}

.message-image {
  position: relative;
  overflow: hidden;
}

.message-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(18, 23, 35, .22));
  content: "";
  pointer-events: none;
}

.message-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02);
}

.message-copy {
  padding: 105px clamp(48px, 7vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.message-copy h2 {
  margin-bottom: 36px;
}

.message-copy > p {
  margin-bottom: 20px;
}

.signature {
  margin: 26px 0 0 !important;
  color: #2a2d35 !important;
  font: italic 24px/1 var(--serif) !important;
}

.contact-section {
  padding: 110px 0;
  background: #e8dfcf;
}

.contact-inner {
  width: min(100% - 48px, 1050px);
  margin: 0 auto;
}

.contact-inner h2 {
  margin-bottom: 44px;
}

.official-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.official-links a {
  min-height: 120px;
  padding: 27px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(132, 98, 43, 0.44);
  background: rgba(255, 255, 255, 0.4);
  font: 18px/1.5 var(--serif);
  transition: background 180ms ease, color 180ms ease;
}

.official-links a:hover,
.official-links a:focus-visible {
  background: var(--ink);
  color: #fff;
}

.official-links small {
  display: block;
  margin-bottom: 8px;
  color: #9a763c;
  font: 14px/1 var(--sans);
  letter-spacing: 0.18em;
}

.official-links a:hover small {
  color: #ffffff;
}

footer {
  min-height: 148px;
  border-top: 1px solid rgba(184, 148, 84, 0.45);
    background: #e94859;
  color: #f4eee4;
}

.footer-inner {
  min-height: 148px;
}

.footer-inner > p {
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.12em;
}

footer nav a {
  padding-top: 54px;
  padding-bottom: 50px;
  font-size: 14px;
}

footer nav a::after {
  bottom: 42px;
}

@media (max-width: 1100px) {
  .hero {
    background: linear-gradient(90deg, var(--paper) 0 48%, var(--ink) 48% 100%);
  }

  .hero-inner {
    grid-template-columns: 48% 52%;
  }

  .hero-copy {
    padding-right: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(50px, 6vw, 70px);
  }

  .role {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .photo-secondary {
    display: none;
  }

  .photo-primary {
    width: 84%;
    height: 64%;
  }

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

  .timeline article:nth-child(3) {
    border-left: 1px solid rgba(184, 148, 84, 0.36);
  }

  .activities-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .footer-inner {
    flex-wrap: wrap;
    gap: 20px;
    padding: 34px 0;
  }

  footer nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  footer nav a {
    padding: 0 0 8px;
  }

  footer nav a::after {
    bottom: 0;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    height: 70px;
    background:#e94859;
    color: var(--ink);
  }

  .header-inner,
  .footer-inner,
  .hero-inner,
  .section-inner,
  .contact-inner {
    width: min(100% - 36px, 660px);
  }

  .site-header .brand-mark {
    color: #88642f;
  }

  .site-header .brand-name small {
    color: #8b7149;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    width: 34px;
    height: 34px;
    padding: 8px 5px;
    display: grid;
    align-content: space-between;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    display: block;
    width: 24px;
    height: 1px;
    background: #ffffff;
  }

  .mobile-menu nav {
    position: absolute;
    top: 48px;
    right: -8px;
    width: 220px;
    padding: 18px 24px;
    display: grid;
    gap: 0;
    border: 1px solid rgba(184, 148, 84, 0.55);
    background: var(--ink);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.26);
    color: white;
  }

  .mobile-menu nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-size: 16px;
    letter-spacing: .12em;
  }

  .hero {
    min-height: 0;
    background: var(--paper);
  }

  .hero-rule {
    display: none;
  }

  .hero-inner {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .hero-visual {
    order: -1;
    min-height: 545px;
    margin-right: -18px;
    margin-left: -18px;
  }

  .photo-primary {
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  .photo-primary img {
    object-position: center 22%;
  }

  .gold-button {
    right: 18px;
    bottom: 22px;
    min-width: 246px;
  }

  .hero-copy {
    padding: 55px 4px 74px;
  }

  .hero-copy h1 {
    font-size: clamp(50px, 14vw, 78px);
    text-align: center;
  }

  .hero-copy h1 span {
    margin-left: 0;
  }

  .role {
    margin: 20px 0 38px;
    justify-content: center;
    text-align: center;
  }

  .intro-block {
    max-width: none;
  }

  .intro-block h2 {
    font-size: 30px;
  }

  blockquote br {
    display: none;
  }

  .journey-section,
  .activities-section,
  .contact-section {
    padding: 80px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-heading h2,
  .activities-intro h2,
  .message-copy h2,
  .contact-inner h2 {
    font-size: 42px;
  }

  .activity-cards {
    grid-template-columns: 1fr;
  }

  .activity-cards article,
  .activity-cards article:first-child {
    min-height: 0;
    border-right: 1px solid rgba(223, 199, 132, 0.25);
    border-bottom: 1px solid rgba(223, 199, 132, 0.25);
    border-left: 1px solid rgba(223, 199, 132, 0.25);
  }

  .activity-cards article:last-child {
    border-bottom: 0;
  }

  .activity-number {
    margin-bottom: 30px;
  }

  .message-section {
    grid-template-columns: 1fr;
  }

  .message-image {
    min-height: 520px;
  }

  .message-copy {
    padding: 78px 28px 86px;
  }

  .official-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand-name strong {
    font-size: 15px;
    color:#ffffff;
  }

  .brand-name small {
    font-size: 6px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    font-size: 17px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .placeholder-label {
    font-size: 6px;
  }

  .gold-button {
    min-width: 228px;
    padding: 15px 18px;
    font-size: 9px;
  }

  .eyebrow {
    text-align: center;
    font-size:14px;
    letter-spacing:-0.25px;
  }

  .hero-copy h1 {
    font-size: 52px;
  }

  .role {
    font-size: 13px;
  }

  .intro-block > p,
  .message-copy > p,
  .activities-intro > p:last-child {
    font-size: 16px;
  }

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

  .timeline article,
  .timeline article:first-child,
  .timeline article:nth-child(3) {
    min-height: 0;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 10px;
    border-right: 1px solid rgba(184, 148, 84, 0.36);
    border-bottom: 1px solid rgba(184, 148, 84, 0.36);
    border-left: 1px solid rgba(184, 148, 84, 0.36);
  }

  .phase {
    margin-bottom: 0;
    font-size: 21px;
  }

  .message-image {
    min-height: 390px;
  }

  .official-links a {
    padding: 24px 22px;
    font-size: 16px;
  }

  .footer-inner {
    display: grid;
    justify-items: start;
  }

  footer nav {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 18px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Extended profile page */
.intro-block > p + p,
.activities-intro > p + p {
  margin-top: 16px;
}

.profile-section,
.organization-section,
.partners-section {
  padding: 120px 0;
}

.profile-section {
  background: #ebe5d9;
}

.editorial-grid,
.organization-hero,
.mission-grid,
.sustainability-copy {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(50px, 8vw, 120px);
}

.compact-heading {
  display: block;
  align-self: start;
  padding-bottom: 0;
  border-bottom: 0;
}

.compact-heading h2,
.organization-hero h2,
.partners-section > .section-inner > h2 {
  margin: 0;
  font: 500 clamp(38px, 4.2vw, 64px)/1.2 var(--serif);
}

.prose p,
.split-content p,
.partner-cards p,
.speaking-block > p,
.contact-note {
  margin: 0;
  color: #55534e;
  font-size: 16px;
  line-height: 2;
}

.prose p + p,
.split-content p + p,
.partner-cards p + p {
  margin-top: 15px;
}

.lead-prose p:first-child {
  color: #242731;
  font: 20px/1.75 var(--serif);
}

.experience-panel {
  align-self: center;
  padding: 38px;
  border: 1px solid #ffffff;
  background: rgba(255,255,255,.025);
}

.panel-label {
  margin: 0 0 24px;
  color: #a47d3e;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .2em;
}

.check-list,
.plain-list,
.tag-list,
.career-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 0;
}

.two-column-list {
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
}

.check-list li {
  position: relative;
  padding: 14px 0 14px 20px;
  border-bottom: 1px solid rgba(184,148,84,.25);
  color: inherit;
  font: 16px/1.55 var(--serif);
}

.check-list li::before {
  position: absolute;
  top: 23px;
  left: 0;
  width: 7px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.organization-section {
  background: var(--paper);
}

.organization-hero {
  align-items: end;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(184,148,84,.42);
}

.organization-hero h2 {
  max-width: 720px;
}

.split-content,
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 65px 0;
}

.split-content article,
.credentials-grid article {
  min-width: 0;
}

.program-block {
  padding: 38px;
  border: 1px solid #ffffff;
  background: rgba(255,255,255,.35);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list li {
  padding: 12px 15px;
  border: 1px solid #ffffff;
  background: rgba(255,255,255,.35);
  color: #4c4944;
  font-size: 16px;
  line-height: 1.5;
}

.mini-timeline {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(184,148,84,.4);
  border-left: 1px solid rgba(184,148,84,.4);
}

.mini-timeline article {
  min-height: 160px;
  padding: 25px;
  border-right: 1px solid rgba(184,148,84,.4);
  border-bottom: 1px solid rgba(184,148,84,.4);
}

.mini-timeline time {
  color: var(--gold);
  font: 24px/1 var(--serif);
}

.mini-timeline p {
  margin: 28px 0 0;
  color: #5b5954;
  font-size: 16px;
  line-height: 1.75;
}

.cambodia-section {
  padding: 120px 0;
background: #e94859;
  color: #f1ece3;
}

.light-heading {
  /*--------grid-template-columns: .75fr 1.7fr;-----*/
}

.light-heading h2 {
  font-size: clamp(38px, 4.5vw, 66px);
}

.mission-grid {
  padding: 65px 0;
}

.cambodia-section .prose p {
  color: #bdbbb6;
}

.mission-statements {
  display: grid;
  gap: 16px;
}

.mission-statements article {
  padding: 28px 30px;
  border-left: 2px solid #ffffff;
  background: rgba(255,255,255,.04);
}

.mission-statements small {
color:#ffffff;
  font-size: 14px;
  letter-spacing: .2em;
}

.mission-statements p {
  margin: 12px 0 0;
  font: 19px/1.55 var(--serif);
}

.dark-program {
  background: rgba(255,255,255,.025);
}

.dark-program .tag-list li {
  background: rgba(255,255,255,.03);
  color: #d1cec8;
}

.sustainability-copy {
  padding-top: 72px;
}

.sustainability-copy h3,
.speaking-block h3 {
  margin: 0;
  font: 500 clamp(28px, 3vw, 44px)/1.35 var(--serif);
}

.career-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid rgba(184,148,84,.36);
}

.career-list li {
  min-height: 105px;
  padding: 28px;
  border-right: 1px solid rgba(184,148,84,.36);
  border-bottom: 1px solid rgba(184,148,84,.36);
  color: #55534f;
  font-size: 16px;
  line-height: 1.75;
}

.career-list strong {
  display: block;
  margin-bottom: 8px;
  color: #9b7437;
  font: 20px/1 var(--serif);
}

.credentials-grid article {
  padding: 35px;
  border: 1px solid rgba(184,148,84,.36);
  background: rgba(255,255,255,.25);
}

.plain-list li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(184,148,84,.2);
  color: #55534f;
  font-size: 16px;
  line-height: 1.65;
}

.speaking-block {
  padding-top: 70px;
  border-top: 1px solid rgba(184,148,84,.4);
}

.speaking-block h3 {
  margin-bottom: 20px;
}

.light-tags {
  margin-top: 30px;
}

.partners-section {
  background: #e8dfcf;
}

.partners-section > .section-inner > h2 {
  margin-bottom: 50px;
}

.partner-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(132,98,43,.4);
  border-left: 1px solid rgba(132,98,43,.4);
}

.partner-cards article {
  padding: 36px 30px;
  border-right: 1px solid rgba(132,98,43,.4);
  border-bottom: 1px solid rgba(132,98,43,.4);
}

.partner-cards span {
  color: var(--gold);
  font: 26px/1 var(--serif);
}

.partner-cards h3 {
  min-height: 68px;
  margin: 30px 0 20px;
  font: 500 22px/1.45 var(--serif);
}

.partner-cards .note {
  padding: 14px;
  border-left: 2px solid var(--gold);
  background: rgba(255,255,255,.38);
  font-size: 16px;
}

.message-section {
  min-height: 840px;
}

.contact-note {
  max-width: 680px;
  margin: -22px 0 36px;
}

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

@media (max-width: 1100px) {
  .desktop-nav { gap: 20px; }
  .desktop-nav a { font-size: 10px; }
  .partner-cards { grid-template-columns: 1fr; }
  .partner-cards h3 { min-height: 0; }
  .official-links { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .profile-section,
  .organization-section,
  .cambodia-section,
  .partners-section { padding: 80px 0; }
  .editorial-grid,
  .organization-hero,
  .mission-grid,
  .sustainability-copy { grid-template-columns: 1fr; gap: 38px; }
  .organization-hero { align-items: start; }
  .split-content,
  .credentials-grid { grid-template-columns: 1fr; gap: 24px; }
  .two-column-list { grid-template-columns: 1fr; }
  .mini-timeline { grid-template-columns: repeat(2, 1fr); }
  .career-list { grid-template-columns: 1fr; }
  .message-section { min-height: 0; }
}

@media (max-width: 560px) {
  .profile-section,
  .organization-section,
  .cambodia-section,
  .partners-section { padding: 68px 0; }
  .compact-heading h2,
  .organization-hero h2,
  .partners-section > .section-inner > h2 { font-size: 38px; }
  .experience-panel,
  .program-block,
  .credentials-grid article { padding: 26px 22px; }
  .mini-timeline { grid-template-columns: 1fr; }
  .mini-timeline article { min-height: 0; }
  .partner-cards article { padding: 30px 24px; }
}
