:root {
    --green-950: #073b2d;
    --green-900: #0d4d37;
    --green-700: #147c4f;
    --green-600: #1c9a61;
    --green-100: #e9f7ef;
    --mint-50: #f5fbf7;
    --white: #ffffff;
    --ink: #15221c;
    --muted: #617067;
    --line: #dce9e1;
    --shadow: 0 20px 55px rgba(7, 59, 45, 0.13);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--mint-50);
    color: var(--ink);
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1140px, calc(100% - 32px));
    margin: 0 auto;
}

.section-pad {
    padding: 88px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(220, 233, 225, 0.9);
    backdrop-filter: blur(18px);
}

.navbar {
    width: min(1320px, calc(100% - 32px));
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    color: var(--green-950);
}

.brand-logo {
    width: 150px;
    height: auto;
    max-height: 52px;
    object-fit: contain;
}

.nav-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(10px, 1vw, 16px);
    color: #314139;
    font-size: 0.86rem;
    font-weight: 600;
}

.nav-menu a {
    white-space: nowrap;
}

.nav-menu a:not(.btn):hover {
    color: var(--green-700);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--green-950);
    border-radius: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--green-700);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(20, 124, 79, 0.22);
}

.btn-primary:hover {
    background: var(--green-900);
}

.btn-outline {
    border-color: var(--green-700);
    color: var(--green-900);
    background: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--green-900);
}

.nav-cta {
    min-height: 42px;
    padding: 10px 18px;
}

.hero {
    padding-top: 70px;
    background:
        radial-gradient(circle at top left, rgba(28, 154, 97, 0.14), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, var(--mint-50) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    align-items: center;
    gap: 56px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--green-700);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.split-grid h2,
.grow-panel h2,
.cta-panel h2 {
    margin: 0;
    color: var(--green-950);
    line-height: 1.08;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 680px;
    font-size: clamp(2.6rem, 7vw, 5.4rem);
}

.hero-subtitle {
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1.16rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-media {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border-radius: 32px;
    box-shadow: var(--shadow);
    background: var(--green-100);
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    margin: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 700ms ease, transform 900ms ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.harvest-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: grid;
    gap: 2px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 35px rgba(7, 59, 45, 0.16);
}

.harvest-badge span {
    color: var(--muted);
    font-size: 0.84rem;
}

.slider-controls {
    position: absolute;
    right: 24px;
    bottom: 28px;
    display: flex;
    gap: 8px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 30px rgba(7, 59, 45, 0.15);
}

.slider-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(20, 124, 79, 0.28);
    cursor: pointer;
    transition: width 180ms ease, background 180ms ease;
}

.slider-dot.is-active {
    width: 28px;
    background: var(--green-700);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 44px;
}

.trust-card,
.info-card,
.product-card,
.location-card {
    border: 1px solid rgba(220, 233, 225, 0.9);
    background: var(--white);
    box-shadow: 0 16px 42px rgba(7, 59, 45, 0.08);
}

.trust-card {
    min-height: 126px;
    padding: 22px;
    border-radius: 22px;
}

.trust-card span {
    color: var(--green-600);
    font-weight: 800;
    font-size: 0.82rem;
}

.trust-card h2 {
    margin: 20px 0 0;
    color: var(--green-950);
    font-size: 1.05rem;
}

.about-section {
    background: var(--white);
}

.split-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.split-grid h2,
.section-heading h2,
.grow-panel h2,
.cta-panel h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.about-copy p,
.split-grid p:last-child,
.grow-copy p,
.grow-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 1.06rem;
}

.about-copy {
    display: grid;
    gap: 18px;
}

.about-copy .btn {
    justify-self: start;
    margin-top: 8px;
}

.section-heading {
    max-width: 760px;
    text-align: center;
    margin-bottom: 36px;
}

