  
    /* =====================================================
   INDIA LIVESTOCK SHOW 2027 — WEBSITE STYLESHEET
   Senior-grade, modular, semantic CSS
   ===================================================== */

    /* === DESIGN TOKENS === */
    :root {
      --green-deep: #1a4d2e;
      --green-mid: #2d7a45;
      --green-bright: #3ab563;
      --green-pale: #e8f5ec;
      --red-accent: #c0392b;
      --gold: #d4a017;
      --cream: #fdf8f0;
      --ink: #0f1c14;
      --ink-soft: #3d5240;
      --white: #ffffff;
      --grey-light: #f4f4f2;
      --grey-mid: #9aab9e;

      --font-display: 'Playfair Display', Georgia, serif;
      --font-condensed: 'Barlow Condensed', sans-serif;
      --font-body: 'DM Sans', system-ui, sans-serif;

      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 24px;
      --max-width: 1200px;
      --container-padding: 3rem;

      --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.10);
      --shadow-float: 0 20px 60px rgba(0, 0, 0, 0.18);

      --transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.65;
      color: var(--ink);
      background: var(--white);
      overflow-x: hidden;
    }

    p {
      text-align: justify;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    /* === UTILITY === */
    .section-label {
      font-family: var(--font-condensed);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--green-mid);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .section-label::before {
      content: '';
      display: inline-block;
      width: 24px;
      height: 2px;
      background: var(--green-mid);
      flex-shrink: 0;
    }

    .section-label--light {
      color: var(--green-bright);
    }

    .section-label--light::before {
      background: var(--green-bright);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.8rem 1.8rem;
      border-radius: var(--radius-sm);
      font-family: var(--font-condensed);
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
      border: 2px solid transparent;
      transition: var(--transition);
    }

    .btn--primary {
      background: var(--green-mid);
      color: var(--white);
      border-color: var(--green-mid);
    }

    .btn--primary:hover {
      background: var(--green-deep);
      border-color: var(--green-deep);
      transform: translateY(-2px);
    }

    .btn--ghost {
      background: transparent;
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.5);
    }

    .btn--ghost:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: var(--white);
    }

    .btn--outline {
      background: transparent;
      color: var(--green-deep);
      border-color: var(--green-deep);
    }

    .btn--outline:hover {
      background: var(--green-deep);
      color: var(--white);
    }

    .btn--white {
      background: var(--white);
      color: var(--green-deep);
      border-color: var(--white);
    }

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

    .btn--ghost-white {
      background: transparent;
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.45);
    }

    .btn--ghost-white:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    /* ===========================
   NAV
   =========================== */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      transition: background 0.4s, box-shadow 0.4s;
      padding: 0 2rem;
    }

    .nav.scrolled {
      background: rgba(10, 30, 16, 0.97);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
      backdrop-filter: blur(12px);
    }

    .nav__inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--container-padding);
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
    }

    .nav__logo-img {
      height: 56px;
      width: auto;
      object-fit: contain;
      background: var(--white);
      padding: 6px 14px;
      border-radius: var(--radius-sm);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .nav__logo-img:hover {
      transform: scale(1.03);
    }

    .nav__links {
      display: flex;
      align-items: center;
      gap: 2.2rem;
    }

    .nav__links a {
      font-family: var(--font-body);
      font-size: 0.92rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.85);
      transition: color var(--transition);
    }

    .nav__links a:hover {
      color: var(--green-bright);
    }

    .nav__cta {
      background: var(--green-mid) !important;
      color: var(--white) !important;
      padding: 0.5rem 1.2rem;
      border-radius: var(--radius-sm);
    }

    .nav__cta:hover {
      background: var(--green-bright) !important;
    }

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

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

    /* ===========================
   HERO
   =========================== */
    .hero {
      min-height: 100vh;
      background: #0b1e10;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: 80px;
    }

    /* Background image layer — JS changes this */
    .hero__bg-img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-image: url('hero_image.png');
      transition: background-image 0.8s ease-in-out;
      z-index: 0;
    }

    /* Dark green gradient: strong on left, fades to transparent on right */
    .hero__bg-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(11, 30, 16, 0.97) 0%,
        rgba(11, 30, 16, 0.92) 20%,
        rgba(11, 30, 16, 0.75) 45%,
        rgba(11, 30, 16, 0.2) 70%,
        rgba(11, 30, 16, 0.0) 100%
      );
      z-index: 1;
    }

    .hero__bg-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    .hero__farm-strip {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 220px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 100%);
      pointer-events: none;
    }

    .hero__content-wrapper {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--container-padding);
      position: relative;
      z-index: 5;
      width: 100%;
    }

    .hero__content {
      max-width: 800px;
    }

    .hero__eyebrow {
      margin-bottom: 2rem;
    }

    .hero__badge {
      display: inline-block;
      font-family: var(--font-condensed);
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--green-bright);
      background: rgba(58, 181, 99, 0.1);
      border: 1px solid rgba(58, 181, 99, 0.25);
      padding: 0.4rem 1.2rem;
      border-radius: 100px;
    }

    .hero__headline {
      font-family: var(--font-display);
      line-height: 0.95;
      color: var(--white);
      margin-bottom: 1.8rem;
    }

    .hero__headline--line1 {
      display: block;
      font-family: var(--font-condensed);
      font-size: clamp(1.8rem, 4.5vw, 3.8rem);
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: -0.2em;
    }

    .hero__headline--line2 {
      display: block;
      font-family: var(--font-condensed);
      font-size: clamp(4rem, 11vw, 10rem);
      color: var(--white);
      font-weight: 900;
      letter-spacing: 0.04em;
      line-height: 0.85;
      text-transform: uppercase;
    }

    .hero__headline--line3 {
      display: block;
      font-family: var(--font-condensed);
      font-size: clamp(1.8rem, 4.5vw, 4.2rem);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      color: var(--green-bright);
      margin-top: -0.1em;
    }

    .hero__headline--line3 em {
      font-style: normal;
      color: var(--green-bright);
    }

    .hero__sub {
      font-family: var(--font-condensed);
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 3rem;
      border-left: 3px solid var(--green-bright);
      padding-left: 1.2rem;
    }

    .hero__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .hero__animal-silhouettes {
      position: absolute;
      bottom: 60px;
      left: 0;
      right: 0;
      z-index: 1;
      pointer-events: none;
    }

    .hero__animal-silhouettes svg {
      width: 100%;
      height: auto;
    }

    /* Visual Background Elements */
    .hero__visual {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 65%;
      z-index: 1;
      pointer-events: none;
    }

    .hero__image-fade {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .hero__visual-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.6;
      filter: saturate(1.2) contrast(1.1);
      mask-image: linear-gradient(to left, black 30%, transparent 90%);
      -webkit-mask-image: linear-gradient(to left, black 30%, transparent 90%);
    }

    .hero__visual-overlay {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 75% 50%, transparent 0%, #0b1e10 90%);
    }

    .hero__scroll-hint {
      position: absolute;
      bottom: 2.5rem;
      right: 2.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      font-family: var(--font-condensed);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--green-bright);
      z-index: 10;
    }

    .hero__scroll-line {
      width: 50px;
      height: 2px;
      background: rgba(58, 181, 99, 0.3);
      position: relative;
      overflow: hidden;
    }

    .hero__card-label {
      font-family: var(--font-condensed);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--green-mid);
    }

    .hero__card-val {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--ink);
    }

    @keyframes scrollLine {
      0% {
        transform: translateY(-10px);
        opacity: 0;
      }

      50% {
        transform: translateY(0);
        opacity: 1;
      }

      100% {
        transform: translateY(10px);
        opacity: 0;
      }
    }

    .hero__scroll-line::after {
      content: '';
      position: absolute;
      top: 5px;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      height: 6px;
      background: var(--green-bright);
      border-radius: 2px;
      animation: scrollLine 2s infinite;
    }

    section {
      scroll-margin-top: 80px;
    }

    /* ===========================
   TICKER
   =========================== */
    .ticker {
      background: var(--green-deep);
      overflow: hidden;
      padding: 0.85rem 0;
      border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    .ticker__inner {
      display: flex;
      gap: 2rem;
      white-space: nowrap;
      animation: ticker 28s linear infinite;
      width: max-content;
      font-family: var(--font-condensed);
      font-size: 0.88rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.7);
    }

    .ticker__dot {
      color: var(--green-bright);
    }

    @keyframes ticker {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* ===========================
   ABOUT
   =========================== */
    .about {
      background: var(--cream);
      padding: 8rem 0;
    }

    .about__container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--container-padding);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .about__heading {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 900;
      line-height: 1.05;
      color: var(--ink);
      margin-bottom: 2.5rem;
    }

    .about__img-stack {
      position: relative;
      height: 400px;
    }

    .about__img-card {
      position: absolute;
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-float);
    }

    .about__img-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .about__img-card--1 {
      width: 72%;
      height: 320px;
      bottom: 0;
      left: 0;
    }

    .about__img-card--2 {
      width: 52%;
      height: 230px;
      top: 0;
      right: 0;
      border: 4px solid var(--white);
    }

    .about__lead {
      font-size: 0.97rem;
      font-weight: 400;
      color: var(--ink-soft);
      margin-bottom: 1rem;
      line-height: 1.75;
    }

    .about__body {
      font-size: 0.97rem;
      color: var(--ink-soft);
      margin-bottom: 1rem;
      line-height: 1.75;
    }

    .about__logo-img {
      height: 60px;
      width: auto;
      object-fit: contain;
      background: var(--white);
      padding: 6px 14px;
      border-radius: var(--radius-sm);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      margin-bottom: 1.5rem;
      display: inline-block;
    }

    .about__tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 2rem;
    }

    .about__tags span {
      font-family: var(--font-condensed);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: var(--green-pale);
      color: var(--green-deep);
      border: 1px solid rgba(45, 122, 69, 0.2);
      padding: 0.3rem 0.85rem;
      border-radius: 100px;
    }

    /* ===========================
   STATS
   =========================== */
    .stats {
      background: var(--green-deep);
      padding: 8rem 0;
      position: relative;
      overflow: hidden;
    }

    .stats__bg-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--font-display);
      font-size: clamp(8rem, 18vw, 22rem);
      font-weight: 900;
      color: rgba(255, 255, 255, 0.03);
      letter-spacing: -0.04em;
      white-space: nowrap;
      pointer-events: none;
      user-select: none;
    }

    .stats__container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--container-padding);
      position: relative;
      z-index: 1;
    }

    .stats__heading {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 900;
      color: var(--white);
      margin-bottom: 4.5rem;
      line-height: 1.05;
    }

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

    .stats__card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-md);
      padding: 2.2rem 1.8rem;
      transition: var(--transition);
    }

    .stats__card:hover {
      background: rgba(255, 255, 255, 0.09);
      transform: translateY(-4px);
      border-color: rgba(58, 181, 99, 0.3);
    }

    .stats__card--accent {
      background: rgba(58, 181, 99, 0.1);
      border-color: rgba(58, 181, 99, 0.2);
    }

    .stats__num {
      font-family: var(--font-condensed);
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    .stats__num span {
      color: var(--green-bright);
    }

    .stats__label {
      font-family: var(--font-condensed);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--green-bright);
      margin-bottom: 0.6rem;
    }

    .stats__desc {
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.6;
    }

    /* ===========================
   PARTICIPATE
   =========================== */
    .participate {
      background: var(--white);
      padding: 8rem 0;
    }

    .participate__container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--container-padding);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
    }

    .participate__path {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      padding: 3.5rem 3rem;
      transition: var(--transition);
      border: 1px solid rgba(0, 0, 0, 0.05);
      background: var(--green-pale);
      color: var(--ink);
      display: flex;
      flex-direction: column;
    }

    .participate__content {
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .participate__path--exhibitor,
    .participate__path--visitor {
      /* Base styles inherited from .participate__path */
      
    }

    .participate__path:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-float);
      background: var(--green-deep);
      color: var(--white);
    }

    .participate__bg-accent {
      position: absolute;
      top: 0;
      right: 0;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle at top right, rgba(58, 181, 99, 0.15), transparent 70%);
      pointer-events: none;
    }

    .participate__label {
      font-family: var(--font-condensed);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--green-bright);
      margin-bottom: 0.5rem;
    }

    .participate__heading {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }

    .participate__lead {
      font-size: 1rem;
      line-height: 1.6;
      opacity: 0.8;
      margin-bottom: 2rem;
      max-width: 90%;
    }

    .participate__price,
    .participate__stats {
      margin-bottom: 2.5rem;
      display: flex;
      align-items: baseline;
      gap: 0.6rem;
    }

    .participate__price {
      font-family: var(--font-condensed);
      font-size: 1.1rem;
      color: inherit;
    }

    .participate__price span {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--green-bright);
    }

    .participate__stats {
      gap: 2rem;
    }

    .mini-stat {
      display: flex;
      flex-direction: column;
    }

    .mini-stat strong {
      font-family: var(--font-condensed);
      font-size: 2rem;
      color: var(--green-deep);
      line-height: 1;
      transition: color var(--transition);
    }

    .participate__path:hover .mini-stat strong {
      color: var(--white);
    }

    .mini-stat span {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--green-mid);
      font-weight: 700;
      transition: color var(--transition);
    }

    .participate__path:hover .mini-stat span {
      color: rgba(255, 255, 255, 0.7);
    }

    .participate__feature-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.8rem;
      margin-bottom: 3rem;
    }

    .participate__feature-list li {
      font-size: 0.95rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .participate__feature-list li span {
      color: var(--green-bright);
      font-size: 1rem;
    }

    .participate__actions {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-top: auto;
    }

    .participate__note {
      font-size: 0.75rem;
      font-style: italic;
      opacity: 0.6;
      color: inherit;
    }

    .participate__path:hover .btn--outline {
      background: var(--white);
      color: var(--green-deep);
      border-color: var(--white);
    }

    .participate__path:hover .btn--primary {
      background: var(--white);
      color: var(--green-deep);
      border-color: var(--white);
    }

    /* ===========================
   TIMELINE
   =========================== */
    .timeline {
      background-image: url('exhibition_bg.png');
      background-attachment: fixed;
      background-size: cover;
      background-position: center;
      padding: 7rem 0;
      position: relative;
      overflow: hidden;
    }

    .timeline::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.9);
      z-index: 1;
    }

    .timeline__container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--container-padding);
      position: relative;
      z-index: 2;
    }

    .timeline__heading {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 900;
      color: var(--ink);
      margin-bottom: 3rem;
    }

    .timeline__track {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }

    .timeline__track::before {
      content: '';
      position: absolute;
      top: 28px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: rgba(45, 122, 69, 0.2);
      z-index: 0;
    }

    .timeline__item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.7rem;
      position: relative;
      z-index: 1;
    }

    .timeline__date {
      font-family: var(--font-condensed);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--green-mid);
    }

    .timeline__dot {
      width: 16px;
      height: 16px;
      background: var(--white);
      border: 2px solid var(--green-mid);
      border-radius: 50%;
    }

    .timeline__dot--main {
      width: 24px;
      height: 24px;
      background: var(--green-mid);
      border-color: var(--green-deep);
      box-shadow: 0 0 0 5px rgba(45, 122, 69, 0.15);
    }

    .timeline__text {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }

    .timeline__text strong {
      font-size: 0.95rem;
      color: var(--ink);
      font-weight: 600;
    }

    .timeline__text span {
      font-size: 0.82rem;
      color: var(--ink-soft);
    }

    .timeline__item--main .timeline__text strong {
      color: var(--green-deep);
      font-size: 1.05rem;
    }

    /* ===========================
   MEDIA GALLERY
   =========================== */
    .media {
      background: var(--white);
      padding: 8rem 0;
    }

    .media__container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--container-padding);
    }

    .media__header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 3.5rem;
    }

    .media__heading {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 900;
      color: var(--ink);
      line-height: 1.05;
    }

    .media__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(2, 300px);
      gap: 1.5rem;
    }

    .media__cell {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-md);
      background: var(--grey-light);
    }

    .media__cell img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .media__cell:hover img {
      transform: scale(1.1);
    }

    .media__cell--v {
      grid-row: span 2;
    }

    .media__cell--h {
      grid-column: span 2;
    }

    .media__info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1.5rem;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
      color: var(--white);
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.4s ease;
    }

    .media__cell:hover .media__info {
      opacity: 1;
      transform: translateY(0);
    }

    .media__info span {
      font-family: var(--font-condensed);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--green-bright);
    }

    .media__info h4 {
      font-family: var(--font-display);
      font-size: 1.2rem;
      margin-top: 0.3rem;
    }

    .media__view-all {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      font-family: var(--font-condensed);
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--green-mid);
      transition: var(--transition);
    }

    .media__view-all:hover {
      color: var(--green-bright);
      letter-spacing: 0.15em;
    }

    .media__view-all::after {
      content: '→';
      font-size: 1.2rem;
    }

    /* ===========================
   BROCHURE CTA
   =========================== */
    .brochure {
      background: linear-gradient(135deg, var(--green-deep) 0%, #0e3a1e 100%);
      padding: 8rem 0;
      position: relative;
      overflow: hidden;
    }

    .brochure::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -15%;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(58, 181, 99, 0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .brochure__container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--container-padding);
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .brochure__left h2 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 1rem;
    }

    .brochure__left p {
      color: rgba(255, 255, 255, 0.65);
      margin-bottom: 2.5rem;
      font-size: 1.02rem;
      line-height: 1.75;
    }

    .brochure__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .brochure__card {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      text-align: center;
      backdrop-filter: blur(10px);
    }

    .brochure__timer {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .timer-item {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .timer-num {
      font-family: var(--font-condensed);
      font-size: 4rem;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
    }

    .timer-label {
      font-family: var(--font-condensed);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--green-bright);
      margin-top: 0.5rem;
    }

    .brochure__card-month {
      font-family: var(--font-condensed);
      font-size: 1.2rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 1.2rem;
    }

    .brochure__card-venue {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.5;
      margin-bottom: 0.5rem;
    }

    .brochure__card-timing {
      font-family: var(--font-condensed);
      font-size: 0.82rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 1.5rem;
    }

    .brochure__animals {
      font-size: 1.6rem;
      letter-spacing: 0.2rem;
    }

    /* ===========================
   PROMOTIONS
   =========================== */
    .promos {
      background: var(--cream);
      padding-top: 8rem ;
      padding-bottom: 3rem;
    }

    .promos__container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--container-padding);
    }

    .promos__heading {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 900;
      color: var(--ink);
      margin-bottom: 3rem;
      line-height: 1.1;
    }

    .promos__grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.5rem;
    }

    .promos__item {
      background: var(--white);
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: var(--radius-md);
      padding: 1.8rem 1.2rem;
      text-align: center;
      transition: var(--transition);
    }

    .promos__item:hover {
      transform: translateY(-4px);
      border-color: rgba(45, 122, 69, 0.3);
      box-shadow: var(--shadow-card);
    }

    .promos__icon {
      font-size: 2rem;
      margin-bottom: 0.9rem;
    }

    .promos__text {
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--ink-soft);
      line-height: 1.5;
    }

    /* ===========================
   TESTIMONIALS
   =========================== */
    .testimonials {
      background: var(--white);
      padding: 8rem 0;
    }

    .testimonials__container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--container-padding);
    }

    .testimonials__heading {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 900;
      color: var(--ink);
      margin-bottom: 4rem;
    }

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

    .testimonials__card {
      background: var(--grey-light);
      border-radius: var(--radius-md);
      padding: 2.2rem;
      border: 1px solid transparent;
      transition: var(--transition);
    }

    .testimonials__card:hover {
      border-color: rgba(45, 122, 69, 0.2);
      box-shadow: var(--shadow-card);
    }

    .testimonials__card--featured {
      background: var(--green-deep);
      transform: scale(1.02);
    }

    .testimonials__stars {
      color: var(--gold);
      font-size: 0.9rem;
      letter-spacing: 0.1rem;
      margin-bottom: 1rem;
    }

    .testimonials__card p {
      font-size: 0.97rem;
      line-height: 1.75;
      margin-bottom: 1.5rem;
      font-style: italic;
    }

    .testimonials__card--featured p {
      color: rgba(255, 255, 255, 0.8);
    }

    .testimonials__card--featured .testimonials__author strong {
      color: var(--white);
    }

    .testimonials__card--featured .testimonials__author span {
      color: rgba(255, 255, 255, 0.5);
    }


    .testimonials__author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .testimonials__avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
      flex-shrink: 0;
    }

    .testimonials__author strong {
      display: block;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--ink);
    }

    .testimonials__author span {
      font-size: 0.8rem;
      color: var(--grey-mid);
    }

    /* Brochure Image Styles */
    .brochure__image-wrapper {
      position: relative;
      width: 100%;
      height: 350px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-float);
    }

    .brochure__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 20%;
      display: block;
      transition: transform 0.6s ease;
    }

    .brochure__left:hover + .brochure__right .brochure__image {
      transform: scale(1.05);
    }

    .brochure__image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10, 30, 16, 0.4), transparent);
    }

    .credibility__strip {
      background: var(--green-pale);
      border: 1px solid rgba(45, 122, 69, 0.15);
      border-radius: var(--radius-md);
      padding: 2.5rem 3rem;
      display: flex;
      align-items: center;
      justify-content: space-around;
      gap: 2rem;
    }

    .credibility__item {
      text-align: center;
    }

    .credibility__num {
      font-family: var(--font-condensed);
      font-size: 3rem;
      font-weight: 800;
      color: var(--green-deep);
      line-height: 1;
      margin-bottom: 0.4rem;
    }

    .credibility__num sup {
      font-size: 1.2rem;
    }

    .credibility__item div:last-child {
      font-size: 0.88rem;
      color: var(--ink-soft);
      font-weight: 500;
    }

    .credibility__divider {
      width: 1px;
      height: 60px;
      background: rgba(45, 122, 69, 0.2);
    }

    /* ===========================
   FOOTER
   =========================== */
    .footer {
      background: var(--ink);
      color: var(--white);
    }

    .footer__top {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 4rem var(--container-padding) 2.5rem;
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1.6fr;
      gap: 3rem;
    }

    .footer__logo {
      height: 65px;
      width: auto;
      object-fit: contain;
      margin-bottom: 1.5rem;
      background: var(--white);
      padding: 8px 18px;
      border-radius: var(--radius-sm);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .footer__tagline {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 1.5rem;
    }

    .footer__socials {
      display: flex;
      gap: 0.8rem;
    }

    .footer__socials a {
      width: 40px;
      height: 40px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.5);
      transition: var(--transition);
      background: rgba(255, 255, 255, 0.03);
    }

    .footer__socials a svg {
      transition: transform 0.3s ease;
    }

    .footer__socials a:hover {
      border-color: var(--green-bright);
      color: var(--green-bright);
      background: rgba(58, 181, 99, 0.05);
    }

    .footer__socials a:hover svg {
      transform: scale(1.1);
    }

    .footer__links-col h4 {
      font-family: var(--font-condensed);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 1.2rem;
    }

    .footer__links-col ul {
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }

    .footer__links-col li,
    .footer__links-col a {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.6);
      transition: color var(--transition);
    }

    .footer__links-col a:hover {
      color: var(--green-bright);
    }

    .footer__contact-col h4 {
      font-family: var(--font-condensed);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 1.2rem;
    }

    .footer__phone,
    .footer__email,
    .footer__web {
      display: block;
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.75);
      margin-bottom: 0.5rem;
      transition: color var(--transition);
    }

    .footer__phone:hover,
    .footer__email:hover,
    .footer__web:hover {
      color: var(--green-bright);
    }

    .footer__addr {
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.4);
      line-height: 1.7;
      margin-top: 1rem;
    }

    .footer__bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      padding: 2.5rem var(--container-padding);
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: var(--max-width);
      margin: 0 auto;
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.35);
      flex-wrap: wrap;
      gap: 2rem;
      letter-spacing: 0.03em;
    }

    .footer__dev-link {
      color: var(--green-bright);
      font-weight: 600;
      transition: opacity 0.3s ease;
    }

    .footer__dev-link:hover {
      opacity: 0.8;
      text-decoration: underline;
    }

    .footer__policy-links {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
    }

    .footer__policy-links a {
      color: rgba(255, 255, 255, 0.45);
      text-decoration: none;
      font-size: 0.82rem;
      transition: color var(--transition);
    }

    .footer__policy-links a:hover {
      color: var(--green-bright);
    }

    @media (max-width: 768px) {
      .footer__policy-links {
        gap: 1rem;
        width: 100%;
        justify-content: center;
      }
    }


    /* ===========================
   RESPONSIVE
   =========================== */
    @media (max-width: 1024px) {
      :root {
        --container-padding: 2rem;
      }

      .about__container {
        grid-template-columns: repeat(2, 1fr);
      }

      .stats__grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .promos__grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .footer__top {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav__links {
        display: none;
      }

      .nav__burger {
        display: flex;
      }

      .hero__content-wrapper {
        text-align: center;
      }

      .hero__content {
        max-width: 100%;
        padding: 4rem 1rem 2rem;
      }

      .hero__visual {
        width: 100%;
        height: 60%;
        top: auto;
        bottom: 0;
        opacity: 0.5;
      }

      .hero__visual-img {
        mask-image: linear-gradient(to top, black 20%, transparent 90%);
      }

      .hero__actions {
        justify-content: center;
      }

      .hero__sub {
        border-left: none;
        padding-left: 0;
        text-align: center;
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 2rem;
      }

      .hero__animal-silhouettes {
        bottom: 10px;
        opacity: 0.3;
      }

      .about__container {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .about__img-stack {
        height: 300px;
      }

      .stats__grid {
        grid-template-columns: 1fr 1fr;
      }

      .participate__container {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .participate__path {
        padding: 2.5rem 1.5rem;
      }

      .participate__heading {
        font-size: 2.2rem;
      }

      .participate__actions {
        flex-direction: column;
        align-items: stretch;
      }

      .participate__note {
        text-align: center;
      }

      .timeline__track {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .timeline__track::before {
        display: none;
      }

      .timeline__item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
      }
      
      .timeline__date {
        width: 80px;
        flex-shrink: 0;
        text-align: right;
      }

      .timeline__dot {
        flex-shrink: 0;
        margin-top: 4px;
        position: relative;
      }
      
      .timeline__dot::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 100px;
        background: rgba(45, 122, 69, 0.2);
      }
      
      /* Hide the line on the last dot */
      .timeline__item:last-child .timeline__dot::after {
        display: none;
      }

      .media__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
      }

      .media__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 0.8rem;
      }

      .media__cell {
        height: 200px;
      }

      .media__cell--v,
      .media__cell--h {
        grid-column: span 2;
      }

      .media__info {
        opacity: 1;
        transform: translateY(0);
        padding: 1rem;
      }

      .media__info h4 {
        font-size: 1rem;
      }

      .brochure__container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .promos__grid {
        grid-template-columns: 1fr 1fr;
      }

      .testimonials__grid {
        grid-template-columns: 1fr;
      }

      .credibility__strip {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
      }

      .credibility__divider {
        width: 60px;
        height: 1px;
      }

      .footer__top {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .footer__bottom {
        flex-direction: column;
        text-align: center;
      }

      .nav__inner {
        height: 70px;
      }

      .nav__logo-img {
        height: 40px;
        padding: 4px 10px;
      }
    }

    @media (max-width: 480px) {
      :root {
        --container-padding: 1.2rem;
      }

      .stats__grid {
        grid-template-columns: 1fr;
      }

      .promos__grid {
        grid-template-columns: 1fr;
      }

      .media__grid {
        grid-template-columns: 1fr;
      }

      .media__cell--v,
      .media__cell--h {
        grid-column: auto;
      }

      .hero__actions {
        flex-direction: column;
      }

      .brochure__actions {
        flex-direction: column;
      }

      .hero__scroll-hint {
        display: none;
      }
    }

    /* ===========================
   MODAL
   =========================== */
    .modal {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .modal.active {
      opacity: 1;
      pointer-events: auto;
    }

    .modal__overlay {
      position: absolute;
      inset: 0;
      background: rgba(11, 30, 16, 0.85);
      backdrop-filter: blur(5px);
    }

    .modal__content {
      position: relative;
      background: var(--white);
      width: 90%;
      max-width: 550px;
      max-height: 90vh;
      overflow-y: auto;
      border-radius: var(--radius-md);
      padding: 4rem 3.5rem;
      z-index: 10000;
      box-shadow: var(--shadow-float);
      transform: translateY(20px);
      transition: transform 0.3s ease;
    }

    .modal.active .modal__content {
      transform: translateY(0);
    }

    .modal__close {
      position: absolute;
      top: 15px;
      right: 20px;
      background: none;
      border: none;
      font-size: 2rem;
      color: var(--ink-soft);
      cursor: pointer;
      transition: color 0.3s ease;
      line-height: 1;
    }

    .modal__close:hover {
      color: var(--red-accent);
    }

    .modal__title {
      font-family: var(--font-display);
      font-size: 2.2rem;
      color: var(--green-deep);
      margin-bottom: 2rem;
      text-align: center;
    }

    .modal__form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .modal__group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .modal__label {
      font-family: var(--font-condensed);
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--green-deep);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .modal__error {
      font-size: 0.8rem;
      color: var(--red-accent);
      display: none;
      margin-top: 0.2rem;
      font-weight: 500;
    }

    .modal__form input,
    .modal__form textarea {
      width: 100%;
      padding: 1rem 1.2rem;
      border: 1px solid rgba(0, 0, 0, 0.12);
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-size: 0.95rem;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
      background: var(--grey-light);
    }

    .modal__form input.error,
    .modal__form textarea.error {
      border-color: var(--red-accent);
      background: #fff8f8;
    }

    .modal__form input:focus,
    .modal__form textarea:focus {
      outline: none;
      border-color: var(--green-bright);
      box-shadow: 0 0 0 3px rgba(58, 181, 99, 0.15);
      background: var(--white);
    }

    .modal__form input.error:focus,
    .modal__form textarea.error:focus {
      border-color: var(--red-accent);
      box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
    }

    .modal__form button {
      margin-top: 1rem;
      justify-content: center;
      padding: 1.1rem;
      font-size: 1.05rem;
    }


    /* Dropdown CSS */
    .nav__links {
      display: flex;
      align-items: center;
      gap: 2.2rem;
      list-style: none;
    }

    .nav__item {
      position: relative;
      padding: 1rem 0;
    }

    .nav__dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--white);
      min-width: 220px;
      border-radius: var(--radius-sm);
      box-shadow: var(--shadow-float);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
      z-index: 200;
      padding: 0.5rem 0;
      display: flex;
      flex-direction: column;
    }

    .nav__item:hover .nav__dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .nav__dropdown li {
      width: 100%;
    }

    .nav__dropdown a {
      display: block;
      padding: 0.8rem 1.5rem;
      color: var(--ink) !important;
      font-family: var(--font-body) !important;
      font-size: 0.95rem !important;
      font-weight: 500 !important;
      letter-spacing: normal !important;
      text-transform: none !important;
      transition: background 0.2s, color 0.2s !important;
    }

    .nav__dropdown a:hover {
      background: var(--green-pale);
      color: var(--green-deep) !important;
    }

    .nav__item-link {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .nav__item-link::after {
      content: '▾';
      font-size: 0.8em;
      opacity: 0.7;
    }

    /* Fix mobile nav */
    @media (max-width: 768px) {
      .nav__item {
        padding: 0;
      }

      .nav__dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding-left: 1rem;
        display: none;
      }

      .nav__item.open .nav__dropdown {
        display: flex;
      }

      .nav__dropdown a {
        color: rgba(255, 255, 255, 0.7) !important;
        padding: 0.6rem 1rem;
      }

      .nav__dropdown a:hover {
        background: transparent;
        color: var(--green-bright) !important;
      }
    }
  

