:root {
  --primary: #1f6f3e;
  --primary-dark: #164d2c;
  --primary-light: #2d8a52;
  --secondary: #0d0d0d;
  --dark: #141414;
  --grey: #2d2d2d;
  --light-grey: #64748b;
  --accent: #c9a227;
  --accent-soft: rgba(201, 162, 39, 0.2);
  --white: #ffffff;
  --off-white: #f1f5f9;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 60px rgba(31, 111, 62, 0.15);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header - light */
.header {
  background: var(--white);
  padding: 0.75rem 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.header .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.header-logo {
  width: 100%;
  max-width: 180px;
  height: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.brand-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--secondary);
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--grey) !important;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: var(--transition);
}

.header .navbar-nav .nav-link:hover {
  color: var(--primary) !important;
}

.header .navbar-nav .nav-link:hover::after {
  width: 100%;
}

.header .navbar-nav .nav-link.active {
  color: var(--white) !important;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 100px;
  padding: 0.55rem 1.25rem !important;
  box-shadow: 0 4px 16px rgba(31, 111, 62, 0.3);
}

.header .navbar-nav .nav-link.active::after {
  display: none;
}

.header .navbar-nav .btn-nav-cta {
  background: transparent !important;
  color: var(--grey) !important;
  padding: 0.5rem 0.25rem;
  border-radius: 0;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  border: none !important;
  box-shadow: none !important;
}

.header .navbar-nav .btn-nav-cta:hover,
.header .navbar-nav .btn-nav-cta:focus,
.header .navbar-nav .btn-nav-cta:active {
  background: transparent !important;
  color: var(--primary) !important;
  border: none !important;
  box-shadow: none !important;
  transform: none;
}
  color: var(--white) !important;
}

.navbar-toggler {
  border-color: rgba(0, 0, 0, 0.15);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(13, 13, 13, 0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(31, 111, 62, 0.7) 0%, rgba(13, 13, 13, 0.82) 45%, rgba(0, 0, 0, 0.92) 100%);
}

.hero-gradient-edge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.4), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem 5rem;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 100px;
  animation: fadeInDown 0.9s ease both;
}

.badge-dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-title-line {
  display: block;
  animation: fadeInUp 0.9s ease both;
}

.hero-title-line:nth-child(1) {
  animation-delay: 0.1s;
}

.hero-title-accent {
  background: linear-gradient(90deg, var(--accent), #e8c547);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.2s;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.25rem;
  font-weight: 400;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.9s ease 0.3s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
  animation: fadeInUp 0.9s ease 0.4s both;
}

.btn-primary-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white) !important;
  padding: 1rem 1.85rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(31, 111, 62, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(31, 111, 62, 0.45);
  color: var(--white) !important;
}

.btn-arrow {
  transition: transform var(--transition);
}

.btn-primary-cta:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-secondary-cta {
  background: transparent;
  color: var(--white) !important;
  padding: 1rem 1.85rem;
  border-radius: 100px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: var(--transition);
  text-decoration: none;
}

.btn-secondary-cta:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeIn 1s ease 1s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

.scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Inner pages */
.inner-page-main {
  padding-top: 74px;
}

.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  text-align: center;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.page-hero .hero-badge {
  margin-left: auto;
  margin-right: auto;
}

.page-hero .hero-title {
  margin-bottom: 1rem;
}

.page-hero .hero-subtitle {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
  pointer-events: none;
}

.page-hero-about {
  background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600&q=80');
}

.page-hero-members {
  background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1600&q=80');
}

.page-hero-events {
  background-image: url('https://images.unsplash.com/photo-1475721027785-f74eccf877e2?w=1600&q=80');
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(31, 111, 62, 0.75), rgba(13, 13, 13, 0.82));
}

@media (max-width: 991px) {
  .page-hero {
    min-height: 46vh;
  }

  .page-hero .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media (max-width: 767px) {
  .page-hero {
    min-height: 42vh;
  }

  .page-hero .container {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .page-hero .hero-subtitle {
    max-width: 100%;
  }
}

/* Sections */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--secondary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-text {
  color: var(--light-grey);
  margin-bottom: 1.5rem;
  max-width: 520px;
  font-size: 1.05rem;
}

/* Why Join */
.why-join {
  background: var(--off-white);
}

.about-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.about-panel-media {
  min-height: 100%;
}

.about-panel-content {
  padding: 1rem 1rem 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  font-size: 0.9rem;
  color: var(--grey);
}

.about-highlight-item i {
  color: var(--primary);
}

.section-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(31, 111, 62, 0.06) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.why-join-visual {
  position: relative;
}

.why-join-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-join-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.why-join-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 40%;
  height: 60%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.9;
}

.why-join-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: var(--white);
  border-radius: 14px;
  font-weight: 500;
  color: var(--grey);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  max-width: 380px;
}

