@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;600;700;800&family=Noto+Sans+Arabic:wght@400;600;700;800&display=swap');

:root {
    --bg-beige: #fbf7e9;
    --strawberry-red: #e31b23;
    --misfits-yellow: #f2c057;
    --misfits-green: #15513c;
    --misfits-dark: #231f20;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-beige);
    color: var(--misfits-dark);
    margin: 0;
    overflow-x: hidden;
}

body.lang-ru {
    font-family: 'Noto Sans', 'Outfit', sans-serif;
}

body.lang-ar {
    font-family: 'Noto Sans Arabic', sans-serif;
}

html {
    scroll-behavior: smooth;
}

#how-it-works,
#harvest-highlight,
#products {
    scroll-margin-top: 120px;
}

.font-serif {
    font-family: 'DM Serif Display', serif;
}

.calendar-font-serif {
    font-family: 'Playfair Display', serif;
}

.corporate-section {
    position: relative;
}

.info-card {
    --info-accent: #e31b23;
    position: relative;
    padding: 0 0 0 1.9rem;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.info-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 999px;
    background: var(--info-accent);
}

body.lang-ru .font-serif,
body.lang-ru .calendar-font-serif {
    font-family: 'DM Serif Display', 'Noto Sans', serif;
}

body.lang-ar .font-serif,
body.lang-ar .calendar-font-serif {
    font-family: 'Noto Sans Arabic', serif;
}

.site-lang-menu {
    position: relative;
}

.site-lang-menu-toggle {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--misfits-dark);
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 4px 4px 0 rgba(35, 31, 32, 0.12);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-lang-menu-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 6px 6px 0 rgba(35, 31, 32, 0.12);
}

.site-lang-menu-toggle[aria-expanded="true"] {
    box-shadow: 6px 6px 0 rgba(227, 27, 35, 0.16);
}

.site-lang-menu-bars {
    width: 18px;
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
}

.site-lang-menu-bars span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--misfits-dark);
}

.form-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 120;
    padding: 0.95rem 1.15rem;
    border: 2px solid var(--misfits-dark);
    background: #ffffff;
    color: var(--misfits-dark);
    box-shadow: 8px 8px 0 var(--strawberry-red);
    font-size: 0.95rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.form-toast.visible {
    opacity: 1;
    transform: translateY(0);
}

#contact-form button[disabled] {
    opacity: 0.8;
    cursor: wait;
}

.product-gallery-trigger {
    display: block;
    overflow: hidden;
    cursor: zoom-in;
}

.product-gallery-trigger img {
    transition: transform 0.35s ease;
}

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

.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 140;
    background: rgba(22, 18, 18, 0.78);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.product-lightbox-dialog {
    position: relative;
    width: min(88vw, 760px);
    min-height: min(60vh, 520px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.product-lightbox-image {
    max-width: 100%;
    max-height: min(72vh, 640px);
    width: 100%;
    object-fit: contain;
    cursor: zoom-out;
    border: 2px solid var(--misfits-dark);
    background: #fff;
    box-shadow: 14px 14px 0 rgba(227, 27, 35, 0.9);
}

body.lightbox-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .product-lightbox-dialog {
        width: min(92vw, 560px);
        min-height: 48vh;
        padding: 1rem;
    }
}

.site-lang-menu-panel {
    position: absolute;
    top: calc(100% + 0.85rem);
    right: 0;
    min-width: 92px;
    padding: 0.45rem;
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid var(--misfits-dark);
    border-radius: 1rem;
    box-shadow: 12px 12px 0 rgba(227, 27, 35, 0.12);
    display: grid;
    gap: 0.3rem;
    z-index: 120;
}

.site-lang-menu-panel[hidden] {
    display: none;
}

.site-lang-btn {
    width: 100%;
    background: transparent;
    border: 1px solid transparent;
    padding: 0.5rem 0.7rem;
    border-radius: 0.7rem;
    font-size: 0.76rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    color: rgba(35, 31, 32, 0.68);
    text-align: center;
}

.site-lang-btn:hover {
    color: var(--misfits-dark);
    background: #fff6f6;
}

.site-lang-btn.active {
    background: var(--strawberry-red);
    color: white;
}

html[dir="rtl"] body {
    text-align: right;
}

html[dir="rtl"] .site-lang-menu-panel {
    right: auto;
    left: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.page-fade {
    transition: opacity 0.35s ease;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% { transform: scale(1) rotate(12deg); }
    50% { transform: scale(1.05) rotate(15deg); }
}

.badge-pulse {
    animation: subtle-pulse 4s ease-in-out infinite;
}

.img-zoom {
    overflow: hidden;
}

.img-zoom img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-zoom:hover img {
    transform: scale(1.08);
}

.btn-mixed {
    background-color: var(--strawberry-red);
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--misfits-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 4px 4px 0 var(--misfits-dark);
}

.btn-mixed:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--misfits-dark);
    background-color: #c41219;
}

