:root {
    --deep-green: #123D28;
    --forest-green: #1F5D3A;
    --grass-green: #4D8B38;
    --sky-blue: #1597C5;
    --deep-blue: #087EA4;
    --gold: #E7B63E;
    --premium-gold: #C9972F;
    --cream: #FFF8E8;
    --ivory: #F7F2E8;
    --soft-blue: #EAF7FB;
    --charcoal: #18221D;
    --brown: #3A2415;
    --white: #FFFFFF;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;

}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    background: var(--ivory);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-display {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.eyebrow {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 12.5px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media(min-width:768px) {
    .container {
        padding: 0 40px;
    }
}

/* ---------- reveal animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s cubic-bezier(.16, .84, .44, 1), transform .8s cubic-bezier(.16, .84, .44, 1);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(.94);
    transition: opacity .9s ease, transform .9s cubic-bezier(.16, .84, .44, 1);
}

.reveal-scale.in {
    opacity: 1;
    transform: scale(1);
}

.stagger.in>* {
    animation: fadeUp .7s cubic-bezier(.16, .84, .44, 1) both;
}

.stagger.in>*:nth-child(1) {
    animation-delay: .05s
}

.stagger.in>*:nth-child(2) {
    animation-delay: .15s
}

.stagger.in>*:nth-child(3) {
    animation-delay: .25s
}

.stagger.in>*:nth-child(4) {
    animation-delay: .35s
}

.stagger.in>*:nth-child(5) {
    animation-delay: .45s
}

.stagger.in>*:nth-child(6) {
    animation-delay: .55s
}

.stagger.in>*:nth-child(7) {
    animation-delay: .65s
}

.stagger.in>*:nth-child(8) {
    animation-delay: .75s
}

.stagger.in>*:nth-child(9) {
    animation-delay: .85s
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media (prefers-reduced-motion: reduce) {

    .reveal,
    .reveal-scale,
    .stagger>* {
        transition: none !important;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .float-slow,
    .float-med,
    .glow-move,
    .plane-fly,
    .route-draw {
        animation: none !important;
    }
}

/* ---------- header ---------- */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding-top: 18px;
    transition: padding .4s ease;
}

.nav-shell {
    width: 100%;
    max-width: 1240px;
    margin: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: background .4s ease, box-shadow .4s ease, padding .4s ease, border-color .4s ease;
}

#site-header.scrolled {
    padding-top: 10px;
}

#site-header.scrolled .nav-shell {
    background: rgba(255, 248, 232, 0.92);
    border-color: rgba(18, 61, 40, 0.08);
    box-shadow: 0 10px 34px rgba(18, 61, 40, 0.14);
    padding: 9px 18px;
}

.logo {
    display: flex;
    gap: 15px;
    align-items: center;
}

.logo img {
    max-height: 50px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.05;
    color: #fff;
    transition: color .4s ease;
}

.brand-name small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 9.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
}

#site-header.scrolled .brand-name {
    color: var(--deep-green);
}

.nav-links {
    display: none;
    gap: clamp(13px, -4.0855rem + 7.6531vw, 28px);
    align-items: center;
}

@media(min-width:1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    position: relative;
    font-weight: 600;
    font-size: 14.5px;
    color: #fff;
    padding: 6px 2px;
    transition: color .3s ease, transform .3s ease;
}

#site-header.scrolled .nav-link {
    color: var(--deep-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .3s ease;
}

.nav-link:hover {
    transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: background .3s ease, transform .25s ease, color .3s ease, border-color .3s ease;
}

#site-header.scrolled .icon-btn {
    background: var(--soft-blue);
    color: var(--deep-blue);
    border-color: transparent;
}

.icon-btn:hover {
    transform: scale(1.08);
    background: var(--gold);
    color: var(--deep-green);
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--deep-green);
    font-weight: 700;
    font-size: 14px;
    padding: 11px 20px;
    border-radius: 999px;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(231, 182, 62, 0.35);
    transition: transform .25s ease, box-shadow .25s ease;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(231, 182, 62, 0.5);
}

.btn-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .65), transparent);
    transform: skewX(-20deg);
    transition: left .7s ease;
}

.btn-quote:hover::before {
    left: 120%;
}

.menu-toggle {
    display: flex;
}

@media(min-width:1024px) {
    .menu-toggle {
        display: none;
    }
}