.feature-pill:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(31, 111, 62, 0.2);
}

.feature-icon {
  color: var(--primary);
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  min-width: 2rem;
}

.btn-with-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Stats */
.stats-section {
  background: linear-gradient(165deg, var(--primary-dark) 0%, #0a1f12 50%, var(--secondary) 100%);
  padding: 5rem 0;
  overflow: hidden;
}

.stats-bg-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.stat-card {
  position: relative;
}

.stat-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.35rem;
}

.stat-card-inner {
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.stat-card:hover .stat-card-inner {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 162, 39, 0.25);
  transform: translateY(-4px);
}

.stat-card-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--accent);
  display: inline;
  letter-spacing: -0.02em;
}

.stat-card-suffix {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
}

.stat-card-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.stat-card-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
  margin: 0 auto;
}

/* Gallery */
.gallery-section {
  background: var(--white);
}

.gallery-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1.25rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

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

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

.gallery-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 111, 62, 0.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: var(--transition-slow);
}

.gallery-overlay span {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  transform: translateY(12px);
  transition: transform var(--transition-slow);
}

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

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

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

@media (max-width: 991px) {
  .about-panel {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .about-panel-content {
    padding: 0.5rem 0.5rem 0.25rem;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .gallery-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item-lg {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery-item-wide {
    grid-column: span 2;
  }
}

@media (max-width: 575px) {
  .gallery-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-item-lg,
  .gallery-item-wide {
    grid-column: span 1;
  }
}

/* Visit - Experience a Meeting */
.visit-section {
  padding: 0;
  min-height: 640px;
  position: relative;
  overflow: hidden;
}

.visit-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.visit-panel {
  position: relative;
  display: flex;
  align-items: center;
  padding: 3rem 2.5rem;
}

.visit-panel--content {
  background: linear-gradient(165deg, var(--primary-dark) 0%, var(--secondary) 100%);
  color: var(--white);
}

.visit-panel-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 120px;
  background: linear-gradient(180deg, var(--accent), transparent);
  border-radius: 0 0 4px 4px;
}

.visit-panel-inner {
  max-width: 480px;
  width: 100%;
}

.section-tag--light {
  color: rgba(255, 255, 255, 0.7);
}

.visit-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.visit-lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.visit-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 2.25rem;
}

.visit-benefits li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.visit-benefits li:last-child {
  border-bottom: none;
}

.visit-benefit-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(201, 162, 39, 0.25);
  color: var(--accent);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.visit-form-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  color: var(--secondary);
}

.visit-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.visit-form .form-control {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
}

.visit-form .form-floating > .form-control {
  min-height: calc(3.5rem + 2px);
  height: calc(3.5rem + 2px);
  line-height: 1.25;
  padding: 1rem 0.75rem;
}

.visit-form .form-floating > .form-control:focus,
.visit-form .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.visit-form .form-floating > label {
  color: var(--light-grey);
  padding: 1rem 0.75rem;
}

.visit-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.visit-form-privacy.form-check,
.apply-form-privacy.form-check {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.35rem 0.5rem;
  padding: 0;
  margin: 0 0 1rem;
  min-height: 0;
}

.visit-form-privacy.form-check > small.text-danger,
.visit-form-privacy.form-check > [data-client-error],
.apply-form-privacy.form-check > small.text-danger,
.apply-form-privacy.form-check > [data-client-error] {
  flex: 0 0 100%;
  width: 100%;
  margin-top: 0.15rem;
  padding-left: calc(1.1em + 0.5rem);
}

.visit-form-privacy .form-check-input,
.apply-form-privacy .form-check-input {
  float: none;
  margin: 0;
  flex-shrink: 0;
  width: 1.1em;
  height: 1.1em;
}

.visit-form-privacy .form-check-label,
.apply-form-privacy .form-check-label {
  color: var(--secondary);
  line-height: 1.4;
  padding: 0;
  margin: 0;
  flex: 1;
}