.section-action {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.page-hero {
    background:
        radial-gradient(circle at top left, rgba(28, 154, 97, 0.14), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, var(--mint-50) 100%);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 48px;
}

.page-hero h1 {
    margin: 0;
    color: var(--green-950);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.08;
}

.page-hero p:last-child {
    max-width: 620px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 1.16rem;
}

.page-hero img {
    width: 100%;
    border-radius: 32px;
    box-shadow: var(--shadow);
}

.content-panel {
    max-width: 860px;
    padding: 44px;
    border: 1px solid rgba(220, 233, 225, 0.9);
    border-radius: 28px;
    background: var(--white);
    box-shadow: 0 16px 42px rgba(7, 59, 45, 0.08);
}

.content-panel h2 {
    margin: 0 0 18px;
    color: var(--green-950);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.15;
}

.content-panel p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 1.06rem;
}

.content-panel p:last-child {
    margin-bottom: 0;
}

.microgreens-hero {
    background:
        radial-gradient(circle at top left, rgba(28, 154, 97, 0.14), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, var(--mint-50) 100%);
}

.microgreens-hero-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 48px;
    align-items: center;
}

.microgreens-hero h1 {
    margin: 0;
    color: var(--green-950);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.08;
}

.microgreens-hero p:not(.eyebrow) {
    max-width: 650px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.microgreens-hero-media {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 32px;
    background: var(--green-100);
    box-shadow: var(--shadow);
}

.microgreens-hero-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.microgreens-hero-media figcaption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: grid;
    gap: 2px;
    max-width: 380px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 35px rgba(7, 59, 45, 0.16);
}

.microgreens-hero-media figcaption strong {
    color: var(--green-950);
}

.microgreens-hero-media figcaption span {
    color: var(--muted);
    font-size: 0.9rem;
}

.microgreens-difference {
    background: var(--white);
}

.microgreens-difference-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 36px;
    align-items: stretch;
}

.microgreens-difference-copy,
.microgreens-highlight-card {
    padding: 34px;
    border: 1px solid rgba(220, 233, 225, 0.9);
    border-radius: 28px;
    background: var(--white);
    box-shadow: 0 16px 42px rgba(7, 59, 45, 0.08);
}

.microgreens-difference-copy h2,
.microgreens-daily-grid h2 {
    margin: 0;
    color: var(--green-950);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
}

.microgreens-difference-copy p:not(.eyebrow),
.microgreens-daily-grid p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.06rem;
}

.microgreens-highlight-card {
    background: var(--mint-50);
}

.microgreens-highlight-card h3 {
    margin: 0 0 22px;
    color: var(--green-950);
    font-size: 1.25rem;
    line-height: 1.25;
}

.microgreens-highlight-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}

.microgreens-nutrition {
    background: var(--mint-50);
}

.microgreens-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.microgreens-info-card {
    overflow: hidden;
    border: 1px solid rgba(220, 233, 225, 0.9);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 16px 42px rgba(7, 59, 45, 0.08);
}

.microgreens-info-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--green-100);
}

.microgreens-info-card div {
    padding: 26px;
}

.microgreens-info-card h3 {
    margin: 0 0 12px;
    color: var(--green-950);
    font-size: 1.22rem;
}

.microgreens-info-card p {
    margin: 0 0 12px;
    color: var(--muted);
}

.microgreens-info-card p:last-child {
    margin-bottom: 0;
}

.microgreens-philosophy {
    background: var(--green-950);
}

.microgreens-philosophy-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    align-items: center;
}

.microgreens-philosophy .eyebrow,
.microgreens-philosophy h2,
.microgreens-philosophy p {
    color: var(--white);
}

.microgreens-philosophy h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.1;
}

.microgreens-philosophy p {
    margin: 0;
    opacity: 0.84;
    font-size: 1.1rem;
}

.microgreens-daily {
    background: var(--white);
}

.microgreens-daily-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 44px;
    align-items: center;
}

.contact-hero {
    background:
        radial-gradient(circle at top left, rgba(28, 154, 97, 0.14), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, var(--mint-50) 100%);
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 48px;
    align-items: center;
}

