<style>
        :root {
            --vv-green-main: #5a6b10;
            --vv-green-dark: #3d4a0a;
            --vv-green-light: #7a8e1a;
            --vv-tree-shade: #3d4a0a;
            --vv-gray: #4a5568;
            --vv-white: #ffffff;
            --font-display: 'Cormorant Garamond', serif;
            --font-body: 'Inter', sans-serif;
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: var(--font-body); color: var(--vv-tree-shade); opacity: 1; }
        
        /* Header */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 30px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: transparent;
            transition: all 0.3s ease;
        }
        .site-header.scrolled {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            padding: 15px 60px;
        }
        .site-header-logo img { height: 50px; filter: brightness(0) invert(1); transition: filter 0.3s ease; }
        .site-header.scrolled .site-header-logo img { filter: none; height: 40px; }
        .site-header-nav { display: flex; gap: 40px; align-items: center; }
        .site-header-nav a {
            text-decoration: none;
            color: var(--vv-white);
            font-size: 13px;
            letter-spacing: 2px;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .site-header.scrolled .site-header-nav a { color: var(--vv-tree-shade); }
        .site-header-nav a:hover { color: var(--vv-green-light); }
        .site-header-nav a.active { color: #fff; }
        .site-header.scrolled .site-header-nav a.active { color: var(--vv-green-main); }
        
        .site-mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--vv-white);
            font-size: 13px;
            letter-spacing: 2px;
            font-weight: 600;
            cursor: pointer;
        }
        .site-header.scrolled .site-mobile-toggle { color: var(--vv-tree-shade); }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            overflow: hidden;
        }
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
       
        }
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: left;
            color: var(--vv-white);
            max-width: 900px;
            padding: 0 80px 100px;
        }
        .hero-content h1 {
            font-family: var(--font-display);
            font-size: clamp(40px, 5.5vw, 78px);
            font-weight: 300;
            margin-bottom: 20px;
            line-height: 1.1;
            white-space: nowrap;
        }
        .hero-content p {
            font-size: 20px;
            font-weight: 300;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: flex-start;
        }
        .btn-primary {
            display: inline-block;
            padding: 18px 45px;
            background: var(--vv-green-main);
            color: var(--vv-white);
            text-decoration: none;
            font-size: 12px;
            letter-spacing: 3px;
            font-weight: 600;
            border: 2px solid var(--vv-green-main);
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background: #fff;
            color: #000;
        }
        .btn-secondary {
            display: inline-block;
            padding: 18px 45px;
            background: transparent;
            color: var(--vv-white);
            text-decoration: none;
            font-size: 12px;
            letter-spacing: 3px;
            font-weight: 600;
            border: 2px solid var(--vv-white);
            transition: all 0.3s ease;
        }
        .btn-secondary:hover {
            background: var(--vv-white);
            color: var(--vv-tree-shade);
        }
        
        /* Stats Section */
        .stats-section {
            padding: 60px 80px;
            background: #f5f2eb;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        .stat-item h3 {
            font-family: var(--font-display);
            font-size: 56px;
            font-weight: 300;
            color: var(--vv-green-main);
            margin-bottom: 10px;
        }
        .stat-item p {
            font-size: 14px;
            color: var(--vv-gray);
            letter-spacing: 1px;
        }
        
        /* Welcome Section */
        .welcome-section {
            padding: 100px 80px;
            background: var(--vv-white);
        }
        .welcome-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }
        .section-label {
            font-size: 11px;
            letter-spacing: 4px;
            color: var(--vv-green-main);
            font-weight: 600;
            margin-bottom: 20px;
            display: block;
        }
        .welcome-content h2 {
            font-family: var(--font-display);
            font-size: clamp(36px, 4vw, 56px);
            font-weight: 300;
            color: var(--vv-tree-shade);
            margin-bottom: 30px;
        }
        .welcome-content p {
            font-size: 17px;
            line-height: 1.8;
            color: var(--vv-gray);
            margin-bottom: 20px;
        }
        .welcome-content .tagline {
            font-family: var(--font-display);
            font-size: 24px;
            font-style: italic;
            color: var(--vv-green-main);
            margin-top: 30px;
        }
        
        /* Projects Section */
        .projects-section {
            padding: 100px 80px;
            background: #f5f2eb;
        }
        .projects-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .projects-header h2 {
            font-family: var(--font-display);
            font-size: clamp(36px, 4vw, 56px);
            font-weight: 300;
            color: var(--vv-tree-shade);
        }
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }
        .project-card {
            position: relative;
            overflow: hidden;
            height: 500px;
        }
        .project-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .project-card:hover img {
            transform: scale(1.05);
        }
        .project-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: var(--vv-white);
        }
        .project-card-overlay h3 {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 400;
            margin-bottom: 15px;
        }
        .project-card-overlay p {
            font-size: 14px;
            line-height: 1.7;
            opacity: 0.9;
            margin-bottom: 20px;
        }
        .project-card-overlay a {
            color: var(--vv-white);
            font-size: 12px;
            letter-spacing: 2px;
            text-decoration: none;
            border-bottom: 1px solid var(--vv-white);
            padding-bottom: 5px;
        }
        
        /* What We Do Section */
        .whatwedo-section {
            padding: 100px 80px;
            background: var(--vv-white);
        }
        .whatwedo-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .whatwedo-header h2 {
            font-family: var(--font-display);
            font-size: clamp(36px, 4vw, 56px);
            font-weight: 300;
            color: var(--vv-tree-shade);
        }
        .whatwedo-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .whatwedo-card {
            text-align: center;
            padding: 40px 30px;
            background: #f5f2eb;
            transition: all 0.3s ease;
        }
        .whatwedo-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(90,107,16,0.15);
        }
        .whatwedo-card i {
            font-size: 40px;
            color: var(--vv-green-main);
            margin-bottom: 25px;
        }
        .whatwedo-card h4 {
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 400;
            color: var(--vv-tree-shade);
            margin-bottom: 15px;
        }
        .whatwedo-card p {
            font-size: 14px;
            color: var(--vv-gray);
            line-height: 1.6;
        }
        
        /* Testimonials Section */
        .testimonials-section {
            padding: 100px 80px;
            background:#fff;
            color: var(--vv-white);
        }
        .testimonials-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .testimonials-header .section-label { color: #8fa832; }
        .testimonials-header h2 {
            font-family: var(--font-display);
            font-size: clamp(36px, 4vw, 56px);
            font-weight: 300;color:#000;
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .testimonial-card {
               background: #f5f2eb;
            backdrop-filter: blur(10px);
            padding: 40px;
            border: 1px solid rgba(255,255,255,0.15);
        }
        .testimonial-card .stars {
            color: #37411e;
            margin-bottom: 20px;
        }
        .testimonial-card p {
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 25px;
            font-style: italic;color:#000;
        }
        .testimonial-card .author {
            font-weight: 600;
            font-size: 14px;color:#000;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 80px;
        background: #f5f2eb;
            text-align: center;
        }
        .cta-section .cta-content {
            max-width: 1000px;
            margin: 0 auto;
        }
        .cta-section h2 {
            font-family: var(--font-display);
            font-size: clamp(36px, 4vw, 56px);
            font-weight: 300;
            color: var(--vv-tree-shade);
            margin-bottom: 30px;
        }
        .cta-section p {
            font-size: 17px;
            line-height: 1.8;
            color: var(--vv-gray);
            margin-bottom: 20px;
        }
        .cta-section .tagline {
            font-family: var(--font-display);
            font-size: 24px;
            font-style: italic;
            color: var(--vv-green-main);
            margin-top: 30px;
            margin-bottom: 0;
        }
        
        /* Footer */
        .site-footer {
            background: #000;
            color: #fff;
            padding: 0;
        }
        .footer-contact-bar {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            padding: 60px 80px 50px;
            max-width: 1400px;
            margin: 0 auto;
        }
        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        .footer-contact-icon {
            width: 45px;
            height: 45px;
            background: var(--vv-green-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            flex-shrink: 0;
        }
        .footer-contact-item h6 {
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 6px;
        }
        .footer-contact-item p {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            line-height: 1.6;
            margin: 0;
        }
        .footer-main {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            padding: 0 80px 50px;
            max-width: 1400px;
            margin: 0 auto;
        }
        .footer-brand-col img {
            max-width: 180px;
            margin-bottom: 25px;
        }
        .footer-brand-col .social-icons {
            display: flex;
            gap: 0;
        }
        .footer-brand-col .social-icons a {
            width: 42px;
            height: 42px;
            background: var(--vv-green-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            text-decoration: none;
            transition: background 0.3s ease;
        }
        .footer-brand-col .social-icons a:hover {
            background: var(--vv-green-main);
        }
        .footer-links-col h4 {
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 25px;
        }
        .footer-links-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px 60px;
        }
        .footer-links-grid a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
            display: block;
            padding: 4px 0;
        }
        .footer-links-grid a:hover { color: #fff; }
        .footer-copyright {
            padding: 30px 80px;
            font-size: 13px;
            color: rgba(255,255,255,0.4);
            max-width: 1400px;
            margin: 0 auto;
        }
        
        @media (max-width: 1024px) {
            .stats-grid, .projects-grid { grid-template-columns: repeat(2, 1fr); }
            .whatwedo-grid, .testimonials-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .footer-contact-bar { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .site-header { padding: 15px 30px; }
            .site-header-nav { display: none; }
            .site-mobile-toggle { display: block; }
            .site-header-nav.mobile-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,0.98); padding: 20px 30px; gap: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
            .site-header-nav.mobile-open a { color: var(--vv-tree-shade); }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .projects-grid { grid-template-columns: 1fr; }
            .welcome-section, .projects-section, .whatwedo-section, .testimonials-section, .cta-section { padding: 60px 30px; }
            .footer-contact-bar { grid-template-columns: 1fr; padding: 40px 30px 30px; }
            .footer-main { grid-template-columns: 1fr; padding: 0 30px 30px; }
            .footer-copyright { padding: 20px 30px; }
        }
.social-icons {
     padding: 0px;
    background: transparent; /* remove the long bar effect */
}

.social-icons a {
  width: 52px;
  height: 52px;
  background-color: #3f4b0f;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}.social-icons a {
  margin-right: 14px;
}

.social-icons a:last-child {
  margin-right: 0;
}.social-icons a {
  border-radius: 4px;   /* subtle rounding */
}

.social-icons a:hover {
  background-color: #566414;
  transform: translateY(-3px);
}
.twitter
{    width: 30%;
    margin-top: 26px;}

        .welcome-explore-section {
            position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(images/3.jpg) center center / cover no-repeat;
    text-align: center;
    overflow: hidden;
    padding: 80px 60px;
        }
        .welcome-explore-overlay {
            position: absolute;
            inset: 0;
       background: linear-gradient(180deg, rgb(90 107 16 / 73%) 0%, rgb(55 65 30 / 82%) 50%, rgb(47 56 26) 100%);
        }
        .welcome-explore-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0px;
        }
        .explore-label {
            display: block;
            font-size: 12px;
            letter-spacing: 6px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 30px;
            font-weight: 400;
        }
        .explore-divider {
            width: 40px;
            height: 2px;
            background: rgba(255, 255, 255, 0.4);
            margin: 0 auto 50px;
        }
        .explore-title {
        font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3rem;
    font-weight: 300;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
        }
        .explore-desc {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 20px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 50px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }
        .explore-btn {
            display: inline-block;
            padding: 22px 50px;
          background: var(--vv-green-main);
            color: #ffffff;
            text-decoration: none;
            font-size: 13px;
            letter-spacing: 3px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .explore-btn:hover {
            background: #fff;
    transform: translateY(-2px);
    color: #000;
        }
        @media (max-width: 768px) {
            .welcome-explore-section { min-height: 70vh; }
            .welcome-explore-content { padding: 20px 0px; }
            .explore-title { font-size: 36px; }
            .explore-desc { font-size: 17px; }
        }

          /* Press Gallery Section */
        .press-gallery-section {
            padding: 80px 60px;
            background: #fff;
        }
        
        .press-gallery-header {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .press-gallery-label {
            font-size: 11px;
            letter-spacing: 4px;
            color: var(--vv-green-main);
            display: block;
            margin-bottom: 20px;
            position: relative;
        }
        
        .press-gallery-label::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 1px;
            background: var(--vv-green-main);
        }
        
        .press-gallery-title {
            font-family: var(--font-display);
            font-size: clamp(36px, 4vw, 52px);
            font-weight: 300;
            color: var(--vv-tree-shade);
            margin-bottom: 15px;
            margin-top: 25px;
        }
        
        .press-gallery-subtitle {
            font-size: 16px;
            color: var(--vv-gray);
            max-width: 500px;
            margin: 0 auto;
        }
        
        .press-gallery-container {
            max-width: 1400px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .press-gallery-track {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .press-gallery-card {
           background: #f5f2eb80;
            padding: 40px;
            border: 1px solid rgba(7, 76, 97, 0.08);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .press-gallery-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(7, 76, 97, 0.12);
            border-color: transparent;
        }
        
        .press-card-date {
            font-size: 11px;
            letter-spacing: 2px;
            color: var(--vv-green-main);
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .press-card-title {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 400;
            color: var(--vv-tree-shade);
            line-height: 1.4;
            margin-bottom: 15px;
            flex-grow: 0;
        }
        
        .press-card-excerpt {
            font-size: 14px;
            line-height: 1.7;
            color: var(--vv-gray);
            margin-bottom: 25px;
            flex-grow: 1;
        }
        
        .press-card-link {
            font-size: 12px;
            letter-spacing: 2px;
            color: var(--vv-tree-shade);
            text-decoration: none;
            transition: all 0.3s ease;
            align-self: flex-start;
        }
        
        .press-card-link:hover {
            color: var(--vv-green-main);
            letter-spacing: 3px;
        }
        
        .press-gallery-footer {
            text-align: center;
            margin-top: 60px;
        }
        
        .press-gallery-cta {
            display: inline-block;
            background: var(--vv-tree-shade);
            color: var(--vv-white);
            padding: 18px 45px;
            font-size: 11px;
            letter-spacing: 3px;
            text-decoration: none;
            transition: all 0.4s ease;
            border: 2px solid var(--vv-tree-shade);
        }
        
        .press-gallery-cta:hover {
            background: transparent;
            color: var(--vv-tree-shade);
        }

              @media (max-width: 768px) {
                .site-header-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
    margin-top: 5px;
}.hero-content h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.1;
    white-space: nowrap;
}.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: var(--vv-white);
    max-width: 900px;
    padding: 0 25px 25px;
}.btn-primary {
    display: inline-block;
    padding: 18px 25px;
    background: var(--vv-green-main);
    color: var(--vv-white);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
    border: 2px solid var(--vv-green-main);
    width: 44%;
    transition: all 0.3s ease;
}.btn-secondary {
    display: inline-block;
    padding: 18px 25px;
    background: transparent;
    color: var(--vv-white);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
    border: 2px solid var(--vv-white);
    transition: all 0.3s ease;
    width: 44%;
}
         .stats-section {
    padding: 50px 20px;
    background: #f5f2eb;
}

.stat-item h3 {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 300;
    color: var(--vv-green-main);
    margin-bottom: 10px;
}.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}.stat-item p {
    font-size: 12px;
    color: var(--vv-gray);
    letter-spacing: 1px;
}.welcome-content h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--vv-tree-shade);
    margin-bottom: 30px;
}.welcome-content p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--vv-gray);
    margin-bottom: 20px;
}

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

