:root {
  --green: #2D6A2F;
  --green-light: #4A9E4D;
  --green-pale: #EAF3DE;
  --gold: #C89B3C;
  --gold-pale: #FFF8E7;
  --dark: #111710;
  --mid: #2C3529;
  --text: #1C251A;
  --muted: #5A6B58;
  --border: rgba(45,106,47,0.15);
  --white: #FFFFFF;
  --off: #F5F7F4;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

nav {
  position: fixed;
  top: 20px;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 0 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center; 
  width: 100%;
  max-width: 1400px;
  position: relative;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  position: absolute;
  left: 0;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-brand span {
  color: #1B3318; 
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-menu {
  background: rgba(17, 23, 16, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 6px 6px 6px 24px;
  gap: 30px;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #FFFFFF;
}

.nav-cta {
  background: #333;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  transition: background 0.3s;
}

.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4)), url('team.jpeg') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 5% 100px;
  position: relative;
}

.hero-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 40px;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-sub {
  max-width: 450px;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
}

.btn-primary {
  background: #333;
  color: #fff;
  padding: 18px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 1px;
  transition: 0.3s;
}

.btn-arrow {
  background: #d1f5a9;
  color: #000;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.4rem;
  transition: 0.3s;
}
.hero-title em { font-style: italic; color: #a8d59c; }
.hero-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.hero-sub { max-width: 480px; font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,0.65); font-weight: 300; }
.hero-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hero-actions .ticker-label {
  flex-shrink: 0; font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  background: var(--green); padding: 4px 12px; border-radius: 4px;
}
.btn-primary {
  background: var(--white); color: var(--dark);
  padding: 14px 28px; border-radius: 8px;
  text-decoration: none; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.5px;
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--green-pale); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.85);
  padding: 14px 28px; border-radius: 8px;
  text-decoration: none; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.5px;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: #fff; color: #fff; }

.ticker {
  background: var(--green); color: #fff;
  padding: 13px 5%;
  display: flex; align-items: center; gap: 20px;
  overflow: hidden;
}
.ticker-label {
  flex-shrink: 0; font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  background: rgba(255,255,255,0.15); padding: 4px 12px; border-radius: 4px;
}
.ticker-items { display: flex; gap: 40px; animation: scroll 18s linear infinite; white-space: nowrap; }
.ticker-items span { font-size: 0.82rem; opacity: 0.85; }
.ticker-items span::before { content: "✦  "; opacity: 0.5; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.section { padding: 100px 5%; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--green); font-weight: 500; margin-bottom: 20px;
}
.section-label::before { content: ''; width: 20px; height: 2px; background: var(--green); display: block; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.15; color: var(--dark);
  max-width: 680px;
}

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 560px; }
.about-visual {
  background: linear-gradient(rgba(17, 23, 16, 0.7), rgba(17, 23, 16, 0.7)), url('mountain.jpg') no-repeat center center/cover;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 50px;
}
.about-bg-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(45,106,47,0.5) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(200,155,60,0.2) 0%, transparent 50%);
}
.about-quote {
  position: relative; z-index: 1;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400; font-style: italic;
  color: #fff; line-height: 1.4;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
}
.about-text-panel {
  background: var(--off);
  padding: 60px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-text-panel p { font-size: 1rem; line-height: 1.8; color: var(--muted); margin-bottom: 20px; }
.values-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.value-pill {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 18px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 500; color: var(--green);
}

.vm-section { background: var(--dark); padding: 90px 5%; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 60px; }
.vm-card {
  background: var(--mid);
  padding: 50px;
  position: relative; overflow: hidden;
}
.vm-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}
.vm-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; font-weight: 900;
  color: rgba(255,255,255,0.06);
  position: absolute; top: 20px; right: 30px; line-height: 1;
}
.vm-tag {
  font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 16px; display: block;
}
.vm-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400; color: #fff; line-height: 1.5;
}

.objectives-section { background: var(--white); padding: 100px 5%; }
.obj-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 60px; }
.obj-card {
  border: 1px solid var(--border);
  border-radius: 12px; padding: 36px 30px;
  transition: all 0.3s; background: var(--white);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s, box-shadow 0.3s, border-color 0.3s;
}
.obj-card.visible { opacity: 1; transform: translateY(0); }
.obj-card:hover { border-color: var(--green); box-shadow: 0 8px 30px rgba(45,106,47,0.1); }
.obj-icon {
  width: 46px; height: 46px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.3rem;
}
.obj-card p { font-size: 0.95rem; line-height: 1.7; color: var(--muted); }

