* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.site {
    margin: 0;
    min-height: 100vh;
    background: var(--paper);
}

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

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.35rem 1.5rem;
    padding: 0.5rem clamp(1.25rem, 4vw, 3rem);
    background: var(--accent-deep);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.85rem;
}

.topbar-tagline {
    margin: 0;
    font-weight: 600;
}

.topbar-contact {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem 1.5rem;
}

.topbar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.topbar-contact a:hover {
    color: #fff;
    text-decoration: underline;
}

.topbar-contact svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    flex-shrink: 0;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem clamp(1.25rem, 4vw, 3rem);
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 2px 14px rgba(20, 32, 28, 0.06);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--gold);
}

.site-logo img {
    width: 220px;
    height: 54px;
    object-fit: contain;
}

.site-logo-text {
    display: grid;
    line-height: 1.1;
}

.site-logo-text strong {
    font-family: "Fraunces", serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.site-logo-text small {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
}

.site-links {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.site-links a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.95rem;
}

.site-links a.is-active,
.site-links a:hover {
    color: var(--accent);
}

.site-links a.is-active {
    text-decoration: underline;
    text-underline-offset: 0.5em;
    text-decoration-thickness: 2px;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
}

.nav-dropdown-toggle i {
    font-size: 0.65rem;
    transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle i,
.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-toggle.is-active,
.nav-dropdown-toggle:hover,
.nav-dropdown.is-active > .nav-dropdown-toggle {
    color: var(--accent);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.85rem);
    left: 50%;
    z-index: 30;
    min-width: 12.5rem;
    padding: 0.5rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 14px 32px rgb(20 32 28 / 12%);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 0.35rem);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -0.85rem;
    left: 0;
    right: 0;
    height: 0.85rem;
}

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

/* Click-open is mobile-only; ignore leftover is-open on desktop. */
@media (min-width: 861px) {
    .nav-dropdown.is-open:not(:hover):not(:focus-within) .nav-dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, 0.35rem);
    }

    .nav-dropdown.is-open:not(:hover):not(:focus-within) .nav-dropdown-toggle i {
        transform: none;
    }
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.7rem 0.85rem;
    border-radius: 8px;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.is-active {
    background: var(--light);
    color: var(--accent);
    text-decoration: none;
}

.nav-cta {
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    background: var(--accent);
    color: #fff !important;
    text-decoration: none !important;
}

.nav-cta:hover {
    background: var(--accent-deep);
    color: #fff;
}

.site-links a.nav-cta.is-active,
.site-links a.nav-cta:hover {
    color: #fff;
    text-decoration: none;
}

.nav-toggle {
    display: none;
    position: relative;
    z-index: 40;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle:focus,
.nav-toggle:focus-visible {
    outline: none;
    box-shadow: none;
}

.nav-toggle span {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 22px;
    height: 2px;
    margin: 0;
    background: var(--ink);
    transition: transform 0.25s ease;
}

.nav-toggle span:first-child {
    transform: translate(-50%, calc(-50% - 5px));
}

.nav-toggle span:last-child {
    transform: translate(-50%, calc(-50% + 5px));
}

.nav-toggle.is-open span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-backdrop {
    display: none;
}

.hero {
    /* min-height: calc(100vh - 130px); */
    display: grid;
    align-items: center;
    padding: 4rem clamp(1.25rem, 4vw, 3rem) 3.5rem;
    color: var(--ink);
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg,
            var(--white) 0%,
            var(--white) 20%,
            rgb(255 255 255 / 70%) 45%,
            rgb(255 255 255 / 0%) 70%);
}

.hero-content {
    width: 100%;
    max-width: min(34rem, 50%);
    justify-self: start;
    animation: rise 0.7s ease 0.08s both;
}

