/* ==========================================================================
   Beata - Modern Egg Farm
   Paleta: Jeshile organike #6aaf08, krem i ngrohtë, kafe e thellë
   ========================================================================== */

:root {
    /* Brand */
    --green:        #6aaf08;
    --green-dark:   #4a8005;
    --green-light:  #8bc234;
    --green-soft:   #eef7d8;

    /* Neutrals - warm cream palette */
    --cream:        #fbf7ef;
    --cream-warm:   #f5ead4;
    --eggshell:     #fffaf0;
    --ink:          #1a1f12;
    --ink-soft:     #4a5240;
    --muted:        #8a9080;
    --line:         rgba(26, 31, 18, 0.08);

    /* Accent */
    --gold:         #d4a85a;
    --gold-light:   #f5e6c8;

    /* Type */
    --font-display: 'Instrument Serif', 'Times New Roman', serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Layout */
    --container:    1240px;
    --radius:       20px;
    --radius-sm:    12px;

    /* Motion */
    --ease:         cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
em { font-style: italic; font-family: var(--font-display); }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

/* Accessibility ------------------------------------------------------------- */
.skip-link {
    position: fixed;
    top: -60px;
    left: 16px;
    z-index: 1000;
    padding: 12px 20px;
    background: var(--ink);
    color: var(--cream);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    transition: top 0.3s var(--ease);
}
.skip-link:focus {
    top: 0;
    outline: none;
}
:focus-visible {
    outline: 2px solid var(--green-dark);
    outline-offset: 3px;
    border-radius: 4px;
}
/* Honeypot anti-spam - i fshehur nga përdoruesit, jo nga botët */
.form__hp {
    position: absolute;
    left: -9999px;
    width: 1px; height: 1px;
    overflow: hidden;
}

/* Preloader ----------------------------------------------------------------- */
.preloader {
    position: fixed; inset: 0;
    background: var(--cream);
    display: grid; place-items: center;
    z-index: 9999;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__egg {
    width: 50px; height: 65px;
    background: linear-gradient(160deg, var(--eggshell), var(--gold-light));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: eggBounce 1.2s var(--ease-bounce) infinite;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
@keyframes eggBounce {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50%      { transform: translateY(-20px) rotate(3deg); }
}

/* Navigation ---------------------------------------------------------------- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: all 0.4s var(--ease);
}
.nav.is-scrolled {
    background: rgba(251, 247, 239, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.nav__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.nav__logo-mark {
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.nav__logo-mark img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
}
.nav.is-scrolled .nav__logo-mark { height: 48px; }
.footer .nav__logo-mark { height: 64px; }

/* Logo text image (wordmark) */
.nav__logo-text {
    height: 32px;
    width: auto;
    display: block;
    object-fit: contain;
}
.nav.is-scrolled .nav__logo-text { height: 28px; }
.footer .nav__logo-text {
    height: 38px;
    filter: brightness(0) invert(1);
}
.nav__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav__link {
    position: relative;
    padding: 10px 16px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink-soft);
    transition: color 0.3s var(--ease);
    border-radius: 999px;
}
.nav__link::after {
    content: '';
    position: absolute;
    left: 16px; right: 16px;
    bottom: 6px;
    height: 1px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.4s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left center; }
.nav__link--cta {
    background: var(--ink);
    color: var(--cream);
    padding: 10px 20px;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
    background: var(--green);
    color: white;
}
.nav__toggle {
    display: none;
    width: 36px; height: 36px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 8px;
}
.nav__toggle span {
    height: 1.5px;
    background: var(--ink);
    transition: all 0.3s var(--ease);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile / tablet nav (collapses to hamburger) */
@media (max-width: 900px) {
    .nav__menu {
        position: fixed;
        top: 70px; left: 16px; right: 16px;
        background: var(--cream);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s var(--ease);
    }
    .nav__menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .nav__link { padding: 14px 16px; border-radius: var(--radius-sm); }
    .nav__link--cta { text-align: center; margin-top: 4px; }
    .nav__toggle { display: flex; }
}

/* Hero ---------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 60px;
    overflow: hidden;
    isolation: isolate;
}
.hero__bg {
    position: absolute; inset: 0;
    z-index: -1;
    overflow: hidden;
}
.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}
.hero__blob--1 {
    width: 500px; height: 500px;
    background: var(--green);
    top: -150px; right: -150px;
    animation: blob 20s ease-in-out infinite;
}
.hero__blob--2 {
    width: 400px; height: 400px;
    background: var(--gold);
    bottom: -100px; left: -100px;
    animation: blob 25s ease-in-out infinite reverse;
}
@keyframes blob {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 40px) scale(0.95); }
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 200px);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6.5vw, 5.5rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--ink);
    margin-bottom: 24px;
}
.hero__title em {
    color: var(--green);
    font-weight: 300;
}

.hero__sub {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.65;
}
.hero__sub strong { color: var(--ink); font-weight: 600; }

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 56px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 999px;
    transition: all 0.4s var(--ease);
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary {
    background: var(--ink);
    color: var(--cream);
}
.btn--primary:hover {
    background: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(106, 175, 8, 0.3);
}
.btn--ghost {
    background: transparent;
    border-color: var(--line);
    color: var(--ink);
}
.btn--ghost:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--cream);
}
.btn--full { width: 100%; justify-content: center; }

.hero__meta {
    display: flex;
    align-items: center;
    gap: 28px;
}
.hero__meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero__meta-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1;
}
.hero__meta-label {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hero__meta-divider {
    width: 1px; height: 32px;
    background: var(--line);
}

/* Hero visual */
.hero__visual {
    position: relative;
    height: 600px;
}
.hero__egg {
    position: absolute;
    transition: transform 0.6s var(--ease);
}
.hero__egg--main {
    width: 360px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 35px 60px rgba(180, 140, 60, 0.35));
}

/* ─── Signature Egg - Morphing Yolk Design ─── */
.signature-egg {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
}

/* Outer breathing halo */
.signature-egg__halo {
    position: absolute;
    inset: -8%;
    background:
        radial-gradient(circle at 45% 45%, rgba(245, 200, 96, 0.35) 0%, rgba(245, 200, 96, 0.12) 35%, transparent 65%);
    filter: blur(20px);
    animation: haloBreath 7s ease-in-out infinite;
    pointer-events: none;
}
@keyframes haloBreath {
    0%, 100% { opacity: 0.7; transform: scale(0.95); }
    50%      { opacity: 1; transform: scale(1.08); }
}

/* Egg shell - translucent backlit look */
.signature-egg__shell {
    position: absolute;
    top: 50%; left: 50%;
    width: 76%;
    aspect-ratio: 3/4;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(ellipse at 35% 25%, #fffdf5 0%, #fdf4dc 30%, #f0d9a8 65%, #d4a85a 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow:
        inset -28px -45px 70px rgba(180, 140, 60, 0.32),
        inset 22px 28px 55px rgba(255, 255, 255, 0.55),
        0 30px 70px -10px rgba(180, 140, 60, 0.45),
        0 60px 100px -30px rgba(74, 50, 10, 0.25);
    overflow: hidden;
    isolation: isolate;
}

/* The hypnotic morphing yolk inside */
.signature-egg__yolk {
    position: absolute;
    top: 50%; left: 50%;
    width: 62%;
    height: 52%;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(circle at 30% 28%, #fff5a0 0%, #f7c043 38%, #e89020 75%, #b56808 100%);
    border-radius: 48% 52% 38% 62% / 55% 48% 52% 45%;
    opacity: 0.55;
    filter: blur(4px);
    animation: yolkMorph 9s ease-in-out infinite;
    mix-blend-mode: multiply;
    z-index: 1;
}
.signature-egg__yolk--echo {
    width: 70%;
    height: 60%;
    opacity: 0.35;
    filter: blur(14px);
    animation: yolkMorph 11s ease-in-out infinite reverse;
    mix-blend-mode: screen;
    z-index: 0;
}
@keyframes yolkMorph {
    0%, 100% { border-radius: 48% 52% 38% 62% / 55% 48% 52% 45%; }
    20%      { border-radius: 60% 40% 55% 45% / 48% 52% 48% 52%; }
    40%      { border-radius: 38% 62% 48% 52% / 62% 38% 55% 45%; }
    60%      { border-radius: 55% 45% 62% 38% / 45% 55% 50% 50%; }
    80%      { border-radius: 42% 58% 50% 50% / 58% 42% 48% 52%; }
}

/* Brand mark resting on the egg */
.signature-egg__logo {
    position: absolute;
    top: 50%; left: 50%;
    width: 76%;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
    opacity: 0.94;
    filter: blur(0.8px) drop-shadow(0 8px 16px rgba(120, 80, 20, 0.2));
    animation: logoSway 10s ease-in-out infinite;
}
@keyframes logoSway {
    0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(-0.7deg); }
    50%      { transform: translate(-50%, -50%) scale(1.022) rotate(0.7deg); }
}

/* Subtle top-left shine on the shell */
.signature-egg__shine {
    position: absolute;
    top: 11%; left: 22%;
    width: 22%; height: 30%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 65%);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

/* Editorial dot accents - orbit slowly */
.signature-egg__dot {
    position: absolute;
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    opacity: 0.85;
    box-shadow: 0 0 0 6px rgba(106, 175, 8, 0.15);
}
.signature-egg__dot--1 {
    top: 8%; right: 6%;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(212, 168, 90, 0.2);
    animation: dotOrbit 8s ease-in-out infinite;
}
.signature-egg__dot--2 {
    bottom: 12%; left: 4%;
    width: 6px; height: 6px;
    animation: dotOrbit 9s ease-in-out infinite -2s;
}
.signature-egg__dot--3 {
    top: 28%; left: 2%;
    width: 5px; height: 5px;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 168, 90, 0.18);
    animation: dotOrbit 7s ease-in-out infinite -4s;
}
.signature-egg__dot--4 {
    bottom: 6%; right: 14%;
    width: 7px; height: 7px;
    animation: dotOrbit 10s ease-in-out infinite -6s;
}
@keyframes dotOrbit {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
    50%      { transform: translate(-12px, -10px) scale(1.15); opacity: 1; }
}

/* Hand-drawn looking accent line */
.signature-egg__line {
    position: absolute;
    top: 50%; right: -6%;
    width: 60px; height: 1.5px;
    background: var(--ink-soft);
    opacity: 0.25;
    transform: translateY(-50%);
}
.signature-egg__line::after {
    content: '';
    position: absolute;
    right: 0; top: -3px;
    width: 7px; height: 7px;
    background: var(--ink-soft);
    border-radius: 50%;
    opacity: 0.5;
}
.hero__egg--small {
    width: 110px;
    opacity: 0.85;
    filter: drop-shadow(0 15px 30px rgba(180, 140, 60, 0.15));
}
.hero__egg--s1 {
    top: 12%; right: 8%;
    animation: float 7s ease-in-out infinite -1s;
}
.hero__egg--s2 {
    bottom: 14%; left: 6%;
    width: 90px;
    animation: float 5.5s ease-in-out infinite -2s;
}
@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0) rotate(-3deg); }
    50%      { transform: translate(-50%, -50%) translateY(-18px) rotate(3deg); }
}
.hero__egg--s1, .hero__egg--s2 {
    animation-name: floatSmall;
}
@keyframes floatSmall {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50%      { transform: translateY(-16px) rotate(8deg); }
}