/* =====================================================
   SUB-PAGE COMMON COMPONENTS
   ===================================================== */

.page-header {
  position: relative;
  padding: 12rem 0 8rem;
  background-color: var(--green-deep);
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 30, 16, 0.8), rgba(11, 30, 16, 0.6));
  z-index: 1;
}

.page-header__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.page-header__breadcrumbs {
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-bright);
}

.page-header__breadcrumbs a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.page-header__breadcrumbs a:hover {
  color: var(--white);
}

/* ===========================
   ABOUT PAGE SPECIFIC
   =========================== */

.about-page {
  padding: 0;
  background: var(--white);
}

.about-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.about-section--light {
  background: var(--grey-light);
}

.about-section--dark {
  background: var(--green-deep);
  color: var(--white);
}

.about-section--dark .about-page__heading {
  color: var(--white);
}

.about-section--dark .about-page__text {
  color: rgba(255, 255, 255, 0.8);
}

.about-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.about-flex > div {
  flex: 1;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(10, 30, 16, 0.4));
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.stat-box__val {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--green-bright);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-box__label {
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.9;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.vision-card {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 4px solid var(--green-mid);
}

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

.vision-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-deep);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vision-card p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.promo-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.promo-card:hover {
  background: var(--green-deep);
  transform: translateY(-5px);
}

