/* ════════════════════════════════════════
     TOKENS  — same palette as original
  ════════════════════════════════════════ */
  :root {
    --forest-green: #1e4a24;
    --deep-green:   #142d18;
    --mid-green:    #2e6634;
    --bright-green: #3f7b43;
    --sage:         #5a8f60;
    --soft-green:   #d4e8d6;
    --pale-green:   #eef6ef;
    --cream:        #faf9f4;
    --warm-white:   #f5f3ee;
    --gold:         #c9a84c;
    --gold-light:   #e8ca7a;
    --gold-dark:    #9a7630;
    --gold-pale:    #f5e9c4;
    --ease: cubic-bezier(.22,1,.36,1);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: #1a2e1c;
    overflow-x: hidden;
  }

  /* ════════════════════════════════════════
     CURSOR
  ════════════════════════════════════════ */
  .c-dot, .c-ring {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%,-50%);
  }
  .c-dot {
    width: 7px; height: 7px;
    background: var(--gold);
    transition: width .15s, height .15s;
  }
  .c-ring {
    width: 30px; height: 30px;
    border: 1.5px solid rgba(201,168,76,.45);
    transition: width .2s, height .2s, border-color .2s;
  }

  /* ════════════════════════════════════════
     NAVBAR
  ════════════════════════════════════════ */
  .navbar {
    background: transparent;
    padding: 22px 0;
    transition: all .45s var(--ease);
    z-index: 1000;
  }
  .navbar.scrolled {
    background: rgba(20,45,24,.97);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 40px rgba(0,0,0,.25);
    border-bottom: 1px solid rgba(201,168,76,.12);
  }
  .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff !important;
    letter-spacing: .01em;
    display: flex; align-items: center; gap: 10px;
  }
  .brand-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(201,168,76,.35);
    flex-shrink: 0;
  }
  .nav-link {
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75) !important;
    padding: 6px 14px !important;
    position: relative;
    transition: color .3s;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 14px; right: 14px;
    height: 1.5px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
    border-radius: 99px;
  }
  .nav-link:hover { color: var(--gold-light) !important; }
  .nav-link:hover::after { transform: scaleX(1); }

  .nav-login-btn {
    display: flex; align-items: center; gap: 7px;
    padding: 9px 20px !important;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--deep-green) !important;
    font-weight: 600 !important;
    border-radius: 8px;
    font-size: .75rem !important;
    letter-spacing: .08em;
    transition: transform .25s, box-shadow .25s, filter .25s !important;
    box-shadow: 0 4px 14px rgba(201,168,76,.3);
    margin-left: 8px;
  }
  .nav-login-btn::after { display: none !important; }
  .nav-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,.45) !important;
    filter: brightness(1.05);
    color: var(--deep-green) !important;
  }
  .navbar-toggler { border: 1px solid rgba(201,168,76,.4); }
  .navbar-toggler-icon { filter: invert(1); }

  /* ════════════════════════════════════════
     PROGRESS BAR (reading indicator)
  ════════════════════════════════════════ */
  #read-bar {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--mid-green), var(--gold), var(--gold-light));
    z-index: 99999;
    transition: width .1s linear;
  }

  /* ════════════════════════════════════════
     HERO
  ════════════════════════════════════════ */
  .hero-section {
    min-height: 100vh;
    background:
      linear-gradient(160deg, rgba(20,45,24,.93) 0%, rgba(30,74,36,.85) 50%, rgba(46,102,52,.8) 100%),
      url('../images/patt.jpg') center/cover fixed;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
  }

  /* Animated grain */
  .hero-section::before {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");
    opacity: .5; pointer-events: none;
  }

  /* Floating orbs */
  .hero-orb {
    position: absolute; border-radius: 50%;
    pointer-events: none; z-index: 1;
  }
  .hero-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,.12), transparent 70%);
    top: -100px; right: -100px;
    animation: orbFloat 8s ease-in-out infinite alternate;
  }
  .hero-orb-2 {
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(63,123,67,.2), transparent 70%);
    bottom: 0; left: -80px;
    animation: orbFloat 10s ease-in-out infinite alternate-reverse;
  }

  /* Vertical accent lines */
  .hero-vlines {
    position: absolute; inset: 0; z-index: 1; overflow: hidden;
  }
  .hero-vlines i {
    position: absolute;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(201,168,76,.2), transparent);
    animation: vlineFall 9s linear infinite;
  }
  .hero-vlines i:nth-child(1) { left: 12%; height: 55%; animation-delay: 0s; }
  .hero-vlines i:nth-child(2) { left: 30%; height: 40%; animation-delay: 2.5s; }
  .hero-vlines i:nth-child(3) { left: 60%; height: 65%; animation-delay: 1s; }
  .hero-vlines i:nth-child(4) { left: 80%; height: 45%; animation-delay: 3.5s; }
  .hero-vlines i:nth-child(5) { left: 47%; height: 35%; animation-delay: 5s; }

  .hero-content {
    position: relative; z-index: 2;
    text-align: center;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(201,168,76,.15);
    border: 1px solid rgba(201,168,76,.35);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: 99px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    opacity: 0;
    animation: fadeSlideUp .7s var(--ease) .3s forwards;
  }
  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: dotBlink 1.8s ease-in-out infinite;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7.5vw, 6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeSlideUp .85s var(--ease) .5s forwards;
  }
  .hero-title span {
    color: var(--gold-light);
    font-style: italic;
    display: block;
  }

  .hero-divider {
    width: 0; height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 22px auto;
    animation: dividerGrow .7s var(--ease) 1.1s forwards;
    border-radius: 99px;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,.68);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeSlideUp .8s var(--ease) .75s forwards;
  }

  .hero-btns {
    display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
    opacity: 0;
    animation: fadeSlideUp .8s var(--ease) .95s forwards;
  }

  .btn-elegant {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 30px;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .3s var(--ease), box-shadow .3s, filter .3s;
    position: relative; overflow: hidden;
  }
  .btn-elegant::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
    opacity: 0; transition: opacity .3s;
  }
  .btn-elegant:hover { transform: translateY(-3px); }
  .btn-elegant:hover::after { opacity: 1; }
  .btn-elegant:active { transform: translateY(0); }

  .btn-primary-elegant {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    background-size: 200%;
    color: var(--deep-green) !important;
    box-shadow: 0 5px 20px rgba(201,168,76,.35);
  }
  .btn-primary-elegant:hover {
    box-shadow: 0 12px 32px rgba(201,168,76,.5);
    filter: brightness(1.05);
    color: var(--deep-green) !important;
  }

  .btn-gold-elegant {
    background: transparent;
    color: rgba(255,255,255,.85) !important;
    border: 1.5px solid rgba(255,255,255,.3);
  }
  .btn-gold-elegant:hover {
    border-color: var(--gold);
    color: var(--gold-light) !important;
    background: rgba(201,168,76,.08);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
  }

  /* Hero scroll indicator */
  .hero-scroll {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0;
    animation: fadeSlideUp .7s var(--ease) 1.5s forwards;
  }
  .hero-scroll span {
    font-size: .62rem; letter-spacing: .2em;
    text-transform: uppercase; color: rgba(255,255,255,.35);
  }
  .scroll-mouse {
    width: 21px; height: 33px;
    border: 1.5px solid rgba(255,255,255,.2);
    border-radius: 10px;
    display: flex; justify-content: center; padding-top: 5px;
  }
  .scroll-wheel {
    width: 3px; height: 6px;
    background: var(--gold);
    border-radius: 99px;
    animation: wheelScroll 1.8s ease-in-out infinite;
  }

  /* Hero floating stat pills */
  .hero-stat-pills {
    display: flex; justify-content: center; gap: 12px;
    flex-wrap: wrap; margin-top: 48px;
    opacity: 0;
    animation: fadeSlideUp .8s var(--ease) 1.2s forwards;
  }
  .stat-pill {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    padding: 14px 22px;
    text-align: center;
    color: #fff;
    min-width: 110px;
    transition: background .3s, transform .3s, border-color .3s;
  }
  .stat-pill:hover {
    background: rgba(201,168,76,.18);
    border-color: rgba(201,168,76,.4);
    transform: translateY(-4px);
  }
  .stat-pill .num {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem; font-weight: 700;
    color: var(--gold-light); line-height: 1; display: block;
  }
  .stat-pill .lbl {
    font-size: .65rem; opacity: .7; letter-spacing: .1em;
    text-transform: uppercase; margin-top: 4px; display: block;
  }

  /* ════════════════════════════════════════
     MARQUEE TICKER
  ════════════════════════════════════════ */
  .ticker-strip {
    background: linear-gradient(135deg, var(--forest-green), var(--mid-green));
    border-top: 1px solid rgba(201,168,76,.2);
    border-bottom: 1px solid rgba(201,168,76,.2);
    padding: 12px 0;
    overflow: hidden;
  }
  .ticker-inner {
    display: flex; width: max-content;
    animation: tickerRoll 22s linear infinite;
  }
  .ticker-inner:hover { animation-play-state: paused; }
  .ticker-item {
    display: flex; align-items: center; gap: 10px;
    padding: 0 36px;
    font-size: .72rem; font-weight: 600;
    letter-spacing: .16em; text-transform: uppercase;
    color: rgba(255,255,255,.7); white-space: nowrap;
  }
  .ticker-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0;
  }

  /* ════════════════════════════════════════
     SECTIONS
  ════════════════════════════════════════ */
  section { padding: 100px 0; }

  .decorative-line {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 99px; margin-bottom: 20px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 12px;
    line-height: 1.15;
  }

  .section-subtitle {
    font-size: .95rem; font-weight: 300;
    color: #5a7060; line-height: 1.75;
    margin-bottom: 50px;
  }

  /* Reveal animation */
  [data-animate] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .75s var(--ease), transform .75s var(--ease);
  }
  [data-animate].animated { opacity: 1; transform: translateY(0); }
  [data-animate][data-delay="1"] { transition-delay: .1s; }
  [data-animate][data-delay="2"] { transition-delay: .2s; }
  [data-animate][data-delay="3"] { transition-delay: .3s; }
  [data-animate][data-delay="4"] { transition-delay: .4s; }
  [data-animate][data-delay="5"] { transition-delay: .5s; }

  /* ════════════════════════════════════════
     ABOUT
  ════════════════════════════════════════ */
  .about-section {
    background: linear-gradient(135deg, var(--cream), var(--soft-green));
    position: relative; overflow: hidden;
  }
  .about-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(63,123,67,.07), transparent 70%);
    top: -100px; right: -100px;
    pointer-events: none;
  }

  .feature-card {
    background: #fff;
    border: 1px solid rgba(20,74,36,.08);
    border-radius: 16px;
    padding: 36px 28px;
    height: 100%;
    transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
    position: relative; overflow: hidden;
  }
  .feature-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,.05), transparent);
    opacity: 0; transition: opacity .35s;
  }
  .feature-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s var(--ease);
    border-radius: 0 0 16px 16px;
  }
  .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(20,74,36,.12);
    border-color: rgba(201,168,76,.25);
  }
  .feature-card:hover::before { opacity: 1; }
  .feature-card:hover::after { transform: scaleX(1); }

  .feature-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--forest-green), var(--mid-green));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-light);
    font-size: 1.4rem;
    margin-bottom: 22px;
    box-shadow: 0 8px 20px rgba(20,74,36,.2);
    transition: transform .3s, box-shadow .3s;
  }
  .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-4deg);
    box-shadow: 0 12px 28px rgba(20,74,36,.3);
  }

  /* ════════════════════════════════════════
     HOW IT WORKS
  ════════════════════════════════════════ */
  .how-section { background: #fff; }

  .glass-card {
    background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(238,246,239,.6));
    backdrop-filter: blur(8px);
    border: 1px solid rgba(20,74,36,.08);
    border-radius: 20px;
    padding: 40px 28px;
    height: 100%;
    transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
    position: relative; overflow: hidden;
  }
  .glass-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,.06), transparent);
    opacity: 0; transition: opacity .35s;
    border-radius: 20px;
  }
  .glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(20,74,36,.11);
    border-color: rgba(201,168,76,.3);
  }
  .glass-card:hover::after { opacity: 1; }

  .step-number {
    position: absolute;
    top: 16px; right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: rgba(30,74,36,.05);
    line-height: 1;
    user-select: none;
    transition: color .35s;
  }
  .glass-card:hover .step-number { color: rgba(201,168,76,.08); }
  .glass-card .feature-icon { position: relative; z-index: 1; }

  /* ════════════════════════════════════════
     STATS SECTION
  ════════════════════════════════════════ */
  .stats-section {
    background: linear-gradient(135deg, var(--forest-green), var(--mid-green), var(--bright-green));
    position: relative; overflow: hidden;
    padding: 70px 0;
  }
  .stats-section::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      90deg, transparent, transparent 80px,
      rgba(255,255,255,.02) 80px, rgba(255,255,255,.02) 81px
    );
  }
  .stats-section::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,168,76,.1), transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    pointer-events: none;
  }

  .stat-box {
    text-align: center;
    padding: 16px;
    position: relative; z-index: 1;
    transition: transform .3s;
  }
  .stat-box:hover { transform: scale(1.06); }
  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1; display: block;
    margin-bottom: 8px;
  }
  .stat-label {
    font-size: .7rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
  }
  .stat-separator {
    width: 1px;
    background: rgba(255,255,255,.1);
    align-self: stretch; margin: 8px 0;
  }

  /* ════════════════════════════════════════
     ACTIVITIES
  ════════════════════════════════════════ */
  .activities-section { background: var(--warm-white); }

  .activity-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(20,45,24,.07);
    transition: transform .4s var(--ease), box-shadow .4s;
    height: 100%;
  }
  .activity-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 24px 60px rgba(20,45,24,.14);
  }
  .activity-image {
    position: relative; overflow: hidden; height: 210px;
  }
  .activity-image img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .65s var(--ease);
  }
  .activity-card:hover .activity-image img { transform: scale(1.1); }
  .activity-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(20,45,24,.8));
    display: flex; flex-direction: column;
    justify-content: flex-end; padding: 16px;
    opacity: 0; transition: opacity .4s;
  }
  .activity-card:hover .activity-overlay { opacity: 1; }
  .activity-tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(201,168,76,.2);
    border: 1px solid rgba(201,168,76,.4);
    color: var(--gold-light);
    padding: 4px 10px; border-radius: 99px;
    font-size: .65rem; font-weight: 600; letter-spacing: .1em;
    text-transform: uppercase; width: fit-content;
  }
  .activity-content {
    padding: 22px 20px;
    border-top: 2px solid transparent;
    transition: border-color .35s;
  }
  .activity-card:hover .activity-content { border-color: var(--gold); }
  .activity-content h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700;
    color: var(--forest-green); margin-bottom: 8px;
  }
  .activity-content p {
    font-size: .86rem; color: #5a7060; line-height: 1.7; margin: 0;
  }

  /* ════════════════════════════════════════
     TESTIMONIALS
  ════════════════════════════════════════ */
  .testimonial-section {
    background: linear-gradient(135deg, var(--forest-green), var(--deep-green));
    overflow: hidden; padding: 90px 0;
    position: relative;
  }
  .testimonial-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
    opacity: .4; pointer-events: none;
  }

  .testi-wave {
    display: flex; gap: 20px; padding: 12px 0;
    animation: tickerRoll 30s linear infinite;
    width: max-content;
  }
  .testi-wave:hover { animation-play-state: paused; }
  .testimonial-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 28px 24px;
    width: 320px; flex-shrink: 0;
    position: relative;
    transition: background .3s, border-color .3s, transform .3s;
  }
  .testimonial-card:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(201,168,76,.35);
    transform: translateY(-6px);
  }
  .testi-big-quote {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; line-height: 1;
    color: rgba(201,168,76,.2); position: absolute;
    top: 12px; right: 18px; user-select: none;
  }
  .testi-stars { color: var(--gold); font-size: .8rem; margin-bottom: 12px; letter-spacing: 2px; }
  .testimonial-card p {
    font-family: 'Playfair Display', serif;
    font-size: .98rem; font-style: italic;
    color: rgba(255,255,255,.85); line-height: 1.75; margin-bottom: 18px;
  }
  .testi-meta { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: .95rem; font-weight: 700;
    color: var(--deep-green); flex-shrink: 0;
  }
  .testi-meta h6 {
    font-size: .82rem; font-weight: 600;
    color: var(--gold-light); margin: 0 0 2px;
  }
  .testi-meta small { font-size: .72rem; color: rgba(255,255,255,.45); }

  /* ════════════════════════════════════════
     TEAM
  ════════════════════════════════════════ */
  .team-section { background: #fff; }

  .team-card {
    text-align: center;
    background: linear-gradient(160deg, #fff, var(--pale-green));
    border: 1px solid rgba(20,74,36,.08);
    border-radius: 20px;
    padding: 36px 24px 28px;
    height: 100%;
    transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
    position: relative; overflow: hidden;
  }
  .team-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0); transform-origin: center;
    transition: transform .4s var(--ease);
  }
  .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(20,74,36,.12);
    border-color: rgba(201,168,76,.3);
  }
  .team-card:hover::after { transform: scaleX(1); }

  .team-img {
    width: 130px; height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid rgba(201,168,76,.3);
    box-shadow: 0 8px 24px rgba(20,74,36,.15);
    transition: border-color .3s, box-shadow .3s;
    position: relative;
  }
  .team-card:hover .team-img {
    border-color: var(--gold);
    box-shadow: 0 12px 32px rgba(201,168,76,.25);
  }
  .team-img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .5s var(--ease);
  }
  .team-card:hover .team-img img { transform: scale(1.1); }
  .team-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 700;
    color: var(--forest-green); margin-bottom: 4px;
  }
  .team-card p {
    font-size: .75rem; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--gold-dark); margin-bottom: 16px;
  }

  .social-icons { display: flex; justify-content: center; gap: 10px; }
  .social-icons a {
    width: 36px; height: 36px;
    border: 1.5px solid rgba(20,74,36,.15);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--forest-green);
    font-size: .9rem; text-decoration: none;
    transition: background .25s, border-color .25s, color .25s, transform .25s;
  }
  .social-icons a:hover {
    background: var(--forest-green);
    border-color: var(--forest-green);
    color: var(--gold-light);
    transform: translateY(-3px);
  }

  /* ════════════════════════════════════════
     CONTACT
  ════════════════════════════════════════ */
  .contact-section {
    background: linear-gradient(160deg, var(--forest-green), var(--deep-green));
    position: relative; overflow: hidden;
  }
  .contact-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,.08), transparent 70%);
    bottom: -200px; right: -100px; pointer-events: none;
  }

  .contact-info-box {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px; padding: 28px;
    display: flex; align-items: flex-start; gap: 16px;
    margin-bottom: 16px;
    transition: background .3s, border-color .3s, transform .3s;
  }
  .contact-info-box:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(201,168,76,.25);
    transform: translateX(6px);
  }
  .contact-icon {
    width: 46px; height: 46px;
    background: rgba(201,168,76,.15);
    border: 1px solid rgba(201,168,76,.3);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-light); font-size: 1.1rem; flex-shrink: 0;
  }
  .contact-info-box strong {
    display: block;
    font-size: .7rem; letter-spacing: .12em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 4px;
  }
  .contact-info-box span { font-size: .9rem; color: rgba(255,255,255,.65); }

  .contact-form .form-label {
    font-size: .72rem; letter-spacing: .1em;
    text-transform: uppercase; color: rgba(255,255,255,.5);
    font-weight: 500; margin-bottom: 8px;
  }
  .contact-form .form-control,
  .contact-form .input-group-text {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: #fff; border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: .92rem;
    transition: border-color .3s, background .3s, box-shadow .3s;
  }
  .contact-form .input-group-text {
    background: rgba(255,255,255,.05);
    color: var(--gold); border-right: none;
    border-radius: 10px 0 0 10px;
  }
  .contact-form .input-group .form-control { border-left: none; border-radius: 0 10px 10px 0; }
  .contact-form .form-control::placeholder { color: rgba(255,255,255,.2); }
  .contact-form .form-control:focus {
    background: rgba(255,255,255,.1);
    border-color: rgba(201,168,76,.5);
    box-shadow: 0 0 0 3px rgba(201,168,76,.1);
    color: #fff;
  }

  /* ════════════════════════════════════════
     BACK TO TOP
  ════════════════════════════════════════ */
  #backTop {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border: none; border-radius: 12px;
    color: var(--deep-green);
    font-size: 1rem; cursor: pointer;
    box-shadow: 0 6px 20px rgba(201,168,76,.35);
    display: flex; align-items: center; justify-content: center;
    z-index: 9000;
    opacity: 0; pointer-events: none;
    transform: translateY(12px);
    transition: opacity .3s, transform .3s, box-shadow .3s;
  }
  #backTop.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
  #backTop:hover { box-shadow: 0 10px 28px rgba(201,168,76,.5); transform: translateY(-3px); }

  /* ════════════════════════════════════════
     FOOTER
  ════════════════════════════════════════ */
  footer {
    background: var(--deep-green);
    border-top: 1px solid rgba(201,168,76,.12);
    padding: 48px 0 28px;
  }
  .footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem; font-weight: 700;
    color: #fff; margin-bottom: 6px;
    display: flex; align-items: center; gap: 10px;
  }
  .footer-tagline { font-size: .8rem; color: rgba(255,255,255,.35); letter-spacing: .05em; }
  .footer-links a {
    font-size: .75rem; letter-spacing: .1em;
    text-transform: uppercase; color: rgba(255,255,255,.4);
    text-decoration: none; display: block; margin-bottom: 8px;
    transition: color .2s, transform .2s;
  }
  .footer-links a:hover { color: var(--gold); transform: translateX(4px); }
  .footer-col-title {
    font-size: .68rem; letter-spacing: .16em;
    text-transform: uppercase; color: var(--gold);
    font-weight: 600; margin-bottom: 16px;
  }
  .footer-socials { display: flex; gap: 10px; }
  .footer-socials a {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.5); font-size: .9rem; text-decoration: none;
    transition: background .25s, border-color .25s, color .25s;
  }
  .footer-socials a:hover {
    background: var(--gold); border-color: var(--gold);
    color: var(--deep-green);
  }
  .footer-hr { border-color: rgba(255,255,255,.06); margin: 32px 0 20px; }
  .footer-copy {
    font-size: .78rem; color: rgba(255,255,255,.25);
    letter-spacing: .04em;
  }

  /* ════════════════════════════════════════
     ★ NEW: PHOTO CAROUSEL
  ════════════════════════════════════════ */
  .carousel-section {
    background: linear-gradient(135deg, var(--deep-green), var(--forest-green));
    padding: 90px 0;
    overflow: hidden;
    position: relative;
  }
  .carousel-section::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      45deg, transparent, transparent 60px,
      rgba(255,255,255,.015) 60px, rgba(255,255,255,.015) 61px
    );
    pointer-events: none;
  }
  .carousel-section .section-title { color: #fff; }
  .carousel-section .section-subtitle { color: rgba(255,255,255,.5); }

  /* Track wrapper */
  .caro-track-wrap {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
  }
  /* Fade edges */
  .caro-track-wrap::before,
  .caro-track-wrap::after {
    content: '';
    position: absolute; top: 0; bottom: 0;
    width: 120px; z-index: 3; pointer-events: none;
  }
  .caro-track-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--forest-green), transparent);
  }
  .caro-track-wrap::after {
    right: 0;
    background: linear-gradient(270deg, var(--forest-green), transparent);
  }

  .caro-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: caroScroll 50s linear infinite;
    animation-direction: reverse;
  }
  .caro-track:hover { animation-play-state: paused; }

  .caro-item {
    width: 600px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0,0,0,.35);
    border: 1.5px solid rgba(255,255,255,.08);
    transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
  }
  .caro-item:hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
    border-color: rgba(201,168,76,.5);
    z-index: 2;
  }
  .caro-item img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .6s var(--ease), filter .4s;
    filter: brightness(.85) saturate(1.1);
  }
  .caro-item:hover img {
    transform: scale(1.12);
    filter: brightness(1) saturate(1.2);
  }
  .caro-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,30,12,.85));
    display: flex; align-items: flex-end;
    padding: 14px 16px;
    opacity: 0;
    transition: opacity .4s;
  }
  .caro-item:hover .caro-item-overlay { opacity: 1; }
  .caro-item-label {
    font-size: .72rem; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--gold-light);
    display: flex; align-items: center; gap: 6px;
  }
  .caro-item-label i { font-size: .8rem; }

  /* Lightbox */
  .lightbox {
    display: none;
    position: fixed; inset: 0; z-index: 99998;
    background: rgba(10,25,12,.92);
    backdrop-filter: blur(18px);
    align-items: center; justify-content: center;
  }
  .lightbox.open { display: flex; }
  .lightbox-inner {
    max-width: 85vw; max-height: 80vh;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,.8);
    border: 1px solid rgba(201,168,76,.25);
    animation: lbIn .35s var(--ease);
  }
  .lightbox-inner img {
    display: block;
    max-width: 85vw;
    max-height: 78vh;
    object-fit: contain;
  }
  .lightbox-close {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px;
    background: rgba(0,0,0,.6);
    border: 1px solid rgba(201,168,76,.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-light);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background .2s, transform .2s;
    z-index: 2;
  }
  .lightbox-close:hover { background: rgba(201,168,76,.2); transform: rotate(90deg); }
  .lightbox-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 14px 20px;
    background: linear-gradient(180deg, transparent, rgba(10,25,12,.85));
    color: rgba(255,255,255,.7);
    font-size: .78rem; letter-spacing: .06em;
    text-align: center;
  }

  @keyframes lbIn {
    from { opacity: 0; transform: scale(.9); }
    to { opacity: 1; transform: scale(1); }
  }
  @keyframes caroScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ════════════════════════════════════════
     ★ NEW: LATEST NEWS / ANNOUNCEMENTS
  ════════════════════════════════════════ */
  .news-section { background: var(--pale-green); padding: 100px 0; }

  /* ── Card base ── */
  .news-card {
    background: #fff;
    border: 1px solid rgba(20,74,36,.08);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
    position: relative;
  }
  .news-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s var(--ease);
    z-index: 3;
  }
  .news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(20,74,36,.12);
    border-color: rgba(201,168,76,.25);
  }
  .news-card:hover::before { transform: scaleX(1); }

  /* ── Pinned: gold top border always visible ── */
  .news-card--pinned::before {
    transform: scaleX(1) !important;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  }

  /* ── Cover image zone ── */
  .news-card-img-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
    background: #c8d8c8;
  }
  .news-card-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 70px;
    background: linear-gradient(transparent, rgba(14,35,16,.4));
    pointer-events: none;
    z-index: 1;
  }
  .news-card-img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .55s var(--ease);
  }
  .news-card:hover .news-card-img { transform: scale(1.06); }

  /* ── No-image placeholder ── */
  .news-card-no-img {
    width: 100%; height: 80px;
    background: linear-gradient(135deg, var(--pale-green), var(--soft-green));
    display: flex; align-items: center; justify-content: center;
    color: var(--sage); font-size: 1.8rem; opacity: .5;
    flex-shrink: 0;
  }

  /* ── Badge over image (bottom-left) ── */
  .news-card-badge-img {
    position: absolute;
    bottom: 10px; left: 12px;
    z-index: 2;
    backdrop-filter: blur(6px);
    background: rgba(255,255,255,.88) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    margin-bottom: 0 !important;
  }

  /* ── Pinned chip over image (top-right) ── */
  .news-pinned-chip {
    position: absolute;
    top: 10px; right: 12px;
    z-index: 2;
    display: inline-flex; align-items: center; gap: 4px;
    font-size: .6rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--deep-green);
    padding: 3px 9px; border-radius: 99px;
    box-shadow: 0 2px 8px rgba(0,0,0,.18);
  }
  /* Inline variant (no-image cards) */
  .news-pinned-chip--inline {
    position: static;
    background: var(--gold-pale);
    color: var(--gold-dark);
    box-shadow: none;
  }

  /* ── Inline badge (no-image cards) ── */
  .news-card-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--gold-pale);
    color: var(--gold-dark);
    padding: 4px 10px; border-radius: 99px;
    font-size: .64rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    margin-bottom: 12px;
  }

  .news-card-body { padding: 22px 22px 16px; flex: 1; }
  .news-card-date { font-size: .72rem; color: #9ab09c; letter-spacing: .08em; margin-bottom: 8px; }
  .news-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; font-weight: 700;
    color: var(--forest-green); margin-bottom: 10px;
    line-height: 1.4;
  }
  .news-card-excerpt { font-size: .84rem; color: #5a7060; line-height: 1.75; margin: 0; }
  .news-card-footer {
    padding: 14px 22px;
    border-top: 1px solid rgba(20,74,36,.06);
    display: flex; align-items: center; justify-content: space-between;
    margin-top: auto;
  }
  .news-read-more {
    font-size: .74rem; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    color: var(--forest-green); text-decoration: none;
    display: flex; align-items: center; gap: 5px;
    transition: color .2s, gap .2s;
  }
  .news-read-more:hover { color: var(--gold-dark); gap: 9px; }

  /* ════════════════════════════════════════
     ★ NEW: UPCOMING EVENTS TIMELINE
  ════════════════════════════════════════ */
  .events-section {
    background: #fff;
    padding: 100px 0;
  }
  .event-timeline { position: relative; padding-left: 0; }
  .event-timeline::before {
    content: '';
    position: absolute;
    left: 28px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), var(--forest-green), var(--gold));
    border-radius: 99px;
  }
  .event-item {
    display: flex; gap: 24px; align-items: flex-start;
    margin-bottom: 32px;
    padding-left: 56px;
    position: relative;
  }
  .event-dot {
    position: absolute;
    left: 20px; top: 14px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(201,168,76,.25);
    transition: transform .3s, box-shadow .3s;
    flex-shrink: 0;
    z-index: 1;
  }
  .event-item:hover .event-dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 5px rgba(201,168,76,.2);
  }
  .event-body {
    background: var(--pale-green);
    border: 1px solid rgba(20,74,36,.08);
    border-radius: 14px; padding: 20px 22px;
    flex: 1;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    position: relative;
  }
  .event-item:hover .event-body {
    transform: translateX(6px);
    box-shadow: 0 10px 30px rgba(20,74,36,.1);
    border-color: rgba(201,168,76,.3);
  }
  .event-date-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--forest-green);
    color: var(--gold-light);
    padding: 4px 12px; border-radius: 99px;
    font-size: .66rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    margin-bottom: 10px;
  }
  .event-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 700;
    color: var(--forest-green); margin-bottom: 6px;
  }
  .event-meta { font-size: .78rem; color: #7a9a7e; display: flex; gap: 14px; flex-wrap: wrap; }
  .event-meta i { color: var(--gold-dark); }

  /* ════════════════════════════════════════
     ★ NEW: FAQ ACCORDION
  ════════════════════════════════════════ */
  .faq-section {
    background: linear-gradient(135deg, var(--cream), var(--soft-green));
    padding: 100px 0;
    position: relative;
  }
  .faq-section::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,168,76,.06), transparent 70%);
    bottom: 0; left: -100px; pointer-events: none;
  }
  .faq-item {
    background: #fff;
    border: 1px solid rgba(20,74,36,.08);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow .3s, border-color .3s;
  }
  .faq-item.open { border-color: rgba(201,168,76,.3); box-shadow: 0 8px 24px rgba(20,74,36,.08); }
  .faq-question {
    width: 100%; background: none; border: none;
    padding: 20px 24px;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer;
    text-align: left;
    transition: background .3s;
  }
  .faq-question:hover { background: var(--pale-green); }
  .faq-q-text {
    font-family: 'Playfair Display', serif;
    font-size: .98rem; font-weight: 600;
    color: var(--forest-green);
  }
  .faq-icon {
    width: 28px; height: 28px;
    background: var(--forest-green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-light); font-size: .85rem;
    flex-shrink: 0; margin-left: 12px;
    transition: background .3s, transform .4s;
  }
  .faq-item.open .faq-icon {
    background: var(--gold);
    color: var(--deep-green);
    transform: rotate(45deg);
  }
  .faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height .45s var(--ease), padding .3s;
    padding: 0 24px;
  }
  .faq-answer-inner {
    padding-bottom: 20px;
    font-size: .88rem; color: #5a7060; line-height: 1.8;
    border-top: 1px solid rgba(20,74,36,.06);
    padding-top: 16px;
  }
  .faq-item.open .faq-answer { max-height: 300px; }

  /* ════════════════════════════════════════
     ★ NEW: NEWSLETTER SUBSCRIBE BAND
  ════════════════════════════════════════ */
  .newsletter-band {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    padding: 60px 0;
    position: relative; overflow: hidden;
  }
  .newsletter-band::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      -45deg, transparent, transparent 30px,
      rgba(255,255,255,.04) 30px, rgba(255,255,255,.04) 31px
    );
    pointer-events: none;
  }
  .newsletter-band h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem; font-weight: 700;
    color: var(--deep-green); margin-bottom: 6px;
  }
  .newsletter-band p { font-size: .9rem; color: rgba(20,45,24,.7); }
  .newsletter-input-group {
    display: flex; gap: 0; max-width: 460px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
  }
  .newsletter-input-group input {
    flex: 1; border: none; outline: none;
    padding: 14px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem; color: #1a2e1c;
    background: transparent;
  }
  .newsletter-input-group input::placeholder { color: #a0b0a2; }
  .newsletter-input-group button {
    padding: 14px 26px;
    background: var(--forest-green);
    color: var(--gold-light);
    border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: .82rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    transition: background .25s, padding .25s;
    display: flex; align-items: center; gap: 7px;
  }
  .newsletter-input-group button:hover { background: var(--deep-green); padding-right: 30px; }

  /* ════════════════════════════════════════
     KEYFRAMES
  ════════════════════════════════════════ */
  @keyframes fadeSlideUp {
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes dividerGrow { to { width: 160px; } }
  @keyframes orbFloat {
    from { transform: translateY(0) scale(1); }
    to   { transform: translateY(-30px) scale(1.05); }
  }
  @keyframes vlineFall {
    0%   { top: -100%; opacity: 0; }
    15%  { opacity: 1; }
    85%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
  }
  @keyframes dotBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: .3; }
  }
  @keyframes wheelScroll {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50%       { transform: translateY(8px); opacity: .2; }
  }
  @keyframes tickerRoll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ════════════════════════════════════════
     RESPONSIVE
  ════════════════════════════════════════ */
  @media (max-width: 768px) {
    section { padding: 70px 0; }
    .hero-title { font-size: 2.8rem; }
    .hero-stat-pills { gap: 8px; }
    .stat-pill { min-width: 90px; padding: 10px 14px; }
    .stat-pill .num { font-size: 1.4rem; }
    .caro-item { width: 320px; height: 210px; }
    .event-timeline::before { left: 16px; }
    .event-item { padding-left: 42px; }
    .event-dot { left: 8px; }
    .newsletter-input-group { flex-direction: column; border-radius: 12px; }
    .newsletter-input-group button { justify-content: center; border-radius: 0 0 12px 12px; }
  }
  .team-card {
  cursor: pointer;
}
.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(20,45,24,.0), rgba(20,45,24,.85));
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity .4s var(--ease);
  z-index: 2;
}
.team-card:hover .team-card-overlay { opacity: 1; }
.team-overlay-text {
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}
.team-overlay-text i { color: var(--gold-light); }
.team-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--deep-green);
  border: none;
  border-radius: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}
