/* ============================================================================
 * Gastro Fisch Brač — main stylesheet
 *
 * Handwritten CSS port of the React/Tailwind build. Design tokens feed in
 * from the CMS via the inline <style> in _layout_head.php (--primary-hsl).
 * ========================================================================== */

/* ---------- Reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

:root {
    --primary: hsl(var(--primary-hsl, 217 63% 33%));
    --primary-dark: hsl(217 65% 26%);
    --primary-light: hsl(217 60% 43%);
    --graphite: #424342;
    --graphite-light: #5a5a5a;
    --graphite-muted: #888a8a;
    --silver: #A6A8AB;
    --silver-light: #c5c7c9;
    --deepblue: #1A244F;
    --bg: #ffffff;
    --bg-soft: #f5f7fa;
    --bg-tinted: #f0f3f9;
    --border: rgba(15, 23, 42, 0.08);
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 20px 50px rgba(15, 23, 42, 0.16);
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --container: 1920px;
    --header-h: 72px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-weight: 400;
    font-size: 16px;          /* Tailwind base = 1rem = 16px */
    color: var(--graphite);
    background: var(--bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    hyphens: auto;
    word-break: break-word;
}

[hidden] { display: none !important; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    letter-spacing: -0.025em;   /* Tailwind tracking-tight — Vercel default */
    line-height: 1.2;
    margin: 0;
    color: var(--graphite);
}

p { margin: 0; }

/* ---------- Layout utilities ---------- */
.section-container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 640px)  { .section-container { padding: 0 2.5rem; } }
@media (min-width: 1024px) { .section-container { padding: 0 4rem; } }
@media (min-width: 1280px) { .section-container { padding: 0 6rem; } }
@media (min-width: 1536px) { .section-container { padding: 0 8rem; } }

.section-padding { padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 768px) { .section-padding { padding-top: 5rem; padding-bottom: 5rem; } }
@media (min-width: 1024px) { .section-padding { padding-top: 6rem; padding-bottom: 6rem; } }

.section--no-top-padding { padding-top: 0 !important; }
.section--tinted { background: var(--bg-soft); }
.pb-20 { padding-bottom: 5rem; }

