/* ============================================
   WEINGUT HUMMEL — Design Tokens & Base
   ============================================ */

:root {
    /* Brand Colors */
    --wine:        #722F37;
    --wine-dark:   #5A1A22;
    --wine-light:  #8B3A44;
    --leaf:        #5A7A2E;
    --leaf-light:  #7A9E3E;
    --oak:         #A0815E;
    --oak-light:   #C4A882;
    --oak-dark:    #7A6245;
    --cream:       #FAF7F2;
    --white:       #FFFFFF;
    --warm-gray:   #6B6560;
    --light-gray:  #E8E4DF;
    --dark:        #2C2420;
    --dark-soft:   #3D3530;

    /* Semantic */
    --bg:          var(--white);
    --bg-warm:     var(--cream);
    --text:        var(--dark);
    --text-muted:  var(--warm-gray);
    --accent:      var(--wine);
    --accent-hover: var(--wine-dark);

    /* Typography */
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body:    'DM Sans', -apple-system, sans-serif;

    /* Spacing */
    --space-xs:  0.5rem;
    --space-sm:  1rem;
    --space-md:  1.5rem;
    --space-lg:  2.5rem;
    --space-xl:  4rem;
    --space-2xl: 6rem;
    --space-3xl: 10rem;

    /* Sizing */
    --container: 1200px;
    --nav-h:     72px;

    /* Transitions */
    --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
    --duration:  0.3s;
    --duration-slow: 0.6s;

    /* Radius */
    --radius:    4px;
    --radius-lg: 8px;
}

/* ============================================
   Reset & Base
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: var(--nav-h);
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration) var(--ease);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ============================================
   Navigation
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    transition: background var(--duration-slow) var(--ease),
                box-shadow var(--duration-slow) var(--ease);
}

.nav--scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo-img {
    height: 70px;
    width: auto;
    transition: filter 0.5s ease;
}

.nav:not(.nav--scrolled) .nav__logo-img {
    filter: brightness(0) invert(1);
}

.nav__logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--wine);
}

.nav--hero .nav__logo-text,
.nav:not(.nav--scrolled) .nav__logo-text {
    color: var(--white);
}

.nav__links {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav__links a {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    padding: 0.25rem 0;
}

.nav:not(.nav--scrolled) .nav__links a {
    color: var(--white);
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width var(--duration) var(--ease-out);
}

.nav--scrolled .nav__links a::after {
    background: var(--accent);
}

.nav:not(.nav--scrolled) .nav__links a::after {
    background: var(--white);
}

.nav__links a:hover::after,
.nav__links a:focus-visible::after {
    width: 100%;
}

.nav__lang {
    display: flex;
    gap: 2px;
}

.lang-btn {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius);
    color: var(--text-muted);
    transition: all var(--duration) var(--ease);
}

.nav:not(.nav--scrolled) .lang-btn {
    color: rgba(255,255,255,0.7);
}

.lang-btn.active {
    color: var(--accent);
    font-weight: 600;
}

.nav:not(.nav--scrolled) .lang-btn.active {
    color: var(--white);
}

.lang-btn:hover { color: var(--accent); }

/* Mobile Nav Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all var(--duration) var(--ease);
    transform-origin: center;
}

.nav:not(.nav--scrolled) .nav__toggle span {
    background: var(--white);
}

.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   Hero
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
}

img.hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 2.5s ease, transform 10s ease-out;
}

img.hero__img--active {
    opacity: 1;
    transform: scale(1);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44, 36, 32, 0.4) 0%,
        rgba(44, 36, 32, 0.3) 50%,
        rgba(44, 36, 32, 0.7) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 var(--space-md);
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    opacity: 0.85;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    font-style: italic;
}

.hero__title--quote {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.4;
}

.hero__desc {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 540px;
    margin: 0 auto var(--space-lg);
    opacity: 0.9;
}

.hero__cta-wrap {
    position: relative;
    display: inline-block;
    height: 52px;
}

.hero__cta {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 2.5s ease;
    display: inline-block;
    white-space: nowrap;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border: 1.5px solid rgba(255,255,255,0.6);
    color: var(--white);
    border-radius: var(--radius);
    transition: all var(--duration) var(--ease);
}

.hero__cta--active {
    opacity: 1;
    pointer-events: auto;
}

.hero__cta:hover,
.hero__cta:focus-visible {
    background: var(--white);
    color: var(--wine);
    border-color: var(--white);
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollLine 2s var(--ease) infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 1; }
}

/* ============================================
   Story Section
   ============================================ */

