@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');


:root {
  --brand-primary:       #3D6B47;   
  --brand-primary-dark:  #2C4F35;   
  --brand-primary-light: #EBF2ED;   
  --brand-brown:         #5C3A1E;   
  --brand-brown-mid:     #8B5E3C;   
  --brand-brown-light:   #F5EFE6;   

  --brand-text:          #2A2A2A;
  --brand-text-subtle:   #5C5C5C;
  --brand-text-muted:    #8A8A8A;

  --brand-bg:            #FFFFFF;
  --brand-page-bg:       #F8F6F1;   
  --brand-border:        #E4DDD3;
  --brand-border-light:  #EDE8E0;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', Helvetica, sans-serif;

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.09);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.11);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --transition: 0.25s ease;
  --container-max: 1200px;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--brand-page-bg);
  color: var(--brand-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--brand-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-primary-dark); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
::selection { background: var(--brand-primary); color: #fff; }


::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--brand-page-bg); }
::-webkit-scrollbar-thumb { background: var(--brand-brown-mid); border-radius: 3px; }


.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.main-content { min-width: 0; }
.sidebar      { min-width: 0; }


.site-header {
  background: var(--brand-bg);
  border-bottom: 1px solid var(--brand-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo img {
  width: 444px;
  object-fit: cover;
  max-height: 77px;
}

.footer-logo {
  width: 444px!important;
  object-fit: cover;
  max-height: 114px!important;
  border-radius: 64px;
  margin: 0% 0 4% 0;
  filter: unset!important;
  height: unset!important;
}



.site-logo .logo-placeholder {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--brand-brown);
  font-weight: 700;
}

.site-nav { display: flex; align-items: center; gap: 0; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-list li a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-text);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  position: relative;
}

.nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}

.nav-list li a:hover,
.nav-list li a.active {
  color: var(--brand-primary);
  background: var(--brand-primary-light);
}

.nav-list li a:hover::after,
.nav-list li a.active::after {
  transform: scaleX(1);
}


.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.hero {
  background: linear-gradient(135deg, var(--brand-brown-light) 0%, #EFF4F0 50%, var(--brand-primary-light) 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.hp-hero {
  background: linear-gradient(135deg, var(--brand-brown-light) 0%, #EFF4F0 50%, var(--brand-primary-light) 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
  background-image:url('/images/hp-bg.png'); background-attachment: fixed; background-size: cover;
}

.hp-hero .container {background-color: #ffffffb2;
  padding: 2%;
  border-radius: 43px;}


.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(61,107,71,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(92,58,30,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 2px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.2;
  color: var(--brand-brown);
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-title em {
  color: var(--brand-primary);
  font-style: normal;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--brand-text-subtle);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--brand-bg);
  border: 1px solid var(--brand-border-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}

.stat-card .stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--brand-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}

.btn-primary:hover {
  background: var(--brand-primary-dark);
  border-color: var(--brand-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61,107,71,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--brand-brown);
  border-color: var(--brand-brown);
}

.btn-secondary:hover {
  background: var(--brand-brown);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(92,58,30,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.btn-outline:hover {
  background: var(--brand-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-small {
  padding: 8px 18px;
  font-size: 0.8rem;
}

.btn-large {
  padding: 16px 36px;
  font-size: 1rem;
}


.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }

.section-bg-white { background: var(--brand-bg); }
.section-bg-warm  { background: var(--brand-page-bg); }
.section-bg-green { background: var(--brand-primary-light); }
.section-bg-brown { background: var(--brand-brown-light); }

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 12px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--brand-primary);
}

.section-eyebrow.left::after { display: none; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--brand-brown);
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-title.large {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--brand-text-subtle);
  max-width: 600px;
  line-height: 1.8;
}

.section-header.center .section-subtitle { margin: 0 auto; }


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--brand-brown);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

.paragraph {
  font-size: 1rem;
  color: var(--brand-text-subtle);
  line-height: 1.85;
  margin-bottom: 20px;
}

.paragraph:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--brand-text);
  font-weight: 300;
}

