/*
Theme Name: Landhaus Paul
Theme URI: https://landhaus-paul.at
Author: Landhaus Paul
Description: Weingut-Theme für Landhaus Paul – charaktervolle Weine aus dem Burgenland, aus Gols am Neusiedlersee. Erstellt alle Seiten automatisch bei Aktivierung, jeder Textblock ist im Editor bearbeitbar, Weine werden über einen eigenen „Weine"-Bereich als Katalog mit Anfrage und PDF-Datenblatt verwaltet (inkl. Platzhalter-Weine).
Version: 2.0.0
Requires at least: 6.2
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: landhaus-paul
Tags: e-commerce, food-and-drink, custom-menu, editor-style, block-styles, wide-blocks
*/

/* ====================================================================
   Design-Tokens (aus dem Figma Corporate Design)
==================================================================== */
:root {
  --lhp-bg: #faf9f6;
  --lhp-fg: #3c3c3b;
  --lhp-card: #ffffff;
  --lhp-beige: #f2efe8;
  --lhp-muted: #ede8dc;
  --lhp-muted-fg: #6f675c;
  --lhp-gold: #b18a48;
  --lhp-border: rgba(177, 138, 72, 0.25);
  --lhp-radius: 20px;
  --lhp-radius-lg: 24px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Spectral', Georgia, serif;
}

/* ====================================================================
   Basis
==================================================================== */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--lhp-bg);
  color: var(--lhp-fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--lhp-fg);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

a { color: var(--lhp-gold); text-decoration: none; transition: color .2s ease; }
a:hover { color: #8f6f3a; }

.lhp-container {
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.lhp-main { display: block; min-height: 60vh; padding-top: 76px; }
.lhp-main > .lhp-container { padding-top: 48px; padding-bottom: 48px; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.skip-link:focus {
  position: fixed !important;
  top: 8px; left: 8px;
  z-index: 200;
  width: auto; height: auto;
  clip: auto;
  background: var(--lhp-fg);
  color: var(--lhp-bg);
  padding: 12px 20px;
  border-radius: 8px;
}

/* ====================================================================
   Header / Navigation
==================================================================== */
.lhp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--lhp-border);
}

.lhp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.lhp-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--lhp-fg);
}

.lhp-brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--lhp-gold);
  color: var(--lhp-fg);
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.lhp-brand-name {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  font-weight: 500;
  line-height: 1.7;
  text-transform: uppercase;
  color: var(--lhp-muted-fg);
}

.lhp-brand-sub { color: var(--lhp-gold); }

.lhp-brand-logo { width: 50px; height: 50px; display: block; }

.lhp-brand .custom-logo { max-height: 50px; width: auto; }

.lhp-nav { display: flex; align-items: center; gap: 8px; }

.lhp-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lhp-nav ul li a {
  display: block;
  padding: 8px 12px;
  color: var(--lhp-fg);
  font-size: 0.95rem;
}

.lhp-nav ul li a:hover,
.lhp-nav ul li.current-menu-item > a,
.lhp-nav ul li.current_page_item > a {
  color: var(--lhp-gold);
}

.lhp-nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--lhp-border);
  border-radius: 10px;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--lhp-fg);
  cursor: pointer;
}

@media (max-width: 920px) {
  .lhp-nav-toggle { display: block; }
  .lhp-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--lhp-bg);
    border-bottom: 1px solid var(--lhp-border);
    padding: 16px 24px 24px;
  }
  .lhp-nav.is-open { display: block; }
  .lhp-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .lhp-nav ul li a { padding: 12px 4px; font-size: 1.05rem; }
}

/* ====================================================================
   Footer
==================================================================== */
.lhp-footer {
  border-top: 1px solid var(--lhp-border);
  margin-top: 96px;
  background: var(--lhp-bg);
}

.lhp-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 56px 0;
}

.lhp-footer h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.lhp-footer-cols > div:first-child h3 { color: var(--lhp-gold); }

.lhp-footer p, .lhp-footer li {
  font-size: 0.9rem;
  color: var(--lhp-muted-fg);
}

.lhp-footer a { color: var(--lhp-muted-fg); }
.lhp-footer a:hover { color: var(--lhp-gold); }