.hero__leaf {
    position: absolute;
    opacity: 0.85;
}
.hero__leaf--1 {
    width: 55px;
    top: 30%; right: 18%;
    animation: leafSway 4s ease-in-out infinite;
    transform-origin: bottom center;
}
.hero__leaf--2 {
    width: 40px;
    bottom: 28%; left: 22%;
    transform: rotate(180deg);
    animation: leafSway 5s ease-in-out infinite -1s;
    transform-origin: top center;
}
@keyframes leafSway {
    0%, 100% { transform: rotate(-8deg); }
    50%      { transform: rotate(12deg); }
}
.hero__leaf--2 { animation-name: leafSwayInv; }
@keyframes leafSwayInv {
    0%, 100% { transform: rotate(180deg) rotate(-8deg); }
    50%      { transform: rotate(180deg) rotate(12deg); }
}

/* Thin scrolling strip --------------------------------------------------- */
.band {
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}
.band::before,
.band::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.band::before {
    left: 0;
    background: linear-gradient(90deg, var(--cream) 0%, transparent 100%);
}
.band::after {
    right: 0;
    background: linear-gradient(-90deg, var(--cream) 0%, transparent 100%);
}
.band__track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: bandScroll 120s linear infinite;
    will-change: transform;
}
@keyframes bandScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.band__phrase {
    font-family: var(--font-display);
    font-style: normal;
    font-size: 19px;
    font-weight: 400;
    color: var(--ink-soft);
    letter-spacing: -0.005em;
    flex-shrink: 0;
    padding-right: 36px;
}
.band__phrase em {
    font-style: italic;
    color: var(--green-dark);
}
.band__sep {
    color: var(--green);
    font-size: 11px;
    flex-shrink: 0;
    opacity: 0.65;
    padding-right: 36px;
}

