/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-primary: #4caf50;
    --green-deep: #2e7d32;
    --green-pale: rgba(76, 175, 80, 0.15);
    --cream: #f5f0e8;
    --dark: #0e0e0e;
    --mid: #1a1a1a;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', 'Segoe UI', sans-serif;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark);
    color: #fff;
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* ─── VIDEO CONTAINER ─────────────────────────────────── */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #000;
    overflow: hidden;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        170deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.25) 45%,
        rgba(0,0,0,0.75) 100%
    );
}

/* ─── FLOATING HEADER ─────────────────────────────────── */
.floating-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    z-index: 1000;
    padding: 0 5%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    font-weight: 400;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--green-primary);
}

/* ─── HAMBURGER ───────────────────────────────────────── */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
.hero-section {
    position: relative;
    padding: 130px 8% 140px;
    overflow: hidden;
    background: #020d03;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Canvas for particle animation */
#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Radial green glow blob */
.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(46,125,50,0.18) 0%, rgba(76,175,80,0.06) 45%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: blobPulse 8s ease-in-out infinite;
}

/* Second smaller glow bottom-left */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -5%;
    left: 5%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(76,175,80,0.09) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: blobPulse 10s ease-in-out 2s infinite;
}

@keyframes blobPulse {
    0%, 100% { transform: scale(1) translate(0, 0); opacity: 1; }
    33%       { transform: scale(1.08) translate(20px, -15px); opacity: 0.75; }
    66%       { transform: scale(0.95) translate(-10px, 20px); opacity: 0.9; }
}

/* Fine grid texture overlay */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(76,175,80,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(76,175,80,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Horizontal rule line accent */
.hero-rule {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(76,175,80,0.5) 30%, rgba(76,175,80,0.5) 70%, transparent);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--green-primary);
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 1s var(--transition) 0.1s forwards;
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--green-primary);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 6.5vw, 7.5rem);
    font-weight: 300;
    line-height: 1.03;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeUp 1s var(--transition) 0.22s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--green-primary);
    position: relative;
}

/* Underline swipe on italic word */
.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-primary);
    animation: swipeIn 0.9s var(--transition) 1.1s forwards;
}

@keyframes swipeIn {
    to { width: 100%; }
}

.hero-sub {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.6vw, 1.22rem);
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.3px;
    margin-bottom: 60px;
    padding-left: 2px;
    opacity: 0;
    animation: fadeUp 1s var(--transition) 0.36s forwards;
}

.hero-cta-group {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s var(--transition) 0.5s forwards;
}

/* Stat strip */
.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 0;
    margin-top: 90px;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 48px;
    opacity: 0;
    animation: fadeUp 1s var(--transition) 0.7s forwards;
}

.hero-stat {
    flex: 1;
    padding-right: 40px;
    border-right: 1px solid rgba(255,255,255,0.07);
    margin-right: 40px;
}

.hero-stat:last-child {
    border-right: none;
    margin-right: 0;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.5vw, 3.8rem);
    font-weight: 300;
    color: var(--green-primary);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.hero-stat-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

/* Aurora / northern-lights layer */
.hero-aurora {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.hero-aurora span {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    animation: auroraFloat 14s ease-in-out infinite;
}
.hero-aurora span:nth-child(1) {
    width: 700px; height: 400px;
    background: radial-gradient(ellipse, rgba(34,197,94,0.28) 0%, transparent 70%);
    top: -10%; left: 20%;
    animation-delay: 0s; animation-duration: 16s;
}
.hero-aurora span:nth-child(2) {
    width: 500px; height: 320px;
    background: radial-gradient(ellipse, rgba(16,185,129,0.22) 0%, transparent 70%);
    top: 5%; right: 10%;
    animation-delay: 3s; animation-duration: 13s;
}
.hero-aurora span:nth-child(3) {
    width: 600px; height: 280px;
    background: radial-gradient(ellipse, rgba(74,222,128,0.18) 0%, transparent 70%);
    bottom: 10%; left: -5%;
    animation-delay: 6s; animation-duration: 18s;
}
.hero-aurora span:nth-child(4) {
    width: 400px; height: 350px;
    background: radial-gradient(ellipse, rgba(5,150,105,0.2) 0%, transparent 70%);
    bottom: 0%; right: 25%;
    animation-delay: 9s; animation-duration: 15s;
}
@keyframes auroraFloat {
    0%   { opacity: 0; transform: translateY(0px) translateX(0px) scale(1); }
    20%  { opacity: 1; }
    50%  { transform: translateY(-40px) translateX(30px) scale(1.15); opacity: 0.8; }
    80%  { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(10px) translateX(-20px) scale(0.95); }
}

/* Floating leaf elements */
.hero-leaves {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.leaf {
    position: absolute;
    width: 12px;
    height: 18px;
    background: radial-gradient(ellipse at 40% 30%, rgba(134,239,172,0.9), rgba(34,197,94,0.4));
    border-radius: 0 80% 0 80%;
    opacity: 0;
    animation: leafFall linear infinite;
    filter: drop-shadow(0 0 6px rgba(74,222,128,0.6));
}
@keyframes leafFall {
    0%   { transform: translateY(-60px) rotate(0deg) scale(0); opacity: 0; }
    5%   { opacity: 0.85; transform: translateY(-20px) rotate(20deg) scale(1); }
    100% { transform: translateY(110vh) rotate(420deg) scale(0.6) translateX(80px); opacity: 0; }
}

/* DNA helix / ecosystem ring around the hero number */
.hero-ring-wrap {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    height: 380px;
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-ring-svg {
    position: absolute;
    inset: 0;
    animation: ringRotate 40s linear infinite;
}
@keyframes ringRotate { to { transform: rotate(360deg); } }

.hero-ring-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero-ring-icon {
    font-size: 5rem;
    line-height: 1;
    animation: iconPulse 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(74,222,128,0.7));
}
@keyframes iconPulse {
    0%,100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(74,222,128,0.5)); }
    50%      { transform: scale(1.12); filter: drop-shadow(0 0 36px rgba(74,222,128,0.9)); }
}
.hero-ring-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(134,239,172,0.7);
    margin-top: 12px;
}

