:root{
  --cream: #FFF7ED; /* light cream */
  --green: #146A4C; /* deeper green */
  --green-2: #2E9E73; /* lively green */
  --orange: #F28C2B; /* bright orange */
  --coral: #FF6B5A; /* accent coral */
  --teal: #0FA3A3; /* accent teal */
  --muted: #5F6B63;
  --bg: linear-gradient(180deg, #F5E6D6 0%, #F9EFE6 30%, #F1E9E0 100%);
  --max-width: 1200px;
  --radius: 14px;
  --shadow: 0 8px 28px rgba(20,106,76,0.12);
  font-family: 'Segoe UI', Roboto, -apple-system, 'Helvetica Neue', Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
.site-bg{background:var(--bg)}
body{margin:0;background:var(--bg);color:#222;line-height:1.6}
.container{max-width:var(--max-width);margin:0 auto;padding:1rem}

/* global section */
.section{padding:1.5rem 0}
.section.alt{background:linear-gradient(90deg, rgba(46,158,115,0.03), rgba(242,140,43,0.02));}


.site-header{position:fixed;top:0;left:0;right:0;height:72px;background:linear-gradient(90deg, rgba(20,106,76,0.16), rgba(255,107,90,0.10));backdrop-filter:blur(6px);border-bottom:1px solid rgba(20,106,76,0.10);z-index:1200;transition:box-shadow 220ms, background 220ms}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:100%;padding:0 1rem;position:relative}
.logo-area{display:flex;align-items:center;gap:1rem;text-decoration:none;transition:opacity 0.3s}
.logo-area:hover{opacity:0.85}
.site-name{font-size:1.35rem;font-weight:700;color:#146A4C;letter-spacing:0.3px;white-space:nowrap}
.brand{font-weight:800;color:var(--green);text-decoration:none;font-size:1.35rem;letter-spacing:0.4px}
.nav{display:flex;align-items:center}
.nav a{margin-left:1.1rem;color:var(--muted);text-decoration:none;padding:0.45rem 0.7rem;border-radius:8px;font-weight:600;position:relative;transition:color 220ms, transform 220ms}
.nav a:hover{color:var(--green);transform:translateY(-2px)}

/* Mobile Menu Toggle Button */
.menu-toggle{display:none;flex-direction:column;gap:5px;background:transparent;border:none;cursor:pointer;padding:8px;z-index:1300}
.menu-toggle span{display:block;width:28px;height:3px;background:var(--green);border-radius:3px;transition:all 300ms ease}
.menu-toggle.active span:nth-child(1){transform:rotate(45deg) translate(7px, 7px)}
.menu-toggle.active span:nth-child(2){opacity:0}
.menu-toggle.active span:nth-child(3){transform:rotate(-45deg) translate(7px, -7px)}

/* animated underline */
.nav a::after{content:"";position:absolute;left:12px;right:12px;height:3px;background:linear-gradient(90deg,var(--coral),var(--orange));bottom:6px;border-radius:3px;transform:scaleX(0);transform-origin:left center;transition:transform 260ms cubic-bezier(.2,.9,.2,1)}
.nav a:hover::after{transform:scaleX(1)}

/* header scrolled state */
.site-header.scrolled{box-shadow:0 10px 30px rgba(10,40,30,0.12);background:linear-gradient(90deg, rgba(20,106,76,0.22), rgba(255,107,90,0.12))}
.site-header.scrolled .brand{transform:scale(0.98);}
.site-header.scrolled .nav a{color:#fff}

/* nav stagger animation on load */
.nav a{opacity:0;transform:translateY(6px)}
.site-header.ready .nav a{opacity:1;transform:none}
.site-header.ready .nav a:nth-child(1){transition:opacity 380ms 120ms,transform 380ms 120ms}
.site-header.ready .nav a:nth-child(2){transition:opacity 380ms 180ms,transform 380ms 180ms}
.site-header.ready .nav a:nth-child(3){transition:opacity 380ms 240ms,transform 380ms 240ms}
.site-header.ready .nav a:nth-child(4){transition:opacity 380ms 300ms,transform 380ms 300ms}
.site-header.ready .nav a:nth-child(5){transition:opacity 380ms 360ms,transform 380ms 360ms}
.nav .btn{padding:0.45rem 0.85rem;border-radius:8px;background:var(--coral);color:white;text-decoration:none;font-weight:600}

.nav .cta{background:var(--orange);color:white}

/* Hero */
.hero{padding:2.5rem 0 1.5rem}
.hero-inner{display:flex;gap:2rem;align-items:center}
.hero-left{flex:1}
.hero-right{flex:1;display:flex;justify-content:center}
.hero h1{font-size:2.75rem;margin:0;color:var(--green)}
.lead{color:var(--muted);font-size:1.05rem}
.hero .sub{color:var(--teal);font-weight:700;margin-bottom:0.5rem}
.hero .kicker{display:inline-block;background:linear-gradient(90deg,var(--coral),var(--orange));color:white;padding:0.35rem 0.6rem;border-radius:999px;font-weight:700;margin-bottom:0.75rem}
.photo-frame{width:320px;height:320px;border-radius:20px;overflow:hidden;background:linear-gradient(180deg,var(--green-2),var(--green));box-shadow:var(--shadow);display:flex;align-items:center;justify-content:center;border:6px solid rgba(255,255,255,0.6)}
.photo-frame img{width:100%;height:100%;object-fit:cover;display:block}
.cta-row .btn{margin-right:0.5rem}

/* Services Cards - Modern Design */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-bottom:2.5rem}
.card{background:linear-gradient(135deg, rgba(255,255,255,0.98), rgba(249,239,230,0.95));padding:2rem;border-radius:18px;box-shadow:0 10px 32px rgba(20,106,76,0.10);border:2px solid rgba(20,106,76,0.06);position:relative;overflow:hidden;transition:all 350ms cubic-bezier(.2,.9,.2,1)}
.card::before{content:"";position:absolute;top:-100%;right:-50%;width:200px;height:200px;background:radial-gradient(circle, rgba(242,140,43,0.12) 0%, transparent 70%);border-radius:50%;transition:all 500ms;pointer-events:none}
.card:hover::before{top:-50%;right:-30%}
.card h3{margin:0 0 1rem;color:var(--green);font-size:1.3rem;font-weight:700;position:relative;padding-left:1rem}
.card h3::before{content:"";position:absolute;left:0;top:0;bottom:0;width:4px;background:linear-gradient(180deg,var(--orange),var(--coral));border-radius:4px}
.card p{margin:0;color:var(--muted);line-height:1.7;font-size:1rem}
.card:hover{transform:translateY(-6px);box-shadow:0 20px 48px rgba(20,106,76,0.16);border-color:rgba(242,140,43,0.15)}

/* Statistics Row - Premium Cards */
.stat-row{display:flex;gap:1.5rem;margin-top:2rem}
.stat{flex:1;background:linear-gradient(135deg, rgba(20,106,76,0.08), rgba(242,140,43,0.05));padding:2rem 1.5rem;border-radius:16px;text-align:center;border:2px solid rgba(20,106,76,0.08);position:relative;overflow:hidden;transition:all 350ms cubic-bezier(.2,.9,.2,1)}
.stat::after{content:"";position:absolute;bottom:0;left:0;right:0;height:4px;background:linear-gradient(90deg,var(--green),var(--orange));transform:scaleX(0);transform-origin:left;transition:transform 400ms}
.stat:hover::after{transform:scaleX(1)}
.stat h4{margin:0 0 0.5rem;color:var(--green);font-size:2.5rem;font-weight:800;line-height:1}
.stat p{margin:0;color:var(--muted);font-weight:600;font-size:0.95rem;text-transform:uppercase;letter-spacing:0.5px}
.stat:hover{transform:translateY(-8px);background:linear-gradient(135deg, rgba(20,106,76,0.12), rgba(242,140,43,0.08));box-shadow:0 16px 40px rgba(20,106,76,0.15)}

/* Highlights - Premium Gallery Design */
.highlights{padding:2rem 0}

/* Scrolling Photo Gallery - Modern Card Grid */
.fancy-gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;margin:2rem 0}
.gallery-item{position:relative;overflow:hidden;border-radius:24px;box-shadow:0 8px 24px rgba(20,106,76,0.12);aspect-ratio:1/1;cursor:pointer;transition:all 400ms cubic-bezier(.2,.9,.2,1);border:1px solid rgba(20,106,76,0.08);background:#fff;padding:1rem}
.gallery-item-lg{grid-column:span 2;aspect-ratio:16/10}
.gallery-item::before{content:"";position:absolute;inset:1rem;background:linear-gradient(135deg, rgba(245,230,214,0.3), rgba(249,239,230,0.3));border-radius:16px;opacity:1;transition:opacity 400ms;z-index:1;pointer-events:none}
.gallery-item:hover::before{opacity:0}
.gallery-item img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 500ms cubic-bezier(.2,.9,.2,1), filter 400ms;border-radius:16px;position:relative;z-index:2}
.gallery-item:hover img{transform:scale(1.05);filter:brightness(1.05) contrast(1.05)}
.gallery-overlay{position:absolute;inset:1rem;background:linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(20,106,76,0.95));display:flex;align-items:flex-end;padding:1.5rem;opacity:0;transition:all 400ms cubic-bezier(.2,.9,.2,1);z-index:3;border-radius:16px;transform:translateY(10px)}
.gallery-item:hover .gallery-overlay{opacity:1;transform:translateY(0)}
.gallery-overlay p{margin:0;color:white;font-weight:700;font-size:1.1rem;text-shadow:0 2px 8px rgba(0,0,0,0.5)}
.gallery-item:hover{transform:translateY(-10px);box-shadow:0 20px 48px rgba(20,106,76,0.20);border-color:rgba(242,140,43,0.2)}
.featured{display:flex;gap:3rem;align-items:center;padding:2.5rem;background:linear-gradient(135deg, rgba(255,255,255,0.95), rgba(249,239,230,0.95));border-radius:24px;box-shadow:0 20px 60px rgba(20,106,76,0.12);border:1px solid rgba(20,106,76,0.08);position:relative;overflow:hidden}
.featured::before{content:"";position:absolute;top:-50%;right:-10%;width:400px;height:400px;background:radial-gradient(circle, rgba(242,140,43,0.08) 0%, transparent 70%);border-radius:50%;pointer-events:none}
.featured-left{flex:1;z-index:1}
.featured-left h3{font-size:2rem;margin:0 0 0.5rem;color:var(--green);line-height:1.2}
.featured-left .meta{color:var(--orange);font-weight:700;font-size:0.95rem;margin:0 0 1rem;text-transform:uppercase;letter-spacing:0.5px}
.featured-left p{color:var(--muted);line-height:1.7;margin:0 0 1.5rem;font-size:1.05rem}
.featured-left .btn{margin-right:0.75rem;margin-bottom:0.5rem}
.featured-right{flex:0 0 280px;z-index:1;position:relative}
.featured-right::before{content:"";position:absolute;inset:-10px;background:linear-gradient(135deg,var(--green-2),var(--green));border-radius:20px;z-index:-1;transform:rotate(3deg)}
.featured-right img{width:100%;height:auto;border-radius:16px;box-shadow:0 24px 48px rgba(20,106,76,0.2);display:block;transition:transform 400ms ease;object-fit:cover}
.featured:hover .featured-right img{transform:scale(1.05) rotate(-2deg)}

/* Publications */
.pub-list{display:grid;gap:0.75rem}
.pub-item{background:linear-gradient(180deg,#fff 0%, #fff5ee 30%);padding:1rem;border-radius:12px;box-shadow:0 10px 26px rgba(20,106,76,0.07);display:flex;gap:1rem;align-items:center;border:1px solid rgba(20,106,76,0.07)}
.pub-item img{width:110px;height:auto;border-radius:8px;box-shadow:0 8px 20px rgba(0,0,0,0.06)}
.pub-item .meta{color:var(--muted);font-size:0.9rem}
.pub-actions{margin-left:auto;display:flex;flex-direction:column;gap:0.5rem}
.btn.buy{background:var(--coral);padding:0.55rem 0.9rem;border-radius:10px;color:white;font-weight:700}
.btn.buy.secondary{background:transparent;border:2px solid rgba(46,158,115,0.12);color:var(--green);font-weight:700}

/* Gallery */
.photo-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0.75rem}
.photo{background:white;border-radius:10px;overflow:hidden;box-shadow:var(--shadow);border:1px solid rgba(20,106,76,0.03)}
.photo img{width:100%;height:260px;object-fit:cover;display:block}

/* Zoom Modal */
.zoom-modal{display:none;position:fixed;inset:0;background:rgba(0,0,0,0.85);z-index:2000;align-items:center;justify-content:center;animation:fadeIn 300ms ease-out;flex-direction:column}
.zoom-modal.active{display:flex}
.zoom-image{max-width:90%;max-height:85vh;object-fit:contain;border-radius:10px;box-shadow:0 20px 60px rgba(0,0,0,0.4);animation:zoomIn 400ms cubic-bezier(.2,.9,.2,1);transition:opacity 150ms ease}
.zoom-caption{color:white;margin-top:1rem;text-align:center;font-size:1.2rem;font-weight:600;animation:fadeIn 400ms 200ms backwards;position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);max-width:80%}
.zoom-close{position:absolute;top:2rem;right:2rem;background:rgba(255,255,255,0.15);color:white;border:none;width:48px;height:48px;border-radius:50%;font-size:2rem;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all 200ms;z-index:2001}
.zoom-close:hover{background:rgba(255,255,255,0.25);transform:rotate(90deg)}

/* Zoom Navigation Buttons */
.zoom-prev,.zoom-next{position:absolute;top:50%;transform:translateY(-50%);background:rgba(255,255,255,0.15);color:white;border:none;width:56px;height:56px;border-radius:50%;font-size:2.5rem;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all 200ms;z-index:2001;font-weight:300;line-height:1}
.zoom-prev{left:2rem}
.zoom-next{right:2rem}
.zoom-prev:hover,.zoom-next:hover{background:rgba(255,255,255,0.3);transform:translateY(-50%) scale(1.1)}
.zoom-prev:active,.zoom-next:active{transform:translateY(-50%) scale(0.95)}

/* Animations */
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes zoomIn{from{opacity:0;transform:scale(0.8)}to{opacity:1;transform:scale(1)}}

/* Testimonials: horizontal scroll-snap view */
.testimonials-wrap{position:relative;display:flex;align-items:center;gap:2.5rem;margin:0;justify-content:center;padding:0 3rem;max-width:1400px;margin:0 auto}
.test-btn{background:var(--green);color:#fff;border:none;width:64px;height:64px;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 16px 34px rgba(20,106,76,0.18);transition:transform 220ms,box-shadow 220ms;flex-shrink:0}
.test-btn:hover{transform:translateY(-4px);box-shadow:0 20px 44px rgba(20,106,76,0.22)}

/* Scrollable testimonials container */
.testimonials{display:flex;gap:1.5rem;padding:1rem 0;overflow-x:auto;overflow-y:hidden;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;scroll-behavior:smooth;min-height:220px;justify-content:flex-start;flex:1;overscroll-behavior-x:contain}
.testimonials::-webkit-scrollbar{height:10px}
.testimonials::-webkit-scrollbar-thumb{background:rgba(20,106,76,0.12);border-radius:8px}
.testimonials .testimonial{flex:0 0 32%;max-width:32%;scroll-snap-align:center;display:flex;flex-direction:column;align-items:center;text-align:center;gap:0.75rem;padding:0;background:transparent;border:none}
.testimonials .testimonial blockquote{position:relative;margin:0;padding:1.6rem 1.8rem;background:#fff;border-radius:18px;box-shadow:0 14px 34px rgba(0,0,0,0.06);flex:1 1 auto;min-width:240px;max-width:520px;width:100%}
.testimonials .testimonial p{margin:0;font-style:italic;color:var(--muted);font-weight:500;line-height:1.6;font-size:1.02rem}
.testimonials .testimonial cite{display:block;color:var(--muted);font-weight:700;font-style:normal;text-align:center;margin:0.8rem 0 0}
.test-btn.left{flex-shrink:0}
.test-btn.right{flex-shrink:0}

/* Make it more compact on small screens */
@media (max-width:900px){
  /* two-up on medium screens */
  .testimonials .testimonial{flex:0 0 48%;max-width:48%}
  .testimonials-wrap{gap:2rem;padding:0 1rem}
}
@media (max-width:700px){
  /* single item on small screens */
  .testimonials .testimonial{flex:0 0 96%;max-width:96%;}
  .test-btn{width:56px;height:56px}
  .testimonials-wrap{gap:1.5rem;padding:0 0.75rem}
}

/* Section background split to echo design */
.testimonials-section{background:linear-gradient(180deg, rgba(245,230,214,1) 0%, rgba(241,233,224,1) 55%, rgba(245,235,226,1) 100%);padding:3rem 0!important}
.testimonials-section .container{max-width:100%!important;padding:0!important}
.testimonials-section h2{text-align:center;margin:0 0 2rem;padding:0 1rem}

/* Pagination dots for testimonials */
.test-dots{display:flex;gap:0.5rem;justify-content:center;margin-top:0.5rem}
.test-dots button{width:12px;height:12px;border-radius:50%;background:rgba(20,106,76,0.12);border:none;cursor:pointer;transition:transform 180ms, background 180ms}
.test-dots button.active{background:linear-gradient(90deg,var(--orange),var(--coral));transform:scale(1.15);box-shadow:0 6px 18px rgba(20,106,76,0.12)}
.test-dots button:focus{outline:none;box-shadow:0 0 0 4px rgba(46,158,115,0.12)}

/* Press Releases */
.press-list{display:flex;flex-direction:column;gap:2rem;max-width:900px;margin:0 auto}
.press-card{background:white;border-radius:12px;overflow:hidden;box-shadow:0 2px 8px rgba(0,0,0,0.08);transition:transform 200ms, box-shadow 200ms}
.press-card:hover{transform:translateY(-2px);box-shadow:0 4px 16px rgba(0,0,0,0.12)}
.press-image{width:100%;height:280px;overflow:hidden;background:#f5f5f5}
.press-image img{width:100%;height:100%;object-fit:cover;transition:transform 300ms}
.press-card:hover .press-image img{transform:scale(1.05)}
.press-content{padding:2rem}
.press-date{display:flex;align-items:center;gap:0.5rem;color:#666;font-size:0.95rem;margin-bottom:1rem}
.date-icon{font-size:1.1rem}
.press-card h3{color:#146A4C;margin:0 0 1rem;font-size:1.5rem;line-height:1.3}
.press-excerpt{color:#555;font-size:1.05rem;line-height:1.6;margin-bottom:1rem}
.press-full-content{color:#666;line-height:1.7;margin-top:1rem;padding-top:1rem;border-top:1px solid #e5e5e5}

/* Contact */

.contact-grid{display:grid;grid-template-columns:2fr 1fr;gap:1.5rem}
.contact-form{background:white;padding:1rem;border-radius:10px;box-shadow:var(--shadow)}
.contact-form label{display:block;margin-bottom:0.75rem;color:var(--muted)}
.contact-form input,.contact-form textarea{width:100%;padding:0.6rem;border:1px solid #e6e6e6;border-radius:8px}
.contact-info{background:white;padding:1rem;border-radius:10px;box-shadow:var(--shadow)}

/* Footer */
.site-footer{padding:2rem 1rem;background:transparent}
.footer-box{max-width:1200px;margin:0 auto;background:linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,250,245,0.95));border-radius:20px;padding:2.5rem;box-shadow:0 20px 60px rgba(20,106,76,0.12);border:1px solid rgba(20,106,76,0.08)}
.footer-content{display:grid;grid-template-columns:1fr 2fr;gap:2.5rem;align-items:flex-start}
.footer-brand h3{margin:0;color:var(--green);font-size:1.5rem}
.footer-brand p{margin:0.5rem 0 0;color:var(--muted);font-size:0.95rem}

/* Three-column menu */
.footer-menu{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.footer-col h4{margin:0 0 1rem;color:var(--green);font-size:1rem;font-weight:700;text-transform:uppercase;letter-spacing:0.5px}
.footer-col ul{list-style:none;margin:0;padding:0}
.footer-col li{margin-bottom:0.75rem}
.footer-col a{color:var(--muted);text-decoration:none;font-weight:500;transition:color 200ms}
.footer-col a:hover{color:var(--green)}

/* Social icons */
.social-links{display:flex;gap:1rem!important}
.social-links li{margin-bottom:0!important}
.social-links a{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;background:linear-gradient(135deg,var(--green),var(--green-2));border-radius:50%;color:#fff;transition:transform 200ms,box-shadow 200ms}
.social-links a:hover{transform:translateY(-4px);box-shadow:0 12px 28px rgba(20,106,76,0.18)}
.social-links svg{width:20px;height:20px;stroke:currentColor;fill:currentColor}

/* Responsive footer */
@media (max-width:900px){
  .footer-content{grid-template-columns:1fr;gap:2rem}
  .footer-menu{grid-template-columns:repeat(2,1fr);gap:1.5rem}
  .footer-box{padding:2rem}
}
@media (max-width:700px){
  .footer-menu{grid-template-columns:1fr}
  .footer-box{padding:1.5rem;border-radius:16px}
}

/* Buttons */
.btn{display:inline-block;padding:0.5rem 0.85rem;border-radius:8px;text-decoration:none;transition:transform 180ms cubic-bezier(.2,.9,.2,1),box-shadow 180ms,background-color 180ms,color 180ms}
.btn.primary{background:var(--green);color:white}
.btn.ghost{background:transparent;border:2px solid rgba(47,125,90,0.12);color:var(--green)}

/* Button micro-interactions */
.btn:hover{transform:translateY(-4px);box-shadow:0 10px 24px rgba(20,106,76,0.08)}
.btn:active{transform:translateY(-1px) scale(0.995);box-shadow:0 6px 18px rgba(20,106,76,0.06)}
.btn:focus{outline:none;box-shadow:0 0 0 4px rgba(46,158,115,0.12)}
.btn.primary:hover{background:linear-gradient(90deg,var(--green-2),var(--green))}
.btn.buy:hover{transform:translateY(-5px) scale(1.02);box-shadow:0 14px 30px rgba(255,107,90,0.12)}

/* Small utility animations */
.anim-fade{opacity:0;transform:translateY(8px);transition:opacity 420ms ease, transform 420ms ease}
.anim-fade.in-view{opacity:1;transform:none}
.anim-pop{transform:scale(.98);opacity:0;transition:transform 260ms cubic-bezier(.2,.9,.2,1),opacity 260ms}
.anim-pop.in-view{transform:scale(1);opacity:1}

/* ============================================
   RESPONSIVE STYLES - Mobile First
   ============================================ */

/* Tablet (max-width: 900px) */
@media (max-width:900px){
  .container{padding:0.75rem}
  
  /* Header */
  .header-inner{padding:0 0.75rem}
  .brand{font-size:1.2rem}
  .nav{display:flex;flex-wrap:nowrap}
  .nav a{margin-left:0.5rem;font-size:0.85rem;padding:0.4rem 0.5rem}
  
  /* Hero */
  .hero{padding:2rem 0 1.5rem}
  .hero-inner{flex-direction:column;text-align:center}
  .hero h1{font-size:2.2rem}
  .hero-right{margin-top:1.5rem}
  .photo-frame{width:280px;height:280px}
  
  /* Grids */
  .grid-3{grid-template-columns:1fr;gap:1.2rem}
  .card{padding:1.5rem}
  .card h3{font-size:1.2rem}
  .stat-row{flex-direction:column;gap:1.2rem}
  .stat{padding:1.5rem}
  .stat h4{font-size:2.2rem}
  .photo-grid{grid-template-columns:repeat(2,1fr)}
  .contact-grid{grid-template-columns:1fr}
  .fancy-gallery{grid-template-columns:repeat(3,1fr);gap:1.2rem}
  .gallery-item-lg{grid-column:span 1;aspect-ratio:1/1}
  .gallery-item{border-radius:20px;padding:0.75rem}
  .gallery-item::before{inset:0.75rem;border-radius:14px}
  .gallery-item img{border-radius:14px}
  .gallery-overlay{inset:0.75rem;padding:1rem;border-radius:14px}
  .gallery-overlay p{font-size:1rem}
  
  /* Featured */
  .featured{flex-direction:column;text-align:center;gap:2rem;padding:2rem}
  .featured-left h3{font-size:1.6rem}
  .featured-right{flex:0 0 auto}
  .featured-right img{width:240px}
  .featured::before{width:300px;height:300px;top:-40%;right:-20%}
  
  /* Publications */
  .pub-item{flex-direction:column;text-align:center}
  .pub-item img{width:140px}
  .pub-actions{margin-left:0;margin-top:1rem;flex-direction:row;justify-content:center}
}

/* Mobile (max-width: 700px) */
@media (max-width:700px){
  /* Container */
  .container{padding:0.5rem}
  
  /* Header - Mobile Menu */
  .site-header{height:60px}
  .header-inner{padding:0 1rem}
  .brand{font-size:1.1rem}
  .site-name{font-size:1.1rem}
  
  /* Show hamburger menu */
  .menu-toggle{display:flex}
  
  /* Mobile navigation */
  .nav{position:fixed;top:60px;left:0;right:0;background:linear-gradient(135deg, rgba(255,255,255,0.98), rgba(249,239,230,0.98));backdrop-filter:blur(10px);flex-direction:column;padding:1.5rem;gap:0.5rem;box-shadow:0 10px 40px rgba(0,0,0,0.15);transform:translateY(-100%);opacity:0;visibility:hidden;transition:all 300ms cubic-bezier(0.4, 0, 0.2, 1);max-height:calc(100vh - 60px);overflow-y:auto;z-index:1100;border-bottom:1px solid rgba(20,106,76,0.10)}
  
  .nav.active{transform:translateY(0);opacity:1;visibility:visible}
  
  .nav a{margin:0;width:100%;text-align:center;padding:0.75rem;font-size:1rem;border-bottom:1px solid rgba(20,106,76,0.08);color:var(--green)!important}
  
  .nav a:last-child{border-bottom:none}
  
  .nav .btn,.nav .cta{width:100%;margin-top:0.5rem;padding:0.75rem;text-align:center}
  
  /* Reset nav link animations for mobile */
  .nav a::after{display:none}
  
  /* Prevent body scroll when menu is open */
  body.menu-open{overflow:hidden}
  
  /* Hero */
  .hero{padding:1.5rem 0 1rem}
  .hero h1{font-size:1.8rem;line-height:1.2}
  .lead{font-size:0.95rem}
  .photo-frame{width:220px;height:220px}
  .cta-row{display:flex;flex-direction:column;gap:0.5rem}
  .cta-row .btn{margin:0;width:100%;text-align:center}
  
  /* Logo and name */
  .logo-area{gap:0.5rem}
  .logo-area img{width:48px!important;height:48px!important}
  .site-name{font-size:1rem}
  
  /* Cards */
  .card{padding:1.2rem}
  .card h3{font-size:1.15rem;padding-left:0.75rem}
  .card h3::before{width:3px}
  .stat{padding:1.5rem 1rem}
  .stat h4{font-size:2rem}
  .stat p{font-size:0.85rem}
  
  /* Gallery */
  .fancy-gallery{grid-template-columns:repeat(2,1fr);gap:1rem}
  .gallery-item-lg{grid-column:span 2;aspect-ratio:16/10}
  .gallery-item{border-radius:18px;padding:0.75rem}
  .gallery-item::before{inset:0.75rem;border-radius:12px}
  .gallery-item img{border-radius:12px}
  .gallery-overlay{inset:0.75rem;padding:1rem;border-radius:12px}
  .gallery-overlay p{font-size:0.95rem}
  
  /* Publications */
  .pub-item{padding:0.75rem}
  .pub-item img{width:120px}
  .pub-item h3{font-size:1rem}
  .pub-item .meta{font-size:0.85rem}
  
  /* Contact Form */
  .contact-form{padding:0.75rem}
  .contact-info{padding:0.75rem}
  
  /* Footer */
  .footer-box{padding:1.5rem;border-radius:12px}
  .footer-brand h3{font-size:1.2rem}
  .social-links a{width:36px;height:36px}
  .social-links svg{width:18px;height:18px}
}

/* Small Mobile (max-width: 480px) */
@media (max-width:480px){
  /* Header */
  .site-header{height:auto}
  .logo-area img{width:40px!important;height:40px!important}
  .site-name{font-size:0.9rem}
  .brand{font-size:1rem}
  .nav a{font-size:0.8rem;padding:0.3rem 0.5rem}
  
  /* Hero */
  .hero h1{font-size:1.5rem}
  .hero .kicker{font-size:0.85rem;padding:0.3rem 0.5rem}
  .photo-frame{width:180px;height:180px;border-radius:15px}
  
  /* Single column galleries */
  .photo-grid{grid-template-columns:1fr}
  .photo img{height:180px}
  .fancy-gallery{grid-template-columns:1fr;gap:1rem}
  .gallery-item-lg{grid-column:span 1;aspect-ratio:1/1}
  .gallery-item{border-radius:16px;padding:0.75rem}
  .gallery-item::before{inset:0.75rem;border-radius:10px}
  .gallery-item img{border-radius:10px}
  .gallery-overlay{inset:0.75rem;padding:1rem;border-radius:10px}
  .gallery-overlay p{font-size:0.9rem}
  
  /* Lightbox */
  .zoom-image{max-width:95%;max-height:75vh}
  .zoom-caption{font-size:1rem;bottom:1rem;max-width:90%}
  .zoom-close{width:40px;height:40px;top:1rem;right:1rem;font-size:1.5rem}
  .zoom-prev,.zoom-next{width:44px;height:44px;font-size:2rem}
  .zoom-prev{left:0.5rem}
  .zoom-next{right:0.5rem}
  
  /* Press */
  .press-list{gap:1.5rem}
  .press-image{height:200px}
  .press-content{padding:1.5rem}
  .press-card h3{font-size:1.25rem}

  
  /* Publications */
  .pub-item{flex-direction:column}
  .pub-item img{width:100px}
  .pub-actions{flex-direction:column;width:100%}
  .pub-actions .btn{width:100%}
  
  /* Featured */
  .featured{padding:1.5rem;gap:1.5rem}
  .featured-left h3{font-size:1.4rem}
  .featured-right img{width:200px}
  .featured-right::before{transform:rotate(2deg)}
  .featured::before{display:none}
  
  /* Featured */
  .featured-right img{width:150px}
  
  /* Stats */
  .stat{padding:0.75rem}
  .stat h4{font-size:1.1rem}
  
  /* Carousel */
  .carousel-banner{height:180px}
  .carousel-banner .carousel-text h3{font-size:0.9rem}
  .carousel-banner .carousel-text p{font-size:0.8rem}
  
  /* Footer */
  .footer-box{padding:1rem}
  .footer-brand h3{font-size:1.1rem}
  .footer-brand p{font-size:0.85rem}
  .footer-col h4{font-size:0.9rem}
  .footer-col a{font-size:0.85rem}
}

/* Extra Small Devices (max-width: 360px) */
@media (max-width:360px){
  .hero h1{font-size:1.3rem}
  .photo-frame{width:160px;height:160px}
  .card{padding:0.75rem}
  .footer-box{padding:0.75rem;border-radius:10px}
}

/* Lightbox / modal styles */
.lb-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.75);display:none;align-items:center;justify-content:center;z-index:1000;padding:2rem}
.lb-overlay.active{display:flex}
.lb-frame{max-width:90%;max-height:90%;position:relative}
.lb-frame img{width:100%;height:auto;display:block;border-radius:8px}
.lb-close,.lb-prev,.lb-next{position:absolute;top:50%;transform:translateY(-50%);background:rgba(255,255,255,0.1);border:0;color:white;padding:0.6rem;border-radius:6px;cursor:pointer}
.lb-close{top:1rem;right:1rem;transform:none;padding:0.5rem 0.6rem}
.lb-prev{left:-3rem}
.lb-next{right:-3rem}
.lb-caption{color:white;text-align:center;margin-top:0.6rem}

@media (max-width:700px){
  .lb-prev{left:0.5rem}
  .lb-next{right:0.5rem}
}

/* push content down to account for fixed header */
main{padding-top:84px}

/* Carousel banner below header (home page) */
.carousel-banner{width:100%;height:380px;background:linear-gradient(90deg,var(--green-2),var(--orange));overflow:hidden;position:relative}
.carousel-banner .carousel-item{position:absolute;inset:0;display:flex;align-items:center;gap:2rem;padding:2.5rem;opacity:0;transition:opacity 600ms ease-in-out;background-size:cover;background-position:center}
.carousel-banner .carousel-item.active{opacity:1}
.carousel-banner .carousel-img{width:40%;height:100%;object-fit:cover;border-radius:12px;box-shadow:0 12px 40px rgba(0,0,0,0.2)}
.carousel-banner .carousel-text{flex:1;color:#fff}
.carousel-banner .carousel-text h3{margin:0 0 0.5rem;font-size:1.8rem}
.carousel-banner .carousel-text p{margin:0;font-size:1.05rem;opacity:0.95}
.carousel-dots{position:absolute;bottom:1rem;left:50%;transform:translateX(-50%);display:flex;gap:0.5rem;z-index:100}
.carousel-dots button{width:10px;height:10px;border-radius:50%;border:0;background:rgba(255,255,255,0.4);cursor:pointer;transition:background 200ms}
.carousel-dots button.active{background:rgba(255,255,255,0.95)}

@media (max-width:900px){
  .carousel-banner{height:240px}
  .carousel-banner .carousel-item{padding:1.5rem}
  .carousel-banner .carousel-img{width:50%;height:100%}
  .carousel-banner .carousel-text h3{font-size:1.3rem}
}

/* Inner Page Hero Section - Universal Design */
.inner-hero{background:linear-gradient(135deg, #146A4C 0%, #2E9E73 100%);padding:3rem 0 2.5rem;text-align:center;position:relative;overflow:hidden}
.inner-hero::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');opacity:0.3}
.inner-hero-content{position:relative;z-index:1}
.hero-icon{font-size:3.5rem;margin-bottom:0.75rem;animation:float 3s ease-in-out infinite}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
.inner-hero h1{color:#fff;font-size:2.5rem;margin:0 0 0.75rem;text-shadow:0 2px 10px rgba(0,0,0,0.2)}
.inner-hero .lead{color:rgba(255,255,255,0.95);font-size:1.15rem;margin:0;max-width:600px;margin:0 auto}

/* Legacy class support for awards page */
.awards-hero{background:linear-gradient(135deg, #146A4C 0%, #2E9E73 100%);padding:3rem 0 2.5rem;text-align:center;position:relative;overflow:hidden}
.awards-hero::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');opacity:0.3}
.awards-hero-content{position:relative;z-index:1}
.trophy-icon{font-size:3.5rem;margin-bottom:0.75rem;animation:float 3s ease-in-out infinite}
.awards-hero h1{color:#fff;font-size:2.5rem;margin:0 0 0.75rem;text-shadow:0 2px 10px rgba(0,0,0,0.2)}
.awards-hero .lead{color:rgba(255,255,255,0.95);font-size:1.15rem;margin:0;max-width:600px;margin:0 auto}

.awards-timeline-section{padding:4rem 0;background:#f8f9fa}
.awards-timeline{position:relative;max-width:900px;margin:0 auto}

.timeline-item{display:grid;grid-template-columns:80px 1fr;gap:2rem;margin-bottom:3rem;position:relative}
.timeline-item:last-child{margin-bottom:0}

.timeline-marker{display:flex;flex-direction:column;align-items:center;position:relative}
.timeline-dot{width:20px;height:20px;border-radius:50%;background:linear-gradient(135deg, #146A4C, #2E9E73);border:4px solid #fff;box-shadow:0 0 0 4px rgba(20,106,76,0.2),0 4px 12px rgba(20,106,76,0.3);position:relative;z-index:2;flex-shrink:0}
.timeline-line{width:3px;flex:1;background:linear-gradient(180deg, #146A4C 0%, rgba(20,106,76,0.3) 100%);margin-top:1rem;min-height:100px}

.timeline-content{flex:1;padding-bottom:2rem}
.award-year-badge{display:inline-block;background:linear-gradient(135deg, #146A4C, #2E9E73);color:#fff;padding:0.5rem 1.5rem;border-radius:30px;font-size:1.1rem;font-weight:700;margin-bottom:1rem;box-shadow:0 4px 12px rgba(20,106,76,0.3);letter-spacing:0.5px}

.award-card-new{background:#fff;border-radius:20px;padding:2rem;box-shadow:0 4px 20px rgba(0,0,0,0.08);border:1px solid rgba(20,106,76,0.1);transition:all 0.3s ease;position:relative;overflow:hidden}
.award-card-new::before{content:'';position:absolute;top:0;left:0;right:0;height:5px;background:linear-gradient(90deg, #146A4C, #F28C2B, #146A4C);transform:scaleX(0);transition:transform 0.3s ease}
.award-card-new:hover{transform:translateX(10px);box-shadow:0 8px 30px rgba(20,106,76,0.15);border-color:#146A4C}
.award-card-new:hover::before{transform:scaleX(1)}

.award-icon{font-size:3rem;margin-bottom:1rem;filter:drop-shadow(0 2px 4px rgba(0,0,0,0.1))}
.award-card-new h3{margin:0 0 0.75rem;color:#222;font-size:1.5rem;font-weight:700;line-height:1.3}
.award-org{color:#F28C2B;font-weight:600;font-size:1rem;margin:0 0 1rem;display:flex;align-items:center;gap:0.5rem}
.award-org::before{content:'🏛️';font-size:1.2rem}
.award-desc{color:#555;line-height:1.7;margin:0;font-size:1.05rem}

@media (max-width:900px){
  .inner-hero,.awards-hero{padding:2.5rem 0 2rem}
  .hero-icon,.trophy-icon{font-size:3rem}
  .inner-hero h1,.awards-hero h1{font-size:2rem}
  .inner-hero .lead,.awards-hero .lead{font-size:1.05rem}
  .awards-timeline-section{padding:3rem 0}
  .timeline-item{grid-template-columns:60px 1fr;gap:1.5rem;margin-bottom:2.5rem}
  .timeline-dot{width:16px;height:16px}
  .award-card-new{padding:1.5rem}
  .award-card-new h3{font-size:1.3rem}
  .award-org{font-size:0.95rem}
  .award-desc{font-size:1rem}
}

@media (max-width:700px){
  .inner-hero,.awards-hero{padding:2rem 0 1.75rem}
  .hero-icon,.trophy-icon{font-size:2.5rem}
  .inner-hero h1,.awards-hero h1{font-size:1.75rem}
  .inner-hero .lead,.awards-hero .lead{font-size:1rem;padding:0 1rem}
  .awards-timeline-section{padding:2.5rem 0}
  .timeline-item{grid-template-columns:50px 1fr;gap:1rem;margin-bottom:2rem}
  .timeline-dot{width:14px;height:14px;border:3px solid #fff}
  .timeline-line{width:2px;min-height:80px}
  .award-year-badge{font-size:1rem;padding:0.4rem 1.2rem}
  .award-card-new{padding:1.25rem;border-radius:16px}
  .award-card-new:hover{transform:translateX(5px)}
  .award-icon{font-size:2.5rem;margin-bottom:0.75rem}
  .award-card-new h3{font-size:1.2rem}
  .award-org{font-size:0.9rem}
  .award-org::before{font-size:1rem}
  .award-desc{font-size:0.95rem;line-height:1.6}
}

@media (max-width:480px){
  .inner-hero,.awards-hero{padding:1.75rem 0 1.5rem}
  .hero-icon,.trophy-icon{font-size:2.25rem}
  .inner-hero h1,.awards-hero h1{font-size:1.5rem}
  .inner-hero .lead,.awards-hero .lead{font-size:0.95rem}
  .timeline-item{grid-template-columns:40px 1fr;gap:0.75rem}
  .timeline-dot{width:12px;height:12px}
  .award-card-new{padding:1rem}
  .award-icon{font-size:2rem}
  .award-card-new h3{font-size:1.1rem}
}

@media (max-width:700px){
  .carousel-banner{height:200px}
  .carousel-banner .carousel-item{flex-direction:column;gap:1rem;padding:1rem}
  .carousel-banner .carousel-img{width:100%;height:120px}
  .carousel-banner .carousel-text h3{font-size:1rem}
  .carousel-banner .carousel-text p{font-size:0.9rem}
}
