/* ============================================================
   ANIMAL PLANET – B2B Web
   Barevná paleta: krémová / béžová / oranžová / tmavě hnědá
   ============================================================ */

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
    /* Colors */
    --cream:         #F5E7D0;
    --cream-light:   #FAF3E8;
    --cream-dark:    #EDD9B6;
    --beige:         #E0C49A;
    --tan:           #C49A6C;
    --brown:         #8B5E3C;
    --brown-dark:    #3D2214;
    --black:         #1A1212;
    --orange:        #E87320;
    --orange-hover:  #D06415;
    --orange-light:  #F5A05A;
    --white:         #FFFFFF;
    --text-primary:  #000000;
    --text-secondary:#000000;
    --text-muted:    #000000;

    /* Typography */
    --font-serif:    'Nunito', 'Playfair Display', Georgia, serif;
    --font-sans:     'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing scale */
    --space-xs:   0.5rem;
    --space-sm:   1rem;
    --space-md:   1.5rem;
    --space-lg:   2.5rem;
    --space-xl:   4rem;
    --space-2xl:  6rem;
    --space-3xl:  8rem;

    /* Radius */
    --radius-sm:  0.5rem;
    --radius-md:  1rem;
    --radius-lg:  1.5rem;
    --radius-xl:  2rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm:  0 2px 8px rgba(58, 34, 20, 0.07);
    --shadow-md:  0 4px 20px rgba(58, 34, 20, 0.10);
    --shadow-lg:  0 12px 40px rgba(58, 34, 20, 0.13);

    /* Transitions */
    --transition: 0.25s ease;
    --transition-slow: 0.4s ease;

    /* Header height */
    --header-h: 68px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.65;
    color: #000;
    background-color: var(--cream-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: #000;
}

p, li, span, label {
    color: inherit;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul { list-style: none; }

input, textarea, select, button {
    font-family: inherit;
    font-size: inherit;
}

/* ---------- LAYOUT ---------- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

.section {
    padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

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

/* ---------- TYPOGRAPHY ---------- */
.eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.eyebrow--light {
    color: var(--orange-light);
}

.section__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: #000;
    margin-bottom: 1.25rem;
}

.section__lead {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section__header {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__header.text-center .section__lead {
    margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1.2;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    text-align: center;
}

.btn:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
}

.btn:active {
    transform: translateY(1px);
}

.btn--primary {
    background-color: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn--primary:hover {
    background-color: var(--orange-hover);
    border-color: var(--orange-hover);
    box-shadow: 0 6px 20px rgba(232, 115, 32, 0.35);
    transform: translateY(-1px);
}

.btn--outline {
    background-color: transparent;
    color: #000;
    border-color: #000;
}
.btn--outline:hover {
    background-color: #000;
    color: var(--white);
    transform: translateY(-1px);
}

.btn--white {
    background-color: var(--white);
    color: #000;
    border-color: var(--white);
}
.btn--white:hover {
    background-color: var(--cream);
    border-color: var(--cream);
    transform: translateY(-1px);
}

.btn--text {
    background: none;
    border-color: transparent;
    color: var(--orange);
    padding-left: 0;
    padding-right: 0;
    font-weight: 600;
}
.btn--text:hover {
    color: var(--orange-hover);
    gap: 0.75rem;
}

.btn--sm {
    padding: 0.5rem 1.125rem;
    font-size: 0.875rem;
}

.btn--lg {
    padding: 0.9375rem 2rem;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ---------- HEADER / NAV ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-h);
    background-color: rgba(250, 243, 232, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
    overflow: visible;
}

.header.scrolled {
    background-color: rgba(250, 243, 232, 0.97);
    border-bottom-color: var(--cream-dark);
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: var(--header-h);
    overflow: visible;
}

.nav__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-left: 1.5rem;
    overflow: visible;
}

.nav__logo-img {
    height: 62px;
    width: auto;
    display: block;
    mix-blend-mode: multiply;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background-color var(--transition);
}

.nav__link:hover {
    color: #000;
    background-color: var(--cream-dark);
}

.nav__link.active {
    color: var(--orange);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
    transform-origin: center;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- HERO ---------- */
/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: var(--header-h);
    background-color: var(--cream-light);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero__bg-blob {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(600px, 80vw, 1100px);
    height: clamp(400px, 55vw, 700px);
    background: radial-gradient(ellipse, var(--cream-dark) 0%, var(--cream) 45%, transparent 75%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Centrovaný obsah */
.hero__center {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(1rem, 2vw, 1.5rem);
    position: relative;
    z-index: 1;
}

.hero__content {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(1.875rem, 3.8vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    color: #000;
    letter-spacing: -0.025em;
}

.hero__lead {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 560px;
}

.hero__lead strong {
    color: #000;
    font-weight: 600;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
}

/* Stats / social proof */
.hero__proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.25rem;
}

.hero__proof-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
}

.hero__proof-stat strong {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.hero__proof-stat span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero__proof-flag {
    font-size: 1.375rem;
    line-height: 1;
}

.hero__proof-divider {
    width: 1px;
    height: 2rem;
    background-color: var(--cream-dark);
    flex-shrink: 0;
}

/* ---------- HERO CAROUSEL ---------- */
@keyframes carousel-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-1 * (220px + 16px) * 9)); }
}