/* Floating eco-badges in hero */
.hero-badges {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.eco-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(74,222,128,0.2);
    backdrop-filter: blur(12px);
    border-radius: 40px;
    padding: 8px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    animation: badgeFloat 6s ease-in-out infinite;
}
.eco-badge .badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    animation: dotBlink 2s ease-in-out infinite;
}
@keyframes dotBlink { 0%,100%{opacity:1} 50%{opacity:0.3} }
@keyframes badgeFloat {
    0%,100% { transform: translateY(0px); }
    50%      { transform: translateY(-10px); }
}
.eco-badge:nth-child(1) { top: 18%; right: 4%; animation-delay: 0s; }
.eco-badge:nth-child(2) { top: 34%; right: 2%; animation-delay: 1.5s; }
.eco-badge:nth-child(3) { bottom: 58%; right: 33%; animation-delay: 3s; }

/* Typed/scrolling words in hero sub-area */
.hero-scroll-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: linear-gradient(90deg, rgba(34,197,94,0.08), rgba(16,185,129,0.06));
    border-top: 1px solid rgba(74,222,128,0.15);
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 3;
}
.ticker-track {
    display: flex;
    gap: 0;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
}
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(74,222,128,0.55);
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.ticker-item::after { content: '◆'; font-size: 0.4rem; }

/* Enhanced stat pill cards in hero */
.hero-eco-cards {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 16px;
    margin-top: 60px;
    flex-wrap: wrap;
}
.eco-card {
    flex: 1;
    min-width: 160px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(74,222,128,0.15);
    border-radius: 12px;
    padding: 22px 24px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    cursor: default;
}
.eco-card:hover {
    transform: translateY(-6px);
    border-color: rgba(74,222,128,0.4);
    box-shadow: 0 20px 50px rgba(34,197,94,0.15);
}
.eco-card-icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.eco-card-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.6rem;
    font-weight: 300;
    color: #4ade80;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
}
.eco-card-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}
.eco-card-bar {
    margin-top: 14px;
    height: 2px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    overflow: hidden;
}
.eco-card-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ade80, #22d3ee);
    border-radius: 2px;
    width: 0;
    transition: width 1.8s cubic-bezier(0.4,0,0.2,1) var(--delay, 0.2s);
}
.eco-card.visible .eco-card-bar-fill { width: var(--w, 75%); }

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 38px;
    background: var(--green-primary);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 3px;
    border: 1px solid var(--green-primary);
    transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '→';
    font-size: 1rem;
    transition: transform 0.3s;
}

.btn-primary:hover {
    background: var(--green-deep);
    border-color: var(--green-deep);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(46,125,50,0.35);
}

.btn-primary:hover::after {
    transform: translateX(4px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 38px;
    background: transparent;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 3px;
    transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.25s;
}

.btn-ghost:hover {
    border-color: rgba(76,175,80,0.6);
    color: var(--green-primary);
    background: rgba(76,175,80,0.05);
    transform: translateY(-3px);
}

/* Leaf trail at the divider between hero and about */
.section-divider {
    position: relative;
    height: 80px;
    background: linear-gradient(180deg, #020d03 0%, #f7f2ea 100%);
    overflow: hidden;
}
.divider-leaves-svg {
    position: absolute;
    bottom: 0; left: 0; right: 0;
}
/* ─── PDF SECTION ──────────────────────────────── */
.pdf-section { padding: 72px 5% 88px; background: rgb(224, 238, 224); }

.pdf-section-header { text-align: center; margin-bottom: 52px; }

.pdf-eyebrow {
    display: block;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--green-deep);
    margin-bottom: 14px;
}

.pdf-section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 300;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 18px;
}

.pdf-section-title em { font-style: italic; color: var(--green-deep); }

.pdf-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pdf-divider-line {
    width: 60px;
    height: 0.5px;
    background: linear-gradient(90deg, transparent, rgba(46,125,50,0.4));
}

