* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  color: #1d1f1d;
  background: #f8f8f6;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transform: translateY(0);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.navbar.hide {
  transform: translateY(-100%);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  width: min(1300px, 92%);
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1b3f22;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-menu a,
.mobile-menu a {
  text-decoration: none;
  color: #1f1f1f;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav-menu a:hover,
.mobile-menu a:hover {
  color: #2f7d3c;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: #2f7d3c;
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 20px;
}

.mobile-menu {
  display: none;
  width: 100%;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 12px 20px 22px;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* GENERAL */
.container {
  width: min(1280px, 92%);
  margin: 0 auto;
}

.section-tag,
.card-label,
.hero-tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.section-tag {
  font-size: 0.78rem;
  font-weight: 800;
  color: #2f7d3c;
  margin-bottom: 14px;
}

.section-tag.light {
  color: #d9ef7a;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 52px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
.featured-copy h2,
.media-copy h2,
.public-cta h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  color: #16341c;
  margin-bottom: 18px;
  font-weight: 800;
}

.section-heading p,
.featured-copy p,
.media-copy p,
.press-content p,
.insight-content p {
  color: #4e534f;
  font-size: 1rem;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 100px;
  background:
    linear-gradient(135deg, rgba(10, 22, 14, 0.84), rgba(19, 57, 27, 0.72)),
    url("images/public/public-hero.jpg") center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(217,239,122,0.12), transparent 25%),
    linear-gradient(to bottom, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.25));
  opacity: 0.32;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(950px, 90%);
  text-align: center;
  color: #fff;
}

.hero-tag {
  color: #d9ef7a;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 1.02;
  margin-bottom: 22px;
  font-weight: 800;
}

.hero p {
  width: min(760px, 100%);
  margin: 0 auto 34px;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.92);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 999px;
  text-decoration: none;
  background: #d9ef7a;
  color: #17361d;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.hero-btn:hover {
  transform: translateY(-3px);
  background: #e6f79d;
}

/* FEATURED */
.featured-section {
  padding: 105px 0;
  background: linear-gradient(180deg, #f8f8f6 0%, #ffffff 100%);
}

.featured-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.featured-copy p + p {
  margin-top: 16px;
}

.featured-visual {
  height: 560px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
}

.featured-visual img {
  height: 100%;
  object-fit: cover;
}

/* PRESS */
.press-section {
  padding: 105px 0;
  background: linear-gradient(180deg, #ffffff 0%, #eef4ee 100%);
}

.press-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.92fr;
  gap: 30px;
}

.press-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(15, 37, 18, 0.08);
  border: 1px solid rgba(47, 125, 60, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.press-card:hover,
.insight-card:hover,
.strip-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.14);
}

.press-card.large .press-image {
  height: 430px;
}

.press-card .press-image {
  height: 300px;
}

.press-image img,
.media-image img,
.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.press-content,
.insight-content {
  padding: 28px;
}

.card-label {
  font-size: 0.74rem;
  font-weight: 800;
  color: #2f7d3c;
  margin-bottom: 12px;
}

.press-content h3,
.insight-content h3,
.strip-box strong {
  color: #17361d;
}

/* MEDIA */
.media-section {
  padding: 105px 0;
  background: #ffffff;
}

.media-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 40px;
  align-items: center;
}

.media-image {
  height: 520px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
}

.media-copy p + p {
  margin-top: 16px;
}

/* INSIGHTS */
.insights-section {
  padding: 105px 0;
  background: linear-gradient(180deg, #f4f5f1 0%, #ffffff 100%);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.insight-card {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(47, 125, 60, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.insight-image {
  height: 250px;
}

.insight-content h3 {
  font-size: 1.35rem;
  line-height: 1.16;
  margin-bottom: 12px;
}









/* ===== YOUNG ENTREPRENEURS AWARD ===== */

.award-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #ffffff 0%, #eef4ee 100%);
}

.award-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.award-card {
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 55px rgba(15, 37, 18, 0.08);
  border: 1px solid rgba(47, 125, 60, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.award-card img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* keep full page view */
  background: #f8f8f6;
}

.award-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.14);
}

























/* STRIP */
.publication-strip {
  padding: 40px 0 110px;
  background: #ffffff;
}

.strip-shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.strip-box {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8f4 100%);
  border: 1px solid rgba(47, 125, 60, 0.08);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.strip-box span {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2f7d3c;
  margin-bottom: 12px;
}

.strip-box strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.4;
}

/* CTA */
.public-cta {
  padding: 100px 0 110px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(18, 51, 24, 0.96), rgba(47, 125, 60, 0.9)),
    url("images/public/public-cta.jpg") center/cover no-repeat;
  color: #fff;
}

.public-cta h2 {
  margin: 16px 0;
}

.public-cta p {
  width: min(760px, 90%);
  margin: 0 auto 28px;
  color: rgba(255,255,255,0.9);
}

/* REVEAL */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all 0.9s ease;
}

.reveal-up {
  transform: translateY(42px);
}

.reveal-left {
  transform: translateX(-48px);
}

.reveal-right {
  transform: translateX(48px);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

.delay-3 {
  transition-delay: 0.36s;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .featured-shell,
  .press-grid,
  .media-layout,
  .insights-grid,
  .strip-shell {
    grid-template-columns: 1fr;
  }

  .featured-visual,
  .media-image,
  .press-card.large .press-image,
  .press-card .press-image {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    min-height: 74px;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .hero {
    min-height: 88vh;
    padding-top: 130px;
  }

  .hero p {
    font-size: 0.98rem;
  }

  .featured-section,
  .press-section,
  .media-section,
  .insights-section,
  .public-cta {
    padding: 84px 0;
  }

  .publication-strip {
    padding: 20px 0 84px;
  }

  .section-heading h2,
  .featured-copy h2,
  .media-copy h2,
  .public-cta h2 {
    font-size: 2rem;
  }

  .press-content,
  .insight-content {
    padding: 24px;
  }

  .insight-image,
  .featured-visual,
  .media-image {
    height: 250px;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .hero-btn {
    width: 100%;
    max-width: 280px;
  }

  .press-card.large .press-image,
  .press-card .press-image,
  .insight-image,
  .featured-visual,
  .media-image {
    height: 230px;
  }
}