@media (max-width: 720px) {
    .band { padding: 12px 0; }
    .band__phrase { font-size: 15px; padding-right: 24px; }
    .band__sep { padding-right: 24px; }
    .band::before, .band::after { width: 40px; }
}



/* Section common ------------------------------------------------------------ */
.section__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--green-dark);
    margin-bottom: 18px;
    position: relative;
    padding-left: 28px;
}
.section__eyebrow::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 20px; height: 1px;
    background: var(--green);
}
.section__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 20px;
}
.section__title em {
    color: var(--green);
    font-weight: 300;
}
.section__sub {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 580px;
    margin: 0 auto;
}
.section__header {
    text-align: center;
    margin-bottom: 70px;
}

/* Story --------------------------------------------------------------------- */
.story {
    padding: 130px 0;
    position: relative;
}
.story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.story__visual {
    position: relative;
    aspect-ratio: 4/5;
    max-width: 480px;
}
.story__image {
    width: 100%; height: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transform: rotate(-1.5deg);
    transition: transform 0.6s var(--ease);
    box-shadow: 0 30px 60px -20px rgba(74, 80, 5, 0.3);
}
.story__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(26, 31, 18, 0.25) 100%);
    z-index: 2;
    pointer-events: none;
}
.story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.story__visual:hover .story__image { transform: rotate(0deg) scale(1.01); }
.story__visual:hover .story__image img { transform: scale(1.08); }

.story__card {
    position: absolute;
    background: white;
    padding: 18px 22px;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 50px rgba(26, 31, 18, 0.08);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
}
.story__card--top {
    top: 30px; right: -30px;
}
.story__card--bottom {
    bottom: 30px; left: -30px;
}
.story__card-icon {
    width: 44px; height: 44px;
    background: var(--green-soft);
    color: var(--green-dark);
    border-radius: 12px;
    display: grid;
    place-items: center;
}
.story__card-icon svg { width: 22px; height: 22px; }
.story__card-num {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
}
.story__card-label {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.story__text {
    font-size: 17px;
    color: var(--ink-soft);
    margin-bottom: 18px;
}
.story__text strong { color: var(--ink); font-weight: 600; }
.story__list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.story__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-weight: 500;
}
.check {
    width: 24px; height: 24px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Products ------------------------------------------------------------------ */
.products {
    padding: 130px 0;
    background: var(--cream-warm);
    position: relative;
}
.products__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 56px;
    max-width: 880px;
    margin: 0 auto;
}
.product {
    position: relative;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 32px 32px;
    transition: all 0.5s var(--ease);
    overflow: hidden;
}
.product::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(106, 175, 8, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    pointer-events: none;
}
.product:hover {
    transform: translateY(-8px);
    border-color: rgba(106, 175, 8, 0.3);
    box-shadow: 0 30px 60px rgba(26, 31, 18, 0.08);
}
.product:hover::before { opacity: 1; }
.product--featured {
    background: #3a3f1a;
    color: var(--cream);
    border-color: #3a3f1a;
}
.product--featured .product__title { color: var(--cream); }
.product--featured .product__desc { color: rgba(251, 247, 239, 0.75); }
.product--featured .product__meta { color: rgba(251, 247, 239, 0.55); border-color: rgba(251, 247, 239, 0.15); }
.product--featured:hover { transform: translateY(-12px); }