.hero h1 {
    margin: 0;
    font-family: "Fraunces", serif;
    font-size: clamp(2.6rem, 7vw, 4.6rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.hero h1 {
    color: var(--accent-deep);
}

.hero p {
    margin: 1rem 0 0;
    max-width: 34rem;
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    line-height: 1.5;
    color: var(--muted);
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.6rem;
}

.section {
    padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}

.section-title {
    color: var(--primary);
}

/* —— Legacy section —— */
.legacy {
    background: var(--white);
    text-align: center;
}

.legacy-lede {
    max-width: 54rem;
    margin: 1rem auto 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 1.05rem;
}

.legacy-stats {
    list-style: none;
    margin: clamp(2rem, 5vw, 3.5rem) 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.legacy-stats li {
    position: relative;
    overflow: hidden;
    text-align: left;
    padding: 1.5rem 1.6rem 1.6rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, #46592a 100%);
    border: 1px solid rgb(255 255 255 / 12%);
    box-shadow: 0 12px 28px rgb(44 59 22 / 18%);
}

.legacy-stats li::before {
    content: "";
    position: absolute;
    right: -35px;
    bottom: -24px;
    width: 135px;
    height: 135px;
    opacity: 0.2;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(344deg);
    pointer-events: none;
}

.legacy-stats li:nth-child(1)::before {
    background-image: url("../img/icons/custom-packaging.svg");
}

.legacy-stats li:nth-child(2)::before {
    background-image: url("../img/icons/rice-varieties.svg");
}

.legacy-stats li:nth-child(3)::before {
    background-image: url("../img/icons/global-market-ready.svg");
}

.legacy-stats li:nth-child(4)::before {
    background-image: url("../img/icons/quality-checked.svg");
}

.legacy-stats strong {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.legacy-stats span {
    display: block;
    margin-top: 0.6rem;
    color: rgb(255 255 255 / 85%);
    font-size: 0.95rem;
    font-weight: 600;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* —— Dark left/right section —— */
.split-dark {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cellipse cx='14' cy='12' rx='2.2' ry='6' transform='rotate(28 14 12)'/%3E%3Cellipse cx='48' cy='24' rx='2.2' ry='6' transform='rotate(-20 48 24)'/%3E%3Cellipse cx='26' cy='44' rx='2.2' ry='6' transform='rotate(48 26 44)'/%3E%3Cellipse cx='60' cy='58' rx='2.2' ry='6' transform='rotate(12 60 58)'/%3E%3Cellipse cx='8' cy='62' rx='2.2' ry='6' transform='rotate(-35 8 62)'/%3E%3C/g%3E%3C/svg%3E") repeat,
        linear-gradient(135deg, var(--accent-deep) 0%, var(--primary) 60%, #46592a 100%);
    color: rgb(255 255 255 / 92%);
}

.split-dark-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.split-dark-grid--media-left {
    grid-template-columns: 0.95fr 1.05fr;
}

.split-dark h2 {
    margin: 0;
    color: var(--white);
}

.split-dark p {
    margin: 1rem 0 0;
    line-height: 1.65;
    color: rgb(255 255 255 / 82%);
}

.split-dark-points {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.split-dark-points--cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1.5rem;
}

.split-dark-points li {
    position: relative;
    padding-left: 1.7rem;
}

.split-dark-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.18rem;
    width: 1.05rem;
    height: 1.05rem;
    border-radius: 50%;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232c3b16' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-10'/%3E%3C/svg%3E") center / 60% no-repeat,
        var(--secondary-light);
}

.split-dark .cta-row {
    margin-top: 1.8rem;
}

.split-dark-media {
    border-radius: 16px;
    overflow: hidden;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .5));
}

.split-dark-media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.split-dark--light {
    background: var(--light);
    color: var(--ink);
}

.split-dark--light h2 {
    color: var(--accent-deep);
}

.split-dark--light p {
    color: var(--muted);
}

.split-dark--light .split-dark-points li::before {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f4e0b2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-10'/%3E%3C/svg%3E") center / 60% no-repeat,
        var(--primary);
}


/* —— Offerings section —— */
.offerings {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='%232c3b16' fill-opacity='0.035'%3E%3Cellipse cx='14' cy='12' rx='2.2' ry='6' transform='rotate(28 14 12)'/%3E%3Cellipse cx='48' cy='24' rx='2.2' ry='6' transform='rotate(-20 48 24)'/%3E%3Cellipse cx='26' cy='44' rx='2.2' ry='6' transform='rotate(48 26 44)'/%3E%3Cellipse cx='60' cy='58' rx='2.2' ry='6' transform='rotate(12 60 58)'/%3E%3Cellipse cx='8' cy='62' rx='2.2' ry='6' transform='rotate(-35 8 62)'/%3E%3C/g%3E%3C/svg%3E") repeat,
        var(--light);
}

.offerings-layout {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: clamp(1.5rem, 5vw, 1.5rem);
    position: relative;
}

.offerings-intro {
    position: sticky;
    top: 120px;
    align-self: start;
}

.offerings-intro p {
    margin: .5rem 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.offerings-intro .cta-row {
    margin-top: .8rem;
}

.offerings-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.offerings-grid li {
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.offerings-grid li img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.offerings-grid li:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 16px rgb(44 59 22 / 6%);
}

.offerings-grid li:hover img {
    transform: scale(1.04);
}

.offerings-grid-img {
    overflow: hidden;
    border-radius: 8px;
}

.offerings-grid h3 {
    margin: .5rem 0;
    /* font-size: 1.25rem; */
    font-weight: 600;
    color: var(--accent-green);
}

.offerings-grid p {
    margin: 0 0 0.5rem 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.97rem;
}

/* —— Partners slider —— */
.partners {
    background: var(--lightpart);
    text-align: center;
    overflow: hidden;
}

.partners--compact {
    padding-top: clamp(1.5rem, 4vw, 2.5rem);
    padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.partners-head {
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.partners-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.partners-track {
    display: flex;
    width: max-content;
    animation: partners-scroll 30s linear infinite;
    will-change: transform;
}

.partners-item {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    min-width: 190px;
    height: 110px;
    margin-right: 1.25rem;
    padding: 0 1.75rem;
}

.partners-item span {
    font-weight: 700;
    color: var(--accent-deep);
    white-space: nowrap;
}

.partners-item img {
    max-height: max-content;
    max-width: 100px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.75;
    transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.partners-item:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.04);
}

@keyframes partners-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* —— Catalogue download —— */
.catalogue {
    background: var(--white);
}

.catalogue-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(200px, 0.95fr) 1.5fr;
    align-items: center;
    gap: clamp(1.75rem, 4vw, 3.25rem);
    padding: clamp(2rem, 5vw, 3.25rem);
    border-radius: 24px;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cellipse cx='14' cy='12' rx='2.2' ry='6' transform='rotate(28 14 12)'/%3E%3Cellipse cx='48' cy='24' rx='2.2' ry='6' transform='rotate(-20 48 24)'/%3E%3Cellipse cx='26' cy='44' rx='2.2' ry='6' transform='rotate(48 26 44)'/%3E%3Cellipse cx='60' cy='58' rx='2.2' ry='6' transform='rotate(12 60 58)'/%3E%3Cellipse cx='8' cy='62' rx='2.2' ry='6' transform='rotate(-35 8 62)'/%3E%3C/g%3E%3C/svg%3E") repeat,
        linear-gradient(135deg, var(--accent-deep) 0%, var(--primary) 52%, #46592a 100%);
    color: rgb(255 255 255 / 92%);
}

.catalogue-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%,
            rgb(244 224 178 / 18%) 0 90px,
            rgb(244 224 178 / 10%) 90px 180px,
            rgb(255 255 255 / 5%) 180px 280px,
            transparent 280px);
    pointer-events: none;
}

/* .catalogue-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 4px;
    border-radius: 0 6px 6px 0;
    background: linear-gradient(180deg, var(--secondary-light), var(--secondary));
    pointer-events: none;
} */

.catalogue-media {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 280px;
    perspective: 900px;
}

.catalogue-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(244 224 178 / 28%) 0%, transparent 70%);
    filter: blur(4px);
    opacity: 0.7;
}

.catalogue-book {
    position: relative;
    width: min(100%, 230px);
    aspect-ratio: 3 / 4;
    border-radius: 8px 8px 8px 8px;
    overflow: hidden;
    background: var(--accent-deep);
}

.catalogue-book::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 12px;
    z-index: 1;
}

.catalogue-book::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(255 255 255 / 12%) 0%, transparent 42%);
    pointer-events: none;
    z-index: 1;
}

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

.catalogue-badge {
    position: absolute;
    top: 14px;
    right: 12px;
    z-index: 2;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.catalogue-content {
    position: relative;
    z-index: 1;
}

.catalogue-content h2 {
    margin: 0 0 0.7rem;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.4vw, 2.35rem);
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.catalogue-content>p {
    margin: 0 0 1.35rem;
    color: rgb(255 255 255 / 82%);
    line-height: 1.65;
    max-width: 36rem;
}

.catalogue-form {
    display: grid;
    gap: 0.85rem;
}

.catalogue-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.catalogue-field {
    position: relative;
}

.catalogue-field i {
    position: absolute;
    left: 0.95rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary);
    font-size: 0.85rem;
    pointer-events: none;
}

.catalogue-form input {
    width: 100%;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 0.85rem 1rem 0.85rem 2.55rem;
    font: inherit;
    background: var(--white);
    color: var(--ink);
    transition: border-color 0.2s ease;
}

.catalogue-form input::placeholder {
    color: rgb(20 32 28 / 45%);
}

.catalogue-form input:focus {
    outline: none;
    border-color: var(--secondary-light);
}

.catalogue-submit {
    width: 100%;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 0.15rem;
}

.catalogue-submit i {
    font-size: 0.95rem;
}

.catalogue-note {
    margin: 0.15rem 0 0 !important;
    font-size: 0.82rem !important;
    color: rgb(255 255 255 / 60%);
    text-align: center;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 760px) {
    .catalogue-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2.5rem;
    }

    .catalogue-card::after {
        display: none;
    }

    .catalogue-content>p {
        margin-left: auto;
        margin-right: auto;
    }

    .catalogue-media {
        min-height: 220px;
    }

    .catalogue-book {
        width: min(100%, 170px);
        animation: none;
        transform: rotateY(-8deg) rotateZ(-2deg);
    }

    .catalogue-form-row {
        grid-template-columns: 1fr;
    }

    .catalogue-field {
        text-align: left;
    }
}

/* —— CTA banner —— */
.cta-banner {
    background: #fff;
}

.cta-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, var(--accent-deep) 0%, var(--primary) 55%, #46592a 100%);
    color: rgb(255 255 255 / 92%);
}

.cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 50%,
            rgb(255 255 255 / 16%) 0 80px,
            rgb(255 255 255 / 11%) 80px 150px,
            rgb(255 255 255 / 7%) 150px 220px,
            rgb(255 255 255 / 4%) 220px 290px,
            transparent 290px);
    pointer-events: none;
}

.cta-card-content {
    position: relative;
    max-width: 520px;
}

.cta-card h2 {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    color: var(--white);
}

.cta-card p {
    margin: 0 0 1.5rem;
    line-height: 1.7;
    color: rgb(255 255 255 / 80%);
}

.cta-btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgb(255 255 255 / 45%);
}

.cta-btn-ghost:hover {
    background: rgb(255 255 255 / 12%);
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .cta-card-content {
        max-width: 100%;
        text-align: center;
    }

    .cta-card .cta-row {
        justify-content: center;
    }
        .offerings-grid {
        grid-template-columns: 1fr !important;
    }
    .pd-gallery{
        flex-direction: column !important;
    }
    .pd-thumbs-wrap, .pd-thumbs{
        flex-direction: row !important;
    }
}

/* —— Products page: Non-Basmati alternate background —— */
.products-non-basmati {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='%232c3b16' fill-opacity='0.035'%3E%3Cellipse cx='14' cy='12' rx='2.2' ry='6' transform='rotate(28 14 12)'/%3E%3Cellipse cx='48' cy='24' rx='2.2' ry='6' transform='rotate(-20 48 24)'/%3E%3Cellipse cx='26' cy='44' rx='2.2' ry='6' transform='rotate(48 26 44)'/%3E%3Cellipse cx='60' cy='58' rx='2.2' ry='6' transform='rotate(12 60 58)'/%3E%3Cellipse cx='8' cy='62' rx='2.2' ry='6' transform='rotate(-35 8 62)'/%3E%3C/g%3E%3C/svg%3E") repeat,
        var(--white);
}

/* —— Our Process steps —— */
.our-process {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cellipse cx='14' cy='12' rx='2.2' ry='6' transform='rotate(28 14 12)'/%3E%3Cellipse cx='48' cy='24' rx='2.2' ry='6' transform='rotate(-20 48 24)'/%3E%3Cellipse cx='26' cy='44' rx='2.2' ry='6' transform='rotate(48 26 44)'/%3E%3Cellipse cx='60' cy='58' rx='2.2' ry='6' transform='rotate(12 60 58)'/%3E%3Cellipse cx='8' cy='62' rx='2.2' ry='6' transform='rotate(-35 8 62)'/%3E%3C/g%3E%3C/svg%3E") repeat,
        linear-gradient(160deg, var(--accent-deep) 0%, var(--primary) 55%, #3a4d1f 100%);
    color: rgb(255 255 255 / 90%);
}

.our-process .section-title {
    margin: 0;
    color: var(--white);
}

.our-process-lede {
    max-width: 40rem;
    margin: 1rem 0 0;
    color: rgb(255 255 255 / 72%);
    line-height: 1.65;
}

.process-steps {
    list-style: none;
    margin: clamp(2rem, 5vw, 3rem) 0 0;
    padding: 0;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr clamp(7rem, 14vw, 9.5rem);
    gap: clamp(1rem, 3vw, 2rem);
    align-items: center;
    padding: clamp(1.25rem, 3vw, 1.75rem) 0;
    border-bottom: 1px solid var(--secondary-light);
}

.process-step:first-child {
    border-top: 1px solid var(--secondary-light);
}

.process-step-num {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1;
    color: var(--secondary-light);
    letter-spacing: -0.02em;
    min-width: 3.2ch;
}

.process-step-body h3 {
    margin: 0 0 0.4rem;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 600;
    color: var(--white);
}

.process-step-body p {
    margin: 0;
    color: rgb(255 255 255 / 68%);
    line-height: 1.6;
    font-size: 0.97rem;
    max-width: 38rem;
}

.process-step-media {
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.06);
}

.process-step-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.process-step:hover .process-step-media img {
    transform: scale(1.04);
}

@media (max-width: 700px) {
    .process-step {
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "num media"
            "body body";
        gap: 0.85rem 1rem;
    }

    .process-step-num {
        grid-area: num;
        align-self: center;
    }

    .process-step-media {
        grid-area: media;
        width: clamp(4.5rem, 22vw, 6rem);
        justify-self: end;
    }

    .process-step-body {
        grid-area: body;
    }
}

/* —— FAQ —— */
.faq {
    text-align: center;
}

.faq-list {
    max-width: 1024px;
    margin: clamp(1.5rem, 4vw, 2.5rem) auto 0;
    display: grid;
    gap: 0.85rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.faq-item:hover {
    border-color: rgb(44 59 22 / 28%);
}

.faq-item[open] {
    border-color: var(--primary);
}

.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    font-size: 1.15rem;
    color: var(--ink);
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--primary);
}

.faq-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    transition: transform 0.25s ease;
}

.faq-item[open] .faq-icon {
    transform: scale(1.06);
}

.faq-question {
    flex: 1;
    text-align: left;
}

.faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--light);
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.faq-item[open] summary::after {
    content: "\2212";
    background: var(--primary);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-item p {
    margin: 0;
    padding: 0 1.25rem 1.15rem;
    color: var(--muted);
    line-height: 1.7;
    text-align: left;
}

.faq-item[open] p {
    animation: faq-reveal 0.3s ease both;
}

.faq-more {
    margin-top: clamp(1.5rem, 3vw, 2rem);
    display: flex;
    justify-content: center;
}

@keyframes faq-reveal {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq-item,
    .faq-item summary,
    .faq-item summary::after,
    .faq-icon {
        transition: none;
    }

    .faq-item[open] p,
    .faq-item[open] .faq-icon,
    .faq-item[open] summary::after {
        animation: none;
        transform: none;
    }
}

/* —— Testimonials —— */
.testimonials {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='%23ffffff' fill-opacity='0.045'%3E%3Cellipse cx='14' cy='12' rx='2.2' ry='6' transform='rotate(28 14 12)'/%3E%3Cellipse cx='48' cy='24' rx='2.2' ry='6' transform='rotate(-20 48 24)'/%3E%3Cellipse cx='26' cy='44' rx='2.2' ry='6' transform='rotate(48 26 44)'/%3E%3Cellipse cx='60' cy='58' rx='2.2' ry='6' transform='rotate(12 60 58)'/%3E%3Cellipse cx='8' cy='62' rx='2.2' ry='6' transform='rotate(-35 8 62)'/%3E%3C/g%3E%3C/svg%3E") repeat,
        linear-gradient(135deg, var(--accent-deep) 0%, var(--primary) 60%, #46592a 100%);
    color: rgb(255 255 255 / 92%);
    text-align: center;
}

.testimonials-title {
    color: var(--white);
}

.testimonials-grid {
    list-style: none;
    max-width: 880px;
    margin: clamp(2rem, 5vw, 3rem) auto 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    /* padding: 1.75rem; */
    color: var(--ink);
}

.testimonial-card-content {
    padding: 1rem 2rem 1rem 2rem;
}

.testimonial-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: .5rem;
}

.testimonial-card-top>i {
    font-size: 1.6rem;
    color: var(--secondary-light);
}

.testimonial-card blockquote {
    margin: 0;
}

.testimonial-card blockquote p {
    margin: 0;
    line-height: 1.7;
    color: var(--muted);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin: 0 0;
    padding: 1rem 2rem;
    background: var(--secondary);
    border-radius: 0 0 16px 16px;
    font-size: 0.95rem;
    text-align: left;
}

.testimonial-author p {
    margin: 0;
    flex: 1;
    line-height: 1;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.testimonial-author span {
    color: var(--secondary-light);
    font-weight: 600;
    font-size: 0.85rem;
}

.testimonial-avatar {
    display: none;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-avatar span {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

@media (max-width: 700px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* —— Why choose us section —— */
.why-choose {
    background: var(--white);
    text-align: center;
}

.why-choose-grid {
    list-style: none;
    margin: clamp(2rem, 5vw, 3rem) 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    text-align: left;
}

.why-choose-grid li {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.25rem 1.35rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--light);
    transition: transform 0.2s ease;
}

.why-choose-grid li:hover {
    transform: translateY(-1px);
}

.why-choose-grid img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
}

.why-choose-grid h3 {
    margin: 0;
    font-weight: 600;
    color: var(--accent-green);
}

.why-choose-grid p {
    margin: 0.45rem 0 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.97rem;
}

/* —— Our Presence —— */
.presence-markets {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='%237d471a' fill-opacity='0.08'%3E%3Cellipse cx='14' cy='12' rx='2.2' ry='6' transform='rotate(28 14 12)'/%3E%3Cellipse cx='48' cy='24' rx='2.2' ry='6' transform='rotate(-20 48 24)'/%3E%3Cellipse cx='26' cy='44' rx='2.2' ry='6' transform='rotate(48 26 44)'/%3E%3Cellipse cx='60' cy='58' rx='2.2' ry='6' transform='rotate(12 60 58)'/%3E%3Cellipse cx='8' cy='62' rx='2.2' ry='6' transform='rotate(-35 8 62)'/%3E%3C/g%3E%3C/svg%3E") repeat,
        var(--light);
    text-align: center;
}

.presence-lede {
    max-width: 48rem;
    margin: 1rem auto 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 1.05rem;
}

.presence-cities {
    list-style: none;
    margin: clamp(2rem, 5vw, 3rem) auto 0;
    padding: 0;
    max-width: 62rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    text-align: left;
}

.presence-cities li {
    min-width: 0;
}

.presence-cities a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid rgb(125 71 26 / 14%);
    color: var(--ink);
    text-decoration: none;
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.3;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.presence-cities a:hover {
    transform: translateY(-2px);
    background: var(--white);
    border-color: rgb(125 71 26 / 32%);
    color: var(--ink);
}

.presence-cities i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--secondary-light);
    color: var(--secondary);
    font-size: 0.85rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.presence-cities a:hover i {
    background: var(--secondary);
    color: var(--white);
}

.presence-cities span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.section h2 {
    margin: 0;
    /* font-family: "Fraunces", serif; */
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: -0.03em;
}

.section .lede {
    margin: 0.75rem 0 0;
    max-width: 38rem;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.55;
}

.page-hero {
    min-height: 50vh;
    display: grid;
    align-items: center;
    padding: 0 1.25rem;
    color: #fff;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.page-hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(10, 28, 24, 0.4) 0%, rgba(10, 28, 24, 0.82) 100%);
}

.page-hero-inner {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.page-hero h1 {
    margin: 0;
    font-family: "Fraunces", serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    letter-spacing: -0.03em;
    animation: rise 0.55s ease both;
}

.breadcrumb {
    margin-bottom: .5rem;
    animation: rise 0.45s ease both;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.92rem;
    font-weight: 600;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.78);
}

.breadcrumb-item:not(:last-child)::after {
    content: "/";
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

.breadcrumb-item a {
    color: var(--secondary-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover,
.breadcrumb-item a:focus-visible {
    color: #fff;
}

.breadcrumb-item[aria-current="page"] {
    color: #fff;
}

/* —— About intro —— */
.about-intro {
    background: var(--white);
}

.about-intro-title {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin: 0;
    color: var(--accent-deep);
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    line-height: 1.25;
}

.about-intro-body {
    margin-top: 1.75rem;
}

.about-intro-body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.about-intro-body p + p {
    margin-top: 1.15rem;
}

.about-intro-accent {
    color: var(--secondary);
    font-weight: 600;
}

/* —— Our team —— */
.our-team {
    background: var(--light);
    color: var(--ink);
}

.our-team-layout {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: clamp(2rem, 5vw, 3.5rem);
}

.our-team-intro .section-title {
    margin: 0;
    color: var(--accent-deep);
}

.our-team-intro p {
    margin: 1rem 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.our-team-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: clamp(2rem, 4vw, 2.75rem);
}

.team-card {
    display: grid;
    grid-template-columns: minmax(9.5rem, 11rem) 1fr;
    align-items: center;
    gap: clamp(1.25rem, 3vw, 1.75rem);
    background: transparent;
}

.team-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 50px 15px 50px 15px;
    border: 2px solid var(--secondary-light);
    box-shadow:
        0 0 0 4px var(--light),
        0 0 0 6px var(--secondary);
}

.team-photo-badge {
    position: absolute;
    left: 0.55rem;
    bottom: 0.55rem;
    width: 2.25rem;
    height: 2.25rem;
    display: grid;
    place-items: center;
    border-radius: 0.5rem;
    background: var(--accent-deep);
    color: var(--secondary-light);
    font-size: 0.9rem;
    box-shadow: 0 8px 16px rgb(20 32 28 / 16%);
}

.team-card-body {
    min-width: 0;
    text-align: left;
}

.team-card h3 {
    margin: 0;
    color: var(--accent-deep);
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.8vw, 1.85rem);
    line-height: 1.15;
}

.team-role {
    margin: 0.35rem 0 0 !important;
    color: var(--secondary);
    font-size: 0.78rem !important;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.team-card-body > p:not(.team-role) {
    margin: 0.85rem 0 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.98rem !important;
}

.team-more {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1rem;
    color: var(--secondary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

.team-more i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.team-more:hover,
.team-more:focus-visible {
    color: var(--accent-deep);
    gap: 0.75rem;
}

.team-more:hover i,
.team-more:focus-visible i {
    transform: translateX(2px);
}

/* —— Vision & mission —— */
.vision-mission {
    position: relative;
    overflow: hidden;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cellipse cx='14' cy='12' rx='2.2' ry='6' transform='rotate(28 14 12)'/%3E%3Cellipse cx='48' cy='24' rx='2.2' ry='6' transform='rotate(-20 48 24)'/%3E%3Cellipse cx='26' cy='44' rx='2.2' ry='6' transform='rotate(48 26 44)'/%3E%3Cellipse cx='60' cy='58' rx='2.2' ry='6' transform='rotate(12 60 58)'/%3E%3Cellipse cx='8' cy='62' rx='2.2' ry='6' transform='rotate(-35 8 62)'/%3E%3C/g%3E%3C/svg%3E") repeat,
        linear-gradient(135deg, var(--accent-deep) 0%, var(--primary) 60%, #46592a 100%);
    color: rgb(255 255 255 / 92%);
}

.vision-mission::before,
.vision-mission::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.vision-mission::before {
    width: 18rem;
    height: 18rem;
    top: -6rem;
    left: -4rem;
    background: rgb(255 255 255 / 5%);
}

.vision-mission::after {
    width: 14rem;
    height: 14rem;
    right: -3rem;
    bottom: -5rem;
    background: rgb(244 224 178 / 8%);
}

.vision-mission-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
}

.vm-card {
    position: relative;
}

.vm-visual {
    width: 5.5rem;
    height: 5.5rem;
    display: grid;
    place-items: center;
    margin-bottom: 1.35rem;
    border-radius: 1.25rem;
    background: rgb(255 255 255 / 12%);
    border: 1px solid rgb(255 255 255 / 18%);
    box-shadow: 0 10px 24px rgb(0 0 0 / 12%);
}

.vm-visual img {
    width: 3.25rem;
    height: 3.25rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.vm-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.vm-heading h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
}

.vm-tag {
    display: inline-grid;
    place-items: center;
    width: 1.85rem;
    height: 2.35rem;
    border-radius: 0.35rem 0.35rem 0.85rem 0.85rem;
    background: var(--secondary);
    color: var(--secondary-light);
    font-size: 0.8rem;
}

.vm-card > p {
    margin: 0;
    max-width: 34rem;
    color: rgb(255 255 255 / 78%);
    line-height: 1.7;
}

.vm-stat {
    margin: 1.5rem 0 0 !important;
    color: var(--secondary-light) !important;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.4rem) !important;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1 !important;
}

.vm-stat-label {
    margin: 0.45rem 0 0 !important;
    color: rgb(255 255 255 / 65%) !important;
    font-size: 0.9rem !important;
    font-weight: 600;
}

/* —— Parallax section —— */
.parallax-section {
    position: relative;
    display: grid;
    align-items: center;
    min-height: min(70vh, 36rem);
    padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem);
    color: var(--white);
    /* Keeps a fixed background visible only inside this section */
    clip-path: inset(0);
}

.parallax-media {
    position: fixed;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    background-image: url("../img/homepage/hero-image.png");
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.parallax-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(10, 28, 24, 0.55) 0%, rgba(10, 28, 24, 0.78) 100%);
    pointer-events: none;
}

.parallax-content {
    position: relative;
    z-index: 1;
    animation: rise 0.65s ease both;
}

.parallax-title {
    margin: 0;
    color: var(--white);
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    line-height: 1.25;
}

.parallax-body {
    margin-top: 1.35rem;
}

.parallax-body p {
    margin: 0;
    color: rgb(255 255 255 / 88%);
    line-height: 1.75;
}

.parallax-body p + p {
    margin-top: 1.15rem;
}

.parallax-body .about-intro-accent {
    color: var(--secondary-light);
}

@media (max-width: 860px) {
    .parallax-media {
        position: absolute;
    }
}

@media (prefers-reduced-motion: reduce) {
    .parallax-media {
        position: absolute;
    }

    .parallax-content {
        animation: none;
    }
}

/* —— Under development —— */
.under-dev {
    min-height: 55vh;
    display: grid;
    align-items: center;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='%232c3b16' fill-opacity='0.04'%3E%3Cellipse cx='14' cy='12' rx='2.2' ry='6' transform='rotate(28 14 12)'/%3E%3Cellipse cx='48' cy='24' rx='2.2' ry='6' transform='rotate(-20 48 24)'/%3E%3Cellipse cx='26' cy='44' rx='2.2' ry='6' transform='rotate(48 26 44)'/%3E%3Cellipse cx='60' cy='58' rx='2.2' ry='6' transform='rotate(12 60 58)'/%3E%3Cellipse cx='8' cy='62' rx='2.2' ry='6' transform='rotate(-35 8 62)'/%3E%3C/g%3E%3C/svg%3E") repeat,
        var(--light);
    text-align: center;
}

.under-dev-inner h1 {
    margin: 0 auto !important;
}

.under-dev-inner p {
    margin: 1rem auto 0;
    color: var(--muted);
    line-height: 1.7;
}

.under-dev-actions {
    justify-content: center;
    margin-top: 1.75rem;
}

/* —— Thank you —— */
.thank-you {
    min-height: 55vh;
    display: grid;
    align-items: center;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='%232c3b16' fill-opacity='0.04'%3E%3Cellipse cx='14' cy='12' rx='2.2' ry='6' transform='rotate(28 14 12)'/%3E%3Cellipse cx='48' cy='24' rx='2.2' ry='6' transform='rotate(-20 48 24)'/%3E%3Cellipse cx='26' cy='44' rx='2.2' ry='6' transform='rotate(48 26 44)'/%3E%3Cellipse cx='60' cy='58' rx='2.2' ry='6' transform='rotate(12 60 58)'/%3E%3Cellipse cx='8' cy='62' rx='2.2' ry='6' transform='rotate(-35 8 62)'/%3E%3C/g%3E%3C/svg%3E") repeat,
        var(--white);
    text-align: center;
}

.thank-you-inner {
    max-width: 46rem;
    margin-inline: auto;
}

.thank-you-inner h1 {
    margin: 0 auto !important;
}

.thank-you-inner p {
    margin: 1.15rem auto 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.thank-you-actions {
    justify-content: center;
    margin-top: 1.85rem;
}

.split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.prose p {
    margin: 0 0 1rem;
    color: var(--muted);
    line-height: 1.65;
    font-size: 1.05rem;
}

.service-list {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    border-top: 1px solid var(--line);
}

.service-list li {
    display: grid;
    gap: 0.35rem;
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--line);
    animation: rise 0.5s ease both;
}

.service-list h3 {
    margin: 0;
    font-family: "Fraunces", serif;
    font-size: 1.45rem;
    font-weight: 600;
}

.service-list p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.contact-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: clamp(1.25rem, 3vw, 2rem);
}

.contact-panel label {
    display: block;
    margin: 0.9rem 0 0.35rem;
    font-weight: 600;
}

.contact-panel input,
.contact-panel select,
.contact-panel textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.78rem 0.9rem;
    font: inherit;
    background: #fff;
    color: var(--ink);
}

.contact-panel textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-panel button {
    margin-top: 1.2rem;
    width: 100%;
    border: 0;
    border-radius: 10px;
    background: var(--accent);
    color: #fff;
    font: inherit;
    font-weight: 700;
    padding: 0.9rem 1rem;
    cursor: pointer;
}

.contact-panel button:hover {
    background: var(--accent-deep);
}

.alert {
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
}

.alert p {
    margin: 0.15rem 0;
}

.alert-success {
    background: var(--warn-bg);
    color: var(--accent-deep);
}

.alert-error {
    background: var(--danger-bg);
    color: var(--danger);
}

.site-footer {
    background: linear-gradient(135deg, var(--accent-deep) 0%, var(--primary) 60%, #46592a 100%);
    color: rgb(255 255 255 / 82%);
    padding: 3rem clamp(1.25rem, 4vw, 3rem) 0;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    padding-bottom: 2.5rem;
}

.footer-brand {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--white);
    height: 64px;
    width: 220px;
}

.footer-copy {
    margin: 0.55rem 0 0;
    max-width: 28rem;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links p,
.footer-contact p {
    margin: 0;
    font-weight: 600;
}

.footer-links a {
    text-decoration: none;
    font-weight: 600;
}

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

.footer-links a i {
    margin-right: 0.4rem;
    font-size: 0.8rem;
    transition: margin 0.2s ease;
}

.footer-links a:hover i {
    margin-right: 0.6rem;
}

.footer-contact {
    font-style: normal;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--secondary-light);
    text-decoration: none;
    font-weight: 600;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.65rem;
}

.footer-contact-item i {
    flex-shrink: 0;
    margin-top: 0.3rem;
    font-size: 0.85rem;
    color: var(--secondary-light);
}

.footer-social {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.1rem;
}

.footer-social a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgb(255 255 255 / 30%);
    background: rgb(255 255 255 / 10%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
}

.footer-social i {
    font-size: 1.05rem;
    color: var(--white);
    transition: color 0.2s ease;
}

.footer-social a:hover i {
    color: var(--primary);
}

.footer-meta {
    margin: 1.75rem 0 0;
    padding: .75rem 0;
    border-top: 1px solid rgb(255 255 255 / 16%);
    color: rgb(255 255 255 / 78%);
    font-size: 0.9rem;
    text-align: center;
}

.our-process{
    background: var(--primary) !important;
}

@media (max-width: 860px) {
    .page-hero{
        min-height: 35vh !important;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-meta {
        font-size: 0.8rem;
    }
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 860px) {
    .split {
        grid-template-columns: 1fr;
    }

    .split-dark-grid {
        grid-template-columns: 1fr;
    }

    .split-dark-content {
        order: 2;
    }

    .split-dark-media {
        order: 1;
    }

    .split-dark-media img {
        min-height: 240px;
    }

    .split-dark-points--cols-2 {
        grid-template-columns: 1fr;
    }

    .our-team-layout {
        grid-template-columns: 1fr;
    }

    .our-team-intro {
        text-align: center;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .presence-cities {
        grid-template-columns: 1fr 1fr;
        max-width: none;
        gap: 0.75rem;
    }

    .offerings-layout {
        grid-template-columns: 1fr;
    }

    .offerings-intro {
        position: static;
    }

    .offerings-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-toggle {
        display: inline-block;
    }

    .site-links {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 35;
        width: min(320px, 86vw);
        height: 100vh;
        height: 100dvh;
        margin: 0;
        padding: 5.5rem 1.5rem 2rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        background: var(--white);
        border: 0;
        border-radius: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    .site-links.is-open {
        transform: translateX(0);
    }

    .site-links a {
        padding: 0.85rem 0.35rem;
        border-bottom: 1px solid var(--line);
        font-size: 1.05rem;
    }

    .site-links a.is-active {
        text-decoration: none;
        color: var(--primary);
    }

    .nav-dropdown {
        border-bottom: 1px solid var(--line);
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 0.85rem 0.35rem;
        font-size: 1.05rem;
    }

    .nav-dropdown.is-active > .nav-dropdown-toggle {
        text-decoration: none;
        color: var(--primary);
    }

    .nav-dropdown-menu {
        position: static;
        left: auto;
        top: auto;
        min-width: 0;
        margin: 0 0 0.5rem;
        padding: 0 0 0.35rem 0.85rem;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        display: grid;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        display: none;
    }

    .nav-dropdown.is-open:hover .nav-dropdown-menu,
    .nav-dropdown.is-open:focus-within .nav-dropdown-menu {
        display: grid;
        transform: translate(0%, 0)
    }

    .nav-dropdown-menu a {
        padding: 0.7rem 0.35rem;
        border-radius: 0;
        border-bottom: 1px solid var(--line);
        white-space: normal;
    }

    .nav-dropdown-menu a:last-child {
        border-bottom: 0;
    }

    .nav-dropdown-menu a:hover,
    .nav-dropdown-menu a.is-active {
        background: transparent;
    }

    .site-links .nav-cta {
        margin-top: 1rem;
        text-align: center;
        border-bottom: 0;
    }

    .nav-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 30;
        background: rgb(20 32 28 / 45%);
        border: 0;
        padding: 0;
        cursor: pointer;
    }

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

    body.nav-open {
        overflow: hidden;
    }

    .topbar {
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        max-width: 34rem;
    }

    .hero {
        min-height: max-content !important;
    }

    .hero::before {
        background: linear-gradient(175deg,
                var(--white) 0%,
                var(--white) 20%,
                rgb(255 255 255 / 80%) 60%,
                rgb(255 255 255 / 40%) 85%)
    }

    .legacy-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .topbar {
        display: none;
    }
}

@media (max-width: 520px) {
    .legacy-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .presence-cities {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .team-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .team-photo {
        max-width: 12rem;
    }

    .team-card-body {
        text-align: center;
    }

    .team-more {
        justify-content: center;
    }

    .hero {
        min-height: calc(100vh - 500px) !important;
        align-items: flex-start;
    }
    .partners-item{
        min-width: 120px;
    height: 100px;
    }
    .partners-item img {
        max-width: 120px;
    }
}

/* —— Product detail —— */
.product-detail {
    padding-top: clamp(1.75rem, 4vw, 2.75rem);
    padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.pd-breadcrumb {
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.pd-breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted);
}

.pd-breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.pd-breadcrumb-item:not(:last-child)::after {
    content: "/";
    color: rgba(20, 32, 28, 0.35);
    font-weight: 500;
}

.pd-breadcrumb-item a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.pd-breadcrumb-item a:hover,
.pd-breadcrumb-item a:focus-visible {
    color: var(--primary);
}

.pd-breadcrumb-item[aria-current="page"] {
    color: var(--ink);
}

.pd-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
    gap: clamp(1.75rem, 4vw, 3.25rem);
    align-items: center;
}

.pd-gallery {
    display: flex;
    gap: 1.1rem;
    min-width: 0;
}

.pd-main-media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    aspect-ratio: 5 / 4;
}

.pd-main-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.25s ease;
}

.pd-thumbs-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
}