.contact-hero h1 {
    margin: 0;
    color: var(--green-950);
    font-size: clamp(2.4rem, 5.4vw, 4.8rem);
    line-height: 1.08;
}

.contact-hero-copy > p:not(.eyebrow) {
    max-width: 650px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 1.14rem;
}

.visiting-card-panel {
    overflow: hidden;
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(220, 233, 225, 0.9);
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.visiting-card-panel img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(7, 59, 45, 0.12);
}

.visiting-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: start;
}

.contact-panel {
    padding: 34px;
    border: 1px solid rgba(220, 233, 225, 0.9);
    border-radius: 28px;
    background: var(--white);
    box-shadow: 0 16px 42px rgba(7, 59, 45, 0.08);
}

.contact-actions-panel {
    background: var(--mint-50);
}

.contact-panel h2 {
    margin: 0;
    color: var(--green-950);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.15;
}

.contact-detail-list {
    display: grid;
    gap: 16px;
    margin: 28px 0;
}

.contact-detail-list article {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.contact-detail-list article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-detail-list span {
    color: var(--green-700);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-detail-list p {
    margin: 0;
    color: var(--muted);
}

.contact-detail-list a {
    color: var(--green-900);
    font-weight: 700;
}

.contact-action-list {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.contact-action-list a {
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid rgba(220, 233, 225, 0.95);
    border-radius: 18px;
    background: var(--white);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-action-list a:hover {
    transform: translateY(-3px);
    border-color: rgba(20, 124, 79, 0.35);
    box-shadow: 0 16px 34px rgba(7, 59, 45, 0.1);
}

.contact-action-list strong {
    color: var(--green-950);
}

.contact-action-list span {
    color: var(--muted);
    font-size: 0.95rem;
}

.how-grow-hero {
    padding-bottom: 72px;
}

.how-grow-hero-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 48px;
    align-items: center;
}

.how-grow-hero h1 {
    margin: 0;
    color: var(--green-950);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.08;
}

.how-grow-hero p:last-child {
    max-width: 620px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 1.16rem;
}

.how-grow-hero-media {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 32px;
    background: var(--green-100);
    box-shadow: var(--shadow);
}

.how-grow-hero-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.how-grow-hero-media figcaption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: grid;
    gap: 2px;
    max-width: 360px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 35px rgba(7, 59, 45, 0.16);
}

.how-grow-hero-media figcaption strong {
    color: var(--green-950);
}

.how-grow-hero-media figcaption span {
    color: var(--muted);
    font-size: 0.9rem;
}

.how-grow-philosophy {
    padding: 54px 0;
    background: var(--green-950);
}

.how-grow-philosophy-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    align-items: center;
}

.how-grow-philosophy .eyebrow,
.how-grow-philosophy h2,
.how-grow-philosophy p {
    color: var(--white);
}

.how-grow-philosophy h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.1;
}

.how-grow-philosophy p {
    margin: 0;
    opacity: 0.84;
    font-size: 1.1rem;
}

.how-grow-process {
    background: var(--white);
}

.how-grow-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.how-grow-step {
    min-height: 320px;
    padding: 30px;
    border: 1px solid rgba(220, 233, 225, 0.9);
    border-radius: var(--radius);
    background: var(--mint-50);
}

.how-grow-step-feature {
    background:
        linear-gradient(rgba(7, 59, 45, 0.9), rgba(7, 59, 45, 0.9)),
        url("/assets/images/How-We-Grow-1.jpeg") center/cover;
}

.how-grow-step span {
    display: inline-flex;
    margin-bottom: 26px;
    color: var(--green-600);
    font-size: 0.82rem;
    font-weight: 800;
}

.how-grow-step h3 {
    margin: 0 0 14px;
    color: var(--green-950);
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    line-height: 1.18;
}

.how-grow-step p {
    margin: 0 0 14px;
    color: var(--muted);
}

.how-grow-step p:last-child {
    margin-bottom: 0;
}

