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

:root {
    --cream: #fdf6ee;
    --brown: #5c3d2e;
    --rose: #c8896a;
    --light: #fff9f4;
    --text: #2e1f14;
}

html {
    font-size: 20px;
}

/* На мобильных уменьшаем корневой размер — вся вёрстка на rem/em
   ужимается пропорционально: отступы, шрифты, длина строки. */
@media (max-width: 600px) {
    html { font-size: 17px; }
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
}

/* ── Nav ── */
header {
    background: var(--light);
    border-bottom: 1px solid #e8ddd4;
    position: sticky;
    top: 0;
    z-index: 10;
}

nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--brown);
    letter-spacing: 0.05em;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-location {
    font-size: 0.65rem;
    font-weight: normal;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.6;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--brown);
    font-size: 0.95rem;
    transition: color 0.2s;
}

nav a:hover { color: var(--rose); }

.nav-link {
    position: relative;
    padding-bottom: 2px;
}

.nav-link.active {
    color: var(--rose);
    font-weight: 600;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: var(--rose);
}

/* ── Lang switcher ── */
.lang-switcher {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    font-size: 0.85rem;
}

.lang-switcher a {
    color: var(--brown);
    text-decoration: none;
    padding: 0.2rem 0.45rem;
    border: 1px solid transparent;
    border-radius: 2px;
    transition: color 0.2s, border-color 0.2s;
    letter-spacing: 0.05em;
}

.lang-switcher a:hover {
    color: var(--rose);
    border-color: var(--rose);
}

.lang-switcher .lang-active {
    border-color: var(--brown);
    font-weight: bold;
}

/* скрываем десктопное меню и бургер на разных брейкпоинтах */
.burger { display: none; }

/* ── Hero ── */
.hero {
    background: linear-gradient(135deg, var(--brown) 0%, #8b5e4a 100%);
    color: white;
    padding: clamp(4rem, 10vw, 8rem) 1.25rem;
    text-align: center;
}

.hero h1 {
    font-size: clamp(1.6rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Button ── */
.btn {
    display: inline-block;
    background: var(--rose);
    color: white;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 2px;
    text-decoration: none;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
    cursor: pointer;
    overflow-wrap: anywhere;
    transition: background 0.2s;
}

.btn:hover { background: #b5785a; }

/* ── Sections ── */
.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 2.5rem) 1.25rem;
}

.section-alt {
    max-width: 100%;
    background: var(--light);
}

.section-alt .section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 2.5rem) 1.25rem;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--brown);
    margin-bottom: 1.25rem;
}

/* ── Hero extras ── */
.hero-location {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 0.75rem;
}

.hero-tags {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    margin-top: -0.5rem;
}

/* ── Irina ── */
.section-irina {
    max-width: 1100px;
    margin: 0 auto;
}

.irina-inner {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.irina-photo {
    flex-shrink: 0;
    width: 260px;
}

.irina-photo img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 2px;
}

.irina-text h2 {
    margin-bottom: 0.25rem;
}

.irina-role {
    color: var(--rose);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.irina-list {
    list-style: none;
    margin: 1rem 0;
}

.irina-list li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.irina-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--rose);
}

blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--brown);
    border-left: 3px solid var(--rose);
    padding-left: 1rem;
    margin: 1.5rem 0 0.25rem;
}

.blockquote-sub {
    font-size: 0.9rem;
    opacity: 0.7;
    padding-left: 1.2rem;
}

@media (max-width: 640px) {
    .irina-inner {
        flex-direction: column;
        gap: 1.5rem;
    }
    .irina-photo {
        width: 100%;
        max-width: 280px;
    }
}

/* ── Why ── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1rem;
}

.why-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.why-item strong {
    display: block;
    color: var(--brown);
    margin-bottom: 0.25rem;
}

.why-item p {
    font-size: 0.95rem;
    margin: 0;
}

@media (min-width: 600px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Order steps ── */
.order-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1rem;
}

.order-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.order-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--rose);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.order-step strong {
    display: block;
    color: var(--brown);
    margin-bottom: 0.25rem;
}

.order-step p {
    font-size: 0.95rem;
    margin: 0;
}

.order-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
}

@media (min-width: 600px) {
    .order-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Grid ── */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.card {
    background: white;
    padding: 1.5rem;
    border-top: 3px solid var(--rose);
    display: flex;
    flex-direction: column;
}

.card h3 {
    color: var(--brown);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.card-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: auto;
    padding-top: 0.75rem;
    color: var(--rose);
    text-decoration: none;
    font-size: 0.9rem;
    justify-content: flex-end;
    transition: color 0.2s;
}

.card-link svg {
    flex-shrink: 0;
}

.card-link:hover { color: var(--brown); }

/* ── Carousel ── */
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 1rem;
    background: #f0e8e0;
}

