/* ══ HERO ══════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    padding-top: var(--nav-h);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}
/* Linke Seite: Text + Karin-Foto als BG */
.hero-left {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-left-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-left-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: .45;
    filter: grayscale(50%);
}
.hero-left-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
        rgba(245,250,251,.97) 0%,
        rgba(245,250,251,.88) 55%,
        rgba(234,243,245,.72) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 5rem 4rem 5rem 5rem;
    width: 100%;
}
.hero-eyebrow {
    font-size: .68rem; font-weight: 700; letter-spacing: .22em;
    text-transform: uppercase; color: var(--primary);
    margin-bottom: 1.25rem;
    display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before {
    content: ''; display: block;
    width: 24px; height: 2px;
    background: var(--primary); border-radius: 2px; flex-shrink: 0;
}
.hero-title {
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 800; line-height: 1.0;
    letter-spacing: -.035em; color: var(--ink);
    margin-bottom: 1.25rem;
}
.hero-title span { color: var(--primary); display: block; }
.hero-subtitle {
    font-size: 1.05rem; font-weight: 400;
    color: var(--ink-60); margin-bottom: 2.5rem;
    line-height: 1.75; max-width: 440px;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
    display: flex; gap: 2.5rem;
    margin-top: 3rem; padding-top: 2rem;
    border-top: 1px solid var(--ink-10);
}
.hero-stat-num {
    font-size: 1.8rem; font-weight: 800;
    color: var(--primary); letter-spacing: -.03em;
    display: block; line-height: 1;
}
.hero-stat-label {
    font-size: .65rem; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--ink-40); margin-top: 5px; display: block;
}

/* Rechte Seite: zufälliges Werk */
.hero-right {
    position: relative;
    background: var(--teal-900);
    overflow: hidden;
    /* Sicherstellen dass das Grid-Cell die volle Hero-Höhe einnimmt */
    min-height: 100%;
}
.hero-right img {
    /* Absolut positioniert → füllt .hero-right komplett aus */
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}
.hero-right:hover img { transform: scale(1.04); }
.hero-right-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,27,30,.75), transparent);
    color: #fff;
}
.hero-right-caption-title {
    font-size: .88rem; font-weight: 600; margin-bottom: 3px;
}
.hero-right-caption-meta {
    font-size: .65rem; font-weight: 500;
    letter-spacing: .08em; text-transform: uppercase;
    color: rgba(255,255,255,.55);
}

/* ══ GALLERY ═══════════════════════════════════════════════════ */
.gallery-section { background: var(--white); }

/* Mehr-laden Button */
.gallery-more-wrap {
    text-align: center;
    margin-top: 2.5rem;
}
#gallery-load-more {
    min-width: 200px;
}
#gallery-load-more.loading {
    opacity: .6; pointer-events: none;
}
.gallery-more-count {
    font-size: .8em; opacity: .65;
}
.gallery-empty {
    text-align: center; padding: 5rem 2rem; color: var(--muted);
}