.site-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 0.35rem 0.85rem 0.35rem 0;
    border-bottom: 1px solid rgba(35, 31, 32, 0.08);
    background: rgba(251, 247, 233, 0.95);
    backdrop-filter: blur(10px);
    transition: background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, backdrop-filter 0.28s ease;
}

.site-header.is-scrolled {
    border-bottom-color: rgba(35, 31, 32, 0.12);
    background: rgba(251, 247, 233, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 28px rgba(35, 31, 32, 0.08);
}

.site-header-compact {
    flex-wrap: nowrap;
    padding-left: 0;
    padding-right: 2.5rem;
}

.site-header-main,
.site-header-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.2rem;
}

.site-header-compact .site-header-main,
.site-header-compact .site-header-actions {
    flex-wrap: nowrap;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    color: var(--misfits-dark);
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.site-brand-logo {
    width: 300px;
    height: 105px;
    object-fit: contain;
    flex: 0 0 auto;
}

.site-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.site-nav-link {
    transition: color 0.2s ease, opacity 0.2s ease;
    padding: 0.1rem 0;
    white-space: nowrap;
}

.site-nav-link:hover,
.site-nav-link.active {
    color: #dc2626;
}

.site-icon-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--misfits-dark);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-icon-link:hover {
    opacity: 0.7;
}

.btn-yellow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    border: 2px solid #000;
    background: var(--misfits-yellow);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.9);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border-radius: 0.85rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-yellow:hover {
    transform: translateY(-2px);
}

.btn-paper,
.btn-ink {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid #000;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform 0.2s ease;
}

.btn-paper {
    background: #fff;
    color: var(--misfits-dark);
    box-shadow: 4px 4px 0 #000;
}

.btn-ink {
    background: var(--misfits-dark);
    color: #fff;
    box-shadow: 4px 4px 0 var(--strawberry-red);
}

.btn-paper:hover,
.btn-ink:hover {
    transform: translateY(-2px);
}

.section-eyebrow {
    display: inline-block;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid var(--strawberry-red);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.section-eyebrow-dark {
    border-bottom-color: #000;
}

.footer-kicker {
    margin-bottom: 1.5rem;
    color: #dc2626;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-signup {
    display: flex;
    border: 2px solid #000;
    background: #fff;
    box-shadow: 4px 4px 0 #000;
}

.footer-signup-input {
    width: 100%;
    padding: 0 1rem;
    border: 0;
    outline: 0;
    background: #fff;
}

.footer-signup-button {
    padding: 0.5rem 1rem;
    background: var(--strawberry-red);
    color: #fff;
    font-weight: 700;
}

@media (min-width: 768px) {
    .site-header {
        padding-left: 0;
        padding-right: 2rem;
    }

    .site-header-main {
        gap: 0;
    }

    .site-header-actions {
        gap: 0.8rem;
    }

    .site-nav-links {
        gap: 0.95rem;
        font-size: 0.88rem;
    }
}

@media (min-width: 1024px) {
    .site-header-compact .site-nav-links {
        display: flex;
        gap: 1.35rem;
        font-size: 0.9rem;
    }

    .site-header-compact .site-header-main {
        gap: 1.6rem;
    }

    .site-header-compact .site-header-actions {
        gap: 1rem;
    }
}

.badge-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 0.7rem;
    line-height: 1.1;
    padding: 10px;
    border: 2px solid var(--misfits-dark);
    text-transform: uppercase;
}