/* mobile drawer */
#mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 82%;
    max-width: 360px;
    z-index: 200;
    background: var(--deep-green);
    color: #fff;
    transform: translateX(100%);
    transition: transform .45s cubic-bezier(.16, .84, .44, 1);
    padding: 28px 26px;
    overflow-y: auto;
}

#mobile-drawer.open {
    transform: translateX(0);
}

#drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 15, 0.55);
    z-index: 190;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}

#drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.drawer-link {
    display: block;
    padding: 14px 4px;
    font-size: 19px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.drawer-link:hover {
    color: var(--gold);
}

@media screen and (max-width: 570px) {

    .nav-shell .btn-quote,
    .nav-shell .icon-btn:not(.menu-toggle) {
        display: none;
    }
}

/* ---------- hero ---------- */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 90px;
    background: radial-gradient(1200px 700px at 15% -10%, rgba(31, 93, 58, .9), transparent 60%),
        linear-gradient(160deg, #0e2e1f 0%, var(--deep-green) 45%, #0d3626 100%);
    overflow: hidden;
}

.hero-glow-gold {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(231, 182, 62, .35), transparent 70%);
    top: -120px;
    right: -80px;
    filter: blur(10px);
    animation: glowMove 12s ease-in-out infinite;
}

.hero-glow-blue {
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21, 151, 197, .28), transparent 70%);
    bottom: -140px;
    left: -100px;
    animation: glowMove 14s ease-in-out infinite reverse;
}

@keyframes glowMove {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(30px, -20px)
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    position: relative;
    z-index: 2;
}

@media(min-width:1024px) {
    .hero-grid {
        grid-template-columns: 1.05fr .95fr;
        align-items: center;
    }
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(231, 182, 62, .4);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: .03em;
}

.hero-heading {
    font-size: clamp(38px, 7vw, 80px);
    line-height: 1.03;
    color: #fff;
    margin: 22px 0 18px;
}

.hero-heading .gold {
    color: var(--gold);
    font-style: italic;
}

.hero-sub {
    color: var(--cream);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 14px;
}

.hero-desc {
    color: rgba(255, 248, 232, 0.82);
    font-size: 17px;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 30px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 26px;
}

.btn-primary {
    background: var(--gold);
    color: var(--deep-green);
    font-weight: 700;
    font-size: 15px;
    padding: 15px 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(231, 182, 62, .35);
    transition: transform .25s ease, box-shadow .25s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(231, 182, 62, .5);
}

.btn-secondary {
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid rgba(255, 255, 255, .35);
    transition: all .3s ease;
}

.btn-secondary:hover {
    background: #25D366;
    border-color: #25D366;
    transform: translateY(-3px);
}

.trust-line {
    color: rgba(255, 248, 232, .65);
    font-size: 13.5px;
    letter-spacing: .02em;
}

.trust-line b {
    color: var(--gold);
    font-weight: 700;
}

.hero-visual {
    position: relative;
}

.hero-frame {
    position: relative;
    border-radius: 32px 32px 32px 90px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .45);
    border: 6px solid rgba(255, 255, 255, .08);
    transform: scale(.95);
    opacity: 0;
    animation: heroImgIn 1.1s .3s cubic-bezier(.16, .84, .44, 1) forwards;
    aspect-ratio: 4/5;
}

@keyframes heroImgIn {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(18, 61, 40, .65));
}

.leaf-shape {
    position: absolute;
    border-radius: 50% 50% 45% 55%/55% 45% 55% 45%;
    background: var(--grass-green);
    opacity: .5;
    filter: blur(1px);
}

.leaf1 {
    width: 130px;
    height: 130px;
    top: -30px;
    left: -40px;
}

.leaf2 {
    width: 90px;
    height: 90px;
    bottom: 60px;
    right: -30px;
    background: var(--forest-green);
    opacity: .6;
}

.float-card {
    position: absolute;
    background: var(--cream);
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow: 0 16px 34px rgba(18, 61, 40, .22);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 150px;
    opacity: 0;
    transform: translateY(20px) rotate(-1deg);
}

.float-card .fc-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.float-card .fc-num {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 21px;
    color: var(--deep-green);
    line-height: 1;
}

.float-card .fc-label {
    font-size: 11.5px;
    color: var(--brown);
    font-weight: 600;
}

