@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-dark:  #5a1a6b;
  --green-mid:   #7b2490;
  --green-light: #9b3ab0;
  --gold:        #c9a87a;
  --gold-light:  #dfc09a;
  --white:       #ffffff;
  --off-white:   #faf7fc;
  --gray-100:    #f2eef5;
  --gray-300:    #c8c0d0;
  --gray-500:    #7a7080;
  --gray-700:    #3d3245;
  --text:        #1a1020;
  --radius:      10px;
  --shadow:      0 2px 16px rgba(90,26,107,0.07);
  --shadow-lg:   0 8px 40px rgba(90,26,107,0.13);
  --shadow-xl:   0 20px 60px rgba(90,26,107,0.17);
  --transition:  0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  font-family: inherit;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
  box-shadow: 0 4px 18px rgba(201,168,122,0.38);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,122,0.45);
}

.btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-outline-dark {
  border-color: var(--green-mid);
  color: var(--green-mid);
}
.btn-outline-dark:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--green-dark);
  padding: 0 24px;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

nav.scrolled {
  background: rgba(90, 26, 107, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 28px rgba(0,0,0,0.22);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 44px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  border-radius: 6px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}

.nav-logo-tag {
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: rgba(255,255,255,0.72);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-links a:not(.nav-cta):hover { color: var(--white); }
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active:not(.nav-cta)::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--gold);
  color: var(--green-dark) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  box-shadow: 0 2px 14px rgba(201,168,122,0.35);
  transition: all 0.2s ease !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--green-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201,168,122,0.45) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
}

.hero-slide.active { opacity: 0.26; }

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(90,26,107,0.7) 0%,
    rgba(90,26,107,0.12) 55%,
    rgba(44,6,60,0.6) 100%
  );
  pointer-events: none;
}

.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hero-dot:hover {
  background: rgba(255,255,255,0.65);
  transform: scale(1.2);
}

.hero-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

.hero-dot.active:hover {
  background: var(--gold-light);
}

/* ===== HERO ARROWS ===== */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  padding: 0;
}

.hero-arrow:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-50%) scale(1.1);
}

.hero-arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.hero-prev { left: 28px; }
.hero-next { right: 28px; }

@media (max-width: 600px) {
  .hero-prev { left: 14px; }
  .hero-next { right: 14px; }
  .hero-arrow { width: 42px; height: 42px; }
}

.hero-inner {
  position: relative;
  z-index: 2; /* above .hero::after (z-index:1) */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px 24px;
  max-width: 840px;
  margin: 0 auto;
  width: 100%;
}

.hero-content { color: var(--white); }

.hero-content .section-label {
  margin-bottom: 24px;
  justify-content: center;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  font-weight: 900;
  margin-bottom: 28px;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.76);
  margin-bottom: 44px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.hero-stats {
  display: flex;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  justify-content: center;
  width: 100%;
}

.hero-stats > div {
  flex: 1;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.hero-stats > div:last-child { border-right: none; }

.hero-stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.52);
  margin-top: 7px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== ABOUT ===== */
.about {
  padding: 128px 0;
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 520px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 74%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  position: absolute;
  z-index: 1;
}

.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 56%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
  z-index: 2;
}

.about-images::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px;
  width: 74%;
  height: 400px;
  border: 2px solid rgba(201,168,122,0.3);
  border-radius: 20px;
  z-index: 0;
}

.about-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text);
  letter-spacing: -0.025em;
}

.about-content p {
  color: var(--gray-500);
  margin-bottom: 18px;
  font-size: 1.02rem;
  line-height: 1.78;
}

.about-content p:last-of-type { margin-bottom: 40px; }

/* ===== PILLARS ===== */
.pillars {
  padding: 112px 0;
  background: var(--off-white);
}

.pillars-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.pillars-header .section-label { justify-content: center; }

.pillars-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.pillars-header p { color: var(--gray-500); font-size: 1.05rem; line-height: 1.75; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 30px;
  box-shadow: var(--shadow);
  transition: all 0.28s ease;
  border: 1px solid rgba(90,26,107,0.06);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--gold));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(90,26,107,0.08);
}

