/* =============================================
   SAM'S WEINGALERIE — Main Stylesheet
   ============================================= */

:root {
    --bg:           #0e0608;
    --bg-2:         #160b0d;
    --red:          #8b1a1a;
    --red-light:    #b52a2a;
    --gold:         #c8a96e;
    --gold-light:   #e2c98e;
    --text:         #f0e8e0;
    --text-muted:   #9a8a7e;
    --border:       rgba(200,169,110,0.15);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Outfit', system-ui, sans-serif;

    --nav-h: 80px;
    --transition: 0.65s cubic-bezier(0.76, 0, 0.24, 1);
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display:block; width:100%; height:100%; object-fit:cover; }

/* ── Scrollbar (desktop) ───────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 1000;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar.scrolled {
    background: rgba(14,6,8,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

/* Logo */
.logo { display:flex; align-items:center; gap:0.6rem; cursor:pointer; }
.logo-icon { font-size:2rem; color:var(--gold); line-height:1; }
.logo-text { display:flex; flex-direction:column; line-height:1.1; }
.logo-part-1 { font-family:var(--font-body); font-size:0.6rem; font-weight:600; letter-spacing:3px; color:var(--gold-light); }
.logo-part-2 { font-family:var(--font-body); font-size:0.55rem; font-weight:300; letter-spacing:2px; color:var(--text-muted); }

/* Nav links */
.nav-links { display:flex; gap:2rem; }
.nav-item {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
}
.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.nav-item:hover, .nav-item.active { color: var(--gold); }
.nav-item:hover::after, .nav-item.active::after { width: 100%; }

/* Phone */
.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.nav-phone svg { color: var(--gold); flex-shrink:0; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   PAGE SECTIONS (Slide-in system)
   ============================================= */
.page-section {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    overflow-y: auto;
    background: var(--bg);

    /* Start state: below viewport */
    transform: translateY(100%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    z-index: 1;
    will-change: transform, opacity;
}

/* Active (visible) section */
.page-section.active {
    transform: translateY(0);
    opacity: 1;
    z-index: 2;
}

/* Outgoing section (slides up/away) */
.page-section.leaving {
    transform: translateY(-6%);
    opacity: 0;
    z-index: 3;
    pointer-events: none;
}

/* =============================================
   HERO SECTION
   ============================================= */
#section-home {
    display: block;
    overflow-y: auto;
}

/* Hero viewport: first screen, image lives here and scrolls away with it */
.hero-viewport {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    z-index: 0;
    -webkit-mask-image: radial-gradient(ellipse 110% 80% at 55% 30%, black 40%, transparent 85%);
    mask-image: radial-gradient(ellipse 110% 80% at 55% 30%, black 40%, transparent 80%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,4,6,0.92) 0%,
        rgba(10,4,6,0.55) 45%,
        rgba(10,4,6,0.15) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: calc(var(--nav-h) + 5rem) 7% 2rem;
    max-width: 900px;
    /* entrance animation */
    animation: heroReveal 1.2s cubic-bezier(0.22,1,0.36,1) both;
    animation-delay: 0.2s;
}

@keyframes heroReveal {
    from { opacity:0; transform:translateY(30px); }
    to   { opacity:1; transform:translateY(0); }
}

.welcome-text {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}
.welcome-text strong { color: var(--gold-light); font-weight: 500; }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7.5rem);
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: -1px;
    color: rgba(240,232,224,0.92);
    margin-bottom: 2.5rem;
}
.hero-title .text-highlight {
    color: rgba(200,169,110,0.75);
    font-style: italic;
}

.hero-cta { margin-top: 0.5rem; }

/* Info Bar */
.info-bar {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2rem 7%;
    border-top: 1px solid var(--border);
    background: linear-gradient(to top, rgba(10,4,6,0.95), rgba(10,4,6,0.6));
}
.info-item { display:flex; flex-direction:column; gap:0.4rem; min-width:140px; }
.info-icon {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
}
.info-icon svg { color: var(--gold); flex-shrink:0; }
.info-item p { font-size: 0.8rem; line-height: 1.55; color: var(--text); }
.info-action { display:flex; align-items:center; }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
    display: inline-block;
    background: var(--red);
    color: #fff;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease;
}
.btn-primary:hover {
    background: var(--red-light);
    transform: translateY(-1px);
}
.btn-primary.full-width { width: 100%; text-align: center; }

/* =============================================
   SHARED INNER SECTION LAYOUT
   ============================================= */
.inner-section {
    padding: calc(var(--nav-h) + 4rem) 7% 4rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 3rem;
}
.section-heading em {
    font-style: italic;
    color: var(--gold-light);
}

