/* ===== ZÁKLAD ===== */
html {
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #fff;
    overflow-x: hidden;
}

/* --- Homepage tokens --- */
:root {
    --gold: rgba(191, 155, 48, 0.85);
    --bordeaux-1: #2a0f11;
    --bordeaux-2: #4b141b;
    --paper: #fbfaf8;
    --brand-red: #7a0f1d;
}

/* ===== HERO – TEXT ===== */
.text-bg {
    padding: 0;
    max-width: 46ch;
    margin: 0 auto;
    text-align: center;
    color: #111;
}

.text-bg h2 {
    font-family: "Faculty Glyphic", serif;
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.6rem;
}

.text-bg h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 1px;
    margin: 0.8rem auto 0;
    background: rgba(0, 0, 0, 0.25);
}

.text-bg p {
    font-family: "Faculty Glyphic", serif;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.6;
    -webkit-text-stroke: 0.35px rgba(0, 0, 0, 0.18);
    text-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

/* ===== HERO ===== */
.hero {
    position: relative;
}

.hero-bg {
    position: relative;
    overflow: hidden;
    height: 100svh;
    height: 100vh;
    width: 100%;

    --hero-photo: url("Images/diskphoto/DJI_0973.jpg");
    --blend: 0;

    background-image: var(--hero-photo);
    background-size: cover;
    background-position: center;
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
            radial-gradient(1200px 700px at 72% 10%, rgba(255, 208, 148, 0.22), rgba(255, 208, 148, 0) 60%),
            radial-gradient(1000px 700px at 20% 65%, rgba(122, 15, 29, 0.30), rgba(122, 15, 29, 0) 62%),
            linear-gradient(180deg, rgba(22, 6, 9, 0.10) 0%, rgba(22, 6, 9, 0.32) 78%, rgba(22, 6, 9, 0.45) 100%);
    mix-blend-mode: multiply;
    opacity: 0.98;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    box-sizing: border-box;
    overflow: hidden;
}

/* ===== HERO HEADER ===== */
.hero-header {
    margin: clamp(1rem, 4vh, 2.8rem) 0 clamp(0.6rem, 2.2vh, 1.8rem);
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
    transform: translateY(-6px);
    position: relative;
}

.hero-logo {
    margin-bottom: clamp(5rem, 10vh, 10rem);
    --hero-logo-h: clamp(78px, 11vh, 132px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(3rem, 6vw, 7rem);
    position: relative;
}

.hero-logo img {
    width: auto;
    height: calc(var(--hero-logo-h) * 2);

    opacity: 0.995;

    filter:
            brightness(0) invert(1)
            drop-shadow(0 12px 26px rgba(0,0,0,0.30));

    transition: opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

.hero-logo::after {
    content: "";
    position: absolute;
    inset: -6px -10px;
    pointer-events: none;
    background: radial-gradient(closest-side, rgba(122, 15, 29, 0.18), rgba(122, 15, 29, 0) 70%);
    mix-blend-mode: multiply;
    opacity: 0.55;
}

.hero-logo a:hover img,
.hero-fattoria-inline:hover img {
    transform: scale(1.03);
}

.hero-fattoria-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 10px;
}

.hero-fattoria-inline img {
    height: var(--hero-logo-h);
    width: auto;
    display: block;
    opacity: 0.995;
    filter:
            brightness(0) invert(1)
            drop-shadow(0 12px 26px rgba(0, 0, 0, 0.25));
    transition: transform 0.18s ease, filter 0.18s ease, opacity 0.18s ease;
}

.hero-fattoria-inline:focus-visible {
    outline: 3px solid rgba(191, 155, 48, 0.55);
    outline-offset: 4px;
}

@media (max-width: 560px) {
    .hero-logo {
        gap: 1.1rem;
    }
}

.hero-headline {
    font-family: "Faculty Glyphic", serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: clamp(2.1rem, 4.2vw, 3.25rem);
    line-height: 1.05;
    margin: 0 0 0.8rem;
    text-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
    max-width: 62ch;
    margin: 0 auto;
    font-size: clamp(0.95rem, 1.25vw, 1.05rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.86);
    text-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.hero-cta {
    display: flex;
    gap: 0.9rem;
    justify-content: center;
    margin-top: 1.25rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.55rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
    user-select: none;
    white-space: nowrap;
}

.cta-btn--primary {
    background: rgba(122, 15, 29, 0.88);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.cta-btn--ghost {
    background: rgba(251, 250, 248, 0.86);
    color: #2a1717;
    border: 1px solid rgba(42, 23, 23, 0.22);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(10px);
}

.cta-btn:hover {
    transform: translateY(-1px);
}

.cta-btn--primary:hover {
    background: rgba(142, 18, 34, 0.92);
}

.cta-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.92);
}

/* ===== HERO NAV ===== */
.hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 2rem;
    box-sizing: border-box;
    position: relative;
}

/* =========================================================
   MOBILE NAV (hamburger)
   ========================================================= */
.mobile-nav-toggle{
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(0,0,0,0.55);
    color: #fff;
    cursor: pointer;
    z-index: 1200;
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav-toggle:hover{
    background: rgba(0,0,0,0.65);
}

.mobile-nav-toggle:focus-visible{
    outline: 3px solid rgba(191, 155, 48, 0.55);
    outline-offset: 3px;
}

.mobile-nav-toggle__icon{
    position: relative;
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: currentColor;
    border-radius: 2px;
}

.mobile-nav-toggle__icon::before,
.mobile-nav-toggle__icon::after{
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

.mobile-nav-toggle__icon::before{ top: -6px; }
.mobile-nav-toggle__icon::after{ top: 6px; }

.mobile-nav{
    position: fixed;
    inset: 0;
    display: none;
    z-index: 2000;
}

.mobile-nav.is-open{
    display: block;
}

.mobile-nav__backdrop{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
}

.mobile-nav__panel{
    position: absolute;
    left: 0.1rem;
    top: calc(12px + env(safe-area-inset-top));
    width: min(360px, calc(100vw - 24px));
    border-radius: 16px;
    background: rgba(0,0,0,0.85);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 22px 70px rgba(0,0,0,0.35);
    padding: 0.75rem;
}

/* navigace uvnitř panelu = sloupec */
.mobile-nav .hero-nav{
    position: static;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    background: transparent;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    border: 0;
}

.mobile-nav .hero-nav a{
    padding: 0.85rem 0.9rem;
    border-radius: 12px;
    letter-spacing: 0.16em;
}

.mobile-nav .hero-nav a:hover{
    background: rgba(255,255,255,0.10);
}

body.mobile-nav-open{
    overflow: hidden;
}

@media (min-width: 761px){
    /* desktop: hamburger/panel pryč => zůstává původní nav */
    .mobile-nav-toggle{ display: none !important; }
    .mobile-nav{ display: none !important; }

    /* explicitně vrať původní nav (kdyby ji něco přepsalo) */
    .hero-top > .hero-nav{ display: flex !important; }
}

@media (max-width: 760px){
    /* mobile: ukázat hamburger */
    .hero-top{ gap: 0.75rem; }

    .mobile-nav-toggle{
        display: inline-grid;
        place-items: center;
    }

    /* aby se původní hero-nav nezobrazovala mimo panel */
    .hero-top > .hero-nav{
        display: none;
    }
}

/* ===== HERO NAV ===== */
.hero-nav {
    position: absolute;
    left: 50%;
    top: 44%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 2.2rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.35);
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    z-index: 1000;
}

.hero-nav a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-size: 0.86rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.hero-nav a:hover {
    opacity: 1;
}

/* jazykový přepínač */
.lang-switcher {
    display: flex;
    gap: 0.5rem;
    z-index: 1100;
}

.lang-btn {
    background: rgba(0, 0, 0, 0.60);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 0.35rem 0.75rem;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.82rem;
    transition: background 0.2s, transform 0.18s, color 0.2s;
    text-decoration: none;
}

.lang-btn:hover {
    transform: translateY(-1px);
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.92);
    color: #111;
}

/* ===== HERO FATTORIA LOGO ===== */
.hero-fattoria-logo {
    position: absolute;
    left: 11.2rem;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0.1rem 0.2rem;
    border-radius: 10px;
    background: transparent;
    z-index: 1100;
}

.hero-fattoria-logo img {
    filter:
            brightness(0) saturate(100%)
            invert(11%) sepia(91%) saturate(6500%) hue-rotate(345deg)
            brightness(1.04) contrast(1.10)
            drop-shadow(0 16px 34px rgba(0, 0, 0, 0.26)) !important;
}

.hero-fattoria-logo:hover img {
    transform: scale(1.12) !important;
    opacity: 1 !important;
    filter:
            brightness(0) saturate(100%)
            invert(11%) sepia(91%) saturate(6500%) hue-rotate(345deg)
            brightness(1.06) contrast(1.14)
            drop-shadow(0 22px 46px rgba(0, 0, 0, 0.32)) !important;
}

.hero-fattoria-logo:focus-visible {
    outline: 3px solid rgba(191, 155, 48, 0.55);
    outline-offset: 3px;
}

@media (max-width: 760px) {
    .hero-fattoria-logo {
        position: static;
        transform: none;
        left: auto;
        top: auto;
    }

    .hero-fattoria-logo img {
        height: 40px;
    }

    .hero-nav {
        position: static;
        transform: none;
        left: auto;
        top: auto;
        margin-top: 0.6rem;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        max-width: 100%;
    }
}

/* ===== FATTORIA BELOW HERO ===== */
.fattoria-below-hero {
    display: flex;
    justify-content: center;
    padding: 0.9rem 1.5rem 0.2rem;
    text-decoration: none;
    background: transparent;
}

.fattoria-below-hero img {
    height: 46px;
    width: auto;
    display: block;
    opacity: 0.98;
    filter:
            drop-shadow(0 14px 28px rgba(0, 0, 0, 0.28))
            drop-shadow(0 0 1px rgba(255, 255, 255, 0.25));
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.fattoria-below-hero:hover img {
    opacity: 1;
    transform: translateY(-1px);
}

.fattoria-below-hero:focus-visible {
    outline: 3px solid rgba(191, 155, 48, 0.55);
    outline-offset: 3px;
}

/* ===== CONTENT BELOW HERO ===== */
.page-content {
    width: 100%;
    padding: 3.5rem 0 4.5rem;
    box-sizing: border-box;
    background-color: var(--paper);
    background-image:
            radial-gradient(1200px 700px at 12% 0%, rgba(111, 28, 45, 0.11) 0%, rgba(111, 28, 45, 0.00) 62%),
            radial-gradient(900px 560px at 88% 10%, rgba(191, 155, 48, 0.10) 0%, rgba(191, 155, 48, 0.00) 58%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(251, 250, 248, 1) 45%, rgba(246, 244, 240, 1) 100%),
            repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.012) 0 1px, rgba(0, 0, 0, 0) 1px 6px);
    background-repeat: no-repeat, no-repeat, no-repeat, repeat;
    background-position: center, center, center, 0 0;
    background-size: auto, auto, auto, 100% 100%;
    position: relative;
    overflow: hidden;
}

