.section-headline {
    margin-bottom: 1.6rem;
    max-width: 72ch;
}

.section-headline h2 {
    margin-bottom: 0.5rem;
}

.section-headline-inline {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1.2rem;
}

.section-intro {
    max-width: 72ch;
    color: var(--text-muted);
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.2rem;
}

.cards--preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.teaser-card,
.service-card,
.value-card {
    border: 1px solid rgba(231, 216, 200, 0.18);
    border-radius: var(--radius-sm);
    background: linear-gradient(155deg, rgba(38, 31, 27, 0.95), rgba(26, 21, 19, 0.96));
    padding: 1.15rem;
    box-shadow: var(--shadow-sm);
}

.card h3,
.service-card h3,
.value-card h3 {
    margin-bottom: 0.55rem;
}

.about-highlights img {
    border-radius: 10px;
    margin-bottom: 0.9rem;
    border: 1px solid rgba(231, 216, 200, 0.2);
}

.teaser-card .button {
    margin-top: 0.6rem;
}

.services-grid,
.values-grid,
.testimonials-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-worlds-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.menu-world-card {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    background: #F5EFE6;
    padding: 1.2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    color: #1A1A1A;
}

.menu-world-card h3 {
    color: #1A1A1A;
}

.menu-world-card__head p {
    color: #3A3A3A;
}

.menu-world-categories {
    display: grid;
    gap: 0.7rem;
}

.menu-category {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    padding: 0.72rem;
    background: rgba(255, 255, 255, 0.55);
    color: #2A2A2A;
}

.menu-category h4 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
    color: #2A2A2A;
}

.menu-category ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.menu-category li {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    color: #3A3A3A;
}

.text-button {
    border: 0;
    background: transparent;
    color: var(--accent-soft);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-size: 0.82rem;
    padding: 0;
}

.menu-world-card__actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.gallery-grid {
    column-count: 4;
    column-gap: 0.9rem;
}

.gallery-item {
    break-inside: avoid;
    margin: 0 0 0.9rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(231, 216, 200, 0.16);
    background: rgba(26, 21, 19, 0.8);
}

.gallery-item a {
    display: block;
    position: relative;
}

.gallery-item img {
    width: 100%;
    transition: transform 0.35s ease;
}

.gallery-item:hover img,
.gallery-item a:focus-visible img {
    transform: scale(1.03);
}

.gallery-item__placeholder {
    min-height: 220px;
    display: grid;
    place-items: center;
    color: var(--text-muted);
}

.instagram-preview,
.instagram-section,
.brand-media-stack {
    margin-top: 1rem;
}

.brand-media-stack {
    display: grid;
    gap: 0.8rem;
}

.brand-media {
    border: 1px solid rgba(231, 216, 200, 0.2);
    border-radius: var(--radius-sm);
    background: linear-gradient(145deg, rgba(24, 50, 74, 0.25), rgba(90, 57, 39, 0.35));
    padding: 0.7rem;
}

.calculator-form,
.contact-form {
    display: grid;
    gap: 0.85rem;
}

.form-row {
    display: grid;
    gap: 0.45rem;
}

.form-row label,
.form-row legend,
.contact-form label {
    font-size: 0.92rem;
    color: var(--text-muted);
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(231, 216, 200, 0.24);
    border-radius: 10px;
    background: rgba(23, 19, 17, 0.75);
    color: var(--text);
    padding: 0.72rem 0.82rem;
    font: inherit;
    transition: border-color 0.2s ease, background 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(201, 152, 92, 0.55);
    border-color: rgba(201, 152, 92, 0.5);
    background: rgba(30, 25, 23, 0.9);
}

.checkbox-grid,
.radio-grid,
.calculator-items-grid,
.budget-grid {
    display: grid;
    gap: 0.6rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.radio-grid label,
.checkbox-grid label,
.calculator-items {
    border: 1px solid rgba(231, 216, 200, 0.18);
    border-radius: 10px;
    padding: 0.6rem;
    background: rgba(23, 19, 17, 0.4);
}

.radio-grid label,
.checkbox-grid label {
    display: flex;
    gap: 0.45rem;
    align-items: center;
}

.radio-grid input,
.checkbox-grid input,
.calculator-items input {
    width: auto;
}

.calculator-items {
    display: grid;
    gap: 0.35rem;
}

.calculator-items h4 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
}

.calculator-items h4 small {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
}

.calculator-items label {
    display: flex;
    gap: 0.45rem;
    align-items: flex-start;
}

.calculator-result,
.calculator-live-summary {
    margin-top: 1rem;
    border: 1px solid rgba(231, 216, 200, 0.18);
    border-radius: var(--radius-sm);
    padding: 1rem;
    min-height: 60px;
    background: rgba(23, 19, 17, 0.55);
}

.budget-badge {
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(231, 216, 200, 0.2);
}

