:root {
    --blue-signature: #2D5B89;
    --blue-steel: #4E7CA1;
    --blue-navy: #18324A;
    --brown-smoked: #5A3927;
    --brown-walnut: #7A4A32;
    --bronze-soft: #B7844E;
    --gold-ember: #C9985C;
    --ivory-warm: #F5EFE7;
    --cream-sand: #E7D8C8;
    --stone-soft: #C8B7A6;
    --espresso: #171311;
    --graphite-warm: #241C18;
    --success: #6F8C5F;
    --error: #AD564A;

    --bg: var(--espresso);
    --bg-soft: var(--graphite-warm);
    --panel: #2A211C;
    --text: var(--ivory-warm);
    --text-muted: var(--stone-soft);
    --accent: var(--gold-ember);
    --accent-soft: #D8B083;
    --line: rgba(231, 216, 200, 0.2);

    --radius: 16px;
    --radius-sm: 10px;
    --shadow-lg: 0 26px 56px rgba(16, 11, 9, 0.35);
    --shadow-md: 0 14px 30px rgba(16, 11, 9, 0.25);
    --shadow-sm: 0 6px 14px rgba(16, 11, 9, 0.18);

    --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font-body: "Plus Jakarta Sans", "Avenir Next", "Segoe UI", sans-serif;
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background:
        radial-gradient(circle at 12% 12%, rgba(45, 91, 137, 0.18), transparent 36%),
        radial-gradient(circle at 84% 22%, rgba(122, 74, 50, 0.2), transparent 34%),
        linear-gradient(180deg, #1C1714 0%, #171311 55%, #161210 100%);
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration-color: rgba(201, 152, 92, 0.55);
    text-underline-offset: 3px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:hover,
a:focus-visible {
    color: var(--accent-soft);
    text-decoration-color: var(--gold-ember);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    line-height: 1.12;
    letter-spacing: 0.01em;
    margin-top: 0;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
}

h2 {
    font-size: clamp(1.7rem, 3.3vw, 3rem);
}

p {
    margin-top: 0;
}

.container {
    width: min(var(--container), calc(100% - 2.5rem));
    margin: 0 auto;
}

.section {
    padding: clamp(3.2rem, 6vw, 6.6rem) 0;
    position: relative;
}

.page-hero .lead {
    max-width: 68ch;
    color: var(--text-muted);
    font-size: 1.08rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.76rem;
    color: var(--accent-soft);
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--brown-walnut), var(--gold-ember));
    color: var(--ivory-warm);
    padding: 0.86rem 1.45rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(122, 74, 50, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(122, 74, 50, 0.38);
}

.button--small {
    padding: 0.64rem 1.05rem;
    font-size: 0.87rem;
}

.button--ghost {
    background: rgba(24, 50, 74, 0.35);
    border-color: rgba(78, 124, 161, 0.45);
    color: var(--ivory-warm);
    box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
    border-color: rgba(201, 152, 92, 0.45);
    background: rgba(45, 91, 137, 0.28);
}

/* =============================================
   SITE HEADER — 2-Layer (topbar dark + main cream)
   ============================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}

/* Layer 1 – Topbar */
.header-topbar {
    background: #1a1411;
    border-bottom: 1px solid rgba(183, 132, 78, 0.15);
}

.header-topbar__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1.6rem;
    justify-content: space-between;
    align-items: center;
    padding: 0.42rem 0;
    font-size: 0.81rem;
}

.header-topbar__left {
    display: flex;
    gap: 1.4rem;
}

.header-topbar__item {
    color: #a89888;
    text-decoration: none;
    transition: color 0.2s;
}

.header-topbar__item:hover {
    color: var(--gold-ember);
}

.header-topbar__item--address {
    color: #786355;
}

/* Layer 2 – Main header (cream/ivory) */
.header-main {
    background: #F5EFE7;
    border-bottom: 2px solid rgba(45, 91, 137, 0.12);
}

.header-main__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.4rem;
    padding: 0.7rem 0;
}