.visit-form-privacy .form-check-label a,
.apply-form-privacy .form-check-label a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.captcha-wrap {
  margin-bottom: 1rem;
}

.recaptcha-wrap {
  overflow: hidden;
}

.recaptcha-wrap .g-recaptcha {
  transform-origin: left top;
}

.visit-form-full {
  margin-bottom: 1.25rem;
}

.visit-textarea {
  min-height: 88px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 0.85rem 1rem;
  resize: vertical;
}

.visit-btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white) !important;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(31, 111, 62, 0.35);
}

.visit-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(31, 111, 62, 0.45);
  color: var(--white) !important;
}

.visit-btn-submit .btn-arrow {
  transition: transform var(--transition);
}

.visit-btn-submit:hover .btn-arrow {
  transform: translateX(4px);
}

.visit-panel--visual {
  position: relative;
  padding: 0;
  min-height: 640px;
}

.visit-visual-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1200&q=80') center/cover;
}

.visit-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(31, 111, 62, 0.4) 0%, transparent 50%);
}

.visit-visual-cut {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-dark), transparent);
  clip-path: polygon(0 0, 100% 0, 0 100%, 0 0);
  pointer-events: none;
}

.visit-visual-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  padding: 0.85rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: right;
}

.visit-badge-location {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
}

.visit-badge-time {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 991px) {
  .visit-section-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .visit-panel--content {
    padding: 2.5rem 1.5rem;
    order: 1;
  }

  .visit-panel--visual {
    min-height: 320px;
    order: 0;
  }

  .visit-visual-cut {
    width: 100%;
    height: 60px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    background: linear-gradient(180deg, var(--primary-dark), transparent);
  }

  .visit-form-row {
    grid-template-columns: 1fr;
  }
}

/* Team - Leadership */
.team-section {
  background: var(--off-white);
  padding: 5rem 0 5.5rem;
}

.team-header {
  text-align: center;
  margin-bottom: 3rem;
}

.team-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--secondary);
  margin: 0.5rem 0 0.5rem;
  letter-spacing: -0.02em;
}

.team-desc {
  color: var(--light-grey);
  font-size: 1.05rem;
  margin: 0;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.team-card {
  margin: 0;
}

.team-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.team-card .insight-link {
  margin-top: 0.35rem;
  display: inline-flex;
}

.team-card-link:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.team-card-link:hover .team-card-name {
  color: var(--primary);
}

.team-card-photo {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--off-white);
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card-link:hover .team-card-photo img {
  transform: scale(1.05);
}

.team-card-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(31, 111, 62, 0.35);
  line-height: 1.2;
}

.team-card-text {
  padding: 1.35rem 1.25rem;
}

.team-card-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--secondary);
  margin: 0 0 0.25rem;
  transition: color 0.25s ease;
}

.team-card-role {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.02em;
}

.team-cta {
  text-align: center;
}

.team-cta .btn-primary-cta {
  padding: 0.85rem 1.6rem;
}

@media (max-width: 991px) {
  .team-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 575px) {
  .team-section {
    padding: 4rem 0 4.5rem;
  }

  .team-header {
    margin-bottom: 2rem;
  }

  .team-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }
}

/* Insights */
.insights-section {
  background: var(--off-white);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.insight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.insight-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.insight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.insight-card:hover .insight-img img {
  transform: scale(1.06);
}

.insight-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insight-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.65rem;
}

.insight-body h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.insight-body p {
  font-size: 0.9rem;
  color: var(--light-grey);
  margin-bottom: 1rem;
  flex: 1;
}

.insight-link {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.insight-arrow {
  transition: transform var(--transition);
}

.insight-card:hover .insight-arrow {
  transform: translateX(4px);
}

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

.page-hero-blog {
  background-image: url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?w=1600&q=80');
  background-size: cover;
  background-position: center;
}

.blog-hero-meta {
  font-size: 0.95rem;
  opacity: 0.92;
  margin-bottom: 0;
}

.blog-hero-dot {
  margin: 0 0.5rem;
  opacity: 0.7;
}

.blog-article-section {
  background: var(--off-white);
}

.blog-article-shell {
  max-width: 720px;
  margin: 0 auto;
}

.blog-article-lead {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--dark);
  margin-bottom: 2rem;
  font-weight: 500;
}

.blog-prose h3 {
  font-size: 1.35rem;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.blog-prose h3:first-child {
  margin-top: 0;
}

.blog-prose p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--light-grey);
  margin-bottom: 1.1rem;
}