.hero__carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: clamp(2rem, 4vw, 3rem);
    z-index: 1;
}

.hero__carousel-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(80px, 12vw, 180px);
    z-index: 2;
    pointer-events: none;
}

.hero__carousel-fade--left {
    left: 0;
    background: linear-gradient(90deg, var(--cream-light) 0%, transparent 100%);
}

.hero__carousel-fade--right {
    right: 0;
    background: linear-gradient(270deg, var(--cream-light) 0%, transparent 100%);
}

.hero__carousel-track {
    display: flex;
    gap: 16px;
    padding-left: 16px;
    animation: carousel-scroll 50s linear infinite;
    width: max-content;
}

@media (hover: hover) {
    .hero__carousel-track:hover {
        animation-play-state: paused;
    }
}

.hero__card {
    flex-shrink: 0;
    width: 220px;
    height: 200px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero__card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.hero__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

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

/* Tap hint – only on touch devices */
@media (hover: none) {
    .hero__card[role="button"]::after {
        content: "Klepněte pro zvětšení";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.52);
        color: #fff;
        font-size: 0.65rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-align: center;
        padding: 5px 4px;
        pointer-events: none;
        animation: tap-hint-fade 2s ease 1.2s forwards;
    }

    @keyframes tap-hint-fade {
        0%   { opacity: 1; }
        100% { opacity: 0; }
    }
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(26, 18, 12, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox__img {
    max-width: min(90vw, 960px);
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.25s ease;
}

.lightbox.open .lightbox__img {
    transform: scale(1);
}

.lightbox__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.28);
}

/* ---------- HERO IMAGE ---------- */
.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

/* ---------- BRAND IMAGES ---------- */
.brand__logo-img {
    display: block;
    max-height: 180px;
    width: auto;
    max-width: 420px;
    object-fit: contain;
    margin-bottom: 0.625rem;
}

.brand__logo-img--dark {
    filter: invert(1);
    background: none;
}

.brand__logo-img--wide {
    max-height: 110px;
    max-width: 260px;
}

.brand__logo-img--badge {
    max-height: 200px;
    max-width: 200px;
    border-radius: var(--radius-sm);
    mix-blend-mode: multiply;
}

.brand__img {
    width: 100%;
    border-radius: var(--radius-lg);
    display: block;
}

.brand__img--cover {
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
}

.brand__img--contain {
    aspect-ratio: 4/3;
    object-fit: contain;
    background-color: var(--white);
    padding: 1.5rem;
}

