/* =========================================================
   Schaller's Partyservice — Shared Stylesheet
   Modern refactor · Green-based palette · One file, all pages
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
    /* Brand greens — kept and extended */
    --green:        #1B4D3E;
    --green-dark:   #11362B;
    --green-deep:   #0B2820;
    --green-mid:    #2F6B58;
    --green-soft:   #E6EFEB;
    --green-tint:   #F1F6F3;

    /* Warm accents (replaces harsh red with a refined terracotta + olive-gold) */
    --terra:        #B14A2A;
    --terra-dark:   #8E3A20;
    --gold:         #B8945D;
    --gold-soft:    #D9C19A;

    /* Neutrals — warm paper feeling */
    --paper:        #FAF7F1;
    --cream:        #F4EFE5;
    --ink:          #14110D;
    --ink-soft:     #3A352D;
    --muted:        #756D60;
    --line:         rgba(20, 17, 13, 0.10);
    --line-soft:    rgba(20, 17, 13, 0.06);

    /* Type */
    --serif:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --sans:   'Manrope', 'Lato', system-ui, sans-serif;

    /* Effects */
    --shadow-sm:  0 1px 2px rgba(20,17,13,0.04), 0 2px 6px rgba(20,17,13,0.04);
    --shadow-md:  0 6px 18px rgba(20,17,13,0.06), 0 2px 4px rgba(20,17,13,0.04);
    --shadow-lg:  0 24px 60px -20px rgba(11,40,32,0.25), 0 8px 20px rgba(20,17,13,0.06);
    --radius:     14px;
    --radius-lg:  22px;
    --radius-pill: 999px;

    /* Layout */
    --container:  1240px;
    --gutter:     clamp(20px, 4vw, 40px);
    --nav-h:      78px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--sans);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; }

/* Decorative paper texture (very subtle) */
body::before {
    content: '';
    position: fixed; inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(20,17,13,0.025) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
    opacity: .6;
}
body > * { position: relative; z-index: 1; }

/* ---------- Type ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.serif-italic { font-style: italic; font-weight: 400; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--green);
}
.eyebrow::before {
    content: ''; width: 28px; height: 1px;
    background: currentColor; opacity: .5;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
    content: ''; width: 28px; height: 1px;
    background: currentColor; opacity: .5;
}

/* ---------- Container ---------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
    text-align: center;
    white-space: nowrap;
}
.btn i { font-size: 13px; transition: transform .25s ease; }
.btn:hover i { transform: translateX(3px); }

.btn-primary {
    background: var(--green);
    color: var(--paper);
}
.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -10px rgba(11,40,32,0.5);
    color: var(--paper);
}

.btn-accent {
    background: var(--terra);
    color: var(--paper);
}
.btn-accent:hover {
    background: var(--terra-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -10px rgba(177,74,42,0.5);
    color: var(--paper);
}

.btn-outline {
    background: transparent;
    color: var(--paper);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: var(--paper);
    color: var(--green);
    border-color: var(--paper);
}

.btn-outline-dark {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn-outline-dark:hover {
    background: var(--ink);
    color: var(--paper);
}

.btn-ghost {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}
.btn-ghost:hover {
    background: var(--green);
    color: var(--paper);
}

/* ---------- Section headers ---------- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.section-header .eyebrow { margin-bottom: 18px; }

.section-title {
    font-size: clamp(34px, 4.5vw, 54px);
    margin-bottom: 18px;
    color: var(--ink);
}
.section-subtitle {
    color: var(--muted);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto;
}

/* ---------- Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* =========================================================
   Navigation
   ========================================================= */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: padding .3s ease, background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.navbar.scrolled {
    padding: 10px 0;
    background: rgba(250, 247, 241, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0 1px 0 var(--line-soft), 0 8px 24px -16px rgba(11,40,32,0.18);
}
.navbar .container {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
}

.navbar-brand {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--paper);
    letter-spacing: -0.01em;
    line-height: 1;
}
.navbar-brand .brand-mark {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--green);
    color: var(--gold-soft);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px;
    border: 1px solid rgba(255,255,255,0.25);
    flex-shrink: 0;
}
.navbar-brand .brand-name { display: flex; flex-direction: column; gap: 2px; }
.navbar-brand .brand-sub {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: .75;
}
.navbar.scrolled .navbar-brand { color: var(--ink); }
.navbar.scrolled .navbar-brand .brand-mark {
    background: var(--green);
    color: var(--gold-soft);
    border-color: transparent;
}