.section-heading { max-width: 48rem; margin: 0 auto 3rem; }
.section-heading--center { text-align: center; }
.section-heading--spaced { margin-top: 5rem; }
.section-heading__title {
    /* Inner-page sections (Vercel: text-3xl md:text-4xl) */
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
@media (min-width: 768px)  { .section-heading__title { font-size: 2.25rem; } }
/* Home primary headings: add text-5xl step at lg+ AND adria color */
.section-heading__title--primary { color: var(--primary); }
@media (min-width: 1024px) { .section-heading__title--primary { font-size: 3rem; } }
.section-heading__title--center { text-align: center; }
.section-heading__title--left { text-align: left; margin-bottom: 2rem; }
.section-heading__intro {
    font-size: 1rem;
    line-height: 1.625;  /* leading-relaxed */
    color: var(--graphite);
    font-weight: 400;
}
@media (min-width: 768px) { .section-heading__intro { font-size: 1.125rem; } }

.eyebrow {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.eyebrow--primary { color: var(--primary); }
.eyebrow--on-dark { color: rgba(255, 255, 255, 0.85); }

.prose { max-width: 42rem; line-height: 1.625; color: rgba(66, 67, 66, 0.8); }
.prose p { line-height: 1.625; }
.prose p + p { margin-top: 1.5rem; }
.prose--centered { max-width: 56rem; margin: 0 auto; text-align: left; }
.prose--centered p { font-size: 1rem; line-height: 1.625; }
@media (min-width: 640px) { .prose--centered p { font-size: 1.125rem; } }

.link-accent { color: var(--primary); }
.link-accent:hover { text-decoration: underline; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: all 0.25s var(--ease);
    text-align: center;
    white-space: nowrap;
}
.btn--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn--white { background: rgba(255, 255, 255, 0.92); color: var(--primary); backdrop-filter: blur(4px); box-shadow: var(--shadow-md); }
.btn--white:hover { background: #fff; transform: translateY(-1px); }
.btn--muted { background: #f1f1f2; color: var(--graphite); }
.btn--muted:hover { background: #e6e6e7; }
.btn--whatsapp { background: #25D366; color: #fff; padding: 1rem 2rem; box-shadow: var(--shadow-md); }
.btn--whatsapp:hover { background: #20ba5a; transform: translateY(-1px); }
.btn--block { width: 100%; }
.btn--sm { padding: 0.55rem 1rem; font-size: 0.85rem; }

/* ---------- Header / nav ---------- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    padding: 1.5rem 0;
    transition: background 0.5s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
    color: #fff;
}
.site-header--scrolled, .site-header--open {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    color: var(--graphite);
}
.site-header__inner { display: flex; align-items: center; }

.site-nav--desktop { display: none; width: 100%; align-items: center; justify-content: space-between; }
/* Desktop-Nav erst ab 1100px — iPad Pro 12.9" Portrait (1024px) bekommt
   sonst die volle Nav mit 6 Items + Logo, bei der KONTAKT rechts aus
   dem Viewport fliegt. Landscape (1366px) bleibt Desktop. */
@media (min-width: 1100px) { .site-nav--desktop { display: flex; } }

.site-nav__side { flex: 1; display: flex; align-items: center; gap: 2.5rem; }
.site-nav__side--left { justify-content: flex-end; }
.site-nav__side--right { justify-content: flex-start; }
@media (min-width: 1280px) {
    .site-nav__side { gap: 3.5rem; }
}

.site-nav__link {
    position: relative;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s;
    color: inherit;
    opacity: 0.82;
}
.site-nav__link:hover, .site-nav__link--active { opacity: 1; }
.site-nav__underline {
    position: absolute; left: 0; bottom: -4px; height: 2px;
    background: currentColor; width: 0; transition: width 0.4s var(--ease);
}
.site-nav__link--active .site-nav__underline { width: 100%; }
.site-nav__link:hover .site-nav__underline { width: 100%; }

.site-nav__logo { padding: 0 2.5rem; flex-shrink: 0; }
@media (min-width: 1280px) { .site-nav__logo { padding: 0 4rem; } }
.site-nav__logo-img { height: 2.5rem; width: auto; transition: opacity 0.4s; }
.site-nav__logo-img--dark { display: none; }
.site-header--scrolled .site-nav__logo-img--light,
.site-header--open .site-nav__logo-img--light { display: none; }
.site-header--scrolled .site-nav__logo-img--dark,
.site-header--open .site-nav__logo-img--dark { display: block; }

.site-nav__divider { width: 1px; height: 1.25rem; background: currentColor; opacity: 0.3; margin: 0 0.75rem; }

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    flex-shrink: 0;
    white-space: nowrap;
    word-break: keep-all;
    hyphens: none;
    -webkit-hyphens: none;
}
.lang-switch * { word-break: keep-all; hyphens: none; -webkit-hyphens: none; white-space: nowrap; }
.lang-switch__link { opacity: 0.6; transition: opacity 0.2s; color: inherit; white-space: nowrap; }
.lang-switch__link:hover, .lang-switch__link--active { opacity: 1; color: var(--primary); }
.site-header:not(.site-header--scrolled):not(.site-header--open) .lang-switch__link--active { color: #fff; opacity: 1; }
.lang-switch__sep { opacity: 0.4; margin: 0 0.25rem; }

.site-nav__mobile-bar {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%;
    /* Asymmetrisches Padding: Logo links bündig, Burger rechts mit extra
       Sicherheitsabstand (gegen abgerundete Displayecken / Notch /
       Safari-Browser-UI am rechten Rand). */
    padding-left: 0.75rem; padding-right: 1.75rem;
    gap: 1rem;  /* minimum Luft zwischen Logo und DE/EN + Burger */
}
@media (max-width: 374px) {
    .site-nav__mobile-bar { padding-left: 0.5rem; padding-right: 1.5rem; gap: 0.75rem; }
}
@media (min-width: 1100px) { .site-nav__mobile-bar { display: none; } }
/* .site-nav__logo hat global padding: 0 2.5rem für den Desktop-Abstand —
   auf Mobile ist das verschwendeter Platz. Reset + Shrink erlauben, damit
   das Logo bei Bedarf kleiner wird statt den Burger zu verdrängen. */
.site-nav__logo--mobile {
    padding: 0;
    min-width: 0;       /* shrink darf unter content-width gehen */
    flex: 0 1 auto;     /* override flex-shrink: 0 aus .site-nav__logo */
}
.site-nav__logo--mobile img {
    height: 1.5rem;     /* von 1.75rem runter — mehr Budget für Burger */
    max-width: 100%;
    width: auto;
}
.site-nav__mobile-right { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }

/* Burger */
.burger {
    position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center;
    width: 2.5rem; height: 2.5rem; border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1); transition: all 0.3s var(--ease);
}
.site-header--scrolled .burger { background: rgba(0, 0, 0, 0.05); color: var(--graphite); }
.site-header--open .burger { background: hsl(var(--primary-hsl) / 0.1); color: var(--primary); }
.burger__line { display: block; width: 1.25rem; height: 2px; background: currentColor; transition: all 0.3s var(--ease); }
.burger__line + .burger__line { margin-top: 0.3rem; }
.site-header--open .burger .burger__line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-header--open .burger .burger__line:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.site-header--open .burger .burger__line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile overlay */
.mobile-menu {
    position: fixed; inset: 0; background: #fff; z-index: 45;
    transform: translateX(100%); transition: transform 0.5s var(--ease);
    overflow-y: auto;
}
.site-header--open ~ .mobile-menu, .site-header--open + .mobile-menu {
    /* when triggered via JS: .mobile-menu--open */
}
.mobile-menu--open { transform: translateX(0); }
.mobile-menu__inner { display: flex; flex-direction: column; height: 100%; padding: 7rem 1.5rem 2rem; gap: 0; }
.mobile-menu__logo { height: 3rem; width: auto; margin: 0 auto 2rem; }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 0; }
.mobile-menu__link {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 0; border-bottom: 1px solid #f0f0f0;
    font-size: 1.3rem; font-weight: 300; color: var(--graphite);
    letter-spacing: 0.04em;
}
.mobile-menu__link--active { color: var(--primary); font-weight: 500; }
.mobile-menu__arrow { color: hsl(var(--primary-hsl) / 0.4); font-size: 1rem; }
.lang-switch--mobile-big { justify-content: center; padding: 1.5rem 0; font-size: 0.9rem; letter-spacing: 0.15em; }
.lang-switch--mobile-big .lang-switch__link { padding: 0.4rem 0.75rem; }
.mobile-menu__cta { margin-top: auto; padding: 1.25rem; width: 100%; font-size: 1rem; }

/* ---------- Hero (home) ---------- */
.hero { position: relative; width: 100%; height: 100vh; min-height: 600px; overflow: hidden; color: #fff; }
.hero__media, .hero__media video, .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.7) 100%); }
.hero__content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 1.5rem; max-width: 56rem; margin: 0 auto; }
.hero__headline {
    /* Vercel: text-3xl → text-7xl = 1.875rem → 4.5rem (30px → 72px) */
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.25;  /* leading-tight */
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
    color: #fff;
}
@media (min-width: 640px)  { .hero__headline { font-size: 2.25rem; margin-bottom: 1.5rem; } }
@media (min-width: 768px)  { .hero__headline { font-size: 3rem; } }
@media (min-width: 1024px) { .hero__headline { font-size: 4.5rem; } }
.hero__rule { width: 4rem; height: 2px; background: rgba(255, 255, 255, 0.5); margin: 0 auto 1rem; }
@media (min-width: 640px) { .hero__rule { width: 6rem; margin-bottom: 1.5rem; } }
.hero__sub {
    /* text-base → text-2xl = 1rem → 1.5rem */
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.625;  /* leading-relaxed */
    margin-bottom: 2rem;
}
@media (min-width: 640px)  { .hero__sub { font-size: 1.125rem; margin-bottom: 2.5rem; } }
@media (min-width: 768px)  { .hero__sub { font-size: 1.25rem; } }
@media (min-width: 1024px) { .hero__sub { font-size: 1.5rem; } }
.hero__scroll { position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%); color: rgba(255, 255, 255, 0.7); animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, -8px); } }

