
  :root {
   --green: #317039;
    --deep-gold: #C47F00;
    --dark-gold:  #FFF9EE;
    --black: #1A0F00;
    --cream: #FFF9EE;
    --rust: #B84B00;
    --terracotta: #C25A2A;
    --sand: #FFF9EE;
    --deep-red: #8B1A1A;
    --teal: #1A6B6B;
    --warm-white: #FFF9EE;
    --orange: #DD5C35;
    --yellow: #F1BE49;
    --white: #FFF9EE;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
   font-family: "Inter", sans-serif;
    background: var(--warm-white);
    color: var(--black);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background:#317039;
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--yellow);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo img { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--yellow); }
  .nav-logo-text .name { font-size: 1rem; font-weight: 700; color: var(--yellow); }
  .nav-logo-text .tag { font-size: 0.65rem; color: var(--sand); letter-spacing: 1.5px; text-transform: uppercase; }
  .nav-links { display: flex; list-style: none; gap: 0.25rem; align-items: center; }
  .nav-links a { text-decoration: none; color: var(--sand); font-size: 0.82rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 8px 14px; border-radius: 4px; transition: color 0.3s; position: relative; }
  .nav-links a::after { content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--yellow); transition: width 0.3s; border-radius: 2px; }
  .nav-links a:hover { color: var(--yellow); }
 
  .nav-cta { background: var(--yellow) !important;
    color: var(--black) !important;
    border-radius: 15px !important;
    font-weight: 500 !important; }
     .nav-cta:hover { background: var(--deep-gold) !important; color: var(--black) !important; }
  .nav-cta::after { display: none !important; }
  /* ── HAMBURGER ── */
.ham-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px; height: 18px;
  background: none; border: none;
  cursor: pointer; padding: 0; flex-shrink: 0; z-index: 300;
}
 
.ham-btn {
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

/* both images on top of each other */
.ham-btn div {
  position: absolute;
  top: 0;
  left: 0;
}

/* show hamburger by default */
.ham-btn div:nth-child(1) {
  opacity: 1;
}

/* hide close by default */
.ham-btn div:nth-child(2) {
  opacity: 0;
}

/* when open → hide hamburger */
.ham-btn.is-open div:nth-child(1) {
  opacity: 0;
}

/* when open → show close */
.ham-btn.is-open div:nth-child(2) {
  opacity: 1;
}

 
#mobileNav {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: #ffffff;
  border-bottom: 2px solid var(--yellow);
  flex-direction: column;
  padding: 0;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

#mobileNav.is-open { display: flex; }

#mobileNav a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 1.1rem 1.5rem;
  color: #1a2744;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color 0.2s, background 0.2s;
  text-align: center;
}

#mobileNav a:first-child {
  color: var(--yellow);
}

#mobileNav a:last-child {
  border-bottom: none;
}

#mobileNav a:hover,
#mobileNav a.active {
  background: rgba(241,190,73,0.06);
  color: var(--yellow);
}