/* ---------- BARF INFOGRAPHIC ---------- */
.barf-infographic {
    max-width: 900px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

/* ---------- VIEW MAGNIFIER (drag-to-zoom) ---------- */
.view-magnifier {
    position: relative;
}

.view-magnifier__backdrop {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    z-index: 50;
}

.view-magnifier__frame {
    position: relative;
    transform-origin: center center;
    will-change: transform;
    z-index: 60;
}

.view-magnifier__img {
    display: block;
    width: 100%;
    border-radius: var(--radius-xl);
    pointer-events: none;
    user-select: none;
}

.view-magnifier__shadow {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 16px 48px -8px rgba(0,0,0,0.22), 0 32px 64px -16px rgba(0,0,0,0.16);
}

.view-magnifier__handle {
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 4px;
    height: 56px;
    border-radius: 9999px;
    background: rgba(0,0,0,0.22);
    border: none;
    cursor: grab;
    touch-action: none;
    transition: background 0.2s ease;
    z-index: 2;
}

.view-magnifier__handle::after {
    content: '';
    position: absolute;
    inset: 0 -10px;
}

.view-magnifier__handle:hover {
    background: rgba(0,0,0,0.42);
}

.view-magnifier__handle.dragging {
    cursor: grabbing;
    background: var(--orange);
}

@media (max-width: 768px) {
    .view-magnifier__handle {
        display: none;
    }
}

.barf-infographic__img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: block;
}

/* ---------- BARF VISUAL ---------- */
.barf-visual {
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.barf-visual__img {
    width: 100%;
    border-radius: var(--radius-xl);
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
    box-shadow: var(--shadow-lg);
}

/* ---------- IMAGE PLACEHOLDER ---------- */
.img-placeholder {
    background: linear-gradient(140deg, var(--cream-dark) 0%, var(--beige) 55%, var(--tan) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(140,94,60,0.1) 0%, transparent 50%);
}

.img-placeholder__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    text-align: center;
}

.img-placeholder__label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #000;
    opacity: 0.8;
    line-height: 1.4;
}

.img-placeholder--brand {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    padding: 2rem;
}

/* ---------- USP STRIP ---------- */
.usp-strip {
    background-color: var(--orange);
    border-top: none;
    border-bottom: none;
    padding: 3.5rem 0;
}

.usp-strip__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.usp-strip__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    padding: 1rem 2.75rem;
    flex: 1 1 180px;
    max-width: 240px;
}

.usp-strip__divider {
    width: 1px;
    height: 3.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    align-self: center;
}

.usp-strip__icon {
    width: 68px;
    height: 68px;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 0.25rem;
    transition: transform var(--transition), background var(--transition);
}

.usp-strip__item:hover .usp-strip__icon {
    transform: translateY(-4px);
    background: rgba(0, 0, 0, 0.2);
}

.usp-strip__icon--png {
    background: none;
    overflow: hidden;
}
.usp-strip__icon--png:hover {
    background: none;
}
.usp-strip__icon--png img {
    width: 68px;
    height: 68px;
    display: block;
    transform: scale(1.6);
    transform-origin: center;
    flex-shrink: 0;
}
.usp-strip__icon--meat img {
    transform: scale(1.3);
}
.usp-strip__icon--pin img {
    transform: scale(1.9);
}

@media (max-width: 480px) {
    .usp-strip__icon--png img {
        width: 44px;
        height: 44px;
    }
}

.usp-strip__label {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
}

.usp-strip__sub {
    font-size: 0.875rem;
    color: #000;
    line-height: 1.4;
    max-width: 160px;
}

@media (max-width: 768px) {
    .usp-strip__divider { display: none; }
    .usp-strip__list { gap: 0.5rem; }
    .usp-strip__item {
        padding: 0.75rem 1rem;
        max-width: 160px;
        border: 1.5px solid rgba(0, 0, 0, 0.2);
        border-radius: var(--radius-md);
    }
}