.pdf-divider-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--green-deep);
    opacity: 0.5;
}

/* ─── GRID ──────────────────────────────────────── */
.pdf-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(46,125,50,0.12);
    border: 0.5px solid rgba(46,125,50,0.15);
    border-radius: 16px;
    overflow: hidden;
}

@media (max-width: 900px)  { .pdf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .pdf-grid { grid-template-columns: 1fr; } }

/* ─── CARD ──────────────────────────────────────── */
.pdf-card {
    display: flex;
    flex-direction: column;
    padding: 24px 20px 20px;
    background: rgb(244, 249, 244);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background 0.35s ease;
    min-height: 148px;
}

.pdf-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(46,125,50,0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.pdf-card:hover { background: #e8f5e8; }
.pdf-card:hover::after { opacity: 1; }

.card-num {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 300;
    font-style: italic;
    color: rgba(46,125,50,0.4);
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    transition: color 0.3s;
}

.pdf-card:hover .card-num { color: rgba(46,125,50,0.9); }

.card-icon-wrap {
    width: 32px; height: 32px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.card-icon-wrap svg {
    width: 100%; height: 100%;
    fill: none;
    stroke: rgba(46,125,50,0.4);
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s;
}

.pdf-card:hover .card-icon-wrap svg { stroke: var(--green-deep); }

.card-title {
    font-size: 12px;
    font-weight: 400;
    color: rgba(26,26,26,0.65);
    line-height: 1.45;
    flex: 1;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.pdf-card:hover .card-title { color: #1a1a1a; }

.card-date {
    font-size: 10px;
    color: rgba(26,26,26,0.3);
    margin-top: 14px;
    letter-spacing: 0.06em;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.card-date::before {
    content: '';
    display: inline-block;
    width: 14px; height: 0.5px;
    background: rgba(46,125,50,0.35);
    flex-shrink: 0;
}

.pdf-card:hover .card-date { color: rgba(46,125,50,0.7); }

.card-arrow {
    position: absolute;
    bottom: 18px; right: 16px;
    width: 18px; height: 18px;
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 2;
}

.card-arrow svg {
    width: 100%; height: 100%;
    stroke: var(--green-deep);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.pdf-card:hover .card-arrow { opacity: 1; transform: translate(0,0); }
/* ═══════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════ */
.about-section {
    position: relative;
    background: #f7f2ea;
    color: var(--dark);
    padding: 120px 0 80px;
    overflow: hidden;
}


/* Large decorative character behind heading */
.about-section::before {
    content: 'ECO';
    position: absolute;
    top: -30px;
    left: 4%;
    font-family: var(--font-display);
    font-size: clamp(10rem, 18vw, 22rem);
    font-weight: 700;
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1px rgba(46,125,50,0.07);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    user-select: none;
    letter-spacing: -8px;
}

/* Decorative green corner arc */
.about-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(46,125,50,0.1);
    border-radius: 50%;
    pointer-events: none;
}

/* Animated watercolor blobs */
.about-watercolor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.wc-blob {
    position: absolute;
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%;
    filter: blur(40px);
    opacity: 0;
    animation: wcPulse 12s ease-in-out infinite;
}
.wc-blob:nth-child(1) {
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(134,239,172,0.18) 0%, rgba(74,222,128,0.08) 60%, transparent 100%);
    top: -100px; right: -80px;
    animation-delay: 0s;
}
.wc-blob:nth-child(2) {
    width: 500px; height: 500px;
    background: radial-gradient(ellipse, rgba(187,247,208,0.15) 0%, transparent 70%);
    bottom: -120px; left: -60px;
    animation-delay: 4s; animation-duration: 16s;
}
.wc-blob:nth-child(3) {
    width: 300px; height: 300px;
    background: radial-gradient(ellipse, rgba(52,211,153,0.12) 0%, transparent 70%);
    top: 40%; left: 45%;
    animation-delay: 8s; animation-duration: 10s;
}
@keyframes wcPulse {
    0%   { opacity: 0; transform: scale(0.9) rotate(0deg); }
    25%  { opacity: 1; }
    75%  { opacity: 0.7; transform: scale(1.08) rotate(5deg); }
    100% { opacity: 0; transform: scale(0.95) rotate(-3deg); }
}

/* About inner wrapper */
.about-inner-wrap {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 8%;
}

/* Two-column main grid */
.about-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

/* Left column */
.about-left-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Right column */
.about-right-col {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 2px solid rgba(46,125,50,0.15);
    padding-left: 56px;
}

/* Orbit visual */
.about-visual {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 40px auto 0;
    pointer-events: none;
    z-index: 1;
}

.about-orbit-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}
.orbit-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    background: radial-gradient(circle, rgba(34,197,94,0.2), rgba(5,150,105,0.1));
    border: 1px solid rgba(34,197,94,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    animation: centerPulse 3s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(34,197,94,0.15), inset 0 0 30px rgba(34,197,94,0.08);
}
@keyframes centerPulse {
    0%,100% { box-shadow: 0 0 40px rgba(34,197,94,0.15), inset 0 0 30px rgba(34,197,94,0.08); transform: translate(-50%,-50%) scale(1); }
    50%      { box-shadow: 0 0 60px rgba(34,197,94,0.3), inset 0 0 40px rgba(34,197,94,0.15); transform: translate(-50%,-50%) scale(1.05); }
}

.orbit-ring {
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(34,197,94,0.15);
    transform-origin: center;
}
.orbit-ring:nth-child(2) {
    width: 140px; height: 140px;
    margin: -70px 0 0 -70px;
    border-color: rgba(34,197,94,0.2);
    animation: orbitRing 12s linear infinite;
}
.orbit-ring:nth-child(3) {
    width: 210px; height: 210px;
    margin: -105px 0 0 -105px;
    animation: orbitRing 20s linear infinite reverse;
}
.orbit-ring:nth-child(4) {
    width: 280px; height: 280px;
    margin: -140px 0 0 -140px;
    border-style: dashed;
    animation: orbitRing 30s linear infinite;
}
@keyframes orbitRing { to { transform: rotate(360deg); } }

.orbit-dot {
    position: absolute;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(34,197,94,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12), 0 0 12px rgba(34,197,94,0.15);
    animation: counterOrbit var(--dur) linear infinite;
    top: 50%; left: 50%;
}
.orbit-ring:nth-child(2) .orbit-dot { --dur: 12s; margin: -17px 0 0 53px; }
.orbit-ring:nth-child(3) .orbit-dot { --dur: 20s; margin: -17px 0 0 88px; }
.orbit-ring:nth-child(4) .orbit-dot { --dur: 30s; margin: -17px 0 0 123px; }
@keyframes counterOrbit { to { transform: rotate(-360deg); } }

/* Flowing SVG wave behind about section */
.about-wave-svg {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

/* About container (legacy) */
.about-container {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.65fr;
    gap: 100px;
    align-items: start;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--green-deep);
    margin-bottom: 32px;
}

.section-label::before {
    content: '';
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    flex-shrink: 0;
}

.section-label.light {
    color: var(--green-primary);
}

.about-heading {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 3.8vw, 4.4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 48px;
}

.about-heading em {
    font-style: italic;
    color: var(--green-deep);
    position: relative;
}

.about-line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green-primary), var(--green-deep));
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.about-left.visible .about-line {
    width: 64px;
}

.about-left {
    position: sticky;
    top: 120px;
}

.about-right {
    padding-top: 8px;
}

.about-body {
    font-family: var(--font-body);
    font-size: 0.97rem;
    font-weight: 300;
    line-height: 1.9;
    color: #444;
    margin-bottom: 24px;
    position: relative;
    padding-left: 0;
    transition: padding-left 0.4s;
}

.about-body.lead {
    font-size: 1.12rem;
    font-weight: 400;
    color: #111;
    margin-bottom: 32px;
    padding-left: 20px;
    border-left: 2px solid var(--green-primary);
}

.about-body-block {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

.about-body-block.visible {
    opacity: 1;
    transform: none;
}

.about-body-block:nth-child(2) { transition-delay: 0.1s; }
.about-body-block:nth-child(3) { transition-delay: 0.2s; }
.about-body-block:nth-child(4) { transition-delay: 0.3s; }

/* Living counter animation for about section */
.about-impact-strip {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(0,0,0,0.07);
    padding-top: 48px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s, transform 0.8s;
}
.about-impact-strip.visible { opacity: 1; transform: none; }

.impact-cell {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid rgba(0,0,0,0.07);
}
.impact-cell:last-child { border-right: none; }

.impact-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.4rem, 3vw, 3.5rem);
    font-weight: 300;
    color: #2e7d32;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}
.impact-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.67rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.35);
}
.impact-icon { font-size: 1.3rem; margin-bottom: 10px; display: block; }