.nav-links {
    display: flex; align-items: center; gap: 4px;
}
.nav-links a {
    color: var(--paper);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    position: relative;
    transition: all .25s ease;
}
.nav-links a:hover { color: var(--gold-soft); }
.nav-links a.active { color: var(--gold-soft); }
.nav-links a.active::after {
    content: '';
    position: absolute;
    left: 50%; bottom: 4px;
    transform: translateX(-50%);
    width: 4px; height: 4px;
    border-radius: 50%;
    background: currentColor;
}
.nav-links a.btn-nav {
    background: var(--terra);
    color: var(--paper);
    padding: 11px 22px;
    margin-left: 8px;
}
.nav-links a.btn-nav:hover {
    background: var(--terra-dark);
    color: var(--paper);
    transform: translateY(-1px);
}
.nav-links a.btn-nav.active::after { display: none; }

.navbar.scrolled .nav-links a { color: var(--ink-soft); }
.navbar.scrolled .nav-links a:hover { color: var(--green); }
.navbar.scrolled .nav-links a.active { color: var(--green); }
.navbar.scrolled .nav-links a.btn-nav { color: var(--paper); }

.mobile-toggle {
    display: none;
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--paper);
    border-radius: 50%;
    align-items: center; justify-content: center;
    backdrop-filter: blur(10px);
}
.navbar.scrolled .mobile-toggle {
    background: var(--green);
    color: var(--paper);
    border-color: transparent;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
    background: var(--green-deep);
    color: rgba(255,255,255,0.75);
    padding: 80px 0 0;
    margin-top: 0;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
    opacity: .3;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 56px;
}
.footer-brand h3 {
    font-family: var(--serif);
    font-size: 26px;
    color: var(--paper);
    margin-bottom: 18px;
    font-weight: 500;
}
.footer-brand .footer-tag {
    display: inline-block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold-soft);
    margin-bottom: 14px;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 340px;
}
.footer-social {
    display: flex; gap: 10px;
}
.footer-social a {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--paper);
    transition: all .25s ease;
}
.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--green-deep);
    transform: translateY(-3px);
}
.footer-column h4 {
    font-family: var(--sans);
    color: var(--paper);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 22px;
}
.footer-column ul { display: flex; flex-direction: column; gap: 10px; }
.footer-column a { font-size: 14px; }
.footer-column a:hover { color: var(--gold-soft); }

.footer-contact-item {
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 14px;
    font-size: 14px;
}
.footer-contact-item i {
    color: var(--gold-soft);
    margin-top: 5px;
    font-size: 13px;
    width: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--gold-soft); }

/* =========================================================
   HERO (index)
   ========================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    color: var(--paper);
    padding: calc(var(--nav-h) + 40px) 0 80px;
    overflow: hidden;
    isolation: isolate;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg,
            rgba(11,40,32,0.55) 0%,
            rgba(11,40,32,0.45) 40%,
            rgba(11,40,32,0.75) 100%),
        url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?q=80&w=2400&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -2;
}
.hero::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(11,40,32,0.4) 100%);
    z-index: -1;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: end;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold-soft);
    margin-bottom: 28px;
}
.hero-eyebrow::before {
    content: ''; width: 40px; height: 1px;
    background: currentColor;
}
.hero-title {
    font-size: clamp(48px, 8.5vw, 110px);
    line-height: 0.98;
    letter-spacing: -0.025em;
    color: var(--paper);
    font-weight: 400;
    margin-bottom: 28px;
    max-width: 14ch;
}
.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-soft);
}
.hero-meta {
    display: flex;
    gap: 40px;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-text {
    font-size: 18px;
    font-weight: 300;
    max-width: 480px;
    line-height: 1.6;
    opacity: 0.92;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll {
    position: absolute;
    bottom: 30px; right: 40px;
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}
.hero-scroll::before {
    content: ''; width: 1px; height: 60px;
    background: linear-gradient(transparent, currentColor);
    animation: scroll-line 2.4s ease-in-out infinite;
}
@keyframes scroll-line {
    0%   { transform: scaleY(0.3); transform-origin: top; opacity: 0.3; }
    50%  { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(0.3); transform-origin: bottom; opacity: 0.3; }
}

/* =========================================================
   About / Welcome
   ========================================================= */