.lhp-footer-bottom {
  border-top: 1px solid var(--lhp-border);
  padding: 28px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--lhp-muted-fg);
}

@media (max-width: 760px) {
  .lhp-footer-cols { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
}

/* ====================================================================
   Inhalts-Bausteine (in Seiteninhalten verwendete Klassen)
==================================================================== */
.lhp-kicker {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: var(--lhp-gold);
  margin-bottom: 12px;
}

.lhp-lead {
  font-size: 1.25rem;
  color: var(--lhp-muted-fg);
  max-width: 640px;
}

p.has-creme-color a { color: var(--lhp-gold); }

.lhp-center { text-align: center; }

.lhp-card {
  background: var(--lhp-card);
  border: 1px solid var(--lhp-border);
  border-radius: var(--lhp-radius);
  padding: 32px !important;
}

.lhp-stat {
  background: var(--lhp-card);
  border: 1px solid var(--lhp-border);
  border-radius: var(--lhp-radius);
  padding: 36px 20px !important;
  text-align: center;
}

.lhp-stat .lhp-stat-zahl {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--lhp-gold);
  line-height: 1.1;
  margin-bottom: 6px;
}

.lhp-stat p:last-child { margin-bottom: 0; color: var(--lhp-muted-fg); }

.lhp-muted, .lhp-muted p { color: var(--lhp-muted-fg); }

/* Icon-Badge (Lucide-Icon im soft-beigen Kreis) */
.lhp-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #EBE3D4;
  color: var(--lhp-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.lhp-icon-badge svg {
  width: 26px;
  height: 26px;
}

.lhp-card .lhp-icon-badge,
.lhp-center .lhp-icon-badge { margin-left: auto; margin-right: auto; }

/* Linksbündige, kleinere Variante (z. B. Kontaktdaten, Technische Details) */
.lhp-icon-badge--inline {
  width: 44px;
  height: 44px;
  margin: 0;
  background: #EBE3D4;
  border: none;
}

.lhp-icon-badge--inline svg { width: 20px; height: 20px; stroke: var(--lhp-gold); }

/* Core-Block-Feinschliff */
.wp-block-image img { border-radius: var(--lhp-radius-lg); }

.wp-block-button__link {
  border-radius: 999px;
  padding: 16px 34px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: opacity .2s ease;
}

.wp-block-button__link:hover { opacity: 0.88; }

.wp-block-cover { border-radius: 0; }

.wp-block-cover .lhp-kicker { color: var(--lhp-gold); }

.wp-block-cover h1, .wp-block-cover h2 { color: var(--lhp-bg); }

/* Seiten-Hero (Vollbild-Hintergrund + Text-Overlay) */
.lhp-page-hero { min-height: 68vh; }
.lhp-page-hero .wp-block-cover__inner-container { max-width: 1300px; width: 100%; margin: 0 auto; padding: 0 40px 8px; box-sizing: border-box; text-align: left; }
.lhp-page-hero .lhp-kicker--light {
  display: inline-block; border-top: 1px solid var(--lhp-gold);
  padding-top: 12px; margin-bottom: 18px;
  color: #d8c39a; letter-spacing: 0.24em; font-size: 0.72rem;
}
.lhp-page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(44px, 6vw, 80px); font-weight: 400; line-height: 1;
  color: #faf9f6; margin: 0 0 14px;
}
.lhp-page-hero p:not(.lhp-kicker--light) {
  color: rgba(250,249,246,0.82); font-weight: 300;
  max-width: 560px; margin: 0; font-size: 1.0625rem;
}
@media (max-width: 860px) {
  .lhp-page-hero { min-height: 52vh; }
  .lhp-page-hero .wp-block-cover__inner-container { padding: 0 22px 8px; }
}

.wp-block-separator {
  border: none;
  border-top: 1px solid var(--lhp-border);
}