.promo-card:hover h4,
.promo-card:hover p {
  color: var(--white);
}

.promo-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--green-deep);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.promo-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .about-flex {
    flex-direction: column;
    gap: 4rem;
  }
  .vision-grid {
    grid-template-columns: 1fr;
  }
}

.about-page__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1fr; /* Unified for redesigned layout */
  gap: 5rem;
}


.about-page__content {
  display: flex;
  flex-direction: column;
}

.about-page__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 2rem;
  line-height: 1.2;
}

@media (min-width: 992px) {
  .about-flex {
    align-items: flex-start;
  }
  .about-page__heading {
    white-space: nowrap;
  }
}

.about-page__lead {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 1.8rem;
  border-left: none;
  padding-left: 0;
}

.about-page__text {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.about-page__divider {
  border: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 3.5rem 0;
}

.about-page__details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-page__details-list li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.about-page__details-list li strong {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-mid);
}

.about-page__details-list li span {
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
}

.about-page__sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-page__card {
  background: var(--grey-light);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.about-page__card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

/* Response for About Grid / Media Gallery */
.media-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.media-gallery__item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

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

.media-gallery__item:hover img {
  transform: scale(1.1);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 2;
}

.video-play-btn::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid var(--green-deep);
  margin-left: 6px;
}

.media-gallery__item:hover .video-play-btn {
  background: var(--green-bright);
  transform: translate(-50%, -50%) scale(1.1);
}