.about-section {
    padding: 120px 0;
    background: var(--paper);
}
.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images {
    position: relative;
    height: 620px;
}
.about-img {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.about-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(.22,.61,.36,1);
}
.about-img:hover img { transform: scale(1.06); }
.about-img.main {
    top: 0; left: 0;
    width: 68%; height: 80%;
}
.about-img.sub {
    bottom: 0; right: 0;
    width: 58%; height: 55%;
    border: 6px solid var(--paper);
}
.about-badge {
    position: absolute;
    top: 50%; right: 0;
    transform: translate(15%, -50%);
    background: var(--green);
    color: var(--paper);
    width: 140px; height: 140px;
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    padding: 12px;
}
.about-badge .badge-num {
    font-family: var(--serif);
    font-size: 38px;
    line-height: 1;
    color: var(--gold-soft);
    font-style: italic;
}
.about-badge .badge-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-top: 6px;
    opacity: .9;
}

.about-content .eyebrow { margin-bottom: 22px; }
.about-content h2 {
    font-size: clamp(36px, 4.5vw, 56px);
    margin-bottom: 28px;
    color: var(--ink);
}
.about-content p {
    color: var(--ink-soft);
    margin-bottom: 18px;
    line-height: 1.75;
}
.about-content .signature {
    margin-top: 32px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 24px;
    color: var(--green);
}
.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 40px;
}
.about-feature {
    text-align: left;
    padding: 22px 18px;
    background: var(--green-tint);
    border-radius: var(--radius);
    transition: transform .3s ease, background .3s ease;
}
.about-feature:hover {
    transform: translateY(-4px);
    background: var(--green-soft);
}
.about-feature i {
    font-size: 22px;
    color: var(--green);
    margin-bottom: 14px;
    display: block;
}
.about-feature h4 {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--ink);
}
.about-feature p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

/* =========================================================
   Quote band
   ========================================================= */
.quote-section {
    padding: 100px 0;
    background: var(--green);
    color: var(--paper);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.quote-section::before {
    content: '\201C';
    position: absolute;
    top: 30px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--serif);
    font-size: 220px;
    line-height: 1;
    color: var(--gold-soft);
    opacity: 0.18;
    pointer-events: none;
}
.quote-section blockquote {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 1.35;
    max-width: 860px;
    margin: 0 auto 24px;
    position: relative;
}
.quote-author {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--gold-soft);
    position: relative;
    display: inline-flex; align-items: center; gap: 14px;
}
.quote-author::before {
    content: ''; width: 30px; height: 1px;
    background: currentColor; opacity: .6;
}

/* =========================================================
   Services preview (index)
   ========================================================= */
.services-preview {
    padding: 120px 0;
    background: var(--cream);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: var(--paper);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .45s ease, box-shadow .45s ease;
    display: flex; flex-direction: column;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}
.service-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .9s ease;
}
.service-card:hover .service-image img { transform: scale(1.08); }
.service-num {
    position: absolute;
    top: 18px; left: 22px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    color: var(--paper);
    background: rgba(11,40,32,0.7);
    backdrop-filter: blur(10px);
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.service-content {
    padding: 32px 30px 34px;
    flex: 1;
    display: flex; flex-direction: column;
}
.service-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--ink);
}
.service-content p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
    flex: 1;
}
.service-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--green);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    align-self: flex-start;
    transition: gap .25s ease;
}
.service-link i { font-size: 11px; }
.service-link:hover { gap: 14px; color: var(--terra); }

/* =========================================================
   Marquee / value strip
   ========================================================= */
.value-strip {
    background: var(--ink);
    color: var(--paper);
    padding: 36px 0;
    overflow: hidden;
}
.value-track {
    display: flex; gap: 70px;
    align-items: center;
    animation: marquee 38s linear infinite;
    width: max-content;
}
.value-item {
    display: inline-flex; align-items: center; gap: 14px;
    font-family: var(--serif);
    font-size: 22px;
    font-style: italic;
    color: var(--paper);
    white-space: nowrap;
}
.value-item .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold-soft);
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* =========================================================
   CTA section (image overlay)
   ========================================================= */
.cta-section {
    padding: 140px 0;
    color: var(--paper);
    text-align: center;
    position: relative;
    isolation: isolate;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(11,40,32,0.7), rgba(11,40,32,0.85)),
        url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}