.page-content--bordeaux {
    background-color: #120608;
    background-image:
            linear-gradient(180deg, rgba(10, 4, 5, 0.55) 0%, rgba(10, 4, 5, 0.72) 100%),
            url("Images/RedM.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ===== HOME PARTNER ===== */
.home-partner {
    width: min(1100px, 92%);
    margin: 0 auto 2.4rem;
    color: rgba(255, 255, 255, 0.92);
}

.home-partner__title {
    font-family: "Faculty Glyphic", serif;
    font-weight: 600;
    text-align: center;
    margin: 0 0 1.25rem;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    letter-spacing: 0.02em;
}

.partner-card {
    display: grid;
    grid-template-columns: minmax(320px, 1.15fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 1.75rem;
    padding: 1.4rem;
    background: linear-gradient(180deg, rgba(251, 250, 248, 0.95), rgba(246, 244, 240, 0.92));
    color: #2a1717;
    border-radius: 18px;
    border: 1px solid rgba(191, 155, 48, 0.55);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
    position: relative;
}

.partner-card__media {
    min-height: clamp(320px, 34vw, 460px);
}

.partner-card__media img {
    width: 100%;
    height: 100%;
    min-height: clamp(320px, 34vw, 460px);
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.partner-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partner-card__headline {
    font-family: "Faculty Glyphic", serif;
    margin: 0 0 0.8rem;
    font-weight: 650;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.15;
    color: #6f1c2d;
}

.partner-card__text {
    margin: 0 0 0.85rem;
    line-height: 1.65;
    font-size: 0.98rem;
    color: rgba(42, 23, 23, 0.9);
}

.partner-card__signature {
    margin: 0.4rem 0 0;
    font-family: "Faculty Glyphic", serif;
    opacity: 0.7;
    font-style: italic;
}

.partner-card--link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.partner-card--link:hover {
    transform: translateY(-1px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.42);
}

.partner-card--link:focus-visible {
    outline: 3px solid rgba(191, 155, 48, 0.65);
    outline-offset: 4px;
}

@media (max-width: 860px) {
    .partner-card {
        grid-template-columns: 1fr;
        gap: 1.15rem;
    }

    .partner-card__media {
        min-height: clamp(220px, 52vw, 320px);
    }

    .partner-card__media img {
        min-height: clamp(220px, 52vw, 320px);
    }
}

/* ===== WINE CAROUSEL ===== */
.wine-carousel {
    width: min(1100px, 92%);
    margin: 0 auto clamp(2.2rem, 5vw, 3rem);
}

.wine-carousel__inner {
    border-radius: 18px;
    border: 1px solid rgba(191, 155, 48, 0.45);
    background-image: url("Images/RedM.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.30);
    padding: clamp(0.9rem, 2.2vw, 1.25rem);
    position: relative;
    overflow: hidden;
}

.wine-carousel__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(10, 4, 5, 0.45) 0%, rgba(10, 4, 5, 0.68) 100%);
}

.wine-carousel__inner > * {
    position: relative;
    z-index: 1;
}

.wine-carousel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.wine-carousel__title {
    margin: 0;
    font-family: "Faculty Glyphic", serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: clamp(1.2rem, 2.1vw, 1.6rem);
    color: rgba(255, 255, 255, 0.92);
}

.wine-carousel__controls {
    display: flex;
    gap: 0.5rem;
}

.wine-carousel__btn {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(20, 8, 9, 0.55);
    color: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    font-size: 1.35rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, background 0.15s ease;
}

.wine-carousel__btn:hover {
    transform: translateY(-1px);
    background: rgba(20, 8, 9, 0.72);
}

.wine-carousel__btn:active {
    transform: translateY(0);
}

.wine-carousel__btn:focus-visible {
    outline: 3px solid rgba(191, 155, 48, 0.55);
    outline-offset: 3px;
}

.wine-carousel__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    border-radius: 16px;
    padding: 0.25rem 18% 0.4rem;
}

.wine-carousel__track {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    width: max-content;
}

.wine-carousel__item {
    flex: 0 0 auto;
    scroll-snap-align: center;
    width: clamp(190px, 22vw, 240px);
    height: 230px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(251, 250, 248, 0.10), rgba(251, 250, 248, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-decoration: none;
    transform: scale(0.88);
    opacity: 0.78;
    filter: saturate(0.95);
    transition: transform 180ms ease, opacity 180ms ease, filter 180ms ease;
}

.wine-carousel__item:hover {
    opacity: 0.92;
}

.wine-carousel__item img {
    max-height: 205px;
    width: auto;
    display: block;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.38));
    transform: translateY(2px);
    transition: transform 180ms ease;
}

.wine-carousel__item:hover img {
    transform: translateY(0);
}

.wine-carousel__item:focus-visible,
.wine-carousel__item:focus,
.wine-carousel__item.is-active {
    transform: scale(1);
    opacity: 1;
    filter: saturate(1.05);
}

@media (max-width: 560px) {
    .wine-carousel__controls {
        display: none;
    }

    .wine-carousel__viewport {
        padding-left: 12%;
        padding-right: 12%;
    }

    .wine-carousel__item {
        width: 76vw;
        height: 215px;
    }

    .wine-carousel__item img {
        max-height: 190px;
    }
}

/* ===== HOME TEXTS ENDCAP ===== */
.home-texts-endcap {
    width: min(1200px, 92%);
    margin: clamp(2.6rem, 6vw, 3.6rem) auto 0;
    background:
            radial-gradient(900px 560px at 18% 12%, rgba(191, 155, 48, 0.12) 0%, rgba(191, 155, 48, 0) 60%),
            radial-gradient(900px 560px at 86% 30%, rgba(111, 28, 45, 0.28) 0%, rgba(111, 28, 45, 0) 62%),
            linear-gradient(180deg, rgba(75, 20, 27, 0.85) 0%, rgba(42, 15, 17, 0.92) 55%, rgba(27, 10, 12, 0.96) 100%);
    border-radius: 22px;
    border: 1px solid rgba(191, 155, 48, 0.40);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
    padding: clamp(1.2rem, 3vw, 1.6rem);
    position: relative;
    overflow: hidden;
}

.home-texts-endcap::before,
.home-texts-endcap::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(191, 155, 48, 0.55), transparent);
    opacity: 0.9;
    pointer-events: none;
}

