/* ============================================
   Villány Page — Hero
   ============================================ */

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

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

.villany-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.villany-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44, 36, 32, 0.3) 0%,
        rgba(44, 36, 32, 0.5) 100%
    );
}

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

.villany-hero__eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: var(--space-xs);
}

.villany-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: var(--space-sm);
}

.villany-hero__desc {
    font-size: 1.125rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   Content Sections
   ============================================ */

.v-section {
    padding: var(--space-3xl) 0;
}

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

.v-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;
}

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

/* ============================================
   Content Layout (text + sidebar)
   ============================================ */

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

.v-content__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: var(--space-md);
    color: var(--dark);
}

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

.v-content__aside {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    position: sticky;
    top: calc(var(--nav-h) + var(--space-md));
}

.v-fact {
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-warm);
    border-radius: 12px;
    border-left: 3px solid var(--wine);
}

.v-fact__label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.125rem;
}

.v-fact__value {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--dark);
}

/* ============================================
   Terroir Quote
   ============================================ */

.v-quote {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-xl);
    padding: var(--space-lg);
}

.v-quote p {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 400;
    font-style: italic;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: var(--space-xs);
}

.v-quote cite {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-style: normal;
    color: var(--wine);
    letter-spacing: 0.05em;
}

/* ============================================
   Terroir Cards
   ============================================ */

.v-terroir-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.v-terroir-card {
    text-align: center;
    padding: var(--space-lg);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(44, 36, 32, 0.04);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.v-terroir-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(44, 36, 32, 0.06);
}

.v-terroir-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-sm);
    color: var(--wine);
}

.v-terroir-card h3 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--dark);
}

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

.v-terroir-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.v-terroir-text p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-style: italic;
}

/* ============================================
   Grape Varieties
   ============================================ */

.v-grapes {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.v-grapes__heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--light-gray);
}

.v-grapes__heading--rot { color: var(--wine); border-color: var(--wine); }
.v-grapes__heading--weiss { color: var(--oak); border-color: var(--oak); }

.v-grapes__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.v-grape {
    padding: var(--space-md);
    background: var(--bg-warm);
    border-radius: 12px;
    transition: box-shadow 0.3s ease;
}

.v-grape:hover {
    box-shadow: 0 4px 20px rgba(44, 36, 32, 0.05);
}

.v-grape h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: var(--dark);
}

.v-grape h4 span {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.v-grape p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   DHC Grid
   ============================================ */

.v-dhc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.v-dhc {
    padding: var(--space-md);
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--light-gray);
}

.v-dhc h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--wine);
    margin-bottom: 0.375rem;
}

.v-dhc p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   Stimmen / Quotes Grid
   ============================================ */

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

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

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

.v-stimme p {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}

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

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

@media (max-width: 768px) {
    .v-content {
        grid-template-columns: 1fr;
    }

    .v-content__aside {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .v-fact { flex: 1 1 45%; }

    .v-terroir-grid {
        grid-template-columns: 1fr;
    }

    .v-grapes__list {
        grid-template-columns: 1fr;
    }

    .v-dhc-grid {
        grid-template-columns: 1fr;
    }

    .v-stimmen-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}