#mobileNav .nav-cta::after {
  display: none;
}


  /* ── HERO ── */
  .gallery-hero {
    padding-top: 72px;
    background: var(--yellow);
    min-height: 280px; display: flex;
    align-items: center; justify-content: center;
    text-align: center; position: relative; overflow: hidden;
  }
  .gallery-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23F5A800' stroke-opacity='0.06' stroke-width='1'%3E%3Ccircle cx='40' cy='40' r='35'/%3E%3Cpath d='M40 5 L75 40 L40 75 L5 40 Z'/%3E%3Cline x1='40' y1='5' x2='40' y2='75'/%3E%3Cline x1='5' y1='40' x2='75' y2='40'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 80px 80px;
  }
  
 
  .hero-inner { position: relative; z-index: 2; padding: 2.5rem 2rem; animation: fadeInUp 0.7s ease both; }
  .hero-eyebrow { display: inline-flex;
    
    gap: 10px;
    background: var(--orange);
    
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 350;
    margin-bottom: 1.5rem; }
  .gallery-hero h1 { font-family: "Bebas Neue", sans-serif;  font-weight: 100; color: var(--cream); line-height: 1.1; margin-bottom: 0.7rem; font-size: 66.72px; text-transform: uppercase; }
  .gallery-hero h1 em {   font-family: "Bebas Neue", sans-serif; 
  font-style: normal;
  color: #317039;
 }
  .gallery-hero p { color: var(--black); font-size: 0.95rem; max-width: 540px; margin: 0 auto; line-height: 1.7; }

  
 
  /* ── FILTER BAR ── */
  .filter-section {
    padding: 2.5rem 3rem 0;
    max-width: 1200px; margin: 0 auto;
  }
  .filter-label { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--rust); font-weight: 700; margin-bottom: 1rem; display: flex; align-items: center; gap: 8px; }
  .filter-label::before { content: ''; width: 20px; height: 2px; background: var(--rust); border-radius: 2px; }
  .filter-btns { display: flex; gap: 0.6rem; flex-wrap: wrap; }
  .filter-btn {
    padding: 8px 20px; border-radius: 100px;
    border: 1.5px solid var(--sand);
    background: white; color: #6B4F3A;
    font-size: 0.8rem; font-weight: 700;
    cursor: pointer; transition: all 0.25s;
    font-family: 'Nunito', sans-serif;
    letter-spacing: 0.5px;
  }
  .filter-btn:hover { border-color: var(--yellow); color: var(--black); background: rgba(245,168,0,0.06); }
  .filter-btn.active { background: var(--yellow); border-color: var(--yellow); color: var(--black); box-shadow: 0 4px 14px rgba(245,168,0,0.3); }

  /* ── GALLERY GRID ── */
  .gallery-section {
    padding: 2.5rem 3rem 5rem;
    max-width: 1200px; margin: 0 auto;
  }

  .gallery-grid {
    columns: 4;
    column-gap: 1rem;
  }

  .gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--black);
    transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  }

  .gallery-item:hover { transform: translateY(-4px); }

  .gallery-item img {
    width: 100%; display: block;
    transition: transform 0.45s ease, filter 0.3s ease;
    filter: brightness(0.95);
  }

  .gallery-item:hover img {
    transform: scale(1.04);
    filter: brightness(1.05);
  }

  .gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(26,15,0,0.88) 0%, transparent 100%);
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.35s ease;
  }

  .gallery-item:hover .gallery-overlay { transform: translateY(0); }

  .overlay-caption {
    font-size: 0.82rem; color: white;
    font-weight: 600; line-height: 1.4;
    margin-bottom: 4px;
  }

  .overlay-tag {
    display: inline-block;
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--yellow); background: rgba(245,168,0,0.15);
    border: 1px solid rgba(245,168,0,0.3);
    padding: 2px 10px; border-radius: 100px;
  }

  /* Hidden items */
  .gallery-item.hidden { display: none; }

  /* ── LIGHTBOX ── */
  .lightbox {
    display: none;
    position: fixed; inset: 0;
    z-index: 999;
    background: rgba(10,6,0,0.96);
    backdrop-filter: blur(16px);
    align-items: center; justify-content: center;
    padding: 1.5rem;
  }

  .lightbox.open { display: flex; }

  .lb-inner {
    position: relative;
    max-width: 900px; width: 100%;
    display: flex; flex-direction: column;
    align-items: center; gap: 1.2rem;
  }

  .lb-img-wrap {
    width: 100%; max-height: 75vh;
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    display: flex; align-items: center;
    justify-content: center; background: #111;
  }

  .lb-img-wrap img {
    max-width: 100%; max-height: 75vh;
    object-fit: contain; display: block;
  }

  .lb-info {
    display: flex; align-items: center;
    justify-content: space-between;
    width: 100%; gap: 1rem;
  }

  .lb-caption {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.1rem; color: var(--cream);
    font-weight: 700;
  }

  .lb-tag {
    font-size: 0.7rem; color: var(--yellow);
    letter-spacing: 1.5px; text-transform: uppercase;
    font-weight: 700; flex-shrink: 0;
    background: rgba(245,168,0,0.1);
    border: 1px solid rgba(245,168,0,0.25);
    padding: 4px 14px; border-radius: 100px;
  }

  .lb-counter {
    font-size: 0.78rem; color: rgba(232,213,163,0.45);
    flex-shrink: 0;
  }

  /* Nav arrows */
  .lb-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px;
    background: rgba(245,168,0,0.15);
    border: 1.5px solid rgba(245,168,0,0.3);
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s;
    color: var(--yellow); font-size: 1.2rem;
    z-index: 10;
  }

  .lb-nav:hover { background: var(--yellow); color: var(--black); }
  .lb-prev { left: -70px; }
  .lb-next { right: -70px; }

  .lb-close {
    position: absolute; top: -50px; right: 0;
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s;
    color: white; font-size: 1.2rem;
  }

  .lb-close:hover { background: rgba(255,255,255,0.15); }

 /* ─── FOOTER WRAPPER ─────────────────────────────── */
 .footer-up{
  background: var(--cream);
 }
 .footer-up img{
  display: block;
  width: 100%;
 }
    .site-footer {
      margin-top: -4px;
      background: var(--green);
      color: var(--white);
  
      padding: clamp(48px, 7vw, 80px) clamp(24px, 6vw, 80px) 0;
      position: relative;
      overflow: hidden;
    }
 
 
 
    /* ─── MAIN GRID ──────────────────────────────────── */
    .footer-main {
      display: grid;
      grid-template-columns: 1fr 3px 2fr;
      gap: 0 clamp(32px, 5vw, 72px);
      position: relative;
      z-index: 1;
    }
 
    /* ─── DIVIDER ────────────────────────────────────── */
    .footer-divider {
      background: var(--white-line);
      width: 1.5px;
      align-self: stretch;
      margin-top: 12px;
    }
 
    /* ─── LEFT COLUMN ────────────────────────────────── */
    .footer-brand { padding-bottom: 40px; }
 
    .footer-headline {
     font-family: "Bebas Neue", sans-serif;
      font-weight: 100;
      font-size: clamp(52px, 9vw, 100px);
      line-height: 0.92;
      letter-spacing: -1px;
      text-transform: uppercase;
      margin-bottom: clamp(28px, 4vw, 48px);
    }
 
    .footer-headline span {
      color: var(--gold);
      display: inline-block;
    }
 
    .footer-nav {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
 
    .footer-nav a {
      text-decoration: none;
      color: var(--white-dim);
      font-size: clamp(11px, 1.2vw, 13px);
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: color 0.2s ease;
    }
 
    .footer-nav a:hover { color: var(--yellow); }
 
    /* ─── RIGHT SECTION ──────────────────────────────── */
    .footer-right {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(24px, 4vw, 56px);
      padding-bottom: 40px;
    }
 
    .footer-col-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(13px, 1.4vw, 15px);
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--white);
      border-bottom: 2px solid var(--white);
      padding-bottom: 6px;
      margin-bottom: 20px;
      display: inline-block;
    }
 
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px;
    }
 
    .footer-links a {
      text-decoration: none;
      color: var(--white-dim);
      font-size: clamp(11px, 1.15vw, 13px);
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: color 0.2s ease;
    }
 
    .footer-links a:hover { color: var(--yellow); }
 
    /* ─── SOCIAL ICONS ───────────────────────────────── */
    .footer-socials {
      display: flex;
      gap: 16px;
      margin-top: 32px;
      flex-wrap: wrap;
    }
 
    .social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border: 1.5px solid rgba(255,255,255,0.5);
      border-radius: 50%;
      color: var(--white);
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s, transform 0.2s;
    }
 
    .social-icon:hover {
      border-color: var(--yellow);
      background: var(--yellow);
      transform: translateY(-2px);
    }
 
    .social-icon svg {
      width: 18px;
      height: 18px;
      fill: var(--white);
    }
 
    /* ─── BOTTOM BAR ─────────────────────────────────── */
    .footer-bottom {
      border-top: 1px solid var(--white-line);
      margin-top: 8px;
      padding: 22px 0;
      position: relative;
      z-index: 1;
    }
 
    .footer-address {
      color: var(--white-dim);
      font-size: clamp(11px, 1.1vw, 13px);
      font-weight: 400;
      letter-spacing: 0.04em;
      line-height: 1.65;
    }
 
    /* ─── RESPONSIVE ─────────────────────────────────── */
 
    /* Tablet: ~768px */
    @media (max-width: 1024px) {
      .footer-main {
        grid-template-columns: 1fr 3px 1.6fr;
      }
    }
 
    @media (max-width: 768px) {
      .footer-main {
        grid-template-columns: 1fr;
        gap: 0;
      }
 
      .footer-divider { display: none; }
 
      .footer-brand {
        border-bottom: 1px solid var(--white-line);
        padding-bottom: 32px;
        margin-bottom: 32px;
      }
 
      .footer-right {
        grid-template-columns: 1fr 1fr;
        padding-bottom: 32px;
      }
    }
 
    /* Mobile: ~480px */
    @media (max-width: 480px) {
      .footer-right {
        grid-template-columns: 1fr;
        gap: 32px;
      }
 
    
    }
 
    @media (max-width: 360px) {
      .footer-headline {
        font-size: 44px;
      }
    }
  /* ── ANIMATIONS ── */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .gallery-grid { columns: 3; }
  }
  @media (max-width: 768px) {
    nav { padding: 0 1.2rem; height: 64px; }
    .nav-links { display: none; }
    .gallery-grid { columns: 2; }
    .filter-section { padding: 2rem 1.2rem 0; }
    .gallery-section { padding: 2rem 1.2rem 4rem; }
    .stats-strip { gap: 1.5rem; padding: 0.9rem 1.2rem; overflow-x: auto; justify-content: flex-start; }
    .lb-prev { left: -16px; width: 38px; height: 38px; font-size: 1rem; }
    .lb-next { right: -16px; width: 38px; height: 38px; font-size: 1rem; }
    footer { flex-direction: column; align-items: flex-start; padding: 2rem 1.2rem; }
  }
  @media (max-width: 480px) {
    .gallery-grid { columns: 1; }
    .lb-caption { font-size: 0.92rem; }
  }

  ::-webkit-scrollbar { width: 8px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 4px; }

  /* ====== HAMBURGER + MOBILE NAV ====== */
  .ham-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px; height: 18px;
    background: none; border: none;
    cursor: pointer; padding: 0; flex-shrink: 0; z-index: 300;
  }
  .ham-btn span {
    display: block; height: 2px; width: 100%;
    background: #F5A800; border-radius: 2px;
    transition: transform .28s ease, opacity .28s ease;
    transform-origin: 0 50%;
  }
  .ham-btn.is-open span:nth-child(1) { transform: rotate(45deg) translate(2px, -1px); }
  .ham-btn.is-open span:nth-child(2) { opacity: 0; }
  .ham-btn.is-open span:nth-child(3) { transform: rotate(-45deg) translate(2px,  1px); }

  #mobileNav {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: #ffffff;
  border-bottom: 2px solid var(--yellow);
  flex-direction: column;
  padding: 0;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  }
  #mobileNav.is-open { display: flex; }

  #mobileNav a {
     display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 1.1rem 1.5rem;
  color: #1a2744;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color 0.2s, background 0.2s;
  text-align: center;
  }
  #mobileNav a:last-child { border-bottom: none; }
  #mobileNav a:hover, #mobileNav a.active { color: #F5A800; }
 #mobileNav .nav-cta {
  margin: 0.8rem 6rem 1.2rem;
  background: var(--yellow) !important;
  color: var(--black) !important;
  border-radius: 22px !important;
  text-align: center;
  justify-content: center;
  padding: 15px 4rem ;
  font-weight: 700 !important;
  border-bottom: none !important;
}
  @media (max-width: 768px) {
    nav { height: 64px !important; padding: 0 1.2rem !important; }
    .ham-btn  { display: flex !important; }
    .nav-links { display: none !important; }
  }
  /* ====== END HAMBURGER ====== */

  /* ── RESPONSIVE gallery ── */
  @media (max-width: 1024px) { .gallery-grid { columns: 3; } }
  @media (max-width: 768px) {
    .gallery-grid    { columns: 2; column-gap: .8rem; }
    .filter-section  { padding: 1.8rem 1.2rem 0; }
    .gallery-section { padding: 1.8rem 1.2rem 3rem; }
    .stats-strip     { gap: 1.2rem; padding: .8rem 1.2rem; overflow-x: auto; justify-content: flex-start; }
    .gallery-hero h1 { font-size: 2rem; }
    .filter-btns     { gap: .4rem; }
    .filter-btn      { padding: 7px 14px; font-size: .76rem; }
    footer { flex-direction: column; align-items: flex-start; padding: 2rem 1.2rem; }
  }
  @media (max-width: 480px) {
    .gallery-grid { columns: 1; }
    .gallery-hero h1 { font-size: 1.7rem; }
    .lb-caption   { font-size: .88rem; }
    .stat-pill .n { font-size: 1.2rem; }
  }
  @media (max-width: 360px) {
    .gallery-hero h1 { font-size: 1.4rem; }
  }