.home-texts-endcap::before {
    top: 10px;
}

.home-texts-endcap::after {
    bottom: 10px;
}

.home-texts-endcap .info-wrapper {
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(251, 250, 248, 0.96), rgba(246, 244, 240, 0.93));
    border-radius: 18px;
    border: 1px solid rgba(191, 155, 48, 0.55);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.30);
    padding: clamp(1.4rem, 3vw, 2.2rem);
}

.home-texts-endcap .info-section,
.home-texts-endcap .winery-section {
    margin: 0 0 clamp(1.6rem, 3vw, 2.4rem);
}

.home-texts-endcap .info-section:last-child,
.home-texts-endcap .winery-section:last-child {
    margin-bottom: 0;
}

.home-texts-endcap .info-inner,
.home-texts-endcap .winery-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.2rem, 3vw, 2.4rem);
    align-items: center;
}

.home-texts-endcap .info-media img,
.home-texts-endcap .winery-media img {
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.30);
    object-fit: cover;
}

.home-texts-endcap .info-text,
.home-texts-endcap .winery-text {
    color: #2a1717;
}

.home-texts-endcap .info-eyebrow,
.home-texts-endcap .winery-eyebrow {
    color: rgba(42, 23, 23, 0.60);
    font-weight: 800;
}

.home-texts-endcap .info-title,
.home-texts-endcap .winery-title {
    color: #6f1c2d;
}