.carousel-track {
    display: flex;
    transition: transform 0.35s ease;
}

.carousel-slide {
    min-width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(92, 61, 46, 0.7);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    padding: 0;
}

.carousel-btn:hover { background: var(--rose); }
.carousel-prev { left: 0.5rem; }
.carousel-next { right: 0.5rem; }

/* ── Holiday banner (Betriebsferien) ── */
.holiday-banner {
    background: var(--rose);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.holiday-banner span {
    text-align: center;
}

.holiday-close {
    flex-shrink: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.holiday-close:hover {
    opacity: 1;
}

/* ── Still-Block (эмоциональный вводный) ── */
.section-still {
    max-width: 100%;
    background: var(--light);
    text-align: center;
}

.section-still .still-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(2.5rem, 6vw, 4.5rem) 1.25rem;
}

.section-still h2 {
    text-align: center;
    font-size: clamp(1.6rem, 4.5vw, 2.4rem);
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.section-still h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 2px;
    background: var(--rose);
    margin: 1rem auto 0;
}

.section-still .still-lead {
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    font-style: italic;
    color: var(--brown);
    line-height: 1.5;
    margin-bottom: 1.75rem;
}

.section-still p {
    margin-bottom: 1rem;
}

.section-still p:last-child {
    margin-bottom: 0;
}

/* Подзаголовок под h2 в секциях ── */
.section-lead {
    font-size: 0.9rem;
    opacity: 0.75;
    margin-top: -0.75rem;
    margin-bottom: 0.5rem;
}

/* ── Чек-вариант списка Ирины ── */
.irina-list-check li::before {
    content: '✓';
    font-style: normal;
}

/* ── Wedding Guide CTA ── */
.guide-cta {
    text-align: center;
    max-width: 780px;
}

.guide-cta h2 {
    text-align: center;
}

.guide-cta > p {
    margin-bottom: 1rem;
}

.guide-list {
    list-style: none;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    margin: 0.5rem 0 1.75rem;
    text-align: left;
}

.guide-list li {
    position: relative;
    padding-left: 1.2rem;
}

.guide-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--rose);
}

/* ── Contact form ── */
.contact-form {
    max-width: 640px;
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    border: none;
}

.form-group > label,
.form-group > legend {
    display: block;
    color: var(--brown);
    font-weight: bold;
    margin-bottom: 0.5rem;
    padding: 0;
}

.form-group input[type="date"],
.form-group input[type="number"],
.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    background: white;
    border: 1px solid #d9cabb;
    border-radius: 2px;
    padding: 0.65rem 0.8rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rose);
}

.form-group textarea {
    resize: vertical;
    line-height: 1.6;
}

.radio-option {
    display: block;
    font-weight: normal;
    color: var(--text);
    margin-bottom: 0.4rem;
    cursor: pointer;
}

.radio-option input {
    margin-right: 0.5rem;
}

.form-hint {
    display: block;
    font-size: 0.82rem;
    opacity: 0.7;
    margin-top: 0.35rem;
}

.form-note {
    font-size: 0.85rem;
    opacity: 0.75;
    margin-top: 1rem;
    font-style: italic;
}

/* ── Story (Hinter Grace Bakery) ── */
.story {
    max-width: 780px;
}

.story-role {
    color: var(--rose);
    font-style: italic;
    margin-bottom: 1.25rem;
}

.story h3 {
    color: var(--brown);
    font-size: 1.15rem;
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
}

.story p {
    margin-bottom: 0.85rem;
}

.story-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.3rem 1.5rem;
    margin: 0.5rem 0 1rem;
}

@media (min-width: 480px) {
    .story-list { grid-template-columns: repeat(2, 1fr); }
}

.story-list li {
    position: relative;
    padding-left: 1.2rem;
}

.story-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--rose);
}

.story-cta {
    margin-top: 1.5rem;
}

/* ── Footer ── */
footer {
    background: var(--brown);
    color: rgba(255,255,255,0.7);
    text-align: center;
    padding: 2rem 1.25rem;
    font-size: 0.9rem;
}

footer p + p {
    margin-top: 0.5rem;
}

/* ── Footer колонки ── */
.footer-cols {
    max-width: 1100px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    text-align: left;
}

