/* CSS Document */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
 --forest: #1B4332;
 --forest-light: #2D6A4F;
 --sage: #74C69D;
 --sage-light: #B7E4C7;
 --cream: #F8F5F0;
 --brown: #5C3D2E;
 --gold: #C9A84C;
 --white: #ffffff;
 --text-dark: #1a1a1a;
 --text-mid: #444;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}
body {
    font-family: 'Roboto', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
}
/* NAV */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(27, 67, 50, 0.96);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 68px;
    border-bottom: 1px solid rgba(116,198,157,0.2);
}
.nav-logo {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 1px;
}
.nav-logo span {
    color: var(--sage);
}
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}
.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: var(--sage);
}
.nav-cta {
    background: var(--gold);
    color: var(--forest);
    border: none;
    padding: 0.55rem 1.4rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}
.nav-cta:hover {
    background: #e0be6a;
}
/* HERO */
#hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--forest) 0%, #0d2b1e 60%, #1a3a2a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 68px;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 70% 30%, rgba(116,198,157,0.08) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 40%);
}
.leaf-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.hero-headline {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.hero-headline em {
    font-style: normal;
    color: var(--sage);
}
.hero-subtext {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    margin-bottom: 2.5rem;
}
.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-primary {
    background: var(--gold);
    color: var(--forest);
    padding: 0.9rem 2.2rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}
.btn-primary:hover {
    background: #e0be6a;
    transform: translateY(-2px);
}
.btn-outline {
    border: 1.5px solid rgba(255,255,255,0.4);
    color: var(--white);
    padding: 0.9rem 2.2rem;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    background: transparent;
    transition: all 0.3s;
}
.btn-outline:hover {
    border-color: var(--sage);
    color: var(--sage);
}
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item {
}
.stat-num {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--sage);
}
.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.2rem;
    letter-spacing: 0.5px;
}
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
}
.hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(116,198,157,0.2);
    padding: 1.4rem 1.6rem;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s;
}
.hero-card:hover {
    transform: translateX(6px);
}
.hero-card-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}
.hero-card-text h4 {
    color: var(--sage);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.hero-card-text p {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    line-height: 1.5;
}
/* SECTION STYLES */
section {
    padding: 6rem 5%;
}
.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}
.section-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--forest);
}
.section-subtitle {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-mid);
    max-width: 560px;
}
.section-header {
    margin-bottom: 3.5rem;
}
/* OVERVIEW */
#overview {
    background: var(--white);
}
.overview-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}
.feature-card {
    background: var(--cream);
    padding: 1.8rem 1.4rem;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    text-align: center;
}
.feature-card:hover {
    border-bottom-color: var(--sage);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(27,67,50,0.08);
}
.feature-card .fc-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.feature-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--forest);
    line-height: 1.4;
}
/* HIGHLIGHTS */
#highlights {
    background: var(--forest);
}
.highlights-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.highlights-inner .section-title {
    color: var(--white);
}
.highlights-inner .section-subtitle {
    color: rgba(255,255,255,0.6);
}
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}
.highlight-item {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(116,198,157,0.15);
    transition: background 0.3s;
}
.highlight-item:last-child {
    border-right: none;
}
.highlight-item:hover {
    background: rgba(116,198,157,0.06);
}
.highlight-icon {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}
.highlight-item p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.75);
}
/* VALUE WHEEL / PILLARS */
#value {
    background: var(--cream);
}
.value-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.value-pillar {
    padding: 2.5rem;
    border-left: 4px solid var(--sage);
    background: var(--white);
    transition: border-color 0.3s, transform 0.3s;
}
.value-pillar:hover {
    border-color: var(--gold);
    transform: translateX(4px);
}
.pillar-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.pillar-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 0.8rem;
}
.pillar-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-mid);
}
/* INVESTMENT */
#investment {
    background: var(--white);
}
.investment-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.invest-cards {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.invest-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--cream);
    border-left: 4px solid var(--forest);
    transition: border-color 0.3s;
}
.invest-card:hover {
    border-color: var(--gold);
}
.invest-card-icon {
    font-size: 2rem;
    flex-shrink: 0;
}
.invest-card-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}
.invest-card-value {
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--forest);
}
.invest-card-sub {
    font-size: 0.8rem;
    color: var(--text-mid);
}
.invest-right {
}
.founders-box {
    background: var(--forest);
    padding: 3rem;
    color: var(--white);
}
.founders-box h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--sage);
    margin-bottom: 1.5rem;
}
.founder {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.founder:last-child {
    border-bottom: none;
}
.founder-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.founder-name {
    font-weight: 600;
    font-size: 0.95rem;
}
.founder-country {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.1rem;
}
/* ROADMAP */
#roadmap {
    background: var(--cream);
}
.roadmap-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}
.roadmap-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(to right, var(--forest), var(--sage));
    z-index: 0;
}
.phase-card {
    padding: 1rem 1rem 1.5rem;
    position: relative;
    z-index: 1;
    text-align: center;
}
.phase-dot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    margin: 0 auto 1.2rem;
    border: 3px solid var(--cream);
    box-shadow: 0 0 0 2px var(--forest);
    transition: background 0.3s;
}
.phase-card.completed .phase-dot {
    background: var(--gold);
    box-shadow: 0 0 0 2px var(--gold);
}
.phase-card:hover .phase-dot {
    background: var(--forest-light);
}
.phase-title {
    font-weight: 700;
    font-size: 18px;
    color: var(--forest);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}