.cta-section .eyebrow { color: var(--gold-soft); justify-content: center; margin-bottom: 22px; }
.cta-section .eyebrow::before, .cta-section .eyebrow::after { background: currentColor; }
.cta-section h2 {
    font-size: clamp(36px, 5vw, 64px);
    color: var(--paper);
    margin-bottom: 20px;
    line-height: 1.05;
}
.cta-section p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 36px;
    opacity: 0.85;
    line-height: 1.6;
}

/* =========================================================
   Page header (sub-pages)
   ========================================================= */
.page-header {
    position: relative;
    padding: calc(var(--nav-h) + 90px) 0 90px;
    color: var(--paper);
    text-align: center;
    isolation: isolate;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(11,40,32,0.78), rgba(11,40,32,0.88)),
        var(--header-img, url('https://images.unsplash.com/photo-1555244162-803834f70033?q=80&w=2070&auto=format&fit=crop'));
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.page-header .eyebrow { color: var(--gold-soft); justify-content: center; margin-bottom: 18px; }
.page-header .eyebrow::before, .page-header .eyebrow::after { background: currentColor; }
.page-header h1 {
    font-size: clamp(44px, 6vw, 72px);
    color: var(--paper);
    margin-bottom: 18px;
    line-height: 1.05;
    font-weight: 400;
}
.page-header h1 em { color: var(--gold-soft); font-weight: 400; }
.page-header p {
    font-size: 18px;
    opacity: 0.85;
    max-width: 640px;
    margin: 0 auto;
}

/* =========================================================
   Menu page (angebot)
   ========================================================= */
.menu-section {
    padding: 100px 0;
}
.menu-section.alt { background: var(--cream); }
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.menu-card {
    background: var(--paper);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    position: relative;
}
.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-soft);
}
.menu-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--green-tint);
    color: var(--green);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
    transition: all .35s ease;
}
.menu-card:hover .menu-icon {
    background: var(--green);
    color: var(--gold-soft);
    transform: rotate(-8deg) scale(1.05);
}
.menu-card h4 {
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--ink);
}
.menu-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.menu-cta {
    text-align: center;
    padding: 80px 0 100px;
    background: var(--green-deep);
    color: var(--paper);
}
.menu-cta .eyebrow { color: var(--gold-soft); justify-content: center; margin-bottom: 18px; }
.menu-cta .eyebrow::before, .menu-cta .eyebrow::after { background: currentColor; }
.menu-cta h2 { font-size: clamp(30px, 4vw, 44px); color: var(--paper); margin-bottom: 16px; }
.menu-cta p {
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto 28px;
}

/* =========================================================
   Buffets page
   ========================================================= */
.buffet-section { padding: 100px 0; }
.buffet-section.alt { background: var(--cream); }
.buffet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.buffet-card {
    background: var(--paper);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .4s ease, box-shadow .4s ease;
    display: flex; flex-direction: column;
    border: 1px solid var(--line-soft);
}
.buffet-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.buffet-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}
.buffet-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}
.buffet-card:hover .buffet-image img { transform: scale(1.08); }
.buffet-tag {
    position: absolute;
    top: 18px; left: 18px;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    background: rgba(11,40,32,0.85);
    backdrop-filter: blur(10px);
    color: var(--paper);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.buffet-tag.gold { background: rgba(184,148,93,0.92); color: var(--green-deep); }
.buffet-tag.terra { background: rgba(177,74,42,0.92); }
.buffet-content {
    padding: 30px 30px 32px;
    flex: 1;
    display: flex; flex-direction: column;
}
.buffet-content h3 {
    font-size: 26px;
    margin-bottom: 6px;
    color: var(--ink);
}
.buffet-subtitle {
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 22px;
}
.buffet-list {
    margin-bottom: 24px;
    flex: 1;
}
.buffet-list li {
    padding: 11px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 14.5px;
    color: var(--ink-soft);
    display: flex; align-items: flex-start; gap: 12px;
    line-height: 1.45;
}
.buffet-list li:last-child { border-bottom: none; }
.buffet-list li i {
    color: var(--green);
    font-size: 11px;
    margin-top: 5px;
    flex-shrink: 0;
}
.buffet-price {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--green);
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

/* =========================================================
   Buffets page — small top gap after banner
   ========================================================= */
.buffets-section { padding-top: clamp(60px, 8vw, 100px); }

/* =========================================================
   Gallery page
   ========================================================= */
.gallery-section { padding: 100px 0 120px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 18px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: zoom-in;
    background: var(--cream);
    box-shadow: var(--shadow-sm);
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.22,.61,.36,1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(11,40,32,0.7));
    display: flex; align-items: flex-end; justify-content: flex-start;
    padding: 22px;
    opacity: 0;
    transition: opacity .35s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i {
    color: var(--paper);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px;
}

.lightbox {
    position: fixed; inset: 0;
    background: rgba(11,40,32,0.95);
    z-index: 1000;
    display: none;
    align-items: center; justify-content: center;
    backdrop-filter: blur(8px);
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 92%;
    max-height: 86%;
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute;
    top: 24px; right: 28px;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--paper);
    font-size: 28px;
    border: none;
    transition: background .25s ease;
}
.lightbox-close:hover { background: var(--terra); }
.lightbox-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--paper);
    font-size: 20px;
    border: none;
    transition: background .25s ease;
}
.lightbox-nav:hover { background: var(--gold); color: var(--green-deep); }
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* =========================================================
   Contact page
   ========================================================= */