/* Logo in header */
.site-branding {
    display: flex;
    align-items: center;
    min-width: 0;
}

.site-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 0;
    padding: 0.1rem 0;
}

.header-logo-svg {
    width: auto;
    height: 74px;
    display: block;
}

.site-branding img,
.site-branding .custom-logo {
    max-height: 74px;
    width: auto;
    display: block;
}

/* Navigation — dark blue on cream */
.main-navigation {
    justify-self: center;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-navigation a {
    text-decoration: none;
    color: #2D5B89;
    font-weight: 600;
    font-size: 0.89rem;
    padding: 0.42rem 0.65rem;
    display: block;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    border-radius: 4px 4px 0 0;
}

.main-navigation .current-menu-item > a,
.main-navigation a:hover,
.main-navigation a:focus-visible {
    color: #18324A;
    border-bottom-color: #B7844E;
    background: rgba(45, 91, 137, 0.06);
}

/* Hamburger toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: #2D5B89;
    border: none;
    border-radius: 6px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
}

.menu-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #F5EFE7;
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

/* CTA button in header */
.button--nav-cta {
    background: linear-gradient(135deg, var(--brown-walnut), var(--gold-ember));
    color: var(--ivory-warm);
    white-space: nowrap;
    font-size: 0.88rem;
    padding: 0.65rem 1.1rem;
    flex-shrink: 0;
}

.hero {
    min-height: 78vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(23, 19, 17, 0.92) 45%, rgba(24, 50, 74, 0.6) 100%);
    z-index: -1;
}

.hero__content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: center;
}

.hero__copy {
    max-width: 700px;
}

.hero__subtitle {
    font-size: clamp(1rem, 2.4vw, 1.32rem);
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.hero__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
}

.hero__metrics {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.hero__metrics li {
    background: rgba(231, 216, 200, 0.08);
    border: 1px solid rgba(231, 216, 200, 0.2);
    border-radius: var(--radius-sm);
    padding: 0.75rem;
}

.hero__metrics strong {
    display: block;
    font-size: 1.1rem;
    color: var(--accent-soft);
    line-height: 1.2;
}

.hero__metrics span {
    display: block;
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
    line-height: 1.3;
}

/* Hero photo */
.hero__photo {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(231, 216, 200, 0.18);
}

.hero__photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    max-height: 520px;
}

.hero__photo-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(23, 19, 17, 0.82);
    border: 1px solid rgba(183, 132, 78, 0.45);
    backdrop-filter: blur(6px);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
}

.hero__photo-badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold-ember);
}

.split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.8rem;
    align-items: start;
}

.glass-card,
.contact-card {
    border: 1px solid rgba(231, 216, 200, 0.18);
    border-radius: var(--radius);
    background: linear-gradient(160deg, rgba(42, 33, 28, 0.92), rgba(27, 22, 20, 0.95));
    box-shadow: var(--shadow-md);
    padding: 1.35rem;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.1rem;
}

.feature-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-ember);
    position: absolute;
    left: 0;
    top: 0.65rem;
}

/* =============================================
   SITE FOOTER — 2-Part (navy upper + very dark lower)
   ============================================= */

.footer-upper {
    background: #18324A;
    padding: clamp(2.4rem, 5vw, 4.8rem) 0 2rem;
}

.footer-upper__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-col__label {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ivory-warm);
    margin-bottom: 0.6rem;
}

.footer-col__heading {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold-ember);
    margin-bottom: 1rem;
}

.footer-col__text {
    color: rgba(245, 239, 231, 0.7);
    font-size: 0.93rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-nav,
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.footer-nav {
    gap: 0.42rem;
}

.footer-nav a,
.footer-contact a {
    color: rgba(245, 239, 231, 0.72);
    text-decoration: none;
    font-size: 0.93rem;
    transition: color 0.2s;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--gold-ember);
}