.programs-section {
  background: var(--dark);
  padding: 100px 5%;
}
.programs-section .section-title { color: #fff; }
.programs-section .section-label { color: #a8d59c; }
.programs-section .section-label::before { background: #a8d59c; }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.prog-card {
  background: var(--mid); border-radius: 12px;
  padding: 36px 30px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s;
}
.prog-card:hover { border-color: rgba(45,106,47,0.4); }
.prog-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 900;
  color: rgba(255,255,255,0.08); margin-bottom: 20px; display: block;
}
.prog-card h3 {
  font-size: 1.05rem; font-weight: 500; color: #fff;
  margin-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 16px;
}
.prog-card ul { list-style: none; }
.prog-card li {
  font-size: 0.88rem; color: rgba(255,255,255,0.55);
  padding: 6px 0; display: flex; align-items: flex-start; gap: 10px;
}
.prog-card li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

.beneficiaries-section { background: var(--off); padding: 100px 5%; }
.bene-grid { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 60px; }
.bene-card {
  flex: 1; min-width: 160px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 36px 20px; text-align: center;
  transition: all 0.3s;
}
.bene-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(45,106,47,0.12); }
.bene-card .bene-icon { font-size: 1.8rem; margin-bottom: 14px; }
.bene-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.bene-card p { font-size: 0.8rem; color: var(--muted); }
.beneficiaries-section .bene-card {
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  background-color: var(--dark);
  text-align: left;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.beneficiaries-section .bene-card h3,
.beneficiaries-section .bene-card p {
  color: #FFFFFF !important;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.beneficiaries-section .bene-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.beneficiaries-section .bene-card p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.bene-card-youth {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.8)), url('youth.jpeg');
}

.bene-card-children {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.8)), url('children.jpg');
}

.bene-card-dropouts {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.8)), url('dropout.jpg');
}

.bene-card-unemployed {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.8)), url('unemployment.jpg');
}

.bene-card-women {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.8)), url('justice.jpg');
}

.approach-section { background: var(--green); padding: 90px 5%; }
.approach-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.approach-section .section-label { color: rgba(255,255,255,0.6); }
.approach-section .section-label::before { background: rgba(255,255,255,0.6); }
.approach-section .section-title { color: #fff; }
.approach-text p { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.75); margin-top: 24px; }
.collab-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.collab-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 16px 20px;
  font-size: 0.88rem; color: rgba(255,255,255,0.8);
  display: flex; align-items: center; gap: 10px;
}
.collab-item::before { content: '✓'; font-size: 0.75rem; color: var(--gold); }

#contactForm {
    max-width: 100%;
}

.comment-section .section-title {
    margin-left: auto;
    margin-right: auto;
}

.comment-subtitle {
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.comment-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.comment-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.comment-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.recent-comments-list {
    max-width: 800px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-card {
    background: #fff;
    border-left: 4px solid #2D6A2F;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: left;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.comment-card p {
    color: #444;
    line-height: 1.5;
}

.comment-section {
    padding: 100px 5%;
    background: var(--white);
    text-align: center; 
}

.comment-section .section-label {
    justify-content: center;
    width: 100%;
}

.comment-main-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 40px auto 0;
    align-items: start;
}

.comment-form-container, 
.recent-comments-list {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: left; 
}

.comment-section .section-title {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .comment-section .section-title {
        margin-left: 0;
        margin-right: 0;
    }
}

.merchandise-section {
    padding: 100px 5%;
    background: var(--white);
}

.merchandise-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.merchandise-section .section-label {
    justify-content: center;
    width: 100%;
}

.merchandise-section .section-title {
    margin: 0 auto 20px;
}

.merchandise-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--off);
    border: 1px solid var(--border);
    aspect-ratio: 1 / 1;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-image-container:hover .product-image {
    transform: scale(1.03);
}

.image-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(17, 23, 16, 0.75);
    backdrop-filter: blur(4px);
    color: var(--white);
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.product-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 24px;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--mid);
}