.blog-callout {
  margin: 2rem 0;
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  border-left: 4px solid var(--primary);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}

.blog-callout p {
  margin: 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--dark);
}

.blog-article-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-article-footer .btn-secondary-cta {
  color: var(--dark) !important;
  border-color: rgba(20, 20, 20, 0.22);
  background: var(--white);
  box-shadow: var(--shadow);
}

.blog-article-footer .btn-secondary-cta:hover {
  color: var(--primary) !important;
  border-color: var(--primary);
  background: var(--white);
}

.blog-back-icon {
  margin-right: 0.35rem;
}

.blog-related-section {
  padding-top: 0;
}

@media (max-width: 575px) {
  .blog-article-lead {
    font-size: 1.05rem;
  }

  .blog-article-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-article-footer .btn {
    width: 100%;
    justify-content: center;
  }
}

/* CTA */
.cta-section {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1400&q=80') center/cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(31, 111, 62, 0.88) 0%, rgba(13, 13, 13, 0.9) 100%);
}

.cta-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
}

.cta-title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.75rem;
  font-size: 1.1rem;
}

.btn-light-text {
  background: var(--white);
  color: var(--primary) !important;
}

.btn-light-text:hover {
  background: var(--off-white);
  color: var(--primary-dark) !important;
  transform: translateY(-3px);
}

/* Achievements */
.achievements-section {
  background: var(--white);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 960px;
  margin: 0 auto;
}

.achievement-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 1px solid transparent;
}

.achievement-card:hover {
  border-color: rgba(31, 111, 62, 0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.achievement-badge {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--primary);
  color: var(--white);
  font-size: 1.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(31, 111, 62, 0.2);
}

.achievement-icon i {
  display: block;
  line-height: 1;
}

.achievement-badge--growth {
  background: var(--primary-dark);
  color: var(--white);
}

.achievement-badge--quality {
  background: var(--secondary);
  color: var(--white);
}

.achievement-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.achievement-card p {
  font-size: 0.9rem;
  color: var(--light-grey);
  margin-bottom: 0;
}

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

/* Footer */
.footer {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.8);
}

.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.footer-logo-link {
  display: block;
  line-height: 0;
}