/* ══ ABOUT ══════════════════════════════════════════════════════ */
.about-section { background: var(--teal-800); color: #fff; }
.about-inner {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 5rem; align-items: start;
}
.about-section .section-tag { color: var(--teal-200); }
.about-section .section-tag::before { background: var(--teal-200); }
.about-section .section-title { color: #fff; }
.about-section .section-title em { color: var(--teal-300); font-style: normal; }
.about-portrait { position: sticky; top: calc(var(--nav-h) + 2rem); }
.portrait-frame {
    border-radius: var(--radius-md); overflow: hidden;
    width: 100%; aspect-ratio: 3/4;
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.portrait-accent {
    position: absolute; bottom: -14px; right: -14px;
    width: 75%; height: 75%;
    border: 2px solid var(--teal-400);
    border-radius: var(--radius-md); z-index: -1; pointer-events: none;
}
.about-stats {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1px; background: rgba(255,255,255,.08);
    border-radius: var(--radius-sm); overflow: hidden; margin-top: 1.5rem;
}
.stat-box { background: rgba(0,85,95,.45); padding: 1rem 1.1rem; text-align: center; }
.stat-num  { font-size: 1.9rem; font-weight: 800; color: var(--teal-200); letter-spacing: -.03em; display: block; }
.stat-label{ font-size: .62rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 3px; display: block; }
.about-text { padding-top: .25rem; }
.about-blockquote {
    font-size: 1.25rem; font-weight: 600; color: var(--teal-200);
    border-left: 3px solid var(--teal-400);
    padding-left: 1.25rem; margin: 1.75rem 0;
    line-height: 1.5; letter-spacing: -.01em;
}
.about-text p { font-size: .95rem; line-height: 1.9; color: rgba(255,255,255,.68); margin-bottom: 1.15rem; }
.about-text h3 {
    font-size: .68rem; font-weight: 700; letter-spacing: .2em;
    text-transform: uppercase; color: var(--teal-300); margin: 2rem 0 .75rem;
}
.about-section .btn-outline { color: #fff; border-color: rgba(255,255,255,.3); margin-top: .5rem; }
.about-section .btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.technique-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.technique-chip {
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.75); font-size: .72rem; font-weight: 500;
    padding: 4px 12px; border-radius: 20px; letter-spacing: .04em;
}

/* ══ PROCESS SECTION ════════════════════════════════════════════ */
.process-section { background: var(--paper2); }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.process-card {
    background: var(--white); border-radius: var(--radius-md);
    border: 1px solid var(--border); padding: 1.75rem;
}
.process-num { font-size: 2.5rem; font-weight: 800; color: var(--teal-100); letter-spacing: -.04em; line-height: 1; margin-bottom: .75rem; }
.process-title { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: .6rem; letter-spacing: -.01em; }
.process-text { font-size: .88rem; line-height: 1.8; color: var(--ink-60); }

/* ══ SHOP ════════════════════════════════════════════════════════ */
.shop-section { background: var(--paper); }

/* ══ SHOP / WORKS CARDS ══════════════════════════════════════════
   Feste Bildhöhe → Text immer auf gleicher Höhe
══════════════════════════════════════════════════════════════════ */
.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.work-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s ease, transform .2s ease;
}
.work-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

/* Feste Bildhöhe – alle Cards gleich */
.work-card-image {
    height: 220px;
    overflow: hidden;
    background: var(--paper2);
    flex-shrink: 0;
    position: relative;
}
.work-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.work-card:hover .work-card-image img { transform: scale(1.05); }

.work-card-image-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: .72rem; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase; color: var(--ink-40);
}

/* Body wächst → Footer immer unten */
.work-card-body {
    padding: 1rem 1.1rem 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.work-card-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: -.01em;
    line-height: 1.3;
    /* Max 2 Zeilen, dann Ellipsis */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;    /* immer 2 Zeilen Platz */
}

.work-card-meta {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .07em;
    color: var(--ink-40);
    text-transform: uppercase;
    margin-bottom: .85rem;
    flex: 1;              /* schiebt Footer nach unten */
    /* Max 1 Zeile */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Footer: Preis links, Button/Badge rechts – immer auf gleicher Höhe */
.work-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    padding-top: .75rem;
    border-top: 1px solid var(--ink-10);
    margin-top: auto;
}

.work-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -.02em;
    white-space: nowrap;
}
.work-price.sold     { color: var(--ink-40); font-size: .85rem; font-weight: 500; text-decoration: line-through; }
.work-price.reserved { color: var(--comp-500); font-size: .85rem; font-weight: 600; }
.work-price.nfs      { color: var(--ink-40); font-size: .85rem; font-weight: 500; }

.chip {
    display: inline-block; padding: 3px 10px;
    border-radius: 20px; font-size: .63rem;
    font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
    white-space: nowrap;
}
.chip-available { background: var(--teal-50);   color: var(--teal-700); }
.chip-sold      { background: var(--ink-10);    color: var(--ink-60); }
.chip-reserved  { background: var(--comp-50);   color: var(--comp-700); }
.chip-nfs       { background: var(--ink-10);    color: var(--ink-40); }