.team-view-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(201,168,76,.4); }

/* ── PORTFOLIO MODAL ── */
.portfolio-modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99990;
  background: rgba(10,20,12,.75);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.portfolio-modal-bg.open { display: flex; }

.portfolio-modal-box {
  width: 100%;
  max-width: 980px;
  height: 88vh;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
  border: 1px solid rgba(201,168,76,.2);
  display: flex;
  flex-direction: column;
  animation: pmIn .4s cubic-bezier(.22,1,.36,1);
}
@keyframes pmIn {
  from { opacity: 0; transform: scale(.94) translateY(20px); }
  to   { opacity: 1; transform: scale(1)  translateY(0); }
}

.portfolio-modal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--deep-green);
  border-bottom: 1px solid rgba(201,168,76,.15);
  flex-shrink: 0;
}
.pm-dots { display: flex; gap: 7px; }
.pm-dot  { width: 11px; height: 11px; border-radius: 50%; }
.pm-url-bar {
  flex: 1;
  margin: 0 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pm-url-bar i { color: var(--gold); font-size: .7rem; }
.pm-close {
  width: 30px; height: 30px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  font-size: .9rem;
  transition: background .2s, color .2s, transform .2s;
}
.pm-close:hover { background: rgba(220,53,69,.25); color: #ff6b6b; transform: rotate(90deg); }

.pm-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--deep-green);
  border: none;
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  text-decoration: none;
  transition: filter .2s;
}
.pm-open-btn:hover { filter: brightness(1.1); }

.portfolio-modal-iframe {
  flex: 1;
  width: 100%;
  border: none;
  display: block;
}
.ann-show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid rgba(26,60,46,.2);
  color: var(--forest-green, #1a3c2e);
  padding: 11px 28px;
  border-radius: 99px;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .25s;
}
.ann-show-more-btn:hover {
  background: var(--forest-green, #1a3c2e);
  border-color: var(--forest-green, #1a3c2e);
  color: var(--gold, #d4af37);
}
.ann-show-more-btn i {
  transition: transform .3s;
}
.ann-show-more-btn.open i {
  transform: rotate(180deg);
}
 
/* Slide-in animation for revealed cards */
#ann-extra-row .col-md-4 {
  animation: annFadeUp .4s ease both;
}
#ann-extra-row .col-md-4:nth-child(2) { animation-delay: .07s; }
#ann-extra-row .col-md-4:nth-child(3) { animation-delay: .14s; }
#ann-extra-row .col-md-4:nth-child(4) { animation-delay: .21s; }
#ann-extra-row .col-md-4:nth-child(5) { animation-delay: .28s; }
#ann-extra-row .col-md-4:nth-child(6) { animation-delay: .35s; }
 
@keyframes annFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}