@media (min-width: 768px) {
    .footer-cols { grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
}

.footer-col p { margin: 0 0 0.4rem; }
.footer-col p + p { margin-top: 0.4rem; }

.footer-brand {
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: #fff;
}

.footer-brand-sub {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.6;
}

.footer-brand-note {
    margin-top: 0.75rem !important;
    line-height: 1.6;
    max-width: 32ch;
}

.footer-col-title {
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem !important;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    line-height: 1.9;
    transition: color 0.2s;
}

.footer-col a:hover { color: #fff; text-decoration: underline; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-legal span {
    opacity: 0.4;
}

/* ── Правовые страницы (Impressum, Datenschutz) ── */
.legal-page {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.legal-inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.legal-inner h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--brown);
    margin-bottom: 0.4rem;
    line-height: 1.25;
}

.legal-inner > p:first-of-type {
    color: var(--rose);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.legal-inner .guide-wip {
    background: #fbeee6;
    border-left: 3px solid var(--rose);
    border-radius: 2px;
    padding: 0.85rem 1.1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--brown);
}

.legal-inner h2 {
    font-size: 1.15rem;
    color: var(--brown);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #e8ddd4;
    padding-bottom: 0.25rem;
}

.legal-inner h3 {
    font-size: 1rem;
    color: var(--brown);
    margin-top: 1.25rem;
    margin-bottom: 0.4rem;
}

.legal-inner p {
    margin-bottom: 0.75rem;
    font-size: 0.92rem;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.legal-inner ul,
.legal-inner ol {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-inner li {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 0.3rem;
}

.legal-inner a:not(.btn) {
    color: var(--rose);
    word-break: break-all;
}

.legal-inner a:not(.btn):hover {
    color: var(--brown);
}

/* ── FAB меню (мобайл, снизу справа) ── */
.burger {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--brown);
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    line-height: 1;
}
.fab {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 100;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--brown);
    color: white;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: background 0.2s;
    align-items: center;
    justify-content: center;
}

.fab:hover { background: var(--rose); }

.fab-icon { line-height: 1; }

.fab-menu {
    display: none;
    position: fixed;
    bottom: 5rem;
    right: 1.5rem;
    z-index: 99;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6rem;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s, transform 0.2s;
}

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

.fab-link {
    background: var(--brown);
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: background 0.2s;
    white-space: nowrap;
}

.fab-link:hover { background: var(--rose); }