.how-grow-step ul {
    display: grid;
    gap: 8px;
    margin: 18px 0 0;
    padding-left: 20px;
    color: var(--muted);
}

.how-grow-step-feature span,
.how-grow-step-feature h3,
.how-grow-step-feature p {
    color: var(--white);
}

.how-grow-step-feature p {
    opacity: 0.86;
}

.how-grow-delivery {
    background: var(--mint-50);
}

.how-grow-delivery-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    align-items: center;
    padding: 42px;
    border: 1px solid rgba(220, 233, 225, 0.9);
    border-radius: 32px;
    background: var(--white);
    box-shadow: 0 16px 42px rgba(7, 59, 45, 0.08);
}

.how-grow-delivery-panel h2 {
    margin: 0;
    color: var(--green-950);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
}

.how-grow-delivery-panel p:not(.eyebrow) {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.06rem;
}

.how-grow-channel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.how-grow-channel-grid article {
    min-height: 116px;
    display: flex;
    align-items: flex-end;
    padding: 22px;
    border-radius: 20px;
    background: var(--green-100);
    color: var(--green-950);
    font-weight: 800;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 52px;
    align-items: start;
}

.about-story-heading {
    position: sticky;
    top: 118px;
}

.about-story-heading h2,
.founder-intro h2 {
    margin: 0;
    color: var(--green-950);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
}

.about-promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 44px;
}

.about-promise-grid article {
    min-height: 190px;
    padding: 26px;
    border: 1px solid rgba(220, 233, 225, 0.9);
    border-radius: var(--radius);
    background: var(--mint-50);
}

.about-promise-grid span {
    display: inline-flex;
    margin-bottom: 26px;
    color: var(--green-600);
    font-weight: 800;
    font-size: 0.82rem;
}

.about-promise-grid h3 {
    margin: 0 0 10px;
    color: var(--green-950);
    font-size: 1.08rem;
}

.about-promise-grid p {
    margin: 0;
    color: var(--muted);
}

.team-section {
    background: linear-gradient(180deg, var(--mint-50) 0%, #ffffff 100%);
}

.founder-panel {
    display: grid;
    gap: 30px;
}

.founder-intro {
    max-width: 700px;
}

.founder-card {
    display: grid;
    grid-template-columns: minmax(240px, 340px) 1fr;
    gap: 36px;
    align-items: center;
    padding: 32px;
    border: 1px solid rgba(220, 233, 225, 0.9);
    border-radius: 28px;
    background: var(--white);
    box-shadow: 0 16px 42px rgba(7, 59, 45, 0.08);
}

.founder-photo {
    overflow: hidden;
    width: 100%;
    max-width: 340px;
    margin: 0;
    border-radius: 24px;
    background: var(--green-100);
}

.founder-photo img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.founder-copy {
    display: grid;
    gap: 14px;
}

.founder-copy h3 {
    margin: 0;
    color: var(--green-950);
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    line-height: 1.15;
}

.founder-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 1.04rem;
}

.founder-copy blockquote {
    margin: 8px 0;
    padding: 18px 20px;
    border-left: 4px solid var(--green-600);
    border-radius: 0 18px 18px 0;
    background: var(--mint-50);
    color: var(--green-950);
    font-size: 1.08rem;
    font-weight: 600;
}

.card-grid,
.product-grid {
    display: grid;
    gap: 24px;
}

.benefits-grid {
    grid-template-columns: repeat(4, 1fr);
}

.info-card {
    min-height: 240px;
    padding: 28px;
    border-radius: var(--radius);
}

.benefit-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin-bottom: 22px;
    border-radius: 18px;
    object-fit: cover;
    background: var(--green-100);
}

.info-card h3,
.product-card h3,
.location-card h3 {
    margin: 0 0 12px;
    color: var(--green-950);
}

.info-card p,
.product-card p,
.location-card p {
    margin: 0;
    color: var(--muted);
}

.grow-section {
    padding-top: 0;
}