.home-texts-endcap .info-par,
.home-texts-endcap .winery-par {
    color: rgba(42, 23, 23, 0.92);
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0 0 0.85rem;
}

/* poslední odstavec v kartě a v sekcích bez zbytečné mezery */
.home-texts-endcap .info-par:last-child,
.home-texts-endcap .winery-par:last-child {
    margin-bottom: 0;
}

/* Seznamy uvnitř textu (např. Firemní klienti) – držet stejné fonty/spacing jako odstavec */
.home-texts-endcap .info-par ul,
.home-texts-endcap .winery-par ul,
.home-texts-endcap .info-par ol,
.home-texts-endcap .winery-par ol {
    margin: 0.75rem 0 0.75rem 1.1rem;
    padding: 0;
}

.home-texts-endcap .info-par li,
.home-texts-endcap .winery-par li {
    margin: 0.25rem 0;
}

@media (max-width: 920px) {
    .home-texts-endcap {
        padding: 1rem;
    }

    .home-texts-endcap .info-inner,
    .home-texts-endcap .winery-inner {
        grid-template-columns: 1fr;
    }

    .home-texts-endcap .info-media img,
    .home-texts-endcap .winery-media img {
        max-width: 100%;
    }
}

/* ===== HERO WINES ===== */
.hero-wines {
    position: absolute;
    top: clamp(0.15rem, 0.7vh, 0.5rem);
    right: clamp(-20.6rem, -20.2vw, -1.6rem);
    margin: 0;
    width: 250px;
    pointer-events: auto;
}