.media-gallery__item:hover .video-play-btn::after {
  border-left-color: var(--white);
}

.media-gallery__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  cursor: pointer;
}

.media-gallery__item:hover video {
  transform: scale(1.1);
}

.media-gallery__item.photo-item {
  cursor: pointer;
}

/* === MEDIA MODALS === */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 30, 16, 0.95);
  backdrop-filter: blur(8px);
}

.video-modal__content {
  position: relative;
  width: auto;
  max-width: 90vw;
  max-height: 90vh;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-modal.active .video-modal__content {
  transform: scale(1);
}

.video-modal__close {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  color: var(--green-deep);
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.video-modal__close:hover {
  background: var(--green-bright);
  color: var(--white);
  transform: rotate(90deg) scale(1.1);
}

#modalVideo, #modalPhoto {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  background: #000;
}

@media (max-width: 1024px) {
  .about-page__container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-page__sidebar {
    order: -1;
  }
}

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

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

.nav__links a.active {
  color: var(--green-bright) !important;
}

.nav__dropdown a.active {
  background: var(--green-pale);
  color: var(--green-deep) !important;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--grey-light);
  border-radius: var(--radius-sm);
  transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: var(--green-pale);
}

.stat-item__val {
  font-size: 3rem;
  color: var(--green-mid);
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1;
}