/* About: mini cards */
.about-mini-cards {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 16px;
    z-index: 2;
    margin-bottom: 56px;
    flex-wrap: wrap;
    padding: 0 0;
}
.mini-card {
    background: #fff;
    border: 1px solid rgba(34,197,94,0.18);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
    animation: miniCardFloat 7s ease-in-out infinite;
    flex: 1;
    min-width: 170px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(34,197,94,0.15);
}
.mini-card:nth-child(2) { animation-delay: 2.5s; }
.mini-card:nth-child(3) { animation-delay: 5s; }
@keyframes miniCardFloat {
    0%,100% { transform: translateY(0px); }
    50%      { transform: translateY(-6px); }
}
.mini-card-icon { font-size: 1.5rem; flex-shrink: 0; }
.mini-card-text { font-family: 'DM Sans',sans-serif; font-size: 0.78rem; font-weight: 500; color: #222; }
.mini-card-sub { font-size: 0.63rem; color: #888; font-weight: 300; margin-top: 2px; }

/* Chips */
.chips-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:8px; }
.chip-sm { display:flex; align-items:center; gap:8px; padding:8px 12px; background:#fff; border:1px solid rgba(46,125,50,0.18); border-radius:7px; cursor:default; transition:all 0.22s; }
.chip-sm:hover { border-color:rgba(46,125,50,0.5); background:#f0faf0; transform:translateY(-1px); }
.chip-sm-icon { width:22px; height:22px; border-radius:5px; background:rgba(46,125,50,0.08); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:11px; }
.chip-sm-name { font-size:0.68rem; font-weight:500; color:#1a2e1a; letter-spacing:0.2px; }

/* About section: mini cards full-width */
.about-section > .about-inner-wrap > .about-mini-cards {
    position: relative;
    z-index: 2;
    padding: 0;
    margin-top: 0;
}

/* ═══════════════════════════════════════════════
   EXPERTISE TAGS
═══════════════════════════════════════════════ */
.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}
.expertise-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    background: #fff;
    color: #2e7d32;
    border: 1.5px solid rgba(46,125,50,0.25);
    box-shadow: 0 2px 8px rgba(46,125,50,0.08);
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
    cursor: default;
}
.expertise-tags span::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #4caf50;
    display: inline-block;
    flex-shrink: 0;
    transition: transform 0.25s;
}
.expertise-tags span:hover {
    background: #2e7d32;
    color: #fff;
    border-color: #2e7d32;
    box-shadow: 0 6px 20px rgba(46,125,50,0.25);
    transform: translateY(-2px);
}
.expertise-tags span:hover::before { background: #a7f3d0; transform: scale(1.3); }

/* ═══════════════════════════════════════════════
   GALLERY SECTION — LIGHT THEME
═══════════════════════════════════════════════ */
.gallery-section {
    background: #f4f9f4 !important;
    padding: 120px 8%;
}
.gallery-heading { color: #1a2e1a !important; }
.gallery-heading em { color: #2e7d32 !important; }
.section-label.light { color: #2e7d32 !important; }

.gallery-header {
    max-width: 1300px;
    margin: 0 auto 72px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

.gallery-header.visible {
    opacity: 1;
    transform: none;
}

.gallery-heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
}

/* Mosaic Grid */
.gallery-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 340px 300px;
    gap: 16px;
}

.gallery-item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
}
.gallery-item--tall {
    grid-column: 8 / 13;
    grid-row: 1 / 3;
}
.gallery-item--wide {
    grid-column: 1 / 5;
    grid-row: 2 / 3;
}
.gallery-item--sq {
    grid-column: 5 / 8;
    grid-row: 2 / 3;
}

.gallery-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 6px;
}

.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--transition);
    display: block;
}

