/* ═══════════════════════════════════════════════════════════
   CHCDC WordPress Theme — Main Stylesheet
   Version: 1.0.0
═══════════════════════════════════════════════════════════ */

/* ─── Reset & Variables ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:    #C9A84C;
  --gold-lt: #E8C96A;
  --dark:    #0D0D0D;
  --dark2:   #1A1A1A;
  --dark3:   #252525;
  --mid:     #3A3A3A;
  --light:   #F5F3EE;
  --white:   #FFFFFF;
  --text:    #2C2C2C;
  --muted:   #666666;
  --radius:  8px;
  --shadow:  0 4px 24px rgba(0,0,0,0.12);
  --max-w:   1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.25;
  color: var(--dark);
}

a { text-decoration: none; color: var(--gold); transition: color 0.2s; }
a:hover { color: var(--gold-lt); }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

/* ─── Utility ───────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.content-narrow { max-width: 800px; margin: 0 auto; }
.section-pad { padding: 96px 0; }
.bg-white { background: var(--white); }
.bg-light { background: var(--light); }
.bg-dark  { background: var(--dark2); }

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-cta { text-align: center; margin-top: 48px; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  text-align: center;
}
.btn-gold { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); color: var(--dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.4); }
.btn-outline { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }

/* ─── Top Bar ───────────────────────────────────────────── */
.topbar {
  background: var(--dark2);
  color: #aaa;
  font-size: 0.78rem;
  padding: 8px 0;
  border-bottom: 1px solid #333;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar a { color: var(--gold); }
.topbar a:hover { text-decoration: underline; }

/* ─── Navigation ────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; color: var(--white); }
.nav-logo img { max-height: 48px; width: auto; }
.logo-mark {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
  flex-shrink: 0;
}
.logo-text { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--white); line-height: 1.2; }
.logo-sub  { font-size: 0.62rem; font-weight: 400; color: #aaa; letter-spacing: 0.04em; }

/* WordPress nav menu */
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links li a {
  color: #ccc;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  display: block;
}
.nav-links li a:hover,
.nav-links li.current-menu-item > a,
.nav-links li.current_page_item > a { color: var(--gold); background: rgba(201,168,76,0.08); }
.nav-links li.nav-cta > a,
.nav-links li:last-child > a {
  background: var(--gold);
  color: var(--dark);
  padding: 8px 18px;
}
.nav-links li.nav-cta > a:hover,
.nav-links li:last-child > a:hover { background: var(--gold-lt); color: var(--dark); }

/* Dropdown */
.nav-links li { position: relative; }
.nav-links li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark2);
  border: 1px solid #333;
  border-top: 2px solid var(--gold);
  min-width: 200px;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 200;
  flex-direction: column;
  gap: 0;
}
.nav-links li:hover > ul { display: flex; }
.nav-links li ul li a { padding: 10px 16px; font-size: 0.8rem; border-radius: 0; border-bottom: 1px solid #333; }
.nav-links li ul li:last-child a { border-bottom: none; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 60%;
  opacity: 0.35;
  transform: scale(1.04);
  animation: slowZoom 18s ease-in-out infinite alternate;
}
@keyframes slowZoom { from { transform: scale(1.04); } to { transform: scale(1.12); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.55) 60%, rgba(201,168,76,0.12) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 760px;
  padding: 100px 24px 60px;
  text-align: center;
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50px;
  padding: 6px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.4;transform:scale(1.4);} }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; color: var(--white); margin-bottom: 24px; letter-spacing: -0.01em; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: clamp(1rem, 2vw, 1.2rem); color: #ccc; max-width: 580px; margin: 0 auto 40px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  position: relative; z-index: 2;
  display: flex; justify-content: center;
  width: 100%;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201,168,76,0.2);
}
.stat-item { flex: 1; min-width: 160px; padding: 28px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.07); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.78rem; color: #aaa; letter-spacing: 0.04em; }