.stat-item__label {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-top: 1rem;
  color: var(--ink-soft);
  font-weight: 700;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.promo-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.promo-card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--green-pale);
}

.promo-card h4 {
  font-family: var(--font-condensed);
  color: var(--green-deep);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.promo-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.about-page__card--cta {
  background: var(--green-pale);
  border: 1px solid rgba(45, 122, 69, 0.15);
}

.about-page__card--cta .about-page__card-title {
  color: var(--green-deep);
}

.about-page__card--cta p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.vision-mission {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.vision-card {
  padding: 3rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(212, 160, 23, 0.1);
}

.vision-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-deep);
  margin-bottom: 1rem;
}

.vision-card p {
  color: var(--ink-soft);
  line-height: 1.6;
}

/* === SUCCESS POPUP === */
.success-toast {
  position: fixed;
  top: 30px;
  right: 30px;
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-left: 5px solid var(--green-mid);
  max-width: 400px;
}

.success-toast.active {
  transform: translateX(0);
}

.success-toast__icon {
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.success-toast__content h5 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.success-toast__content p {
  margin: 0.2rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* ===========================
   MODAL (Vanilla JS Form)
   =========================== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 30, 16, 0.6);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--white);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.modal-overlay.open .modal-content {
  transform: translateY(0);
}