.pd-thumbs-nav {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pd-thumbs-nav:hover,
.pd-thumbs-nav:focus-visible {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.pd-thumbs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 0.2rem 0.1rem;
    min-width: 0;
}

.pd-thumbs::-webkit-scrollbar {
    display: none;
}

.pd-thumb {
    flex: 0 0 5rem;
    width: 5rem;
    height: 5rem;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.pd-thumb.is-active {
    border-color: var(--secondary);
    box-shadow: 0 0 0 1px rgba(125, 71, 26, 0.25);
}

.pd-thumb:hover,
.pd-thumb:focus-visible {
    border-color: var(--gold);
}

.pd-content {
    padding-top: 0.15rem;
}

.pd-title {
    margin: 0;
    color: var(--primary);
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.pd-title::after {
    content: "";
    display: block;
    width: 4.5rem;
    height: 2px;
    margin-top: 0.85rem;
    background: var(--gold);
}

.pd-tags {
    margin: 0.65rem 0 0;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: 0.01em;
}

.pd-points {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.7rem;
}

.pd-points li {
    position: relative;
    padding-left: 1.85rem;
    color: var(--muted);
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.45;
}

.pd-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232c3b16' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-10'/%3E%3C/svg%3E") center / 60% no-repeat,
        var(--secondary-light);
}

.pd-features {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}

.pd-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1.1rem;
    color: var(--ink);
    border-right: 1px solid var(--line);
}

.pd-features li:last-child {
    border-right: 0;
}

.pd-feature-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    color: var(--primary);
    font-size: 1.35rem;
    background: transparent;
    border-radius: 0;
}