/* ====================================================================
   Wein-Katalog ("Unsere Weine")
==================================================================== */
.lhp-wein-filter {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  padding: 22px 0; border-bottom: 1px solid var(--lhp-border);
  background: var(--lhp-bg);
}
  font-size: 0.9rem; color: var(--lhp-muted-fg);
}
.lhp-wein-filter-label { display: inline-flex; align-items: center; gap: 8px; }
.lhp-wein-filter-label svg { width: 18px; height: 18px; }
.lhp-wein-filter label { display: inline-flex; align-items: center; gap: 10px; }
.lhp-wein-filter select {
  padding: 9px 16px; border: 1px solid rgba(197,165,114,0.45); border-radius: 999px;
  background: var(--lhp-bg); font-family: var(--font-body); font-size: 0.9rem;
  color: var(--lhp-fg); cursor: pointer;
}
.lhp-wein-count { margin-left: auto; }

.lhp-wein-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  margin: 56px 0 24px; list-style: none; padding: 0;
}
@media (max-width: 1020px) { .lhp-wein-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px)  { .lhp-wein-grid { grid-template-columns: 1fr; } }

.lhp-wein-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--lhp-card);
  border: 1px solid rgba(177,138,72,0.2);
  border-radius: 22px;
  padding: 34px 22px 30px;
  box-shadow: 0 20px 44px -30px rgba(60,60,59,0.45);
  transition: transform .35s ease, box-shadow .35s ease;
}
.lhp-wein-card:hover { transform: translateY(-7px); box-shadow: 0 30px 54px -26px rgba(60,60,59,0.5); }
.lhp-wein-card.is-hidden { display: none; }
.lhp-wein-card-img { display: block; margin-bottom: 22px; }
.lhp-wein-card-img img {
  height: 270px; width: auto; object-fit: contain; mix-blend-mode: multiply;
  transition: transform .4s ease; border-radius: 0;
}
.lhp-wein-card-img:hover img { transform: scale(1.04); }
.lhp-wein-noimg { display: block; width: 90px; height: 280px; margin: 0 auto; background: linear-gradient(180deg,#e8e3d8,#d8d2c4); border-radius: 6px; }
.lhp-wein-sorte { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lhp-gold); margin-bottom: 8px; }
.lhp-wein-name { font-family: var(--font-heading); font-size: 1.55rem; font-weight: 500; margin: 0; line-height: 1.2; }
.lhp-wein-name a { color: var(--lhp-fg); }
.lhp-wein-name a:hover { color: var(--lhp-gold); }
.lhp-wein-jahr { font-size: 0.9rem; color: var(--lhp-gold); margin: 8px 0 22px; }
.lhp-wein-more {
  margin-top: auto; background: var(--lhp-fg); color: var(--lhp-bg);
  padding: 13px 30px; border-radius: 999px; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; transition: background .2s, color .2s;
}
.lhp-wein-more:hover { background: var(--lhp-gold); color: var(--lhp-fg); }

/* ====================================================================
   Wein-Detail
==================================================================== */
.lhp-woo .lhp-container { padding-top: 48px; padding-bottom: 72px; }
.lhp-wein-back { display: inline-block; font-size: 0.9rem; color: var(--lhp-gold); margin-bottom: 40px; }
.lhp-wein-detail { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: start; }
@media (max-width: 840px) { .lhp-wein-detail { grid-template-columns: 1fr; gap: 40px; } }
.lhp-wein-detail-img { display: flex; justify-content: center; padding-top: 8px; }
.lhp-wein-detail-img img { height: 520px; width: auto; object-fit: contain; mix-blend-mode: multiply; }
.lhp-wein-detail-img .lhp-wein-noimg { height: 520px; width: 150px; }
.lhp-wein-detail-region { display: inline-flex; align-items: center; gap: 6px; text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.72rem; color: var(--lhp-gold); margin-bottom: 16px; }
.lhp-wein-detail-region svg { width: 15px; height: 15px; }
.lhp-wein-detail-title { font-family: var(--font-heading); font-size: clamp(2.2rem,4vw,3.2rem); font-weight: 500; margin: 0 0 18px; line-height: 1.05; }
.lhp-wein-detail-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.lhp-wein-badge { background: #EBE3D4; color: var(--lhp-muted-fg); border-radius: 999px; padding: 7px 18px; font-size: 0.9rem; }
.lhp-wein-detail-meta .lhp-wein-jahr { margin: 0; color: var(--lhp-muted-fg); font-size: 0.95rem; }
.lhp-wein-detail-desc { color: var(--lhp-muted-fg); font-size: 1.05rem; line-height: 1.7; margin: 0 0 32px; max-width: 540px; }
.lhp-wein-detail-desc p { margin: 0 0 1em; }
.lhp-wein-sep { border: none; border-top: 1px solid var(--lhp-border); margin: 0 0 28px; }
.lhp-wein-tech-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 500; margin: 0 0 22px; }
.lhp-wein-tech { display: flex; flex-direction: column; gap: 18px; margin-bottom: 40px; }
.lhp-wein-tech-row { display: flex; align-items: center; gap: 16px; }
.lhp-wein-tech-label { font-size: 0.8rem; color: #9A8C7A; }
.lhp-wein-tech-value { font-size: 1rem; color: var(--lhp-fg); }
.lhp-wein-inquiry { background: var(--lhp-beige); border: 1px solid var(--lhp-border); border-radius: var(--lhp-radius); padding: 30px; }
.lhp-wein-inquiry h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 500; margin: 0 0 10px; }
.lhp-wein-inquiry p { color: var(--lhp-muted-fg); font-size: 0.95rem; margin: 0 0 22px; }
.lhp-btn-gold { display: inline-flex; align-items: center; gap: 10px; background: var(--lhp-gold); color: var(--lhp-fg); padding: 14px 28px; border-radius: 999px; font-size: 0.9rem; transition: opacity .2s; }
.lhp-btn-gold:hover { opacity: 0.88; color: var(--lhp-fg); }
.lhp-btn-gold svg { width: 16px; height: 16px; }
.lhp-wein-inquiry-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.lhp-btn-dark { display: inline-flex; align-items: center; gap: 10px; background: var(--lhp-fg); color: var(--lhp-bg); padding: 14px 28px; border-radius: 999px; font-size: 0.9rem; transition: opacity 0.2s, background 0.2s; }
.lhp-btn-dark:hover { background: var(--lhp-gold); color: var(--lhp-fg); }
.lhp-btn-dark svg { width: 16px; height: 16px; }

/* ====================================================================
   Kontakt - Oeffnungszeiten & Anfrageformular (Contact Form 7)
==================================================================== */
.lhp-contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
@media (max-width: 840px) { .lhp-contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.lhp-contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.lhp-contact-item h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 500; margin: 0 0 4px; }
.lhp-contact-item p { margin: 0; color: var(--lhp-muted-fg); }
.lhp-contact-item a { color: var(--lhp-gold); }
.lhp-hours { display: flex; flex-direction: column; gap: 12px; max-width: 420px; }
.lhp-hours-row { display: flex; justify-content: space-between; gap: 24px; color: var(--lhp-muted-fg); }
.lhp-hours-row span:last-child { color: var(--lhp-fg); }
.lhp-hours-note { color: var(--lhp-gold); font-size: 0.95rem; margin-top: 18px; }

.lhp-contact-card { background: #fff; border: 1px solid var(--lhp-border); border-radius: var(--lhp-radius); padding: 36px; }
.lhp-contact-card h3 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 500; margin: 0 0 24px; }

/* Contact Form 7 an das Design angepasst */
.lhp-form label,
.wpcf7 .lhp-form label { display: block; font-size: 0.9rem; color: var(--lhp-fg); margin-bottom: 18px; }
.lhp-form input[type=text],
.lhp-form input[type=email],
.lhp-form input[type=tel],
.lhp-form select,
.lhp-form textarea {
  width: 100%; box-sizing: border-box; margin-top: 8px;
  padding: 14px 16px; border: 1px solid rgba(197,165,114,0.35);
  border-radius: 10px; background: var(--lhp-bg);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--lhp-fg);
}
.lhp-form textarea { resize: vertical; min-height: 130px; }
.lhp-form input[type=submit],
.lhp-form .wpcf7-submit {
  background: var(--lhp-gold); color: var(--lhp-fg); border: none;
  padding: 16px 30px; border-radius: 999px; font-family: var(--font-body);
  font-size: 0.95rem; cursor: pointer; transition: opacity .2s;
}
.lhp-form input[type=submit]:hover,
.lhp-form .wpcf7-submit:hover { opacity: 0.88; }