.product__badge {
    position: absolute;
    top: 20px; right: 20px;
    padding: 5px 11px;
    background: var(--green-soft);
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 999px;
    z-index: 2;
}
.product__badge--premium {
    background: var(--gold);
    color: var(--ink);
}
.product__badge--bio {
    background: var(--green);
    color: white;
}
.product__visual {
    height: 220px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    transition: transform 0.6s var(--ease);
}
.product__visual svg {
    height: 100%;
    width: auto;
    filter: drop-shadow(0 20px 30px rgba(180, 140, 60, 0.2));
}
.product:hover .product__visual { transform: scale(1.08) rotate(-3deg); }
.product__title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.product__desc {
    color: var(--ink-soft);
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.6;
}
.product__meta {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}

/* Products assurance strip ------------------------------------------------- */
.products__assurance {
    max-width: 880px;
    margin: 56px auto 0;
    padding: 34px 40px;
    background: var(--cream-warm);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-align: center;
}
.assurance__lead {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 26px;
}
.assurance__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 40px;
}
.assurance__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
}
.assurance__icon {
    width: 22px; height: 22px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Why Beata ----------------------------------------------------------------- */
.why {
    padding: 130px 0;
}
.why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card - minimal at rest, reveals photo on hover */
.why__item {
    position: relative;
    border-radius: var(--radius);
    background: var(--cream-warm);
    overflow: hidden;
    padding: 36px 28px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    cursor: default;
    transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
    isolation: isolate;
}
.why__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -20px rgba(26, 31, 18, 0.35);
}

/* Hidden photo background - slides in on hover */
.why__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 0.7s var(--ease), transform 1.2s var(--ease);
}
.why__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.05);
}
.why__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(26, 31, 18, 0.35) 0%, rgba(26, 31, 18, 0.85) 100%),
        linear-gradient(45deg, rgba(106, 175, 8, 0.15), transparent);
}
.why__item:hover .why__bg {
    opacity: 1;
    transform: scale(1);
}

/* Icon */
.why__icon {
    position: relative;
    z-index: 1;
    width: 52px; height: 52px;
    background: var(--cream);
    color: var(--green-dark);
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    transition: background 0.5s var(--ease), color 0.5s var(--ease), transform 0.5s var(--ease);
    box-shadow: 0 6px 14px rgba(26, 31, 18, 0.06);
}
.why__icon svg { width: 24px; height: 24px; }
.why__item:hover .why__icon {
    background: var(--green);
    color: white;
    transform: rotate(-6deg);
    box-shadow: 0 10px 24px rgba(106, 175, 8, 0.4);
}

/* Body */
.why__body {
    position: relative;
    z-index: 1;
}
.why__item h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    line-height: 1.2;
    transition: color 0.5s var(--ease);
}
.why__item p {
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.65;
    transition: color 0.5s var(--ease);
}
.why__item:hover h3 { color: var(--cream); }
.why__item:hover p { color: rgba(251, 247, 239, 0.85); }

/* Process / Traceability ---------------------------------------------------- */
.process {
    padding: 130px 0;
    background: var(--cream);
}
.process__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Egg visual */
.process__visual {
    position: relative;
    aspect-ratio: 3/4;
    max-width: 360px;
    margin: 0 auto;
}
.process__egg {
    position: relative;
    width: 100%; height: 100%;
    animation: processFloat 6s ease-in-out infinite;
}
@keyframes processFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50%      { transform: translateY(-12px) rotate(2deg); }
}
.process__egg-svg {
    width: 100%; height: 100%;
}
.process__code {
    position: absolute;
    top: 52%; left: 50%;
    transform: translate(-50%, -50%) rotate(-6deg);
    text-align: center;
    color: #d92b3b;
    font-family: 'Courier New', 'Courier', monospace;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-shadow: 0 0 1px rgba(217, 43, 59, 0.35);
    pointer-events: none;
    user-select: none;
    opacity: 0.92;
}
.process__code-line {
    display: block;
    font-size: clamp(17px, 2vw, 23px);
    line-height: 1.35;
}

/* Steps */
.process__steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.process__step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}
.process__step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.process__step-num {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 400;
    color: var(--green);
    line-height: 1;
    min-width: 50px;
    flex-shrink: 0;
}
.process__step h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.process__step p {
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .process__grid { grid-template-columns: 1fr; gap: 60px; }
    .process__visual { max-width: 300px; }
}
@media (max-width: 720px) {
    .process { padding: 80px 0; }
    .process__visual { max-width: 260px; }
}

