/* ============================================================
   Shuipings Chinesische Sport- & Wellnessmassage
   Palette nach Logo: Jade-Grün · Gold · Creme
   ============================================================ */

:root {
    --green-950: #12291f;
    --green-900: #17372a;
    --green-800: #1e4534;
    --green-700: #2a5a44;
    --green-600: #3a7258;
    --green-100: #e9f0ea;
    --green-50:  #f2f6f1;
    --gold:      #c2a14d;
    --gold-dark: #a2843a;
    --gold-soft: #f0e6cc;
    --cream:     #faf7f0;
    --paper:     #fffdf8;
    --ink:       #263029;
    --muted:     #64716a;
    --serif: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, 'Times New Roman', serif;
    --sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --shadow: 0 10px 30px rgba(23, 55, 42, .10);
    --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--cream);
}

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

a { color: var(--green-700); }

h1, h2, h3, .brand-name { font-family: var(--serif); color: var(--green-900); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 22px; }
.container.narrow { max-width: 820px; }
.center { text-align: center; }

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .72rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--green-800); color: #fff; }
.btn-primary:hover { background: var(--green-700); }
.btn-gold { background: var(--gold); color: var(--green-950); }
.btn-gold:hover { background: #d0b264; }
.btn-outline { border-color: var(--green-800); color: var(--green-800); background: transparent; }
.btn-outline:hover { background: var(--green-100); }

.text-link {
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.text-link:hover { border-bottom-color: var(--gold-dark); }

/* ---------- Header ---------- */

.site-header {
    background: rgba(250, 247, 240, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e8e2d4;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: .65rem;
    padding-bottom: .65rem;
}

.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand-logo { width: 52px; height: 52px; border-radius: 50%; box-shadow: 0 2px 8px rgba(23,55,42,.25); }
.brand-name { display: flex; flex-direction: column; line-height: 1.15; }
.brand-top { font-size: 1.25rem; font-weight: 700; color: var(--green-900); letter-spacing: .02em; }
.brand-sub { font-size: .72rem; color: var(--gold-dark); letter-spacing: .14em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 1.2rem; }
.site-nav ul { display: flex; list-style: none; gap: .2rem; }
.site-nav a:not(.btn) {
    display: block;
    padding: .45rem .8rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--green-900);
    font-weight: 500;
    font-size: .95rem;
}
.site-nav a:not(.btn):hover { background: var(--green-100); }
.site-nav a.active { color: var(--gold-dark); font-weight: 700; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--green-900); margin: 5px 0; transition: .2s; }

/* ---------- Hero ---------- */

.hero {
    background:
        radial-gradient(1000px 500px at 85% -10%, rgba(194, 161, 77, .16), transparent 60%),
        linear-gradient(180deg, var(--paper), var(--cream));
    padding: 4.5rem 0 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 3.5rem;
    align-items: center;
}

.eyebrow {
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .78rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(2.1rem, 4.5vw, 3.2rem);
    line-height: 1.12;
    margin-bottom: 1.2rem;
}

.lead { font-size: 1.12rem; color: var(--muted); max-width: 46rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }

.hero-media { position: relative; }
.hero-media img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 4.2;
    object-fit: cover;
    width: 100%;
}
.hero-media::before {
    content: '';
    position: absolute;
    inset: -14px 14px 14px -14px;
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    z-index: -1;
    opacity: .55;
}

/* ---------- Info strip ---------- */

.info-strip { margin-top: -1.5rem; padding-bottom: 1rem; }

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.info-card {
    background: var(--paper);
    border: 1px solid #ece5d6;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.4rem 1.5rem;
    text-align: center;
}
.info-card svg { width: 26px; height: 26px; fill: var(--gold-dark); margin: 0 auto .5rem; }
.info-card h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.info-card p { color: var(--muted); font-size: .95rem; }

/* ---------- Sections ---------- */

.section { padding: 4.2rem 0; }
.section-tint { background: linear-gradient(180deg, var(--green-50), var(--green-100)); }

.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head h2, .page-hero h1 { font-size: clamp(1.7rem, 3vw, 2.3rem); }

.lotus-divider {
    display: block;
    color: var(--gold);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: .8rem;
}