.pillar-card:hover::before { opacity: 1; }

.pillar-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.4rem;
  box-shadow: 0 4px 14px rgba(90,26,107,0.22);
}

.pillar-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.pillar-card p {
  color: var(--gray-500);
  font-size: 0.92rem;
  line-height: 1.68;
}

.pillar-card ul {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillar-card ul li {
  font-size: 0.875rem;
  color: var(--gray-500);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.pillar-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ===== VALUES ===== */
.values {
  padding: 112px 0;
  background: var(--green-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.values::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,36,144,0.35) 0%, transparent 70%);
  pointer-events: none;
}

.values-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.values-header .section-label { justify-content: center; }

.values-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.values-header p { color: rgba(255,255,255,0.62); font-size: 1.05rem; line-height: 1.75; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  z-index: 1;
}

.value-item {
  padding: 44px 40px;
  background: transparent;
  transition: background 0.25s ease;
}

.value-item:hover { background: rgba(255,255,255,0.05); }

.value-number {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0.85;
}

.value-item h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.value-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.56);
  line-height: 1.72;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 112px 0;
  background: var(--white);
}

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

.gallery-header .section-label { justify-content: center; }

.gallery-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}

.gallery-header p { color: var(--gray-500); font-size: 1.02rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 12px;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(90,26,107,0.45) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.07); }

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

/* ===== LEADERSHIP ===== */
.leadership {
  padding: 112px 0;
  background: var(--off-white);
}

.leadership-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 88px;
  align-items: center;
}

.leadership-img {
  position: relative;
}

.leadership-img img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

.leadership-img::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px; right: 18px; bottom: 18px;
  border: 2px solid var(--gold);
  border-radius: 20px;
  opacity: 0.5;
  z-index: 0;
}

.leadership-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.025em;
}

.leadership-title {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.leadership-content p {
  color: var(--gray-500);
  font-size: 1.02rem;
  margin-bottom: 18px;
  line-height: 1.78;
}

.leadership-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.tag {
  padding: 8px 18px;
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-mid);
  transition: all 0.2s ease;
}

.tag:hover {
  border-color: var(--green-mid);
  background: rgba(123,36,144,0.05);
}

/* ===== COMMUNITY ===== */
.community {
  padding: 112px 0;
  background: var(--green-mid);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.community::before {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90,26,107,0.5) 0%, transparent 70%);
  pointer-events: none;
}

.community::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.community h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}

.community > .container > p {
  color: rgba(255,255,255,0.7);
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto 64px;
  line-height: 1.75;
}

.community-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.community-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 32px 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.28s ease;
}

.community-card:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-5px);
}

.community-card-icon { font-size: 1.9rem; margin-bottom: 18px; }

.community-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.community-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.68;
}

/* ===== CONTACT ===== */
.contact {
  padding: 112px 0;
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}

.contact-info p {
  color: var(--gray-500);
  font-size: 1.02rem;
  margin-bottom: 44px;
  line-height: 1.78;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  background: var(--off-white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid var(--gray-100);
}

.contact-detail-label {
  font-size: 0.7rem;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.contact-detail-value {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
}

.contact-form {
  background: var(--off-white);
  border-radius: 24px;
  padding: 44px;
  border: 1px solid var(--gray-100);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: all 0.2s ease;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(123,36,144,0.08);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.contact-form .btn { width: 100%; justify-content: center; }

/* ===== FOOTER ===== */
footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 72px 0 36px;
}

.footer-top {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 36px;
}

.footer-brand {
  flex: 0 0 280px;
}

#footer-cols {
  flex: 1;
  display: flex;
  gap: 40px;
}

.footer-col { flex: 1; }

.footer-brand p {
  color: rgba(255,255,255,0.52);
  font-size: 0.88rem;
  margin: 18px 0 24px;
  max-width: 260px;
  line-height: 1.78;
}

.footer-social { display: flex; gap: 10px; }

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.52);
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.32);
}

