/* ========================================
   Custom Properties
   ======================================== */
:root {
    --bg: #FDF8F3;
    --bg-gradient: radial-gradient(circle at center, #fdf4c3 0%, #ecbc4a 100%);
    --bg-white: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-featured: #FFF9F0;
    --text: #2C2118;
    --text-light: #7A6E63;
    --text-muted: #A89A8E;
    --accent: #D4A843;
    --accent-dark: #B8912C;
    --border: #E8DFD4;
    --border-light: #F0EAE2;
    --shadow: 0 2px 20px rgba(44, 33, 24, 0.06);
    --shadow-lg: 0 8px 40px rgba(44, 33, 24, 0.1);

    --font-serif: 'DM Serif Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;

    --container: 1120px;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-pill: 50px;
    --header-h: 72px;
}

/* ========================================
   Reset
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg-gradient);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: .25s ease;
}

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

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: .25s ease;
}

.btn-outline {
    background: var(--bg-white);
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--text);
    box-shadow: var(--shadow);
}

.btn-pill {
    background: var(--bg-white);
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-pill:hover {
    border-color: var(--text);
}

.btn-dark {
    background: var(--text);
    color: var(--bg-white);
}

.btn-dark:hover {
    background: #1a120b;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: min(calc(var(--container) + 48px), calc(100% - 24px));
    height: var(--header-h);
    background: var(--bg-gradient);
    z-index: 100;
    border: 3px solid var(--border);
    border-radius: 0;
    box-shadow: 0 8px 40px rgba(44, 33, 24, 0.55);
}

.header-inner {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.logo-icon img {
    width: 76px;
    height: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-name {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--text);
}

.logo-sub {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 4px 0;
}

.nav-link.active,
.nav-link:hover {
    color: var(--text);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
}

.header-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 14px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
}

.header-icon:hover {
    border-color: var(--border);
    box-shadow: var(--shadow);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.burger span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: .25s ease;
}

/* ========================================
   Hero
   ======================================== */
.hero {
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 0;
    background: url("images/hero1.png") center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    min-height: 620px;
}

.hero-text h1 {
    font-family: var(--font-serif);
    font-size: 50px;
    font-weight: 400;
    line-height: 1.15;
    color: #000000;
    margin-bottom: 18px;
}

.hero-text {
    background: rgba(255, 255, 255, .5);
    opacity: 1;
    padding: 20px 24px;
    border-radius: 14px;
    width: fit-content;
    max-width: 100%;
}

.hero-desc {
    font-size: 15px;
    color: #000000;
    max-width: 400px;
    margin-bottom: 28px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #000000;
}

.hero-badge img {
    width: 20px;
    height: 20px;
}

.hero-curve {
    display: none;
}

.hero-curve svg {
    display: none;
}

/* ========================================
   Features
   ======================================== */
.features {
    position: relative;
    z-index: 2;
    margin-top: -120px;
    padding: 120px 0 80px;
    background: var(--bg-gradient);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' fill='none' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 80V30C360 80 720 0 1080 30C1260 45 1380 60 1440 30V80H0Z' fill='black'/%3E%3C/svg%3E"), linear-gradient(black, black);
    -webkit-mask-size: 100% 120px, 100% calc(100% - 119px);
    -webkit-mask-position: top center, bottom center;
    -webkit-mask-repeat: no-repeat, no-repeat;
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' fill='none' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 80V30C360 80 720 0 1080 30C1260 45 1380 60 1440 30V80H0Z' fill='black'/%3E%3C/svg%3E"), linear-gradient(black, black);
    mask-size: 100% 120px, 100% calc(100% - 119px);
    mask-position: top center, bottom center;
    mask-repeat: no-repeat, no-repeat;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 12px;
    text-align: center;
    transition: .3s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-card.featured {
    background: var(--bg-featured);
    border-color: var(--accent);
}

.feature-icon {
    width: 108px;
    height: 108px;
    margin: 0 auto 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 88px;
    height: 88px;
}

.feature-card h2,
.about-value h4 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    font-style: normal;
    letter-spacing: normal;
    margin-bottom: 4px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.65;
    max-width: 240px;
    margin: 0 auto;
}

/* ========================================
   Products
   ======================================== */
.products {
    padding: 80px 0;
    background: var(--bg-gradient);
}

.products .container {
    position: relative;
}

.wines-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header-sub {
    margin-top: 64px;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 14px;
    color: var(--text-light);
    max-width: 480px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-card {
    text-align: center;
}

.product-img {
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    position: relative;
    padding-bottom: 14px;
}

.product-img::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    width: 72%;
    height: 22px;
    border-radius: 50%;
    background: rgba(44, 33, 24, 0.58);
    filter: blur(9px);
    z-index: 0;
}

.product-img img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    transition: .3s ease;
    position: relative;
    z-index: 1;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.wines-grid .product-img::after {
    width: 42%;
    max-width: 190px;
}

.wines-grid .product-img img {
    width: 210px;
    height: 210px;
}

.specialties-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1120px;
    margin: 0 auto;
}