/* Tattoo-Sektion eigene Optik */
.tattoo-section { background: var(--teal-900); }
.tattoo-section .section-tag   { color: var(--teal-300); }
.tattoo-section .section-tag::before { background: var(--teal-300); }
.tattoo-section .section-title { color: #fff; }
.tattoo-section .section-title em { color: var(--teal-300); font-style: normal; }
.tattoo-intro {
    font-size: .9rem; line-height: 1.85;
    color: rgba(255,255,255,.55);
    max-width: 580px; margin-top: 1rem;
}
.tattoo-section .work-card {
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.1);
}
.tattoo-section .work-card:hover { background: rgba(255,255,255,.08); }
.tattoo-section .work-card-title { color: #fff; }
.tattoo-section .work-card-meta  { color: rgba(255,255,255,.35); }
.tattoo-section .work-card-footer{ border-top-color: rgba(255,255,255,.1); }
.tattoo-section .work-price.nfs  { color: rgba(255,255,255,.35); }


/* ══ CONTACT ═════════════════════════════════════════════════════ */
.contact-section { background: var(--paper2); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-intro { font-size: .95rem; line-height: 1.85; color: var(--ink-60); margin: 1.25rem 0 2rem; }
.contact-info  { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 2rem; }
.contact-info-row   { display: flex; gap: 1rem; align-items: baseline; }
.contact-info-label { font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--primary); min-width: 80px; }
.contact-info-value { font-size: .9rem; color: var(--ink-80); }
.contact-info-value a:hover { color: var(--primary); text-decoration: underline; }
.contact-form { display: flex; flex-direction: column; gap: .9rem; }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.form-group   { display: flex; flex-direction: column; gap: 5px; }
.form-label   { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-60); }
.contact-form input,
.contact-form select,
.contact-form textarea {
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: var(--radius-sm); padding: .7rem 1rem;
    color: var(--ink); font-family: var(--sans); font-size: .9rem;
    outline: none; transition: border-color var(--transition), box-shadow var(--transition); width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,85,95,.1); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.form-success { padding: .85rem 1.1rem; background: var(--teal-50); border: 1px solid var(--teal-200); border-radius: var(--radius-sm); color: var(--teal-700); font-size: .88rem; font-weight: 500; }
.form-error   { padding: .85rem 1.1rem; background: #fff0f0; border: 1px solid #ffcdd0; border-radius: var(--radius-sm); color: #c0392b; font-size: .88rem; font-weight: 500; }

/* ══ FOOTER ══════════════════════════════════════════════════════ */
.site-footer {
    background: var(--teal-900); padding: 2.5rem 5rem;
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem;
}
.footer-logo  { font-size: .95rem; font-weight: 700; color: rgba(255,255,255,.35); }
.footer-links { display: flex; gap: 1.5rem; list-style: none; justify-content: center; }
.footer-links a { font-size: .72rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.28); transition: color var(--transition); }
.footer-links a:hover { color: var(--teal-300); }
.footer-right { display: flex; justify-content: flex-end; align-items: center; gap: 1.5rem; }
.footer-copy  { font-size: .7rem; color: rgba(255,255,255,.2); letter-spacing: .04em; }
.footer-admin { font-size: .65rem; color: rgba(255,255,255,.15); letter-spacing: .08em; text-transform: uppercase; transition: color var(--transition); }
.footer-admin:hover { color: rgba(255,255,255,.4); }
.footer-credit {
    display: flex; align-items: center; gap: .35rem;
    text-decoration: none; transition: opacity var(--transition);
    opacity: .35;
}
.footer-credit:hover { opacity: .7; }
.footer-credit-text  { font-size: .65rem; color: rgba(255,255,255,.6); letter-spacing: .04em; }
.footer-credit-brand { font-size: .72rem; font-weight: 700; color: var(--teal-300); letter-spacing: .03em; }