.modal-header {
  background: var(--green-mid);
  padding: 1.2rem 2rem;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.modal-header h3 {
  margin: 0;
  font-family: var(--font-condensed);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.4);
}

.modal-tabs {
  display: flex;
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  flex-shrink: 0;
}

.modal-tab {
  flex: 1;
  padding: 1rem;
  text-align: center;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: 0.2s;
}

.modal-tab.active {
  color: var(--green-mid);
  border-bottom-color: var(--green-mid);
  background: var(--white);
}

.modal-body {
  padding: 2rem;
  overflow-y: auto;
  flex-grow: 1;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.form-input, .form-select, .form-textarea {
  font-family: var(--font-body);
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45, 122, 69, 0.1);
}

.form-input[readonly] {
  background: var(--cream);
  color: var(--ink-soft);
}

.form-error {
  color: #ED1C24;
  font-size: 0.8rem;
  margin-top: 0.2rem;
  display: none;
}

.form-error.visible {
  display: block;
}

.req-star {
  color: #ED1C24;
  margin-left: 3px;
}

.form-input.error {
  border-color: #ED1C24;
}

/* Custom Dropdown Styling */
.custom-dropdown {
  position: relative;
}

.custom-dropdown-toggle {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-dropdown);
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
  display: none;
  padding: 0.5rem;
}