.page-hero {
    background:
        radial-gradient(800px 320px at 50% -40%, rgba(194, 161, 77, .18), transparent 70%),
        linear-gradient(180deg, var(--paper), var(--cream));
    text-align: center;
    padding: 3.6rem 0 2.6rem;
    border-bottom: 1px solid #eee7d8;
}
.page-hero .lead { margin: 1rem auto 0; }
.prose-center { max-width: 50rem; margin: 1rem auto 0; text-align: left; }

/* ---------- Split layout ---------- */

.split {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 3.2rem;
    align-items: center;
}
.split-reverse { grid-template-columns: 1.15fr .85fr; }
.split-reverse .split-media { order: 2; }

.split-media img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    max-height: 560px;
    object-fit: cover;
}
.media-caption {
    display: block;
    margin-top: .6rem;
    text-align: center;
    font-size: .85rem;
    color: var(--muted);
    font-style: italic;
}

.split-copy h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 1rem; }
.split-copy .text-link { display: inline-block; margin-top: 1.2rem; }

/* ---------- Prose (RTE-Inhalte) ---------- */

.prose p { margin-bottom: 1rem; }
.prose p:last-child { margin-bottom: 0; }
.prose ul, .prose ol { margin: 0 0 1rem 1.3rem; }
.prose li { margin-bottom: .5rem; }
.prose h2, .prose h3 { margin: 1.8rem 0 .7rem; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose img { border-radius: var(--radius); margin: 1.2rem 0; height: auto; }
.prose a { color: var(--gold-dark); }
.prose strong { color: var(--green-900); }

/* ---------- Offers ---------- */

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 1.5rem;
}
.offer-grid-3 { grid-template-columns: repeat(3, 1fr); }

.offer-card {
    position: relative;
    background: var(--paper);
    border: 1px solid #ece5d6;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.8rem 1.7rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: transform .15s ease;
}
.offer-card:hover { transform: translateY(-4px); }
.offer-card.is-highlight { border: 2px solid var(--gold); }

.offer-badge {
    position: absolute;
    top: -12px;
    right: 1.2rem;
    background: var(--gold);
    color: var(--green-950);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .2rem .7rem;
    border-radius: 999px;
}

.offer-card h3 { font-size: 1.25rem; margin-bottom: .5rem; }

.chip {
    align-self: flex-start;
    background: var(--green-100);
    color: var(--green-800);
    font-size: .8rem;
    font-weight: 600;
    padding: .18rem .7rem;
    border-radius: 999px;
    margin-bottom: .8rem;
}

.offer-desc { color: var(--muted); font-size: .95rem; flex: 1; }

.offer-price {
    margin-top: 1.1rem;
    padding-top: .9rem;
    border-top: 1px dashed #ddd3bd;
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--gold-dark);
}

/* ---------- Aktion ---------- */

.aktion-card {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    background: var(--paper);
    border: 2px dashed var(--gold);
    border-radius: var(--radius);
    padding: 1.8rem 2rem;
    max-width: 780px;
}
.aktion-icon { width: 52px; height: 52px; color: var(--gold-dark); flex-shrink: 0; }
.aktion-card h2 { margin-bottom: .3rem; font-size: 1.4rem; }
.aktion-card p { color: var(--muted); }

/* ---------- Image trio ---------- */

.image-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}
.image-trio img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

/* ---------- Voucher band ---------- */

.voucher-band {
    background:
        radial-gradient(700px 300px at 15% 120%, rgba(194, 161, 77, .25), transparent 60%),
        var(--green-900);
    color: #f3efe4;
    padding: 3.2rem 0;
}
.voucher-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.voucher-band h2 { color: var(--gold-soft); margin-bottom: .4rem; }
.voucher-band p { color: #cfd8cd; max-width: 38rem; }

/* ---------- Gallery ---------- */

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.2rem;
}
.gallery-item { margin: 0; }
.gallery-item img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    transition: transform .2s ease, filter .2s ease;
}
.gallery-item a:hover img { transform: scale(1.015); filter: brightness(1.04); }
.gallery-item figcaption { font-size: .85rem; color: var(--muted); margin-top: .4rem; text-align: center; }

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(18, 41, 31, .93);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 3vh 3vw;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 92vw; max-height: 92vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox-close {
    position: absolute;
    top: 14px;
    right: 22px;
    background: none;
    border: 0;
    color: #fff;
    font-size: 2.6rem;
    line-height: 1;
    cursor: pointer;
    opacity: .8;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .12);
    border: 0;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    opacity: .85;
    transition: background .15s ease, opacity .15s ease;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, .25); opacity: 1; }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