.grow-panel {
    display: grid;
    grid-template-columns: 0.95fr 1fr 0.9fr;
    gap: 36px;
    align-items: center;
    padding: 44px;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--green-950), var(--green-700));
    box-shadow: var(--shadow);
}

.grow-panel .eyebrow,
.grow-panel h2,
.grow-panel p {
    color: var(--white);
}

.grow-panel p {
    opacity: 0.84;
}

.grow-copy {
    display: grid;
    gap: 22px;
    justify-items: start;
}

.grow-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.products-section {
    background: var(--white);
}

.product-grid {
    grid-template-columns: repeat(4, 1fr);
}

.product-card {
    overflow: hidden;
    border-radius: var(--radius);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(7, 59, 45, 0.15);
}

.product-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.product-card div {
    padding: 22px;
}

.product-catalog {
    grid-template-columns: repeat(4, 1fr);
}

.product-list-card h2 {
    margin: 0;
    color: var(--green-950);
    font-size: 1.08rem;
    line-height: 1.25;
}

.product-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.product-card-head span,
.product-price {
    color: var(--green-700);
    font-weight: 800;
}

.product-benefits {
    display: grid;
    gap: 8px;
    margin: 0 0 20px;
    padding-left: 18px;
    color: var(--muted);
}

.product-list-card .btn {
    width: 100%;
}

.product-detail-hero {
    background:
        radial-gradient(circle at top left, rgba(28, 154, 97, 0.14), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, var(--mint-50) 100%);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 52px;
    align-items: center;
}

.product-detail-image {
    overflow: hidden;
    border-radius: 32px;
    box-shadow: var(--shadow);
}

.product-detail-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.product-detail-copy h1 {
    margin: 0;
    color: var(--green-950);
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    line-height: 1.08;
}

.product-detail-copy p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.08rem;
}

.product-price {
    margin: 18px 0 8px;
    font-size: 1.8rem;
}

.detail-section-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.detail-card {
    padding: 28px;
    border: 1px solid rgba(220, 233, 225, 0.9);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 16px 42px rgba(7, 59, 45, 0.08);
}

.detail-card-wide {
    grid-column: span 4;
}

.detail-card h2 {
    margin: 0 0 14px;
    color: var(--green-950);
    font-size: 1.25rem;
}

.detail-card p {
    margin: 0;
    color: var(--muted);
}

.find-section .card-grid {
    grid-template-columns: repeat(3, 1fr);
}

.location-card {
    min-height: 190px;
    padding: 30px;
    border-radius: var(--radius);
}

.network-hero {
    background:
        radial-gradient(circle at top left, rgba(28, 154, 97, 0.13), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, var(--mint-50) 100%);
}

.network-hero-visual {
    min-height: 420px;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 34px;
    overflow: hidden;
    border: 1px solid rgba(220, 233, 225, 0.9);
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(233, 247, 239, 0.92)),
        url("/assets/images/how-we-grow.png") center/cover;
    box-shadow: var(--shadow);
}

.network-orbit {
    position: relative;
    width: min(100%, 420px);
    aspect-ratio: 1;
    border: 1px solid rgba(20, 124, 79, 0.16);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.94) 0 28%, rgba(233, 247, 239, 0.78) 29% 100%);
}

.network-orbit::before,
.network-orbit::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(20, 124, 79, 0.18);
    border-radius: 50%;
}

.network-orbit::before {
    inset: 16%;
}

.network-orbit::after {
    inset: 32%;
    background: rgba(255, 255, 255, 0.72);
}

.network-node {
    position: absolute;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid rgba(220, 233, 225, 0.95);
    border-radius: 999px;
    background: var(--white);
    color: var(--green-900);
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(7, 59, 45, 0.11);
}

.network-node-primary {
    top: 50%;
    left: 50%;
    min-width: 132px;
    min-height: 132px;
    border-radius: 50%;
    background: var(--green-950);
    color: var(--white);
    font-size: 1rem;
    transform: translate(-50%, -50%);
}