.budget-badge--fit {
    background: rgba(111, 140, 95, 0.16);
    border-color: rgba(111, 140, 95, 0.45);
}

.budget-badge--tight {
    background: rgba(201, 152, 92, 0.15);
    border-color: rgba(201, 152, 92, 0.45);
}

.budget-badge--out {
    background: rgba(173, 86, 74, 0.16);
    border-color: rgba(173, 86, 74, 0.45);
}

.budget-badge--none {
    background: rgba(200, 183, 166, 0.12);
}

.faq-list {
    display: grid;
    gap: 0.7rem;
}

.faq-item {
    border: 1px solid rgba(231, 216, 200, 0.2);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(26, 21, 19, 0.72);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    color: var(--text);
    border: 0;
    padding: 0.85rem 1rem;
    font-weight: 700;
    cursor: pointer;
}

.faq-answer {
    padding: 0 1rem 0.9rem;
    color: var(--text-muted);
}

.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 7, 0.82);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 100;
}

.lightbox-modal.is-open {
    display: flex;
}

.lightbox-modal__content {
    max-width: min(980px, 100%);
    max-height: 88vh;
}

.lightbox-modal__content img {
    max-height: 88vh;
    border-radius: 12px;
    border: 1px solid rgba(231, 216, 200, 0.25);
}

.lightbox-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(231, 216, 200, 0.35);
    background: rgba(24, 50, 74, 0.5);
    color: var(--ivory-warm);
    font-size: 1.4rem;
    cursor: pointer;
}

/* PRICE DISPLAY STYLES */

.menu-world-price-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.menu-world-price-header h3 {
    flex: 1;
    margin: 0;
}

.menu-world-price {
    font-size: 0.92rem;
    color: #9A8566;
    opacity: 0.8;
    white-space: nowrap;
    font-weight: 500;
}

.checkbox-with-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    min-height: 44px;
    padding: 4px 0;
}

.checkbox-with-price input {
    flex-shrink: 0;
}

.checkbox-with-price > span:first-of-type {
    flex: 1;
}

.item-price {
    font-size: 0.82rem;
    color: #9A8566;
    opacity: 0.9;
    white-space: nowrap;
    font-weight: 500;
    flex-shrink: 0;
}

.price-disclaimer {
    font-size: 0.82rem;
    color: #3a2f2a;
    background: #f5efe6;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 14px;
    margin: 20px 0;
    padding: 16px 20px;
    text-align: center;
    line-height: 1.5;
}

.price-disclaimer p {
    margin: 0;
}

/* =============================================
   FOOTER LOGO
   ============================================= */

.footer-logo-wrap {
    margin-bottom: 1rem;
    background: linear-gradient(180deg, #f5efe6 0%, #ece1d1 100%);
    border-radius: 18px;
    padding: 0.95rem 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    border: 1px solid rgba(183, 132, 78, 0.24);
    box-shadow: 0 12px 30px rgba(8, 12, 18, 0.16);
}

.footer-logo-svg {
    width: auto;
    height: 84px;
    display: block;
    filter: saturate(1.02) contrast(1.01);
}

/* =============================================
   EINBLICKE – SOCIAL / INSTAGRAM PAGE
   ============================================= */

.section--ig-wall {
    background: var(--surface-1, rgba(18, 14, 12, 0.45));
}

.ig-inline-link {
    color: var(--gold-ember);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}
.ig-inline-link:hover {
    opacity: 0.75;
}

/* Feed container when Smash Balloon is active */
.ig-feed-container {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

/* Fallback embed wrapper */
.ig-embed-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

/* Admin notice (only visible for logged-in admins) */
.ig-admin-notice {
    width: 100%;
    background: rgba(154, 133, 102, 0.12);
    border: 1px dashed rgba(154, 133, 102, 0.45);
    border-radius: 10px;
    padding: 1rem 1.2rem;
    font-size: 0.88rem;
    color: rgba(245, 239, 231, 0.8);
    line-height: 1.5;
}
.ig-admin-notice strong {
    color: var(--gold-ember);
    display: block;
    margin-bottom: 0.35rem;
}

/* Profile card (shown when no feed plugin) */
.ig-profile-embed {
    width: 100%;
    max-width: 480px;
}

.ig-profile-card {
    text-align: center;
    padding: 2.4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}

.ig-profile-icon {
    color: var(--gold-ember);
    opacity: 0.85;
}

.ig-profile-handle {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ivory-warm);
    margin: 0;
}

.ig-profile-desc {
    color: rgba(245, 239, 231, 0.7);
    font-size: 0.93rem;
    line-height: 1.55;
    max-width: 36ch;
    margin: 0;
}

.ig-cta-button {
    margin-top: 0.4rem;
}

.ig-follow-hint {
    font-size: 0.78rem;
    color: rgba(245, 239, 231, 0.4);
    letter-spacing: 0.06em;
    margin: 0;
}
