/* =========================
   Belvora
   Premium fruit brand style
   ========================= */

body.belvora {
    margin: 0;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    color: #294129;
    background:
            radial-gradient(circle at top right, rgba(255, 196, 82, 0.16), transparent 18%),
            radial-gradient(circle at bottom left, rgba(129, 184, 88, 0.16), transparent 18%),
            linear-gradient(180deg, #fffaf1 0%, #f9f3e8 100%);
    line-height: 1.65;
    overflow-x: hidden;
}

body.belvora * {
    box-sizing: border-box;
}

body.belvora a {
    text-decoration: none;
    transition: all 0.25s ease;
}

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

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

/* =========================
   Topbar
   ========================= */

body.belvora .belvora-topbar {
    background: linear-gradient(90deg, #446d2d, #7d8d27);
    color: #fff7eb;
}

body.belvora .topbar-inner {
    padding: 0.85rem 0;
    text-align: center;
}

body.belvora .topbar-inner p {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* =========================
   Header
   ========================= */

body.belvora .belvora-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 250, 241, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(110, 138, 67, 0.10);
    box-shadow: 0 10px 30px rgba(70, 80, 30, 0.04);
}

body.belvora .belvora-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

body.belvora .belvora-brand-mark img {
    height: 72px;
    width: auto;
    object-fit: contain;
}

body.belvora .belvora-nav {
    display: flex;
    gap: 1.15rem;
    flex-wrap: wrap;
}

body.belvora .belvora-nav a {
    color: #52652b;
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

body.belvora .belvora-nav a:hover {
    color: #c98e2c;
}

/* =========================
   Hero
   ========================= */

body.belvora .belvora-hero {
    padding: 4.5rem 0 4rem;
}

body.belvora .belvora-hero-inner {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 2rem;
    align-items: center;
}

body.belvora .hero-copy {
    padding: 2rem 0.5rem 2rem 0;
}

body.belvora .section-label {
    display: inline-block;
    margin-bottom: 0.85rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #c98e2c;
}

body.belvora .hero-copy h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #2a4720;
}

body.belvora .hero-copy p {
    margin: 0;
    font-size: 1.08rem;
    color: #5e6d45;
    max-width: 560px;
}

body.belvora .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.6rem;
}

body.belvora .btn-primary,
body.belvora .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.9rem 1.35rem;
    font-size: 0.94rem;
    font-weight: 700;
    border-radius: 999px;
}

body.belvora .btn-primary {
    background: linear-gradient(135deg, #6f8d2f, #4b6e2d);
    color: #fffdf6;
    box-shadow: 0 16px 34px rgba(81, 109, 41, 0.22);
}

body.belvora .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(81, 109, 41, 0.28);
}

body.belvora .btn-secondary {
    background: #fff7ec;
    color: #9b6d23;
    border: 1px solid rgba(201, 142, 44, 0.18);
}

body.belvora .btn-secondary:hover {
    transform: translateY(-2px);
    color: #7b591f;
}

body.belvora .hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.4rem;
}

body.belvora .hero-tags span {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 244, 224, 0.9);
    border: 1px solid rgba(201, 142, 44, 0.12);
    color: #7c6d2d;
    font-size: 0.88rem;
    font-weight: 700;
}

body.belvora .hero-visual {
    position: relative;
}

body.belvora .hero-image-frame {
    padding: 1rem;
    background: #fff9f0;
    border: 1px solid rgba(137, 168, 74, 0.14);
    box-shadow: 0 24px 60px rgba(84, 98, 42, 0.10);
    border-radius: 28px;
    overflow: hidden;
}

body.belvora .hero-image-frame img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* =========================
   About
   ========================= */

body.belvora .belvora-about,
body.belvora .belvora-selection,
body.belvora .belvora-services,
body.belvora .belvora-contact {
    padding: 5rem 0;
}

body.belvora .about-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: start;
}