/* =============================================
   SORTIMENT – CARDS
   ============================================= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5px;
    flex: 1;
}
.card {
    background: var(--bg-2);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    transition: border-color 0.3s, background 0.3s;
}
.card:hover {
    border-color: var(--gold);
    background: rgba(139,26,26,0.08);
}
.card-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--border);
    line-height: 1;
    margin-bottom: 1rem;
}
.card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 0.8rem;
}
.card p { font-size: 0.85rem; line-height: 1.65; color: var(--text-muted); }

/* =============================================
   ÜBER UNS – SPLIT
   ============================================= */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}
.about-image { overflow: hidden; }
.about-image img { height: 100%; width: 100%; object-fit: cover; }
.about-text {
    padding: calc(var(--nav-h) + 3rem) 6% 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-2);
}
.about-text p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 440px;
}
.about-text .btn-primary { align-self: flex-start; }

/* =============================================
   AKTUELLES – NEWS
   ============================================= */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 1px;
    flex: 1;
}
.news-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.3s;
}
.news-card:hover { border-color: var(--gold); }
.news-card.featured { background: rgba(139,26,26,0.12); border-color: var(--red); }
.news-date {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}
.news-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text);
}
.news-card p { font-size:0.82rem; line-height:1.7; color:var(--text-muted); flex:1; }
.link-arrow {
    font-size: 0.75rem;
    color: var(--gold);
    cursor: pointer;
    transition: letter-spacing 0.3s;
}
.link-arrow:hover { letter-spacing: 2px; }

/* =============================================
   GALERIE
   ============================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    grid-auto-flow: row dense;
    gap: 6px;
    flex: 1;
}
.gallery-item { overflow:hidden; background:var(--bg-2); border-radius: 6px; }
.gallery-item img { transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* =============================================
   KONTAKT – SPLIT
   ============================================= */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}
.contact-info {
    padding: calc(var(--nav-h) + 3rem) 6% 4rem;
    background: var(--bg-2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-details { display:flex; flex-direction:column; gap:2rem; margin-top: 1rem; }
.contact-row { display:flex; flex-direction:column; gap:0.4rem; }
.contact-row strong {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}
.contact-row p, .contact-row a {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
}
.contact-row a:hover { color: var(--gold-light); }

.contact-form-area {
    padding: calc(var(--nav-h) + 3rem) 6% 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
}
.contact-form-area h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}
.form-group { display:flex; flex-direction:column; }
.form-input {
    background: var(--bg-2);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.85rem;
    padding: 0.9rem 1.2rem;
    outline: none;
    resize: vertical;
    transition: border-color 0.3s;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus { border-color: var(--gold); }

/* =============================================
   SECTION ENTRANCE ANIMATIONS
   ============================================= */
.page-section.active .inner-section,
.page-section.active .about-split,
.page-section.active .contact-split {
    animation: sectionFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) both;
    animation-delay: 0.2s;
}
@keyframes sectionFadeUp {
    from { opacity:0; transform:translateY(24px); }
    to   { opacity:1; transform:translateY(0); }
}

/* =============================================
   HOMEPAGE SCROLL CONTENT
   ============================================= */
.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--gold-light);
    border: 1px solid var(--gold);
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.3s, color 0.3s;
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--bg);
}

/* Story teaser */
.home-story {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 7%;
    background: var(--bg);
}
.home-story-text p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 460px;
}
.home-story-image {
    height: 420px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 6px;
}
.home-story-image img { transition: transform 0.8s ease; }
.home-story-image:hover img { transform: scale(1.04); }

/* Stats */
.home-stats {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 7%;
    background: var(--bg);
}
.stat {
    text-align: center;
    padding: 3rem 1rem;
    border: 1px solid var(--border);
    background: var(--bg-2);
}
.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.6rem;
}
.stat-number::after { content: '+'; color: var(--red-light); }
.stat-label {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Process */
.home-process {
    position: relative;
    z-index: 10;
    padding: 6rem 7%;
    background: var(--bg);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 1rem;
}
.process-step { position: relative; padding-top: 1rem; }
.process-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(200,169,110,0.18);
    position: absolute;
    top: -1.5rem;
    left: 0;
    line-height: 1;
}
.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 0.8rem;
    position: relative;
}
.process-step p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-muted);
    position: relative;
}

/* Quote */
.home-quote {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 6rem 7%;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.home-quote .quote-mark {
    display: block;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--red);
    line-height: 1;
    margin-bottom: 1rem;
}
.home-quote blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-style: italic;
    font-weight: 300;
    color: var(--text);
    margin-bottom: 1.5rem;
}
.home-quote cite {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-style: normal;
    color: var(--gold);
}

/* Home Weinwissen */
.home-wein {
    position: relative;
    z-index: 10;
    padding: 6rem 7%;
    background: var(--bg);
}
.home-wein-head { margin-bottom: 3rem; max-width: 640px; }
.home-wein-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Home CTA */
.home-cta {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 6rem 7% 8rem;
    background: var(--bg);
}
.home-cta .section-heading { margin-bottom: 2.5rem; }
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   WEINWISSEN
   ============================================= */