.story {
    background: var(--bg-warm);
}

.story__intro {
    padding: var(--space-3xl) 0 var(--space-xl);
    text-align: center;
}

.story__eyebrow,
.weine__eyebrow,
.weingut__eyebrow,
.kontakt__eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wine);
    margin-bottom: var(--space-sm);
}

.story__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: var(--space-md);
}

.story__text {
    font-size: 1.0625rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Story Journey — Slider */
.story__journey {
    padding: var(--space-lg) 0 var(--space-3xl);
}

.story__slider {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.story__viewport {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.story__track {
    display: flex;
    gap: var(--space-lg);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.story__arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--wine);
    color: var(--white);
    font-size: 1.875rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--duration) var(--ease-out);
}

.story__arrow:hover:not(:disabled) {
    opacity: 0.82;
}

.story__arrow:disabled {
    opacity: 0.2;
    cursor: default;
}

.story__chapters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding: 0 var(--space-md);
}

.story__chapter {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--dark);
    opacity: 0.25;
    background: none;
    border: none;
    border-bottom: 1px solid transparent;
    padding: 0.2rem 0;
    cursor: pointer;
    transition: opacity var(--duration) var(--ease-out),
                color var(--duration) var(--ease-out),
                border-color var(--duration) var(--ease-out);
}

.story__chapter:hover {
    opacity: 0.55;
}

.story__chapter.active {
    opacity: 1;
    color: var(--wine);
    border-bottom-color: var(--wine);
}

.story__card {
    flex-shrink: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(44, 36, 32, 0.06);
    transition: transform var(--duration-slow) var(--ease-out),
                box-shadow var(--duration-slow) var(--ease-out);
}

.story__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(44, 36, 32, 0.1);
}

.story__card-img {
    height: 240px;
    overflow: hidden;
}

.story__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.story__card:hover .story__card-img img {
    transform: scale(1.05);
}

.story__card-content {
    padding: var(--space-md);
}

.story__card-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    color: var(--oak-light);
    display: block;
    margin-bottom: var(--space-xs);
}

.story__card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--dark);
}

.story__card-content p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   Wines Section
   ============================================ */

.weine {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.weine__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    margin-bottom: var(--space-sm);
}

.weine__eyebrow,
.weine__title,
.weine__subtitle,
.weine__note {
    text-align: center;
}

.weine__subtitle {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto var(--space-xl);
}

.weine__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.wein-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--duration-slow) var(--ease-out),
                box-shadow var(--duration-slow) var(--ease-out);
}

.wein-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(114, 47, 55, 0.1);
}

.wein-card__img-wrap {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: var(--light-gray);
}

.wein-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.wein-card:hover .wein-card__img-wrap img {
    transform: scale(1.05);
}

.wein-card__badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.375rem 0.75rem;
    background: var(--wine);
    color: var(--white);
    border-radius: var(--radius);
}

.wein-card__badge--white {
    background: var(--oak-light);
    color: var(--dark);
}

.wein-card__badge--sekt {
    background: var(--oak);
    color: var(--white);
}

.wein-card__badge--rose {
    background: #C4727A;
    color: var(--white);
}

.wein-card__body {
    padding: var(--space-md);
}

.wein-card__name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.wein-card__grape {
    font-size: 0.8125rem;
    color: var(--wine);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.wein-card__desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.wein-card__year {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--oak);
    font-weight: 400;
}

.weine__note {
    margin-top: var(--space-xl);
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================
   Parallax Divider
   ============================================ */

.divider {
    position: relative;
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.divider__img {
    position: absolute;
    inset: -20% 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: var(--oak-dark);
}

@supports (-webkit-touch-callout: none) {
    .divider__img { background-attachment: scroll; }
}

.divider__overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 36, 32, 0.5);
}

.divider__quote {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 640px;
    padding: 0 var(--space-md);
}

.divider__quote p {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: var(--space-sm);
}