.text-muted { color: var(--brand-text-muted); }
.text-subtle { color: var(--brand-text-subtle); }
.text-primary { color: var(--brand-primary); }
.text-brown { color: var(--brand-brown); }

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }


.card {
  background: var(--brand-bg);
  border: 1px solid var(--brand-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--brand-primary-light);
}

.card-body { padding: 24px; }

.card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: var(--brand-primary-light);
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 12px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--brand-brown);
  margin-bottom: 10px;
  line-height: 1.35;
}

.card-excerpt {
  font-size: 0.875rem;
  color: var(--brand-text-subtle);
  line-height: 1.7;
  margin-bottom: 16px;
}

.card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--brand-border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-meta {
  font-size: 0.78rem;
  color: var(--brand-text-muted);
}


.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }


.sidebar-box {
  background: var(--brand-bg);
  border: 1px solid var(--brand-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.sidebar-box:last-child { margin-bottom: 0; }

.box-header {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.box-header.brown-header {
  background: linear-gradient(135deg, var(--brand-brown) 0%, #3E2510 100%);
}

.box-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
}

.box-body { padding: 20px; }

.box-list { display: flex; flex-direction: column; gap: 0; list-style: circle; }

.box-list-item {
  border-bottom: 1px solid var(--brand-border-light);
  padding: 14px 0;
}

.box-list-item:last-child { border-bottom: none; padding-bottom: 0; }
.box-list-item:first-child { padding-top: 0; }

.box-link {
  font-size: 0.875rem;
  color: var(--brand-text);
  font-weight: 500;
  display: block;
  line-height: 1.4;
  transition: color var(--transition);
}

.box-link:hover { color: var(--brand-primary); }

.box-meta {
  font-size: 0.75rem;
  color: var(--brand-text-muted);
  margin-top: 4px;
}

.box-empty {
  text-align: center;
  padding: 32px 20px;
  color: var(--brand-text-muted);
  font-size: 0.875rem;
  font-style: italic;
}


.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 20px;
}

.partner-item {
  background: var(--brand-page-bg);
  border: 1px solid var(--brand-border-light);
  border-radius: var(--radius-sm);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  overflow: hidden;
}



.partner-item:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px var(--brand-primary-light);
}

.partner-item img { object-fit: cover;  width: 200px; max-height:50px}

.partner-placeholder {
  font-size: 0.72rem;
  color: var(--brand-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}


.pillar-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.pillar-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pillar-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: background var(--transition);
}

.pillar-item:hover .pillar-icon {
  background: var(--brand-primary);
}

.pillar-item:hover .pillar-icon svg,
.pillar-item:hover .pillar-icon span { filter: brightness(10); }

.pillar-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--brand-brown);
  margin-bottom: 6px;
}

.pillar-item p {
  font-size: 0.875rem;
  color: var(--brand-text-subtle);
  line-height: 1.75;
}


.divider {
  border: none;
  border-top: 1px solid var(--brand-border-light);
  margin: 48px 0;
}

.divider-thick {
  border-top: 3px solid var(--brand-primary);
  width: 48px;
  margin: 16px 0 24px;
}

.divider-thick.center { margin: 16px auto 24px; }


.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--brand-text-muted);
  padding: 16px 0;
}

.breadcrumb a { color: var(--brand-text-muted); }
.breadcrumb a:hover { color: var(--brand-primary); }
.breadcrumb .sep { color: var(--brand-border); }
.breadcrumb .current { color: var(--brand-text-subtle); }


.page-banner {
  background: linear-gradient(135deg, var(--brand-brown-light) 0%, var(--brand-primary-light) 100%);
  padding: 56px 0;
  border-bottom: 1px solid var(--brand-border);
}

.page-banner h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brand-brown);
  margin-bottom: 8px;
}

.page-banner p {
  color: var(--brand-text-subtle);
  font-size: 1.05rem;
}


.cta-band {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.cta-band h2 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  background: #fff;
  color: var(--brand-primary);
  border-color: #fff;
  font-weight: 700;
}

.btn-white:hover {
  background: var(--brand-brown-light);
  border-color: var(--brand-brown-light);
  color: var(--brand-brown);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}