.gallery-item:hover .gallery-img-wrap img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.1) 50%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 28px;
    transition: background 0.4s;
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(
        0deg,
        rgba(14, 60, 20, 0.85) 0%,
        rgba(0,0,0,0.2) 60%,
        transparent 100%
    );
}

.gallery-overlay-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.g-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    line-height: 1;
    transition: color 0.3s;
}

.gallery-item:hover .g-num {
    color: var(--green-primary);
}

.g-label {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
}

/* ═══════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════ */
.contact-section {
    position: relative;
    background: #f0f7f0;
    padding: 120px 8% 100px;
    overflow: hidden;
}

.contact-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.contact-blob { position: absolute; border-radius: 50%; filter: blur(70px); animation: cBlobPulse 14s ease-in-out infinite; }
.contact-blob:nth-child(1) { width: 500px; height: 500px; background: radial-gradient(circle, rgba(134,239,172,0.2) 0%, transparent 70%); top: -150px; right: -100px; }
.contact-blob:nth-child(2) { width: 400px; height: 400px; background: radial-gradient(circle, rgba(52,211,153,0.15) 0%, transparent 70%); bottom: -100px; left: -80px; animation-delay: 5s; }
.contact-blob:nth-child(3) { width: 300px; height: 300px; background: radial-gradient(circle, rgba(187,247,208,0.18) 0%, transparent 70%); top: 50%; left: 40%; animation-delay: 9s; }
@keyframes cBlobPulse { 0%,100%{ transform: scale(1) translate(0,0); opacity:.7; } 50%{ transform: scale(1.15) translate(20px,-20px); opacity:1; } }

.contact-botanical { position: absolute; pointer-events: none; z-index: 1; opacity: 0.07; }
.contact-botanical.top-right  { top: 40px; right: 60px; width: 220px; animation: botanicalSway 8s ease-in-out infinite; }
.contact-botanical.bottom-left { bottom: 80px; left: 40px; width: 180px; animation: botanicalSway 11s ease-in-out 3s infinite; }
@keyframes botanicalSway { 0%,100%{ transform: rotate(0deg) scale(1); } 50%{ transform: rotate(4deg) scale(1.05); } }

.contact-inner {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 72px;
    align-items: stretch;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0; transform: translateX(-30px);
    transition: opacity 0.8s, transform 0.8s;
}
.contact-left.visible { opacity: 1; transform: none; }

.contact-left-top { flex-shrink: 0; margin-bottom: 28px; }