.divider__quote cite {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-style: normal;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

/* ============================================
   Estate / Weingut
   ============================================ */

.weingut {
    padding: var(--space-3xl) 0;
    background: var(--bg-warm);
}

.weingut__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.weingut__images {
    position: relative;
}

.weingut__img--main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 36, 32, 0.12);
}

.weingut__img--main img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.weingut__img--secondary {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(44, 36, 32, 0.15);
    border: 4px solid var(--white);
}

.weingut__img--secondary img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.weingut__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.weingut__desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.weingut__details {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--light-gray);
}

.weingut__detail {
    text-align: center;
}

.weingut__detail-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--wine);
    display: inline;
}

.weingut__detail-unit {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--wine);
}

.weingut__detail-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    letter-spacing: 0.05em;
}

/* ============================================
   Press / Stimmen
   ============================================ */

.presse {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.presse__eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wine);
    margin-bottom: var(--space-sm);
    text-align: center;
}

.presse__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: var(--space-xl);
}

.presse__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.presse__quote {
    text-align: center;
    padding: var(--space-lg);
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    transition: box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.presse__quote:hover {
    box-shadow: 0 8px 32px rgba(44, 36, 32, 0.06);
    transform: translateY(-2px);
}

.presse__quote p {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: var(--space-sm);
}

.presse__quote cite {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-style: normal;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

@media (max-width: 768px) {
    .presse__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

/* ============================================
   Contact
   ============================================ */

.kontakt {
    padding: var(--space-3xl) 0;
    background: var(--bg-warm);
}

.kontakt__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.kontakt__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: var(--space-sm);
}

.kontakt__desc {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.kontakt__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.kontakt__detail {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.kontakt__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--wine);
    margin-top: 2px;
}

.kontakt__detail strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.kontakt__detail p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.kontakt__detail a:hover {
    color: var(--wine);
}

/* Form */
.kontakt__form {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44, 36, 32, 0.06);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 0.375rem;
    color: var(--dark-soft);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    background: var(--cream);
    color: var(--text);
    transition: border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.35s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--wine);
    box-shadow: 0 0 0 3px rgba(114, 47, 55, 0.08);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.kontakt__submit {
    width: 100%;
    padding: 1.125rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--wine);
    color: var(--white);
    border: none;
    border-radius: 12px;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
    height: 44px;
    filter: brightness(0) invert(1);
}

.footer__logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--white);
}

.footer__tagline {
    font-size: 0.8125rem;
    margin-top: 0.25rem;
    opacity: 0.5;
}

.footer__links {
    display: flex;
    gap: var(--space-lg);
}

.footer__links a {
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    transition: color var(--duration) var(--ease);
}

.footer__links a:hover {
    color: var(--white);
}

.footer__social {
    display: flex;
    gap: var(--space-sm);
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all var(--duration) var(--ease);
}

.footer__social-link:hover {
    border-color: var(--wine-light);
    color: var(--white);
    background: var(--wine);
}

.footer__bottom {
    padding-top: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8125rem;
    opacity: 0.4;
}

.footer__legal-links {
    display: flex;
    gap: var(--space-md);
}

.footer__legal-links a {
    color: inherit;
    text-decoration: none;
    transition: opacity var(--duration) var(--ease-out);
}

.footer__legal-links a:hover {
    opacity: 0.7;
}

/* ============================================
   Legal Pages (Impressum / Datenschutz)
   ============================================ */

.legal {
    padding: calc(var(--nav-h) + var(--space-3xl)) 0 var(--space-3xl);
    background: var(--bg-warm);
    min-height: 80vh;
}

.legal__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--dark);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(44, 36, 32, 0.1);
}

.legal__content {
    max-width: 780px;
}

.legal__content h2 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--dark);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.legal__content h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--dark);
    margin-top: var(--space-md);
    margin-bottom: var(--space-xs);
}

.legal__content p,
.legal__content address {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
    font-style: normal;
}

.legal__content a {
    color: var(--wine);
    text-decoration: none;
}

.legal__content a:hover {
    text-decoration: underline;
}

.legal__content ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-sm);
}

.legal__content ul li {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.8;
    padding-left: var(--space-sm);
    position: relative;
}

.legal__content ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--wine);
    opacity: 0.5;
}

.legal__block {
    margin-bottom: var(--space-md);
}