.hero-wines__showcase {
    position: relative;
    height: 170px;
    display: grid;
    place-items: center;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    border-radius: 0;
    overflow: visible;
}

.hero-wines__bottle {
    position: absolute;
    display: grid;
    place-items: center;
    width: 92px;
    height: 140px;
    text-decoration: none;
    outline: none;
    transition: transform 260ms ease, filter 260ms ease, opacity 260ms ease;
}

.hero-wines__bottle::after {
    content: "";
    position: absolute;
    inset: -10px -12px;
    border-radius: 18px;
    border: 1px solid rgba(191, 155, 48, 0);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0);
    transition: border-color 220ms ease, box-shadow 220ms ease;
    pointer-events: none;
}

.hero-wines__bottle img {
    width: auto;
    max-height: 140px;
    display: block;
    filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.32));
}

.hero-wines__bottle--left {
    transform: translateX(-64px) translateY(12px) scale(0.88) rotate(-8deg);
    opacity: 0.78;
}

.hero-wines__bottle--right {
    transform: translateX(64px) translateY(12px) scale(0.88) rotate(8deg);
    opacity: 0.78;
}

.hero-wines__bottle--center {
    transform: translateY(-2px) scale(1.02);
    opacity: 1;
    z-index: 2;
}

.hero-wines__bottle:hover {
    opacity: 1;
    filter: saturate(1.05);
}

