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

:root {
    --bg:    #f7f4f0;
    --white: #fdfcfb;
    --text:  #1a1a1a;
    --muted: #aaa;
    --line:  #e0dbd5;
}

html { scroll-behavior: smooth; }

/* ── ACCESSIBILITY ── */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--text);
    color: var(--bg);
    padding: 8px 16px;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-decoration: none;
    z-index: 9999;
    transition: top 0s;
}
.skip-link:focus { top: 16px; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.04em;
    animation: pageFadeIn 0.4s ease;
}

@keyframes pageFadeIn { from { opacity: 0; } }

/* ── NAV ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 56px;
    transition: background 0.35s, border-color 0.35s;
}

/* Hero-Nav: weiß solange im Hero-Bereich */
nav.hero-nav .nav-logo { color: #fff; }
nav.hero-nav .nav-links a { color: rgba(255,255,255,0.6); }
nav.hero-nav .nav-links a:hover { color: #fff; }

nav.scrolled {
    background: rgba(247,244,240,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.16em;
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.25s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-ig svg {
    width: 17px; height: 17px;
    fill: none; stroke: currentColor; stroke-width: 1.5;
    display: block;
}

/* ── HERO (index only) ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #111;
}

.hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease;
}

/* Gradient für Lesbarkeit unten */
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0)    40%,
        rgba(0,0,0,0.3)  100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 8vw, 100px);
    font-weight: 300;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 24px;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    animation: heroFadeUp 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s both;
}

.hero-tagline {
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    animation: heroFadeUp 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.4s both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: none; }
}

.hero-scroll {
    position: absolute;
    bottom: 44px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.5);
    font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
    animation: drift 2.4s ease-in-out infinite;
    z-index: 2;
}

.hero-scroll::after {
    content: '';
    width: 1px; height: 36px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes drift {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── PAGE HEADER (subpages) ── */
.page-header {
    padding: 160px 56px 64px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.page-header-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 32px;
    transition: color 0.25s;
}

.page-header-back::before { content: '←'; }
.page-header-back:hover { color: var(--text); }

.page-header-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1;
}

.page-header-count {
    margin-top: 14px;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--muted);
}

.page-header-sub {
    margin-top: 10px;
    font-size: 11px;
    letter-spacing: 0.08em;
}

.page-header-sub a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.25s;
}

.page-header-sub a:hover { color: var(--text); }

/* ── SECTION (index) ── */
.section {
    padding: 80px 56px;
}

.section:nth-of-type(odd)  { background: var(--bg); }
.section:nth-of-type(even) { background: var(--white); }

.section-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 28px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 300;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-line { flex: 1; height: 1px; background: var(--line); }
.section-num  { font-size: 10px; color: var(--muted); letter-spacing: 0.15em; }

/* ── PHOTO GRID – Justified Layout ── */
:root {
    --row-h: 300px;
    --row-h-preview: 200px;
}

.photo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    align-items: flex-start;
}

/* Spacer: verhindert gestreckte letzte Reihe auf Galerie-Seiten */
.photo-grid::after {
    content: '';
    flex: 9999 1 0;
    min-width: 0;
}

.photo-item {
    height: var(--row-h);
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
    background: var(--line);
}

.photo-item::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
    animation: shimmer 1.6s ease-in-out infinite;
    z-index: 1;
    will-change: transform;
}

.photo-item:has(img.visible)::before { display: none; }

@keyframes shimmer {
    from { transform: translateX(-100%); }
    to   { transform: translateX(200%); }
}

/* ── Preview-Grid auf der Startseite: Masonry-Columns ── */
.photo-grid--preview {
    columns: 5;
    column-gap: 3px;
    display: block;
}
.photo-grid--preview::after { display: none; }
.photo-grid--preview .photo-item {
    height: unset;
    break-inside: avoid;
    margin-bottom: 3px;
    display: block;
}
.photo-grid--preview .photo-item img {
    width: 100%;
    height: auto;
    object-fit: unset;
}
@media (max-width: 960px) { .photo-grid--preview { columns: 3; } }
@media (max-width: 640px) { .photo-grid--preview { columns: 2; } }

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
    opacity: 0;
}

.photo-item img.visible {
    opacity: 0.97;
}

.photo-item:hover img.visible {
    transform: scale(1.03);
    opacity: 1;
}

.photo-item:active img {
    transform: scale(0.98);
    transition: transform 0.08s ease;
}

/* ── GALLERY WRAPPER (subpages) ── */
.gallery-wrap {
    padding: 48px 56px 80px;
}

/* ── ALL-PHOTOS LINK (index) ── */
.all-photos-link {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    text-decoration: none;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: color 0.25s;
}

.all-photos-link span {
    display: inline-block;
    width: 36px; height: 1px;
    background: currentColor;
    transition: width 0.3s;
}