.specialties-section .container {
    position: relative;
    padding-top: 56px;
}

.specialties-overlay {
    position: absolute;
    top: -228px;
    left: 20px;
    width: 540px;
    height: auto;
    transform: scaleX(-1) rotate(-10deg);
    pointer-events: none;
    z-index: 2;
}

.floating-honey-dipper {
    position: absolute;
    right: -50px;
    top: 110%;
    width: 371px;
    max-width: none;
    pointer-events: none;
    z-index: 1;
}

.floating-wabenhonig {
    position: absolute;
    left: -120px;
    top: -140px;
    width: 500px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(120px);
    transition: transform .8s ease, opacity .8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.floating-honey-dipper.slide-in-right {
    transition: transform 1.8s ease, opacity 1.8s ease;
    transition-delay: .1s;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-180px) rotate(-6deg);
    transition: transform .85s ease, opacity .85s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
}

.specialties-overlay.slide-in-left {
    transform: translateX(-120px) scaleX(-1) rotate(-10deg);
}

.specialties-overlay.slide-in-left.visible {
    transform: translateX(0) scaleX(-1) rotate(-10deg);
}

@media (min-width: 969px) {
    .hero {
        background-position: center top;
        min-height: 80vh;
    }

    .hero-inner {
        min-height: calc(70vh - var(--header-h) - 40px);
    }

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

    .honey-grid .product-img img {
        width: 250px;
        height: 250px;
    }

    .wines-grid .product-img img {
        width: 315px;
        height: 315px;
    }

    .wines-grid .product-img::after {
        width: 42%;
        max-width: 240px;
    }

    .specialties-grid .product-img::after {
        width: 42%;
        max-width: 240px;
    }

    .pollen-image-free {
        width: 450px;
        height: 450px;
    }

    .pollen-image-wrap::after {
        top: 440px;
    }
}

.product-card h4 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 8px;
}

.product-card h4 em {
    text-decoration: underline;
    text-underline-offset: 3px;
    font-style: normal;
}

.product-card p {
    font-size: 13px;
    color: var(--text-light);
    max-width: 240px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ========================================
   Blütenpollen
   ======================================== */
.pollen-section {
    padding: 80px 0;
    background: var(--bg-gradient);
    position: relative;
    overflow: visible;
}

.pollen-inner {
    display: grid;
    grid-template-columns: 26% 74%;
    gap: 60px;
    align-items: start;
}

.pollen-image-wrap {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
}

.pollen-image-free {
    width: 300px;
    height: 300px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.pollen-image-wrap::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 300px;
    transform: translateX(-50%);
    width: 72%;
    height: 22px;
    border-radius: 50%;
    background: rgba(44, 33, 24, 0.58);
    filter: blur(9px);
    z-index: 0;
}

.pollen-text h2 {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 18px;
}

.pollen-text {
    position: relative;
    padding-right: 120px;
}

.pollen-flower {
    position: absolute;
    top: -126px;
    right: 104px;
    width: 350px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.pollen-flower.slide-in-right {
    transform: translateX(120px) scaleX(-1);
    transition: transform 1.8s ease, opacity 1.8s ease;
}

.pollen-flower.slide-in-right.visible {
    transform: translateX(0) scaleX(-1);
}

.pollen-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 14px;
}

.pollen-cluster {
    margin-top: 24px;
    position: relative;
    width: min(620px, 100%);
    height: 320px;
}

.pollen-cluster img {
    position: absolute;
    width: 280px;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    border: 3px solid var(--bg-white);
    box-shadow: 0 8px 24px rgba(44, 33, 24, 0.16);
}

.pollen-cluster img:nth-child(1) {
    top: 0;
    right: 0;
    z-index: 3;
}

.pollen-cluster img:nth-child(2) {
    top: 92px;
    left: 18px;
    z-index: 1;
}

.pollen-cluster img:nth-child(3) {
    top: 152px;
    right: 54px;
    z-index: 2;
}

/* ========================================
   Story Slider
   ======================================== */
.story-slider-section {
    padding: 80px 0;
    background: var(--bg-gradient);
}

.story-slider {
    position: relative;
}

.story-track-wrap {
    overflow: hidden;
}

.story-track {
    display: flex;
    gap: 12px;
    transition: transform .35s ease;
    will-change: transform;
}

.story-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.story-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-white);
    color: var(--text);
    font-size: 17px;
    cursor: pointer;
    z-index: 3;
    box-shadow: var(--shadow);
}