@media (max-width: 480px) {
    .usp-strip__item { flex: 1 1 130px; padding: 0.625rem 0.75rem; }
    .usp-strip__icon { width: 44px; height: 44px; }
}

/* ---------- ABOUT ---------- */
.about {
    background-color: var(--white);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.about__photo-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about__photo {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg);
    display: block;
    max-height: 720px;
}

.about__quote {
    background-color: #000;
    color: var(--cream);
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    font-style: italic;
    line-height: 1.65;
    padding: 1.25rem 1.5rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    margin: 0;
}

.about__text {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background-color: var(--cream-light);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    transition: box-shadow var(--transition), transform var(--transition);
}

.stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.stat-card--accent {
    background-color: var(--orange);
    border-color: var(--orange);
}
.stat-card--accent .stat-card__number,
.stat-card--accent .stat-card__label {
    color: var(--white);
}

.stat-card__number {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.stat-card__label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ---------- FOR WHOM ---------- */
.for-whom {
    background-color: var(--cream-light);
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
}

.card {
    flex: 0 0 calc(33.333% - 0.84rem);
    min-width: 260px;
    max-width: 380px;
    background-color: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--beige);
}

.card__icon {
    width: 48px;
    height: 48px;
    background-color: var(--cream-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
}

.card__body {
    flex: 1;
    min-width: 0;
}

.card__title {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.card__text {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ---------- BRANDS ---------- */
.brands {
    background-color: var(--white);
}

.brand {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
    padding: clamp(3rem, 5vw, 4.5rem) 0;
    border-top: 1px solid var(--cream-dark);
}

.brand:first-of-type {
    border-top: none;
    padding-top: 0;
}

.brand--alt-b .brand__content {
    order: 2;
}
.brand--alt-b .brand__visual {
    order: 1;
}

.brand__eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0.5rem;
}

.brand__name {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.375rem;
}

.brand__name--jolipet { color: #000; }
.brand__name--wolfs   { color: #000; }
.brand__name--buffet  { color: #000; }

.brand__subtitle {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.brand__description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-size: 1.0625rem;
}

.brand__usps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1.75rem;
}

.brand__usps li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.brand__usps li svg {
    color: var(--orange);
    flex-shrink: 0;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.product-tags__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #000;
    flex-basis: 100%;
    margin-bottom: 0.125rem;
}

.product-tag {
    display: inline-block;
    background-color: var(--cream-light);
    border: 1px solid var(--cream-dark);
    color: #000;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.3125rem 0.75rem;
    border-radius: var(--radius-full);
}

.product-tags--compact .product-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.625rem;
}

.brand__label {
    margin-bottom: 1.5rem;
}

/* ---------- PRODUCT GRID 2x2 ---------- */
.product-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    border: 1px solid var(--cream-dark);
}

.product-grid-2x2__img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    border-radius: var(--radius-md);
}

.product-grid-2x2__img:hover {
    transform: scale(1.05);
}

.product-grid-2x2--two {
    grid-template-columns: 1fr 1fr;
}

.product-grid-2x2--two .product-grid-2x2__img {
    aspect-ratio: 3/4;
}

.brand__catalog-cta {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.brand__catalog-link {
    color: var(--orange);
    font-weight: 600;
    transition: color var(--transition);
    white-space: nowrap;
}

.brand__catalog-link:hover {
    color: var(--orange-hover);
}

/* ---------- BRAND FAN GALLERY ---------- */
.brand-fan {
    position: relative;
    height: 300px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.brand-fan__photo {
    position: absolute;
    width: 155px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    /* CSS custom props for position — hover preserves X while lifting */
    --tx: 0px;
    --ty: 0px;
    --rot: 0deg;
    transform: translateX(var(--tx)) translateY(var(--ty)) rotate(var(--rot));
    transition:
        transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease;
}

/* Stagger + z-index per photo */
.brand-fan__photo:nth-child(1) { z-index: 5; transition-delay: 0s; }
.brand-fan__photo:nth-child(2) { z-index: 4; transition-delay: 0.08s; }
.brand-fan__photo:nth-child(3) { z-index: 3; transition-delay: 0.16s; }
.brand-fan__photo:nth-child(4) { z-index: 2; transition-delay: 0.24s; }
.brand-fan__photo:nth-child(5) { z-index: 1; transition-delay: 0.32s; }

/* Spread positions – 5 fotek */
.brand-fan.spread .brand-fan__photo:nth-child(1) { --tx: -268px; --ty: 24px; --rot: -3.5deg; }
.brand-fan.spread .brand-fan__photo:nth-child(2) { --tx: -134px; --ty: 32px; --rot: -1.8deg; }
.brand-fan.spread .brand-fan__photo:nth-child(3) { --tx:    0px; --ty:  8px; --rot:  0deg;   }
.brand-fan.spread .brand-fan__photo:nth-child(4) { --tx:  134px; --ty: 24px; --rot:  1.8deg; }
.brand-fan.spread .brand-fan__photo:nth-child(5) { --tx:  268px; --ty: 42px; --rot:  3.5deg; }

/* Spread positions – 4 fotky */
.brand-fan--4.spread .brand-fan__photo:nth-child(1) { --tx: -210px; --ty: 28px; --rot: -3.5deg; }
.brand-fan--4.spread .brand-fan__photo:nth-child(2) { --tx:  -70px; --ty: 12px; --rot: -1.2deg; }
.brand-fan--4.spread .brand-fan__photo:nth-child(3) { --tx:   70px; --ty: 20px; --rot:  1.2deg; }
.brand-fan--4.spread .brand-fan__photo:nth-child(4) { --tx:  210px; --ty: 38px; --rot:  3.5deg; }

/* Hover: lift and un-rotate, snap to front */
.brand-fan__photo:hover,
.brand-fan__photo:focus-visible {
    transform: translateX(var(--tx)) translateY(calc(var(--ty) - 20px)) rotate(0deg) scale(1.07);
    box-shadow: var(--shadow-lg);
    z-index: 100;
    outline: none;
}

.brand-fan__photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    display: block;
    padding: 0.625rem;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Tablet */
@media (max-width: 900px) {
    .brand-fan { height: 240px; }
    .brand-fan__photo { width: 130px; height: 168px; }
    /* 5 fotek */
    .brand-fan.spread .brand-fan__photo:nth-child(1) { --tx: -220px; --ty: 20px; }
    .brand-fan.spread .brand-fan__photo:nth-child(2) { --tx: -110px; --ty: 28px; }
    .brand-fan.spread .brand-fan__photo:nth-child(4) { --tx:  110px; --ty: 20px; }
    .brand-fan.spread .brand-fan__photo:nth-child(5) { --tx:  220px; --ty: 36px; }
    /* 4 fotky */
    .brand-fan--4.spread .brand-fan__photo:nth-child(1) { --tx: -172px; --ty: 22px; }
    .brand-fan--4.spread .brand-fan__photo:nth-child(2) { --tx:  -57px; --ty: 10px; }
    .brand-fan--4.spread .brand-fan__photo:nth-child(3) { --tx:   57px; --ty: 18px; }
    .brand-fan--4.spread .brand-fan__photo:nth-child(4) { --tx:  172px; --ty: 32px; }
}

/* Mobile */
@media (max-width: 600px) {
    .brand-fan { height: 200px; }
    .brand-fan__photo { width: 108px; height: 140px; }
    /* 5 fotek */
    .brand-fan.spread .brand-fan__photo:nth-child(1) { --tx: -172px; --ty: 16px; }
    .brand-fan.spread .brand-fan__photo:nth-child(2) { --tx:  -86px; --ty: 22px; }
    .brand-fan.spread .brand-fan__photo:nth-child(4) { --tx:   86px; --ty: 16px; }
    .brand-fan.spread .brand-fan__photo:nth-child(5) { --tx:  172px; --ty: 30px; }
    /* 4 fotky */
    .brand-fan--4.spread .brand-fan__photo:nth-child(1) { --tx: -135px; --ty: 18px; }
    .brand-fan--4.spread .brand-fan__photo:nth-child(2) { --tx:  -45px; --ty:  8px; }
    .brand-fan--4.spread .brand-fan__photo:nth-child(3) { --tx:   45px; --ty: 16px; }
    .brand-fan--4.spread .brand-fan__photo:nth-child(4) { --tx:  135px; --ty: 28px; }
}

/* ---------- WHY BARF ---------- */
.why-barf {
    background-color: var(--cream-light);
}

.barf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.75rem;
}

.barf-item {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--cream-dark);
    transition: box-shadow var(--transition), transform var(--transition);
}

.barf-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.barf-item__icon {
    width: 52px;
    height: 52px;
    background-color: var(--cream-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--orange);
}

.barf-item__title {
    font-family: var(--font-serif);
    font-size: 1.1875rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.625rem;
}

.barf-item p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ---------- BENEFITS ---------- */
.benefits {
    background-color: var(--orange);
}

.benefits .section__title,
.benefits .section__lead {
    color: #000;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-item {
    padding: 1.75rem 0;
    border-top: 2px solid rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color var(--transition);
}

.benefit-item:hover {
    border-top-color: #000;
}

.benefit-item__icon {
    color: #000;
}

.benefit-item h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: #000;
    line-height: 1.3;
}