.contact-section { padding: 100px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: start;
}
.contact-intro h3 {
    font-family: var(--serif);
    font-size: clamp(30px, 3.4vw, 42px);
    margin-bottom: 18px;
    font-weight: 500;
}
.contact-intro p {
    color: var(--muted);
    margin-bottom: 36px;
    line-height: 1.75;
}
.contact-card {
    display: flex; align-items: flex-start; gap: 18px;
    padding: 22px 24px;
    margin-bottom: 14px;
    background: var(--paper);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.contact-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
    border-color: var(--green-soft);
}
.contact-icon {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--green-tint);
    color: var(--green);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-card h4 {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}
.contact-card p, .contact-card a {
    font-family: var(--serif);
    font-size: 19px;
    color: var(--ink);
    font-weight: 500;
}
.contact-card a:hover { color: var(--green); }

.contact-form-wrapper {
    background: var(--paper);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line-soft);
}
.contact-form-wrapper h3 {
    font-family: var(--serif);
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 500;
}
.contact-form-wrapper > p {
    color: var(--muted);
    margin-bottom: 32px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font: 15px var(--sans);
    color: var(--ink);
    background: #fff;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px var(--green-soft);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-submit { width: 100%; margin-top: 8px; padding: 18px; }

.map-section { padding: 0; }
.map-container {
    width: 100%;
    height: 440px;
    overflow: hidden;
    background: var(--cream);
}
.map-container iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.85) contrast(1.02); }

.hours-section {
    padding: 100px 0;
    background: var(--green);
    color: var(--paper);
    text-align: center;
}
.hours-section .eyebrow { color: var(--gold-soft); justify-content: center; margin-bottom: 18px; }
.hours-section .eyebrow::before, .hours-section .eyebrow::after { background: currentColor; }
.hours-section h2 {
    font-size: clamp(30px, 4vw, 44px);
    color: var(--paper);
    margin-bottom: 50px;
}
.hours-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}
.hours-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 28px 16px;
    transition: all .3s ease;
}
.hours-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
    border-color: var(--gold-soft);
}
.hours-card h4 {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 12px;
    font-weight: 700;
}
.hours-card p {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--paper);
}

/* =========================================================
   Legal pages (Impressum / Datenschutz / AGB)
   ========================================================= */
.content-section { padding: 80px 0; }
.content-section + .content-section { padding-top: 0; }
.content-block {
    max-width: 820px;
    margin: 0 auto;
    background: var(--paper);
    padding: 56px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line-soft);
}
.content-block h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: var(--ink);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}
.content-block h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 14px;
    color: var(--green);
    font-weight: 500;
}
.content-block p { color: var(--ink-soft); margin-bottom: 14px; line-height: 1.8; }
.content-block ul { padding-left: 0; margin: 14px 0 20px; }
.content-block ul li {
    position: relative;
    padding: 4px 0 4px 24px;
    color: var(--ink-soft);
    line-height: 1.7;
}
.content-block ul li::before {
    content: ''; position: absolute;
    left: 0; top: 14px;
    width: 8px; height: 1px;
    background: var(--green);
}
.content-block a {
    color: var(--green);
    border-bottom: 1px solid currentColor;
    transition: color .25s ease;
}
.content-block a:hover { color: var(--terra); }
.content-block strong { color: var(--ink); font-weight: 600; }
.privacy-date {
    display: inline-block;
    padding: 6px 14px;
    background: var(--green-tint);
    color: var(--green);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
}