.pd-feature-label {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.25;
}

.pd-features strong {
    display: block;
    margin-top: 0.15rem;
    color: var(--ink);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.2;
}

.pd-cta {
    margin-top: 1.75rem;
}

/* —— Feature section —— */
.feature-section, .pd-details {
    background: var(--white);    
}
.feature-section{
    padding: 1rem;
    background: var(--primary);
}
@media (max-width: 1100px) {
    .pd-features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pd-features li:nth-child(3n) {
        border-right: 0;
    }

    .pd-features li:nth-child(-n+3) {
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 900px) {
    .pd-layout {
        grid-template-columns: 1fr;
    }

    .pd-main-media {
        aspect-ratio: 4 / 3;
    }

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

    .pd-features li {
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .pd-features li:nth-child(2n) {
        border-right: 0;
    }

    .pd-features li:nth-child(-n+3) {
        border-bottom: 1px solid var(--line);
    }

    .pd-features li:nth-last-child(-n+2) {
        border-bottom: 0;
    }
}

@media (max-width: 520px) {
    .pd-features {
        grid-template-columns:1fr 1fr;
    }

    .pd-features li {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .pd-features li:last-child {
        border-bottom: 0;
    }
}

.related-product-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

/* Related products — offerings layout on dark bg */
.related-products.offerings {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cellipse cx='14' cy='12' rx='2.2' ry='6' transform='rotate(28 14 12)'/%3E%3Cellipse cx='48' cy='24' rx='2.2' ry='6' transform='rotate(-20 48 24)'/%3E%3Cellipse cx='26' cy='44' rx='2.2' ry='6' transform='rotate(48 26 44)'/%3E%3Cellipse cx='60' cy='58' rx='2.2' ry='6' transform='rotate(12 60 58)'/%3E%3Cellipse cx='8' cy='62' rx='2.2' ry='6' transform='rotate(-35 8 62)'/%3E%3C/g%3E%3C/svg%3E") repeat,
        linear-gradient(135deg, var(--accent-deep) 0%, var(--primary) 60%, #46592a 100%);
    color: rgb(255 255 255 / 92%);
}

.related-products .section-title {
    color: var(--white);
}

.related-products .highlight {
    color: var(--secondary-light);
}

.related-products .offerings-intro p {
    color: rgb(255 255 255 / 78%);
}

.related-products .custom-btn {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.related-products .custom-btn:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
    color: var(--accent-deep);
}

/* —— Blogs —— */
.blogs {
    background: var(--light);
}

.blogs-header {
    margin-bottom: 1.75rem;
}

.blogs-lede {
    margin: 0.5rem 0 0;
    max-width: 40rem;
    color: var(--muted);
    line-height: 1.6;
}

.blogs-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 18.5rem);
    gap: clamp(1.5rem, 3vw, 2.25rem);
    align-items: start;
}

.blogs-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
}

.blog-card {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease;
    padding: 1rem;

}

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

.blog-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.blog-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--white);
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    border-radius: 12px;
}