.feature-item i {
    color: var(--green);
}

.pricing-section {
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
}

.shipping-info {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 4px;
}

.action-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--dark);
    color: var(--white);
    border-radius: 12px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
}

.order-btn:hover {
    background: var(--green);
    transform: translateY(-2px);
}

.support-text {
    font-size: 0.8rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
    font-style: italic;
}

.support-text i {
    color: var(--gold);
}

.ordering-info {
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
}

.ordering-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 30px;
}

.ordering-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: start;
}

.step-number {
    width: 36px;
    height: 36px;
    background: var(--green-pale);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
    font-weight: 500;
}

.step-content p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .product-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .merchandise-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    .comment-section {
        text-align: left; 
    }

    .comment-section .section-label {
        justify-content: flex-start;
    }

    .comment-subtitle {
        margin-left: 0; 
    }

    .comment-main-layout {
        grid-template-columns: 1.2fr 1fr;
    }

    .comment-form-container, 
    .recent-comments-list {
        margin: 0;
    }
}

.privacy-note {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
}

.comment-btn {
  background: #4A9E4D;
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.comment-btn:hover {
  background: var(--green);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .comment-form-row { grid-template-columns: 1fr; }
  .comment-footer { flex-direction: column; gap: 20px; }
}

.field-group input,
.field-group textarea,
.field-group select {
    background: var(--off);
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
    background: var(--white);
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(45,106,47,0.1);
}

.submit-btn {
    border-radius: 12px;
    padding: 18px;
    font-weight: 600;
}
.contact-section { background: var(--white); padding: 100px 5%; }
.contact-info-side h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--dark); margin-bottom: 16px;
}
.contact-info-side p { font-size: 0.97rem; line-height: 1.8; color: var(--muted); margin-bottom: 32px; }
.impact-goals { background: var(--dark); border-radius: 12px; padding: 32px; }
.impact-goals h4 { font-size: 0.72rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.impact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.impact-item::before { content: '→'; color: #a8d59c; flex-shrink: 0; font-size: 0.9rem; margin-top: 2px; }
.impact-item span { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.form-side {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  margin-top: -120px; 
  position: relative;
  z-index: 10;
}

.field-group { margin-bottom: 20px; }
.field-group label { display: block; font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.field-group input,
.field-group textarea,
.field-group select {
  width: 100%; padding: 13px 16px;
  background: var(--off); border: 1px solid var(--border);
  border-radius: 8px; font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; color: var(--dark);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,106,47,0.1);
}
.field-group textarea { resize: vertical; min-height: 130px; }
.submit-btn {
  width: 100%; padding: 15px;
  background: var(--dark); color: #fff;
  border: none; border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s;
  margin-top: 8px;
}
.submit-btn:hover { background: var(--green); }

footer {
  background: var(--dark);
  padding: 70px 5% 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.footer-brand .monogram-lg {
  width: 48px; height: 48px;
  background: var(--green); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900; font-size: 16px; color: #fff; letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 260px; }
.footer-motto { font-size: 0.75rem; color: var(--gold); letter-spacing: 1.5px; margin-top: 12px; font-style: italic; }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { text-decoration: none; font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-col .contact-detail { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 10px; line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-reg { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #1B3318;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-hidden {
  transform: translateY(-110%);
}

@media (max-width: 900px) {
  nav {
    padding: 15px 5%;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    justify-content: space-between;
    top: 0;
  }

  .nav-container {
    justify-content: space-between;
    position: static;
  }

  .nav-brand {
    position: static;
    z-index: 1002;
  }

  .nav-brand span {
    color: #1B3318 !important;
  }

  .logo-img {
    height: 35px;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
    z-index: 1100;
  }

  .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background: #111710;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    transition: 0.4s ease;
    border-radius: 0;
    border: none;
    z-index: 1050;
    backdrop-filter: none;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .nav-links a {
    font-size: 1.2rem;
    color: #fff;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    padding: 18px;
    background: var(--green);
    font-size: 1rem;
    color: #fff;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .about-grid, 
  .vm-grid, 
  .approach-inner, 
  .contact-grid, 
  .footer-grid, 
  .programs-grid { 
    grid-template-columns: 1fr; 
  }

  .form-side {
    margin-top: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .vm-grid {
    gap: 2px;
  }
}