.fc1 {
    top: 6%;
    left: -8%;
}

.fc2 {
    top: 34%;
    right: -12%;
}

.fc3 {
    bottom: 14%;
    left: -12%;
}

.fc4 {
    bottom: -3%;
    right: 2%;
}

.float-slow {
    animation: floatY 6s ease-in-out infinite;
}

.float-med {
    animation: floatY 5s ease-in-out infinite;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

@keyframes fcIn {
    to {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
}

.route-strip {
    margin-top: 16px;
    position: relative;
}

.route-svg {
    width: 100%;
    height: 46px;
}

.route-path {
    fill: none;
    stroke: rgba(255, 248, 232, .4);
    stroke-width: 1.6;
    stroke-dasharray: 6 6;
}

.route-path-draw {
    fill: none;
    stroke: var(--gold);
    stroke-width: 2;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: routeDraw 2.6s 1s ease forwards;
}

.route-draw {
    animation: routeDraw2 2.4s .6s ease forwards;
}

@keyframes routeDraw2 {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes routeDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.route-dot {
    fill: var(--gold);
}

.route-label {
    fill: rgba(255, 248, 232, .85);
    font-size: 9px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: .05em;
}

.plane-fly {
    animation: planeMove 2.6s 1s ease forwards, planeBob 2.2s 3.6s ease-in-out infinite;
}

@keyframes planeMove {
    from {
        offset-distance: 0%;
    }

    to {
        offset-distance: 100%;
    }
}

@keyframes planeBob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* ---------- trust bar ---------- */
#trust-bar {
    position: relative;
    z-index: 20;
    margin-top: -58px;
}

.trust-card {
    background: var(--cream);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(18, 61, 40, .16);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px 10px;
    padding: 24px 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 13.5px;
    color: var(--deep-green);
    padding: 6px 10px;
    border-radius: 12px;
    transition: transform .3s ease;
}

.trust-item:hover {
    transform: translateY(-4px);
}

.trust-item .ti-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--soft-blue);
    color: var(--deep-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ---------- section basics ---------- */
.section {
    padding: 110px 0;
}

.section-tight {
    padding: 90px 0;
}

.section-head {
    max-width: 720px;
    margin-bottom: 56px;
}

.eyebrow-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.eyebrow-row .bar {
    width: 34px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(32px, 4.2vw, 54px);
    color: var(--deep-green);
    line-height: 1.08;
}

.section-desc {
    font-size: 17.5px;
    color: #3f4b42;
    line-height: 1.7;
    margin-top: 16px;
}

/* ---------- stats ---------- */
#stats {
    background: var(--ivory);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 22px;
}

@media(min-width:600px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width:900px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: #fff;
    border-radius: 22px;
    padding: 32px 22px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(18, 61, 40, .06);
    border: 1px solid rgba(18, 61, 40, .05);
    transition: transform .35s ease, box-shadow .35s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 40px rgba(18, 61, 40, .12);
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 18px;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 44px;
    color: var(--deep-green);
    line-height: 1;
}

.stat-label {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #5b6a5e;
}

/* ---------- about ---------- */
#about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 52px;
    align-items: center;
}

@media(min-width:1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-media {
    position: relative;
    height: 460px;
}

.about-img-main {
    position: absolute;
    width: 78%;
    height: 88%;
    border-radius: 26px;
    overflow: hidden;
    top: 0;
    left: 0;
    box-shadow: 0 24px 50px rgba(18, 61, 40, .18);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-sub {
    position: absolute;
    width: 52%;
    height: 52%;
    border-radius: 22px;
    overflow: hidden;
    bottom: 0;
    right: 0;
    border: 6px solid #fff;
    box-shadow: 0 20px 40px rgba(18, 61, 40, .22);
}

.about-img-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: 18px;
    right: -6px;
    background: var(--gold);
    color: var(--deep-green);
    font-weight: 700;
    font-size: 12.5px;
    padding: 9px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(231, 182, 62, .35);
    z-index: 3;
}

.about-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 26px;
}

.fact-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--soft-blue);
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--deep-blue);
}

.mv-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 26px;
}

@media(max-width:560px) {
    .mv-cards {
        grid-template-columns: 1fr;
    }
}

.mv-card {
    border-radius: 18px;
    padding: 22px;
    color: #fff;
    transition: transform .3s ease;
}