.footer-logo {
  width: auto;
  height: 40px;
  max-width: 180px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-logo:hover {
  opacity: 1;
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin: 0;
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 260px;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-address,
.footer-schedule {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.footer-social {
  display: flex;
  gap: 1.25rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid items */
.gallery-item.reveal:nth-child(1) { transition-delay: 0.05s; }
.gallery-item.reveal:nth-child(2) { transition-delay: 0.1s; }
.gallery-item.reveal:nth-child(3) { transition-delay: 0.15s; }
.gallery-item.reveal:nth-child(4) { transition-delay: 0.2s; }
.gallery-item.reveal:nth-child(5) { transition-delay: 0.25s; }
.gallery-item.reveal:nth-child(6) { transition-delay: 0.3s; }

.team-card.reveal:nth-child(1) { transition-delay: 0.05s; }
.team-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.team-card.reveal:nth-child(3) { transition-delay: 0.15s; }
.team-card.reveal:nth-child(4) { transition-delay: 0.2s; }
.team-card.reveal:nth-child(5) { transition-delay: 0.25s; }
.team-card.reveal:nth-child(6) { transition-delay: 0.3s; }

/* Stats intro (dark section) */
.stats-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}

.stats-intro-tag {
  color: rgba(255, 255, 255, 0.65) !important;
}

.stats-intro-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin: 0.5rem auto 1rem;
  letter-spacing: -0.02em;
}

.stats-intro-text {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.65;
}

.stats-intro-visual {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.stats-intro-chip {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.25rem;
}

/* Events & activities */
.events-section {
  background: var(--white);
}

.events-section .row > [class*="col"] {
  display: flex;
}

.event-card {
  background: var(--off-white) !important;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.event-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.event-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .event-card-media img {
  transform: scale(1.05);
}

.event-card-icon {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 8px 24px rgba(31, 111, 62, 0.35);
}

.event-card-body {
  padding: 1.75rem;
  background: var(--off-white) !important;
  flex: 1 1 auto;
}

.event-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.35rem;
}

.event-card-meta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.event-card-body p {
  color: var(--light-grey);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.event-highlights {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.55;
}

.event-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.event-highlights li i {
  color: var(--primary);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* Social / updates */
.social-section {
  background: var(--off-white);
}

.social-post {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.social-post:hover {
  box-shadow: var(--shadow-lg);
}

.social-post-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.social-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.social-post:hover .social-post-thumb img {
  transform: scale(1.04);
}

.social-post-content {
  padding: 1.35rem 1.5rem 1.5rem;
}

.social-post-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.social-post-label i {
  font-size: 1rem;
}

.social-post-caption {
  font-size: 0.95rem;
  color: var(--secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.social-engagement {
  font-size: 0.85rem;
  color: var(--light-grey);
  margin: 0;
  line-height: 1.5;
}

.social-engagement i {
  color: var(--primary);
  margin-right: 0.25rem;
}

.subsection-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--secondary);
}

.subsection-title i {
  color: var(--primary);
  margin-right: 0.35rem;
  vertical-align: -0.1em;
}

.update-block {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow);
}

.update-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(31, 111, 62, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.update-block-text {
  flex: 1;
  min-width: 0;
}

.update-date {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.update-block p {
  margin: 0;
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.65;
}

.visit-lead--compact {
  margin-top: -0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  opacity: 0.92;
}

/* Meet our community */
.members-community-section {
  background: var(--white);
}

.community-member-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.community-member-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(31, 111, 62, 0.2);
}

.community-member-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.community-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.community-member-card:hover .community-member-photo img {
  transform: scale(1.05);
}

.community-member-body {
  padding: 1.35rem 1.5rem 1.5rem;
  position: relative;
  background: var(--off-white);
}

.community-member-icon {
  position: absolute;
  top: -1.5rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 6px 20px rgba(31, 111, 62, 0.3);
}

.community-member-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.35rem;
  padding-right: 2.5rem;
}

.community-member-company {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.community-member-value {
  font-size: 0.92rem;
  color: var(--light-grey);
  line-height: 1.6;
  margin: 0;
}

/* Testimonials */
.testimonials-section {
  background: var(--off-white);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  height: 100%;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-visual {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(31, 111, 62, 0.2);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.testimonial-mark {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 2rem;
  color: rgba(31, 111, 62, 0.12);
  line-height: 1;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--secondary);
  margin-bottom: 1.25rem;
}

.testimonial-meta {
  font-size: 0.85rem;
  color: var(--light-grey);
}

/* Community highlights */
.highlights-section {
  background: var(--off-white);
}

.highlight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.highlight-card:hover {
  box-shadow: var(--shadow-lg);
}

.highlight-card-visual {
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(31, 111, 62, 0.25);
}

.highlight-card-visual--collab {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.highlight-card-visual--growth {
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
}

.highlight-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(31, 111, 62, 0.15);
}

.highlight-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.65;
}

.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.highlight-list li i {
  color: var(--primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.section-bg-pattern--light {
  opacity: 0.5;
}

/* Footer powered */
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-powered {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}

.footer-powered-link {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.footer-powered-link:hover {
  color: var(--accent);
}

/* Apply modal */
#applyModal .modal-dialog {
  max-width: 560px;
}

#applyModal .modal-content {
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

#applyModal .modal-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-bottom: 0;
  padding: 1.1rem 1.25rem;
}

#applyModal .modal-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
}

#applyModal .btn-close {
  filter: invert(1);
  opacity: 0.9;
}

#applyModal .modal-body {
  background: var(--white);
  padding: 1.25rem;
}

#applyModal .modal-body p {
  color: var(--light-grey);
  font-size: 0.92rem;
}

#applyModal .form-control {
  border-radius: 12px;
  border: 1px solid #dbe3ee;
  padding: 0.75rem 0.9rem;
}

#applyModal .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31, 111, 62, 0.15);
}

#applyModal .btn-primary-cta {
  margin-top: 0.25rem;
  border-radius: 12px;
}