/* ── Tablet 600px+ ── */
@media (min-width: 600px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Desktop 768px+ ── */
@media (min-width: 768px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* десктопное меню — показываем */
    nav ul { display: flex; }
    .burger { display: none; }

    /* FAB — скрываем */
    .fab { display: none !important; }
    .fab-menu { display: none !important; }
}

/* ── Mobile: скрываем десктопное меню, показываем FAB ── */
@media (max-width: 767px) {
    nav ul { display: none; }
    .burger { display: block; }

    /* зазор снизу, чтобы плавающая кнопка FAB не перекрывала контент/футер */
    main { padding-bottom: 5rem; }

    .fab {
        display: flex;
    }

    .fab-menu {
        display: flex;
    }
}

/* ── Preise page ── */
.preise-page h1 { margin-bottom: 0.25rem; }

/* Главная страница прайса — шире и с крупными карточками */
.preise-index {
    max-width: 1100px !important;
}

.preise-index .preise-nav {
    grid-template-columns: 1fr;
}

@media (min-width: 600px) {
    .preise-index .preise-nav { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

@media (min-width: 900px) {
    .preise-index .preise-nav { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.preise-breadcrumb {
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
}

.preise-breadcrumb a {
    color: var(--rose);
    text-decoration: none;
}

.preise-breadcrumb a:hover { text-decoration: underline; }

.preise-intro {
    color: #7a5c4a;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.preise-global-note {
    background: var(--light);
    border-left: 3px solid var(--rose);
    border-radius: 0 4px 4px 0;
    padding: 0.85rem 1.1rem;
    font-size: 0.9rem;
    color: var(--brown);
    margin-bottom: 3rem;
    line-height: 1.65;
}

/* Навигационные карточки */
.preise-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: stretch;
}

@media (min-width: 600px) {
    .preise-nav { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
    .preise-nav { grid-template-columns: repeat(4, 1fr); }
}

.preise-nav-card {
    display: flex;
    flex-direction: column;
    background: var(--light);
    border: 1.5px solid #e8ddd4;
    border-radius: 8px;
    padding: 0;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.15s, box-shadow 0.15s;
    overflow: hidden;
}

@media (max-width: 599px) {
    .preise-nav-card { flex-direction: column; }
    .preise-nav-card .pnc-img { width: 100%; }
}

.pnc-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 0.5rem 0;
}

.preise-nav-card:hover {
    border-color: var(--rose);
    box-shadow: 0 4px 14px rgba(200,137,106,0.2);
}

.pnc-img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    flex-shrink: 0;
}

.preise-nav-card .pnc-title,
.preise-nav-card .pnc-sub {
    display: block;
    padding: 0 0.9rem;
}

.preise-nav-card .pnc-emoji {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.35rem;
}

.preise-nav-card .pnc-title {
    display: block;
    font-weight: bold;
    color: var(--brown);
    font-size: 0.9rem;
    line-height: 1.3;
    margin-top: 0.7rem;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.preise-nav-card .pnc-sub {
    display: block;
    font-size: 0.75rem;
    color: #9a7a6a;
    padding-bottom: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Блоки категорий */
.preise-block {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e8ddd4;
    scroll-margin-top: 5rem;
}

.preise-block:last-child {
    border-bottom: none;
}

.preise-block h2 {
    font-size: 1.5rem;
    color: var(--brown);
    margin-bottom: 0.3rem;
}

.preise-block h3 { margin-bottom: 0.5rem; }

.preise-sub {
    color: var(--rose);
    font-style: italic;
    margin-bottom: 1rem;
}

.preise-highlight {
    color: var(--rose);
    font-size: 1.15rem;
}

.preise-subhead {
    font-size: 1rem;
    color: var(--brown);
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #e8ddd4;
    padding-bottom: 0.25rem;
}

.preise-block-lead {
    font-size: 0.92rem;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.65;
}

.preise-block-note {
    font-size: 0.88rem;
    color: #7a5c4a;
    font-style: italic;
    margin-bottom: 1rem;
}

.preise-divider {
    border: none;
    border-top: 1px solid #e8ddd4;
    margin: 1.75rem 0;
}

/* Таблица */
.preise-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.25rem;
    font-size: 0.9rem;
}

.preise-table th {
    text-align: left;
    padding: 0.5rem 0.75rem;
    border-bottom: 2px solid var(--rose);
    color: var(--brown);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.preise-table td {
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid #ede5dc;
}

.preise-table tr:last-child td { border-bottom: none; }
.preise-table tr:hover td { background: var(--light); }

.preise-table-ext {
    border: 1px solid #e8ddd4;
    border-top: none;
    border-radius: 0 0 6px 6px;
    padding: 0.75rem 1rem;
    background: #fdf7f3;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--brown);
}

.preise-table-ext p { margin: 0 0 0.2rem; }

/* Примечания по порциям */
.preise-portions-notes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: 1rem 0 1.5rem;
}

@media (min-width: 600px) {
    .preise-portions-notes { grid-template-columns: repeat(2, 1fr); }
}

.preise-portions-note {
    background: var(--light);
    border-left: 3px solid var(--rose);
    border-radius: 0 4px 4px 0;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    line-height: 1.6;
}

.preise-portions-note strong {
    display: block;
    color: var(--brown);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

/* Чеклист */
.preise-checklist {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.3rem 1.5rem;
    margin: 0.5rem 0 1.25rem;
    padding: 0;
}

@media (min-width: 480px) {
    .preise-checklist { grid-template-columns: repeat(2, 1fr); }
}

.preise-checklist li {
    position: relative;
    padding-left: 1.4rem;
    font-size: 0.9rem;
}

.preise-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--rose);
}

/* Примеры цен */
/* ── Мобильные поля (preise и legal страницы) ── */
@media (max-width: 767px) {
    .legal-inner { padding: 0 0.5rem; }
    .legal-page { padding-top: 1.5rem; }
    .preise-table { font-size: 0.78rem; }
    .preise-table th, .preise-table td { padding: 0.45rem 0.4rem; }
}

.preise-examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

@media (max-width: 767px) {
    .preise-examples {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (min-width: 768px) {
    .preise-examples { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

@media (min-width: 1024px) {
    .preise-examples { grid-template-columns: repeat(4, 1fr); }
}

.preise-example {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.preise-example-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 6px;
    background: #f0e8e0;
    overflow: hidden;
}

.preise-example-photo img,
.preise-bento-variant-photo img,
.preise-sweet-photo img,
.preise-sweet-variant-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.preise-example-photo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8a090;
    font-size: 0.8rem;
    border: 1.5px dashed #d9cabb;
}

.preise-example-price {
    font-weight: bold;
    color: var(--rose);
    font-size: 0.9rem;
    margin: 0;
}

.preise-example-persons {
    font-size: 0.8rem;
    color: #7a5c4a;
    margin: 0;
}

.preise-example-style {
    font-size: 0.82rem;
    color: var(--brown);
    font-weight: bold;
    margin: 0;
}

.preise-examples-note {
    font-size: 0.82rem;
    color: #9a7a6a;
    font-style: italic;
    text-align: center;
    margin: 0.75rem 0 1.5rem;
}

.preise-cta-group {
    margin-top: 1.75rem;
}

.preise-cta-group p {
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

/* Note blockquote */
.preise-note {
    border-left: 3px solid var(--rose);
    padding: 0.75rem 1rem;
    color: #7a5c4a;
    font-style: normal;
    font-size: 0.88rem;
    margin: 0 0 1.25rem;
    background: var(--light);
    border-radius: 0 4px 4px 0;
    line-height: 1.65;
}

.preise-cta { margin-top: 1.5rem; }

/* Füllungen */
.preise-fillings {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: 0.75rem 0 1rem;
}

@media (min-width: 600px) {
    .preise-fillings { grid-template-columns: repeat(3, 1fr); }
}

.preise-filling {
    background: var(--light);
    border: 1.5px solid #e8ddd4;
    border-radius: 6px;
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
    line-height: 1.55;
}

.preise-filling strong {
    display: block;
    color: var(--brown);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.preise-filling span {
    color: #7a5c4a;
    font-style: italic;
}

/* Bento варианты */
.preise-bento-variants {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1rem 0;
}

.preise-bento-variant {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.preise-bento-variant-photo {
    width: 120px;
    min-width: 120px;
    aspect-ratio: 3 / 4;
    border-radius: 4px;
    background: #f0e8e0;
}

@media (max-width: 480px) {
    .preise-bento-variant { flex-direction: column; }
    .preise-bento-variant-photo { width: 100%; min-width: unset; }
}

.preise-bento-variant-info {
    flex: 1;
}

.preise-bento-variant-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
}

.preise-bento-variant-name {
    font-weight: bold;
    color: var(--brown);
    font-size: 1rem;
}

.preise-bento-variant-price {
    color: var(--rose);
    font-weight: bold;
    font-size: 1.05rem;
    white-space: nowrap;
}

.preise-bento-variant-info p {
    font-size: 0.88rem;
    color: #7a5c4a;
    margin: 0;
}

/* Sweet Table */
.preise-sweet-item {
    margin-bottom: 0.5rem;
}

.preise-sweet-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.preise-sweet-header h3 {
    color: var(--brown);
    font-size: 1.1rem;
    margin: 0;
}

.preise-sweet-price {
    color: var(--rose);
    font-weight: bold;
    font-size: 1rem;
    white-space: nowrap;
}

.preise-sweet-body {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.preise-sweet-desc {
    flex: 1;
}

.preise-sweet-desc p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.preise-sweet-photo {
    width: 140px;
    min-width: 140px;
    aspect-ratio: 1;
    border-radius: 4px;
    background: #f0e8e0;
}

@media (max-width: 480px) {
    .preise-sweet-body { flex-direction: column; }
    .preise-sweet-photo { width: 100%; min-width: unset; aspect-ratio: 4/3; }
}

.preise-sweet-variants {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0.75rem 0;
}

.preise-sweet-variant-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.preise-sweet-variant-photo {
    width: 100px;
    min-width: 100px;
    aspect-ratio: 1;
    border-radius: 4px;
    background: #f0e8e0;
}

@media (max-width: 480px) {
    .preise-sweet-variant-row { flex-direction: column; }
    .preise-sweet-variant-photo { width: 100%; min-width: unset; }
}

.preise-sweet-variant-desc p {
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
}

.preise-sweet-variant-name {
    color: var(--brown);
}

.preise-min-order {
    font-size: 0.82rem;
    color: #9a7a6a;
    font-style: italic;
    margin-top: 0.5rem;
    line-height: 1.6;
}

.preise-sweet-combo {
    background: var(--light);
    border: 1.5px solid #e8ddd4;
    border-radius: 6px;
    padding: 1.25rem 1.25rem 1rem;
    margin: 1rem 0;
}

.preise-sweet-combo h3 {
    color: var(--brown);
    font-size: 1rem;
    margin-bottom: 0.6rem;
}

.preise-sweet-combo p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* ── Секция-навигатор на главной ── */
.section-preise {
    background: var(--light);
    padding: 3rem 1.25rem;
    text-align: center;
}

@media (max-width: 600px) {
    .section-preise { padding: 2.5rem 0.5rem; }
}

.section-preise h2 {
    font-size: 1.4rem;
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.section-preise .section-preise-sub {
    color: #9a7a6a;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.preise-cards {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 767px) {
    .preise-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

.preise-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: var(--cream);
    border: 1.5px solid #e8ddd4;
    border-top: 3px solid var(--rose);
    border-radius: 8px;
    padding: 1rem 0.75rem 0.9rem;
    transition: box-shadow 0.15s, border-color 0.15s;
    text-align: left;
}

.preise-card:hover {
    box-shadow: 0 3px 14px rgba(200,137,106,0.18);
    border-color: var(--rose);
}

.preise-card-emoji {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.5rem;
}

.preise-card-title {
    display: block;
    font-weight: bold;
    color: var(--brown);
    font-size: 0.82rem;
    line-height: 1.3;
    margin-bottom: 0.3rem;
    overflow-wrap: break-word;
}

.preise-card-sub {
    display: block;
    font-size: 0.72rem;
    color: #9a7a6a;
    line-height: 1.4;
    word-break: normal;
    overflow-wrap: break-word;
}

/* ── Kontakt & Anfrage: раскладка форма + контакты ── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 1.5rem auto 0;
    text-align: left;
}

@media (min-width: 768px) {
    .contact-layout { grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: start; }
}

.contact-info {
    background: var(--light);
    border: 1px solid #ece0d6;
    border-radius: 8px;
    padding: 1.5rem;
}

.contact-info h3 {
    color: var(--brown);
    margin-bottom: 1rem;
}

.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin: 0 0 1.25rem;
    padding: 0;
}

.contact-info-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9a7a6a;
    margin-bottom: 0.15rem;
}

.contact-info-list a {
    color: var(--brown);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-list a:hover { color: var(--rose); }

.contact-map-link {
    display: inline-block;
    color: var(--rose);
    text-decoration: none;
    font-weight: 600;
}

.contact-map-link:hover { color: var(--brown); }

/* ── FAQ аккордеон ── */
.faq-list {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-list details {
    border: 1px solid #ece0d6;
    border-radius: 8px;
    background: var(--light);
    overflow: hidden;
}

.faq-list summary {
    cursor: pointer;
    padding: 1rem 2.5rem 1rem 1.25rem;
    font-weight: 600;
    color: var(--brown);
    list-style: none;
    position: relative;
    transition: color 0.2s;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    line-height: 1;
    color: var(--rose);
    transition: transform 0.2s;
}

.faq-list details[open] summary::after {
    content: "–";
}

.faq-list summary:hover { color: var(--rose); }

.faq-answer {
    padding: 0 1.25rem 1.15rem;
    color: #6b5142;
    line-height: 1.7;
}

.faq-answer p { margin: 0 0 0.6rem; }
.faq-answer p:last-child { margin-bottom: 0; }

.faq-link {
    color: var(--rose);
    text-decoration: none;
    font-weight: 600;
}
.faq-link:hover { text-decoration: underline; }

/* ── Схема размеров Hochzeitstorten ── */
.hw-sizes-schema {
    margin: 1.5rem 0;
}

.hw-sizes-schema img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
}
.ex-carousel-wrap {
    margin: 1.5rem -1.25rem 1.5rem;
    overflow: hidden;
    cursor: grab;
}

.ex-carousel-wrap.dragging { cursor: grabbing; }

.ex-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 1.25rem 1rem;
    scrollbar-width: none;
    user-select: none;
}

.ex-carousel::-webkit-scrollbar { display: none; }

.ex-card {
    flex: 0 0 80%;
    max-width: 280px;
    scroll-snap-align: start;
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid #e8ddd4;
    background: var(--light);
    display: flex;
    flex-direction: column;
}

@media (min-width: 600px) {
    .ex-card { flex: 0 0 42%; }
}

@media (min-width: 900px) {
    .ex-card { flex: 0 0 26%; max-width: 300px; }
}

.ex-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    -webkit-user-drag: none;
    user-select: none;
}

.ex-card-meta {
    padding: 0.75rem 0.9rem 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ex-card-price {
    font-weight: bold;
    font-size: 1.05rem;
    color: var(--rose);
}

.ex-card-weight {
    font-size: 0.85rem;
    color: var(--brown);
    font-weight: 600;
}

.ex-card-persons {
    font-size: 0.78rem;
    color: #9a7a6a;
}

/* ── Lightbox ── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    cursor: zoom-out;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 100%;
    max-height: 92vh;
    border-radius: 6px;
    object-fit: contain;
    cursor: default;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: fixed;
    top: 1rem;
    right: 1.25rem;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 1.4rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 1001;
}

.lightbox-close:hover { background: rgba(255,255,255,0.3); }

.ex-card-img { cursor: zoom-in; }


/* ── Barrierefreiheit: Skip-Link & Fokus-Sichtbarkeit ── */

/* Skip-Link: unsichtbar bis er den Fokus erhält (Tastatur-Navigation) */
.skip-link {
    position: absolute;
    left: 8px;
    top: -48px;
    z-index: 1000;
    padding: 10px 18px;
    background: var(--rose);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: top 0.15s ease;
}
.skip-link:focus {
    top: 8px;
}

/* Sichtbarer Fokus-Rahmen für Tastatur-Nutzer (nicht bei Maus-Klick) */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
.ex-card-img:focus-visible {
    outline: 3px solid #7a4a35;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Vergrößerbare Bilder: Cursor-Hinweis, dass sie anklickbar sind */
.ex-card-img[role="button"] {
    cursor: zoom-in;
}


/* ══════════════════════════════════════════════════
   Wedding Guide (/de/wedding-guide/)
   ══════════════════════════════════════════════════ */

/* ── Intro ── */
.wg-hero {
    background: var(--light);
    text-align: center;
    scroll-margin-top: 5rem;
}

.wg-hero-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(2.5rem, 6vw, 4.5rem) 1.25rem clamp(2rem, 4vw, 3rem);
}

.wg-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 0.9rem;
}

.wg-hero h1 {
    font-size: clamp(2rem, 6vw, 3.2rem);
    color: var(--brown);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.wg-hero h1::after {
    content: '';
    display: block;
    width: 56px;
    height: 2px;
    background: var(--rose);
    margin: 1.1rem auto 0;
}

.wg-hero-lead {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-style: italic;
    color: var(--brown);
    line-height: 1.5;
    margin-bottom: 1.75rem;
}

.wg-hero p {
    margin-bottom: 0.9rem;
}

/* ── Sprungnavigation ── */
.wg-chapters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.wg-chapters a {
    display: inline-block;
    padding: 0.4rem 0.95rem;
    border: 1px solid #e2d3c6;
    border-radius: 999px;
    background: #fff;
    color: var(--brown);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.wg-chapters a:hover,
.wg-chapters a.is-active {
    background: var(--rose);
    border-color: var(--rose);
    color: #fff;
}

/* ── Sektionen ── */
.wg-section {
    scroll-margin-top: 4.5rem;
}

.wg-section-alt {
    max-width: 100%;
    background: var(--light);
}

.wg-inner {
    max-width: 880px;
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 2.5rem) 1.25rem;
}

.wg-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 0.5rem;
}

.wg-inner h2 {
    margin-bottom: 1rem;
}

.wg-inner h3 {
    font-size: 1.15rem;
    color: var(--brown);
    margin-top: 2rem;
    margin-bottom: 0.6rem;
}

.wg-inner p {
    margin-bottom: 0.85rem;
    line-height: 1.7;
}

.wg-inner a:not(.btn) {
    color: var(--rose);
}

.wg-inner a:not(.btn):hover {
    color: var(--brown);
}

.wg-question {
    font-size: 1.08rem;
    font-style: italic;
    color: var(--brown);
    line-height: 1.55;
}

.wg-note {
    font-size: 0.88rem;
    opacity: 0.75;
}

/* ── Text + Foto nebeneinander ── */
.wg-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 1.5rem;
}

@media (min-width: 800px) {
    .wg-split {
        grid-template-columns: 1.35fr 1fr;
        gap: 2.5rem;
    }
}

.wg-split-text > p:last-child {
    margin-bottom: 0;
}

.wg-split-photo {
    margin: 0;
}

.wg-split-photo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1.5px solid #e8ddd4;
}

@media (max-width: 799px) {
    .wg-split-photo img {
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }
}

/* ── Hervorhebung (Portionsgröße, Preis …) ── */
.wg-highlight {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    background: #fff;
    border-left: 3px solid var(--rose);
    border-radius: 2px;
    padding: 1rem 1.2rem;
    margin: 1.25rem 0;
}

.wg-section-alt .wg-highlight {
    background: #fff;
}

.wg-highlight strong {
    font-size: 1.15rem;
    color: var(--rose);
    letter-spacing: 0.01em;
}

.wg-highlight span {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text);
}

.wg-highlight-wide strong {
    font-size: clamp(1.3rem, 3.5vw, 1.7rem);
}

/* ── Hinweisbox ── */
.wg-callout {
    background: #fbeee6;
    border-left: 3px solid var(--rose);
    border-radius: 2px;
    padding: 0.9rem 1.1rem;
    margin: 1.5rem 0;
    font-size: 0.9rem !important;
    color: var(--brown);
}

/* ── Listen ── */
.wg-list {
    list-style: none;
    display: grid;
    gap: 0.6rem;
    margin: 0.5rem 0 1.25rem;
    padding: 0;
}

.wg-list li {
    position: relative;
    padding-left: 1.4rem;
    font-size: 0.93rem;
    line-height: 1.65;
}

.wg-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--rose);
}

/* ── Größentabelle (Bild) ── */
.wg-schema {
    margin: 1.25rem 0;
}

.wg-schema img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    mix-blend-mode: multiply;
}

/* ── Stilrichtungen ── */
.wg-styles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: 1rem 0 0.75rem;
}

@media (min-width: 560px) {
    .wg-styles { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 860px) {
    .wg-styles { grid-template-columns: repeat(4, 1fr); }
}

.wg-style {
    background: #fff;
    border: 1px solid #e8ddd4;
    border-top: 2px solid var(--rose);
    border-radius: 4px;
    padding: 0.85rem 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.wg-style strong {
    color: var(--brown);
    font-size: 0.95rem;
    line-height: 1.3;
}

.wg-style span {
    font-size: 0.78rem;
    color: #9a7a6a;
    line-height: 1.45;
}

/* ── Galerie-Karten (nur Foto, ohne Preis-Meta) ── */
.wg-gallery-card img {
    aspect-ratio: 3 / 4;
}

/* ── Geschmacksrichtungen ── */

/* ── Bestellablauf ── */
.wg-ablauf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
    margin-top: 1.5rem;
}

@media (min-width: 860px) {
    .wg-ablauf {
        grid-template-columns: 1.6fr 1fr;
        gap: 3rem;
    }
    .wg-ablauf-photo {
        position: sticky;
        top: 5rem;
    }
}

.wg-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #e8ddd4;
}

.wg-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem 0;
    border-bottom: 1px solid #e8ddd4;
}