/* ---------- Three pillars ---------- */
.three-pillars__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .three-pillars__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
@media (min-width: 1024px) { .three-pillars__grid { gap: 4rem; } }

.pillar-card {
    position: relative; display: block; height: 450px; border-radius: var(--radius-xl);
    overflow: hidden; color: #fff; transition: transform 0.5s var(--ease);
}
@media (min-width: 768px) { .pillar-card { height: 600px; } }
.pillar-card:hover { transform: translateY(-2px); }
.pillar-card__media, .pillar-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.pillar-card:hover .pillar-card__img { transform: scale(1.1); }
.pillar-card__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(30, 35, 40, 0.9) 0%, rgba(30, 35, 40, 0.2) 60%, transparent 100%); opacity: 0.6; transition: opacity 0.5s; }
.pillar-card:hover .pillar-card__overlay { opacity: 0.8; }
.pillar-card__body { position: absolute; left: 1rem; right: 1rem; bottom: 2.5rem; }
@media (min-width: 768px) { .pillar-card__body { left: 2rem; right: 2rem; bottom: 2rem; } }
.pillar-card__glass {
    background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.2); border-radius: var(--radius-md);
    padding: 1.5rem; transform: translateY(1rem); transition: transform 0.5s var(--ease);
}
@media (min-width: 768px) { .pillar-card__glass { padding: 2rem; } }
.pillar-card:hover .pillar-card__glass { transform: translateY(0); }
.pillar-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: 0.025em;   /* Vercel tracking-wide on this title */
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}
@media (min-width: 768px) { .pillar-card__title { font-size: 1.875rem; } }  /* text-3xl */
.pillar-card__hover { max-height: 0; opacity: 0; overflow: hidden; transition: all 0.5s var(--ease); }
.pillar-card:hover .pillar-card__hover { max-height: 10rem; opacity: 1; margin-bottom: 1.5rem; }
.pillar-card__hover p { color: rgba(255, 255, 255, 0.9); font-size: 0.92rem; line-height: 1.5; }
.pillar-card__cta { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.2em; color: #fff; }
.pillar-card__cta-line { display: block; width: 2rem; height: 1px; background: rgba(255, 255, 255, 0.5); transition: width 0.3s, background 0.3s; }
.pillar-card:hover .pillar-card__cta-line { width: 3rem; background: #fff; }

/* ---------- About home ---------- */
.about-home--bg { background: #f9fafb; }
.about-home__grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .about-home__grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }
.about-home__frame { position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-xl); }
.about-home__img { width: 100%; height: 350px; object-fit: cover; }
@media (min-width: 640px) { .about-home__img { height: 400px; } }
@media (min-width: 768px) { .about-home__img { height: 500px; } }
@media (min-width: 1024px) { .about-home__img { height: 600px; } }
.about-home__img-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, hsl(var(--deepblue) / 0.3) 0%, transparent 100%); }
.about-home__copy { display: flex; flex-direction: column; gap: 1.5rem; }
.about-home__headline {
    font-size: 1.875rem;
    line-height: 1.2;
}
@media (min-width: 768px)  { .about-home__headline { font-size: 2.25rem; } }
@media (min-width: 1024px) { .about-home__headline { font-size: 3rem; } }
.about-home__headline-accent { color: var(--primary); }
.about-home__body { color: rgba(66, 67, 66, 0.8); line-height: 1.625; display: flex; flex-direction: column; gap: 1rem; }
.about-home__cta { align-self: flex-start; margin-top: 0.5rem; }

/* ---------- Products ---------- */
.products__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px)  { .products__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .products__grid { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; } }
.product-card {
    display: flex; flex-direction: column; align-items: center;
    padding: 1rem; background: #f9fafb; border-radius: var(--radius-md);
    text-align: center; transition: all 0.4s var(--ease); cursor: pointer;
    width: 100%;
}
@media (min-width: 768px) { .product-card { padding: 1.5rem; } }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card__media { aspect-ratio: 1; width: 100%; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.product-card__media img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 0.5s; }
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card__title { font-size: 1rem; font-weight: 600; color: var(--graphite); transition: color 0.3s; }
@media (min-width: 768px) { .product-card__title { font-size: 1.1rem; } }
.product-card:hover .product-card__title { color: var(--primary); }
.product-card__sci { margin-top: 0.25rem; font-size: 0.75rem; font-style: italic; color: rgba(66, 67, 66, 0.6); }

/* Product dialog */
.product-dialog { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.product-dialog[hidden] { display: none; }
.product-dialog__backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(4px); }
.product-dialog__panel { position: relative; max-width: 640px; width: 100%; max-height: 90vh; overflow-y: auto; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.product-dialog__close { position: absolute; top: 0.75rem; right: 0.75rem; width: 2rem; height: 2rem; border-radius: 9999px; font-size: 1.5rem; line-height: 1; background: rgba(0, 0, 0, 0.05); z-index: 2; }
.product-dialog__grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .product-dialog__grid { grid-template-columns: 1fr 1fr; } }
.product-dialog__media { background: #f9fafb; padding: 2rem; display: flex; align-items: center; justify-content: center; }
.product-dialog__media img { max-width: 200px; width: 100%; }
.product-dialog__body { padding: 1.5rem; }
@media (min-width: 768px) { .product-dialog__body { padding: 2rem; } }
.product-dialog__title { color: var(--primary); font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 0.25rem; }
.product-dialog__sci { font-style: italic; color: rgba(66, 67, 66, 0.6); margin-bottom: 1.25rem; font-size: 0.85rem; }
.product-dialog__desc { color: rgba(66, 67, 66, 0.85); line-height: 1.65; margin-bottom: 1.5rem; }
.product-dialog__features-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; font-family: 'Lato', sans-serif; }
.product-dialog__features { display: flex; flex-direction: column; gap: 0.5rem; }
.product-dialog__features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: rgba(66, 67, 66, 0.75); }
.product-dialog__features li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }

/* ---------- Bistro teaser ---------- */
.bistro-teaser { position: relative; width: 100%; min-height: 60vh; background-size: cover; background-position: center; color: #fff; display: flex; align-items: center; justify-content: center; padding: 4rem 1.5rem; overflow: hidden; }
@media (min-width: 768px) { .bistro-teaser { min-height: 70vh; } }
.bistro-teaser__overlay { position: absolute; inset: 0; background: rgba(29, 69, 137, 0.5); }
.bistro-teaser__inner { position: relative; z-index: 1; text-align: center; max-width: 40rem; }
.bistro-teaser__headline { color: #fff; font-size: 1.875rem; font-weight: 600; margin-bottom: 1.5rem; line-height: 1.2; letter-spacing: -0.025em; }
@media (min-width: 640px) { .bistro-teaser__headline { font-size: 2.25rem; } }
@media (min-width: 768px) { .bistro-teaser__headline { font-size: 3rem; } }
.bistro-teaser__rule { width: 4rem; height: 2px; background: rgba(255, 255, 255, 0.5); margin: 0 auto 1.5rem; }
.bistro-teaser__text { color: rgba(255, 255, 255, 0.92); font-size: 1.125rem; line-height: 1.625; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .bistro-teaser__text { font-size: 1.25rem; } }
@media (min-width: 768px) { .bistro-teaser__text { font-size: 1.2rem; } }
.bistro-teaser__ctas { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; }
@media (min-width: 640px) { .bistro-teaser__ctas { flex-direction: row; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; min-height: 340px; height: 40vh; overflow: hidden; color: #fff; }
@media (min-width: 768px) { .page-hero { height: 50vh; } }
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.7) 100%); }
.page-hero__inner { position: relative; z-index: 1; height: 100%; display: flex; align-items: center; justify-content: center; padding: 6rem 1.5rem 2rem; text-align: center; }
@media (min-width: 768px) { .page-hero__inner { padding: 8rem 2rem 3rem; } }
.page-hero__copy { max-width: 48rem; }
.page-hero__headline {
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.25;
    letter-spacing: -0.025em;
}
@media (min-width: 640px)  { .page-hero__headline { font-size: 2.25rem; margin-bottom: 1.5rem; } }
@media (min-width: 768px)  { .page-hero__headline { font-size: 3rem; } }
@media (min-width: 1024px) { .page-hero__headline { font-size: 3.75rem; } }
.page-hero__lead { font-size: 1rem; color: rgba(255, 255, 255, 0.92); line-height: 1.625; }
@media (min-width: 640px) { .page-hero__lead { font-size: 1.125rem; } }
@media (min-width: 768px) { .page-hero__lead { font-size: 1.25rem; } }

/* ---------- Glass cards ---------- */
.glass-card {
    background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5); border-radius: var(--radius-lg);
    padding: 1.5rem; box-shadow: var(--shadow-md);
}
@media (min-width: 768px) { .glass-card { padding: 2rem; } }
.glass-card--tinted { background: hsl(var(--primary-hsl) / 0.05); border-color: hsl(var(--primary-hsl) / 0.1); }
.glass-card--center { text-align: center; max-width: 36rem; margin: 0 auto; }
.glass-card__title { font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; color: var(--primary); }
.glass-card__body { color: rgba(66, 67, 66, 0.75); line-height: 1.65; margin-bottom: 1.5rem; }

/* ---------- Einzelhandel ---------- */
.einzelhandel__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .einzelhandel__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.einzelhandel__col { display: flex; flex-direction: column; gap: 1.5rem; }
.einzelhandel__aside { display: flex; flex-direction: column; gap: 2rem; }

.info-rows { display: flex; flex-direction: column; gap: 1rem; }
.info-row { display: flex; align-items: center; gap: 1rem; font-size: 0.95rem; color: rgba(66, 67, 66, 0.85); }
.info-row--start { align-items: flex-start; }
.info-row__icon { color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; }
.info-row__strong { font-weight: 600; color: var(--graphite); }
.info-row a { transition: color 0.2s; }
.info-row a:hover { color: var(--primary); }

.map-embed { border-radius: var(--radius-md); overflow: hidden; height: 250px; box-shadow: var(--shadow-md); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Grosshandel ---------- */
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit-card { transition: transform 0.3s, box-shadow 0.3s; }
.benefit-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.benefit-card__icon {
    width: 3.5rem; height: 3.5rem; border-radius: var(--radius-md);
    background: hsl(var(--primary-hsl) / 0.1); color: var(--primary);
    display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
    transition: all 0.3s;
}
.benefit-card:hover .benefit-card__icon { background: var(--primary); color: #fff; }
.benefit-card__title { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.75rem; }
.benefit-card__body { color: rgba(66, 67, 66, 0.7); font-size: 0.9rem; line-height: 1.55; }

.parallax { position: relative; height: 40vh; background-size: cover; background-attachment: fixed; background-position: center; }
@media (min-width: 768px) { .parallax { height: 60vh; } }
.parallax__overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.2); }

.catalog { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .catalog { grid-template-columns: 1fr 1fr; } }
.catalog__copy { display: flex; flex-direction: column; gap: 1.5rem; }

.check-list { display: flex; flex-direction: column; gap: 0.75rem; }
.check-list li { display: flex; align-items: center; gap: 0.75rem; color: var(--graphite); }
.check-list svg { color: var(--primary); flex-shrink: 0; }

.catalog-cover { max-width: 420px; position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-xl); transition: transform 0.5s; }
.catalog-cover:hover { transform: translateY(-4px); }
.catalog-cover img { width: 100%; height: auto; transition: transform 0.5s; }
.catalog-cover:hover img { transform: scale(1.02); }
.catalog-cover__cta {
    position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%);
    padding: 0.75rem 1.5rem; background: #fff; color: var(--primary);
    font-weight: 700; font-size: 0.85rem; border-radius: var(--radius-sm);
    opacity: 0; transition: opacity 0.3s;
}
.catalog-cover:hover .catalog-cover__cta { opacity: 1; }
.catalog-cover__meta { margin-top: 1rem; text-align: center; font-size: 0.85rem; color: rgba(66, 67, 66, 0.6); }