.all-photos-link:hover { color: var(--text); }
.all-photos-link:hover span { width: 56px; }

/* ── LOAD SENTINEL ── */
.load-more-wrap { margin-top: 32px; text-align: center; }

.load-sentinel {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.load-sentinel::after {
    content: '';
    width: 18px; height: 18px;
    border: 1px solid var(--line);
    border-top-color: var(--muted);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

.load-sentinel[hidden] { display: none; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ── IMPRESSUM INLINE ── */
.impressum-bar {
    background: var(--white);
    border-top: 1px solid var(--line);
    padding: 28px 56px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 32px;
}

.impressum-bar p {
    font-size: 10px;
    letter-spacing: 0.06em;
    line-height: 1.7;
    color: var(--muted);
}

.impressum-bar a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.impressum-bar a:hover { color: var(--text); }

@media (max-width: 640px) {
    .impressum-bar { padding: 20px; flex-direction: column; gap: 4px; }
}

/* ── SEO TEXT SECTION ── */
.seo-text {
    background: var(--bg);
    border-top: 1px solid var(--line);
}
.seo-text-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 72px 56px;
}
.seo-text h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--text);
    margin: 0 0 32px;
}
.seo-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 20px;
}
.seo-text p:last-of-type { margin-bottom: 36px; }
.seo-cta {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--text);
    padding-bottom: 2px;
    transition: opacity 0.25s;
}
.seo-cta:hover { opacity: 0.5; }

/* ── FOOTER ── */
footer {
    padding: 64px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    background: var(--white);
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px; font-weight: 300;
    letter-spacing: 0.28em; text-transform: uppercase;
}

.footer-ig {
    display: flex; align-items: center; gap: 10px;
    color: var(--muted);
    text-decoration: none;
    font-size: 11px; letter-spacing: 0.12em;
    transition: color 0.25s;
}

.footer-ig:hover { color: var(--text); }

.footer-ig svg {
    width: 16px; height: 16px;
    fill: none; stroke: currentColor; stroke-width: 1.5;
}

.footer-copy { font-size: 11px; color: var(--line); }
.footer-copy a { color: inherit; text-decoration: none; transition: color 0.25s; }
.footer-copy a:hover { color: var(--muted); }

/* ── IMPRESSUM / LEGAL ── */
.legal-wrap {
    padding: 48px 56px 80px;
    max-width: 720px;
}

.legal-wrap h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 44px;
    margin-bottom: 12px;
    color: var(--text);
}

.legal-wrap h2:first-child { margin-top: 0; }

.legal-wrap p {
    font-size: 13px;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 8px;
}

.legal-wrap a { color: var(--muted); transition: color 0.25s; }
.legal-wrap a:hover { color: var(--text); }

/* ── CONTACT FORM ── */
.contact-wrap {
    padding: 48px 56px 80px;
    max-width: 680px;
}

.contact-intro {
    font-size: 13px;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 36px;
}

.contact-form { display: flex; flex-direction: column; gap: 12px; }

.contact-row { display: flex; gap: 12px; }
.contact-row input { flex: 1; }

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--line);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--text);
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.25s;
    -webkit-appearance: none;
    border-radius: 0;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--muted); }

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }

.contact-form textarea { min-height: 160px; resize: vertical; }

.contact-submit {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: 1px solid var(--line);
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 13px 28px;
    cursor: pointer;
    transition: border-color 0.25s, color 0.25s;
    margin-top: 8px;
}

.contact-submit span {
    display: inline-block;
    width: 28px; height: 1px;
    background: currentColor;
    transition: width 0.3s;
}

.contact-submit:hover { border-color: var(--text); color: var(--text); }
.contact-submit:hover span { width: 44px; }
.contact-submit:disabled { opacity: 0.5; cursor: default; }

.contact-success {
    font-size: 13px;
    line-height: 1.9;
    color: var(--muted);
    padding: 32px 0;
}

.contact-error {
    font-size: 11px;
    color: #c0392b;
    letter-spacing: 0.04em;
}

.captcha-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.captcha-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-transform: uppercase;
}

.captcha-input {
    width: 120px;
    background: var(--white);
    border: 1px solid var(--line);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: var(--text);
    padding: 10px 14px;
    outline: none;
    transition: border-color 0.25s;
    -webkit-appearance: none;
    border-radius: 0;
    -moz-appearance: textfield;
}

.captcha-input:focus { border-color: var(--muted); }
.captcha-input::-webkit-inner-spin-button,
.captcha-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* ── LIGHTBOX ── */
/* ── STACK LIGHTBOX ── */
.stack-lb {
    display: flex;
    position: fixed; inset: 0; z-index: 999;
    background: rgba(12, 12, 12, .95);
    align-items: center; justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s;
}
.stack-lb.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.stack-surface {
    position: relative;
    width: 90vw; height: 85vh;
    display: flex;
    align-items: center; justify-content: center;
}