/* Certifications ------------------------------------------------------------ */
.certs {
    padding: 130px 0;
    background: var(--cream-warm);
}
.certs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.cert {
    display: flex;
    flex-direction: column;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 38px 32px 30px;
    transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.cert:hover {
    transform: translateY(-8px);
    border-color: rgba(106, 175, 8, 0.3);
    box-shadow: 0 30px 60px rgba(26, 31, 18, 0.08);
}
.cert__icon {
    width: 58px; height: 58px;
    background: var(--green-soft);
    color: var(--green-dark);
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    transition: transform 0.5s var(--ease);
}
.cert__icon svg { width: 28px; height: 28px; }
.cert:hover .cert__icon { transform: scale(1.06) rotate(-3deg); }
.cert__std {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green-dark);
    margin-bottom: 8px;
}
.cert__title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 12px;
}
.cert__desc {
    flex-grow: 1;
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 26px;
}
.cert__docs {
    display: flex;
    gap: 10px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}
.cert__doc {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
    transition: all 0.3s var(--ease);
}
.cert__doc svg { width: 15px; height: 15px; }
.cert__doc:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--cream);
}

@media (max-width: 1024px) {
    .certs__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
    .certs { padding: 80px 0; }
    .certs__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* Stats --------------------------------------------------------------------- */
.stats {
    padding: 130px 0;
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}
.stats::before {
    content: '';
    position: absolute;
    top: -150px; right: -150px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.15;
    filter: blur(80px);
}
.stats__header { text-align: center; margin-bottom: 80px; position: relative; }
.stats__eyebrow { color: var(--green-light); }
.stats__eyebrow::before { background: var(--green-light); }
.stats__title { color: var(--cream); }
.stats__title em { color: var(--green-light); }

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}
.stat {
    text-align: center;
    padding: 20px;
    position: relative;
}
.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px; top: 20%;
    width: 1px; height: 60%;
    background: rgba(251, 247, 239, 0.12);
}
.stat__num {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1;
    color: var(--cream);
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}
.stat__label {
    font-size: 14px;
    color: rgba(251, 247, 239, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Where to buy -------------------------------------------------------------- */
.where {
    padding: 130px 0;
    background: var(--cream-warm);
}
.where__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}
.where__category {
    background: var(--cream);
    padding: 36px 32px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: all 0.4s var(--ease);
}
.where__category:hover {
    transform: translateY(-4px);
    border-color: var(--green);
    box-shadow: 0 20px 50px -15px rgba(106, 175, 8, 0.2);
}
.where__category-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
    position: relative;
}
.where__category-title::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 36px; height: 2px;
    background: var(--green);
}
.where__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.where__list li {
    padding-left: 22px;
    position: relative;
    color: var(--ink-soft);
    font-size: 15px;
    transition: color 0.3s var(--ease);
}
.where__list li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    opacity: 0.4;
    transition: opacity 0.3s var(--ease);
}
.where__list li:hover {
    color: var(--ink);
}
.where__list li:hover::before {
    opacity: 1;
}
/* Logo wall */
.where__logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 36px 56px;
    max-width: 860px;
    margin: 0 auto 24px;
}
.where__logo {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.where__logo--badge { height: 58px; }
.where__logo--big { height: 66px; }
.where__logo--med { height: 52px; }
.where__logo img {
    height: 100%;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.55;
    transition: filter 0.45s var(--ease), opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.where__logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-3px);
}
.where__more {
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    letter-spacing: 0.01em;
    margin: 0 auto 56px;
}