/* ─── Page Hero ─────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex; align-items: center;
  background: var(--dark2);
  overflow: hidden;
}
.page-hero--short { min-height: 260px; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.3; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.6) 100%); }
.page-hero-content { position: relative; z-index: 2; padding: 64px 24px; }
.page-hero-content h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.page-hero-content p { color: #ccc; max-width: 560px; font-size: 1.05rem; }
.page-hero-content .section-label { margin-bottom: 10px; }

/* ─── About Section ─────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 460px; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow); }
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: var(--dark);
  border-radius: 10px; padding: 18px 22px;
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  text-align: center; box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
.about-img-badge .big { font-size: 2rem; line-height: 1; }
.about-img-badge .small { font-size: 0.72rem; letter-spacing: 0.06em; margin-top: 4px; }
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; margin-bottom: 20px; }
.about-text p { color: var(--muted); margin-bottom: 16px; font-size: 0.98rem; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; }
.pillar { display: flex; align-items: flex-start; gap: 10px; background: var(--light); border-radius: var(--radius); padding: 14px 16px; }
.pillar-icon { width: 36px; height: 36px; background: var(--gold); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.pillar-text { font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--dark); align-self: center; }

/* ─── Mission / Vision / Values ─────────────────────────── */
.mvv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.mvv-card { background: var(--white); border: 1px solid #e8e5de; border-radius: 12px; padding: 36px 28px; text-align: center; box-shadow: var(--shadow); transition: transform 0.3s; }
.mvv-card:hover { transform: translateY(-4px); }
.mvv-icon { font-size: 2.5rem; margin-bottom: 16px; }
.mvv-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.mvv-card p { color: var(--muted); font-size: 0.92rem; }

/* ─── Services ──────────────────────────────────────────── */
.services { background: var(--dark); }
.services .section-label { color: var(--gold); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--white); }
.services-header p { color: #aaa; max-width: 560px; margin: 16px auto 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.service-card {
  background: var(--dark3); border: 1px solid #333; border-radius: 12px; padding: 36px 28px;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.service-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 56px; height: 56px; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.25); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.service-card p { font-size: 0.88rem; color: #888; line-height: 1.7; }

/* ─── Process Steps ─────────────────────────────────────── */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step { display: flex; gap: 28px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid #e8e5de; }
.process-step:last-child { border-bottom: none; }
.step-num { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--gold); line-height: 1; flex-shrink: 0; min-width: 60px; }
.step-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step-body p { color: var(--muted); font-size: 0.92rem; }

/* ─── Impact Bar ────────────────────────────────────────── */
.impact { padding: 80px 0; background: var(--gold); }
.impact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); text-align: center; }
.impact-item { padding: 20px; border-right: 1px solid rgba(0,0,0,0.12); }
.impact-item:last-child { border-right: none; }
.impact-num { font-family: 'Montserrat', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--dark); line-height: 1; margin-bottom: 8px; }
.impact-label { font-size: 0.82rem; font-weight: 600; color: rgba(0,0,0,0.65); letter-spacing: 0.04em; }