.blog-card:hover .blog-card-media img {
    transform: scale(1.03);
}

.blog-card-tag {
    position: absolute;
    top: 0.95rem;
    right: 0;
    z-index: 1;
    max-width: calc(100% - 1.5rem);
    padding: 0.4rem 0.8rem;
    border-radius: 8px 0 0 8px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 1rem 0 0 0;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.85rem;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-card-meta time,
.blog-card-author {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-card-meta time {
    color: var(--gold);
    font-weight: 600;
}

.blog-card-meta time i {
    color: var(--gold);
    font-size: 0.82rem;
}

.blog-card-author {
    color: var(--muted);
}

.blog-card-author i {
    color: var(--primary);
    font-size: 0.82rem;
}

.blog-card-body h3 {
    margin: 0;
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-body p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-btn {
    align-self: flex-start;
    padding: 0.55rem 1.15rem;
    font-size: 0.88rem;
}

.blogs-filters {
    position: sticky;
    top: 7.5rem;
    align-self: start;
}

.blogs-sidebar {
    display: grid;
    gap: 1.25rem;
}

.blogs-widget {
    padding: 1.15rem 1.2rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
}

.blogs-widget-title {
    margin: 0 0 1rem;
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.blogs-widget-title::after {
    content: "";
    display: block;
    width: 3rem;
    height: 3px;
    margin-top: 0.55rem;
    background: var(--primary);
    border-radius: 999px;
}

.blogs-search {
    display: flex;
    align-items: stretch;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
}

.blogs-search input {
    flex: 1;
    min-width: 0;
    padding: 0.75rem 0.9rem;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 0.92rem;
    outline: none;
}

.blogs-search input::placeholder {
    color: var(--muted);
}

.blogs-search button {
    display: inline-grid;
    place-items: center;
    width: 2.85rem;
    border: 0;
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
    transition: background 0.2s ease;
}

.blogs-search button:hover,
.blogs-search button:focus-visible {
    background: var(--accent-deep);
}

.blogs-categories {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
}

.blogs-categories li {
    border-bottom: 1px dashed rgba(20, 32, 28, 0.18);
}

.blogs-categories li:last-child {
    border-bottom: 0;
}

.blogs-categories a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.7rem 0;
    color: var(--ink);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.blogs-categories a span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
}

.blogs-categories a i {
    color: var(--primary);
    font-size: 0.75rem;
}

.blogs-categories a:hover,
.blogs-categories a:focus-visible {
    color: var(--primary);
}

.blogs-cat-count {
    flex-shrink: 0;
    display: inline-grid;
    place-items: center;
    min-width: 1.7rem;
    height: 1.7rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
}

.blogs-filters-toggle {
    display: none;
}

@media (max-width: 980px) {
    .blogs-layout {
        grid-template-columns: 1fr;
    }

    .blogs-filters {
        position: static;
        order: -1;
        display: grid;
        gap: 0.85rem;
    }

    .blogs-filters-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.65rem;
        width: 100%;
        padding: 0.85rem 1.1rem;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: var(--white);
        color: var(--primary);
        font: inherit;
        font-size: 0.98rem;
        font-weight: 700;
        cursor: pointer;
    }

    .blogs-filters-toggle > span {
        flex: 1;
        text-align: left;
    }

    .blogs-filters-chevron {
        transition: transform 0.2s ease;
    }

    .blogs-filters-toggle[aria-expanded="true"] .blogs-filters-chevron {
        transform: rotate(180deg);
    }

    .blogs-sidebar {
        display: none;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .blogs-sidebar.is-open {
        display: grid;
    }
}

@media (max-width: 700px) {
    .blogs-grid {
        grid-template-columns: 1fr;
    }
}

/* —— Blog detail —— */
.blog-detail {
    background: var(--white);
}

.blog-detail-inner {
    max-width: 1100px;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 20rem);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

.blog-detail-main {
    min-width: 0;
}

.blog-detail-header {
    margin-bottom: 1.5rem;
}

.blog-detail-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
}

.blog-detail-tag {
    display: inline-block;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(44, 59, 22, 0.08);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.blog-detail-meta {
    margin-top: 0;
}

.blog-detail-media {
    margin: 0 0 1.75rem;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--line);
}

.blog-detail-media img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.blog-detail-content {
    color: var(--ink);
    font-size: 1.05rem;
    line-height: 1.75;
}

.blog-detail-content > * + * {
    margin-top: 1.15rem;
}

.blog-detail-content p {
    margin: 0;
    color: var(--muted);
    text-align: justify;
}

.blog-detail-content h2 {
    margin: 2rem 0 0;
    color: var(--primary);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.5vw, 1.7rem);
    font-weight: 700;
    line-height: 1.3;
}

.blog-detail-content ul {
    margin: .5rem 0;
    padding-left: 1.25rem;
    color: var(--muted);
    display: grid;
    gap: 0.55rem;
}

.blog-detail-content li::marker {
    color: var(--primary);
}

.blog-detail-content blockquote {
    margin: 1.75rem 0;
    padding: 1.25rem 1.35rem 1.25rem 1.5rem;
    border-left: 4px solid var(--gold);
    border-radius: 0 12px 12px 0;
    background: rgba(44, 59, 22, 0.05);
}

.blog-detail-content blockquote p {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.55;
}

.blog-detail-content blockquote cite {
    display: block;
    margin-top: 0.85rem;
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 600;
}

.blog-detail-footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.blog-detail-sidebar {
    position: sticky;
    top: 7.5rem;
    display: grid;
    gap: 1.25rem;
}

.blog-detail-sidebar .blogs-widget {
    box-shadow: none;
}

.blog-detail-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
}