/* Footer navigation: pill-style interactive links */
.footer-nav a {
    display: inline-flex;
    align-items: center;
    color: rgba(245, 239, 231, 0.82);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.38rem 0.85rem;
    border: 1px solid rgba(183, 132, 78, 0.28);
    border-radius: 999px;
    background: rgba(183, 132, 78, 0.06);
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.18s ease, box-shadow 0.22s ease;
}

.footer-nav a:hover {
    color: #F5EFE7;
    background: rgba(183, 132, 78, 0.18);
    border-color: rgba(183, 132, 78, 0.65);
    box-shadow: 0 0 10px rgba(183, 132, 78, 0.18);
    transform: translateY(-1px);
}

.footer-nav a:focus-visible {
    outline: 2px solid var(--gold-ember);
    outline-offset: 2px;
    color: #F5EFE7;
    background: rgba(183, 132, 78, 0.18);
    border-color: rgba(183, 132, 78, 0.65);
}

.footer-contact li {
    color: rgba(245, 239, 231, 0.72);
    font-size: 0.93rem;
}

.footer-ig-link {
    display: inline-block;
    color: var(--gold-ember);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid rgba(183, 132, 78, 0.45);
    border-radius: 999px;
    padding: 0.45rem 0.95rem;
    margin-top: 0.35rem;
    transition: background 0.2s, color 0.2s;
}

.footer-ig-link:hover {
    background: rgba(183, 132, 78, 0.15);
}

.button--footer-cta {
    font-size: 0.88rem;
    padding: 0.62rem 1.1rem;
}

/* Lower footer bar */
.footer-lower {
    background: #120e0c;
    border-top: 2px solid rgba(183, 132, 78, 0.3);
}

.footer-lower__inner {
    padding: 1rem 0;
    color: #5a4e46;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
}

/* =============================================
   QUICKNAV SECTION (cream contrast panel)
   ============================================= */

.section--quicknav {
    background: #EDE3D6;
    color: var(--espresso);
}

.quicknav-eyebrow {
    color: #B7844E;
}

.quicknav-heading {
    color: #18324A;
    margin-bottom: 0.55rem;
}

/* Section header: text left + grill SVG right */
.quicknav-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.8rem;
}

.quicknav-header__text {
    flex: 1 1 0;
    min-width: 0;
}

.quicknav-intro {
    color: #5A3927;
    font-size: 0.97rem;
    max-width: 52ch;
    margin-bottom: 0;
    margin-top: 0.1rem;
}

.quicknav-header__visual {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quicknav-grill-svg {
    width: 140px;
    height: 140px;
    opacity: 0.85;
}

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

.offer-card {
    background: #ffffff;
    border: 1px solid rgba(45, 91, 137, 0.12);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(45, 91, 137, 0.07);
    transition: box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    box-shadow: 0 10px 32px rgba(45, 91, 137, 0.15);
    transform: translateY(-4px);
}

.offer-card__img-wrap {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.offer-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.offer-card:hover .offer-card__img-wrap img {
    transform: scale(1.04);
}

.offer-card__body {
    padding: 1.4rem 1.25rem 1.3rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
}

.offer-card__body h3 {
    color: #2D5B89;
    font-size: 1.18rem;
    margin-bottom: 0.45rem;
}

.offer-card__body p {
    color: #5A3927;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex: 1 1 0;
}

.offer-card__body .button--outline {
    align-self: flex-start;
}

.button--outline {
    background: transparent;
    border: 1.5px solid #2D5B89;
    color: #2D5B89;
    box-shadow: none;
    padding: 0.55rem 1rem;
    font-size: 0.86rem;
}

.button--outline:hover,
.button--outline:focus-visible {
    background: #2D5B89;
    color: #F5EFE7;
    border-color: #2D5B89;
    transform: none;
}

/* =============================================
   USP STRIP (blue)
   ============================================= */

.section--usp-strip {
    background: #2D5B89;
    padding: 0;
}

.usp-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 2rem 0;
}

.usp-item {
    text-align: center;
    padding: 1.2rem 1rem;
    border-right: 1px solid rgba(245, 239, 231, 0.14);
}

.usp-item:last-child {
    border-right: none;
}

.usp-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--ivory-warm);
    margin-bottom: 0.25rem;
}