.contact-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.2rem, 3.5vw, 4rem);
    font-weight: 300; line-height: 1.1;
    color: #1a2e1a; margin-bottom: 20px;
}
.contact-heading em { font-style: italic; color: #2e7d32; }

.contact-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.93rem; font-weight: 300;
    line-height: 1.8; color: #555;
    margin-bottom: 0;
}

.contact-info-pills {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.contact-info-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #fff;
    border: 1.5px solid rgba(46,125,50,0.14);
    border-radius: 14px;
    text-decoration: none;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    box-shadow: 0 2px 10px rgba(46,125,50,0.05);
}
.contact-info-pill:hover {
    border-color: rgba(46,125,50,0.4);
    box-shadow: 0 8px 24px rgba(46,125,50,0.12);
    transform: translateX(4px);
}

.pill-icon-box {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, rgba(46,125,50,0.1), rgba(76,175,80,0.06));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    border: 1px solid rgba(46,125,50,0.12);
}

.pill-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.pill-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.62rem; font-weight: 600;
    letter-spacing: 1.8px; text-transform: uppercase;
    color: #2e7d32;
}
.pill-value {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.87rem; font-weight: 400;
    color: #2a2a2a;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.contact-left.visible .contact-info-pill:nth-child(1) { animation: slideInPill 0.5s 0.3s  both; }
.contact-left.visible .contact-info-pill:nth-child(2) { animation: slideInPill 0.5s 0.45s both; }
.contact-left.visible .contact-info-pill:nth-child(3) { animation: slideInPill 0.5s 0.6s  both; }
@keyframes slideInPill {
    from { opacity: 0; transform: translateX(-14px); }
    to   { opacity: 1; transform: translateX(0); }
}

.contact-social-block { flex-shrink: 0; }

.social-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.62rem; letter-spacing: 3px;
    text-transform: uppercase; color: #2e7d32;
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 10px;
}
.social-label::before { content:''; display:block; width:20px; height:1px; background:#2e7d32; }

.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.social-link {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 14px;
    background: #fff;
    border: 1.5px solid rgba(46,125,50,0.15);
    border-radius: 10px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem; font-weight: 500;
    color: #2a2a2a;
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    white-space: nowrap;
}
.social-link svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.social-link:hover {
    background: #2e7d32;
    border-color: #2e7d32;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(46,125,50,0.22);
}

.contact-left.visible .social-link:nth-child(1) { animation: popIn 0.4s 0.75s both; }
.contact-left.visible .social-link:nth-child(2) { animation: popIn 0.4s 0.9s  both; }
.contact-left.visible .social-link:nth-child(3) { animation: popIn 0.4s 1.05s both; }
.contact-left.visible .social-link:nth-child(4) { animation: popIn 0.4s 1.2s  both; }
@keyframes popIn {
    from { opacity: 0; transform: scale(0.82) translateY(8px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.contact-form-wrap {
    display: flex; flex-direction: column;
    opacity: 0; transform: translateX(30px);
    transition: opacity 0.8s 0.15s, transform 0.8s 0.15s;
}
.contact-form-wrap.visible { opacity: 1; transform: none; }

.contact-form {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 44px 40px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.07), 0 0 0 1px rgba(46,125,50,0.07);
    position: relative; overflow: hidden;
    display: flex; flex-direction: column;
}
.contact-form::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #4caf50, #22d3ee, #4caf50);
    background-size: 200% 100%;
    animation: gradShift 4s linear infinite;
}
@keyframes gradShift { to { background-position: 200% 0; } }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-group--grow { flex: 1; display: flex; flex-direction: column; }
.form-group--grow .form-textarea { flex: 1; }

.form-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.68rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase; color: #666;
}
.form-input, .form-textarea {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem; font-weight: 300; color: #1a1a1a;
    background: #f9fdf9;
    border: 1.5px solid rgba(0,0,0,0.09);
    border-radius: 10px; padding: 13px 16px;
    outline: none; width: 100%;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.form-input:focus, .form-textarea:focus {
    border-color: #4caf50; background: #fff;
    box-shadow: 0 0 0 3px rgba(76,175,80,0.1);
}
.form-textarea { min-height: 130px; resize: none; }

.form-submit {
    width: 100%; margin-top: 18px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: #fff; border: none; border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase;
    cursor: pointer; position: relative; overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    flex-shrink: 0;
}
.form-submit::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
    opacity: 0; transition: opacity 0.25s;
}
.form-submit:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(46,125,50,0.32); }
.form-submit:hover::after { opacity: 1; }
.form-submit:active { transform: translateY(-1px); }