.stack-card {
    position: absolute;
    max-width: 80vw; max-height: 78vh;
    background: #f5f3ef;
    padding: 12px 12px 40px 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,.3), 0 8px 30px rgba(0,0,0,.4);
    transition: transform .45s cubic-bezier(.4,0,.2,1), opacity .35s ease;
    will-change: transform, opacity;
    cursor: default;
}
.stack-card img {
    display: block;
    max-width: 76vw; max-height: calc(78vh - 52px);
    width: auto; height: auto;
    object-fit: contain;
}

.stack-card.below-1 {
    transform: rotate(var(--rot-b1, 2.5deg)) translate(4px, 3px);
    opacity: .35; z-index: 1;
    transition: transform .6s cubic-bezier(.4,0,.2,1), opacity .8s ease;
}
.stack-card.below-2 {
    transform: rotate(var(--rot-b2, -3deg)) translate(-5px, 6px);
    opacity: .15; z-index: 0;
    transition: transform .6s cubic-bezier(.4,0,.2,1), opacity .8s ease;
}
.stack-card.below-fade {
    opacity: 0 !important;
    transition: opacity .6s ease;
}
.stack-card.active {
    transform: rotate(var(--rot, 0deg));
    opacity: 1; z-index: 10;
}
.stack-card.incoming-right {
    transform: translate(110vw, -20px) rotate(8deg);
    opacity: 0; z-index: 20;
}
.stack-card.lift-right {
    transform: translate(110vw, -20px) rotate(12deg) !important;
    opacity: 0 !important;
    transition: transform .45s cubic-bezier(.4,0,.2,1), opacity .3s ease .15s;
    z-index: 20;
}

.stack-close {
    position: fixed; top: 24px; right: 36px;
    background: none; border: none;
    color: rgba(255,255,255,.6);
    font-family: 'Inter', sans-serif; font-weight: 300;
    font-size: 26px; line-height: 1;
    cursor: pointer;
    transition: color 0.2s; z-index: 1000;
}
.stack-close:hover { color: #fff; }

.stack-counter {
    position: fixed; bottom: 28px; left: 50%;
    transform: translateX(-50%);
    font-size: 10px; letter-spacing: 0.2em;
    color: rgba(255,255,255,.5);
    font-variant-numeric: tabular-nums;
    z-index: 1000; pointer-events: none;
}

.stack-nav {
    position: absolute; top: 0; bottom: 0;
    width: 35%; z-index: 11; cursor: pointer;
}
.stack-nav.prev { left: 0; }
.stack-nav.next { right: 0; }
.stack-nav::after {
    content: ''; position: absolute; top: 50%;
    width: 20px; height: 20px;
    border: solid rgba(255,255,255,.25);
    transition: border-color 0.2s;
}
.stack-nav:hover::after { border-color: rgba(255,255,255,.6); }
.stack-nav.prev::after {
    left: 20px; border-width: 0 0 2px 2px;
    transform: translateY(-50%) rotate(45deg);
}
.stack-nav.next::after {
    right: 20px; border-width: 2px 2px 0 0;
    transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 600px) {
    .stack-card { padding: 6px 6px 24px 6px; max-width: 92vw; max-height: 80vh; }
    .stack-card img { max-width: 88vw; max-height: calc(80vh - 30px); }
    .stack-nav::after { display: none; }
}

/* ── BURGER + MOBILE NAV ── */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: inherit;
    z-index: 201;
}

.burger span {
    display: block;
    width: 22px; height: 1.5px;
    background: currentColor;
    transition: transform 0.3s, opacity 0.3s, background 0.3s;
    transform-origin: center;
}

nav.hero-nav .burger span { background: rgba(255,255,255,0.85); }

nav.menu-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
nav.menu-open .burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.menu-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 199;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 36px;
    text-align: center;
}

.mobile-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    transition: opacity 0.2s;
}

.mobile-nav a:hover { opacity: 0.5; }

.mobile-nav .mobile-ig {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.25s;
}

.mobile-nav .mobile-ig svg {
    width: 16px; height: 16px;
    fill: none; stroke: currentColor; stroke-width: 1.5;
}

.mobile-nav .mobile-ig:hover { color: var(--text); }

/* ── ABOUT PAGE ── */
.about-photo {
    float: right;
    width: 220px;
    height: 280px;
    object-fit: cover;
    object-position: center top;
    margin: 4px 0 24px 36px;
    filter: grayscale(100%);
}
@media (max-width: 560px) {
    .about-photo {
        float: none;
        display: block;
        width: 100%;
        height: 260px;
        margin: 0 0 24px 0;
    }
}