.site-footer {
  background: var(--brand-brown);
  color: rgba(255,255,255,0.82);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.7fr  0.4fr;
  gap: 48px;
  padding-bottom: 48px;
 
}

.footer-brand .footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1) opacity(0.9);
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  max-width: 280px;
}

.footer-slogan {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-top: 12px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  
}

.footer-nav { display: flex; flex-direction: column; gap: 10px; }

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-nav a:hover {
  color: rgba(255,255,255,0.95);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
}

.footer-bottom a:hover { color: rgba(255,255,255,0.85); }

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}


.form-group { margin-bottom: 20px; }

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brand-text);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea,
select {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--brand-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--brand-text);
  background: var(--brand-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(61,107,71,0.12);
}

textarea { resize: vertical; min-height: 120px; }


.mt-0  { margin-top: 0; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.pt-0  { padding-top: 0; }
.pb-0  { padding-bottom: 0; }

.d-flex { display: flex; }
.d-grid { display: grid; }
.d-block { display: block; }
.d-none  { display: none; }

.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

.w-full { width: 100%; }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: 999px; }

.bg-white { background: var(--brand-bg); }
.bg-page  { background: var(--brand-page-bg); }
.bg-green { background: var(--brand-primary-light); }
.bg-brown { background: var(--brand-brown-light); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}


@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}

.animate-fadeInUp    { animation: fadeInUp 0.6s ease both; }
.animate-fadeInDown  { animation: fadeInDown 0.6s ease both; }
.animate-fadeIn      { animation: fadeIn 0.6s ease both; }
.animate-slideInLeft { animation: slideInLeft 0.6s ease both; }
.animate-slideInRight{ animation: slideInRight 0.6s ease both; }

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }


.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }


.ripple-effect { position: relative; overflow: hidden; }
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  background: rgba(255,255,255,0.25);
  pointer-events: none;
}

@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}


:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}


@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr 280px; gap: 36px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-inner   { gap: 40px; }
  .hero-stats   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --container-max: 100%; }

  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--brand-bg);
    border-bottom: 1px solid var(--brand-border);
    box-shadow: var(--shadow-md);
    padding: 16px 24px 24px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.open { display: flex; }

  .nav-list { flex-direction: column; align-items: flex-start; width: 100%; gap: 0; }
  .nav-list li { width: 100%; }
  .nav-list li a { display: block; padding: 12px 8px; }

  .hero-inner  { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats  { grid-template-columns: 1fr 1fr; }
  .hero        { padding: 56px 0 48px; }

  .content-grid { grid-template-columns: 1fr; }
  .sidebar { order: -1; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .cards-grid-3, .cards-grid-4 { grid-template-columns: 1fr 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }

  .section  { padding: 56px 0; }
  .section-lg { padding: 72px 0; }

  .cta-band { padding: 48px 0; }
}

@media (max-width: 480px) {
  .hero-cta  { flex-direction: column; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .cards-grid-3, .cards-grid-4 { grid-template-columns: 1fr; }
  .pillar-row { grid-template-columns: 1fr; }
  .btn-large { width: 100%; justify-content: center; }
}


@media print {
  .site-header, .site-footer, .sidebar, .cta-band { display: none; }
  .content-grid { grid-template-columns: 1fr; }
  body { background: #fff; color: #000; }
}



























/* ============================================================
   LOGO — header & footer sizing overrides
   ============================================================ */
.site-logo img {
  width: 444px;
  object-fit: cover;
  max-height: 77px;
}

.footer-logo {
  width: 444px !important;
  object-fit: cover;
  max-height: 114px !important;
  border-radius: 64px;
  margin: 0% 0 4% 0;
  filter: unset !important;
  height: unset !important;
}

/* ============================================================
   HOMEPAGE HERO — background image + frosted container
   ============================================================ */
.hp-hero {
  background-image: url('/images/hp-bg.png');
  background-attachment: fixed;
  background-size: cover;
}

.hp-hero .container {
  background-color: #ffffffb2;
  padding: 2%;
  border-radius: 43px;
}

/* ============================================================
   FOOTER GRID — 3-column layout override
   ============================================================ */
.footer-grid {
  grid-template-columns: 1.6fr 1.7fr 0.4fr;
}

/* ============================================================
   SIDEBAR — recent posts list style
   ============================================================ */
.box-list {
  list-style: circle;
}

/* ============================================================
   PARTNERS — logo image sizing
   ============================================================ */
.partner-item img {
  object-fit: cover;
  width: 200px;
  max-height: 50px;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-brown) 100%);
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin: 12px 0 16px;
  line-height: 1.2;
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   TWO-COLUMN INFO CARD GRID
   ============================================================ */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .two-col-grid { grid-template-columns: 1fr; }
}

.info-card {
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.info-card:hover {
  box-shadow: 0 8px 28px rgba(61, 107, 71, 0.12);
  transform: translateY(-3px);
}

.info-card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brand-text);
  margin-bottom: 10px;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--brand-text-subtle);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   VALUES LIST
   ============================================================ */