/* ══ LIGHTBOX ════════════════════════════════════════════════════ */
#lightbox { display:none; position:fixed; inset:0; background:rgba(0,27,30,.96); z-index:200; align-items:center; justify-content:center; }
#lightbox.open { display:flex; }
.lb-inner { position:relative; max-width:94vw; max-height:94vh; display:flex; flex-direction:column; align-items:center; gap:.75rem; }
.lb-inner img { max-width:90vw; max-height:86vh; object-fit:contain; border-radius:var(--radius-sm); }
.lb-caption { font-size:.78rem; font-weight:500; color:rgba(255,255,255,.5); letter-spacing:.06em; text-transform:uppercase; }
.lb-close { position:absolute; top:-3rem; right:0; background:rgba(255,255,255,.1); border:none; color:rgba(255,255,255,.7); font-size:1rem; cursor:pointer; padding:.4rem .75rem; border-radius:var(--radius-xs); transition:background var(--transition); line-height:1; }
.lb-close:hover { background:rgba(255,255,255,.2); color:#fff; }

/* ══ RESPONSIVE ══════════════════════════════════════════════════ */
@media (max-width: 960px) {
    .hero                 { grid-template-columns: 1fr; }
    .hero-content         { padding: 3.5rem 1.5rem 4rem; }
    .hero-right           { display: none; }
    .about-inner          { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-portrait       { position: static; }
    .contact-inner        { grid-template-columns: 1fr; gap: 2rem; }
    .form-row             { grid-template-columns: 1fr; }
    .process-grid         { grid-template-columns: 1fr; }
    .site-footer          { grid-template-columns: 1fr; text-align: center; padding: 2rem 1.5rem; }
    .footer-links         { justify-content: center; flex-wrap: wrap; }
    .footer-right         { justify-content: center; }
}

/* ══ FILTER BAR ══════════════════════════════════════════════ */
.filter-bar {
    background: var(--white);
    border: 1px solid var(--ink-10);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.filter-row {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-wrap: wrap;
}
.filter-label {
    font-size: .62rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--ink-40); min-width: 70px;
}
.filter-pills { display: flex; gap: .4rem; flex-wrap: wrap; }
.fpill {
    padding: 4px 13px; border-radius: 20px; font-size: .75rem;
    border: 1.5px solid var(--border); background: var(--paper);
    color: var(--ink-60); font-family: var(--sans);
    cursor: pointer; transition: all .15s; line-height: 1.4;
}
.fpill:hover:not(.active) { border-color: var(--primary); color: var(--primary); }
.fpill.active             { background: var(--primary); color: #fff; border-color: var(--primary); }
.fpill-art.active    { background: #c96000; border-color: #c96000; }
.fpill-craft.active  { background: #6b4f28; border-color: #6b4f28; }
.fpill-baking.active { background: #a0308a; border-color: #a0308a; }
.fpill-tattoo.active { background: var(--teal-700); border-color: var(--teal-700); }

.filter-count {
    font-size: .75rem; color: var(--ink-40);
    margin-bottom: .5rem; min-height: 1.2em;
}

/* ══ CURATED C+D GRID ════════════════════════════════════════ */
/*  12-Spalten-Basis → feinere Abstufung, Kacheln bleiben kompakt
    s = 3col×2row  (~160px hoch, Querformat-Kachel)
    m = 3col×4row  (doppelt hoch, gut für Hochformate)
    l = 4col×4row  (Featured, dominant aber nicht riesig)            */
.curated-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 90px;
    gap: 8px;
    margin-bottom: 1rem;
}
.curated-item { border-radius: var(--radius-sm); overflow: hidden; position: relative; }
.ci-s { grid-column: span 3; grid-row: span 3; }  /* ~278px */
.ci-m { grid-column: span 3; grid-row: span 5; }  /* ~458px – Hochformat */
.ci-l { grid-column: span 4; grid-row: span 5; }  /* ~458px – Featured, breiter */

.curated-inner {
    position: relative; width: 100%; height: 100%;
    cursor: zoom-in;
    border: 1px solid var(--ink-10);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--paper2);
    transition: box-shadow .25s, transform .2s;
}
.curated-inner:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.curated-inner img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.curated-inner:hover img { transform: scale(1.04); }

/* Kategorie-Punkt */
.cat-dot {
    position: absolute; top: 7px; left: 7px;
    width: 9px; height: 9px; border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(255,255,255,.85);
    z-index: 2;
}
.cat-dot-art    { background: #c96000; }
.cat-dot-craft  { background: #6b4f28; }
.cat-dot-baking { background: #a0308a; }
.cat-dot-tattoo { background: var(--teal-600); }

/* Kategorie-Streifen auf Shop-Karten */
.work-card-cat-stripe {
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
}
.cat-stripe-art    { background: #c96000; }
.cat-stripe-craft  { background: #6b4f28; }
.cat-stripe-baking { background: #a0308a; }

/* Versteckte Items beim Filtern */
.curated-item.filtered-out,
.work-card.filtered-out { display: none; }

/* ══ SHOP DIVIDER ════════════════════════════════════════════ */
.shop-divider {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--ink-10);
}
.shop-divider-title {
    font-size: 1.05rem; font-weight: 700;
    color: var(--ink); margin-bottom: 1.25rem;
    letter-spacing: -.02em;
}

/* Responsive */
@media (max-width: 1100px) {
    .curated-grid { grid-template-columns: repeat(8, 1fr); grid-auto-rows: 100px; }
    .ci-s { grid-column: span 2; grid-row: span 3; }
    .ci-m { grid-column: span 2; grid-row: span 5; }
    .ci-l { grid-column: span 3; grid-row: span 5; }
}
@media (max-width: 800px) {
    .curated-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
    .ci-s,.ci-m,.ci-l { grid-column: span 1; grid-row: span 3; }
    .filter-label { min-width: 55px; }
}