.mv-card:hover {
    transform: translateY(-6px);
}

.mv-card.mission {
    background: linear-gradient(145deg, var(--deep-green), var(--forest-green));
}

.mv-card.vision {
    background: linear-gradient(145deg, var(--deep-blue), var(--sky-blue));
}

.mv-card h4 {
    font-size: 20px;
    color: var(--gold);
    margin: 0 0 8px;
}

.mv-card.vision h4 {
    color: #FFF8E8;
}

.mv-card p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, .9);
}

/* ---------- products ---------- */
#products {
    background: var(--ivory);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media(min-width:900px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(18, 61, 40, .08);
    border: 1px solid transparent;
    transition: transform .4s cubic-bezier(.16, .84, .44, 1), box-shadow .4s ease, border-color .4s ease;
    perspective: 1000px;
}

.product-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 0 30px 55px rgba(18, 61, 40, .18);
    border-color: rgba(231, 182, 62, .5);
}

.product-media {
    height: 230px;
    overflow: hidden;
    position: relative;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.16, .84, .44, 1);
}

.product-card:hover .product-media img {
    transform: scale(1.09);
}

.product-body {
    padding: 26px 24px 28px;
}

.product-body h3 {
    font-size: 23px;
    color: var(--deep-green);
    margin: 0 0 10px;
}

.product-body p {
    font-size: 14.5px;
    color: #4a564d;
    line-height: 1.65;
    margin: 0 0 20px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    color: var(--deep-blue);
}

.product-link svg {
    transition: transform .3s ease;
}

.product-card:hover .product-link svg {
    transform: translateX(5px);
}

/* ---------- why choose (bento) ---------- */
#why {
    background: var(--white);
}

.bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 255px;
    gap: 18px;
}


.bento-item {
    border-radius: 22px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 26px rgba(18, 61, 40, .06);
    transition: transform .35s ease, box-shadow .35s ease;
    border: 1px solid rgba(18, 61, 40, .05);
}

.bento-item:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 22px 40px rgba(18, 61, 40, .14);
}

.bento-item .bi-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease;
}

.bento-item:hover .bi-icon {
    transform: scale(1.12) rotate(-4deg);
}

.bento-item h4 {
    font-size: 15.5px;
    margin: 12px 0 4px;
    color: var(--deep-green);
}

.bento-item p {
    font-size: 12.5px;
    color: #5b6a5e;
    margin: 0;
    line-height: 1.5;
}

.b-span2 {
    grid-column: span 2;
}

.b-row2 {
    grid-row: span 2;
}
@media(max-width:1000px){
    .bento {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(180px, auto);
    }

    .b-row2 {
        grid-row: span 1;
    }
}
@media(max-width:620px){
    .bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
    }
      .b-span2 {
        grid-column: span 1;
    }
}
@media(max-width:420px){
    .bento {
        grid-template-columns: repeat(1, 1fr);

    grid-auto-rows: auto;
    align-items: stretch;   
    }
    .bento-item {
    height: auto;
    min-height: 180px;
    overflow: hidden;
}
}
.bg-cream {
    background: var(--cream);
}

.bg-soft-blue {
    background: var(--soft-blue);
}

.bg-green-tint {
    background: #EAF3EB;
}

.bg-gold-tint {
    background: #FBF1DC;
}

/* ---------- health ---------- */
#health {
    background: linear-gradient(180deg, var(--soft-blue), var(--ivory) 70%);
}

.health-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media(min-width:1024px) {
    .health-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.health-img {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(8, 126, 164, .18);
    height: 420px;
}

.health-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.health-img:hover img {
    transform: scale(1.08);
}

.care-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 26px;
}
@media screen and (max-width:450px) {
    .care-list{
        grid-template-columns: 1fr;
    }
}

.care-item {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(8, 126, 164, .08);
    transition: transform .3s ease;
}

.care-item:hover {
    transform: translateY(-5px);
}

.care-item .ci-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--soft-blue);
    color: var(--deep-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.care-item span {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--deep-green);
}

.care-statement {
    margin-top: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    color: var(--deep-blue);
    border-left: 3px solid var(--gold);
    padding-left: 16px;
}

/* ---------- process ---------- */
#process {
    background: var(--white);
}

.timeline-desktop {
    display: none;
    position: relative;
    padding-top: 40px;
}