.recipes-clean-hero,
.recipes-clean-wave,
.recipe-book-hero,
.recipe-book-section {
    position: relative;
    overflow: hidden;
    background: #fcfaf3;
}

.recipe-book-hero {
    min-height: 430px;
    display: flex;
    align-items: center;
    background: #fff7f7;
    border-bottom: 10px solid #e31b23;
}

.recipe-book-hero::after,
.recipe-book-section::before,
.recipe-book-meta::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 24px;
    background:
        linear-gradient(45deg, rgba(227, 27, 35, 0.16) 25%, transparent 25% 75%, rgba(227, 27, 35, 0.16) 75%),
        linear-gradient(45deg, rgba(227, 27, 35, 0.16) 25%, transparent 25% 75%, rgba(227, 27, 35, 0.16) 75%);
    background-color: rgba(255, 255, 255, 0.8);
    background-position: 0 0, 12px 12px;
    background-size: 24px 24px;
    pointer-events: none;
}

.recipes-hero-bg,
.recipes-hero-bg-overlay {
    position: absolute;
    inset: 0;
}

.recipes-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    opacity: 1;
    z-index: 0;
}

.recipes-hero-bg-overlay {
    z-index: 1;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 247, 247, 0.5) 46%, rgba(255, 255, 255, 0.08) 100%);
}