.custom-dropdown.open .custom-dropdown-menu {
  display: block;
}

.custom-dropdown-item {
  padding: 0.6rem 0.8rem;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}

.custom-dropdown-item:hover {
  background: var(--cream);
}

.custom-dropdown-item.selected {
  background: rgba(45, 122, 69, 0.1);
  color: var(--green-mid);
  font-weight: 600;
}

.modal-footer {
  padding: 1.5rem 2rem;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .modal-content {
    width: 95%;
    max-height: 95vh;
  }
  .modal-body {
    padding: 1.5rem;
  }
  .modal-header, .modal-footer {
    padding: 1rem 1.5rem;
  }
}

/* === PREMIUM DYNAMIC LAYOUTS & RESPONSIVENESS === */

/* Equal height columns for text and images */
@media (min-width: 992px) {
  .about-flex--match-height {
    align-items: stretch !important;
  }
  
  .about-flex--match-height .about-image-col {
    display: flex;
    flex-direction: column;
  }
  
  .about-flex--match-height .about-image-wrapper {
    height: 100% !important;
    flex: 1;
    display: flex;
  }
  
  .about-flex--match-height .about-image-wrapper img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover;
  }
}

/* Responsive Image Row (Replaces hardcoded inline style="display: grid; grid-template-columns: repeat(3, 1fr)") */
.about-image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.about-image-row .about-image-wrapper {
  height: 250px;
}