@media(min-width:1024px) {
    .timeline-desktop {
        display: block;
    }
}

.timeline-line {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--grass-green), var(--sky-blue), var(--gold));
}

.timeline-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    position: relative;
}

.tl-item {
    text-align: center;
}

.tl-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--forest-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    position: relative;
    z-index: 2;
    color: var(--forest-green);
    transition: transform .35s ease, background .35s ease, color .35s ease;
}

.tl-item:nth-child(even) .tl-icon {
    border-color: var(--sky-blue);
    color: var(--sky-blue);
}

.tl-item:hover .tl-icon {
    transform: scale(1.15);
    background: var(--gold);
    border-color: var(--gold);
    color: var(--deep-green);
}

.tl-item h4 {
    font-size: 16px;
    color: var(--deep-green);
    margin: 0 0 6px;
}

.tl-item p {
    font-size: 12.5px;
    color: #5b6a5e;
    line-height: 1.5;
    margin: 0;
}

.timeline-mobile {
    display: block;
    border-left: 2px dashed var(--grass-green);
    margin-left: 14px;
}

@media(min-width:1024px) {
    .timeline-mobile {
        display: none;
    }
}

.tlm-item {
    position: relative;
    padding: 0 0 34px 30px;
}

.tlm-item .tl-icon {
    position: absolute;
    left: -31px;
    top: -6px;
    width: 44px;
    height: 44px;
    margin: 0;
}

.tlm-item h4 {
    font-size: 16.5px;
    color: var(--deep-green);
    margin: 0 0 6px;
}

.tlm-item p {
    font-size: 13.5px;
    color: #5b6a5e;
    margin: 0;
}

/* ---------- breeds ---------- */
#breeds {
    background: var(--ivory);
}

.breeds-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media(min-width:768px) {
    .breeds-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:640px) {
    .breeds-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 14px;
    }

    .breeds-grid .breed-card {
        flex: 0 0 72%;
        scroll-snap-align: start;
    }
}

.breed-card {
    background: #fff;
    border-radius: 20px;
    padding: 26px 20px;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: 0 10px 26px rgba(18, 61, 40, .07);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.breed-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 20px 36px rgba(18, 61, 40, .15);
}

.breed-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    color: var(--forest-green);
}

.breed-card h4 {
    font-size: 18px;
    color: var(--deep-green);
    margin: 0;
}

/* ---------- markets ---------- */
#markets {
    background: linear-gradient(160deg, #0d2f21, var(--deep-blue) 130%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.markets-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(231, 182, 62, .18), transparent 70%);
    border-radius: 50%;
    top: -160px;
    right: -160px;
}

.markets-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    position: relative;
    z-index: 2;
}

@media(min-width:1024px) {
    .markets-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.market-map {
    position: relative;
}

.country-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

@media(min-width:560px) {
    .country-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.country-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    transition: transform .3s ease, background .3s ease, border-color .3s ease;
}

.country-card:hover {
    transform: translateY(-6px);
    background: rgba(231, 182, 62, .14);
    border-color: var(--gold);
}

.country-flag {
    font-size: 30px;
    transition: transform .3s ease;
}

.country-card:hover .country-flag {
    transform: scale(1.2);
}

.country-card h5 {
    font-size: 13.5px;
    margin: 8px 0 0;
    color: #F7F2E8;
    font-weight: 700;
}

/* ---------- compliance ---------- */
#compliance {
    background: var(--white);
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media(min-width:768px) {
    .compliance-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.cert-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 26px 16px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(18, 61, 40, .06);
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 34px rgba(18, 61, 40, .14);
}

.cert-seal {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--gold), var(--premium-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-green);
    transition: transform .4s ease;
}

.cert-card:hover .cert-seal {
    transform: rotate(18deg) scale(1.08);
}

.cert-card h5 {
    font-size: 14px;
    color: var(--deep-green);
    margin: 0;
    line-height: 1.35;
}

/* ---------- gallery ---------- */
#gallery {
    background: var(--ivory);
}

.masonry {
    columns: 2;
    column-gap: 16px;
}

@media(min-width:768px) {
    .masonry {
        columns: 3;
    }
}