.agb-item {
    display: flex; gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line-soft);
}
.agb-item:last-child { border-bottom: none; }
.agb-number {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--green);
    color: var(--gold-soft);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
}
.agb-item-content h4 {
    font-family: var(--serif);
    font-size: 21px;
    margin-bottom: 10px;
    color: var(--ink);
    font-weight: 500;
}
.agb-item-content p { color: var(--ink-soft); margin: 0; line-height: 1.75; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-images { height: 520px; max-width: 560px; }
    .about-badge { width: 110px; height: 110px; }
    .about-badge .badge-num { font-size: 30px; }
    .services-grid, .buffet-grid { grid-template-columns: repeat(2, 1fr); }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .hours-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .hero-meta { gap: 28px; }
}
@media (max-width: 768px) {
    body { font-size: 16px; }
    .navbar .container { gap: 12px; }
    .navbar-brand { font-size: 18px; }
    .navbar-brand .brand-sub { font-size: 9px; }

    .nav-links {
        position: fixed;
        top: 0; right: 0;
        height: 100dvh;
        width: min(86vw, 360px);
        background: var(--green-deep);
        color: var(--paper);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: calc(var(--nav-h) + 24px) 28px 32px;
        gap: 4px;
        margin: 0;
        border-radius: 0;
        box-shadow: -24px 0 60px -20px rgba(11,40,32,0.5);
        transform: translateX(100%);
        transition: transform .35s cubic-bezier(.4,0,.2,1);
        z-index: 90;
        overflow-y: auto;
        display: flex;
    }
    .nav-links::before {
        content: '';
        position: absolute;
        top: 26px; left: 28px; right: 28px;
        height: 1px;
        background: rgba(217,193,154,0.18);
    }
    .nav-links.active { transform: translateX(0); }

    .nav-links li { list-style: none; }
    .nav-links a, .navbar.scrolled .nav-links a {
        display: block;
        color: var(--paper);
        font-family: var(--serif);
        font-size: 26px;
        font-weight: 500;
        letter-spacing: 0;
        text-transform: none;
        padding: 14px 0;
        border-radius: 0;
        text-align: left;
        border-bottom: 1px solid rgba(217,193,154,0.12);
        transition: color .2s ease, padding-left .25s ease;
    }
    .nav-links a:hover,
    .nav-links a.active,
    .navbar.scrolled .nav-links a:hover,
    .navbar.scrolled .nav-links a.active {
        color: var(--gold-soft);
        padding-left: 6px;
    }
    .nav-links a.active::after { display: none; }

    .nav-links a.btn-nav,
    .navbar.scrolled .nav-links a.btn-nav {
        background: var(--terra);
        color: var(--paper);
        font-family: var(--sans);
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        text-align: center;
        padding: 16px 20px;
        border-radius: var(--radius-pill);
        border-bottom: none;
        margin: 24px 0 0;
    }
    .nav-links a.btn-nav:hover {
        background: var(--terra-dark);
        color: var(--paper);
        padding-left: 20px;
    }

    /* Backdrop */
    body.nav-open { overflow: hidden; }
    body.nav-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(11,40,32,0.45);
        backdrop-filter: blur(2px);
        z-index: 80;
        animation: navFade .3s ease;
    }
    @keyframes navFade { from { opacity: 0; } to { opacity: 1; } }

    .mobile-toggle {
        display: inline-flex;
        position: relative;
        z-index: 100;
        background: var(--green);
        color: var(--paper);
    }
    .navbar.scrolled .mobile-toggle { background: var(--green); color: var(--paper); }
    body.nav-open .mobile-toggle,
    body.nav-open .navbar.scrolled .mobile-toggle {
        background: transparent;
        color: var(--paper);
        border-color: rgba(217,193,154,0.3);
    }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .services-grid, .buffet-grid, .menu-grid { grid-template-columns: 1fr; }
    .hero-meta { flex-direction: column; align-items: flex-start; gap: 24px; }
    .hero-scroll { display: none; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .gallery-item.wide { grid-column: span 1; }
    .gallery-item.tall { grid-row: span 1; }
    .hours-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 32px 24px; }
    .content-block { padding: 36px 24px; }
    .agb-item { flex-direction: column; gap: 12px; }
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 6px; border: 2px solid var(--cream); }
::-webkit-scrollbar-thumb:hover { background: var(--green-dark); }

/* Selection */
::selection { background: var(--green); color: var(--gold-soft); }