.benefit-item p {
    font-size: 0.9375rem;
    color: #000;
    line-height: 1.65;
}

/* ---------- REFERENCE ---------- */
.references__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.reference-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reference-card__quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    flex: 1;
}

.reference-card__author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.875rem;
}

.reference-card__author strong {
    color: var(--text-primary);
}

.reference-card__author span {
    color: var(--text-muted);
}

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

/* ---------- CATALOG CTA ---------- */
.catalog-cta {
    background-color: #000;
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    position: relative;
    overflow: hidden;
}

.catalog-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.catalog-cta__content {
    max-width: 600px;
}

.catalog-cta__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--cream-light);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.catalog-cta__text {
    color: rgba(245, 231, 208, 0.75);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

.paw-trail-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
}

/* ---------- CONTACT ---------- */
.contact {
    background-color: var(--cream-light);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
}

.contact__intro {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.contact-persons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-person__photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.contact-person__photo--initials {
    background: linear-gradient(135deg, var(--beige), var(--tan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.03em;
}

.contact-person__detail {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.contact-person__name {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
}

.contact-person__role {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.contact-person__phone {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--orange);
    transition: color var(--transition);
}
.contact-person__phone:hover {
    color: var(--orange-hover);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color var(--transition);
}
.contact-detail:hover {
    color: var(--orange);
}
.contact-detail svg {
    color: var(--orange);
    flex-shrink: 0;
}

/* Contact Form */
.contact__form-wrap {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: clamp(2rem, 4vw, 2.75rem);
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #000;
}

.form-group label span {
    color: var(--orange);
    margin-left: 0.125rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--cream-light);
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.9375rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238C7060' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232,115,32,0.12);
    background-color: var(--white);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
}

/* Form success */
.form-success {
    text-align: center;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.form-success svg {
    color: var(--orange);
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: #000;
}

.form-success p {
    color: var(--text-muted);
}

/* ---------- FOOTER ---------- */
.footer {
    background-color: #000;
    color: var(--cream);
    padding: clamp(2rem, 4vw, 3.5rem) 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(245, 231, 208, 0.12);
}

.footer__logo-img {
    height: 85px;
    width: auto;
    display: block;
    filter: invert(1) hue-rotate(180deg);
}

.footer__tagline {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: rgba(245, 231, 208, 0.7);
    margin-top: 0.75rem;
    margin-bottom: 0.375rem;
}

.footer__company {
    font-size: 0.8125rem;
    color: rgba(245, 231, 208, 0.4);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.footer__nav-title {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 231, 208, 0.5);
    margin-bottom: 1.25rem;
}

.footer__nav ul,
.footer__brands-list ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer__nav a {
    font-size: 0.9375rem;
    color: rgba(245, 231, 208, 0.75);
    transition: color var(--transition);
}
.footer__nav a:hover {
    color: var(--cream);
}

.footer__brands-list li {
    font-size: 0.9375rem;
    color: rgba(245, 231, 208, 0.6);
    font-weight: 500;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer__contact a {
    font-size: 0.9375rem;
    color: rgba(245, 231, 208, 0.75);
    transition: color var(--transition);
}
.footer__contact a:hover {
    color: var(--cream);
}

.footer__cta-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--orange-light) !important;
    font-weight: 600;
    font-size: 0.875rem !important;
}
.footer__cta-link:hover {
    color: var(--orange-light) !important;
    text-decoration: underline;
}

.footer__bottom {
    padding: 1.5rem 0;
    text-align: center;
}
.footer__bottom p {
    font-size: 0.8125rem;
    color: rgba(245, 231, 208, 0.35);
}

/* ---------- SCROLL REVEAL ANIMATION ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal--right {
    transform: translateX(28px);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ---------- RESPONSIVE ---------- */

/* Tablet */
@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .brand--alt-b .brand__content {
        order: 1;
    }
    .brand--alt-b .brand__visual {
        order: 2;
    }

    .brand {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .brand__image {
        max-width: 480px;
    }
}

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

    .contact__grid {
        grid-template-columns: 1fr;
    }

    .hero__card {
        width: 190px;
        height: 170px;
    }

    @keyframes carousel-scroll {
        from { transform: translateX(0); }
        to   { transform: translateX(calc(-1 * (190px + 16px) * 9)); }
    }
}

/* Mobile nav */
@media (max-width: 768px) {
    .nav__links {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background-color: var(--cream-light);
        border-bottom: 1px solid var(--cream-dark);
        padding: 1rem 0;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--transition-slow), opacity var(--transition-slow);
        z-index: 99;
    }

    .nav__links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav__links li {
        width: 100%;
    }

    .nav__link {
        display: block;
        padding: 0.75rem 1.5rem;
        border-radius: 0;
        font-size: 1rem;
    }

    .nav__actions {
        margin-left: auto;
    }

    .hamburger {
        display: flex;
    }

    .nav__actions .btn--sm {
        display: none;
    }

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

    .cards-grid {
        gap: 0.75rem;
    }

    .card {
        flex: 0 0 calc(50% - 0.375rem);
        min-width: 0;
        flex-direction: column;
        padding: 1rem 0.875rem;
        gap: 0.625rem;
    }

    .card__icon {
        width: 38px;
        height: 38px;
    }

    .card__title {
        font-size: 0.875rem;
    }

    .card__text {
        font-size: 0.8125rem;
    }
}

@media (max-width: 600px) {
    .hero__cta {
        flex-direction: column;
        align-items: center;
    }

    .hero__cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__proof-divider {
        display: none;
    }

    .hero__card {
        width: 160px;
        height: 145px;
    }

    @keyframes carousel-scroll {
        from { transform: translateX(0); }
        to   { transform: translateX(calc(-1 * (160px + 16px) * 9)); }
    }

    .about__stats {
        grid-template-columns: 1fr 1fr;
    }

    .catalog-cta__inner {
        flex-direction: column;
        text-align: center;
    }

    .catalog-cta__text {
        margin: 0 auto 2rem;
    }

    .paw-trail-img {
        display: none;
    }

    .catalog-cta {
        padding-bottom: 1.75rem;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }
}