.recipes-hero-content {
    width: 100%;
    position: relative;
    z-index: 5;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.recipe-book-cover {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.recipes-hero-content h1,
.recipes-hero-content p {
    text-shadow: 0 2px 18px rgba(255, 255, 255, 0.75);
}

.recipes-clean-hero::before,
.recipe-book-hero::before {
    display: none;
}

.recipe-book-meta {
    position: relative;
    background: #fffaf7;
    padding-top: 2rem;
}

.recipes-hero-eyebrow {
    color: #15513c;
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.recipes-hero-eyebrow::before {
    content: "";
    width: 2.5rem;
    height: 2px;
    background: #e31b23;
}

.recipes-clean-wave::before {
    content: "";
    position: absolute;
    inset: 12rem 0 0;
    background: #fff1f1;
    clip-path: ellipse(88% 38% at 50% 0%);
}

.recipe-book-section {
    background:
        radial-gradient(circle at 12% 10%, rgba(227, 27, 35, 0.08), transparent 22%),
        linear-gradient(180deg, #fffaf7 0%, #fcfaf3 100%);
}

.recipe-book-section-alt {
    background:
        radial-gradient(circle at 88% 12%, rgba(21, 81, 60, 0.08), transparent 22%),
        linear-gradient(180deg, #fff7f7 0%, #fffdf9 100%);
}

.recipe-book-spread {
    position: relative;
}

.recipe-book-spread::before {
    content: "";
    position: absolute;
    top: 2rem;
    bottom: 2rem;
    left: 50%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(80, 22, 28, 0.22), transparent);
    box-shadow: 0 0 28px rgba(80, 22, 28, 0.2);
}

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

.recipe-photo-slot {
    height: 100%;
    min-height: 420px;
    border-radius: 0.7rem;
    background: #fffaf7;
    border: 1px solid rgba(115, 24, 31, 0.16);
    overflow: hidden;
}

.recipe-photo-column {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.recipe-photo-column .recipe-photo-slot {
    min-height: 360px;
}

.recipe-photo-slot > div {
    height: 100%;
    width: 100%;
}

.recipe-book-photo {
    flex: 1;
    padding: 1rem;
    box-shadow: 0 18px 40px rgba(80, 22, 28, 0.12);
}

.recipe-photo-slot img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    display: block;
    border-radius: 0.45rem;
}

.recipe-clean-card {
    border-radius: 0.9rem;
    background:
        linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 252, 247, 0.94)),
        repeating-linear-gradient(0deg, transparent 0 31px, rgba(227, 27, 35, 0.055) 31px 32px);
    border: 1px solid rgba(115, 24, 31, 0.14);
    box-shadow: 0 18px 50px rgba(80, 22, 28, 0.1);
}

.recipe-book-page {
    position: relative;
}

.recipe-book-page::before {
    content: "";
    position: absolute;
    top: 0.9rem;
    bottom: 0.9rem;
    left: 0.9rem;
    width: 3px;
    border-radius: 999px;
    background: #e31b23;
}

.recipe-clean-pill {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(35, 31, 32, 0.08);
}

.recipe-book-notes {
    background: #fffaf7;
}

.recipe-book-note {
    border-top: 4px solid #15513c;
}

.recipe-book-cta {
    background:
        linear-gradient(rgba(227, 27, 35, 0.94), rgba(196, 18, 25, 0.94)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.16) 0 12px, transparent 12px 24px);
}

.blob-strawberry {
    background-color: #ffeded;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3.5rem 2.5rem;
}

.product-grid--compact {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem 0.75rem;
}

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

.product-spot__visual {
    position: relative;
    min-height: 230px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem 1rem 0;
    margin-bottom: 1.5rem;
}

.product-spot__blob {
    position: absolute;
    left: 50%;
    bottom: 1.1rem;
    width: min(100%, 290px);
    height: 128px;
    transform: translateX(-50%);
    border-radius: 999px;
}

.product-spot__image {
    position: relative;
    z-index: 1;
    max-width: min(92%, 250px);
    max-height: 190px;
    object-fit: contain;
    filter: drop-shadow(0 16px 18px rgba(35, 31, 32, 0.18));
}

.product-spot__title {
    font-size: clamp(1.7rem, 2vw, 2.3rem);
    line-height: 1.1;
    margin: 0;
    color: var(--misfits-dark);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.product-spot--compact {
    text-align: center;
}

.product-spot__visual--compact {
    min-height: 84px;
    padding: 0.1rem 0.2rem 0;
    margin-bottom: 0.4rem;
}

.product-spot__image--compact {
    max-width: min(86%, 102px);
    max-height: 72px;
    filter: drop-shadow(0 7px 9px rgba(35, 31, 32, 0.13));
}

.product-spot--compact .product-spot__blob {
    width: min(100%, 108px);
    height: 50px;
    bottom: 0.35rem;
}

.product-spot__title--compact {
    font-size: clamp(0.76rem, 0.82vw, 0.92rem);
    font-weight: 600;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.intro-banner {
    background-color: #e9eddb;
    padding: 5rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.intro-banner h1,
.products-collection-title {
    font-family: 'Lora', serif;
    letter-spacing: -0.02em;
}

.intro-banner h1 {
    font-size: clamp(2.7rem, 5vw, 4rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-banner p {
    font-family: 'Public Sans', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.8;
    color: #1a1a1a;
}

.harvest-calendar-section {
    position: relative;
    margin-top: 5.5rem;
    padding: 0 0.5rem;
}

.calendar-panel {
    border-radius: 2.5rem;
    background:
        radial-gradient(circle at 12% 12%, rgba(227, 24, 55, 0.06), transparent 18%),
        radial-gradient(circle at 88% 84%, rgba(27, 67, 50, 0.06), transparent 18%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 250, 248, 0.96) 100%);
    padding: 4rem 2rem;
    box-shadow: 0 22px 60px rgba(152, 18, 43, 0.08);
    border: 1px solid rgba(227, 24, 55, 0.08);
}

.month-card {
    position: relative;
    border: 1px solid rgba(27, 67, 50, 0.1);
    border-radius: 1.25rem;
    background: linear-gradient(180deg, #ffffff 0%, #fff9f8 100%);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.month-card.active {
    border-color: #e31837;
    background: linear-gradient(180deg, rgba(255, 245, 246, 0.96) 0%, rgba(255, 240, 242, 0.96) 100%);
    box-shadow: 0 14px 34px -10px rgba(227, 24, 55, 0.18);
}

.month-card.inactive {
    opacity: 0.42;
}

.month-fruit {
    animation: float-contained 3s ease-in-out infinite;
    z-index: 10;
}

.month-dot-active {
    background: #e31837;
    box-shadow: 0 0 0 6px rgba(227, 24, 55, 0.08);
}

.month-dot-inactive {
    background: #e5e7eb;
}

.reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.calendar-section-title-line {
    width: 60px;
    height: 4px;
    margin: 1.5rem auto;
    border-radius: 2px;
    background: linear-gradient(90deg, #e31837 0%, #ff9a8b 100%);
}

@keyframes float-contained {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-grid--compact {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.2rem 0.75rem;
    }

    .recipe-book-spread::before {
        display: none;
    }

}

@media (max-width: 640px) {
    .site-lang-menu {
        width: auto;
    }

    .site-header,
    .site-header-compact {
        padding: 0.6rem 0.9rem;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .site-header-main,
    .site-header-actions,
    .site-header-compact .site-header-main,
    .site-header-compact .site-header-actions {
        width: 100%;
        gap: 0.3rem;
    }

    .site-header-main,
    .site-header-compact .site-header-main {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .site-header-actions,
    .site-header-compact .site-header-actions {
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .site-brand {
        font-size: 1.35rem;
        line-height: 1;
    }

    .site-nav-links {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        gap: 0.9rem;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0.15rem 0 0.35rem;
        font-size: 0.76rem;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .site-nav-links::-webkit-scrollbar {
        display: none;
    }

    .site-brand-logo {
        width: 280px;
        height: 94px;
    }

    .site-icon-link {
        min-width: 0;
        gap: 0.35rem;
        font-size: 0.72rem;
        white-space: nowrap;
    }

    .site-icon-link svg {
        width: 18px;
        height: 18px;
        flex: 0 0 auto;
    }

    .btn-yellow {
        padding: 0.45rem 0.8rem;
        font-size: 0.72rem;
        white-space: nowrap;
    }

    .site-lang-menu-toggle {
        width: 42px;
        height: 42px;
        border-radius: 0.7rem;
    }

    .btn-mixed,
    .btn-paper,
    .btn-ink {
        max-width: 100%;
        padding: 0.75rem 1.15rem;
        font-size: 0.78rem;
        line-height: 1.2;
        text-align: center;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 2.75rem;
    }

    .info-card {
        padding-left: 1.2rem;
    }

    .product-grid--compact {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.35rem 0.7rem;
    }

    .harvest-calendar-section {
        margin-top: 4rem;
        padding: 0;
    }

    .calendar-panel {
        padding: 3rem 1rem 2rem;
        border-radius: 1.75rem;
    }

    .recipes-clean-wave::before {
        inset: 8rem 0 0;
        clip-path: ellipse(120% 30% at 50% 0%);
    }

    .recipes-clean-hero,
    .recipe-book-hero {
        min-height: 420px;
    }

    .recipe-book-cover {
        border-radius: 1rem;
    }

    .recipe-photo-slot {
        min-height: 280px;
    }

    .recipe-photo-column .recipe-photo-slot {
        min-height: 260px;
    }

    .month-card {
        min-height: 112px;
    }

    .product-spot__visual {
        min-height: 210px;
    }

    .product-spot__blob {
        height: 118px;
        width: min(92%, 300px);
    }

    .product-spot__visual--compact {
        min-height: 82px;
    }

    .product-spot--compact .product-spot__blob {
        width: min(100%, 104px);
        height: 50px;
    }

    .intro-banner {
        padding: 3.8rem 1rem;
    }

}