.where__cta {
    text-align: center;
    padding: 30px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.where__cta p {
    color: var(--ink-soft);
    font-size: 16px;
    margin: 0;
}
@media (max-width: 1024px) {
    .where__grid { grid-template-columns: 1fr 1fr; }
    .where__category:last-child { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
    .where { padding: 80px 0; }
    .where__grid { grid-template-columns: 1fr; }
    .where__category:last-child { grid-column: auto; }
    .where__logos { gap: 28px 36px; }
    .where__logo { height: 36px; }
    .where__logo--badge { height: 50px; }
    .where__logo--big { height: 54px; }
    .where__logo--med { height: 44px; }
    .where__logo img { max-width: 150px; }
}

/* Locations map ------------------------------------------------------------- */
.locmap {
    padding: 130px 0;
    background: var(--cream);
}
/* Panel pa kornizë — harta shkrihet drejtpërdrejt me faqen */
.locmap__panel {
    position: relative;
    margin-top: 48px;
}
.locmap__canvas {
    width: 100%;
    height: 400px;
    background: transparent;
    /* Të katër skajet zbehen butë drejt transparentes, që kufiri me sfondin
       (sidomos deti majtas/lart) të mos dalë si vijë e drejtë. */
    -webkit-mask-image:
        linear-gradient(to right,  transparent 0, #000 9%, #000 91%, transparent 100%),
        linear-gradient(to bottom, transparent 0, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-composite: source-in;
            mask-image:
        linear-gradient(to right,  transparent 0, #000 9%, #000 91%, transparent 100%),
        linear-gradient(to bottom, transparent 0, #000 8%, #000 92%, transparent 100%);
            mask-composite: intersect;
}
.locmap .leaflet-container { background: transparent; }
/* B&W vetëm te tiles, që pin-at me ngjyra të brandit të mbeten të theksuar */
.locmap .leaflet-tile-pane {
    filter: grayscale(1) contrast(0.85) brightness(1.1) sepia(0.05);
}
/* Nuancë krem mbi tiles: deti/zonat e çelëta marrin tonin e faqes, që
   kufiri me sfondin të mos dalë si vijë. 'multiply' ruan rrugët/etiketat e errëta. */
.locmap .leaflet-container::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 250;            /* mbi tiles (200), nën pin-at (600) */
    pointer-events: none;
    background: var(--cream-warm);
    mix-blend-mode: multiply;
}
/* Atribuimi si tekst i vogël poshtë hartës (kontrolli i Leaflet u fshua) */
.locmap__caption {
    text-align: right;
    margin-top: -18px;
    padding-right: 4px;
    font-size: 9px;
    letter-spacing: 0.02em;
    color: var(--muted);
    opacity: 0.4;
    position: relative;
    z-index: 10;
}
.locmap__places {
    position: absolute;
    left: 6%;
    bottom: 12%;
    z-index: 500;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 280px;
}
.locmap__place {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(251, 247, 239, 0.92);
    backdrop-filter: blur(6px);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 30px -18px rgba(26, 31, 18, 0.5);
    transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.locmap__place:hover {
    transform: translateY(-3px);
    border-color: var(--green);
    box-shadow: 0 18px 40px -20px rgba(106, 175, 8, 0.4);
}
.locmap__dot {
    flex: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: relative;
}
.locmap__dot--farm   { background: var(--green); }
.locmap__dot--office { background: var(--gold); }
.locmap__dot::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid currentColor;
    opacity: 0.4;
}
.locmap__dot--farm::after   { color: var(--green); }
.locmap__dot--office::after { color: var(--gold); }
.locmap__place-text { display: flex; flex-direction: column; line-height: 1.3; }
.locmap__place-label {
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
}
.locmap__place-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
}

/* Pin-at e personalizuar (DivIcon) */
.locmap-pin {
    width: 22px;
    height: 22px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    border: 2px solid var(--cream);
    box-shadow: 0 4px 10px -2px rgba(26, 31, 18, 0.55);
}
.locmap-pin--farm   { background: var(--green); }
.locmap-pin--office { background: var(--gold); }
.locmap-pin span {
    display: block;
    width: 7px;
    height: 7px;
    margin: 5.5px auto;
    background: var(--cream);
    border-radius: 50%;
    transform: rotate(45deg);
}

/* Leaflet UI në tonin e brandit */
.locmap .leaflet-container { background: var(--cream-warm); font-family: var(--font-body); }
.locmap .leaflet-control-zoom a {
    color: var(--ink);
    border-color: var(--line);
}
.locmap .leaflet-control-zoom a:hover { color: var(--green); }
.locmap .leaflet-popup-content-wrapper {
    border-radius: var(--radius-sm);
    box-shadow: 0 14px 36px -18px rgba(26, 31, 18, 0.5);
}
.locmap .leaflet-popup-content { margin: 12px 16px; font-size: 14px; color: var(--ink); }
.locmap .leaflet-popup-content strong { font-weight: 600; }
.locmap .leaflet-popup-content a { color: var(--green-dark); font-weight: 500; }
.locmap .leaflet-control-attribution {
    background: rgba(251, 247, 239, 0.7);
    font-size: 10px;
}

@media (max-width: 600px) {
    .locmap__canvas { height: 320px; }
    .locmap__places {
        position: static;
        max-width: none;
        flex-direction: row;
        padding: 16px;
    }
    .locmap__place { flex: 1; }
}

/* FAQ ----------------------------------------------------------------------- */
.faq {
    padding: 130px 0;
    background: var(--cream);
}
.faq__list {
    max-width: 820px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
}
.faq__item {
    border-bottom: 1px solid var(--line);
}
.faq__item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 4px;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 1.6vw, 1.4rem);
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.3;
    transition: color 0.3s var(--ease);
    gap: 24px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--green-dark); }
.faq__icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border: 1px solid var(--line);
    border-radius: 50%;
    position: relative;
    transition: all 0.4s var(--ease);
}
.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    background: var(--ink);
    transition: transform 0.3s var(--ease);
}
.faq__icon::before {
    width: 12px; height: 1.5px;
    transform: translate(-50%, -50%);
}
.faq__icon::after {
    width: 1.5px; height: 12px;
    transform: translate(-50%, -50%);
}
.faq__item[open] .faq__icon {
    background: var(--green);
    border-color: var(--green);
}
.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after {
    background: white;
}
.faq__item[open] .faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq__answer {
    padding: 0 4px 28px;
    color: var(--ink-soft);
    font-size: 15.5px;
    line-height: 1.7;
    max-width: 720px;
    animation: faqFadeIn 0.4s var(--ease);
}
.faq__answer strong { color: var(--ink); font-weight: 600; }
.faq__answer a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; }
.faq__answer a:hover { color: var(--ink); }
@keyframes faqFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 720px) {
    .faq { padding: 80px 0; }
    .faq__item summary { padding: 20px 4px; }
}