.legal__generator {
    margin-top: var(--space-xl);
    font-size: 0.8125rem !important;
    opacity: 0.5;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .weingut__grid {
        gap: var(--space-lg);
    }
    .weingut__img--secondary {
        left: -1rem;
        bottom: -1rem;
    }
}

@media (max-width: 768px) {
    :root { --nav-h: 64px; }

    /* Mobile Nav — fullscreen overlay */
    .nav__toggle { display: flex; }

    .nav__links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: rgba(44, 36, 32, 0.97);
        padding: var(--space-lg);
        gap: var(--space-lg);
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        box-shadow: none;
        z-index: 1000;
    }

    .nav__links.open {
        transform: translateY(0);
    }

    .nav__links a {
        color: var(--cream) !important;
        font-size: 1.5rem;
        font-family: var(--font-heading);
        font-weight: 400;
        letter-spacing: 0.08em;
    }

    .nav__toggle.active span {
        background: var(--white);
    }

    .nav__lang {
        margin-left: 0;
    }

    .nav__links .nav__lang {
        margin-top: var(--space-md);
    }

    .nav__links .nav__lang .lang-btn {
        color: rgba(255,255,255,0.5);
        font-size: 0.875rem;
    }

    .nav__links .nav__lang .lang-btn.active {
        color: var(--white);
    }

    /* Mobile Hero — taller text */
    .hero__title { font-size: 2.5rem; }
    .hero__desc { font-size: 1rem; }



    /* Mobile Story */
    .story__arrow { width: 40px; height: 40px; font-size: 1.5rem; }
    .story__chapters { gap: var(--space-sm); }
    .story__chapter { font-size: 0.9375rem; }

    .story__card-img { height: 180px; }
    .story__card-content { padding: var(--space-sm); }
    .story__card-num { font-size: 1.5rem; }
    .story__card-content h3 { font-size: 1.2rem; }
    .story__card-content p { font-size: 0.8125rem; }

    /* Mobile Weine Teaser — horizontal scroll */
    .weine__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Mobile Weingut — stacked, full width images */
    .weingut__grid,
    .kontakt__grid {
        grid-template-columns: 1fr;
    }

    .weingut__images {
        margin-bottom: var(--space-lg);
    }

    .weingut__img--secondary {
        position: relative;
        bottom: auto;
        left: auto;
        width: 70%;
        margin-top: -3rem;
        margin-right: auto;
    }

    .weingut__details {
        gap: var(--space-lg);
    }

    /* Mobile Kontakt — form first */
    .kontakt__grid {
        display: flex;
        flex-direction: column-reverse;
        gap: var(--space-lg);
    }

    .kontakt__form {
        border-radius: var(--radius-lg);
    }

    /* Mobile Footer — centered stack */
    .footer__inner {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }

    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-sm) var(--space-md);
    }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2.25rem; }
    .hero__cta-wrap { height: 48px; }

    /* Compact arrow on small phones */
    .story__arrow { width: 32px; height: 32px; font-size: 1.25rem; }

    .story__card-img { height: 200px; }

    .wein-card__img-wrap { height: 260px; }

    .divider { min-height: 300px; }

    .kontakt__form { padding: var(--space-md); }

    .weingut__details {
        flex-direction: column;
        gap: var(--space-md);
        align-items: flex-start;
    }

    .weingut__detail {
        text-align: left;
        display: flex;
        align-items: baseline;
        gap: var(--space-xs);
    }

    .weingut__detail-label {
        margin-top: 0;
    }
}

/* ============================================
   Image Carousel — Infinite Scroll
   ============================================ */

.carousel {
    overflow: hidden;
    background: var(--bg-warm);
    padding: var(--space-lg) 0;
}

.carousel__track {
    display: flex;
    gap: var(--space-md);
    width: max-content;
    animation: carousel-slide 60s linear infinite;
}

.carousel__slide {
    flex-shrink: 0;
    width: 400px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

.carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.carousel__slide:hover img {
    transform: scale(1.04);
}

@keyframes carousel-slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .carousel__track { animation: none; }
}

@media (max-width: 768px) {
    .carousel__slide {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .carousel__slide {
        width: 260px;
        height: 260px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .hero__img { transform: scale(1) !important; }
}