.wein-intro p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 640px;
    margin-bottom: 3.5rem;
}
.wein-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
}
.wein-block {
    background: var(--bg-2);
    border: 1px solid var(--border);
    padding: 2.5rem 2.2rem;
    transition: border-color 0.3s;
}
.wein-block:hover { border-color: var(--gold); }
.wein-block h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 1rem;
}
.wein-block p {
    font-size: 0.85rem;
    line-height: 1.75;
    color: var(--text-muted);
}
.wein-cta {
    text-align: center;
    margin-top: 4rem;
}
.wein-cta p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1),
                transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slight rounding on form fields to match buttons */
.form-input { border-radius: 6px; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    position: relative;
    z-index: 10;
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 4rem 7% 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}
.footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
}
.footer-brand .logo-icon { font-size: 1.8rem; color: var(--gold); }
.footer-brand span:last-child {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text);
}
.footer-col p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--text-muted);
}
.footer-col strong {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}
.footer-col a {
    font-size: 0.82rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
    width: fit-content;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding-top: 1.5rem;
}
.footer-bottom p {
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

/* =============================================
   LEGAL PAGES (Impressum / Datenschutz)
   ============================================= */
.legal-content { max-width: 720px; }
.legal-note {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--gold);
    background: rgba(200,169,110,0.07);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1rem 1.2rem;
    margin-bottom: 2.5rem;
}
.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--gold-light);
    margin: 2rem 0 0.6rem;
}
.legal-content p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--text-muted);
}
.legal-content .btn-outline { margin-top: 2.5rem; }

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
    .news-grid { grid-template-columns: 1fr; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
    }
    .gallery-item.tall { grid-row: span 1; }
    .gallery-item.wide { grid-column: 1 / -1; }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 768px) {
    :root { --nav-h: 64px; }

    /* Hamburger visible */
    .hamburger { display:flex; }
    .nav-phone  { display:none; }

    /* Nav overlay */
    .nav-links {
        position: fixed;
        inset: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        background: rgba(10,4,6,0.97);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 1050;
        /* hidden by default */
        clip-path: circle(0% at calc(100% - 40px) 32px);
        transition: clip-path 0.5s cubic-bezier(0.76,0,0.24,1);
        pointer-events: none;
    }
    .nav-links.open {
        clip-path: circle(150% at calc(100% - 40px) 32px);
        pointer-events: all;
    }
    .nav-item {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    /* Hero */
    .hero-content { padding: calc(var(--nav-h) + 5rem) 6% 1.5rem; }
    .hero-title { font-size: clamp(2.4rem, 10vw, 4rem); }

    /* Info bar stacked */
    .info-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 1.5rem 6%;
    }
    .info-action { width:100%; }
    .info-action .btn-primary { width:100%; text-align:center; }

    /* About / Contact split → single column */
    .about-split { grid-template-columns: 1fr; }
    .about-image { height: 240px; }
    .about-text { padding: 2rem 6%; }

    .contact-split { grid-template-columns: 1fr; }
    .contact-info { padding: calc(var(--nav-h) + 2rem) 6% 2rem; }
    .contact-form-area { padding: 2rem 6% 3rem; }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
    }
    .gallery-item, .gallery-item.tall, .gallery-item.wide {
        grid-column: auto;
        grid-row: auto;
    }

    /* Cards single column */
    .cards-grid { grid-template-columns: 1fr; }

    /* Inner section padding */
    .inner-section { padding: calc(var(--nav-h) + 2rem) 6% 3rem; }

    /* Section heading */
    .section-heading { font-size: clamp(1.8rem, 7vw, 2.5rem); }

    /* New homepage content */
    .home-story {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 4rem 6%;
    }
    .home-story-image { height: 260px; }
    .home-stats { grid-template-columns: repeat(3, 1fr); padding: 0 6%; }
    .stat { padding: 1.6rem 0.4rem; }
    .stat-number { font-size: 1.7rem; }
    .stat-label { font-size: 0.55rem; letter-spacing: 1px; }
    .home-process { padding: 4rem 6%; }
    .process-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .home-quote { padding: 4rem 6%; }
    .home-wein { padding: 4rem 6%; }
    .home-cta { padding: 4rem 6% 6rem; }
    .cta-buttons { flex-direction: column; align-items: stretch; }

    /* Weinwissen */
    .wein-grid { grid-template-columns: 1fr; }

    /* Footer */
    .site-footer { padding: 3rem 6% 1.5rem; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .hero-title { font-size: clamp(2rem, 11vw, 3rem); }
    .btn-primary { padding: 0.8rem 1.5rem; font-size: 0.65rem; }
}