.story-prev {
    left: 12px;
}

.story-next {
    right: 12px;
}

.story-arrow:hover {
    border-color: var(--accent);
}

/* ========================================
   About
   ======================================== */
.about {
    padding: 80px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
    padding-bottom: 64px;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
}

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

.about-note {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 20px 24px;
}

.about-note h3 {
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 8px;
}

.about-note p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 12px;
}

.about-text h2 {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 26px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-value-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--bg-featured);
    color: var(--accent-dark);
    border: 1px solid var(--border);
    margin-top: 2px;
}

.about-value p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.wines-section .container {
    position: relative;
}

.wines-bee {
    position: absolute;
    left: 86px;
    top: -50px;
    width: 100px;
    height: auto;
    --wbee-x: 0px;
    --wbee-y: 0px;
    --wbee-rot: 0deg;
    transform: translate(var(--wbee-x), var(--wbee-y)) rotate(calc(120deg + var(--wbee-rot)));
    pointer-events: none;
    z-index: 2;
    will-change: transform;
}

/* ========================================
   Reviews
   ======================================== */
.reviews {
    padding: 80px 0;
    background: var(--bg-gradient);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: .3s ease;
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
}

.stars {
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    gap: 3px;
}

.review-text {
    font-size: 14px;
    font-style: italic;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 20px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.reviewer strong {
    display: block;
    font-size: 13px;
}

.reviewer span {
    font-size: 11px;
    color: var(--text-muted);
}

/* ========================================
   Contact
   ======================================== */
.contact {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr);
    gap: 60px;
    align-items: start;
}

.contact-left h2 {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 26px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text);
    background: var(--bg);
    transition: .25s ease;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form textarea {
    resize: vertical;
    min-height: 160px;
}

