/* KIA Shared Stylesheet — used by all detail pages */
:root {
  --gold: #E9993E;
  --gold-light: #FFDE59;
  --gold-dim: rgba(233,153,62,0.15);
  --navy: #356A3B;
  --navy-mid: #2D5C32;
  --navy-light: #3D7443;
  --slate: #4A8C52;
  --cream: #F8F4EE;
  --cream-dark: #EDE7DB;
  --text-primary: #1A2E1C;
  --text-muted: #4A6150;
  --text-light: #7A9E80;
  --white: #FFFFFF;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 4px 40px rgba(13,27,42,0.08);
  --shadow-lg: 0 12px 60px rgba(13,27,42,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text-primary); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
.khmer { font-family: 'Noto Sans Khmer', sans-serif; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: rgba(29,77,34,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(233,153,62,0.2);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-mark { width: 38px; height: 38px; background: transparent; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-main { font-size: 14px; font-weight: 600; color: var(--white); }
.nav-logo-sub { font-size: 10px; font-weight: 300; color: var(--gold-light); letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 400; letter-spacing: 0.04em; color: rgba(255,255,255,0.7); text-decoration: none; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold-light); }
.nav-cta { padding: 9px 22px; background: var(--gold); color: var(--navy) !important; font-weight: 600 !important; border-radius: 2px; font-size: 12px !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

.breadcrumb { padding: 100px 5% 0; background: var(--navy); display: flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 0.06em; }
.breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; text-transform: uppercase; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); text-transform: uppercase; }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }

.page-hero { background: var(--navy); padding: 40px 5% 80px; }
.page-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.page-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.page-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 64px); font-weight: 500; line-height: 1.1; color: var(--white); margin-bottom: 20px; }
.page-title em { font-style: italic; color: var(--gold-light); }
.page-subtitle { font-size: 18px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 620px; }

.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: var(--gold); color: var(--navy); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; border: none; border-radius: 2px; cursor: pointer; text-decoration: none; transition: all 0.25s; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; background: transparent; color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 500; letter-spacing: 0.04em; border: 1px solid rgba(255,255,255,0.2); border-radius: 2px; cursor: pointer; text-decoration: none; transition: all 0.25s; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-dark { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: var(--navy); color: var(--white); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; border: none; border-radius: 2px; cursor: pointer; text-decoration: none; transition: all 0.25s; }
.btn-dark:hover { background: var(--gold); color: var(--navy); }

.section-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.section-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px, 4vw, 48px); font-weight: 500; line-height: 1.15; color: var(--text-primary); }
.section-title.light { color: var(--white); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

footer { background: var(--navy); border-top: 1px solid rgba(233,153,62,0.2); padding: 48px 5% 32px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-links-row { display: flex; gap: 24px; }
.footer-links-row a { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-links-row a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .page-hero { padding: 40px 5% 60px; }
}

.social-links-row { display:flex; flex-wrap:wrap; gap:10px; margin-top:20px; }
.social-link { display:inline-flex; align-items:center; gap:6px; padding:8px 14px; background:rgba(255,255,255,0.06); border:1px solid rgba(233,153,62,0.2); border-radius:6px; color:rgba(255,255,255,0.6); font-size:12px; text-decoration:none; transition:all 0.2s; }
.social-link:hover { border-color:var(--gold); color:var(--gold-light); }

/* ── MOBILE NAV HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
}