.phase-text {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-mid);
}
.roadmap-row2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    margin-top: 1.5rem;
}
/* CTA */
#cta {
    background: linear-gradient(135deg, var(--forest) 0%, #0d2b1e 100%);
    text-align: center;
    padding: 7rem 5%;
}
.cta-inner {
    max-width: 700px;
    margin: 0 auto;
}
#cta .section-title {
    color: var(--white);
}
#cta .section-subtitle {
    color: rgba(255,255,255,0.65);
    margin: 0 auto 2.5rem;
}
.cta-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.cta-contact {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}
.contact-item {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
}
.contact-item span {
    color: var(--sage);
}
/* FOOTER */
footer {
    background: #0d2b1e;
    padding: 2rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-logo {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    color: var(--white);
    font-size: 1.2rem;
}
.footer-logo span {
    color: var(--sage);
}
.footer-tagline {
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
}

  /* ANIMATIONS */
  @keyframes floatLeaf {
 0% {
transform: translateY(100vh) rotate(0deg);
opacity: 0;
}
 10% {
opacity: 0.6;
}
 90% {
opacity: 0.4;
}
 100% {
transform: translateY(-100px) rotate(360deg);
opacity: 0;
}
}
.leaf-particle {
    position: absolute;
    font-size: 1rem;
    animation: floatLeaf linear infinite;
    pointer-events: none;
}
 @keyframes fadeUp {
 from {
opacity: 0;
transform: translateY(30px);
}
 to {
opacity: 1;
transform: translateY(0);
}
}
.fade-up {
    opacity: 0;
}
.fade-up.visible {
    animation: fadeUp 0.6s ease forwards;
}

/* RESPONSIVE */
@media (max-width: 900px) {
.hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
}
.overview-grid {
    grid-template-columns: repeat(2, 1fr);
}
.highlights-grid {
    grid-template-columns: repeat(2, 1fr);
}
.highlight-item {
    border-right: none;
    border-bottom: 1px solid rgba(116,198,157,0.15);
}
.value-grid {
    grid-template-columns: 1fr;
}
.investment-inner {
    grid-template-columns: 1fr;
}
.roadmap-grid, .roadmap-row2 {
    grid-template-columns: repeat(2, 1fr);
}
.roadmap-grid::before {
    display: none;
}
.nav-links {
    display: none;
}
}

@media (max-width: 500px) {
.overview-grid {
    grid-template-columns: 1fr;
}
.highlights-grid {
    grid-template-columns: 1fr;
}
.hero-stats {
    flex-direction: column;
    gap: 1rem;
}
}
.feature-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    text-align: left;
    background: var(--cream);
    cursor: default;
}
.feature-card:hover {
    border-bottom-color: var(--sage);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(27,67,50,0.08);
}
/* Image fills top of card */
.fc-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: center;
    display: block;
}
/* Text sits over a dark gradient at the bottom of the image */
.fc-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13,43,30,0.88) 60%, transparent 100%);
    padding: 28px 14px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}