.usp-item span {
    font-size: 0.85rem;
    color: rgba(245, 239, 231, 0.7);
}

/* =============================================
   HOME CTA SECTION (dark, heart SVG)
   ============================================= */

.section--home-cta {
    background: linear-gradient(135deg, #171311 0%, #1e2a38 100%);
    overflow: hidden;
}

.home-cta {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.home-cta__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-cta__heart {
    width: 100%;
    max-width: 300px;
    opacity: 0.9;
}

/* Legacy: keep .site-info for any remaining references */
.site-info {
    border-top: 1px solid rgba(231, 216, 200, 0.14);
    margin-top: 1.8rem;
    padding: 0.95rem 0 1.3rem;
    color: var(--text-muted);
}

.notice {
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.notice--success {
    background: rgba(111, 140, 95, 0.15);
    border: 1px solid rgba(111, 140, 95, 0.38);
}

.notice--error {
    background: rgba(173, 86, 74, 0.15);
    border: 1px solid rgba(173, 86, 74, 0.38);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.skip-link:focus {
    clip: auto !important;
    clip-path: none;
    height: auto;
    width: auto;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 999;
    background: var(--ivory-warm);
    color: var(--blue-navy);
    padding: 10px;
    border-radius: 8px;
}

/* =============================================
   SERVICES PAGE (page-services.php) — v2 typographic
   ============================================= */

/* --- Shared section header --- */
.svc-section-header {
    margin-bottom: clamp(1.6rem, 3vw, 2.8rem);
}

.svc-section-header h2 {
    margin-bottom: 0;
}

/* --- Hero --- */
.section--svc-hero {
    padding-top: clamp(2.4rem, 5vw, 5rem);
    padding-bottom: clamp(2.4rem, 5vw, 5rem);
}

.svc-hero {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.svc-hero__h1 {
    font-size: clamp(2.2rem, 4.8vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.svc-hero__lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 52ch;
    margin-bottom: 1.8rem;
    line-height: 1.68;
}

.svc-hero__deco {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.88;
}

.svc-grill-icon {
    width: 160px;
    height: 160px;
}

/* --- Was wir machen (3 icon cards) --- */
.section--svc-what {
    background: rgba(20, 26, 36, 0.38);
    border-top: 1px solid rgba(231, 216, 200, 0.07);
    border-bottom: 1px solid rgba(231, 216, 200, 0.07);
}

.svc-what-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.svc-what-card {
    padding: 2rem 1.6rem;
    border: 1px solid rgba(231, 216, 200, 0.12);
    border-radius: var(--radius);
    background: linear-gradient(160deg, rgba(42, 33, 28, 0.7), rgba(27, 22, 20, 0.8));
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.svc-what-card:hover {
    border-color: rgba(183, 132, 78, 0.4);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.svc-what-card__icon {
    font-size: 2rem;
    margin-bottom: 0.85rem;
    line-height: 1;
}

.svc-what-card h3 {
    font-size: 1.15rem;
    color: var(--gold-ember);
    margin-bottom: 0.55rem;
}

.svc-what-card p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Wie wir arbeiten (process timeline) --- */
.section--svc-process {
    background: rgba(23, 19, 17, 0.6);
}

.svc-process {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    position: relative;
}

/* Connector line between steps */
.svc-process::before {
    content: '';
    position: absolute;
    top: 2.1rem;
    left: 3rem;
    right: 3rem;
    height: 2px;
    background: linear-gradient(90deg, rgba(183, 132, 78, 0.15), rgba(183, 132, 78, 0.5), rgba(183, 132, 78, 0.15));
    pointer-events: none;
}

.svc-process__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.2rem 0;
    position: relative;
}

.svc-process__step::after {
    content: '';
    position: absolute;
    top: 1.7rem;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold-ember);
    box-shadow: 0 0 0 4px rgba(183, 132, 78, 0.22);
    z-index: 1;
}

.svc-process__num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(183, 132, 78, 0.22);
    line-height: 1;
    margin-bottom: 0.55rem;
    letter-spacing: -0.03em;
}

.svc-process__step strong {
    display: block;
    font-size: 1rem;
    color: var(--ivory-warm);
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
    margin-top: 0.6rem;
}

.svc-process__step span {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.55;
    max-width: 18ch;
}

/* --- Was du bekommst (checklist) --- */
.section--svc-promise {
    background: rgba(27, 22, 20, 0.55);
    border-top: 1px solid rgba(231, 216, 200, 0.07);
    border-bottom: 1px solid rgba(231, 216, 200, 0.07);
}

.svc-promise-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 2.5rem;
}

.svc-promise-list li {
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
    font-size: 0.97rem;
    color: var(--ivory-warm);
    line-height: 1.5;
}

.svc-check {
    flex-shrink: 0;
    color: var(--gold-ember);
    font-size: 0.9rem;
}

/* --- Visual break (single full-width image) --- */
.svc-visual-break {
    position: relative;
    height: clamp(280px, 35vw, 520px);
    overflow: hidden;
}

.svc-visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.svc-visual-break__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(12, 8, 6, 0.35) 0%, rgba(12, 8, 6, 0.15) 50%, rgba(12, 8, 6, 0.55) 100%);
}

.svc-visual-break__caption {
    position: absolute;
    bottom: 1.4rem;
    right: 1.8rem;
    margin: 0;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(245, 239, 231, 0.6);
}

/* --- Leistungsdetails text cards (2-col, no images) --- */
.section--svc-detail {
    padding-top: clamp(2.4rem, 5vw, 5rem);
    padding-bottom: clamp(2.4rem, 5vw, 5rem);
}

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

.svc-detail-card {
    padding: 2rem 2rem 2rem 0;
    border-bottom: 1px solid rgba(231, 216, 200, 0.1);
}

.svc-detail-card:nth-child(even) {
    padding-left: 2rem;
    border-left: 1px solid rgba(231, 216, 200, 0.1);
}

.svc-detail-card:nth-last-child(-n+2) {
    border-bottom: none;
}

.svc-detail-card h3 {
    font-size: 1.18rem;
    color: var(--gold-ember);
    margin-bottom: 0.55rem;
}

.svc-detail-card p {
    color: var(--text-muted);
    font-size: 0.93rem;
    margin-bottom: 1rem;
    max-width: 46ch;
    line-height: 1.6;
}

/* --- CTA section --- */
.section--svc-cta {
    text-align: center;
    border-top: 1px solid rgba(231, 216, 200, 0.1);
}

.svc-cta {
    max-width: 56ch;
    margin: 0 auto;
}

.svc-cta__sep {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-ember), var(--brown-walnut));
    border-radius: 2px;
    margin: 0 auto 2rem;
}