/* Contact ------------------------------------------------------------------- */
.contact {
    padding: 130px 0;
    background: var(--cream-warm);
}
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact__lead {
    font-size: 17px;
    color: var(--ink-soft);
    margin-bottom: 40px;
    max-width: 440px;
}
.contact__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact__list li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    transition: all 0.3s var(--ease);
}
.contact__list li:hover {
    border-color: var(--green);
    transform: translateX(4px);
}
.contact__icon {
    width: 44px; height: 44px;
    background: var(--green-soft);
    color: var(--green-dark);
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.contact__icon svg { width: 22px; height: 22px; }
.contact__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 2px;
}
.contact__value {
    font-size: 15.5px;
    color: var(--ink);
    font-weight: 500;
}
.contact__value a:hover { color: var(--green-dark); }

.contact__form {
    background: var(--cream);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: 0 30px 80px rgba(26, 31, 18, 0.06);
}
.form__group {
    margin-bottom: 22px;
}
.form__group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.form__group input,
.form__group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--cream-warm);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    transition: all 0.3s var(--ease);
    resize: vertical;
}
.form__group input:focus,
.form__group textarea:focus {
    outline: none;
    background: white;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(106, 175, 8, 0.1);
}
.form__status {
    margin-top: 16px;
    font-size: 14px;
    color: var(--green-dark);
    min-height: 20px;
    text-align: center;
}

/* Footer -------------------------------------------------------------------- */
.footer {
    background: var(--ink);
    color: var(--cream);
    padding: 80px 0 30px;
}
.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(251, 247, 239, 0.1);
}
.footer__brand p {
    color: rgba(251, 247, 239, 0.6);
    margin-top: 20px;
    max-width: 380px;
    font-size: 15px;
}
.footer__brand .nav__logo { color: var(--cream); }
.footer__col h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}
.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__col a {
    color: rgba(251, 247, 239, 0.6);
    font-size: 14.5px;
    transition: color 0.3s var(--ease);
}
.footer__col a:hover { color: var(--green-light); }
.footer__bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(251, 247, 239, 0.4);
}

/* Reveal animations --------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
    transition-delay: calc(var(--i, 0) * 100ms);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Form consent -------------------------------------------------------------- */
.form__consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: -4px 0 22px;
    padding: 14px 16px;
    background: var(--cream-warm);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.5;
}
.form__consent input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px; height: 18px;
    border: 1.5px solid var(--muted);
    border-radius: 5px;
    margin-top: 2px;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    flex-shrink: 0;
    position: relative;
}
.form__consent input[type="checkbox"]:checked {
    background: var(--green);
    border-color: var(--green);
}
.form__consent input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: white;
    font-size: 12px;
    font-weight: 700;
}
.form__consent label { cursor: pointer; margin: 0; text-transform: none; letter-spacing: 0; font-size: 13px; font-weight: 400; color: var(--ink-soft); }
.form__consent a { color: var(--green-dark); text-decoration: underline; }

/* WhatsApp floating button ------------------------------------------------- */
.wa-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 150;
    box-shadow:
        0 12px 28px -8px rgba(37, 211, 102, 0.55),
        0 6px 14px rgba(0, 0, 0, 0.15);
    transition: all 0.4s var(--ease-bounce);
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    animation: waFabIn 0.6s var(--ease-bounce) 1.2s forwards;
}
@keyframes waFabIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.wa-fab:hover {
    transform: scale(1.08);
    box-shadow:
        0 16px 36px -8px rgba(37, 211, 102, 0.7),
        0 8px 18px rgba(0, 0, 0, 0.2);
}
.wa-fab:active {
    transform: scale(0.96);
}

.wa-fab__icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    position: relative;
    z-index: 2;
}
.wa-fab__icon svg {
    width: 100%;
    height: 100%;
}

/* Pulse animation ring */
.wa-fab__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    z-index: 1;
    animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.55;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Tooltip */
.wa-fab__tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: var(--ink);
    color: var(--cream);
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.wa-fab__tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--ink);
}
.wa-fab:hover .wa-fab__tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 720px) {
    .wa-fab {
        width: 54px;
        height: 54px;
        bottom: 20px;
        right: 20px;
    }
    .wa-fab__icon { width: 26px; height: 26px; }
    .wa-fab__tooltip { display: none; }
}

/* Cookie banner ------------------------------------------------------------- */
.cookie {
    position: fixed;
    bottom: 20px; left: 20px; right: 20px;
    max-width: 720px;
    margin: 0 auto;
    background: var(--ink);
    color: var(--cream);
    border-radius: var(--radius);
    padding: 22px 26px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    z-index: 200;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.6s var(--ease-bounce), opacity 0.4s var(--ease);
}
.cookie.is-visible {
    transform: translateY(0);
    opacity: 1;
}
.cookie__inner {
    display: flex;
    align-items: center;
    gap: 24px;
}
.cookie__content { flex: 1; }
.cookie__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.cookie__text {
    font-size: 13.5px;
    color: rgba(251, 247, 239, 0.7);
    line-height: 1.5;
    margin: 0;
}
.cookie__text a {
    color: var(--green-light);
    text-decoration: underline;
}
.cookie__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.btn--sm {
    padding: 11px 18px;
    font-size: 13.5px;
}
.cookie .btn--ghost {
    color: var(--cream);
    border-color: rgba(251, 247, 239, 0.2);
}
.cookie .btn--ghost:hover {
    background: rgba(251, 247, 239, 0.1);
    color: var(--cream);
    border-color: rgba(251, 247, 239, 0.4);
}