.wg-step-num {
    font-size: 1.9rem;
    line-height: 1;
    font-weight: 700;
    color: #ead7c6;
    flex-shrink: 0;
    min-width: 2.4rem;
}

.wg-step-body strong {
    display: block;
    color: var(--brown);
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.wg-step-body p {
    font-size: 0.9rem !important;
    margin-bottom: 0.5rem !important;
}

.wg-step-body p:last-child {
    margin-bottom: 0 !important;
}

.wg-ablauf-photo {
    margin: 0;
}

.wg-ablauf-photo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1.5px solid #e8ddd4;
}

@media (max-width: 859px) {
    .wg-ablauf-photo img {
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }
}

.wg-ablauf-outro {
    margin-top: 1.5rem;
    font-size: 1.05rem !important;
    font-style: italic;
    color: var(--brown);
    text-align: center;
}

.wg-flavours {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.wg-flavour {
    background: #fff;
    border: 1px solid #e8ddd4;
    border-radius: 6px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 240px 1fr;
}

.wg-flavour-reverse {
    grid-template-columns: 1fr 240px;
}

.wg-flavour-reverse .wg-flavour-photo {
    order: 2;
}

.wg-flavour-reverse .wg-flavour-body {
    order: 1;
}

@media (max-width: 600px) {
    .wg-flavour,
    .wg-flavour-reverse {
        grid-template-columns: 1fr;
    }
    .wg-flavour-reverse .wg-flavour-photo {
        order: 0;
    }
    .wg-flavour-reverse .wg-flavour-body {
        order: 0;
    }
}

.wg-flavour-photo {
    margin: 0;
    overflow: hidden;
}

.wg-flavour-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 200px;
    cursor: pointer;
}