/* ===== NAV ACTIVE LINK ===== */
.nav-links a.active { color: var(--white); }

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, #3d0d50 100%);
  padding: 148px 0 80px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,122,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,36,144,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}

.page-banner .container { position: relative; z-index: 1; }

.page-banner .section-label {
  margin-bottom: 20px;
  justify-content: center;
}

.page-banner h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}

.page-banner p {
  color: rgba(255,255,255,0.66);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.72;
}

/* ===== SHOP ===== */
.shop-section {
  padding: 112px 0;
  background: var(--white);
}

.shop-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.shop-header .section-label { justify-content: center; }

.shop-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.shop-header p { color: var(--gray-500); font-size: 1.05rem; line-height: 1.75; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 44px 36px 40px;
  text-align: center;
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--gold));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(90,26,107,0.08);
}

.product-card:hover::before { opacity: 1; }

.product-badge {
  position: absolute;
  top: 20px; right: 20px;
  padding: 5px 14px;
  background: var(--gold);
  color: var(--green-dark);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-badge.coming-soon {
  background: var(--gray-100);
  color: var(--gray-500);
}

.product-img-wrap {
  margin: -44px -36px 28px;
  height: 240px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.04);
}

.product-icon {
  font-size: 3.2rem;
  margin-bottom: 20px;
  line-height: 1;
}

.product-category {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.product-name {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.product-description {
  color: var(--gray-500);
  font-size: 0.92rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ===== CLIENTS ===== */
.clients {
  padding: 100px 0;
  background: var(--white);
}

.clients-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.clients-header .section-label { justify-content: center; }

.clients-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.clients-header p {
  color: var(--gray-500);
  font-size: 1.02rem;
  line-height: 1.75;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.client-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  transition: all 0.25s ease;
}

.client-card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.client-monogram {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.client-category {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 3px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .clients-grid { grid-template-columns: 1fr; }
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-dark) 100%);
  padding: 88px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.cta-strip .container { position: relative; z-index: 1; }

.cta-strip h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}

.cta-strip p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  font-size: 1.08rem;
  line-height: 1.72;
}

/* ===== GALLERY PAGE — expanded grid ===== */
.gallery-grid-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pillars-grid     { grid-template-columns: repeat(2, 1fr); }
  .values-grid      { grid-template-columns: repeat(2, 1fr); }
  .community-cards  { grid-template-columns: repeat(2, 1fr); }
  .leadership-inner { grid-template-columns: 1fr; }
  .leadership-img   { max-width: 420px; margin: 0 auto; }

  .footer-top       { flex-wrap: wrap; gap: 40px; }
  .footer-brand     { flex: 0 0 100%; }
  #footer-cols      { flex: 1; min-width: 0; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--green-dark);
    padding: 20px 24px 28px;
    gap: 18px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero-stats          { flex-direction: column; gap: 0; }
  .hero-stats > div    { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 18px 0; }
  .hero-stats > div:last-child { border-bottom: none; }

  .about-inner         { grid-template-columns: 1fr; }
  .about-images        { height: 300px; margin-bottom: 24px; }
  .about-img-main      { height: 240px; }
  .about-img-secondary { display: none; }
  .about-images::before { display: none; }

  .pillars-grid        { grid-template-columns: 1fr; }
  .values-grid         { grid-template-columns: 1fr; gap: 0; }

  .gallery-grid        { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item.large  { grid-column: span 1; grid-row: span 1; }
  .gallery-grid-full   { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }

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

  .contact-inner       { grid-template-columns: 1fr; }
  .contact-form        { padding: 28px 20px; }
  .form-row            { grid-template-columns: 1fr; }

  .footer-top          { flex-direction: column; gap: 32px; }
  .footer-brand        { flex: none; }
  #footer-cols         { flex-direction: column; gap: 28px; }
  .footer-bottom       { flex-direction: column; gap: 8px; text-align: center; }
}