@media (max-width: 992px) {
  .about-image-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-image-row {
    grid-template-columns: 1fr;
  }
  .about-image-row .about-image-wrapper {
    height: 200px;
  }
}

/* Symmetrical Section Label Centering */
.section-label--centered {
  justify-content: center;
}

.section-label--centered::before,
.section-label--centered::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--green-mid);
  flex-shrink: 0;
}

.section-label--centered.section-label--light::after {
  background: var(--green-bright);
}

/* Centered heading typography fix (resets global white-space: nowrap) */
.about-page__heading--centered {
  text-align: center !important;
  white-space: normal !important;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive grid overrides (removes inline styles) */
.vision-grid--2cols {
  grid-template-columns: repeat(2, 1fr);
}

.vision-grid--3cols {
  grid-template-columns: repeat(3, 1fr);
}

.vision-grid--4cols {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
  .vision-grid--4cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .vision-grid--3cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .vision-grid--4cols,
  .vision-grid--3cols,
  .vision-grid--2cols {
    grid-template-columns: 1fr;
  }
}



/* =====================================================
   GLOBAL RESPONSIVENESS (MOBILE & TABLET)
===================================================== */

@media (max-width: 992px) {
  :root {
    --container-padding: 2rem;
  }
  
  /* NAV BURGER & MENU */
  .nav__links {
    position: fixed;
    top: 70px;
    right: -110%;
    left: auto;
    width: 75%;
    max-width: 320px;
    height: auto;
    max-height: calc(100vh - 70px);
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1.5rem 1.5rem 2rem;
    gap: 1rem;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 999;
    border-radius: 0 0 0 12px;
    box-shadow: -4px 4px 20px rgba(0,0,0,0.3);
  }
  
  .nav__links.active {
    right: 0;
  }

  .nav__burger {
    display: flex;
  }
  
  .nav__burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .nav__burger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav__burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    margin-top: 0.25rem;
    text-align: left;
    display: none;
    width: 100%;
  }
  
  .nav__item.open .nav__dropdown {
    display: block;
  }
  
  .nav__item-link::after {
    content: ' ▾';
    font-size: 0.75rem;
  }
  
  .nav__links li,
  .nav__links .nav__item {
    width: 100%;
  }
  
  .nav__links > li > a,
  .nav__links > li > .nav__item-link {
    font-size: 1rem;
    padding: 0.5rem 0;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  /* LAYOUT GRIDS */
  .about__container,
  .participate__container,
  .gallery__grid,
  .media__grid,
  .contact__grid,
  .stats-strip {
    grid-template-columns: 1fr;
  }
  
  .nav {
    padding: 0 1rem;
  }
  
  .nav__inner {
    padding: 0;
  }
  
  .stats__grid, .promo-grid, .features-grid, .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .about-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 0 !important;
  }
  
  .about-image-col {
    width: 100%;
    order: -1;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .about-text-content {
    display: contents;
  }
  
  .about-text-content > .section-label,
  .about-text-content > h2,
  .about-text-content > h3 {
    order: -2;
  }
  
  .about-text-content > *:not(.section-label):not(h2):not(h3) {
    order: 0;
  }
  
  .about__img-stack {
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1.25rem;
  }
  .hero__content {
    padding: 0.5rem 1.25rem 4rem;
  }
  
  .hero__eyebrow {
    margin-bottom: 1.5rem;
  }
  
  .hero__badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
  }
  
  .hero__headline {
    margin-bottom: 3.5rem;
  }
  
  .hero__headline--line1 { font-size: 1.6rem; margin-bottom: 0.2rem; }
  .hero__headline--line2 { font-size: clamp(3.5rem, 14vw, 5.5rem); margin-bottom: 0.2rem; line-height: 0.95; }
  .hero__headline--line3 { font-size: 2rem; margin-top: 0; }
  
  .hero__sub {
    font-size: 0.75rem;
    margin-bottom: 2rem;
  }
  
  .hero__actions {
    flex-direction: row;
    justify-content: center;
    gap: 0.8rem;
  }
  
  .hero__actions .btn {
    width: auto;
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .stats__grid, .promo-grid, .features-grid, .highlight-grid {
    grid-template-columns: 1fr;
  }
  
  .footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
      "logo logo"
      "links events"
      "contact contact";
    gap: 2rem 1rem;
    text-align: left;
  }
  
  .footer__logo-col { grid-area: logo; }
  .footer__top > .footer__links-col:nth-child(2) { grid-area: links; }
  .footer__top > .footer__links-col:nth-child(3) { grid-area: events; }
  .footer__contact-col { grid-area: contact; }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .page-header {
    padding: 8rem 0 4rem;
  }
  
  /* Remove the white gap between page-header and first content section */
  .about-page > .about-section:first-child,
  .about-page > div:first-child > .about-section:first-child {
    padding-top: 2rem !important;
  }
  
  .page-header__title {
    font-size: 2.8rem;
  }
  
  .about-page__heading {
    font-size: 2rem !important;
  }
  
  .section-label {
    font-size: 0.75rem;
  }
  
  .stat-box__val {
    font-size: 2.5rem;
  }
  
  /* Tighten section and about-section spacing on mobile */
  .about-section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  /* Preserve hero layout if it has special padding */
  section.hero {
    padding-top: 80px !important;
    padding-bottom: 2rem !important;
    min-height: 65vh !important;
    height: auto !important;
  }
  
  .contact-num-resp {
    font-size: 1rem !important;
  }
  /* Contact form: wider card and space above */
  .contact-form-container {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 2rem;
  }

  .contact-form-container .about-page__card {
    padding: 2rem 1.5rem !important;
  }
}