.network-node:nth-child(2) {
    top: 6%;
    left: 50%;
    transform: translateX(-50%);
}

.network-node:nth-child(3) {
    top: 42%;
    right: -2%;
}

.network-node:nth-child(4) {
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
}

.network-node:nth-child(5) {
    top: 42%;
    left: -2%;
}

.network-partners {
    background: var(--white);
}

.network-partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.network-partner-card,
.network-category-card {
    border: 1px solid rgba(220, 233, 225, 0.9);
    background: var(--white);
    box-shadow: 0 16px 42px rgba(7, 59, 45, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.network-partner-card:hover,
.network-category-card:hover {
    transform: translateY(-6px);
    border-color: rgba(20, 124, 79, 0.28);
    box-shadow: 0 24px 55px rgba(7, 59, 45, 0.14);
}

.network-partner-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 560px;
    padding: 30px;
    border-radius: 28px;
}

.network-partner-top,
.network-category-head,
.network-cta-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.network-partner-top {
    width: 100%;
    justify-content: space-between;
    margin-bottom: 30px;
}

.network-badge,
.network-soon-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.network-badge {
    background: var(--green-100);
    color: var(--green-900);
}

.network-logo-placeholder {
    display: grid;
    place-items: center;
    width: 150px;
    height: 86px;
    padding: 18px;
    border: 1px solid rgba(20, 124, 79, 0.16);
    border-radius: 22px;
    background: linear-gradient(135deg, var(--white), var(--mint-50));
}

.network-logo-placeholder img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.network-logo-uilatech {
    width: 150px;
    height: 156px;
    padding: 10px;
}

.network-logo-uilatech img {
    max-width: 118%;
    max-height: 100%;
}

.network-logo-desimaart {
    padding: 16px;
}

.network-logo-placeholder span {
    color: var(--green-700);
    font-size: 2rem;
    font-weight: 800;
}

.network-partner-copy h3,
.network-category-card h3 {
    margin: 0 0 12px;
    color: var(--green-950);
    line-height: 1.18;
}

.network-partner-copy h3 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.network-partner-copy p,
.network-category-card p,
.network-cta-panel p {
    margin: 0;
    color: var(--muted);
}

.network-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    margin: 28px 0 30px;
    padding: 0;
    list-style: none;
}

.network-feature-list li {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 13px 14px;
    border: 1px solid rgba(220, 233, 225, 0.9);
    border-radius: 16px;
    background: var(--mint-50);
    color: var(--green-950);
    font-size: 0.92rem;
    font-weight: 700;
}

.network-partner-card .btn {
    margin-top: auto;
}

.network-growing {
    background: var(--mint-50);
}

.network-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.network-category-card {
    min-height: 248px;
    padding: 26px;
    border-radius: var(--radius);
}

.network-category-head {
    justify-content: space-between;
    margin-bottom: 28px;
}

.network-category-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--green-100);
    font-size: 1.7rem;
}

.network-soon-badge {
    background: rgba(20, 124, 79, 0.1);
    color: var(--green-700);
}

.network-category-card h3 {
    font-size: 1.18rem;
}

.network-cta-section {
    background: var(--white);
}

.network-cta-panel {
    align-items: flex-end;
    background:
        linear-gradient(135deg, rgba(7, 59, 45, 0.92), rgba(20, 124, 79, 0.86)),
        url("/assets/images/cta-greens.svg") center/cover;
}

.network-cta-panel > div:first-child {
    max-width: 780px;
}

.network-cta-panel p {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.06rem;
}

.network-cta-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.network-cta-outline {
    border-color: rgba(255, 255, 255, 0.5);
    background: transparent;
    color: var(--white);
}

.cta-section {
    background: var(--white);
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 48px;
    border-radius: 32px;
    background:
        linear-gradient(rgba(7, 59, 45, 0.86), rgba(7, 59, 45, 0.86)),
        url("/assets/images/cta-greens.svg") center/cover;
    box-shadow: var(--shadow);
}

.cta-panel h2 {
    max-width: 720px;
    color: var(--white);
}

.site-footer {
    padding: 64px 0 24px;
    background: var(--green-950);
    color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 0.85fr 1.05fr;
    gap: 44px;
}

.footer-logo {
    filter: brightness(1.12);
}

.footer-brand p {
    max-width: 420px;
}

.license {
    font-weight: 700;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: var(--white);
    font-size: 1rem;
}

.footer-links {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-address {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-style: normal;
}

.footer-address span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.footer-address a {
    display: inline-flex;
    margin-top: 12px;
    color: var(--white);
    font-weight: 700;
}

.footer-bottom {
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.9rem;
}

@media (max-width: 1050px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 82px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-menu a {
        padding: 12px 10px;
    }

    .nav-cta {
        margin-top: 8px;
    }

    .hero-grid,
    .split-grid,
    .grow-panel,
    .page-hero-grid,
    .product-detail-grid,
    .microgreens-hero-grid,
    .microgreens-difference-grid,
    .microgreens-philosophy-panel,
    .microgreens-daily-grid,
    .contact-hero-grid,
    .contact-grid,
    .how-grow-hero-grid,
    .how-grow-philosophy-grid,
    .how-grow-delivery-panel,
    .about-story-grid,
    .founder-card {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .product-grid,
    .product-catalog,
    .detail-section-grid,
    .microgreens-card-grid,
    .how-grow-steps,
    .about-promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-card-wide {
        grid-column: span 2;
    }

    .about-story-heading {
        position: static;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 24px, 1140px);
    }

    .section-pad {
        padding: 62px 0;
    }

    .navbar {
        min-height: 74px;
    }

    .nav-menu {
        top: 74px;
    }

    .brand-logo {
        width: 148px;
        max-height: 46px;
    }

    .hero {
        padding-top: 48px;
    }

    .hero-media,
    .hero-slide img {
        min-height: 360px;
    }

    .slider-controls {
        right: 18px;
        bottom: 18px;
    }

    .harvest-badge {
        left: 18px;
        bottom: 18px;
        max-width: 185px;
    }

    .hero-actions,
    .cta-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .trust-grid,
    .benefits-grid,
    .product-grid,
    .product-catalog,
    .detail-section-grid,
    .microgreens-card-grid,
    .how-grow-steps,
    .how-grow-channel-grid,
    .about-promise-grid,
    .find-section .card-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .detail-card-wide {
        grid-column: span 1;
    }

    .grow-panel,
    .cta-panel,
    .microgreens-difference-copy,
    .microgreens-highlight-card,
    .contact-panel,
    .how-grow-delivery-panel {
        padding: 30px;
        border-radius: 24px;
    }

    .microgreens-hero-media figcaption {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .visiting-card-panel {
        padding: 12px;
        border-radius: 22px;
    }

    .visiting-card-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-detail-list article {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .how-grow-hero-media figcaption {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .founder-card {
        gap: 24px;
        padding: 22px;
    }

    .founder-photo {
        max-width: 280px;
    }
}

@media (max-width: 1050px) {
    .network-partner-grid {
        grid-template-columns: 1fr;
    }

    .network-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .network-hero-visual {
        min-height: 330px;
        padding: 22px;
        border-radius: 24px;
    }

    .network-node {
        min-width: 92px;
        min-height: 38px;
        padding: 8px 11px;
        font-size: 0.72rem;
    }

    .network-node-primary {
        min-width: 112px;
        min-height: 112px;
        font-size: 0.92rem;
    }

    .network-partner-card {
        min-height: auto;
        padding: 30px;
        border-radius: 24px;
    }

    .network-partner-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .network-logo-placeholder {
        width: 100%;
        max-width: 190px;
    }

    .network-feature-list,
    .network-category-grid {
        grid-template-columns: 1fr;
    }

    .network-cta-actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }
}