@media (max-width: 600px) {
    .wg-flavour-photo img {
        aspect-ratio: 4 / 3;
        height: auto;
        min-height: 0;
    }
}

.wg-flavour-body {
    padding: 1rem 1.1rem 1rem;
    display: flex;
    flex-direction: column;
}

.wg-flavour-head {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.3rem 0.5rem;
    margin-bottom: 0.55rem;
}

.wg-flavour-num {
    font-size: 1.1rem;
    line-height: 1;
    color: #e0c4b0;
    font-weight: 700;
}

.wg-flavour-head h4 {
    font-size: 0.97rem;
    color: var(--brown);
    margin: 0;
    flex: 1 1 auto;
}

.wg-flavour-tag {
    font-size: 0.63rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--rose);
    border: 1px solid #eddbcd;
    border-radius: 999px;
    padding: 0.12rem 0.45rem;
    white-space: nowrap;
}

.wg-flavour-layers {
    list-style: none;
    padding: 0;
    margin: 0 0 0.55rem;
    display: grid;
    gap: 0.2rem;
}

.wg-flavour-layers li {
    position: relative;
    padding-left: 0.9rem;
    font-size: 0.83rem;
    line-height: 1.45;
    color: var(--text);
}

.wg-flavour-layers li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.52em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--rose);
}

.wg-flavour-note {
    margin: auto 0 0;
    font-size: 0.81rem;
    font-style: italic;
    color: #8a6a58;
    line-height: 1.45;
}

/* ── CTA-Zeilen & Abschluss ── */
.wg-cta-line {
    margin-top: 1.5rem;
}

.wg-outro .still-lead {
    margin-bottom: 1.25rem;
}