.svc-cta h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 0.75rem;
}

.svc-cta p {
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
    line-height: 1.65;
}


/* =============================================
   SPEISEKARTEN PAGE (page-menu-worlds.php) — v2
   ============================================= */

/* --- Hero --- */
.section--spk-hero {
    padding-top: clamp(2.4rem, 5vw, 5rem);
    padding-bottom: clamp(2rem, 4vw, 4rem);
}

.spk-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.spk-hero__h1 {
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    line-height: 1.12;
    margin-bottom: 0.75rem;
}

.spk-hero__lead {
    font-size: 1.08rem;
    color: var(--text-muted);
    max-width: 52ch;
    margin-bottom: 0;
    line-height: 1.65;
}

/* Steps list */
.spk-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 1rem;
    border-left: 2px solid rgba(183, 132, 78, 0.22);
}

.spk-step {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    padding: 1rem 0 1rem 1.2rem;
    position: relative;
}

.spk-step::before {
    content: '';
    position: absolute;
    left: -1.7rem;
    top: 1.4rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold-ember);
    box-shadow: 0 0 0 4px rgba(183, 132, 78, 0.2);
}

.spk-step__num {
    grid-row: 1 / 3;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(183, 132, 78, 0.2);
    line-height: 1;
    letter-spacing: -0.03em;
    align-self: center;
}