body.belvora .about-panel {
    padding: 2rem;
    border-radius: 28px;
    background: linear-gradient(180deg, #fff9ef, #fff5e6);
    border: 1px solid rgba(201, 142, 44, 0.12);
    box-shadow: 0 16px 40px rgba(120, 96, 42, 0.06);
}

body.belvora .about-panel h2,
body.belvora .selection-heading h2,
body.belvora .services-heading h2,
body.belvora .contact-copy h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #2d4720;
}

body.belvora .about-copy {
    padding-top: 0.4rem;
}

body.belvora .about-copy p {
    margin: 0 0 1rem;
    color: #5f6c48;
    font-size: 1rem;
}

body.belvora .about-copy p:last-child {
    margin-bottom: 0;
}

/* =========================
   Selection
   ========================= */

body.belvora .selection-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

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

body.belvora .selection-card {
    padding: 1.6rem;
    border-radius: 24px;
    background: rgba(255, 250, 241, 0.90);
    border: 1px solid rgba(137, 168, 74, 0.12);
    box-shadow: 0 14px 34px rgba(84, 98, 42, 0.06);
}

body.belvora .selection-card.featured {
    background: linear-gradient(135deg, #fff5dd, #fff8ec);
    border-color: rgba(201, 142, 44, 0.18);
}

body.belvora .selection-card h3 {
    margin: 0 0 0.7rem;
    font-size: 1.35rem;
    color: #385226;
}

body.belvora .selection-card p {
    margin: 0;
    color: #66734f;
}

/* =========================
   Services
   ========================= */

body.belvora .services-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

body.belvora .services-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

body.belvora .service-pill {
    padding: 1.35rem;
    border-radius: 22px;
    background: linear-gradient(180deg, #fff9f0, #fff4e1);
    border: 1px solid rgba(201, 142, 44, 0.12);
    box-shadow: 0 12px 28px rgba(120, 96, 42, 0.05);
}

body.belvora .service-pill strong {
    display: block;
    margin-bottom: 0.55rem;
    color: #45642b;
    font-size: 1rem;
}

body.belvora .service-pill p {
    margin: 0;
    color: #6a744f;
    font-size: 0.95rem;
}

/* =========================
   Contact
   ========================= */

body.belvora .contact-layout {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 2rem;
    align-items: start;
}

body.belvora .contact-copy p {
    margin-top: 1rem;
    color: #63704c;
}

body.belvora .contact-card {
    display: grid;
    gap: 0.9rem;
    padding: 1.5rem;
    border-radius: 28px;
    background: #fff9ef;
    border: 1px solid rgba(137, 168, 74, 0.12);
    box-shadow: 0 18px 40px rgba(84, 98, 42, 0.07);
}

body.belvora .contact-card a {
    display: block;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: #fffef9;
    border: 1px solid rgba(201, 142, 44, 0.10);
    color: #4f5d34;
    font-weight: 700;
}

body.belvora .contact-card a:hover {
    transform: translateX(4px);
    color: #b27a1f;
}

/* =========================
   Footer
   ========================= */

body.belvora .belvora-footer {
    padding: 1.5rem 0 2rem;
    border-top: 1px solid rgba(201, 142, 44, 0.10);
    background: rgba(255, 249, 239, 0.8);
}

body.belvora .belvora-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

body.belvora .belvora-footer p {
    margin: 0;
    color: #7b805e;
    font-size: 0.92rem;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 1024px) {
    body.belvora .belvora-hero-inner,
    body.belvora .about-layout,
    body.belvora .contact-layout,
    body.belvora .services-row {
        grid-template-columns: 1fr;
    }

    body.belvora .selection-grid {
        grid-template-columns: 1fr;
    }

    body.belvora .services-row {
        gap: 1rem;
    }
}

@media (max-width: 760px) {
    body.belvora .belvora-header-inner,
    body.belvora .belvora-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    body.belvora .belvora-nav {
        width: 100%;
        gap: 0.8rem;
    }

    body.belvora .hero-copy,
    body.belvora .about-panel,
    body.belvora .hero-image-frame,
    body.belvora .contact-card {
        padding: 1.2rem;
    }

    body.belvora .belvora-brand-mark img {
        height: 58px;
    }

    body.belvora .hero-copy h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}