.hero-wines__bottle:hover::after {
    border-color: rgba(191, 155, 48, 0.22);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.hero-wines__bottle--center:hover {
    transform: translateY(-6px) scale(1.04);
}

.hero-wines__bottle--left:hover {
    transform: translateX(-64px) translateY(8px) scale(0.92) rotate(-8deg);
}

.hero-wines__bottle--right:hover {
    transform: translateX(64px) translateY(8px) scale(0.92) rotate(8deg);
}

.hero-wines__bottle:focus-visible {
    outline: 3px solid rgba(191, 155, 48, 0.55);
    outline-offset: 4px;
    border-radius: 14px;
}

@media (max-width: 920px) {
    .hero-wines {
        position: static;
        width: min(320px, 100%);
        margin: 1.1rem auto 0;
    }

    .hero-wines__showcase {
        height: 160px;
    }
}

/* ===== FOOTER / KONTAKT ===== */
.site-footer {
    width: min(1120px, 92%);
    margin: 2.2rem auto 0;
}

.site-footer__inner {
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    padding-top: 1.25rem;
    color: rgba(255, 255, 255, 0.92);
}

.site-footer__title {
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.85rem;
    opacity: 0.78;
    margin-bottom: 0.85rem;
}

.contact-card {
    display: grid;
    gap: 0.6rem;
}

.contact-card__cols {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-card__col {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.contact-card__col--right {
    align-items: flex-end;
}

.contact-card__meta {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.contact-item {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
}

.contact-item__icon {
    opacity: 0.85;
    font-size: 1.05rem;
}

.contact-item__text {
    font-weight: 600;
}

.contact-item--ig {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(140, 130, 92, 0.96), rgba(170, 150, 110, 0.96));
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.contact-item--ig .contact-item__icon svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.contact-item--ig:hover,
.contact-item--ig:focus {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.contact-item--ig:focus {
    outline: 3px solid rgba(255, 255, 255, 0.30);
    outline-offset: 2px;
}

@media (max-width: 560px) {
    .contact-card__cols {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-card__col--right {
        align-items: flex-start;
    }
}

#partner-section {
    scroll-margin-top: 18px;
}

/* ===== INTRO BLOCK ===== */
.home-intro-block {
    margin: 0 0 clamp(1.6rem, 3vw, 2.4rem);
}

.home-intro-block__card {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(1.55rem, 3.2vw, 2.15rem);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(251, 250, 248, 0.95), rgba(246, 244, 240, 0.9));
    border: 1px solid rgba(191, 155, 48, 0.46);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.home-intro-block__title {
    margin: 0 0 1rem;
    font-family: "Faculty Glyphic", serif;
    font-weight: 650;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 1.15;
    color: #6f1c2d;
}

.home-intro-block__text {
    margin: 0 0 0.85rem;
    color: rgba(42, 23, 23, 0.92);
    font-size: 0.98rem;
    line-height: 1.65;
}

.home-intro-block__text:last-child {
    margin-bottom: 0;
}

.home-texts-endcap--intro {
    margin-top: 0;
    margin-bottom: clamp(2rem, 4vw, 2.8rem);
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

/* ===== HOMEPAGE PREZENTAČNÍ SLIDER POD INTRO ===== */
.home-index-presentation {
    width: 100%;
    margin: 0 0 clamp(2rem, 4vw, 2.8rem);
}

.home-presentation-shell {
    width: min(980px, 100%);
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(191, 155, 48, 0.30);
    border-radius: 18px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
    overflow: hidden;
    box-sizing: border-box;
}

.wine-presentation-slider {
    position: relative;
    width: 100%;
    height: clamp(280px, 42vh, 560px);
    border-radius: 14px;
    overflow: hidden;
    background: transparent;
}

.presentation-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
}

.presentation-slide.is-active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.presentation-slide.is-enter {
    transform: translateX(100%);
    opacity: 0;
    z-index: 3;
}

.presentation-slide.is-exit {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
}

.presentation-slide.is-animating {
    transition:
            transform 2000ms cubic-bezier(.22, 1, .36, 1),
            opacity 2000ms cubic-bezier(.22, 1, .36, 1);
}

.presentation-picture {
    display: block;
    width: 100%;
    height: 100%;
}

.presentation-image,
.presentation-slide img {
    display: block;
    width: 100%;
    height: 100%;
    background: transparent;
    object-fit: contain;
    object-position: center;
}

/* šipky */
.presentation-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 52px;
    height: 52px;
    border: none;
    background: rgba(255, 255, 255, 0);
    box-shadow: none;
    border-radius: 0;
    color: #111;
    font-size: 48px;
    font-weight: 300;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: transform 180ms ease, color 180ms ease, opacity 180ms ease;
}

.presentation-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    color: #000;
}

.presentation-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.presentation-arrow--prev {
    left: 6px;
}

.presentation-arrow--next {
    right: 6px;
}

/* ===== TABLET ===== */
@media (max-width: 768px) {
    .home-presentation-shell {
        width: min(100%, calc(100% - 2rem));
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
        border-radius: 18px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .wine-presentation-slider {
        width: 100%;
        height: auto;
        min-height: 420px;
        aspect-ratio: 4 / 5;
        border-radius: 18px;
    }

    .presentation-slide {
        height: 100%;
    }

    .presentation-image,
    .presentation-slide img {
        object-fit: cover;
        object-position: center top;
    }

    .presentation-arrow {
        display: none;
    }

}

/* ===== MOBILE ===== */
@media (max-width: 560px) {
    .home-index-presentation {
        width: 100%;
    }

    .home-presentation-shell {
        width: min(100%, calc(100% - 2rem));
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(191, 155, 48, 0.30);
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
        overflow: hidden;
        box-sizing: border-box;
    }

    .wine-presentation-slider {
        width: 100%;
        min-height: 460px;
        aspect-ratio: 4 / 5;
        border-radius: 18px;
    }

    .presentation-arrow {
        width: 36px;
        height: 36px;
        font-size: 28px;
        color: rgba(17, 17, 17, 0.85);
    }

    .presentation-arrow--prev {
        left: 0;
    }

    .presentation-arrow--next {
        right: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .presentation-slide.is-animating {
        transition: none !important;
    }
}
/* =========================================================
   ROZKLIKNUTÍ OBRÁZKŮ VE SLIDERU – bez změny původního vzhledu
   ========================================================= */

.presentation-zoom{
    appearance: none;
    -webkit-appearance: none;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.presentation-zoom:focus-visible{
    outline: 3px solid rgba(191,155,48,0.55);
    outline-offset: 4px;
    border-radius: 14px;
}

.presentation-picture{
    display: block;
    width: 100%;
    height: 100%;
}

.presentation-picture img,
.presentation-image{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* modal */
.presentation-modal{
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.presentation-modal.is-open{
    display: block;
}

.presentation-modal__backdrop{
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(4px);
}

.presentation-modal__panel{
    position: relative;
    width: min(1400px, 96vw);
    height: min(92vh, 960px);
    margin: 4vh auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4.2rem 1.25rem 1.25rem;
    box-sizing: border-box;
    background: transparent;
}

.presentation-modal__close{
    position: absolute;
    top: 14px;
    right: 14px;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease;
}

.presentation-modal__close:hover{
    transform: scale(1.05);
    background: rgba(255,255,255,0.22);
}

.presentation-modal__media{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.presentation-modal__media img{
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.42);
}

body.presentation-modal-open{
    overflow: hidden;
}

@media (max-width: 768px){
    .presentation-modal__panel{
        width: 100vw;
        height: 100vh;
        margin: 0;
        padding: 4.3rem 0.7rem 0.7rem;
    }

    .presentation-modal__close{
        top: 12px;
        right: 12px;
    }
}