.form-honey {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.form-status {
    margin: 0;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.form-status--success {
    background: rgba(76, 140, 74, 0.12);
    color: #2d5a2b;
    border: 1px solid rgba(76, 140, 74, 0.25);
}

.form-status--error {
    background: rgba(180, 60, 50, 0.1);
    color: #8b2e26;
    border: 1px solid rgba(180, 60, 50, 0.2);
}

.contact-form .btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.contact-form .btn {
    align-self: flex-start;
    border-radius: 999px;
    padding: 14px 34px;
}

.contact-card {
    background: #f8f8f8;
    border-radius: 28px;
    padding: 36px 36px 30px;
}

.contact-card h3 {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 26px;
}

.contact-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-details li i {
    width: 20px;
    margin-top: 6px;
    color: var(--accent-dark);
    font-size: 14px;
}

.contact-details strong {
    display: block;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 2px;
    color: var(--text);
}

.contact-details span,
.contact-details span a {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
}

.contact-details a:hover {
    color: var(--text);
}

.contact-socials {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.contact-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--accent-dark);
    font-size: 16px;
}

.contact-socials a:hover {
    border-color: var(--accent);
    transform: translateY(-1px);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 22px 0 0;
    background: var(--text);
    color: rgba(255, 255, 255, .6);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    padding-bottom: 14px;
}

.footer h5 {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer-contact p,
.footer-legal a {
    font-size: 12px;
    line-height: 1.45;
    margin: 0 0 4px;
    color: rgba(255, 255, 255, .5);
}

.footer-legal a {
    display: block;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 10px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
}

/* ========================================
   Animations
   ======================================== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card.fade-up:nth-child(2) { transition-delay: .08s; }
.product-card.fade-up:nth-child(3) { transition-delay: .16s; }
.product-card.fade-up:nth-child(4) { transition-delay: .24s; }
.product-card.fade-up:nth-child(5) { transition-delay: .32s; }
.product-card.fade-up:nth-child(6) { transition-delay: .40s; }

.feature-card.fade-up:nth-child(2) { transition-delay: .1s; }
.feature-card.fade-up:nth-child(3) { transition-delay: .2s; }

.review-card.fade-up:nth-child(2) { transition-delay: .1s; }
.review-card.fade-up:nth-child(3) { transition-delay: .2s; }

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 968px) {
    .wines-bee {
        left: 22px;
        top: 42px;
        width: 72px;
    }

    .floating-wabenhonig {
        left: -24px;
        top: -70px;
        width: 210px;
    }

    .floating-honey-dipper {
        right: 24px;
        top: 46%;
        width: 78px;
        max-width: 40vw;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .features-grid,
    .products-grid,
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }

    .story-slide {
        flex-basis: 100%;
        width: 100%;
    }

    .about-inner,
    .pollen-inner,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-left h2 {
        font-size: 32px;
    }

    .contact-card h3 {
        font-size: 30px;
    }

    .contact-details strong {
        font-size: 17px;
    }

    .contact-details span,
    .contact-details span a {
        font-size: 14px;
    }

    .about-text h2 {
        font-size: 40px;
    }

    .feature-card h2,
    .about-value h4 {
        font-size: 24px;
    }

    .pollen-image-wrap {
        min-height: 340px;
        justify-content: flex-start;
    }

    .pollen-image-free {
        width: 300px;
        height: 300px;
    }

    .pollen-image-wrap::after {
        top: 292px;
        width: 55%;
    }

    .pollen-text {
        padding-right: 110px;
    }

    .pollen-flower {
        width: 180px;
        right: -36px;
        top: -14px;
    }

    .footer-inner {
        gap: 20px;
    }

    .specialties-overlay {
        left: -24px;
        top: -56px;
        width: 290px;
    }
}

@media (max-width: 640px) {
    .wines-bee {
        left: 10px;
        top: 20px;
        width: 50px;
    }

    .floating-wabenhonig {
        left: 0;
        top: -34px;
        width: 140px;
    }

    .floating-honey-dipper {
        right: -20px;
        top: 30%;
        width: 120px;
    }

    .header {
        width: 100%;
        top: 0;
        left: 0;
        transform: none;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
    }

    .nav {
        display: none;
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-gradient);
        padding: 20px 24px;
        gap: 16px;
        border-bottom: 1.5px solid var(--border);
        box-shadow: var(--shadow-lg);
    }

    .nav.open {
        display: flex;
    }

    .burger {
        display: flex;
        padding: 12px;
        margin-right: -8px;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .hero-inner {
        min-height: 68vh;
        align-items: end;
    }

    .hero-text {
        margin-bottom: 20px;
    }

    .hero-desc,
    .hero-actions {
        display: none;
    }

    .features-grid,
    .products-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .story-slide {
        flex-basis: 100%;
        width: 100%;
        height: 220px;
    }

    .story-arrow {
        width: 46px;
        height: 46px;
        font-size: 15px;
    }

    .pollen-cluster {
        height: 230px;
    }

    .pollen-text {
        padding-right: 0;
    }

    .pollen-flower {
        width: 100px;
        right: -10px;
        top: -30px;
    }

    .pollen-cluster img {
        width: 180px;
        height: 120px;
    }

    .pollen-cluster img:nth-child(2) {
        top: 72px;
        left: 0;
    }

    .pollen-cluster img:nth-child(3) {
        top: 118px;
        right: 10px;
    }

    .specialties-grid {
        max-width: 100%;
    }

    .specialties-overlay {
        width: 210px;
        left: 0;
        top: -28px;
        opacity: 0.9;
    }

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

    .footer-inner {
        flex-direction: column;
        gap: 12px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .about-text h2,
    .contact-left h2 {
        font-size: 28px;
    }

    .about-visual {
        padding-bottom: 0;
    }

    .about-image img {
        height: 360px;
    }

    .about-note {
        position: static;
        margin-top: 16px;
    }

    .about-note h3 {
        font-size: 24px;
    }

    .feature-card h2,
    .about-value h4 {
        font-size: 22px;
    }
}