@media (max-width: 575px) {
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

/* ========== RESPONSIVE ========== */
.container {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 576px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (min-width: 768px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 991px) {
  .section {
    padding: 4rem 0;
  }

  .why-join .row {
    gap: 2rem;
  }

  .why-join-img-accent {
    width: 30%;
    height: 50%;
    bottom: -12px;
    right: -12px;
  }

  .feature-pill {
    max-width: 100%;
  }

  .stats-section {
    padding: 3.5rem 0;
  }

  .stat-card-inner {
    padding: 2rem 1.5rem;
  }

  .gallery-header .section-title,
  .team-header .team-title {
    font-size: 1.85rem;
  }

  .visit-panel-inner {
    max-width: 100%;
  }

  .visit-headline {
    font-size: 1.75rem;
  }

  .visit-visual-badge {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.65rem 1rem;
  }

  .cta-section {
    min-height: 360px;
  }

  .cta-content {
    padding: 2.5rem 1.5rem;
  }

  .footer-top .row {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 3.5rem 0;
  }

  .header {
    padding: 0.6rem 0;
  }

  .header-logo {
    max-width: 160px;
    height: auto;
    max-height: 44px;
  }

  .navbar-collapse {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
  }

  .navbar-nav .btn-nav-cta {
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
  }

  .hero-content {
    padding: 5rem 1rem 4rem;
  }

  .hero-badge {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    padding: 0.4rem 0.75rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 2.5rem;
  }

  .hero-cta .btn-primary-cta,
  .hero-cta .btn-secondary-cta {
    justify-content: center;
    padding: 0.9rem 1.5rem;
  }

  .hero-scroll-hint {
    bottom: 1.5rem;
  }

  .scroll-line {
    height: 32px;
  }

  .section-tag {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .section-text {
    font-size: 0.95rem;
  }

  .why-join-img-frame {
    border-radius: var(--radius);
  }

  .why-join-img-accent {
    display: none;
  }

  .feature-pill {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .stats-section {
    padding: 3rem 0;
  }

  .stat-card-inner {
    padding: 1.75rem 1rem;
  }

  .stat-card-num {
    font-size: 2.5rem;
  }

  .stat-card-suffix {
    font-size: 2rem;
  }

  .stat-card-label {
    font-size: 0.9rem;
  }

  .stat-card-icon {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }

  .update-block {
    flex-direction: column;
    gap: 1rem;
  }

  .event-card-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .community-member-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    right: 1rem;
    top: -1.25rem;
  }

  .testimonial-mark {
    font-size: 1.5rem;
  }

  .gallery-bento {
    gap: 1rem;
    grid-auto-rows: 180px;
  }

  .gallery-header .section-title {
    font-size: 1.6rem;
  }

  .visit-panel--content {
    padding: 2rem 1rem;
  }

  .visit-form-card {
    padding: 1.35rem;
  }

  .visit-headline {
    font-size: 1.5rem;
  }

  .visit-lead {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .visit-benefits li {
    font-size: 0.9rem;
    padding: 0.5rem 0;
  }

  .visit-visual-badge {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    text-align: center;
  }

  .team-header {
    margin-bottom: 2rem;
  }

  .team-title {
    font-size: 1.75rem;
  }

  .team-desc {
    font-size: 0.95rem;
  }

  .team-cards {
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .team-card-text {
    padding: 1.15rem 1rem;
  }

  .team-card-name {
    font-size: 1.05rem;
  }

  .insight-body {
    padding: 1.35rem;
  }

  .insight-body h4 {
    font-size: 1.05rem;
  }

  .cta-section {
    min-height: 320px;
  }

  .cta-content {
    padding: 2rem 1rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .achievement-card {
    padding: 2rem 1.5rem;
  }

  .achievement-badge {
    width: 56px;
    height: 56px;
    font-size: 1.35rem;
  }

  .footer-brand-wrap {
    flex-wrap: wrap;
  }

  .footer-logo {
    width: auto;
    height: 34px;
    max-width: 150px;
  }

  .footer-brand {
    font-size: 0.95rem;
  }

  .footer-about {
    font-size: 0.85rem;
    max-width: 100%;
  }

  .footer-top .row {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .footer-bottom {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}

@media (max-width: 575px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero-content {
    padding: 4.5rem 0.75rem 3.5rem;
  }

  .hero-badge {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .header-logo {
    max-width: 140px;
    max-height: 40px;
  }

  .gallery-bento {
    grid-auto-rows: 200px;
    gap: 0.75rem;
  }

  .visit-panel--visual {
    min-height: 260px;
  }

  .team-cards {
    gap: 1rem;
  }

  .achievements-grid {
    gap: 1.25rem;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 1.65rem;
  }

  .btn-primary-cta,
  .btn-secondary-cta {
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
  }

  .visit-btn-submit {
    padding: 0.9rem 1.25rem;
    font-size: 0.95rem;
  }
}