/* 3-spaltige Variante („Weitere Weine“) */
.lhp-wein-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1020px) { .lhp-wein-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .lhp-wein-grid--3 { grid-template-columns: 1fr; } }

.lhp-wein-related { margin-top: 96px; border-top: 1px solid var(--lhp-border); padding-top: 64px; }
.lhp-wein-related > h2 { text-align: center; margin-bottom: 8px; }

/* ====================================================================
   404
==================================================================== */
.lhp-404 { text-align: center; padding-top: 64px; padding-bottom: 32px; }
.lhp-404-actions { display: flex; justify-content: center; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

/* Fallback-/Hinweis-Box */
.lhp-woo-missing {
  background: var(--lhp-beige); border: 1px solid var(--lhp-border);
  border-radius: var(--lhp-radius); padding: 32px; text-align: center;
}
.lhp-woo-missing .button { display: inline-block; margin-top: 12px; }

/* ====================================================================
   "Unsere Weine" – Kopf mit Esel-Bogen + halber Esel an der Galerie
==================================================================== */
.lhp-weine-head { background: var(--lhp-beige); }
.lhp-weine-head-inner {
  max-width: 1300px; margin: 0 auto; padding: 84px 40px 80px;
  display: grid; grid-template-columns: 1fr auto; gap: 56px; align-items: center;
}
.lhp-weine-head-text h1 {
  font-family: var(--font-heading); font-weight: 400;
  font-size: clamp(44px, 6vw, 72px); line-height: 1; margin: 0 0 16px;
}
.lhp-weine-head-lead { font-size: 1.125rem; color: var(--lhp-muted-fg); max-width: 600px; margin: 0; font-weight: 300; }
.lhp-weine-arch {
  position: relative; width: 250px; height: 360px; flex: 0 0 auto;
  border-radius: 125px 125px 22px 22px; overflow: hidden;
  background: radial-gradient(118% 78% at 50% 26%, #ffffff 0%, #e9e2d3 100%);
  border: 1px solid rgba(177,138,72,0.5);
  box-shadow: 0 34px 60px -34px rgba(60,60,59,0.45);
}
.lhp-weine-arch img {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  height: 99%; width: auto; object-fit: contain;
}
.lhp-weine-gallery { position: relative; overflow: hidden; }
.lhp-weine-gallery .lhp-esel-half {
  position: absolute; right: 0; top: 54%; transform: translate(46%, -50%);
  height: 78%; width: auto; opacity: 0.42; pointer-events: none; z-index: 0;
}
.lhp-weine-gallery .lhp-wein-filter,
.lhp-weine-gallery .lhp-wein-grid { position: relative; z-index: 1; }
@media (max-width: 860px) {
  .lhp-weine-head-inner { grid-template-columns: 1fr; padding: 56px 22px 40px; }
  .lhp-weine-arch { display: none; }
  .lhp-weine-gallery .lhp-esel-half { display: none; }
}

/* ====================================================================
   Hero (Startseite) – Video + Esel
==================================================================== */
.lhp-hero {
  position: relative; min-height: 92vh; overflow: hidden;
  display: flex; align-items: center; background: #232220;
}
.lhp-hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; pointer-events: none;
}
.lhp-hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(120deg, rgba(35,34,32,0.82) 0%, rgba(40,39,37,0.5) 48%, rgba(40,39,37,0.22) 100%);
}
.lhp-hero-esel {
  position: absolute; right: 3%; bottom: 3%; z-index: 2;
  height: 82%; width: auto; max-width: 40%;
  object-fit: contain; object-position: bottom;
  opacity: 0.97; pointer-events: none;
  filter: drop-shadow(0 18px 48px rgba(0,0,0,0.5));
}
.lhp-hero-inner {
  position: relative; z-index: 3;
  max-width: 1300px; width: 100%; margin: 0 auto;
  padding: 0 40px; box-sizing: border-box;
}
.lhp-hero-inner > * { max-width: 600px; }
.lhp-hero-kicker {
  display: inline-block; border-top: 1px solid var(--lhp-gold);
  padding-top: 11px; margin-bottom: 22px;
  text-transform: uppercase; letter-spacing: 0.24em;
  font-size: 11px; font-weight: 600; color: #d8c39a;
}
.lhp-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 5.4vw, 80px); font-weight: 400;
  color: #faf9f6; margin: 0 0 26px; line-height: 1.07; letter-spacing: -0.005em;
}
.lhp-hero-title em { font-style: italic; font-weight: 400; color: var(--lhp-gold); }
.lhp-hero-lead {
  font-size: 18px; color: rgba(250,249,246,0.74);
  margin: 0 0 36px; max-width: 470px; font-weight: 300; line-height: 1.85;
}
.lhp-hero-cta { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; max-width: none; }
.lhp-hero-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--lhp-gold); color: #3c3c3b; border-radius: 999px;
  padding: 16px 36px; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.lhp-hero-btn:hover { background: #faf9f6; color: #3c3c3b; }
.lhp-hero-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: #faf9f6; font-size: 13px; letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(250,249,246,0.4); padding-bottom: 3px;
}
.lhp-hero-link:hover { border-color: var(--lhp-gold); color: #faf9f6; }
@media (max-width: 860px) {
  .lhp-hero { min-height: 72vh; }
  .lhp-hero-esel { height: auto; width: 56%; max-width: 260px; right: 0; bottom: 6px; opacity: 0.9; }
  .lhp-hero-inner { padding: 0 22px; }
  .lhp-hero-title { font-size: clamp(34px, 9vw, 52px); }
}
@media (max-width: 680px) {
  .lhp-hero-cta { flex-direction: column-reverse; align-items: flex-start; gap: 18px; }
}

/* Dekorative Trauben-Aquarelle */
.lhp-deco { position: relative; overflow: hidden; }
.lhp-deco-grape {
  position: absolute; top: -40px; width: 360px;
  opacity: 0.5; pointer-events: none; z-index: 0;
}
.lhp-deco-grape--white { left: -30px; transform: rotate(-6deg); width: 396px; }
.lhp-deco-grape--red   { right: -34px; transform: rotate(8deg); }
.lhp-deco > * { position: relative; z-index: 1; }
@media (max-width: 820px) {
  .lhp-deco-grape { width: 200px !important; opacity: 0.4; }
  .lhp-deco-grape--white { width: 220px !important; }
}

/* Wein-Card: Etikett-Einblendung bei Hover */
.lhp-wein-card { position: relative; overflow: hidden; }
.lhp-wein-card-etikett {
  position: absolute; left: 16px; right: 16px; top: 16px; bottom: 80px;
  border-radius: 14px;
  background: linear-gradient(160deg, #faf8f1, #ece2cd);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.45s ease; pointer-events: none; padding: 20px;
}
.lhp-wein-card:hover .lhp-wein-card-etikett { opacity: 1; }
.lhp-wein-card-etikett::before {
  content: ""; position: absolute; inset: 9px;
  border: 1px solid rgba(177,138,72,0.5); border-radius: 9px; pointer-events: none;
}
.lhp-etikett-brand { font-family: var(--font-heading); font-size: 11px; letter-spacing: 0.28em; color: var(--lhp-gold); text-transform: uppercase; }
.lhp-etikett-esel { height: 88px; width: auto; object-fit: contain; margin: 12px auto 10px; display: block; }
.lhp-etikett-name { font-family: var(--font-heading); font-size: 22px; color: var(--lhp-fg); line-height: 1.1; }
.lhp-etikett-rule { width: 34px; height: 1px; background: var(--lhp-gold); margin: 10px auto; }
.lhp-etikett-sub { font-size: 9px; letter-spacing: 0.3em; color: var(--lhp-muted-fg); text-transform: uppercase; }
.lhp-etikett-region { font-size: 8.5px; letter-spacing: 0.22em; color: var(--lhp-muted-fg); text-transform: uppercase; margin-top: 5px; }
.lhp-wein-card .lhp-wein-name, .lhp-wein-card .lhp-btn-dark, .lhp-wein-card .lhp-wein-meta { position: relative; z-index: 2; }