.ripple {
    position: absolute; border-radius: 50%;
    background: rgba(255,255,255,0.3); transform: scale(0);
    animation: rippleAnim 0.6s linear; pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

.form-success { display: none; text-align: center; padding: 40px 24px; }
.form-success-icon { font-size: 3rem; margin-bottom: 16px; animation: successBounce 0.6s ease; }
@keyframes successBounce { 0%{transform:scale(0)} 60%{transform:scale(1.2)} 100%{transform:scale(1)} }
.form-success h3 { font-family: 'Cormorant Garamond',serif; font-size: 1.8rem; font-weight: 300; color: #2e7d32; margin-bottom: 8px; }
.form-success p { font-family: 'DM Sans',sans-serif; font-size: 0.88rem; color: #888; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.sairevo-footer {
    background: #020d03;
    position: relative;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
}

.sf-pulse {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.sf-pulse-1 {
    width: 600px; height: 600px;
    top: -200px; left: -100px;
    background: radial-gradient(circle, rgba(34,197,94,0.06) 0%, transparent 65%);
    animation: sfPulse 12s ease-in-out infinite;
}
.sf-pulse-2 {
    width: 500px; height: 500px;
    bottom: -100px; right: -80px;
    background: radial-gradient(circle, rgba(16,185,129,0.05) 0%, transparent 65%);
    animation: sfPulse 16s ease-in-out 4s infinite reverse;
}
@keyframes sfPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
}

.sf-texture {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(74,222,128,0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.5) 80%, transparent 100%);
}

.sf-bg-word {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(80px, 15vw, 180px);
    font-weight: 300;
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1px rgba(74,222,128,0.06);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: -4px;
    user-select: none;
}

.sf-hero {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 8% 64px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.sf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(74,222,128,0.6);
    font-weight: 400;
    margin-bottom: 28px;
}
.sf-eyebrow::before,
.sf-eyebrow::after {
    content: '';
    display: block;
    width: 32px; height: 1px;
    background: rgba(74,222,128,0.3);
}

.sf-statement {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 32px;
}
.sf-statement em {
    font-style: italic;
    color: #4ade80;
}

.sf-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.sf-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #4ade80;
    color: #020d03;
    border: none;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}
.sf-btn-primary:hover {
    background: #86efac;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(74,222,128,0.25);
}
.sf-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}
.sf-btn-ghost:hover {
    border-color: rgba(74,222,128,0.4);
    color: #4ade80;
}

.sf-links-zone {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 0;
    padding: 0 8%;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.sf-col {
    padding: 52px 48px 52px 0;
    border-right: 1px solid rgba(255,255,255,0.04);
}
.sf-col:last-child { border-right: none; padding-right: 0; }
.sf-col:not(:first-child) { padding-left: 48px; }

.sf-brand-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 16px;
}
.sf-brand-logo em { font-style: italic; color: #4ade80; }

.sf-brand-desc {
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.32);
    max-width: 240px;
    margin-bottom: 28px;
}

.sf-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74,222,128,0.06);
    border: 1px solid rgba(74,222,128,0.18);
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 0.62rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(74,222,128,0.7);
    font-weight: 400;
}
.sf-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #4ade80;
    animation: sfBlink 2.5s ease-in-out infinite;
}
@keyframes sfBlink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.sf-col-title {
    font-size: 0.58rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    font-weight: 500;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sf-col-title::before {
    content: '';
    width: 16px; height: 1px;
    background: rgba(74,222,128,0.4);
    flex-shrink: 0;
}

.sf-nav { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.sf-nav a {
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 300;
    color: rgba(255,255,255,0.38);
    transition: color 0.25s, padding-left 0.25s;
    display: block;
    position: relative;
}
.sf-nav a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #4ade80;
    opacity: 0;
    transition: opacity 0.2s;
}
.sf-nav a:hover { color: rgba(255,255,255,0.85); padding-left: 8px; }
.sf-nav a:hover::before { opacity: 1; }

.sf-contact-list { display: flex; flex-direction: column; gap: 16px; }
.sf-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.sf-ci-box {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(74,222,128,0.05);
    border: 1px solid rgba(74,222,128,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
}
.sf-ci-text {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255,255,255,0.38);
    line-height: 1.5;
    padding-top: 6px;
}

.sf-bottom {
    position: relative;
    z-index: 2;
    padding: 24px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.sf-copy {
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(255,255,255,0.18);
}
.sf-copy em { font-style: normal; color: rgba(74,222,128,0.5); }

.sf-social { display: flex; gap: 8px; }
.sf-social a {
    width: 36px; height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.07);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.28);
    text-decoration: none;
    transition: all 0.25s;
    background: rgba(255,255,255,0.02);
}
.sf-social a:hover {
    border-color: rgba(74,222,128,0.35);
    color: #4ade80;
    background: rgba(74,222,128,0.07);
    transform: translateY(-3px);
}
.sf-social svg { width: 13px; height: 13px; fill: currentColor; }

.sf-legal { display: flex; gap: 20px; }
.sf-legal a {
    font-size: 0.68rem;
    font-weight: 300;
    color: rgba(255,255,255,0.15);
    text-decoration: none;
    transition: color 0.25s;
}
.sf-legal a:hover { color: rgba(74,222,128,0.7); }

/* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════ */
.about-left, .about-right, .gallery-item {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.about-left.visible, .about-right.visible, .gallery-item.visible {
    opacity: 1;
    transform: none;
}

.about-right { transition-delay: 0.14s; }

.gallery-item:nth-child(1) { transition-delay: 0.05s; }
.gallery-item:nth-child(2) { transition-delay: 0.15s; }
.gallery-item:nth-child(3) { transition-delay: 0.22s; }
.gallery-item:nth-child(4) { transition-delay: 0.3s; }

/* ─── KEYFRAMES ───────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .sf-links-zone {
        grid-template-columns: 1fr 1fr;
    }
    .sf-col {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.04);
        padding: 40px 0;
    }
    .sf-col:not(:first-child) { padding-left: 0; }
    .sf-col:nth-child(odd) { padding-right: 40px; border-right: 1px solid rgba(255,255,255,0.04); }
    .sf-col:nth-child(even) { padding-left: 40px; }
    .sf-col:last-child, .sf-col:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}

@media (max-width: 968px) {
    .about-main-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-left-col {
        text-align: center;
        align-items: center;
    }
    .about-right-col {
        border-left: none;
        border-top: 2px solid rgba(46,125,50,0.15);
        padding-left: 0;
        padding-top: 48px;
    }
    .about-visual {
        width: 240px;
        height: 240px;
    }
    .orbit-ring:nth-child(2) { width: 110px; height: 110px; margin: -55px 0 0 -55px; }
    .orbit-ring:nth-child(3) { width: 165px; height: 165px; margin: -82px 0 0 -82px; }
    .orbit-ring:nth-child(4) { width: 220px; height: 220px; margin: -110px 0 0 -110px; }
    .orbit-ring:nth-child(2) .orbit-dot { margin: -17px 0 0 38px; }
    .orbit-ring:nth-child(3) .orbit-dot { margin: -17px 0 0 65px; }
    .orbit-ring:nth-child(4) .orbit-dot { margin: -17px 0 0 93px; }
}

@media (max-width: 900px) {
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .contact-left { flex-direction: column; }
    .contact-info-pills { flex: none; }
    .social-links { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .video-container {
        height: 65vh;
    }

    .menu-toggle { display: flex; }

    .nav-links {
        position: absolute;
        top: 90px;
        right: 5%;
        width: 180px;
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        background: rgba(15, 30, 15, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(74, 222, 128, 0.18);
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.7);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px) scale(0.95);
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        pointer-events: none;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .nav-links li { width: 100%; }

    .nav-links a {
        display: block;
        padding: 12px;
        font-size: 0.85rem;
        background: rgba(255,255,255,0.05);
        border-radius: 12px;
        text-align: center;
        border: 1px solid rgba(255,255,255,0.05);
    }

    .nav-links a:active, .nav-links a.active {
        background: #2e7d32;
        color: white;
        border-color: #4caf50;
    }

    .hero-section { padding: 80px 6% 90px; }

    .hero-stats {
        flex-direction: column;
        gap: 28px;
        margin-top: 60px;
        padding-top: 36px;
    }

    .hero-stat {
        border-right: none;
        margin-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        padding-bottom: 28px;
        padding-right: 0;
    }

    .hero-stat:last-child { border-bottom: none; padding-bottom: 0; }

    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary, .btn-ghost {
        text-align: center;
        justify-content: center;
    }

    .about-section { padding: 90px 6%; }
    .about-section::before { display: none; }
    .about-left { position: static; }
    .about-container { grid-template-columns: 1fr; gap: 52px; }

    .gallery-section { padding: 80px 5%; }

    .gallery-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px;
        gap: 12px;
    }

    .gallery-item--large,
    .gallery-item--tall,
    .gallery-item--wide,
    .gallery-item--sq {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-item--tall { grid-row: span 2; }

    .hero-ring-wrap, .hero-badges { display: none; }
    .hero-eco-cards { flex-direction: column; }
    .about-mini-cards { flex-direction: column; }
    .about-impact-strip { grid-template-columns: 1fr 1fr; gap: 28px; }
    .impact-cell { border-right: none; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 680px) {
    .sf-hero { padding: 60px 6% 48px; }
    .sf-statement { font-size: clamp(1.9rem, 7vw, 3rem); }

    .sf-links-zone {
        grid-template-columns: 1fr;
        padding: 0 6%;
    }
    .sf-col {
        padding: 32px 0;
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.04);
        text-align: center;
    }
    .sf-col:last-child { border-bottom: none; }
    .sf-col:nth-child(odd) { padding-right: 0; border-right: none !important; }
    .sf-col:nth-child(even) { padding-left: 0; }

    .sf-col-title { justify-content: center; }
    .sf-nav a { text-align: center; }
    .sf-nav a::before { display: none; }
    .sf-brand-desc { margin: 0 auto 28px; }
    .sf-contact-item { justify-content: center; }

    .sf-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 6%;
        gap: 16px;
    }
    .sf-social { justify-content: center; }
    .sf-legal { justify-content: center; }
    .sf-bg-word { font-size: 18vw; }
}

@media (max-width: 600px) {
    .contact-section { padding: 80px 6% 72px; }
    .social-links { grid-template-columns: 1fr 1fr; }
    .contact-form { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 240px);
    }

    .gallery-item--tall { grid-row: span 1; }

    .footer-top { grid-template-columns: 1fr; }
    .about-impact-strip { grid-template-columns: 1fr 1fr; }
}