.spk-step strong {
    display: block;
    font-size: 1rem;
    color: var(--ivory-warm);
    font-family: var(--font-display);
    align-self: end;
}

.spk-step span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    align-self: start;
}

/* --- Options section --- */
.section--spk-options {
    background: rgba(20, 26, 36, 0.38);
    border-top: 1px solid rgba(231, 216, 200, 0.07);
    border-bottom: 1px solid rgba(231, 216, 200, 0.07);
}

.spk-options-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.section--spk-options .spk-options-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.spk-option-card {
    padding: 2rem 1.6rem;
    border: 1px solid rgba(231, 216, 200, 0.12);
    border-radius: var(--radius);
    background: linear-gradient(160deg, rgba(42, 33, 28, 0.7), rgba(27, 22, 20, 0.8));
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.section--spk-options .spk-option-card {
    height: 100%;
}

.spk-option-card:hover {
    border-color: rgba(183, 132, 78, 0.35);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    transform: translateY(-3px);
}

/* Featured card */
.spk-option-card--featured {
    border-color: rgba(183, 132, 78, 0.4);
    background: linear-gradient(160deg, rgba(42, 33, 28, 0.88), rgba(30, 26, 22, 0.95));
    box-shadow: 0 6px 24px rgba(183, 132, 78, 0.12);
}

.spk-option-card--featured:hover {
    border-color: rgba(183, 132, 78, 0.65);
    box-shadow: 0 12px 36px rgba(183, 132, 78, 0.2);
}

.spk-option-card__badge {
    position: absolute;
    top: -0.65rem;
    left: 1.4rem;
    background: linear-gradient(135deg, var(--brown-walnut), var(--gold-ember));
    color: var(--ivory-warm);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.22rem 0.7rem;
    border-radius: 999px;
}

.spk-option-card__icon {
    font-size: 1.8rem;
    line-height: 1;
}

.spk-option-card h3 {
    font-size: 1.08rem;
    color: var(--gold-ember);
    margin: 0;
}

.spk-option-card p {
    color: var(--text-muted);
    font-size: 0.91rem;
    line-height: 1.6;
    margin: 0;
    flex: 1 1 0;
}

.spk-option-card .button {
    align-self: flex-start;
    margin-top: auto;
}

.section--spk-options .spk-option-card--payment {
    background: linear-gradient(145deg, #2a1d14, #3a281a);
    border: 1px solid rgba(198, 156, 109, 0.35);
}

.section--spk-options .spk-option-card--payment h3 {
    color: #F3E7D8;
}

.section--spk-options .spk-option-card--payment p,
.section--spk-options .spk-option-card--payment .spk-option-card__payments li {
    color: #D8C3A5;
}

.section--spk-options .spk-option-card--payment:hover {
    border-color: rgba(198, 156, 109, 0.55);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transform: none;
    filter: brightness(1.04);
}

.section--spk-options .spk-option-card__payments {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.section--spk-options .spk-option-card__payments li {
    border: 1px solid rgba(198, 156, 109, 0.25);
    border-radius: 999px;
    padding: 0.32rem 0.7rem;
    font-size: 0.82rem;
    line-height: 1.25;
    text-align: center;
}

/* --- Quality section --- */
.section--spk-quality {
    border-top: 1px solid rgba(231, 216, 200, 0.07);
}

.spk-quality {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.spk-quality__img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(231, 216, 200, 0.1);
}

.spk-quality__img img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.spk-quality__body h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    margin-bottom: 0.75rem;
}

.spk-quality__body p {
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.65;
    margin-bottom: 1.2rem;
    max-width: 46ch;
}

/* --- CTA at bottom --- */
.section--spk-cta {
    padding-top: clamp(1.6rem, 3vw, 3rem);
    padding-bottom: clamp(1.6rem, 3vw, 3rem);
}