.values-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--brand-bg);
  border-left: 4px solid var(--brand-primary);
  border-radius: 0 10px 10px 0;
  transition: background 0.2s;
}

.value-item:hover { background: #f0f7f1; }

.value-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-text);
  margin-bottom: 6px;
}

.value-item p {
  font-size: 0.875rem;
  color: var(--brand-text-subtle);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   STEPS LIST (contact engagement process)
   ============================================================ */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
  position: relative;
}

.steps-list::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 44px;
  bottom: 44px;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand-primary), transparent);
}

.step-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 20px 0;
  position: relative;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}

.step-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-text);
  margin-bottom: 6px;
  margin-top: 10px;
}

.step-item p {
  font-size: 0.875rem;
  color: var(--brand-text-subtle);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   PROGRAM CARDS
   ============================================================ */
.program-cards {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.program-card {
  display: flex;
  gap: 24px;
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.program-card:hover {
  box-shadow: 0 8px 32px rgba(61, 107, 71, 0.12);
  transform: translateY(-3px);
}

.program-card-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.program-card-body { flex: 1; }

.program-tag {
  display: inline-block;
  background: rgba(61, 107, 71, 0.1);
  color: var(--brand-primary);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.program-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 10px;
}

.program-card-body p {
  font-size: 0.9rem;
  color: var(--brand-text-subtle);
  line-height: 1.75;
  margin-bottom: 16px;
}

.program-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}

.program-highlights li {
  font-size: 0.82rem;
  color: var(--brand-text-subtle);
  padding-left: 16px;
  position: relative;
}

.program-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .program-card { flex-direction: column; }
  .program-highlights { grid-template-columns: 1fr; }
}

/* ============================================================
   GALLERY CAROUSEL
   ============================================================ */
.gallery-carousel-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 48px;
  background: #1a1a1a;
}

.gallery-carousel {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.gallery-slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
  height: 888px;
  background: #1a1a1a;
}

@media (max-width: 768px) {
  .gallery-slide { height: 300px; }
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.88;
  transition: opacity 0.4s ease;
}

.gallery-slide.active img { opacity: 1; }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
}

.gallery-caption span {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.carousel-btn:hover { background: rgba(255, 255, 255, 0.3); }
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.carousel-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* ============================================================
   404 ERROR PAGE
   ============================================================ */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: var(--brand-page-bg);
}

.error-page-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.error-tree {
  font-size: 5rem;
  margin-bottom: 16px;
  display: block;
  animation: sway 4s ease-in-out infinite;
}

@keyframes sway {
  0%, 100% { transform: rotate(-3deg); }
  50%       { transform: rotate(3deg); }
}

.error-code {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 700;
  color: var(--brand-primary);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: -16px;
  letter-spacing: -4px;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 16px;
}

.error-message {
  font-size: 1rem;
  color: var(--brand-text-subtle);
  line-height: 1.75;
  margin-bottom: 36px;
}

.error-links {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--brand-border);
}

.error-links p {
  font-size: 0.875rem;
  color: var(--brand-text-subtle);
  margin-bottom: 14px;
}

.error-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.error-links ul li a {
  font-size: 0.9rem;
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 500;
}

.error-links ul li a:hover { text-decoration: underline; }

/* ============================================================
   UTILITY ADDITIONS
   ============================================================ */
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }

