﻿:root {
    --bg: #f4f1ea;
    --bg-alt: #ffffff;
    --surface: rgba(255, 255, 255, 0.88);
    --surface-strong: #ffffff;
    --text: #16343a;
    --muted: #5c7176;
    --line: rgba(22, 52, 58, 0.12);
    --accent: #0b7f87;
    --accent-dark: #075c63;
    --accent-soft: #d7f1f1;
    --gold: #b88d50;
    --orange-strong: #d8a24a;
    --shadow: 0 24px 60px rgba(27, 47, 36, 0.12);
    --radius: 24px;
    --radius-sm: 16px;
    --container: 1360px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", "Trebuchet MS", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(11, 127, 135, 0.16), transparent 32%),
        radial-gradient(circle at right top, rgba(184, 141, 80, 0.12), transparent 28%),
        linear-gradient(180deg, #fbfaf7 0%, var(--bg) 100%);
}

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

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

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.site-shell {
    position: relative;
    overflow: clip;
}

body.nav-open {
    overflow: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
}

.topbar {
    background: linear-gradient(90deg, rgba(13, 64, 69, 0.97), rgba(11, 127, 135, 0.94), rgba(13, 64, 69, 0.97));
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    box-shadow: 0 8px 24px rgba(16, 34, 26, 0.12);
}

.topbar__inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    flex-wrap: wrap;
}

.topbar__meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.topbar__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.02em;
}

.topbar__tag::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #d4a84f;
    box-shadow: 0 0 0 6px rgba(212, 168, 79, 0.12);
}

.topbar__chip {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: white;
    font-size: 0.88rem;
}

.topbar__chip:hover {
    background: rgba(255, 255, 255, 0.18);
    color: white;
}

.topbar a:hover,
.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
}

.header-shell {
    margin-top: 0.8rem;
    margin-bottom: 0.85rem;
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(22, 52, 58, 0.08);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 242, 0.92));
    box-shadow: 0 22px 55px rgba(27, 47, 36, 0.08);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.brand__mark {
    width: 3.1rem;
    height: 3.1rem;
    display: grid;
    place-items: center;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 14px 28px rgba(27, 47, 36, 0.12), 0 0 0 1px rgba(11, 127, 135, 0.12) inset;
}

.brand__mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.28rem;
}

.brand__text {
    display: grid;
    line-height: 1.1;
    min-width: 0;
}

.brand__text strong {
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand__text small {
    color: var(--muted);
    font-size: 0.82rem;
}

.site-nav,
.site-nav--desktop {
    position: relative;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 0.78rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.01em;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-item.active > .nav-link,
.nav-link:hover {
    background: rgba(11, 127, 135, 0.08);
    color: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(11, 127, 135, 0.08);
}

.nav-item--cta > .nav-link {
    background: linear-gradient(145deg, #09494d, var(--accent));
    color: white;
    box-shadow:
        0 16px 32px rgba(11, 127, 135, 0.28),
        0 0 0 1px rgba(216, 162, 74, 0.18) inset;
    position: relative;
}

.nav-item--cta > .nav-link:hover {
    background: linear-gradient(145deg, var(--accent-dark), #1fb7bb);
    color: white;
    box-shadow:
        0 18px 36px rgba(11, 127, 135, 0.34),
        0 0 0 1px rgba(216, 162, 74, 0.22) inset;
}

.nav-item--cta > .nav-link::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 60%);
    pointer-events: none;
}

.nav-item--dropdown > .nav-link::after {
    content: "\25BE";
    margin-left: 0.45rem;
    font-size: 0.8rem;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    min-width: 220px;
    list-style: none;
    margin: 0;
    padding: 0.55rem;
    border-radius: 20px;
    background: rgba(250, 253, 253, 0.98);
    box-shadow: 0 18px 44px rgba(27, 47, 36, 0.12);
    border: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 30;
}

.nav-item--dropdown:hover .dropdown-menu,
.nav-item--dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item--dropdown.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.74rem 0.9rem;
    border-radius: 14px;
    font-weight: 500;
    color: var(--text);
}

.dropdown-menu a:hover {
    background: rgba(11, 127, 135, 0.08);
    color: var(--accent-dark);
}

.nav-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8f1 100%);
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    box-shadow: 0 10px 22px rgba(27, 47, 36, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    cursor: pointer;
    position: relative;
    z-index: 5;
}

.nav-toggle:hover {
    border-color: rgba(11, 127, 135, 0.28);
    box-shadow: 0 12px 24px rgba(27, 47, 36, 0.1);
    transform: translateY(-1px);
}

.nav-toggle span {
    width: 1.15rem;
    height: 1.5px;
    background: linear-gradient(90deg, var(--text), var(--accent-dark));
    border-radius: 999px;
}

.mobile-nav {
    width: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    display: none;
    margin-top: 0.7rem;
    overflow: hidden;
}

.mobile-nav.is-open {
    display: block;
}

.mobile-nav__panel {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0.95rem 0.9rem 0.9rem;
    margin: 0;
    border: 1px solid rgba(22, 52, 58, 0.08);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(252, 250, 242, 0.98), rgba(243, 237, 222, 0.96));
    box-shadow: 0 20px 48px rgba(27, 47, 36, 0.12);
    overflow: hidden;
    transform: translateY(-8px);
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.mobile-nav.is-open .mobile-nav__panel {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    padding: 0 0 0.5rem;
    border-bottom: 1px solid rgba(22, 52, 58, 0.08);
}

.mobile-nav__title {
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--accent-dark);
    font-size: 0.78rem;
    line-height: 1;
}

.mobile-nav__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid rgba(22, 52, 58, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 8px 14px rgba(27, 47, 36, 0.06);
}

.mobile-nav__nav {
    display: block;
}

.mobile-nav__list {
    display: grid;
    gap: 0.45rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav__item {
    margin: 0;
}

.mobile-nav__submenu {
    display: grid;
    gap: 0.28rem;
    padding: 0.2rem 0 0 0.9rem;
    margin: 0.1rem 0 0 0.1rem;
    border-left: 1px solid rgba(11, 127, 135, 0.14);
}

.mobile-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0.95rem;
    border-radius: 14px;
    background: transparent;
    border: 1px solid transparent;
    box-shadow: none;
    color: var(--text);
    font-weight: 700;
    font-size: 0.98rem;
    line-height: 1.2;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.mobile-nav__item.active > .mobile-nav__link,
.mobile-nav__link:hover {
    background: rgba(11, 127, 135, 0.08);
    border-color: rgba(11, 127, 135, 0.14);
    color: var(--accent-dark);
    transform: translateX(1px);
}

.mobile-nav__link--parent::after {
    content: "\25BE";
    font-size: 0.8rem;
    color: var(--accent-dark);
    margin-left: 0.5rem;
}

.mobile-nav__link--sub {
    color: rgba(22, 52, 58, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
}

.mobile-nav__item--cta .mobile-nav__link {
    background: linear-gradient(145deg, #d7b15c, #c99a3d);
    color: #31506f;
    border-color: transparent;
    display: flex;
    width: 100%;
    justify-self: stretch;
    padding: 0.78rem 0.95rem;
    border-radius: 14px;
    margin-top: 0.1rem;
    box-shadow: 0 12px 24px rgba(188, 139, 44, 0.22);
}

.mobile-nav__item--cta .mobile-nav__link:hover {
    color: #31506f;
    box-shadow: 0 14px 28px rgba(188, 139, 44, 0.28);
}

.hero-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(22, 52, 58, 0.18), transparent);
}

.section {
    padding: 5rem 0;
}

.section--compact {
    padding: 3.5rem 0;
}

.section--intro {
    padding-top: 3rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(11, 127, 135, 0.12);
    color: var(--accent-dark);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero {
    padding: 5rem 0 4rem;
}

.home-slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: relative;
}

.home-slider__viewport {
    position: relative;
    overflow: hidden;
}

.home-slider__track {
    display: flex;
    transition: transform 0.7s ease;
    will-change: transform;
}

.home-slide {
    position: relative;
    min-width: 100%;
    min-height: clamp(540px, 78vh, 760px);
    display: flex;
    align-items: center;
    color: white;
}

.home-slide__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 22%),
        radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.08), transparent 18%),
        linear-gradient(110deg, rgba(9, 25, 18, 0.52), rgba(9, 25, 18, 0.14));
}

.home-slide--fish {
    background:
        linear-gradient(135deg, rgba(13, 64, 69, 0.74), rgba(11, 127, 135, 0.42)),
        url("../images/slider/slider3.png");
    background-size: cover;
    background-position: center;
}

.home-slide--fruit {
    background:
        linear-gradient(135deg, rgba(80, 52, 11, 0.70), rgba(188, 139, 44, 0.32)),
        url("../images/slider/slider2.png");
    background-size: cover;
    background-position: center;
}

.home-slide--community {
    background:
        linear-gradient(135deg, rgba(16, 38, 29, 0.68), rgba(15, 61, 42, 0.34)),
        url("../images/slider/slider1.jpg");
    background-size: cover;
    background-position: center;
}

.home-slide--agro {
    background:
        linear-gradient(135deg, rgba(18, 54, 28, 0.78), rgba(74, 118, 40, 0.36)),
        url("../images/agro_farming/hero_image.png");
    background-size: cover;
    background-position: center;
}

.home-slide--dairy {
    background:
        linear-gradient(135deg, rgba(43, 31, 22, 0.76), rgba(143, 93, 42, 0.34)),
        url("../images/dairy_farming/hero_image.png");
    background-size: cover;
    background-position: center;
}

.home-slide--nursery {
    background:
        linear-gradient(135deg, rgba(17, 69, 46, 0.76), rgba(35, 116, 75, 0.34)),
        url("../images/nursery_farming/hero_image.png");
    background-size: cover;
    background-position: center;
}

.home-slide::before,
.home-slide::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.home-slide::before {
    width: 360px;
    height: 360px;
    right: -120px;
    bottom: -120px;
    background: rgba(255, 255, 255, 0.06);
    filter: blur(4px);
}

.home-slide::after {
    width: 240px;
    height: 240px;
    left: -80px;
    top: -70px;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(4px);
}

.home-slide__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    min-height: inherit;
    padding: clamp(2rem, 5vw, 4rem) 0;
}

.home-slide__copy {
    max-width: 62ch;
}

.home-slide__copy .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.home-slide__copy h1 {
    margin: 1rem 0;
    font-size: clamp(2.8rem, 5.8vw, 5.6rem);
    line-height: 0.97;
    letter-spacing: -0.055em;
}

.home-slide__copy p {
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
    line-height: 1.85;
}

.home-slide__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.55rem;
}

.home-slider__controls {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    width: 3.2rem;
    height: 3.2rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(10, 24, 18, 0.38);
    color: white;
    font-size: 2rem;
    line-height: 1;
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    pointer-events: auto;
}

.slider-arrow--prev {
    left: clamp(0.75rem, 2vw, 2rem);
    transform: translateY(-50%);
}

.slider-arrow--next {
    right: clamp(0.75rem, 2vw, 2rem);
    transform: translateY(-50%);
}

.slider-arrow:hover {
    border-color: rgba(216, 162, 74, 0.6);
    background: rgba(10, 24, 18, 0.52);
}

.slider-arrow--prev:hover,
.slider-arrow--next:hover {
    transform: translateY(calc(-50% - 1px));
}

.slider-arrow:focus-visible,
.slider-dot:focus-visible {
    outline: 2px solid rgba(216, 162, 74, 0.88);
    outline-offset: 3px;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: clamp(0.95rem, 2vw, 1.5rem);
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(10, 24, 18, 0.38);
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
    pointer-events: auto;
}

.slider-dot {
    width: 0.8rem;
    height: 0.8rem;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.slider-dot:hover,
.slider-dot.is-active {
    transform: scale(1.15);
    background: var(--orange-strong);
    box-shadow: 0 0 0 5px rgba(216, 162, 74, 0.18);
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: center;
}

.hero__content h1 {
    margin: 1rem 0;
    font-size: clamp(2.6rem, 5vw, 5.1rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.hero__content p {
    max-width: 58ch;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.btn--primary {
    background: linear-gradient(145deg, var(--accent), #1fb7bb);
    color: white;
    box-shadow: 0 18px 35px rgba(11, 127, 135, 0.22);
}

.btn--ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.72);
}

.hero-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(215, 241, 241, 0.92));
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 1.35rem;
    box-shadow: var(--shadow);
}

.hero-card__panel {
    min-height: 370px;
    border-radius: 24px;
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.7), transparent 32%),
        linear-gradient(145deg, #0b7f87 0%, #075c63 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-card__panel::before,
.hero-card__panel::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.hero-card__panel::before {
    width: 180px;
    height: 180px;
    top: -40px;
    right: -50px;
}

.hero-card__panel::after {
    width: 250px;
    height: 250px;
    left: -90px;
    bottom: -120px;
}

.hero-card__label {
    display: inline-flex;
    width: fit-content;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-card__panel h2 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 1.9rem;
    line-height: 1.1;
}

.hero-card__panel p {
    position: relative;
    z-index: 1;
    max-width: 28ch;
    margin: 0.8rem 0 0;
    color: rgba(255, 255, 255, 0.88);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.card {
    background: var(--surface);
    backdrop-filter: blur(10px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.card--padded {
    padding: 1.5rem;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-heading h2,
.section-heading h3 {
    margin: 0;
    font-size: clamp(1.7rem, 2.5vw, 2.6rem);
    letter-spacing: -0.03em;
}

.section-heading p {
    margin: 0;
    max-width: 52ch;
    color: var(--muted);
    line-height: 1.7;
}

.home-intro {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.25rem;
    align-items: stretch;
    padding: clamp(1.25rem, 3vw, 2rem);
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.66), transparent 30%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(220, 238, 221, 0.92));
}

.home-intro__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.9rem;
}

.home-intro__copy h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.home-intro__copy p {
    margin: 0;
    max-width: 60ch;
    color: var(--muted);
    line-height: 1.8;
    font-size: 1.03rem;
}

.home-intro__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 0.35rem;
}

.home-intro__highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.home-highlight {
    padding: 1.15rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(216, 162, 74, 0.22);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.28) inset,
        0 16px 35px rgba(27, 47, 36, 0.08);
}

.home-highlight strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 999px;
    background: rgba(216, 162, 74, 0.12);
    color: var(--orange-strong);
    font-weight: 800;
    margin-bottom: 0.85rem;
}

.home-highlight h3 {
    margin: 0 0 0.5rem;
    font-size: 1.08rem;
}

.home-highlight p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.95rem;
}

.home-projects {
    background:
        radial-gradient(circle at 14% 0%, rgba(216, 162, 74, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(239, 248, 241, 0.68), rgba(255, 255, 255, 0.96));
}

.home-project-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 260px;
    gap: 1rem;
}

.home-project-card {
    position: relative;
    min-height: 260px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(27, 47, 36, 0.12);
}

.home-project-card--large {
    grid-column: span 2;
    grid-row: span 2;
}

.home-project-card a,
.home-project-card img,
.home-project-card__shade {
    position: absolute;
    inset: 0;
}

.home-project-card a {
    display: block;
    color: white;
}

.home-project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.home-project-card__shade {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(10, 24, 18, 0.78)),
        radial-gradient(circle at top right, rgba(216, 162, 74, 0.25), transparent 34%);
    z-index: 1;
}

.home-project-card__accent {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    max-width: calc(100% - 2rem);
    border-radius: 999px;
    padding: 0.44rem 0.76rem;
    background: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.home-project-card__content {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    display: grid;
    gap: 0.35rem;
}

.home-project-card__content strong {
    font-size: clamp(1.25rem, 2vw, 2rem);
    line-height: 1.05;
}

.home-project-card__content span {
    max-width: 34ch;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
    font-size: 0.94rem;
}

.home-project-card:hover img {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.04);
}

.home-showcase {
    background:
        radial-gradient(circle at 82% 4%, rgba(11, 127, 135, 0.13), transparent 30%),
        #fffaf1;
}

.home-showcase__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: center;
}

.home-showcase__copy h2 {
    margin: 1rem 0;
    font-size: clamp(2.1rem, 4vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.home-showcase__copy p {
    max-width: 60ch;
    color: var(--muted);
    line-height: 1.82;
}

.home-showcase__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.4rem;
}

.home-showcase__media {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 1rem;
}

.home-showcase__image {
    position: relative;
    min-height: 240px;
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 20px 48px rgba(27, 47, 36, 0.12);
}

.home-showcase__image--tall {
    grid-row: span 2;
    min-height: 500px;
}

.home-showcase__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.home-showcase__image figcaption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    border-radius: 999px;
    padding: 0.65rem 0.9rem;
    background: rgba(255, 255, 255, 0.84);
    color: var(--text);
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(27, 47, 36, 0.12);
}

.home-cta {
    padding-top: 3.5rem;
}

.home-cta__inner {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
    padding: 1.6rem;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(10, 64, 69, 0.95), rgba(216, 162, 74, 0.78)),
        url("../images/fruit_farming/banner_image.png");
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    color: white;
    box-shadow: var(--shadow);
}

.home-cta__inner .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.home-cta__inner h2 {
    max-width: 820px;
    margin: 1rem 0 0.65rem;
    font-size: clamp(1.8rem, 3vw, 3.1rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.home-cta__inner p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.home-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    flex-shrink: 0;
}

.feature-card,
.blog-card,
.project-card,
.contact-card,
.stat-card {
    padding: 1.4rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 18px 45px rgba(27, 47, 36, 0.08);
}

.card--orange-outline {
    border: 1px solid rgba(217, 119, 6, 0.6);
    box-shadow:
        0 0 0 1px rgba(217, 119, 6, 0.16) inset,
        0 18px 45px rgba(27, 47, 36, 0.08);
}

.card--orange-outline:hover {
    box-shadow:
        0 0 0 1px rgba(217, 119, 6, 0.24) inset,
        0 22px 50px rgba(27, 47, 36, 0.1);
}

.feature-card h3,
.blog-card h3,
.project-card h3,
.contact-card h3,
.stat-card h3 {
    margin-top: 0;
    margin-bottom: 0.65rem;
    font-size: 1.25rem;
}

.feature-card p,
.blog-card p,
.project-card p,
.contact-card p,
.stat-card p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 0.9rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(11, 127, 135, 0.1);
    color: var(--accent-dark);
    font-size: 0.82rem;
    font-weight: 700;
}

.stat-card strong {
    display: block;
    font-size: 2rem;
    color: var(--accent-dark);
    margin-bottom: 0.2rem;
}

.split-panel {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 1.2rem;
    align-items: stretch;
}

.about-hero {
    padding: 4.5rem 0 3rem;
}

.about-hero__grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 1.2rem;
    align-items: stretch;
}

.about-hero__copy {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 28%),
        linear-gradient(145deg, #0d4045, #0b7f87);
    color: white;
    border: 0;
}

.about-hero__copy .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.about-hero__copy h1 {
    margin: 1rem 0;
    font-size: clamp(2.4rem, 4.5vw, 4.7rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.about-hero__lead {
    max-width: 64ch;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.85;
    font-size: 1.06rem;
}

.about-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.8rem;
}

.about-metric {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-metric strong {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.2rem;
    color: white;
}

.about-metric span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.about-hero__panel {
    display: grid;
    gap: 1rem;
}

.about-focus-card {
    padding: 1.5rem;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
}

.about-focus-card--accent {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.6), transparent 34%),
        linear-gradient(145deg, rgba(220, 238, 221, 0.95), rgba(255, 255, 255, 0.92));
}

.about-focus-card h2 {
    margin: 1rem 0 0.7rem;
    font-size: clamp(1.4rem, 2vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.about-focus-card p {
    margin: 0.7rem 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.about-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: linear-gradient(145deg, rgba(13, 64, 69, 0.96), rgba(11, 127, 135, 0.9));
    color: white;
    border: 0;
}

.about-callout .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.about-callout h2 {
    margin: 1rem 0 0.6rem;
    font-size: clamp(1.7rem, 2.5vw, 2.4rem);
    letter-spacing: -0.03em;
}

.about-callout p {
    margin: 0;
    max-width: 62ch;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.84);
}

.about-callout__actions {
    flex-shrink: 0;
}

.about-hero--modern {
    background:
        radial-gradient(circle at 78% 6%, rgba(216, 162, 74, 0.16), transparent 30%),
        linear-gradient(180deg, rgba(239, 248, 241, 0.72), rgba(255, 255, 255, 0.96));
}

.about-profile-image-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.about-profile-image {
    position: relative;
    min-height: 220px;
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 22px 52px rgba(27, 47, 36, 0.12);
}

.about-profile-image--large {
    min-height: 410px;
}

.about-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-profile-image figcaption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    border-radius: 999px;
    padding: 0.65rem 0.9rem;
    background: rgba(255, 255, 255, 0.86);
    color: var(--text);
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(27, 47, 36, 0.14);
}

.about-company {
    background: #fffaf1;
}

.about-company__grid,
.about-project-scope__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.4rem;
    align-items: start;
}

.about-company__copy h2,
.about-project-scope h2 {
    margin: 1rem 0;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.about-company__copy p,
.about-project-scope p {
    color: var(--muted);
    line-height: 1.82;
}

.about-company__card {
    padding: clamp(1.15rem, 3vw, 1.7rem);
    border: 1px solid rgba(11, 127, 135, 0.14);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.about-company__card h3 {
    margin: 0;
    font-size: 1.5rem;
}

.about-pillars {
    background:
        radial-gradient(circle at 12% 0%, rgba(11, 127, 135, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(239, 248, 241, 0.72), rgba(255, 255, 255, 0.96));
}

.about-pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.about-pillar-grid article {
    padding: 1.25rem;
    border-radius: 28px;
    background: white;
    border: 1px solid rgba(22, 52, 58, 0.1);
    box-shadow: 0 18px 42px rgba(27, 47, 36, 0.08);
}

.about-pillar-grid span {
    display: block;
    margin-bottom: 1rem;
    color: var(--orange-strong);
    font-size: 2rem;
    font-weight: 900;
}

.about-pillar-grid h3 {
    margin: 0 0 0.65rem;
    font-size: 1.3rem;
}

.about-pillar-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.about-project-scope {
    background:
        radial-gradient(circle at 18% 0%, rgba(245, 216, 117, 0.18), transparent 30%),
        linear-gradient(135deg, #0a4045, #075c63);
    color: white;
}

.about-project-scope .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.about-project-scope p {
    color: rgba(255, 255, 255, 0.78);
}

.about-scope-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.about-scope-list a {
    border-radius: 999px;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: white;
    font-weight: 900;
    text-align: center;
}

.about-method .card h2 {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.about-method .card p {
    color: var(--muted);
    line-height: 1.78;
}

.about-values-modern {
    background: #fffaf1;
}

.section-heading--compact {
    margin-bottom: 1rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.85rem;
}

.info-list li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    color: var(--muted);
}

.info-list li::before {
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--accent), #24bdc0);
    margin-top: 0.35rem;
    flex: 0 0 auto;
}

.timeline {
    display: grid;
    gap: 1rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1rem;
    align-items: start;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.timeline-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.timeline-item strong {
    color: var(--accent-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
}

.gallery-tile {
    min-height: 190px;
    padding: 1.2rem;
    border-radius: 26px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.gallery-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 14, 8, 0.1), rgba(5, 14, 8, 0.45));
}

.gallery-tile > * {
    position: relative;
    z-index: 1;
}

.gallery-tile--wide {
    grid-column: span 7;
}

.gallery-tile--tall {
    grid-column: span 5;
    min-height: 400px;
}

.gallery-tile--small {
    grid-column: span 4;
}

.gallery-tile__tag {
    width: fit-content;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 0.82rem;
    font-weight: 700;
}

.gallery-tile h3 {
    margin: 0;
    font-size: 1.45rem;
}

.gallery-tile p {
    margin: 0.45rem 0 0;
    color: rgba(255, 255, 255, 0.88);
    max-width: 34ch;
}

.gallery-hero {
    padding: clamp(4rem, 8vw, 7rem) 0 4rem;
    background:
        radial-gradient(circle at 82% 10%, rgba(216, 162, 74, 0.18), transparent 30%),
        linear-gradient(135deg, #f6f1e6, #e8f4ed);
    overflow: hidden;
}

.gallery-hero__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: center;
}

.gallery-hero__copy h1 {
    margin: 1rem 0;
    max-width: 12ch;
    font-size: clamp(2.8rem, 6vw, 6rem);
    line-height: 0.96;
    letter-spacing: -0.075em;
}

.gallery-hero__copy p {
    max-width: 64ch;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.82;
}

.gallery-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.gallery-hero__stack {
    position: relative;
    min-height: 560px;
}

.gallery-hero__photo {
    position: absolute;
    margin: 0;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 26px 60px rgba(27, 47, 36, 0.16);
    background: white;
}

.gallery-hero__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-hero__photo figcaption {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    border-radius: 999px;
    padding: 0.62rem 0.9rem;
    background: rgba(255, 255, 255, 0.86);
    color: var(--text);
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(27, 47, 36, 0.14);
}

.gallery-hero__photo--main {
    inset: 5% 8% 6% 18%;
}

.gallery-hero__photo--top {
    width: 38%;
    height: 34%;
    top: 0;
    left: 0;
}

.gallery-hero__photo--bottom {
    width: 40%;
    height: 36%;
    right: 0;
    bottom: 0;
}

.gallery-strip {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background: #fffaf1;
}

.gallery-strip__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.gallery-strip__inner a {
    border: 1px solid rgba(11, 127, 135, 0.18);
    border-radius: 999px;
    padding: 0.72rem 1rem;
    background: rgba(255, 255, 255, 0.82);
    color: var(--accent-dark);
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(27, 47, 36, 0.07);
}

.gallery-modern-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 290px;
    gap: 1rem;
}

.gallery-modern-card {
    position: relative;
    min-height: 290px;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 22px 52px rgba(27, 47, 36, 0.12);
}

.gallery-modern-card--wide {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-modern-card a,
.gallery-modern-card img,
.gallery-modern-card__shade {
    position: absolute;
    inset: 0;
}

.gallery-modern-card a {
    display: block;
    color: white;
}

.gallery-modern-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-modern-card__shade {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(9, 25, 18, 0.78)),
        radial-gradient(circle at top right, rgba(216, 162, 74, 0.24), transparent 34%);
}

.gallery-modern-card__label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    border-radius: 999px;
    padding: 0.44rem 0.78rem;
    background: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.gallery-modern-card__content {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    display: grid;
    gap: 0.4rem;
}

.gallery-modern-card__content strong {
    font-size: clamp(1.35rem, 2.4vw, 2.25rem);
    line-height: 1.02;
}

.gallery-modern-card__content span {
    max-width: 40ch;
    color: rgba(255, 255, 255, 0.83);
    line-height: 1.55;
    font-size: 0.94rem;
}

.gallery-modern-card:hover img {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.04);
}

.gallery-detail {
    background:
        radial-gradient(circle at 14% 0%, rgba(11, 127, 135, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(239, 248, 241, 0.7), rgba(255, 255, 255, 0.96));
}

.gallery-detail__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.85rem;
}

.gallery-detail__item {
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    background: white;
    border: 1px solid rgba(22, 52, 58, 0.08);
    box-shadow: 0 18px 42px rgba(27, 47, 36, 0.08);
}

.gallery-detail__item img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.gallery-detail__item figcaption {
    display: grid;
    gap: 0.25rem;
    padding: 0.85rem;
}

.gallery-detail__item strong {
    color: var(--text);
    font-size: 0.95rem;
}

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

.gallery-cta {
    padding-top: 3.5rem;
}

.gallery-cta__inner {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
    padding: 1.6rem;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(10, 64, 69, 0.96), rgba(216, 162, 74, 0.74)),
        url("../images/fish_farming/banner_image.png");
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    color: white;
    box-shadow: var(--shadow);
}

.gallery-cta__inner .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.gallery-cta__inner h2 {
    max-width: 820px;
    margin: 1rem 0 0.65rem;
    font-size: clamp(1.8rem, 3vw, 3.1rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.gallery-cta__inner p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.gallery-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    flex-shrink: 0;
}

.project-media,
.project-shot {
    display: grid;
    gap: 0.95rem;
}

.project-media {
    align-content: start;
}

.project-media__img,
.project-shot__img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(22, 52, 58, 0.08);
    background: rgba(255, 255, 255, 0.7);
}

.project-shot__img {
    aspect-ratio: 3 / 2;
}

.project-media__caption,
.project-shot__caption {
    display: grid;
    gap: 0.2rem;
}

.project-media__caption strong,
.project-shot__caption strong {
    font-size: 1rem;
    color: var(--text);
}

.project-media__caption span,
.project-shot__caption span {
    color: var(--muted);
    font-size: 0.92rem;
}

.dairy-hero {
    min-height: clamp(520px, 72vh, 760px);
    position: relative;
    display: flex;
    align-items: end;
    overflow: hidden;
    color: white;
}

.dairy-hero__image,
.dairy-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.dairy-hero__image {
    object-fit: cover;
}

.dairy-hero__overlay {
    background:
        linear-gradient(90deg, rgba(8, 28, 24, 0.82), rgba(8, 28, 24, 0.36) 58%, rgba(8, 28, 24, 0.18)),
        linear-gradient(0deg, rgba(8, 28, 24, 0.58), transparent 45%);
}

.dairy-hero__content {
    position: relative;
    z-index: 1;
    padding: 4.5rem 0;
}

.dairy-hero__content .eyebrow {
    background: rgba(255, 255, 255, 0.16);
    color: white;
}

.dairy-hero__content h1 {
    max-width: 850px;
    margin: 1rem 0;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1;
    letter-spacing: 0;
}

.dairy-hero__content p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    line-height: 1.8;
}

.dairy-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.6rem;
}

.dairy-overview {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(229, 240, 230, 0.44));
}

.dairy-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.dairy-stats article,
.dairy-process__grid article,
.dairy-layout__list article,
.dairy-gallery__item {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 45px rgba(27, 47, 36, 0.08);
}

.dairy-stats article {
    padding: 1.2rem;
    border-radius: 18px;
}

.dairy-stats strong {
    display: block;
    color: var(--accent-dark);
    font-size: 1.7rem;
    margin-bottom: 0.35rem;
}

.dairy-stats span {
    color: var(--muted);
    font-weight: 700;
}

.dairy-routine__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.dairy-routine__grid article {
    padding: 1.25rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
    box-shadow: 0 18px 45px rgba(27, 47, 36, 0.08);
}

.dairy-routine__grid span {
    display: inline-flex;
    margin-bottom: 0.75rem;
    color: var(--accent-dark);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dairy-routine__grid h3 {
    margin: 0 0 0.55rem;
}

.dairy-routine__grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.dairy-feature {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 1.4rem;
    align-items: center;
}

.dairy-feature__media,
.dairy-banner,
.dairy-gallery__item {
    margin: 0;
}

.dairy-feature__media img,
.dairy-banner img,
.dairy-gallery__item img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.dairy-feature__media img {
    aspect-ratio: 3 / 2;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.dairy-feature__media figcaption,
.dairy-banner figcaption,
.dairy-gallery__item figcaption {
    color: var(--muted);
    font-size: 0.92rem;
    margin-top: 0.65rem;
}

.dairy-feature__copy h2,
.dairy-layout h2 {
    margin: 1rem 0;
    font-size: clamp(1.8rem, 3vw, 3.1rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.dairy-feature__copy p,
.dairy-layout p {
    color: var(--muted);
    line-height: 1.8;
}

.dairy-band {
    background: linear-gradient(180deg, rgba(13, 64, 69, 0.96), rgba(7, 44, 47, 0.98));
    color: white;
}

.dairy-band .section-heading p,
.dairy-band p {
    color: rgba(255, 255, 255, 0.78);
}

.dairy-band .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.dairy-process__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.dairy-process__grid article {
    padding: 1.25rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.13);
    box-shadow: none;
}

.dairy-process__grid span {
    display: inline-flex;
    margin-bottom: 1rem;
    color: #f0c96b;
    font-weight: 800;
}

.dairy-process__grid h3,
.dairy-layout__list h3 {
    margin: 0 0 0.55rem;
}

.dairy-process__grid p {
    margin: 0;
    line-height: 1.7;
}

.dairy-quality {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(222, 238, 230, 0.5));
}

.dairy-quality__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1.4rem;
    align-items: start;
}

.dairy-quality__copy h2 {
    margin: 1rem 0;
    font-size: clamp(1.8rem, 3vw, 3.1rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.dairy-quality__copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.dairy-quality__checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.dairy-quality__checks article {
    padding: 1.15rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    box-shadow: 0 18px 45px rgba(27, 47, 36, 0.08);
}

.dairy-quality__checks strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.dairy-quality__checks span {
    color: var(--muted);
    line-height: 1.6;
}

.dairy-banner {
    position: relative;
}

.dairy-banner img {
    aspect-ratio: 1200 / 630;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.dairy-banner figcaption {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.dairy-banner figcaption strong,
.dairy-gallery__item strong {
    color: var(--text);
}

.dairy-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.dairy-gallery__item {
    padding: 0.85rem;
    border-radius: 20px;
}

.dairy-gallery__item--wide {
    grid-column: span 2;
}

.dairy-gallery__item img {
    aspect-ratio: 3 / 2;
    border-radius: 15px;
}

.dairy-gallery__item--wide img {
    aspect-ratio: 16 / 9;
}

.dairy-gallery__item--square img {
    aspect-ratio: 1 / 1;
}

.dairy-gallery__item figcaption {
    display: grid;
    gap: 0.2rem;
}

.dairy-gallery__item figcaption span {
    color: var(--muted);
}

.dairy-gallery__item figcaption p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.92rem;
}

.dairy-band--light {
    background: linear-gradient(180deg, rgba(233, 243, 234, 0.72), rgba(255, 255, 255, 0.86));
    color: var(--text);
}

.dairy-band--light .eyebrow {
    background: rgba(11, 127, 135, 0.12);
    color: var(--accent-dark);
}

.dairy-band--light p {
    color: var(--muted);
}

.dairy-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1.4rem;
    align-items: start;
}

.dairy-layout__list {
    display: grid;
    gap: 1rem;
}

.dairy-layout__list article {
    padding: 1.2rem;
    border-radius: 18px;
}

.dairy-layout__list p {
    margin: 0;
}

.dairy-cta {
    padding-top: 3.5rem;
}

.dairy-cta__inner {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(13, 64, 69, 0.96), rgba(11, 127, 135, 0.9)),
        url("../images/dairy_farming/banner_image.png");
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    color: white;
    box-shadow: var(--shadow);
}

.dairy-cta__inner .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.dairy-cta__inner h2 {
    max-width: 760px;
    margin: 1rem 0 0.65rem;
    font-size: clamp(1.7rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.dairy-cta__inner p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.dairy-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    flex-shrink: 0;
}

.fish-hero {
    min-height: clamp(520px, 72vh, 760px);
    position: relative;
    display: flex;
    align-items: end;
    overflow: hidden;
    color: white;
}

.fish-hero__image,
.fish-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.fish-hero__image {
    object-fit: cover;
}

.fish-hero__overlay {
    background:
        linear-gradient(90deg, rgba(4, 33, 42, 0.84), rgba(8, 70, 82, 0.42) 58%, rgba(8, 70, 82, 0.2)),
        linear-gradient(0deg, rgba(4, 33, 42, 0.6), transparent 45%);
}

.fish-hero__content {
    position: relative;
    z-index: 1;
    padding: 4.5rem 0;
}

.fish-hero__content .eyebrow {
    background: rgba(255, 255, 255, 0.16);
    color: white;
}

.fish-hero__content h1 {
    max-width: 900px;
    margin: 1rem 0;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1;
    letter-spacing: 0;
}

.fish-hero__content p {
    max-width: 660px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    line-height: 1.8;
}

.fish-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.6rem;
}

.fish-overview {
    background: linear-gradient(180deg, rgba(225, 243, 244, 0.66), rgba(255, 255, 255, 0.7));
}

.fish-stats,
.fish-routine__grid,
.fish-process__grid,
.fish-quality__checks,
.fish-gallery,
.fish-layout__list {
    display: grid;
    gap: 1rem;
}

.fish-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fish-stats article,
.fish-routine__grid article,
.fish-quality__checks article,
.fish-layout__list article,
.fish-gallery__item {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 45px rgba(27, 47, 36, 0.08);
}

.fish-stats article,
.fish-routine__grid article,
.fish-quality__checks article,
.fish-layout__list article {
    padding: 1.2rem;
    border-radius: 18px;
}

.fish-stats strong {
    display: block;
    color: var(--accent-dark);
    font-size: 1.7rem;
    margin-bottom: 0.35rem;
}

.fish-stats span {
    color: var(--muted);
    font-weight: 700;
}

.fish-routine__grid,
.fish-process__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fish-routine__grid span {
    display: inline-flex;
    margin-bottom: 0.75rem;
    color: var(--accent-dark);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fish-routine__grid h3,
.fish-process__grid h3,
.fish-layout__list h3 {
    margin: 0 0 0.55rem;
}

.fish-routine__grid p,
.fish-process__grid p,
.fish-layout__list p {
    margin: 0;
    line-height: 1.65;
}

.fish-routine__grid p,
.fish-layout__list p {
    color: var(--muted);
}

.fish-feature {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 1.4rem;
    align-items: center;
}

.fish-feature__media,
.fish-banner,
.fish-gallery__item {
    margin: 0;
}

.fish-feature__media img,
.fish-banner img,
.fish-gallery__item img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.fish-feature__media img {
    aspect-ratio: 3 / 2;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.fish-feature__media figcaption,
.fish-banner figcaption,
.fish-gallery__item figcaption {
    color: var(--muted);
    font-size: 0.92rem;
    margin-top: 0.65rem;
}

.fish-feature__copy h2,
.fish-quality__copy h2,
.fish-layout h2 {
    margin: 1rem 0;
    font-size: clamp(1.8rem, 3vw, 3.1rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.fish-feature__copy p,
.fish-quality__copy p,
.fish-layout p {
    color: var(--muted);
    line-height: 1.8;
}

.fish-band {
    background: linear-gradient(180deg, rgba(7, 66, 76, 0.96), rgba(4, 44, 53, 0.98));
    color: white;
}

.fish-band .section-heading p,
.fish-band p {
    color: rgba(255, 255, 255, 0.78);
}

.fish-band .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.fish-process__grid article {
    padding: 1.25rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.fish-process__grid span {
    display: inline-flex;
    margin-bottom: 1rem;
    color: #9ee7ee;
    font-weight: 800;
}

.fish-quality {
    background: linear-gradient(180deg, rgba(231, 246, 247, 0.72), rgba(255, 255, 255, 0.84));
}

.fish-quality__grid,
.fish-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1.4rem;
    align-items: start;
}

.fish-quality__copy p {
    margin: 0;
}

.fish-quality__checks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fish-quality__checks strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.fish-quality__checks span {
    color: var(--muted);
    line-height: 1.6;
}

.fish-banner img {
    aspect-ratio: 1200 / 630;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.fish-banner figcaption {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.fish-banner figcaption strong,
.fish-gallery__item strong {
    color: var(--text);
}

.fish-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fish-gallery__item {
    padding: 0.85rem;
    border-radius: 20px;
}

.fish-gallery__item--wide {
    grid-column: span 2;
}

.fish-gallery__item img {
    aspect-ratio: 3 / 2;
    border-radius: 15px;
}

.fish-gallery__item--wide img {
    aspect-ratio: 16 / 9;
}

.fish-gallery__item--square img {
    aspect-ratio: 1 / 1;
}

.fish-gallery__item figcaption {
    display: grid;
    gap: 0.2rem;
}

.fish-gallery__item figcaption p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.92rem;
}

.fish-band--light {
    background: linear-gradient(180deg, rgba(230, 245, 246, 0.74), rgba(255, 255, 255, 0.88));
    color: var(--text);
}

.fish-band--light .eyebrow {
    background: rgba(11, 127, 135, 0.12);
    color: var(--accent-dark);
}

.fish-band--light p {
    color: var(--muted);
}

.fish-cta {
    padding-top: 3.5rem;
}

.fish-cta__inner {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(7, 66, 76, 0.96), rgba(11, 127, 135, 0.9)),
        url("../images/fish_farming/banner_image.png");
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    color: white;
    box-shadow: var(--shadow);
}

.fish-cta__inner .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.fish-cta__inner h2 {
    max-width: 760px;
    margin: 1rem 0 0.65rem;
    font-size: clamp(1.7rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.fish-cta__inner p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.fish-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    flex-shrink: 0;
}

.mushroom-hero {
    min-height: clamp(520px, 72vh, 760px);
    position: relative;
    display: flex;
    align-items: end;
    overflow: hidden;
    color: white;
}

.mushroom-hero__image,
.mushroom-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.mushroom-hero__image {
    object-fit: cover;
}

.mushroom-hero__overlay {
    background:
        linear-gradient(90deg, rgba(34, 28, 20, 0.86), rgba(74, 62, 43, 0.48) 58%, rgba(74, 62, 43, 0.22)),
        linear-gradient(0deg, rgba(34, 28, 20, 0.62), transparent 45%);
}

.mushroom-hero__content {
    position: relative;
    z-index: 1;
    padding: 4.5rem 0;
}

.mushroom-hero__content .eyebrow {
    background: rgba(255, 255, 255, 0.16);
    color: white;
}

.mushroom-hero__content h1 {
    max-width: 920px;
    margin: 1rem 0;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1;
    letter-spacing: 0;
}

.mushroom-hero__content p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    line-height: 1.8;
}

.mushroom-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.6rem;
}

.mushroom-overview {
    background: linear-gradient(180deg, rgba(242, 238, 226, 0.66), rgba(255, 255, 255, 0.76));
}

.mushroom-stats,
.mushroom-routine__grid,
.mushroom-process__grid,
.mushroom-quality__checks,
.mushroom-gallery,
.mushroom-layout__list {
    display: grid;
    gap: 1rem;
}

.mushroom-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mushroom-stats article,
.mushroom-routine__grid article,
.mushroom-quality__checks article,
.mushroom-layout__list article,
.mushroom-gallery__item {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 45px rgba(27, 47, 36, 0.08);
}

.mushroom-stats article,
.mushroom-routine__grid article,
.mushroom-quality__checks article,
.mushroom-layout__list article {
    padding: 1.2rem;
    border-radius: 18px;
}

.mushroom-stats strong {
    display: block;
    color: #7a5b2d;
    font-size: 1.7rem;
    margin-bottom: 0.35rem;
}

.mushroom-stats span {
    color: var(--muted);
    font-weight: 700;
}

.mushroom-routine__grid,
.mushroom-process__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mushroom-routine__grid span {
    display: inline-flex;
    margin-bottom: 0.75rem;
    color: #7a5b2d;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mushroom-routine__grid h3,
.mushroom-process__grid h3,
.mushroom-layout__list h3 {
    margin: 0 0 0.55rem;
}

.mushroom-routine__grid p,
.mushroom-process__grid p,
.mushroom-layout__list p {
    margin: 0;
    line-height: 1.65;
}

.mushroom-routine__grid p,
.mushroom-layout__list p {
    color: var(--muted);
}

.mushroom-feature {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 1.4rem;
    align-items: center;
}

.mushroom-feature__media,
.mushroom-banner,
.mushroom-gallery__item {
    margin: 0;
}

.mushroom-feature__media img,
.mushroom-banner img,
.mushroom-gallery__item img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.mushroom-feature__media img {
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.mushroom-feature__media figcaption,
.mushroom-banner figcaption,
.mushroom-gallery__item figcaption {
    color: var(--muted);
    font-size: 0.92rem;
    margin-top: 0.65rem;
}

.mushroom-feature__copy h2,
.mushroom-quality__copy h2,
.mushroom-layout h2 {
    margin: 1rem 0;
    font-size: clamp(1.8rem, 3vw, 3.1rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.mushroom-feature__copy p,
.mushroom-quality__copy p,
.mushroom-layout p {
    color: var(--muted);
    line-height: 1.8;
}

.mushroom-band {
    background: linear-gradient(180deg, rgba(65, 50, 34, 0.97), rgba(38, 30, 23, 0.99));
    color: white;
}

.mushroom-band .section-heading p,
.mushroom-band p {
    color: rgba(255, 255, 255, 0.78);
}

.mushroom-band .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.mushroom-process__grid article {
    padding: 1.25rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.mushroom-process__grid span {
    display: inline-flex;
    margin-bottom: 1rem;
    color: #f4cf88;
    font-weight: 800;
}

.mushroom-quality {
    background: linear-gradient(180deg, rgba(248, 244, 232, 0.8), rgba(255, 255, 255, 0.88));
}

.mushroom-quality__grid,
.mushroom-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1.4rem;
    align-items: start;
}

.mushroom-quality__copy p {
    margin: 0;
}

.mushroom-quality__checks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mushroom-quality__checks strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.mushroom-quality__checks span {
    color: var(--muted);
    line-height: 1.6;
}

.mushroom-banner img {
    aspect-ratio: 1200 / 630;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.mushroom-banner figcaption {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.mushroom-banner figcaption strong,
.mushroom-gallery__item strong {
    color: var(--text);
}

.mushroom-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mushroom-gallery__item {
    padding: 0.85rem;
    border-radius: 20px;
}

.mushroom-gallery__item--wide {
    grid-column: span 2;
}

.mushroom-gallery__item img {
    aspect-ratio: 3 / 2;
    border-radius: 15px;
}

.mushroom-gallery__item--wide img {
    aspect-ratio: 16 / 9;
}

.mushroom-gallery__item--square img {
    aspect-ratio: 1 / 1;
}

.mushroom-gallery__item figcaption {
    display: grid;
    gap: 0.2rem;
}

.mushroom-gallery__item figcaption p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.92rem;
}

.mushroom-band--light {
    background: linear-gradient(180deg, rgba(244, 239, 226, 0.8), rgba(255, 255, 255, 0.9));
    color: var(--text);
}

.mushroom-band--light .eyebrow {
    background: rgba(122, 91, 45, 0.12);
    color: #6b4e27;
}

.mushroom-band--light p {
    color: var(--muted);
}

.mushroom-cta {
    padding-top: 3.5rem;
}

.mushroom-cta__inner {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(65, 50, 34, 0.96), rgba(122, 91, 45, 0.9)),
        url("../images/mushroom_farming/banner_image.png");
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    color: white;
    box-shadow: var(--shadow);
}

.mushroom-cta__inner .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.mushroom-cta__inner h2 {
    max-width: 780px;
    margin: 1rem 0 0.65rem;
    font-size: clamp(1.7rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.mushroom-cta__inner p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.mushroom-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    flex-shrink: 0;
}

.fruit-hero {
    min-height: clamp(520px, 72vh, 760px);
    position: relative;
    display: flex;
    align-items: end;
    overflow: hidden;
    color: white;
}

.fruit-hero__image,
.fruit-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.fruit-hero__image {
    object-fit: cover;
}

.fruit-hero__overlay {
    background:
        linear-gradient(90deg, rgba(30, 49, 24, 0.84), rgba(69, 95, 35, 0.44) 58%, rgba(118, 75, 24, 0.2)),
        linear-gradient(0deg, rgba(30, 49, 24, 0.62), transparent 45%);
}

.fruit-hero__content {
    position: relative;
    z-index: 1;
    padding: 4.5rem 0;
}

.fruit-hero__content .eyebrow {
    background: rgba(255, 255, 255, 0.16);
    color: white;
}

.fruit-hero__content h1 {
    max-width: 920px;
    margin: 1rem 0;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1;
    letter-spacing: 0;
}

.fruit-hero__content p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    line-height: 1.8;
}

.fruit-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.6rem;
}

.fruit-overview {
    background: linear-gradient(180deg, rgba(235, 246, 226, 0.7), rgba(255, 255, 255, 0.78));
}

.fruit-stats,
.fruit-routine__grid,
.fruit-process__grid,
.fruit-quality__checks,
.fruit-gallery,
.fruit-layout__list {
    display: grid;
    gap: 1rem;
}

.fruit-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fruit-stats article,
.fruit-routine__grid article,
.fruit-quality__checks article,
.fruit-layout__list article,
.fruit-gallery__item {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 45px rgba(27, 47, 36, 0.08);
}

.fruit-stats article,
.fruit-routine__grid article,
.fruit-quality__checks article,
.fruit-layout__list article {
    padding: 1.2rem;
    border-radius: 18px;
}

.fruit-stats strong {
    display: block;
    color: #6f8b2b;
    font-size: 1.7rem;
    margin-bottom: 0.35rem;
}

.fruit-stats span {
    color: var(--muted);
    font-weight: 700;
}

.fruit-routine__grid,
.fruit-process__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fruit-routine__grid span {
    display: inline-flex;
    margin-bottom: 0.75rem;
    color: #6f8b2b;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fruit-routine__grid h3,
.fruit-process__grid h3,
.fruit-layout__list h3 {
    margin: 0 0 0.55rem;
}

.fruit-routine__grid p,
.fruit-process__grid p,
.fruit-layout__list p {
    margin: 0;
    line-height: 1.65;
}

.fruit-routine__grid p,
.fruit-layout__list p {
    color: var(--muted);
}

.fruit-feature {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 1.4rem;
    align-items: center;
}

.fruit-feature__media,
.fruit-banner,
.fruit-gallery__item {
    margin: 0;
}

.fruit-feature__media img,
.fruit-banner img,
.fruit-gallery__item img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.fruit-feature__media img {
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.fruit-feature__media figcaption,
.fruit-banner figcaption,
.fruit-gallery__item figcaption {
    color: var(--muted);
    font-size: 0.92rem;
    margin-top: 0.65rem;
}

.fruit-feature__copy h2,
.fruit-quality__copy h2,
.fruit-layout h2 {
    margin: 1rem 0;
    font-size: clamp(1.8rem, 3vw, 3.1rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.fruit-feature__copy p,
.fruit-quality__copy p,
.fruit-layout p {
    color: var(--muted);
    line-height: 1.8;
}

.fruit-band {
    background: linear-gradient(180deg, rgba(47, 78, 35, 0.97), rgba(30, 49, 24, 0.99));
    color: white;
}

.fruit-band .section-heading p,
.fruit-band p {
    color: rgba(255, 255, 255, 0.78);
}

.fruit-band .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.fruit-process__grid article {
    padding: 1.25rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.fruit-process__grid span {
    display: inline-flex;
    margin-bottom: 1rem;
    color: #d6ec7a;
    font-weight: 800;
}

.fruit-quality {
    background: linear-gradient(180deg, rgba(239, 248, 230, 0.82), rgba(255, 255, 255, 0.9));
}

.fruit-quality__grid,
.fruit-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1.4rem;
    align-items: start;
}

.fruit-quality__copy p {
    margin: 0;
}

.fruit-quality__checks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fruit-quality__checks strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.fruit-quality__checks span {
    color: var(--muted);
    line-height: 1.6;
}

.fruit-banner img {
    aspect-ratio: 1200 / 630;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.fruit-banner figcaption {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.fruit-banner figcaption strong,
.fruit-gallery__item strong {
    color: var(--text);
}

.fruit-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fruit-gallery__item {
    padding: 0.85rem;
    border-radius: 20px;
}

.fruit-gallery__item--wide {
    grid-column: span 2;
}

.fruit-gallery__item img {
    aspect-ratio: 3 / 2;
    border-radius: 15px;
}

.fruit-gallery__item--wide img {
    aspect-ratio: 16 / 9;
}

.fruit-gallery__item--square img {
    aspect-ratio: 1 / 1;
}

.fruit-gallery__item figcaption {
    display: grid;
    gap: 0.2rem;
}

.fruit-gallery__item figcaption p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.92rem;
}

.fruit-band--light {
    background: linear-gradient(180deg, rgba(239, 248, 230, 0.84), rgba(255, 255, 255, 0.9));
    color: var(--text);
}

.fruit-band--light .eyebrow {
    background: rgba(111, 139, 43, 0.12);
    color: #5b7225;
}

.fruit-band--light p {
    color: var(--muted);
}

.fruit-cta {
    padding-top: 3.5rem;
}

.fruit-cta__inner {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(47, 78, 35, 0.96), rgba(111, 139, 43, 0.9)),
        url("../images/fruit_farming/banner_image.png");
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    color: white;
    box-shadow: var(--shadow);
}

.fruit-cta__inner .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.fruit-cta__inner h2 {
    max-width: 780px;
    margin: 1rem 0 0.65rem;
    font-size: clamp(1.7rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.fruit-cta__inner p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.fruit-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    flex-shrink: 0;
}

.nursery-hero {
    min-height: clamp(520px, 72vh, 760px);
    position: relative;
    display: flex;
    align-items: end;
    overflow: hidden;
    color: white;
}

.nursery-hero__image,
.nursery-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.nursery-hero__image {
    object-fit: cover;
}

.nursery-hero__overlay {
    background:
        linear-gradient(90deg, rgba(20, 55, 38, 0.86), rgba(34, 99, 68, 0.46) 58%, rgba(74, 122, 52, 0.2)),
        linear-gradient(0deg, rgba(20, 55, 38, 0.62), transparent 45%);
}

.nursery-hero__content {
    position: relative;
    z-index: 1;
    padding: 4.5rem 0;
}

.nursery-hero__content .eyebrow {
    background: rgba(255, 255, 255, 0.16);
    color: white;
}

.nursery-hero__content h1 {
    max-width: 920px;
    margin: 1rem 0;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1;
    letter-spacing: 0;
}

.nursery-hero__content p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    line-height: 1.8;
}

.nursery-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.6rem;
}

.nursery-overview {
    background: linear-gradient(180deg, rgba(229, 246, 235, 0.72), rgba(255, 255, 255, 0.82));
}

.nursery-stats,
.nursery-routine__grid,
.nursery-process__grid,
.nursery-quality__checks,
.nursery-gallery,
.nursery-layout__list {
    display: grid;
    gap: 1rem;
}

.nursery-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nursery-stats article,
.nursery-routine__grid article,
.nursery-quality__checks article,
.nursery-layout__list article,
.nursery-gallery__item {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 45px rgba(27, 47, 36, 0.08);
}

.nursery-stats article,
.nursery-routine__grid article,
.nursery-quality__checks article,
.nursery-layout__list article {
    padding: 1.2rem;
    border-radius: 18px;
}

.nursery-stats strong {
    display: block;
    color: #28754e;
    font-size: 1.7rem;
    margin-bottom: 0.35rem;
}

.nursery-stats span {
    color: var(--muted);
    font-weight: 700;
}

.nursery-routine__grid,
.nursery-process__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nursery-routine__grid span {
    display: inline-flex;
    margin-bottom: 0.75rem;
    color: #28754e;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nursery-routine__grid h3,
.nursery-process__grid h3,
.nursery-layout__list h3 {
    margin: 0 0 0.55rem;
}

.nursery-routine__grid p,
.nursery-process__grid p,
.nursery-layout__list p {
    margin: 0;
    line-height: 1.65;
}

.nursery-routine__grid p,
.nursery-layout__list p {
    color: var(--muted);
}

.nursery-feature {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 1.4rem;
    align-items: center;
}

.nursery-feature__media,
.nursery-banner,
.nursery-gallery__item {
    margin: 0;
}

.nursery-feature__media img,
.nursery-banner img,
.nursery-gallery__item img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.nursery-feature__media img {
    aspect-ratio: 3 / 2;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.nursery-feature__media figcaption,
.nursery-banner figcaption,
.nursery-gallery__item figcaption {
    color: var(--muted);
    font-size: 0.92rem;
    margin-top: 0.65rem;
}

.nursery-feature__copy h2,
.nursery-quality__copy h2,
.nursery-layout h2 {
    margin: 1rem 0;
    font-size: clamp(1.8rem, 3vw, 3.1rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.nursery-feature__copy p,
.nursery-quality__copy p,
.nursery-layout p {
    color: var(--muted);
    line-height: 1.8;
}

.nursery-band {
    background: linear-gradient(180deg, rgba(25, 92, 60, 0.97), rgba(18, 59, 42, 0.99));
    color: white;
}

.nursery-band .section-heading p,
.nursery-band p {
    color: rgba(255, 255, 255, 0.78);
}

.nursery-band .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.nursery-process__grid article {
    padding: 1.25rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.nursery-process__grid span {
    display: inline-flex;
    margin-bottom: 1rem;
    color: #b9f2bd;
    font-weight: 800;
}

.nursery-quality {
    background: linear-gradient(180deg, rgba(231, 247, 236, 0.84), rgba(255, 255, 255, 0.9));
}

.nursery-quality__grid,
.nursery-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1.4rem;
    align-items: start;
}

.nursery-quality__copy p {
    margin: 0;
}

.nursery-quality__checks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nursery-quality__checks strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.nursery-quality__checks span {
    color: var(--muted);
    line-height: 1.6;
}

.nursery-banner img {
    aspect-ratio: 1200 / 630;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.nursery-banner figcaption {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.nursery-banner figcaption strong,
.nursery-gallery__item strong {
    color: var(--text);
}

.nursery-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nursery-gallery__item {
    padding: 0.85rem;
    border-radius: 20px;
}

.nursery-gallery__item--wide {
    grid-column: span 2;
}

.nursery-gallery__item img {
    aspect-ratio: 3 / 2;
    border-radius: 15px;
}

.nursery-gallery__item--wide img {
    aspect-ratio: 16 / 9;
}

.nursery-gallery__item--square img {
    aspect-ratio: 1 / 1;
}

.nursery-gallery__item figcaption {
    display: grid;
    gap: 0.2rem;
}

.nursery-gallery__item figcaption p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.92rem;
}

.nursery-band--light {
    background: linear-gradient(180deg, rgba(231, 247, 236, 0.84), rgba(255, 255, 255, 0.9));
    color: var(--text);
}

.nursery-band--light .eyebrow {
    background: rgba(40, 117, 78, 0.12);
    color: #28754e;
}

.nursery-band--light p {
    color: var(--muted);
}

.nursery-cta {
    padding-top: 3.5rem;
}

.nursery-cta__inner {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(25, 92, 60, 0.96), rgba(40, 117, 78, 0.9)),
        url("../images/nursery_farming/banner_image.png");
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    color: white;
    box-shadow: var(--shadow);
}

.nursery-cta__inner .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.nursery-cta__inner h2 {
    max-width: 780px;
    margin: 1rem 0 0.65rem;
    font-size: clamp(1.7rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.nursery-cta__inner p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.nursery-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    flex-shrink: 0;
}

.agro-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #17351e;
}

.agro-hero__image,
.agro-hero__overlay {
    position: absolute;
    inset: 0;
}

.agro-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.04);
}

.agro-hero__overlay {
    z-index: 1;
    background:
        radial-gradient(circle at 78% 18%, rgba(233, 177, 72, 0.24), transparent 30%),
        linear-gradient(90deg, rgba(18, 45, 25, 0.94) 0%, rgba(31, 77, 41, 0.78) 43%, rgba(18, 45, 25, 0.26) 100%);
}

.agro-hero__content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 5rem 0;
    color: white;
}

.agro-hero__content .eyebrow {
    background: rgba(255, 255, 255, 0.15);
    color: #f5d875;
}

.agro-hero__content h1 {
    max-width: 13ch;
    margin: 1rem 0;
    font-size: clamp(2.8rem, 6vw, 6rem);
    line-height: 0.96;
    letter-spacing: -0.075em;
}

.agro-hero__content p {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.1rem;
    line-height: 1.8;
}

.agro-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.agro-overview {
    background:
        radial-gradient(circle at 15% 0%, rgba(233, 177, 72, 0.16), transparent 30%),
        #f7f6e8;
}

.agro-stats,
.agro-routine__grid,
.agro-process__grid,
.agro-quality__checks,
.agro-gallery,
.agro-layout__list {
    display: grid;
    gap: 1rem;
}

.agro-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.agro-stats article,
.agro-routine__grid article,
.agro-quality__checks article,
.agro-layout__list article,
.agro-gallery__item {
    border: 1px solid rgba(72, 116, 45, 0.17);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 40px rgba(40, 75, 35, 0.08);
}

.agro-stats article,
.agro-routine__grid article,
.agro-quality__checks article,
.agro-layout__list article {
    border-radius: 24px;
    padding: 1.2rem;
}

.agro-stats strong {
    display: block;
    margin-bottom: 0.55rem;
    color: #41742f;
    font-size: 1.8rem;
    line-height: 1;
}

.agro-stats span {
    color: #314f27;
    font-weight: 800;
}

.agro-routine__grid,
.agro-process__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.agro-routine__grid span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 1rem;
    border-radius: 999px;
    padding: 0.42rem 0.75rem;
    background: rgba(65, 116, 47, 0.12);
    color: #41742f;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.agro-routine__grid h3,
.agro-process__grid h3,
.agro-layout__list h3 {
    margin-bottom: 0.6rem;
}

.agro-routine__grid p,
.agro-process__grid p,
.agro-layout__list p {
    margin: 0;
    line-height: 1.72;
}

.agro-routine__grid p,
.agro-layout__list p {
    color: var(--muted);
}

.agro-feature {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.agro-feature__media,
.agro-banner,
.agro-gallery__item {
    overflow: hidden;
    border-radius: 30px;
}

.agro-feature__media img,
.agro-banner img,
.agro-gallery__item img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.agro-feature__media img {
    aspect-ratio: 3 / 2;
}

.agro-feature__media figcaption,
.agro-banner figcaption,
.agro-gallery__item figcaption {
    padding: 1rem;
    background: white;
    color: var(--muted);
}

.agro-feature__copy h2,
.agro-quality__copy h2,
.agro-layout h2 {
    margin: 0.9rem 0;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.agro-feature__copy p,
.agro-quality__copy p,
.agro-layout p {
    line-height: 1.8;
}

.agro-band {
    background:
        radial-gradient(circle at 15% 0%, rgba(245, 216, 117, 0.18), transparent 30%),
        linear-gradient(135deg, #16351f, #35662e);
    color: white;
}

.agro-band .section-heading p,
.agro-band p {
    color: rgba(255, 255, 255, 0.78);
}

.agro-band .eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: #f5d875;
}

.agro-process__grid article {
    border-radius: 26px;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.agro-process__grid span {
    display: block;
    margin-bottom: 1rem;
    color: #f5d875;
    font-size: 2rem;
    font-weight: 900;
}

.agro-quality {
    background: linear-gradient(180deg, rgba(238, 245, 222, 0.9), rgba(255, 255, 255, 0.95));
}

.agro-quality__grid,
.agro-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 1.4rem;
    align-items: start;
}

.agro-quality__copy p {
    color: #5f6d48;
}

.agro-quality__checks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.agro-quality__checks strong {
    display: block;
    margin-bottom: 0.45rem;
    color: #243f1c;
}

.agro-quality__checks span {
    color: #5d6f4a;
    line-height: 1.7;
}

.agro-banner img {
    aspect-ratio: 1200 / 630;
}

.agro-banner figcaption {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.agro-banner figcaption strong,
.agro-gallery__item strong {
    color: #243f1c;
}

.agro-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.agro-gallery__item {
    margin: 0;
}

.agro-gallery__item--wide {
    grid-column: span 2;
}

.agro-gallery__item img {
    aspect-ratio: 3 / 2;
}

.agro-gallery__item--wide img {
    aspect-ratio: 1200 / 630;
}

.agro-gallery__item--square img {
    aspect-ratio: 1 / 1;
}

.agro-gallery__item figcaption {
    min-height: 156px;
}

.agro-gallery__item figcaption p {
    margin: 0.4rem 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.agro-band--light {
    background:
        radial-gradient(circle at 82% 0%, rgba(65, 116, 47, 0.14), transparent 32%),
        #f7f6e8;
    color: var(--text);
}

.agro-band--light .eyebrow {
    background: rgba(65, 116, 47, 0.12);
    color: #41742f;
}

.agro-band--light p {
    color: var(--muted);
}

.agro-cta {
    padding-top: 3.5rem;
}

.agro-cta__inner {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(22, 53, 31, 0.96), rgba(65, 116, 47, 0.88)),
        url("../images/agro_farming/banner_image.png");
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    color: white;
    box-shadow: var(--shadow);
}

.agro-cta__inner .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.agro-cta__inner h2 {
    max-width: 780px;
    margin: 1rem 0 0.65rem;
    font-size: clamp(1.7rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.agro-cta__inner p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.agro-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    flex-shrink: 0;
}

@media (max-width: 1080px) {
    .agro-stats,
    .agro-routine__grid,
    .agro-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .agro-feature,
    .agro-quality__grid,
    .agro-layout {
        grid-template-columns: 1fr;
    }

    .agro-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .agro-hero {
        min-height: 560px;
        align-items: end;
    }

    .agro-hero__content {
        padding: 3.5rem 0 2.5rem;
    }

    .agro-hero__content h1 {
        font-size: clamp(2rem, 8vw, 3.1rem);
        line-height: 1.05;
    }

    .agro-gallery__item--wide {
        grid-column: span 1;
    }

    .agro-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .agro-stats,
    .agro-routine__grid,
    .agro-process__grid,
    .agro-quality__checks,
    .agro-gallery {
        grid-template-columns: 1fr;
    }

    .agro-hero__actions .btn,
    .agro-cta__actions,
    .agro-cta__actions .btn {
        width: 100%;
    }

    .agro-banner img,
    .agro-gallery__item--wide img {
        aspect-ratio: 4 / 3;
    }
}

.vermi-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #24180f;
}

.vermi-hero__image,
.vermi-hero__overlay {
    position: absolute;
    inset: 0;
}

.vermi-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.02) contrast(1.05);
}

.vermi-hero__overlay {
    background:
        radial-gradient(circle at 74% 20%, rgba(218, 178, 99, 0.22), transparent 28%),
        linear-gradient(90deg, rgba(30, 21, 12, 0.94) 0%, rgba(54, 35, 17, 0.76) 43%, rgba(30, 21, 12, 0.3) 100%);
    z-index: 1;
}

.vermi-hero__content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    color: white;
    padding: 5rem 0;
}

.vermi-hero__content .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: #f7dfae;
}

.vermi-hero__content h1 {
    margin: 1rem 0;
    font-size: clamp(2.8rem, 6vw, 6rem);
    line-height: 0.96;
    letter-spacing: -0.075em;
    max-width: 12ch;
}

.vermi-hero__content p {
    max-width: 680px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.84);
}

.vermi-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.vermi-overview {
    background:
        radial-gradient(circle at top left, rgba(117, 82, 45, 0.12), transparent 28%),
        #fffaf1;
}

.vermi-stats,
.vermi-routine__grid,
.vermi-process__grid,
.vermi-quality__checks,
.vermi-gallery,
.vermi-layout__list {
    display: grid;
    gap: 1rem;
}

.vermi-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vermi-stats article,
.vermi-routine__grid article,
.vermi-quality__checks article,
.vermi-layout__list article,
.vermi-gallery__item {
    border: 1px solid rgba(117, 82, 45, 0.16);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 40px rgba(73, 48, 25, 0.08);
}

.vermi-stats article,
.vermi-routine__grid article,
.vermi-quality__checks article,
.vermi-layout__list article {
    border-radius: 24px;
    padding: 1.2rem;
}

.vermi-stats strong {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 1.8rem;
    line-height: 1;
    color: #7b4d22;
}

.vermi-stats span {
    color: #563821;
    font-weight: 800;
}

.vermi-routine__grid,
.vermi-process__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vermi-routine__grid span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 1rem;
    border-radius: 999px;
    padding: 0.42rem 0.75rem;
    background: rgba(123, 77, 34, 0.11);
    color: #7b4d22;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.vermi-routine__grid h3,
.vermi-process__grid h3,
.vermi-layout__list h3 {
    margin-bottom: 0.6rem;
}

.vermi-routine__grid p,
.vermi-process__grid p,
.vermi-layout__list p {
    margin: 0;
    line-height: 1.72;
}

.vermi-routine__grid p,
.vermi-layout__list p {
    color: var(--muted);
}

.vermi-feature {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.vermi-feature__media,
.vermi-banner,
.vermi-gallery__item {
    overflow: hidden;
    border-radius: 30px;
}

.vermi-feature__media img,
.vermi-banner img,
.vermi-gallery__item img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.vermi-feature__media img {
    aspect-ratio: 3 / 2;
}

.vermi-feature__media figcaption,
.vermi-banner figcaption,
.vermi-gallery__item figcaption {
    padding: 1rem;
    background: white;
    color: var(--muted);
}

.vermi-feature__copy h2,
.vermi-quality__copy h2,
.vermi-layout h2 {
    margin: 0.9rem 0;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.vermi-feature__copy p,
.vermi-quality__copy p,
.vermi-layout p {
    line-height: 1.8;
}

.vermi-band {
    background:
        radial-gradient(circle at 18% 0%, rgba(245, 214, 146, 0.16), transparent 32%),
        linear-gradient(135deg, #2b1c10, #4f351f);
    color: white;
}

.vermi-band .section-heading p,
.vermi-band p {
    color: rgba(255, 255, 255, 0.76);
}

.vermi-band .eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: #f5d692;
}

.vermi-process__grid article {
    border-radius: 26px;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.vermi-process__grid span {
    display: block;
    margin-bottom: 1rem;
    color: #f5d692;
    font-size: 2rem;
    font-weight: 900;
}

.vermi-quality {
    background: #f7f0e4;
}

.vermi-quality__grid,
.vermi-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 1.4rem;
    align-items: start;
}

.vermi-quality__copy p {
    color: #68523a;
}

.vermi-quality__checks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vermi-quality__checks strong {
    display: block;
    margin-bottom: 0.45rem;
    color: #4f351f;
}

.vermi-quality__checks span {
    color: #705a42;
    line-height: 1.7;
}

.vermi-banner img {
    aspect-ratio: 1200 / 630;
}

.vermi-banner figcaption {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.vermi-banner figcaption strong,
.vermi-gallery__item strong {
    color: #4f351f;
}

.vermi-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vermi-gallery__item {
    margin: 0;
}

.vermi-gallery__item--wide {
    grid-column: span 2;
}

.vermi-gallery__item img {
    aspect-ratio: 3 / 2;
}

.vermi-gallery__item--wide img {
    aspect-ratio: 1200 / 630;
}

.vermi-gallery__item--square img {
    aspect-ratio: 1 / 1;
}

.vermi-gallery__item figcaption {
    min-height: 156px;
}

.vermi-gallery__item figcaption p {
    margin: 0.4rem 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.vermi-band--light {
    background:
        radial-gradient(circle at 82% 0%, rgba(123, 77, 34, 0.14), transparent 32%),
        #fffaf1;
    color: var(--text);
}

.vermi-band--light .eyebrow {
    background: rgba(123, 77, 34, 0.11);
    color: #7b4d22;
}

.vermi-band--light p {
    color: var(--muted);
}

.vermi-cta {
    padding-top: 3.5rem;
}

.vermi-cta__inner {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(43, 28, 16, 0.96), rgba(123, 77, 34, 0.88)),
        url("../images/vermicompost_farming/banner_image.png");
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    color: white;
    box-shadow: var(--shadow);
}

.vermi-cta__inner .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.vermi-cta__inner h2 {
    max-width: 780px;
    margin: 1rem 0 0.65rem;
    font-size: clamp(1.7rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.vermi-cta__inner p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.vermi-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    flex-shrink: 0;
}

@media (max-width: 1080px) {
    .vermi-stats,
    .vermi-routine__grid,
    .vermi-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vermi-feature,
    .vermi-quality__grid,
    .vermi-layout {
        grid-template-columns: 1fr;
    }

    .vermi-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .vermi-hero {
        min-height: 560px;
        align-items: end;
    }

    .vermi-hero__content {
        padding: 3.5rem 0 2.5rem;
    }

    .vermi-hero__content h1 {
        font-size: clamp(2rem, 8vw, 3.1rem);
        line-height: 1.05;
    }

    .vermi-gallery__item--wide {
        grid-column: span 1;
    }

    .vermi-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .vermi-stats,
    .vermi-routine__grid,
    .vermi-process__grid,
    .vermi-quality__checks,
    .vermi-gallery {
        grid-template-columns: 1fr;
    }

    .vermi-hero__actions .btn,
    .vermi-cta__actions,
    .vermi-cta__actions .btn {
        width: 100%;
    }

    .vermi-banner img,
    .vermi-gallery__item--wide img {
        aspect-ratio: 4 / 3;
    }
}

.gallery-1 { background: linear-gradient(145deg, #0b7f87, #2fb6b8); }
.gallery-2 { background: linear-gradient(145deg, #075c63, #2a8b95); }
.gallery-3 { background: linear-gradient(145deg, #b88d50, #ddb36d); }
.gallery-4 { background: linear-gradient(145deg, #0b7f87, #2f9ea8); }
.gallery-5 { background: linear-gradient(145deg, #075c63, #2b8f99); }
.gallery-6 { background: linear-gradient(145deg, #0d4045, #2a7f87); }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.blog-card h3 {
    margin-bottom: 0.75rem;
}

.project-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.project-badge {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-weight: 800;
}

.contact-hero {
    padding: clamp(4rem, 8vw, 7rem) 0 4rem;
    background:
        radial-gradient(circle at 78% 10%, rgba(216, 162, 74, 0.2), transparent 28%),
        linear-gradient(135deg, rgba(8, 54, 58, 0.96), rgba(21, 95, 76, 0.88)),
        url("../images/agro_farming/banner_image.png");
    background-size: cover;
    background-position: center;
    background-blend-mode: screen, multiply, normal;
    color: white;
    overflow: hidden;
}

.contact-hero__grid {
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    gap: 2rem;
    align-items: center;
}

.contact-hero__copy .eyebrow,
.contact-side-panel .eyebrow,
.contact-location .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.contact-hero__copy h1 {
    max-width: 12ch;
    margin: 1rem 0;
    font-size: clamp(2.8rem, 6vw, 6rem);
    line-height: 0.96;
    letter-spacing: -0.075em;
}

.contact-hero__copy p {
    max-width: 68ch;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
    line-height: 1.82;
}

.contact-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.55rem;
}

.contact-hero__card {
    display: grid;
    gap: 0.85rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(216, 162, 74, 0.2), transparent 34%),
        rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
}

.contact-hero__card-label {
    color: #f5d875;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-hero__phone {
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 900;
    line-height: 1;
}

.contact-hero__email {
    color: rgba(255, 255, 255, 0.84);
    font-weight: 800;
    word-break: break-word;
}

.contact-hero__card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.contact-methods {
    background: #fffaf1;
}

.contact-methods__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.contact-method-card {
    display: grid;
    gap: 0.65rem;
    padding: 1.15rem;
    border: 1px solid rgba(11, 127, 135, 0.14);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 42px rgba(27, 47, 36, 0.08);
}

.contact-method-card span {
    width: fit-content;
    border-radius: 999px;
    padding: 0.34rem 0.65rem;
    background: rgba(11, 127, 135, 0.1);
    color: var(--accent-dark);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-method-card h3 {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.25;
}

.contact-method-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.contact-main {
    background:
        radial-gradient(circle at 12% 0%, rgba(11, 127, 135, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(239, 248, 241, 0.72), rgba(255, 255, 255, 0.96));
}

.contact-main__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.4rem;
    align-items: start;
}

.contact-form-panel,
.contact-side-panel {
    border: 1px solid rgba(22, 52, 58, 0.1);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.contact-form-panel {
    padding: clamp(1.15rem, 3vw, 2rem);
}

.contact-form-panel .section-heading {
    align-items: flex-start;
}

.contact-form-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1rem;
}

.contact-side-panel {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 1rem;
    padding: clamp(1.15rem, 3vw, 1.6rem);
    background:
        radial-gradient(circle at top right, rgba(216, 162, 74, 0.18), transparent 34%),
        linear-gradient(135deg, #0a4045, #075c63);
    color: white;
}

.contact-side-panel h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.7rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.contact-checklist {
    display: grid;
    gap: 0.85rem;
}

.contact-checklist article {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-checklist strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #f5d875;
}

.contact-checklist p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
}

.contact-project-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.contact-project-links a {
    border: 1px solid rgba(11, 127, 135, 0.16);
    border-radius: 999px;
    padding: 0.72rem 1rem;
    background: rgba(255, 255, 255, 0.84);
    color: var(--accent-dark);
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(27, 47, 36, 0.07);
}

.contact-location {
    padding-top: 3.5rem;
}

.contact-location__inner {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
    padding: clamp(1.2rem, 3vw, 1.7rem);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(10, 64, 69, 0.96), rgba(216, 162, 74, 0.74)),
        url("../images/nursery_farming/banner_image.png");
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    color: white;
    box-shadow: var(--shadow);
}

.contact-location__inner h2 {
    max-width: 680px;
    margin: 1rem 0 0.6rem;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.contact-location__inner p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.contact-location__meta {
    display: grid;
    gap: 0.6rem;
    flex: 0 0 auto;
    min-width: min(100%, 280px);
}

.contact-location__meta a,
.contact-location__meta span {
    border-radius: 999px;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.13);
    color: white;
    font-weight: 800;
    text-align: center;
}

.projects-hero {
    padding: clamp(4rem, 8vw, 7rem) 0 4rem;
    background:
        radial-gradient(circle at 75% 10%, rgba(216, 162, 74, 0.18), transparent 30%),
        linear-gradient(135deg, #eef7ed, #fff8e8);
    overflow: hidden;
}

.projects-hero__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: center;
}

.projects-hero__copy h1 {
    max-width: 13ch;
    margin: 1rem 0;
    font-size: clamp(2.8rem, 6vw, 6rem);
    line-height: 0.96;
    letter-spacing: -0.075em;
}

.projects-hero__copy p {
    max-width: 68ch;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.82;
}

.projects-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.55rem;
}

.projects-hero__visual {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1rem;
}

.projects-hero__image {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 24px 58px rgba(27, 47, 36, 0.14);
}

.projects-hero__image--main {
    grid-row: span 2;
    min-height: 520px;
}

.projects-hero__image--small {
    min-height: 250px;
}

.projects-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projects-hero__image figcaption {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    border-radius: 999px;
    padding: 0.62rem 0.9rem;
    background: rgba(255, 255, 255, 0.86);
    color: var(--text);
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(27, 47, 36, 0.14);
}

.projects-snapshot {
    background: #fffaf1;
}

.projects-snapshot__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.projects-snapshot__grid article {
    display: grid;
    gap: 0.45rem;
    padding: 1.15rem;
    border: 1px solid rgba(11, 127, 135, 0.14);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 42px rgba(27, 47, 36, 0.08);
}

.projects-snapshot__grid strong {
    color: var(--accent-dark);
    font-size: 1.45rem;
}

.projects-snapshot__grid span {
    color: var(--muted);
    line-height: 1.55;
}

.projects-lineup {
    background:
        radial-gradient(circle at 12% 0%, rgba(11, 127, 135, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(239, 248, 241, 0.72), rgba(255, 255, 255, 0.96));
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.projects-card {
    overflow: hidden;
    border: 1px solid rgba(22, 52, 58, 0.1);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 48px rgba(27, 47, 36, 0.1);
}

.projects-card--featured {
    grid-row: span 2;
}

.projects-card__media {
    position: relative;
    display: block;
    min-height: 245px;
    overflow: hidden;
}

.projects-card--featured .projects-card__media {
    min-height: 420px;
}

.projects-card__media img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.projects-card__media span {
    position: absolute;
    top: 1rem;
    left: 1rem;
    border-radius: 999px;
    padding: 0.44rem 0.76rem;
    background: rgba(255, 255, 255, 0.86);
    color: var(--accent-dark);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.projects-card:hover .projects-card__media img {
    transform: scale(1.06);
    filter: saturate(1.08) contrast(1.04);
}

.projects-card__body {
    display: grid;
    gap: 0.85rem;
    padding: 1.1rem;
}

.projects-card__heading {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.projects-card__heading h3 {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.15;
}

.projects-card__heading a {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 0.42rem 0.72rem;
    background: rgba(11, 127, 135, 0.1);
    color: var(--accent-dark);
    font-size: 0.82rem;
    font-weight: 900;
}

.projects-card__body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.projects-card__body ul {
    display: grid;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.projects-card__body li {
    display: flex;
    gap: 0.55rem;
    color: var(--muted);
    line-height: 1.55;
}

.projects-card__body li::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    margin-top: 0.45rem;
    border-radius: 999px;
    background: var(--orange-strong);
    flex: 0 0 auto;
}

.projects-process {
    background:
        radial-gradient(circle at 18% 0%, rgba(245, 216, 117, 0.18), transparent 30%),
        linear-gradient(135deg, #0a4045, #075c63);
    color: white;
}

.projects-process__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1.5rem;
    align-items: center;
}

.projects-process .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.projects-process__copy h2 {
    margin: 1rem 0;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.projects-process__copy p {
    max-width: 62ch;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.projects-process__steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.projects-process__steps article {
    padding: 1.15rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.projects-process__steps span {
    display: block;
    margin-bottom: 1rem;
    color: #f5d875;
    font-size: 2rem;
    font-weight: 900;
}

.projects-process__steps h3 {
    margin: 0 0 0.55rem;
}

.projects-process__steps p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.65;
}

.projects-gallery-preview {
    background: #fffaf1;
}

.projects-preview-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.85rem;
}

.projects-preview-grid figure {
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    background: white;
    box-shadow: 0 18px 42px rgba(27, 47, 36, 0.08);
}

.projects-preview-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.projects-preview-grid figcaption {
    padding: 0.85rem;
    color: var(--text);
    font-weight: 800;
}

.projects-cta {
    padding-top: 3.5rem;
}

.projects-cta__inner {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
    padding: clamp(1.2rem, 3vw, 1.7rem);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(10, 64, 69, 0.96), rgba(216, 162, 74, 0.74)),
        url("../images/fruit_farming/banner_image.png");
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    color: white;
    box-shadow: var(--shadow);
}

.projects-cta__inner .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.projects-cta__inner h2 {
    max-width: 760px;
    margin: 1rem 0 0.6rem;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.projects-cta__inner p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.projects-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    flex-shrink: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.field {
    display: grid;
    gap: 0.45rem;
}

.field label {
    font-size: 0.92rem;
    font-weight: 700;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.95rem 1rem;
    font: inherit;
    background: white;
    color: var(--text);
}

.field textarea {
    min-height: 160px;
    resize: vertical;
}

.span-2 {
    grid-column: span 2;
}

.site-footer {
    margin-top: 4rem;
    padding: 3.25rem 0 1.4rem;
    background:
        radial-gradient(circle at 12% 0%, rgba(216, 162, 74, 0.18), transparent 32%),
        radial-gradient(circle at 86% 18%, rgba(31, 183, 187, 0.14), transparent 30%),
        linear-gradient(180deg, rgba(10, 64, 69, 0.98), rgba(7, 44, 47, 1));
    color: rgba(255, 255, 255, 0.9);
    border-top: 5px solid rgba(216, 162, 74, 0.88);
    box-shadow: inset 0 1px 0 rgba(216, 162, 74, 0.18);
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: clamp(1.2rem, 2.4vw, 1.9rem);
    margin-bottom: 1.75rem;
    background:
        radial-gradient(circle at top right, rgba(216, 162, 74, 0.18), transparent 32%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
    border: 2px solid rgba(216, 162, 74, 0.8);
    border-radius: 30px;
    box-shadow:
        0 0 0 1px rgba(216, 162, 74, 0.18) inset,
        0 20px 45px rgba(0, 0, 0, 0.16);
}

.footer-cta .eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: white;
}

.footer-cta h2 {
    margin: 1rem 0 0.6rem;
    font-size: clamp(1.6rem, 2.4vw, 2.3rem);
    letter-spacing: -0.03em;
    color: white;
}

.footer-cta p {
    margin: 0;
    max-width: 70ch;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
}

.footer-cta__actions {
    flex-shrink: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr 1fr 0.85fr;
    gap: 1.35rem;
    align-items: start;
}

.footer-grid > div {
    min-height: 100%;
    padding: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.045);
}

.footer-grid > div:first-child {
    padding-left: 1.1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.brand--footer .brand__text small {
    color: rgba(255, 255, 255, 0.68);
}

.footer-text {
    max-width: 46ch;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-note {
    max-width: 46ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.footer-kicker {
    width: fit-content;
    border-radius: 999px;
    padding: 0.42rem 0.72rem;
    background: rgba(216, 162, 74, 0.12);
    color: #f3c978;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-brand {
    display: grid;
    gap: 1rem;
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.footer-stat {
    padding: 0.95rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-stat strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1;
    margin-bottom: 0.25rem;
    color: white;
}

.footer-stat span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links,
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.7rem;
    color: rgba(255, 255, 255, 0.78);
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-login-link:hover {
    color: #f3c978;
}

.footer-links--two-col,
.footer-project-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0.9rem;
}

.footer-subtitle {
    margin-top: 1.4rem;
}

.footer-contact li {
    display: grid;
    gap: 0.25rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.footer-contact__label {
    color: #f3c978;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.footer-action-card {
    display: grid;
    gap: 1rem;
    align-content: start;
    background:
        radial-gradient(circle at top right, rgba(216, 162, 74, 0.16), transparent 34%),
        rgba(255, 255, 255, 0.06) !important;
}

.footer-action-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.75;
}

.footer-action-card__links {
    display: grid;
    gap: 0.8rem;
}

.footer-action-card__links .btn {
    width: 100%;
}

.footer-login-link {
    display: inline-flex;
    justify-content: center;
    border-radius: 999px;
    padding: 0.82rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.84);
    font-weight: 800;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(216, 162, 74, 0.68);
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
}

.fade-up {
    animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1080px) {
    .about-hero__grid,
    .about-callout {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .home-intro {
        grid-template-columns: 1fr;
    }

    .home-intro__highlights {
        grid-template-columns: 1fr;
    }

    .home-slide__inner {
        grid-template-columns: 1fr;
    }

    .home-project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-showcase__grid {
        grid-template-columns: 1fr;
    }

    .gallery-hero__grid {
        grid-template-columns: 1fr;
    }

    .gallery-hero__stack {
        min-height: 460px;
    }

    .gallery-modern-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-detail__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-hero__grid,
    .contact-main__grid {
        grid-template-columns: 1fr;
    }

    .projects-hero__grid,
    .projects-process__grid {
        grid-template-columns: 1fr;
    }

    .about-company__grid,
    .about-project-scope__grid {
        grid-template-columns: 1fr;
    }

    .about-pillar-grid {
        grid-template-columns: 1fr;
    }

    .projects-snapshot__grid,
    .projects-process__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .projects-card--featured {
        grid-row: span 1;
    }

    .projects-card--featured .projects-card__media {
        min-height: 245px;
    }

    .projects-preview-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-methods__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-side-panel {
        position: static;
    }

    .hero__grid,
    .split-panel,
    .footer-grid,
    .grid-3,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid > div {
        min-height: auto;
    }

    .footer-grid > div:first-child {
        border-left: 1px solid rgba(255, 255, 255, 0.09);
    }

    .gallery-tile--wide,
    .gallery-tile--tall,
    .gallery-tile--small {
        grid-column: span 12;
        min-height: 220px;
    }

    .dairy-stats,
    .dairy-routine__grid,
    .dairy-process__grid,
    .fish-stats,
    .fish-routine__grid,
    .fish-process__grid,
    .mushroom-stats,
    .mushroom-routine__grid,
    .mushroom-process__grid,
    .fruit-stats,
    .fruit-routine__grid,
    .fruit-process__grid,
    .nursery-stats,
    .nursery-routine__grid,
    .nursery-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dairy-feature,
    .dairy-quality__grid,
    .dairy-layout,
    .fish-feature,
    .fish-quality__grid,
    .fish-layout,
    .mushroom-feature,
    .mushroom-quality__grid,
    .mushroom-layout,
    .fruit-feature,
    .fruit-quality__grid,
    .fruit-layout,
    .nursery-feature,
    .nursery-quality__grid,
    .nursery-layout {
        grid-template-columns: 1fr;
    }

    .dairy-gallery,
    .fish-gallery,
    .mushroom-gallery,
    .fruit-gallery,
    .nursery-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .about-metrics {
        grid-template-columns: 1fr;
    }

    .topbar {
        display: none;
    }

    .header-shell {
        margin-top: 0.35rem;
        margin-bottom: 0.35rem;
    }

    .nav-shell {
        padding: 0.7rem 0.8rem;
        gap: 0.6rem;
        align-items: center;
    }

    .brand__text small {
        display: none;
    }

    .brand__text strong {
        font-size: 0.98rem;
    }

    .footer-stats {
        grid-template-columns: 1fr;
    }

    .home-slide {
        min-height: auto;
    }

    .home-intro__highlights {
        grid-template-columns: 1fr;
    }

    .slider-arrow {
        width: 2.85rem;
        height: 2.85rem;
        font-size: 1.7rem;
    }

    .slider-arrow--prev {
        left: 0.6rem;
    }

    .slider-arrow--next {
        right: 0.6rem;
    }

    .slider-dots {
        gap: 0.5rem;
        padding: 0.45rem 0.7rem;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .site-nav--desktop {
        display: none;
    }

    .mobile-nav__panel {
        width: 100%;
        height: auto;
        margin: 0;
        border-radius: 24px;
        box-shadow: 0 18px 42px rgba(27, 47, 36, 0.12);
        padding: calc(0.85rem + env(safe-area-inset-top)) 0.8rem calc(0.8rem + env(safe-area-inset-bottom));
    }

    .mobile-nav__header {
        padding-bottom: 0.45rem;
    }

    .mobile-nav__list {
        gap: 0.35rem;
    }

    .mobile-nav__link {
        padding: 0.7rem 0.85rem;
        font-size: 0.95rem;
    }

    .mobile-nav__submenu {
        padding-left: 0.78rem;
        margin-left: 0.08rem;
    }

    .hero {
        padding-top: 3.5rem;
    }

    .home-slide__inner {
        gap: 1.1rem;
        padding: 2.5rem 0 1.35rem;
    }

    .home-slide__copy {
        max-width: 68ch;
    }

    .home-slide__copy h1 {
        font-size: clamp(2.05rem, 7.6vw, 3.2rem);
    }

    .home-slide__copy p {
        font-size: 1rem;
        line-height: 1.75;
    }

    .home-intro__actions .btn {
        width: 100%;
    }

    .home-project-card--large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .home-showcase__media {
        grid-template-columns: 1fr;
    }

    .home-showcase__image--tall {
        grid-row: span 1;
        min-height: 300px;
    }

    .home-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-modern-card--wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-location__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .projects-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-location__meta {
        width: 100%;
    }

    .project-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .grid-2,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .span-2 {
        grid-column: span 1;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        gap: 1rem;
    }

    .dairy-hero,
    .fish-hero,
    .mushroom-hero,
    .fruit-hero,
    .nursery-hero {
        min-height: 560px;
        align-items: end;
    }

    .dairy-hero__content,
    .fish-hero__content,
    .mushroom-hero__content,
    .fruit-hero__content,
    .nursery-hero__content {
        padding: 3.5rem 0 2.5rem;
    }

    .dairy-hero__content h1,
    .fish-hero__content h1,
    .mushroom-hero__content h1,
    .fruit-hero__content h1,
    .nursery-hero__content h1 {
        font-size: clamp(2rem, 8vw, 3.1rem);
        line-height: 1.05;
    }

    .dairy-gallery__item--wide,
    .fish-gallery__item--wide,
    .mushroom-gallery__item--wide,
    .fruit-gallery__item--wide,
    .nursery-gallery__item--wide {
        grid-column: span 1;
    }

    .dairy-cta__inner,
    .fish-cta__inner,
    .mushroom-cta__inner,
    .fruit-cta__inner,
    .nursery-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        padding-top: 0.85rem;
    }

    .footer-cta__actions .btn {
        width: 100%;
    }

    .footer-cta p,
    .footer-text,
    .footer-note,
    .footer-links,
    .footer-contact,
    .footer-bottom {
        font-size: 0.94rem;
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding: 2.25rem 0 1.75rem;
    }

    .about-callout__actions {
        width: 100%;
    }

    .home-slide__copy h1 {
        font-size: clamp(1.9rem, 10vw, 2.8rem);
    }

    .home-slide__copy p,
    .about-hero__lead,
    .about-focus-card p,
    .about-callout p {
        font-size: 0.98rem;
        line-height: 1.72;
    }

    .slider-arrow {
        width: 2.65rem;
        height: 2.65rem;
    }

    .slider-dots {
        bottom: 0.75rem;
    }

    .topbar__inner,
    .topbar__meta,
    .hero__actions,
    .footer-bottom {
        flex-direction: column;
    }

    .topbar__meta {
        gap: 0.6rem;
    }

    .topbar__chip {
        width: 100%;
        justify-content: center;
    }

    .topbar__tag {
        display: none;
    }

    .nav-shell {
        position: relative;
        padding: 0.8rem 0.95rem;
        border-radius: 20px;
        gap: 0.65rem;
    }

    .section {
        padding: 4rem 0;
    }

    .hero {
        padding: 3rem 0 2rem;
    }

    .about-callout {
        padding: 1rem;
    }

    .home-intro {
        padding: 1rem;
        border-radius: 24px;
    }

    .home-highlight {
        padding: 1rem;
    }

    .home-highlight h3 {
        font-size: 1rem;
    }

    .home-slide__actions,
    .home-slide__actions .btn,
    .home-showcase__actions,
    .home-showcase__actions .btn,
    .home-cta__actions,
    .home-cta__actions .btn {
        width: 100%;
    }

    .home-project-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .home-project-card {
        min-height: 340px;
    }

    .home-showcase__image {
        min-height: 280px;
    }

    .gallery-hero {
        padding-top: 3rem;
    }

    .gallery-hero__copy h1 {
        font-size: clamp(2.15rem, 10vw, 3.2rem);
    }

    .gallery-hero__actions,
    .gallery-hero__actions .btn,
    .gallery-cta__actions,
    .gallery-cta__actions .btn {
        width: 100%;
    }

    .gallery-hero__stack {
        min-height: auto;
        display: grid;
        gap: 1rem;
    }

    .gallery-hero__photo,
    .gallery-hero__photo--main,
    .gallery-hero__photo--top,
    .gallery-hero__photo--bottom {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        min-height: 260px;
    }

    .gallery-modern-grid,
    .gallery-detail__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .gallery-modern-card {
        min-height: 350px;
    }

    .gallery-strip__inner a {
        width: 100%;
        text-align: center;
    }

    .contact-hero {
        padding-top: 3rem;
    }

    .projects-hero {
        padding-top: 3rem;
    }

    .contact-hero__copy h1 {
        font-size: clamp(2.15rem, 10vw, 3.2rem);
    }

    .projects-hero__copy h1 {
        font-size: clamp(2.15rem, 10vw, 3.2rem);
    }

    .contact-hero__actions,
    .contact-hero__actions .btn,
    .contact-form-panel__actions,
    .contact-form-panel__actions .btn {
        width: 100%;
    }

    .projects-hero__actions,
    .projects-hero__actions .btn,
    .projects-cta__actions,
    .projects-cta__actions .btn {
        width: 100%;
    }

    .projects-hero__visual,
    .projects-snapshot__grid,
    .projects-grid,
    .projects-process__steps,
    .projects-preview-grid {
        grid-template-columns: 1fr;
    }

    .projects-hero__image--main,
    .projects-hero__image--small {
        grid-row: span 1;
        min-height: 280px;
    }

    .projects-card__heading {
        flex-direction: column;
    }

    .about-profile-image--large,
    .about-profile-image {
        min-height: 280px;
    }

    .about-profile-image-row,
    .about-scope-list {
        grid-template-columns: 1fr;
    }

    .contact-methods__grid {
        grid-template-columns: 1fr;
    }

    .contact-project-links a {
        width: 100%;
        text-align: center;
    }

    .contact-form-panel,
    .contact-side-panel {
        border-radius: 22px;
    }

    .footer-cta {
        padding: 1rem;
        border-width: 1px;
    }

    .footer-cta h2 {
        font-size: clamp(1.25rem, 5vw, 1.65rem);
    }

    .footer-grid {
        gap: 0.55rem;
    }

    .dairy-stats,
    .dairy-routine__grid,
    .dairy-process__grid,
    .dairy-quality__checks,
    .dairy-gallery,
    .fish-stats,
    .fish-routine__grid,
    .fish-process__grid,
    .fish-quality__checks,
    .fish-gallery,
    .mushroom-stats,
    .mushroom-routine__grid,
    .mushroom-process__grid,
    .mushroom-quality__checks,
    .mushroom-gallery,
    .fruit-stats,
    .fruit-routine__grid,
    .fruit-process__grid,
    .fruit-quality__checks,
    .fruit-gallery,
    .nursery-stats,
    .nursery-routine__grid,
    .nursery-process__grid,
    .nursery-quality__checks,
    .nursery-gallery {
        grid-template-columns: 1fr;
    }

    .dairy-hero,
    .fish-hero,
    .mushroom-hero,
    .fruit-hero,
    .nursery-hero {
        min-height: 620px;
    }

    .dairy-hero__actions .btn,
    .fish-hero__actions .btn,
    .mushroom-hero__actions .btn,
    .fruit-hero__actions .btn,
    .nursery-hero__actions .btn {
        width: 100%;
    }

    .dairy-cta__actions,
    .dairy-cta__actions .btn,
    .fish-cta__actions,
    .fish-cta__actions .btn,
    .mushroom-cta__actions,
    .mushroom-cta__actions .btn,
    .fruit-cta__actions,
    .fruit-cta__actions .btn,
    .nursery-cta__actions,
    .nursery-cta__actions .btn {
        width: 100%;
    }

    .dairy-banner img,
    .dairy-gallery__item--wide img,
    .fish-banner img,
    .fish-gallery__item--wide img,
    .mushroom-banner img,
    .mushroom-gallery__item--wide img,
    .fruit-banner img,
    .fruit-gallery__item--wide img,
    .nursery-banner img,
    .nursery-gallery__item--wide img {
        aspect-ratio: 4 / 3;
    }

    .footer-grid > div {
        padding: 0.95rem;
    }

    .footer-stats {
        gap: 0.5rem;
    }

    .footer-stat {
        padding: 0.8rem;
    }

    .footer-bottom {
        margin-top: 1.25rem;
        gap: 0.65rem;
        text-align: center;
    }

    .brand--footer {
        gap: 0.6rem;
    }

    .brand__mark {
        width: 2.6rem;
        height: 2.6rem;
    }

    .nav-item--cta > .nav-link {
        width: 100%;
    }

    .nav-link {
        border-radius: 16px;
    }

    .mobile-nav__close {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }

    .mobile-nav__link {
        padding: 0.2rem 0;
    }
}

@media (max-width: 760px) {
    .dairy-feature,
    .dairy-quality__grid,
    .dairy-layout,
    .fish-feature,
    .fish-quality__grid,
    .fish-layout,
    .mushroom-feature,
    .mushroom-quality__grid,
    .mushroom-layout,
    .fruit-feature,
    .fruit-quality__grid,
    .fruit-layout,
    .nursery-feature,
    .nursery-quality__grid,
    .nursery-layout,
    .agro-feature,
    .agro-quality__grid,
    .agro-layout,
    .vermi-feature,
    .vermi-quality__grid,
    .vermi-layout {
        grid-template-columns: 1fr;
    }

    .dairy-stats,
    .dairy-routine__grid,
    .dairy-process__grid,
    .dairy-quality__checks,
    .dairy-gallery,
    .dairy-layout__list,
    .fish-stats,
    .fish-routine__grid,
    .fish-process__grid,
    .fish-quality__checks,
    .fish-gallery,
    .fish-layout__list,
    .mushroom-stats,
    .mushroom-routine__grid,
    .mushroom-process__grid,
    .mushroom-quality__checks,
    .mushroom-gallery,
    .mushroom-layout__list,
    .fruit-stats,
    .fruit-routine__grid,
    .fruit-process__grid,
    .fruit-quality__checks,
    .fruit-gallery,
    .fruit-layout__list,
    .nursery-stats,
    .nursery-routine__grid,
    .nursery-process__grid,
    .nursery-quality__checks,
    .nursery-gallery,
    .nursery-layout__list,
    .agro-stats,
    .agro-routine__grid,
    .agro-process__grid,
    .agro-quality__checks,
    .agro-gallery,
    .agro-layout__list,
    .vermi-stats,
    .vermi-routine__grid,
    .vermi-process__grid,
    .vermi-quality__checks,
    .vermi-gallery,
    .vermi-layout__list {
        grid-template-columns: 1fr;
    }

    .dairy-gallery__item--wide,
    .fish-gallery__item--wide,
    .mushroom-gallery__item--wide,
    .fruit-gallery__item--wide,
    .nursery-gallery__item--wide,
    .agro-gallery__item--wide,
    .vermi-gallery__item--wide {
        grid-column: span 1;
    }

    .dairy-hero,
    .fish-hero,
    .mushroom-hero,
    .fruit-hero,
    .nursery-hero,
    .agro-hero,
    .vermi-hero {
        min-height: 560px;
        align-items: end;
    }

    .dairy-hero__content,
    .fish-hero__content,
    .mushroom-hero__content,
    .fruit-hero__content,
    .nursery-hero__content,
    .agro-hero__content,
    .vermi-hero__content {
        width: 100%;
        padding: 3.25rem 0 2.25rem;
    }

    .dairy-hero__content h1,
    .fish-hero__content h1,
    .mushroom-hero__content h1,
    .fruit-hero__content h1,
    .nursery-hero__content h1,
    .agro-hero__content h1,
    .vermi-hero__content h1 {
        max-width: 100%;
        font-size: clamp(2rem, 9vw, 3.05rem);
        line-height: 1.05;
        letter-spacing: -0.045em;
    }

    .dairy-hero__content p,
    .fish-hero__content p,
    .mushroom-hero__content p,
    .fruit-hero__content p,
    .nursery-hero__content p,
    .agro-hero__content p,
    .vermi-hero__content p {
        font-size: 1rem;
        line-height: 1.72;
    }

    .dairy-hero__actions,
    .fish-hero__actions,
    .mushroom-hero__actions,
    .fruit-hero__actions,
    .nursery-hero__actions,
    .agro-hero__actions,
    .vermi-hero__actions,
    .dairy-cta__actions,
    .fish-cta__actions,
    .mushroom-cta__actions,
    .fruit-cta__actions,
    .nursery-cta__actions,
    .agro-cta__actions,
    .vermi-cta__actions {
        width: 100%;
    }

    .dairy-hero__actions .btn,
    .fish-hero__actions .btn,
    .mushroom-hero__actions .btn,
    .fruit-hero__actions .btn,
    .nursery-hero__actions .btn,
    .agro-hero__actions .btn,
    .vermi-hero__actions .btn,
    .dairy-cta__actions .btn,
    .fish-cta__actions .btn,
    .mushroom-cta__actions .btn,
    .fruit-cta__actions .btn,
    .nursery-cta__actions .btn,
    .agro-cta__actions .btn,
    .vermi-cta__actions .btn {
        width: 100%;
    }

    .dairy-cta__inner,
    .fish-cta__inner,
    .mushroom-cta__inner,
    .fruit-cta__inner,
    .nursery-cta__inner,
    .agro-cta__inner,
    .vermi-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(calc(100% - 1.1rem), var(--container));
    }

    .section {
        padding: 3.25rem 0;
    }

    .dairy-hero,
    .fish-hero,
    .mushroom-hero,
    .fruit-hero,
    .nursery-hero,
    .agro-hero,
    .vermi-hero {
        min-height: 610px;
    }

    .dairy-feature__copy h2,
    .dairy-quality__copy h2,
    .dairy-layout h2,
    .fish-feature__copy h2,
    .fish-quality__copy h2,
    .fish-layout h2,
    .mushroom-feature__copy h2,
    .mushroom-quality__copy h2,
    .mushroom-layout h2,
    .fruit-feature__copy h2,
    .fruit-quality__copy h2,
    .fruit-layout h2,
    .nursery-feature__copy h2,
    .nursery-quality__copy h2,
    .nursery-layout h2,
    .agro-feature__copy h2,
    .agro-quality__copy h2,
    .agro-layout h2,
    .vermi-feature__copy h2,
    .vermi-quality__copy h2,
    .vermi-layout h2 {
        font-size: clamp(1.65rem, 8vw, 2.35rem);
        line-height: 1.08;
        letter-spacing: -0.035em;
    }

    .dairy-stats article,
    .dairy-routine__grid article,
    .dairy-process__grid article,
    .dairy-quality__checks article,
    .dairy-layout__list article,
    .fish-stats article,
    .fish-routine__grid article,
    .fish-process__grid article,
    .fish-quality__checks article,
    .fish-layout__list article,
    .mushroom-stats article,
    .mushroom-routine__grid article,
    .mushroom-process__grid article,
    .mushroom-quality__checks article,
    .mushroom-layout__list article,
    .fruit-stats article,
    .fruit-routine__grid article,
    .fruit-process__grid article,
    .fruit-quality__checks article,
    .fruit-layout__list article,
    .nursery-stats article,
    .nursery-routine__grid article,
    .nursery-process__grid article,
    .nursery-quality__checks article,
    .nursery-layout__list article,
    .agro-stats article,
    .agro-routine__grid article,
    .agro-process__grid article,
    .agro-quality__checks article,
    .agro-layout__list article,
    .vermi-stats article,
    .vermi-routine__grid article,
    .vermi-process__grid article,
    .vermi-quality__checks article,
    .vermi-layout__list article {
        padding: 1rem;
        border-radius: 18px;
    }

    .dairy-feature__media,
    .dairy-banner,
    .dairy-gallery__item,
    .fish-feature__media,
    .fish-banner,
    .fish-gallery__item,
    .mushroom-feature__media,
    .mushroom-banner,
    .mushroom-gallery__item,
    .fruit-feature__media,
    .fruit-banner,
    .fruit-gallery__item,
    .nursery-feature__media,
    .nursery-banner,
    .nursery-gallery__item,
    .agro-feature__media,
    .agro-banner,
    .agro-gallery__item,
    .vermi-feature__media,
    .vermi-banner,
    .vermi-gallery__item {
        border-radius: 20px;
    }

    .dairy-banner figcaption,
    .fish-banner figcaption,
    .mushroom-banner figcaption,
    .fruit-banner figcaption,
    .nursery-banner figcaption,
    .agro-banner figcaption,
    .vermi-banner figcaption {
        flex-direction: column;
        align-items: flex-start;
    }

    .dairy-banner img,
    .dairy-gallery__item--wide img,
    .fish-banner img,
    .fish-gallery__item--wide img,
    .mushroom-banner img,
    .mushroom-gallery__item--wide img,
    .fruit-banner img,
    .fruit-gallery__item--wide img,
    .nursery-banner img,
    .nursery-gallery__item--wide img,
    .agro-banner img,
    .agro-gallery__item--wide img,
    .vermi-banner img,
    .vermi-gallery__item--wide img {
        aspect-ratio: 4 / 3;
    }

    .dairy-cta__inner,
    .fish-cta__inner,
    .mushroom-cta__inner,
    .fruit-cta__inner,
    .nursery-cta__inner,
    .agro-cta__inner,
    .vermi-cta__inner {
        padding: 1rem;
        border-radius: 22px;
    }
}