.process-steps { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .process-steps { grid-template-columns: repeat(3, 1fr); } }
.process-step { text-align: center; }
.process-step__num { width: 4rem; height: 4rem; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem; }
.process-step__title { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.75rem; }
.process-step__body { color: rgba(66, 67, 66, 0.7); line-height: 1.55; }

.sticky-whatsapp {
    position: fixed; right: 1rem; bottom: 1rem; z-index: 40;
    width: 3.25rem; height: 3.25rem; border-radius: 50%;
    background: #25D366; color: #fff; box-shadow: var(--shadow-xl);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s;
}
.sticky-whatsapp:hover { background: #20ba5a; transform: scale(1.1); }
@media (min-width: 640px) { .sticky-whatsapp { right: 2rem; bottom: 2rem; width: 3.5rem; height: 3.5rem; } }

/* PDF modal */
.pdf-modal { position: fixed; inset: 0; z-index: 100; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: 1rem; }
.pdf-modal[hidden] { display: none; }
.pdf-modal__backdrop { position: absolute; inset: 0; }
.pdf-modal__panel { position: relative; width: 100%; max-width: 1024px; height: 90vh; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); display: flex; flex-direction: column; }
.pdf-modal__bar { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); gap: 0.5rem; }
.pdf-modal__title { font-size: 1rem; font-weight: 600; }
.pdf-modal__sub { font-size: 0.8rem; color: rgba(66, 67, 66, 0.6); }
.pdf-modal__actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.pdf-modal__close { width: 2.25rem; height: 2.25rem; border-radius: 50%; background: #f1f1f2; font-size: 1.25rem; }
.pdf-modal iframe { flex: 1; width: 100%; border: 0; }

/* ---------- Über uns ---------- */
.two-col { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.two-col--aligned { align-items: center; margin-bottom: 5rem; }
/* Mobile: push video below copy. Desktop: let DOM order take over
   (video is first in DOM, so it ends up on the left — matches Vercel). */
.two-col__left--video { order: 2; }
@media (min-width: 1024px) { .two-col__left--video { order: 0; } }
.video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    background: #f9fafb;
    overflow: hidden;
}

.dot-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.dot-list li { display: flex; align-items: center; gap: 0.75rem; }
.dot-list__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.dot-list__label { text-decoration: underline; text-decoration-color: hsl(var(--primary-hsl) / 0.3); font-weight: 500; }

.timeline { position: relative; max-width: 56rem; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 1rem; top: 0; bottom: 0; width: 2px; background: hsl(var(--primary-hsl) / 0.2); }
@media (min-width: 768px) { .timeline::before { left: 50%; transform: translateX(-50%); } }
.timeline__item { position: relative; display: flex; flex-direction: column; gap: 0.75rem; padding-bottom: 2rem; }
@media (min-width: 768px) {
    .timeline__item { flex-direction: row; align-items: center; gap: 2rem; padding-bottom: 3rem; }
    .timeline__item--reverse { flex-direction: row-reverse; }
    .timeline__item--reverse .timeline__copy-side { text-align: right; }
    .timeline__item:not(.timeline__item--reverse) .timeline__year-side { text-align: right; }
    .timeline__year-side, .timeline__copy-side { width: 50%; padding: 0 1rem; }
}
.timeline__year-side { padding-left: 2.5rem; }
.timeline__copy-side { padding-left: 2.5rem; }
@media (min-width: 768px) { .timeline__year-side, .timeline__copy-side { padding-left: 0; } }
.timeline__year { display: inline-block; background: var(--primary); color: #fff; padding: 0.35rem 0.9rem; border-radius: var(--radius-sm); font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.95rem; }
.timeline__dot { position: absolute; left: 0.625rem; top: 0.35rem; width: 0.8rem; height: 0.8rem; border-radius: 50%; background: var(--primary); border: 3px solid #fff; z-index: 2; }
@media (min-width: 768px) { .timeline__dot { left: 50%; transform: translateX(-50%); } }
.timeline__title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.25rem; }
.timeline__body { color: rgba(66, 67, 66, 0.7); font-size: 0.95rem; line-height: 1.55; }

/* ---------- Kontakt ---------- */
.kontakt__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .kontakt__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.kontakt__left, .kontakt__right { display: flex; flex-direction: column; gap: 2rem; }

.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card { display: flex; gap: 1rem; padding: 1.25rem; transition: transform 0.3s; }
.contact-card:hover { transform: translateY(-2px); }
.contact-card__icon { width: 3rem; height: 3rem; border-radius: var(--radius-sm); background: hsl(var(--primary-hsl) / 0.1); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card__eyebrow { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(66, 67, 66, 0.5); margin-bottom: 0.25rem; }
.contact-card__title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.contact-card__line { color: rgba(66, 67, 66, 0.75); font-size: 0.95rem; }
.contact-card__line--muted { opacity: 0.55; font-size: 0.8rem; }
.contact-card__line--strong { font-weight: 500; margin-top: 0.5rem; }
.contact-card__link { color: var(--graphite); display: inline-block; }
.contact-card__link:hover { color: var(--primary); }
.contact-card__link--inline { margin-top: 0.5rem; color: var(--primary); font-size: 0.9rem; font-weight: 500; }
.contact-card__link--inline:hover { text-decoration: underline; }

.contact-form { position: relative; padding: 1.5rem; }
@media (min-width: 640px) { .contact-form { padding: 2rem; } }
@media (min-width: 768px) { .contact-form { padding: 2.5rem; } }
.contact-form__title { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .contact-form__title { font-size: 1.8rem; } }
.contact-form__intro { color: rgba(66, 67, 66, 0.6); font-style: italic; font-weight: 300; margin-bottom: 2rem; }
.contact-form__form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form__row { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-form__row--two { flex-direction: column; gap: 1.25rem; }
@media (min-width: 768px) { .contact-form__row--two { display: grid; grid-template-columns: 1fr 1fr; } }
.contact-form__label { font-size: 0.9rem; font-weight: 500; color: var(--graphite); }
.contact-form__form input,
.contact-form__form select,
.contact-form__form textarea {
    width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form__form input:focus,
.contact-form__form select:focus,
.contact-form__form textarea:focus { outline: 0; border-color: var(--primary); box-shadow: 0 0 0 3px hsl(var(--primary-hsl) / 0.15); }
.contact-form__form textarea { resize: vertical; min-height: 8rem; }
.contact-form__form .honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.contact-form__success { text-align: center; padding: 3rem 1rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.contact-form__check { width: 4rem; height: 4rem; border-radius: 50%; background: #dcfce7; color: #16a34a; display: flex; align-items: center; justify-content: center; }
.contact-form__success h3 { font-size: 1.3rem; font-weight: 600; }
.contact-form__error { color: #dc2626; font-size: 0.9rem; text-align: center; }

/* ---------- Recipes list ---------- */
.rezepte-section { margin-top: 3rem; }
@media (min-width: 768px) { .rezepte-section { margin-top: 5rem; } }
.recipes-toolbar { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .recipes-toolbar { flex-direction: row; align-items: center; justify-content: space-between; } }
.recipes-toolbar__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
@media (min-width: 768px) { .recipes-toolbar__chips { justify-content: flex-start; } }
.chip { padding: 0.6rem 1.25rem; border-radius: 9999px; background: #fff; color: rgba(66, 67, 66, 0.6); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.3s; box-shadow: var(--shadow-sm); }
.chip:hover { background: #f3f4f6; }
.chip--active { background: var(--primary); color: #fff; box-shadow: var(--shadow-md); }

.recipes-search { position: relative; width: 100%; max-width: 16rem; }
.recipes-search svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: rgba(66, 67, 66, 0.35); }
.recipes-search input { width: 100%; padding: 0.75rem 1rem 0.75rem 2.5rem; background: #fff; border: 0; border-radius: 9999px; font-size: 0.9rem; box-shadow: var(--shadow-sm); }
.recipes-search input:focus { outline: 0; box-shadow: 0 0 0 3px hsl(var(--primary-hsl) / 0.15); }

.recipes-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .recipes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .recipes-grid { grid-template-columns: repeat(3, 1fr); } }

.recipe-card { background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(10px); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: all 0.4s; display: flex; flex-direction: column; color: var(--graphite); }
.recipe-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.recipe-card.hidden { display: none; }
.recipe-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.recipe-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s; }
.recipe-card:hover .recipe-card__media img { transform: scale(1.1); }
.recipe-card__illu { position: absolute; top: 1rem; right: 1rem; width: 3rem; height: 3rem; border-radius: 50%; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(8px); padding: 0.5rem; box-shadow: var(--shadow-md); border: 1px solid rgba(255, 255, 255, 0.3); transform: rotate(-12deg); transition: transform 0.5s; }
.recipe-card:hover .recipe-card__illu { transform: rotate(0); }
.recipe-card__illu img { width: 100%; height: 100%; object-fit: contain; }
.recipe-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.recipe-card__title { font-size: 1.2rem; font-weight: 600; transition: color 0.3s; }
.recipe-card:hover .recipe-card__title { color: var(--primary); }
.recipe-card__desc { font-size: 0.9rem; color: rgba(66, 67, 66, 0.65); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 0.25rem; }
.recipe-card__meta { display: flex; align-items: center; gap: 1rem; font-size: 0.85rem; color: rgba(66, 67, 66, 0.6); margin-top: auto; }
.recipe-card__meta-item { display: inline-flex; align-items: center; gap: 0.3rem; }

.diff { display: inline-flex; align-items: center; padding: 0.25rem 0.6rem; border-radius: 9999px; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.diff--easy { background: #dcfce7; color: #15803d; }
.diff--medium { background: #ffedd5; color: #c2410c; }
.diff--hard { background: #fee2e2; color: #b91c1c; }

.recipes-empty { text-align: center; padding: 4rem 1rem; color: rgba(66, 67, 66, 0.6); }
.recipes-empty svg { color: #e5e7eb; margin: 0 auto 1rem; }
.recipes-empty h3 { font-size: 1.2rem; font-weight: 600; color: var(--graphite); margin-bottom: 0.5rem; }

/* ---------- Recipe detail ---------- */
.recipe-hero { position: relative; height: 55vh; overflow: hidden; color: #fff; }
@media (min-width: 768px) { .recipe-hero { height: 65vh; } }
.recipe-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.recipe-hero__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.4) 100%); }
.recipe-hero__back { position: absolute; top: 5rem; left: 1.5rem; z-index: 2; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1rem; background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.3); border-radius: var(--radius-sm); color: #fff; font-size: 0.9rem; font-weight: 500; }
@media (min-width: 768px) { .recipe-hero__back { top: 6rem; left: 2rem; } }
.recipe-hero__back:hover { background: rgba(255, 255, 255, 0.3); }
.recipe-hero__illu { position: absolute; top: 6rem; right: 2rem; width: 5rem; height: 5rem; border-radius: 50%; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(8px); padding: 0.75rem; box-shadow: var(--shadow-xl); transform: rotate(-12deg); display: none; }
@media (min-width: 768px) { .recipe-hero__illu { display: block; width: 7rem; height: 7rem; } }
.recipe-hero__copy { position: absolute; left: 1.5rem; right: 1.5rem; bottom: 2rem; z-index: 2; }
@media (min-width: 768px) { .recipe-hero__copy { left: 3rem; right: 3rem; } }
.recipe-hero__title { color: #fff; font-size: clamp(1.8rem, 4vw, 3.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 1rem; }
.recipe-hero__lead { color: rgba(255, 255, 255, 0.8); font-size: 1rem; max-width: 40rem; margin-bottom: 1.25rem; }
.recipe-hero__meta { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.recipe-hero__pill { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.4rem 0.8rem; background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(4px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: var(--radius-sm); font-size: 0.85rem; }
.recipe-hero__share { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.45rem 0.9rem; background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(4px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: var(--radius-sm); color: #fff; font-size: 0.85rem; }
.recipe-hero__share:hover { background: rgba(255, 255, 255, 0.3); }

.recipe-body { display: grid; grid-template-columns: 1fr; gap: 3rem; max-width: 80rem; margin: 0 auto; }
@media (min-width: 1024px) { .recipe-body { grid-template-columns: 1fr 2fr; gap: 5rem; } }
.recipe-body__ingredients { position: relative; }
@media (min-width: 1024px) { .recipe-body__ingredients { position: sticky; top: 6rem; align-self: start; } }
.ingredients-card { border: 1px solid hsl(var(--primary-hsl) / 0.1); background: hsl(var(--primary-hsl) / 0.03); border-radius: var(--radius-lg); padding: 1.5rem; }
.ingredients-card__top { display: flex; flex-direction: column; gap: 1rem; padding-bottom: 1rem; margin-bottom: 1.5rem; border-bottom: 1px solid hsl(var(--primary-hsl) / 0.1); }
.ingredients-card__top h2 { color: var(--primary); font-size: 1.4rem; }
.portion-stepper { display: inline-flex; align-items: center; gap: 0.25rem; background: #f9fafb; border: 1px solid #eff1f3; border-radius: var(--radius-sm); padding: 0.15rem; }
.portion-stepper__btn { width: 2rem; height: 2rem; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.portion-stepper__btn:hover { background: #fff; box-shadow: var(--shadow-sm); }
.portion-stepper__value { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--primary); }
.portion-stepper__unit { font-size: 0.55rem; font-weight: 700; color: rgba(66, 67, 66, 0.4); text-transform: uppercase; letter-spacing: 0.1em; padding: 0 0.25rem; }
.ingredients-list { display: flex; flex-direction: column; gap: 0.75rem; }
.ingredients-list li { display: flex; align-items: flex-start; gap: 0.75rem; color: rgba(66, 67, 66, 0.85); line-height: 1.55; }
.ingredients-list__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); margin-top: 0.55rem; flex-shrink: 0; }

.recipe-body__steps-heading { color: var(--primary); font-size: 1.4rem; padding-bottom: 1rem; margin-bottom: 2rem; border-bottom: 1px solid hsl(var(--primary-hsl) / 0.1); }
.steps-list { display: flex; flex-direction: column; gap: 2.5rem; }
.steps-list__item { display: flex; gap: 1.5rem; }
.steps-list__num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: hsl(var(--primary-hsl) / 0.1); line-height: 1; flex-shrink: 0; transition: color 0.3s; }
.steps-list__item:hover .steps-list__num { color: hsl(var(--primary-hsl) / 0.25); }
.steps-list__body { color: rgba(66, 67, 66, 0.85); line-height: 1.65; padding-top: 0.75rem; font-size: 1rem; }
@media (min-width: 768px) { .steps-list__body { font-size: 1.05rem; } }

.chef-tip { margin-top: 3rem; padding: 1.5rem; background: hsl(var(--primary-hsl) / 0.05); border: 1px solid hsl(var(--primary-hsl) / 0.15); border-radius: var(--radius-lg); }
.chef-tip__label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.5rem; }
.chef-tip__body { color: rgba(66, 67, 66, 0.7); line-height: 1.6; }

/* ---------- Footer ---------- */
.site-footer { background: var(--deepblue); color: #fff; }
.site-footer__main { padding: 4rem 1.5rem; }
@media (min-width: 640px) { .site-footer__main { padding: 6rem 2.5rem; } }
@media (min-width: 768px) { .site-footer__main { padding: 8rem 4rem; } }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(3, 1fr); gap: 6rem; } }
.site-footer__col { display: flex; flex-direction: column; gap: 1.5rem; }
.site-footer__logo img { height: 4rem; width: auto; margin-bottom: 0.5rem; }
.site-footer__quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.1rem; color: rgba(255, 255, 255, 0.8); line-height: 1.5; }
.site-footer__body { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; line-height: 1.55; max-width: 18rem; }
.site-footer__socials { display: flex; gap: 0.75rem; padding-top: 0.5rem; }
.social-btn { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.2); display: flex; align-items: center; justify-content: center; color: #fff; transition: all 0.3s; }
.social-btn:hover { background: rgba(255, 255, 255, 0.2); transform: scale(1.1); }
.site-footer__heading { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: #fff; }
.site-footer__list { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__list a { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; transition: color 0.2s; }
.site-footer__list a:hover { color: #fff; }
.site-footer__contact { display: flex; flex-direction: column; gap: 1rem; font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); }
.site-footer__row { display: flex; align-items: center; gap: 0.75rem; }
.site-footer__row--start { align-items: flex-start; }
.site-footer__row--spaced { margin-top: 0.5rem; }
.site-footer__icon { color: rgba(255, 255, 255, 0.5); flex-shrink: 0; margin-top: 0.15rem; }
.site-footer__row a { color: rgba(255, 255, 255, 0.7); transition: color 0.2s; }
.site-footer__row a:hover { color: #fff; }
.site-footer__row p { color: rgba(255, 255, 255, 0.7); }
.site-footer__row-title { color: rgba(255, 255, 255, 0.9); font-weight: 500; }
.site-footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.site-footer__bottom-row { display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; padding: 1.5rem 1.5rem; font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); text-align: center; }
@media (min-width: 768px) { .site-footer__bottom-row { flex-direction: row; text-align: left; } }
.site-footer__legal { display: flex; gap: 1.5rem; }
.site-footer__legal a { color: rgba(255, 255, 255, 0.5); transition: color 0.2s; }
.site-footer__legal a:hover { color: #fff; }

/* ---------- Cookie banner ---------- */
.cookie-banner { position: fixed; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; z-index: 100; max-width: 26rem; }
@media (min-width: 768px) { .cookie-banner { left: auto; right: 1.5rem; } }
.cookie-banner[hidden] { display: none; }
.cookie-banner__card { background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); border: 1px solid var(--border); overflow: hidden; padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
.cookie-banner__icon { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: hsl(var(--primary-hsl) / 0.1); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cookie-banner__body { flex: 1; min-width: 0; }
.cookie-banner__top { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.cookie-banner__heading { font-size: 1.1rem; font-weight: 700; font-family: 'Playfair Display', serif; line-height: 1.25; }
.cookie-banner__close { width: 1.5rem; height: 1.5rem; color: #a1a1aa; font-size: 1.25rem; line-height: 1; flex-shrink: 0; }
/* Mobile: enger Rand, kleineres Icon, damit Titel + Close-Button nicht
   gequetscht wirken. Unter 400px wird das Shield-Icon über den Titel
   gesetzt damit Content die volle Breite bekommt. */
@media (max-width: 520px) {
    .cookie-banner { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; }
    .cookie-banner__card { padding: 1.1rem; gap: 0.75rem; }
    .cookie-banner__icon { width: 2rem; height: 2rem; }
    .cookie-banner__icon svg { width: 16px; height: 16px; }
    .cookie-banner__heading { font-size: 1.02rem; }
}
@media (max-width: 400px) {
    .cookie-banner__card { flex-direction: column; gap: 0.6rem; }
    .cookie-banner__icon { width: 2.2rem; height: 2.2rem; }
}
.cookie-banner__close:hover { color: #4b5563; }
.cookie-banner__text { font-size: 0.9rem; color: rgba(66, 67, 66, 0.7); line-height: 1.5; margin-bottom: 1.5rem; }
.cookie-banner__actions { display: flex; flex-direction: column; gap: 0.6rem; }
@media (min-width: 480px) { .cookie-banner__actions { flex-direction: row; } }
.cookie-banner__btn { flex: 1; padding: 0.65rem 1rem; font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; }
.cookie-banner__learn-more { margin-top: 1rem; font-size: 0.65rem; color: rgba(66, 67, 66, 0.4); text-align: center; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; }
.cookie-banner__link { text-decoration: underline; }
.cookie-banner__link:hover { color: var(--primary); }

/* ---------- Legal pages ---------- */
.legal { padding: 5rem 1.5rem; }
.legal__wrap { max-width: 56rem; margin: 0 auto; display: flex; flex-direction: column; gap: 3rem; }
.legal__meta { display: flex; align-items: center; gap: 1rem; }
.legal__meta-icon { width: 3rem; height: 3rem; border-radius: var(--radius-sm); background: hsl(var(--primary-hsl) / 0.1); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.legal__meta-version { font-size: 0.9rem; font-style: italic; color: rgba(66, 67, 66, 0.6); }
.legal__block { display: flex; flex-direction: column; gap: 1rem; }
.legal__block--card { background: #f9fafb; padding: 2rem; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.legal__grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .legal__grid-2 { grid-template-columns: 1fr 1fr; } }
.legal__h2 { color: var(--primary); font-size: 1.4rem; }
.legal__h2--icon { display: flex; align-items: center; gap: 0.5rem; }
.legal__h2--ruled { border-bottom: 1px solid hsl(var(--primary-hsl) / 0.1); padding-bottom: 0.5rem; }
.legal__h3 { color: var(--graphite); font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; }
.legal__label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(66, 67, 66, 0.4); margin-bottom: 0.25rem; font-family: 'Lato', sans-serif; }
.legal__strong { font-size: 1.1rem; font-weight: 700; color: var(--graphite); }
.legal__strong--accent { color: var(--primary); }
.legal__hr { border: 0; border-top: 1px solid #e5e7eb; margin: 1rem 0; }
.legal__disclaimer { padding-top: 3rem; border-top: 1px solid var(--border); font-size: 0.85rem; color: rgba(66, 67, 66, 0.5); font-style: italic; }
.legal-bases { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .legal-bases { grid-template-columns: 1fr 1fr; } }
.legal-bases__card { background: #f9fafb; padding: 1rem; border-radius: var(--radius-md); border: 1px solid var(--border); }
.legal-bases__art { display: block; color: var(--primary); font-size: 0.85rem; font-weight: 700; margin-bottom: 0.25rem; }
.legal-bases__title { font-family: 'Playfair Display', serif; font-weight: 600; margin-bottom: 0.25rem; }
.legal-bases__desc { font-size: 0.85rem; color: rgba(66, 67, 66, 0.6); }
.controller-card { background: hsl(var(--primary-hsl) / 0.05); padding: 1.5rem; border-radius: var(--radius-lg); border: 1px solid hsl(var(--primary-hsl) / 0.1); }
.controller-card__name { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--graphite); margin-bottom: 0.5rem; }
.rights-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 768px) { .rights-grid { grid-template-columns: 1fr 1fr; } }
.rights-grid__item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.rights-grid__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.legal__footer { padding-top: 2.5rem; border-top: 1px solid hsl(var(--primary-hsl) / 0.1); text-align: center; font-size: 0.8rem; color: rgba(66, 67, 66, 0.4); }

/* ---------- Photo slider (Embla-less, simple horizontal) ---------- */
.photo-slider { position: relative; width: 100%; max-width: 56rem; margin: 2rem auto 0; }
.photo-slider[data-orientation="portrait"] { max-width: 36rem; }
.photo-slider[data-orientation="square"]   { max-width: 28rem; }
.photo-slider__track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; border-radius: var(--radius-md); }
.photo-slider__track::-webkit-scrollbar { display: none; }
.photo-slider__slide { flex: 0 0 100%; scroll-snap-align: start; }
.photo-slider__slide img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.photo-slider[data-orientation="portrait"] .photo-slider__slide img { aspect-ratio: 4 / 5; }
.photo-slider[data-orientation="square"]   .photo-slider__slide img { aspect-ratio: 1 / 1; }
.photo-slider__btn { position: absolute; top: 50%; transform: translateY(-50%); width: 2.5rem; height: 2.5rem; border-radius: 50%; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(4px); box-shadow: var(--shadow-md); font-size: 1.5rem; line-height: 1; color: var(--graphite); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.photo-slider__btn:hover { background: #fff; }
.photo-slider__btn--prev { left: 0.75rem; }
.photo-slider__btn--next { right: 0.75rem; }

/* ---------- Recipe detail not-found ---------- */
.page--recipe-not-found { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding-top: 7rem; text-align: center; }
.page--recipe-not-found h1 { font-size: 2rem; margin-bottom: 1rem; }

/* ---------- Small helpers ---------- */
.hidden { display: none !important; }

/* ---------- Honeypot ---------- */
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }

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