.explore-btn {
    display: inline-block;
    padding: 22px 22px;
    background: var(--vv-green-main);
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.explore-title {
        font-size: 1.6rem;
    }.explore-label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-weight: 400;
}.explore-desc {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}.projects-header h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--vv-tree-shade);
}.projects-header {
    text-align: center;
    margin-bottom: 40px;
}.project-card-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 15px;
}.project-card-overlay p {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 20px;
}.whatwedo-header h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--vv-tree-shade);
}.whatwedo-header {
    text-align: center;
    margin-bottom: 40px;
}.testimonials-header h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 300;
    color: #000;
}.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}.cta-section h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--vv-tree-shade);
    margin-bottom: 20px;
}.cta-section p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--vv-gray);
    margin-bottom: 20px;
}.cta-section .tagline {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--vv-green-main);
    margin-top: 30px;
    margin-bottom: 0;
}

.press-gallery-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--vv-tree-shade);
    margin-bottom: 15px;
    margin-top: 25px;
}.press-gallery-subtitle {
    font-size: 0.9rem;
    color: var(--vv-gray);
    max-width: 500px;
    margin: 0 auto;
    line-height: 22px;
}.press-gallery-header {
    text-align: center;
    margin-bottom: 40px;
}.press-gallery-track {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}.press-gallery-section {
    padding: 60px 60px;
    background: #fff;
}.footer-contact-item {
        justify-content: left;
    }.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 0px;
}

.welcome-content .tagline {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--vv-green-main);
    margin-top: 20px;
}.explore-label {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-weight: 400;
}.explore-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}.explore-desc {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}.explore-btn {
    display: inline-block;
    padding: 20px 20px;
    background: var(--vv-green-main);
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 500;
    transition: all 0.3s ease;
}





}
    </style>