.about-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: 0.02em;
    color: var(--text);
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--line);
}

.about-cta {
    margin-top: 48px;
}

.about-cta a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: color 0.25s;
}

.about-cta a:hover { color: var(--text); }

.about-cta span {
    display: inline-block;
    width: 32px; height: 1px;
    background: currentColor;
    transition: width 0.3s;
}

.about-cta a:hover span { width: 52px; }

/* ── SCROLL REVEAL (index sections) ── */
.section-header,
.all-photos-link {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.section-header.reveal,
.all-photos-link.reveal {
    opacity: 1;
    transform: none;
}


/* ── BLOG INDEX ── */
.blog-grid {
    max-width: 720px;
    padding: 48px 56px 80px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--line);
    padding: 32px 0 40px;
}

.blog-card-meta {
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--muted);
    text-transform: uppercase;
}

.blog-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 2px;
}

.blog-card-title a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.25s;
}

.blog-card-title a:hover { color: var(--muted); }

.blog-card-excerpt {
    font-size: 13px;
    line-height: 1.85;
    color: var(--text);
    flex: 1;
}

.blog-card-more {
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

.blog-card-more::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: width 0.3s;
}

.blog-card-more:hover { color: var(--text); }
.blog-card-more:hover::after { width: 42px; }

/* ── BLOG ARTICLE ── */
.blog-article {
    padding: 48px 56px 80px;
    max-width: 720px;
}

.blog-article-meta {
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.blog-article > h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 40px;
}

.blog-article h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 300;
    margin: 40px 0 12px;
    color: var(--text);
}

.blog-article p {
    font-size: 13px;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 16px;
}

.blog-article a { color: var(--muted); transition: color 0.25s; }
.blog-article a:hover { color: var(--text); }

/* ── BLOG INLINE IMAGES ── */
.blog-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px 0;
}

.blog-img-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin: 40px 0;
}

.blog-img-pair img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    display: block;
}
.blog-img-pair img.portrait {
    aspect-ratio: 2/3;
}

/* ── SEYCHELLEN PHOTO GRID ── */
.seychellen-photos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 300px 190px;
    grid-template-areas:
        "a a b"
        "c d e";
    gap: 4px;
    padding: 0 56px 48px;
}

.seychellen-photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.seychellen-photos img:nth-child(1) { grid-area: a; }
.seychellen-photos img:nth-child(2) { grid-area: b; }
.seychellen-photos img:nth-child(3) { grid-area: c; }
.seychellen-photos img:nth-child(4) { grid-area: d; }
.seychellen-photos img:nth-child(5) { grid-area: e; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    nav, .section, .gallery-wrap, footer { padding-left: 28px; padding-right: 28px; }
    .page-header { padding-left: 28px; padding-right: 28px; }
    :root { --row-h: 220px; --row-h-preview: 160px; }
}

@media (max-width: 640px) {
    nav { padding: 18px 20px; }
    .nav-logo { font-size: 12px; letter-spacing: 0.1em; }
    .burger { display: flex; }
    .mobile-nav { display: flex; }
    .section { padding: 56px 12px; }
    .gallery-wrap { padding: 32px 12px 60px; }
    .page-header { padding: 120px 20px 48px; }
    footer { padding: 44px 20px; flex-direction: column; gap: 20px; text-align: center; }
    :root { --row-h: 140px; --row-h-preview: 120px; }
    /* Hauptgalerie auf mobile: Masonry-Columns statt Justified-Flex */
    .gallery-wrap .photo-grid { display: block; columns: 2; column-gap: 3px; }
    .gallery-wrap .photo-item { height: unset !important; flex: none !important; width: 100%; break-inside: avoid; margin-bottom: 3px; display: block; }
    .gallery-wrap .photo-item img { height: auto !important; }
    .hide-sm { display: none; }
    .legal-wrap, .contact-wrap { padding: 32px 20px 60px; }
    .contact-row { flex-direction: column; }
    .blog-grid { padding: 24px 20px 60px; gap: 0; }
    .blog-article { padding: 32px 20px 60px; }
    .seychellen-photos {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px 180px;
        grid-template-areas:
            "a a"
            "b c"
            "d e";
        padding: 0 20px 40px;
    }
    .hero-name { font-size: clamp(26px, 8vw, 40px); letter-spacing: 0.08em; }
    .page-header-title { font-size: clamp(24px, 7vw, 38px); letter-spacing: 0.1em; }
    .footer-logo { font-size: 12px; letter-spacing: 0.14em; }
    .blog-img-pair { grid-template-columns: 1fr; }
    .seo-text-inner { padding: 48px 20px; }
}

/* E-Mail Obfuskierung */
.email-obf { user-select: none; }
.email-obf::before { content: attr(data-u) "\0040" attr(data-d); }