@media (max-width: 600px) {
    .lightbox-nav { width: 42px; height: 42px; font-size: 1.2rem; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}

/* ---------- Kontaktformular ---------- */

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-card {
    background: var(--paper);
    border: 1px solid #ece5d6;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem 2.2rem 2.2rem;
}

.contact-form-card label {
    display: block;
    font-weight: 600;
    font-size: .9rem;
    color: var(--green-900);
    margin: 1.1rem 0 .4rem;
}
.contact-form-card label:first-of-type { margin-top: 0; }

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: .7rem .9rem;
    border: 1px solid #d5d0c2;
    border-radius: 10px;
    font: inherit;
    background: #fffdf8;
    color: var(--ink);
    box-sizing: border-box;
}
.contact-form-card input:focus,
.contact-form-card textarea:focus {
    outline: 2px solid rgba(194, 161, 77, .45);
    border-color: var(--gold);
}
.contact-form-card textarea { resize: vertical; }
.contact-form-card .btn { margin-top: 1.3rem; }

.field-error { display: block; color: #a33333; font-size: .85rem; margin-top: .35rem; }

.form-flash {
    padding: .9rem 1.1rem;
    border-radius: 10px;
    margin-bottom: 1.4rem;
    font-size: .95rem;
}
.form-flash-success { background: #e4f0e4; color: #23532c; border: 1px solid #bcd8bd; }
.form-flash-error { background: #f7e5e5; color: #7c2626; border: 1px solid #e3bcbc; }

.hp-field { position: absolute; left: -9999px; top: auto; height: 1px; overflow: hidden; }

.privacy-note { font-size: .82rem; color: var(--muted); margin-top: 1.1rem; }
.privacy-note a { color: var(--gold-dark); }

.contact-info h2 { margin-bottom: .8rem; }
.contact-info > p { color: var(--muted); margin-bottom: 1.4rem; }
.contact-info-item { margin-bottom: 1.1rem; }
.contact-info-item strong {
    display: block;
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: .2rem;
}
.contact-info-item a { color: var(--green-800); }

/* ---------- Footer ---------- */

.site-footer {
    background: var(--green-950);
    color: #c9d3c9;
    margin-top: 0;
    padding: 3.4rem 0 0;
    font-size: .95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr .8fr;
    gap: 2.4rem;
    padding-bottom: 2.4rem;
}

.footer-logo { width: 64px; height: 64px; border-radius: 50%; margin-bottom: .9rem; }
.footer-claim { font-family: var(--serif); font-size: 1.05rem; color: #e7e3d3; }

.site-footer h3 {
    color: var(--gold);
    font-size: .85rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-family: var(--sans);
    font-weight: 700;
    margin-bottom: .8rem;
}
.site-footer a { color: #e0e6dd; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-nav { list-style: none; }
.footer-nav li { margin-bottom: .35rem; }
.footer-note { margin-top: .6rem; color: #93a396; font-size: .88rem; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 1.2rem;
    padding-bottom: 1.4rem;
    color: #8fa093;
    font-size: .88rem;
}
.footer-legal { display: flex; gap: 1.4rem; }

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
    .hero-grid, .split, .split-reverse { grid-template-columns: 1fr; gap: 2.2rem; }
    .split-reverse .split-media { order: 0; }
    .offer-grid-3 { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-media::before { display: none; }
}

@media (max-width: 960px) {
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .nav-toggle { display: block; }
    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--paper);
        border-bottom: 1px solid #e8e2d4;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.4rem 1.4rem;
        gap: .8rem;
    }
    .site-nav.open { display: flex; }
    .site-nav ul { flex-direction: column; gap: 0; }
    .site-nav a:not(.btn) { padding: .7rem .4rem; border-bottom: 1px solid #f0ebdf; border-radius: 0; }
    .btn-nav-cta { justify-content: center; }
    .info-grid, .image-trio, .offer-grid-3 { grid-template-columns: 1fr; }
    .hero { padding: 2.8rem 0 3rem; }
    .voucher-inner { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
    .aktion-card { flex-direction: column; text-align: center; }
}