#digital-twins {
    background: var(--forest);
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}
#digital-twins::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(116,198,157,0.12) 0%, transparent 50%), radial-gradient(circle at 10% 80%, rgba(201,168,76,0.07) 0%, transparent 40%);
    pointer-events: none;
}
.dt-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.dt-text-col {
}
.dt-text-col .section-eyebrow {
    color: var(--gold);
}
.dt-text-col .section-title {
    color: var(--white);
}
.dt-text-col .section-subtitle {
    color: rgba(255,255,255,0.65);
    margin-bottom: 2rem;
}
.dt-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(116,198,157,0.15);
    border: 1px solid rgba(116,198,157,0.3);
    color: var(--sage);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    margin-bottom: 1.2rem;
    display: inline-block;
}
.dt-features {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2.5rem;
}
.dt-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    line-height: 1.6;
}
.dt-feature-item::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sage);
    flex-shrink: 0;
    margin-top: 7px;
}
.dt-feature-item1 {
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    line-height: 1.6;
}
.dt-feature-item1::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sage);
    flex-shrink: 0;
    margin-top: 7px;
}
.dt-download-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.dt-download-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}
.dt-btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gold);
    color: var(--forest);
    border: none;
    padding: 0.85rem 2rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}
.dt-btn-download:hover {
    background: #e0be6a;
    transform: translateY(-2px);
}
.dt-btn-download .dt-arrow {
    font-size: 1rem;
}
/* Image col */
.dt-img-col {
    position: relative;
}
.dt-img-frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(116,198,157,0.25), 0 32px 64px rgba(0,0,0,0.45);
}
.dt-img-frame img {
    width: 100%;
    display: block;
    object-fit: cover;
}
.dt-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13,43,30,0.85) 40%, transparent 100%);
    padding: 2rem 1.6rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.dt-meta-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
}
.dt-meta-badge .meta-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sage);
    box-shadow: 0 0 8px var(--sage);
}

/* Responsive */
@media (max-width: 900px) {
.dt-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
}
.dt-img-col {
    order: -1;
}
}

@media (max-width: 500px) {
#digital-twins {
    padding: 4rem 5%;
}
.dt-download-row {
    flex-direction: column;
    align-items: flex-start;
}
}
#sustainable {
    background: var(--white);
    padding: 6rem 5%;
}
.sus-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.sus-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}
.sus-intro-text {
}
.sus-intro-text .section-eyebrow {
    color: var(--gold);
}
.sus-intro-text .section-title {
    color: var(--forest);
}
.sus-intro-text .section-subtitle {
    color: var(--text-mid);
    margin-bottom: 1.5rem;
}
.sus-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1.2rem;
}
.sus-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
}
.sus-benefit-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--forest);
    flex-shrink: 0;
    margin-top: 7px;
}
.sus-intro-img {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(27,67,50,0.12);
}
.sus-intro-img img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 340px;
}
.sus-intro-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(27,67,50,0.80) 50%, transparent 100%);
    padding: 2rem 1.6rem 1.4rem;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.sus-intro-img-overlay span {
    display: inline-block;
    background: var(--gold);
    color: var(--forest);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    margin-bottom: 0.5rem;
}
/* Services Grid */
.sus-grid-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-align: center;
}
.sus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}
.sus-card {
    position: relative;
    overflow: hidden;
    background: var(--cream);
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    cursor: default;
}
.sus-card:hover {
    border-bottom-color: var(--forest);
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(27,67,50,0.10);
}
.sus-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s;
}
.sus-card:hover img {
    transform: scale(1.04);
}
.sus-card-body {
    padding: 1.1rem 1rem 1.3rem;
}
.sus-card-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--forest);
    line-height: 1.35;
    margin-bottom: 0.4rem;
}
.sus-card-desc {
    font-size: 0.78rem;
    line-height: 1.6;
    color: var(--text-mid);
}
.sus-card-link {
    display: inline-block;
    margin-top: 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--forest-light);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.3s;
}
.sus-card-link:hover {
    color: var(--gold);
}
.sus-card-link::after {
    content: ' →';
}

/* Responsive */
@media (max-width: 1024px) {
.sus-grid {
    grid-template-columns: repeat(3, 1fr);
}
}