.blog-detail-list li {
    border-bottom: 1px dashed rgba(20, 32, 28, 0.18);
}

.blog-detail-list li:last-child {
    border-bottom: 0;
}

.blog-detail-list a {
    display: grid;
    grid-template-columns: 4.75rem minmax(0, 1fr);
    gap: 0.8rem;
    padding: 0.8rem 0;
    color: inherit;
    text-decoration: none;
    align-items: center;
}

.blog-detail-list a img {
    width: 4.75rem;
    height: 4.75rem;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--line);
}

.blog-detail-list a div {
    min-width: 0;
    display: grid;
    gap: 0.3rem;
}

.blog-detail-list a span {
    color: var(--primary);
    font-weight: 700;
    line-height: 1.45;
}

.blog-detail-list a small {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 600;
}

@media (max-width: 980px) {
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .blog-detail-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .blog-detail-meta-row {
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    .blog-detail-list a {
        grid-template-columns: 4rem minmax(0, 1fr);
        gap: 0.7rem;
    }

    .blog-detail-list a img {
        width: 4rem;
        height: 4rem;
    }
}

/* —— Contact page —— */
.contact-page {
    background: var(--paper);
}

.contact-page-intro {
    max-width: 46rem;
    margin-bottom: 2rem;
}

.contact-page-intro p {
    margin: 0.75rem 0 0;
    color: var(--muted);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.85fr);
    gap: clamp(1.5rem, 3vw, 2rem);
    align-items: start;
}

.contact-page-main {
    display: grid;
    gap: 1.5rem;
}

.contact-page-sidebar {
    display: grid;
    gap: 1.5rem;
    position: sticky;
    top: 7.5rem;
}

.contact-panel h3 {
    margin: 0 0 0.5rem;
    color: var(--primary);
}

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

.contact-form-field label {
    margin-top: 0.9rem;
}

.contact-form-field--full {
    grid-column: 1 / -1;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-feedback {
    margin: 0 0 0.85rem;
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    background: var(--warn-bg);
    color: var(--primary);
    font-size: 0.95rem;
}

.form-feedback.is-error {
    background: var(--danger-bg);
    color: var(--danger);
}

.contact-page-map {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
}

.contact-page-map iframe {
    display: block;
    width: 100%;
    min-height: 400px;
    border: 0;
}

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

.contact-info-list li {
    display: grid;
    grid-template-columns: 2.75rem minmax(0, 1fr);
    gap: 0.85rem;
    align-items: start;
}

.contact-info-list i {
    width: 2.75rem;
    height: 2.75rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(44, 59, 22, 0.08);
    color: var(--primary);
}

.contact-info-list span,
.contact-hours-list span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-info-list a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
}

.contact-info-list a:hover {
    color: var(--primary);
}

.contact-info-list p {
    margin: 0.2rem 0 0;
    color: var(--ink);
}

.contact-hours-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px dashed rgba(20, 32, 28, 0.18);
}

.contact-hours-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-hours-list strong {
    color: var(--primary);
    font-size: 0.95rem;
}

@media (max-width: 980px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .contact-page-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}

/* —— WhatsApp floating button —— */
.whatsapp-float {
    position: fixed;
    right: 1.5rem;
    bottom: 2rem;
    z-index: 1100;
    display: grid;
    place-items: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
}


.whatsapp-float:focus-visible {
    outline: 3px solid rgb(37 211 102 / 35%);
    outline-offset: 3px;
}

.whatsapp-float i {
    font-size: 1.9rem;
    line-height: 1;
}

.quote-float {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 2.5rem;
    height: auto;
    padding: 1.25rem 0.75rem;
    border: 0;
    border-radius: 0 10px 10px 0;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.15;
    white-space: nowrap;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: translateY(-50%) rotate(180deg);
    cursor: pointer;
    transition: background 0.2s ease;
    text-transform: uppercase;
}

.quote-float:hover,
.quote-float:focus-visible {
    background: var(--accent-deep);
    color: var(--white);
}

.quote-float:focus-visible {
    outline: 3px solid rgb(44 59 22 / 28%);
    outline-offset: 3px;
}

@media (max-width: 640px) {
    .whatsapp-float {
        right: 1rem;
        bottom: 2rem;
        width: 3.35rem;
        height: 3.35rem;
    }

    .whatsapp-float i {
        font-size: 1.7rem;
    }

    .quote-float {
        padding: 0.95rem 0.45rem;
        font-size: 0.74rem;
    }
}

/* —— Quote popup —— */
.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 1.25rem;
}

.quote-modal[hidden] {
    display: none;
}

.quote-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgb(16 26 10 / 55%);
}

.quote-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 40rem);
    max-height: min(92vh, 44rem);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 24px 60px rgb(16 26 10 / 28%);
}

.quote-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 1.25rem;
    background: var(--primary);
    color: var(--white);
}

.quote-modal-header h2 {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
}

.quote-modal-close {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--white);
    font-size: 1.15rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.quote-modal-close:hover,
.quote-modal-close:focus-visible {
    background: rgb(255 255 255 / 14%);
}

.quote-modal-body {
    overflow-y: auto;
    padding: clamp(1.15rem, 3vw, 1.5rem);
    background: #f7f8f6;
}

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

.quote-form-field {
    display: grid;
    gap: 0.4rem;
}

.quote-form-field--full {
    grid-column: 1 / -1;
}

.quote-form-field label {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.quote-form-field label span {
    color: var(--danger);
}

.quote-form-field input,
.quote-form-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.78rem 0.9rem;
    font: inherit;
    background: var(--white);
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form-field input:focus,
.quote-form-field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgb(44 59 22 / 12%);
}

.quote-form-field input:invalid:not(:placeholder-shown),
.quote-form-field textarea:invalid:not(:placeholder-shown) {
    border-color: var(--danger);
}

.quote-form-field textarea {
    min-height: 120px;
    resize: vertical;
}

.quote-form-submit {
    width: 100%;
    margin-top: 1.15rem;
    justify-content: center;
}

body.quote-modal-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .quote-form-grid {
        grid-template-columns: 1fr;
    }

    .quote-modal {
        padding: 0.85rem;
    }

    .quote-modal-dialog {
        width: 100%;
        max-height: 92vh;
        border-radius: 16px 16px 10px 10px;
    }
}