/* ─── Projects ──────────────────────────────────────────── */
.projects-header { text-align: center; margin-bottom: 60px; }
.projects-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; }
.projects-header p { color: var(--muted); max-width: 560px; margin: 16px auto 0; }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.project-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s; }
.project-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.14); }
.project-img { width: 100%; height: 220px; object-fit: cover; }
.project-body { padding: 24px; }
.project-tag { display: inline-block; background: rgba(201,168,76,0.12); color: #8a6d1a; font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; margin-bottom: 10px; }
.project-body h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; }
.project-body h3 a { color: var(--dark); }
.project-body h3 a:hover { color: var(--gold); }
.project-body p { font-size: 0.86rem; color: var(--muted); }
.project-meta { font-size: 0.82rem; color: var(--muted); margin-top: 8px; }
.project-status { display: flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 0.78rem; font-weight: 600; font-family: 'Montserrat', sans-serif; color: var(--muted); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #4caf50; flex-shrink: 0; }
.status-dot.upcoming { background: var(--gold); }
.project-status--hero { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 0.9rem; font-weight: 600; color: #ccc; }

/* Filter Tabs */
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-tab { background: var(--white); border: 1px solid #ddd; border-radius: 50px; padding: 8px 20px; font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all 0.2s; color: var(--text); }
.filter-tab:hover, .filter-tab.active { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.project-card.hidden { display: none; }

/* Project Detail */
.project-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.project-detail-img { margin-bottom: 32px; border-radius: 12px; overflow: hidden; }
.project-detail-img img { width: 100%; height: auto; }
.project-info-card { background: var(--light); border-radius: 12px; padding: 28px; border: 1px solid #e8e5de; position: sticky; top: 90px; }
.project-info-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 2px solid var(--gold); }
.project-info-list { list-style: none; }
.project-info-list li { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #e0ddd5; font-size: 0.88rem; gap: 12px; }
.project-info-list li:last-child { border-bottom: none; }
.info-label { font-weight: 700; color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }
.info-value { color: var(--dark); font-weight: 600; text-align: right; }

/* ─── Timeline ──────────────────────────────────────────── */
.timeline { position: relative; padding: 20px 0; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: rgba(201,168,76,0.3); transform: translateX(-50%); }
.timeline-item { display: flex; width: 50%; padding: 0 48px 40px 0; }
.timeline-item.right { margin-left: 50%; padding: 0 0 40px 48px; }
.timeline-content { background: var(--dark3); border: 1px solid #333; border-radius: 10px; padding: 20px 24px; position: relative; }
.timeline-content::after { content: ''; position: absolute; top: 20px; right: -10px; width: 18px; height: 18px; background: var(--gold); border-radius: 50%; border: 3px solid var(--dark2); }
.timeline-item.right .timeline-content::after { left: -10px; right: auto; }
.timeline-year { font-family: 'Montserrat', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--gold); margin-bottom: 8px; }
.timeline-content p { font-size: 0.88rem; color: #aaa; line-height: 1.6; }

/* ─── Team ──────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.team-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); text-align: center; transition: transform 0.3s; }
.team-card:hover { transform: translateY(-4px); }
.team-photo { width: 100%; height: 240px; object-fit: cover; object-position: top; }
.team-photo-placeholder { width: 100%; height: 240px; background: var(--light); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.team-body { padding: 20px; }
.team-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.78rem; color: var(--gold); font-weight: 600; letter-spacing: 0.04em; }
.team-body p { font-size: 0.84rem; color: var(--muted); margin-top: 10px; }

/* ─── Partner CTA ───────────────────────────────────────── */
.partner-cta {
  padding: 100px 0; background: var(--dark2); text-align: center; position: relative; overflow: hidden;
}
.partner-cta::before {
  content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.partner-cta .section-label { color: var(--gold); }
.partner-cta h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--white); max-width: 640px; margin: 0 auto 20px; }
.partner-cta p { color: #aaa; max-width: 520px; margin: 0 auto 40px; }
.partner-types { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.partner-chip { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 50px; padding: 8px 20px; font-size: 0.82rem; color: #ccc; font-family: 'Montserrat', sans-serif; font-weight: 600; }

/* ─── Contact ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; margin-bottom: 16px; }
.contact-info p { color: var(--muted); margin-bottom: 32px; }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.contact-detail-icon { width: 44px; height: 44px; background: var(--light); border: 1px solid #e0ddd5; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-detail-text .label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.contact-detail-text .value { font-size: 0.95rem; font-weight: 600; color: var(--dark); }
.contact-detail-text a { color: var(--gold); }
.contact-detail-text a:hover { text-decoration: underline; }
.contact-partner-types { margin-top: 32px; }
.contact-partner-types h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.partner-chips-sm { display: flex; flex-wrap: wrap; gap: 8px; }
.partner-chip-sm { background: var(--light); border: 1px solid #e0ddd5; border-radius: 50px; padding: 5px 14px; font-size: 0.78rem; color: var(--text); font-family: 'Montserrat', sans-serif; font-weight: 600; }
.contact-form { background: var(--light); border-radius: 12px; padding: 40px; }
.contact-form h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #ddd; border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif; font-size: 0.9rem; color: var(--text);
  background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 14px; font-size: 0.92rem; cursor: pointer; }
.form-message { padding: 12px 16px; border-radius: var(--radius); margin-bottom: 20px; font-size: 0.9rem; font-weight: 600; }
.form-message.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-message.error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Map Placeholder */
.map-section { height: 300px; background: var(--dark3); }
.map-placeholder { width: 100%; height: 100%; position: relative; background: var(--dark3); }
.map-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(13,13,13,0.7); }
.map-text { text-align: center; }
.map-text span { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.map-text p { color: #ccc; margin-bottom: 20px; font-size: 1rem; }

/* ─── FAQ ───────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e8e5de; }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 20px 0; font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-question:hover { color: var(--gold); }
.faq-icon { font-size: 1.4rem; font-weight: 400; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 0 20px; }
.faq-answer p { color: var(--muted); font-size: 0.95rem; }

/* ─── Blog / News ───────────────────────────────────────── */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.blog-main { min-width: 0; }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.news-grid--large .news-card { display: flex; flex-direction: column; }
.news-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s; }
.news-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.news-img { width: 100%; height: 200px; object-fit: cover; }
.news-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; flex-wrap: wrap; }
.news-date { font-size: 0.78rem; color: var(--muted); }
.news-cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); background: rgba(201,168,76,0.1); padding: 2px 8px; border-radius: 4px; }
.news-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.news-title a { color: var(--dark); }
.news-title a:hover { color: var(--gold); }
.news-body p { font-size: 0.88rem; color: var(--muted); flex: 1; }
.read-more { display: inline-block; margin-top: 16px; font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 700; color: var(--gold); letter-spacing: 0.04em; }
.read-more:hover { color: var(--gold-lt); }

/* Single Post */
.single-post { background: var(--white); border-radius: 12px; padding: 40px; box-shadow: var(--shadow); }
.post-header { margin-bottom: 28px; }
.post-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; margin: 12px 0; }
.post-meta { display: flex; gap: 16px; font-size: 0.82rem; color: var(--muted); flex-wrap: wrap; }
.post-thumbnail { margin-bottom: 32px; border-radius: 10px; overflow: hidden; }
.post-thumbnail img { width: 100%; max-height: 480px; object-fit: cover; }
.post-content { font-size: 1rem; line-height: 1.8; color: var(--text); }
.post-content h2, .post-content h3 { margin: 28px 0 12px; }
.post-content p { margin-bottom: 16px; }
.post-content ul, .post-content ol { margin: 16px 0 16px 24px; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote { border-left: 4px solid var(--gold); padding: 16px 20px; background: var(--light); border-radius: 0 var(--radius) var(--radius) 0; margin: 24px 0; font-style: italic; color: var(--muted); }
.post-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 28px; padding-top: 20px; border-top: 1px solid #e8e5de; }
.post-navigation { margin-top: 40px; padding-top: 28px; border-top: 1px solid #e8e5de; }
.post-navigation .nav-links { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.post-navigation .nav-links a { font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--gold); }
.post-navigation .nav-links span { display: block; font-size: 0.78rem; color: var(--muted); margin-bottom: 4px; }

/* Pagination */
.pagination { margin-top: 48px; }
.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--radius); border: 1px solid #ddd; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--text); transition: all 0.2s; }
.pagination .page-numbers:hover,
.pagination .page-numbers.current { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.pagination .prev, .pagination .next { width: auto; padding: 0 16px; }

/* No Results */
.no-results { text-align: center; padding: 60px 0; }
.no-results h2 { font-size: 1.5rem; margin-bottom: 12px; }
.no-results p { color: var(--muted); }

/* ─── Sidebar ───────────────────────────────────────────── */
.blog-sidebar { position: sticky; top: 90px; }
.widget { background: var(--white); border-radius: 12px; padding: 24px; box-shadow: var(--shadow); margin-bottom: 24px; }
.widget-title { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); }
.widget-about p { font-size: 0.88rem; color: var(--muted); margin-bottom: 12px; }
.sidebar-post-list li { padding: 10px 0; border-bottom: 1px solid #f0ede8; }
.sidebar-post-list li:last-child { border-bottom: none; }
.sidebar-post-list a { font-size: 0.88rem; font-weight: 600; color: var(--dark); display: block; margin-bottom: 4px; }
.sidebar-post-list a:hover { color: var(--gold); }
.sidebar-post-list .news-date { font-size: 0.75rem; }
.sidebar-cat-list li { padding: 6px 0; border-bottom: 1px solid #f0ede8; }
.sidebar-cat-list li:last-child { border-bottom: none; }
.sidebar-cat-list a { font-size: 0.88rem; color: var(--text); display: flex; justify-content: space-between; }
.sidebar-cat-list a:hover { color: var(--gold); }
.widget-cta { background: var(--dark2); }
.widget-cta h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.widget-cta p { font-size: 0.88rem; color: #aaa; margin-bottom: 16px; }

/* Search Form */
.search-form { display: flex; gap: 8px; }
.search-field { flex: 1; padding: 10px 14px; border: 1px solid #ddd; border-radius: var(--radius); font-size: 0.9rem; outline: none; }
.search-field:focus { border-color: var(--gold); }
.search-submit { background: var(--gold); color: var(--dark); border: none; padding: 10px 16px; border-radius: var(--radius); font-weight: 700; cursor: pointer; font-size: 0.85rem; }
.search-submit:hover { background: var(--gold-lt); }

/* ─── Footer ────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: #aaa; padding: 60px 0 0; border-top: 3px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-mark { width: 46px; height: 46px; font-size: 1.1rem; margin-bottom: 16px; }
.footer-tagline { font-size: 0.88rem; line-height: 1.7; max-width: 280px; margin-bottom: 12px; }
.footer-email a, .footer-phone a { color: var(--gold); font-size: 0.88rem; }
.footer-col-title { font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-nav { list-style: none; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a { font-size: 0.88rem; color: #888; transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid #222; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; }
.footer-bottom a { color: var(--gold); }

/* ─── Scroll Reveal ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Entry Content (WP editor output) ─────────────────── */
.entry-content h2 { font-size: 1.5rem; margin: 28px 0 12px; }
.entry-content h3 { font-size: 1.2rem; margin: 24px 0 10px; }
.entry-content p  { margin-bottom: 16px; color: var(--muted); }
.entry-content ul, .entry-content ol { margin: 16px 0 16px 24px; color: var(--muted); }
.entry-content li { margin-bottom: 8px; }
.entry-content img { border-radius: var(--radius); margin: 16px 0; }
.entry-content a { color: var(--gold); text-decoration: underline; }
.entry-content blockquote { border-left: 4px solid var(--gold); padding: 16px 20px; background: var(--light); border-radius: 0 var(--radius) var(--radius) 0; margin: 24px 0; font-style: italic; color: var(--muted); }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .project-detail-grid { grid-template-columns: 1fr; }
  .project-info-card { position: static; }
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item.right { width: 100%; margin-left: 0; padding: 0 0 28px 52px; }
  .timeline-content::after, .timeline-item.right .timeline-content::after { left: -42px; right: auto; }
}
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-badge { right: 0; bottom: -16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}
@media (max-width: 640px) {
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--dark); padding: 16px;
    gap: 4px; border-bottom: 2px solid var(--gold);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li ul { position: static; border: none; box-shadow: none; background: rgba(255,255,255,0.05); }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .impact-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.12); }
  .section-pad { padding: 64px 0; }
  .single-post { padding: 24px; }
}