/* Legal page ---------------------------------------------------------------- */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
    text-align: center;
}
.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 20px;
}
.page-hero__title em { color: var(--green); font-weight: 300; }
.page-hero__sub {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 620px;
    margin: 0 auto 16px;
}
.page-hero__meta {
    font-size: 13px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 24px;
}

.legal {
    padding: 70px 0 110px;
    background: var(--cream);
}
.legal__container {
    max-width: 820px;
}
.legal__intro {
    padding: 28px 30px;
    background: var(--green-soft);
    border-left: 3px solid var(--green);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 50px;
}
.legal__intro p {
    color: var(--ink);
    font-size: 15.5px;
    margin-bottom: 14px;
}
.legal__intro p:last-child { margin-bottom: 0; }

.legal__section {
    margin-bottom: 48px;
    scroll-margin-top: 100px;
}
.legal__section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.legal__section p {
    color: var(--ink-soft);
    font-size: 16px;
    margin-bottom: 14px;
    line-height: 1.75;
}
.legal__section p strong { color: var(--ink); font-weight: 600; }
.legal__section a {
    color: var(--green-dark);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.2s var(--ease);
}
.legal__section a:hover { color: var(--ink); }

.legal__list {
    margin: 14px 0 18px;
    padding-left: 0;
}
.legal__list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    color: var(--ink-soft);
    font-size: 15.5px;
    line-height: 1.65;
}
.legal__list li::before {
    content: '';
    position: absolute;
    left: 0; top: 11px;
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
}
.legal__list li strong { color: var(--ink); }

.legal__box {
    padding: 22px 26px;
    background: var(--cream-warm);
    border-radius: var(--radius-sm);
    margin: 18px 0;
}
.legal__box p {
    margin-bottom: 6px;
    color: var(--ink);
    font-size: 15px;
}
.legal__box p:last-child { margin-bottom: 0; }

.legal__rights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 20px 0;
}
.legal__right {
    background: var(--cream);
    border: 1px solid var(--line);
    border-left: 3px solid var(--green);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    transition: all 0.3s var(--ease);
}
.legal__right:hover {
    border-left-color: var(--green-dark);
    transform: translateX(2px);
    box-shadow: 0 8px 20px -8px rgba(106, 175, 8, 0.2);
}
.legal__right-name {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.legal__right-desc {
    display: block;
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
}
.legal__right-desc strong { color: var(--ink); }

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

.legal__cta {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--line);
    margin-top: 50px;
}
.legal__cta .btn svg { transform: rotate(180deg); }
.legal__cta .btn:hover svg { transform: rotate(180deg) translateX(4px); }

/* Responsive ---------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; gap: 40px; min-height: auto; }
    .hero__visual { height: 400px; }
    .hero__egg--main { width: 240px; }
    .story__grid { grid-template-columns: 1fr; gap: 60px; }
    .story__visual { max-width: 100%; margin: 0 auto; }
    .products__grid { grid-template-columns: 1fr 1fr; }
    .why__grid { grid-template-columns: 1fr 1fr; }
    .stats__grid { grid-template-columns: 1fr 1fr; gap: 60px; }
    .stat:nth-child(2)::after { display: none; }
    .contact__grid { grid-template-columns: 1fr; gap: 60px; }
    .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 720px) {
    .container { padding: 0 22px; }
    .hero { padding: 110px 0 40px; }
    .hero__title { font-size: clamp(2.5rem, 10vw, 3.8rem); }
    .hero__sub { font-size: 16px; }
    .hero__meta { flex-wrap: wrap; gap: 16px; }
    .hero__meta-divider { display: none; }
    .hero__visual { height: 320px; }
    .hero__egg--main { width: 200px; }
    .story { padding: 80px 0; }
    .story__card--top { right: 0; }
    .story__card--bottom { left: 0; }
    .products, .why, .stats, .contact { padding: 80px 0; }
    .section__header { margin-bottom: 50px; }
    .products__grid { grid-template-columns: 1fr; gap: 28px; }
    .products__assurance { padding: 30px 26px; margin-top: 40px; }
    .assurance__list { flex-direction: column; align-items: flex-start; gap: 14px; text-align: left; }
    .why__grid { grid-template-columns: 1fr; }
    .stats__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .stat::after { display: none !important; }
    .contact__form { padding: 28px 24px; }
    .footer__inner { grid-template-columns: 1fr; gap: 40px; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 720px) {
    .cookie {
        left: 12px; right: 12px;
        bottom: 12px;
        padding: 18px 20px;
    }
    .cookie__inner { flex-direction: column; align-items: stretch; gap: 16px; }
    .cookie__actions { flex-direction: column-reverse; }
    .cookie__actions .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Performancë mobile: ndal VETËM animimin e elementeve me blur të madh
   (blob-et, halo, yolk-et) - këto rëndojnë GPU-në dhe shkaktojnë ngecje te
   scroll-i i parë. Lëvizjet e lehta (vezë, gjethe, pika, logo) mbeten aktive. */
@media (max-width: 768px) {
    .hero__blob,
    .signature-egg__halo,
    .signature-egg__yolk {
        animation: none !important;
    }
    /* Blur më i lehtë për blob-et (edhe statik kushton më pak) */
    .hero__blob { filter: blur(45px); }
}