@media (max-width: 900px) {
.sus-intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
.sus-intro-img {
    order: -1;
}
.sus-grid {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 500px) {
#sustainable {
    padding: 4rem 5%;
}
.sus-grid {
    grid-template-columns: 1fr;
}
}
#gallery {
    background: #ffffff;
    padding: 6rem 5%;
}
.gallery-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(27,67,50,.08);
    transition: .35s ease;
}
.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(27,67,50,.14);
}
.gallery-item img {
    width: 100%;
    height: 260px;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}
.gallery-item:hover img {
    transform: scale(1.06);
}
.gallery-btn-wrap {
    text-align: center;
    margin-top: 3rem;
}
.gallery-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--forest);
    color: #fff;
    text-decoration: none;
    padding: 1rem 2.5rem;
    font-weight: 700;
    letter-spacing: .5px;
    transition: .3s;
}
.gallery-btn:hover {
    background: var(--gold);
    color: var(--forest);
    transform: translateY(-2px);
}

/* Tablet */

@media (max-width: 1024px) {
.gallery-grid {
    grid-template-columns: repeat(3, 1fr);
}
}

/* Mobile */

@media (max-width: 768px) {
.gallery-grid {
    grid-template-columns: repeat(2, 1fr);
}
.gallery-item img {
    height: 220px;
}
}

@media (max-width: 500px) {
#gallery {
    padding: 4rem 5%;
}
.gallery-grid {
    grid-template-columns: 1fr;
}
.gallery-item img {
    height: 260px;
}
.nav-logo img, .footer-logo img {
    width: 200px;
}
}
/* FADE UP ANIMATION */
.fade-up {
    opacity: 0;
}
.fade-up.visible {
    animation: fadeUp 0.6s ease forwards;
}
@keyframes fadeUp {
 from {
opacity: 0;
transform: translateY(30px);
}
 to {
opacity: 1;
transform: translateY(0);
}
}
/* SECTION COMMON */
.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}
.section-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--forest);
}
.section-subtitle {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-mid);
    max-width: 560px;
}
.section-header {
    margin-bottom: 3.5rem;
}
/* EDIBLE GARDENS */
#edible-gardens {
    background: var(--white);
    padding-top: 7rem;
}
#edible-gardens .eg-intro {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
}
#edible-gardens .eg-subheading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 1rem;
}
#edible-gardens .eg-img {
    margin-bottom: 2.5rem;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(27,67,50,0.10);
}
#edible-gardens .eg-img img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 420px;
}
#edible-gardens .eg-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2.5rem;
}
#edible-gardens .eg-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
}
#edible-gardens .eg-benefit-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--forest);
    flex-shrink: 0;
    margin-top: 7px;
}
#edible-gardens .eg-benefit-item strong {
    color: var(--forest);
}
#edible-gardens .eg-resources {
    background: var(--cream);
    padding: 2rem;
    border-left: 4px solid var(--gold);
}
#edible-gardens .eg-resources-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
#edible-gardens .eg-resources a {
    display: block;
    font-size: 0.88rem;
    color: var(--forest-light);
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: color 0.3s;
}
#edible-gardens .eg-resources a:hover {
    color: var(--gold);
}
#edible-gardens .eg-resources a::before {
    content: '→ ';
}
.eg-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

@media (max-width: 900px) {
.eg-two-col {
    display: block;
    overflow: hidden;
}
.eg-two-col .eg-img {
    width: 100%;
    margin-bottom: 1.5rem;
    overflow: hidden;
}
.eg-two-col .eg-img img {
    width: 100%;
    height: auto;
    display: block;
}
}
.eg-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
}
.eg-benefit-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--forest);
    flex-shrink: 0;
    margin-top: 7px;
}
.eg-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2.5rem;
}
.eg-intro {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
}
.eg-subheading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 1rem;
    margin-top: 2rem;
}
.eg-resources {
    background: var(--cream);
    padding: 2rem;
    border-left: 4px solid var(--gold);
    margin-top: 2rem;
}
.eg-resources-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.eg-resources a {
    display: block;
    font-size: 0.88rem;
    color: var(--forest-light);
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: color 0.3s;
}
.eg-resources a:hover {
    color: var(--gold);
}
.eg-resources a::before {
    content: '→ ';
}
/* GENERIC EG-IMG (shared across all sustainable service pages) */
.eg-img {
    margin-bottom: 2.5rem;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(27,67,50,0.10);
}
.eg-img img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 420px;
}