@media(min-width:1100px) {
    .masonry {
        columns: 4;
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(18, 61, 40, .1);
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform .5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(18, 61, 40, .85));
    display: flex;
    align-items: flex-end;
    padding: 14px;
    opacity: 0;
    transition: opacity .35s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-weight: 700;
    font-size: 13.5px;
}

#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 15, .94);
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
}

#lightbox.open {
    display: flex;
}

#lightbox img {
    max-width: 88vw;
    max-height: 78vh;
    border-radius: 14px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
}

.lb-caption {
    position: absolute;
    bottom: 36px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.lb-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease;
    border: 1px solid rgba(255, 255, 255, .25);
}

.lb-btn:hover {
    background: var(--gold);
    color: var(--deep-green);
}

#lb-prev {
    left: 16px;
}

#lb-next {
    right: 16px;
}

#lb-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .25);
}

#lb-close:hover {
    background: #e74c3c;
}

/* ---------- quote form ---------- */
#quote {
    background: linear-gradient(180deg, var(--deep-green), #0d3020);
    color: #fff;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
}

@media(min-width:1024px) {
    .quote-grid {
        grid-template-columns: .8fr 1.2fr;
    }
}

.form-card {
    background: #fff;
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
    color: var(--charcoal);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media(min-width:640px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field.full {
    grid-column: 1/-1;
}

.field label {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--deep-green);
}

.field input,
.field select,
.field textarea {
    border: 1.5px solid #E1DCCC;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14.5px;
    font-family: inherit;
    background: #FBFAF6;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--sky-blue);
    box-shadow: 0 0 0 3px rgba(21, 151, 197, .15);
}

.field .err {
    font-size: 11.5px;
    color: #c0392b;
    min-height: 14px;
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
    border-color: #c0392b;
}

.submit-btn {
    margin-top: 6px;
    width: 100%;
    background: var(--gold);
    color: var(--deep-green);
    font-weight: 700;
    font-size: 15.5px;
    padding: 15px;
    border-radius: 14px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 12px 26px rgba(231, 182, 62, .3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(231, 182, 62, .45);
}

.submit-btn:disabled {
    opacity: .7;
    cursor: not-allowed;
    transform: none;
}

.form-status {
    margin-top: 14px;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 14px;
    display: none;
}

.form-status.show {
    display: block;
}

.form-status.ok {
    background: #e6f4ea;
    color: #1e7a3d;
}

.form-status.bad {
    background: #fdecea;
    color: #c0392b;
}

.quote-side p {
    color: rgba(255, 248, 232, .82);
    font-size: 16.5px;
    line-height: 1.7;
}

.quote-points {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.quote-point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.quote-point .qp-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(231, 182, 62, .16);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quote-point span {
    font-size: 14.5px;
    color: rgba(255, 248, 232, .85);
}

/* ---------- contact & map ---------- */
#contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media(min-width:768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--cream);
    border-radius: 18px;
    padding: 20px;
    transition: transform .3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card .cc-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--deep-green);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card h5 {
    margin: 0 0 4px;
    font-size: 14px;
    color: var(--deep-green);
}

.contact-card p,
.contact-card a {
    margin: 0;
    font-size: 14.5px;
    color: #3f4b42;
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--deep-blue);
}

.map-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 44px rgba(18, 61, 40, .14);
    margin-top: 20px;
}

.map-wrap iframe {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
}

/* ---------- footer ---------- */
footer {
    background: var(--charcoal);
    color: #cfd8d1;
    padding: 70px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media(min-width:900px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-dsi {
    flex: 2;
}

.footer-logo {
    max-height: 100px;
}

footer h5 {
    color: #fff;
    font-size: 15px;
    margin: 0 0 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: .03em;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer a {
    font-size: 14px;
    color: #adbab0;
    transition: color .25s ease;
}

footer a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 50px;
    padding-top: 22px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 12.5px;
    color: #7d8a80;
}

/* ---------- floating whatsapp ---------- */
#wa-float {
    position: fixed;
    bottom: 24px;
    right: 22px;
    z-index: 150;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 12px 28px rgba(37, 211, 102, .5);
    animation: waPulse 2.6s ease-in-out infinite;
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 12px 28px rgba(37, 211, 102, .45);
    }

    50% {
        box-shadow: 0 12px 40px rgba(37, 211, 102, .7);
    }
}

#wa-float:hover {
    transform: scale(1.08);
}

/* utility */
.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}