/* ============================================
   MALOJER GUMMERHOF — main.css
   ============================================ */

/* FONTS */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* VARIABLES */
:root {
  --cream:        #F7F3EE;
  --cream-dark:   #EDE7DC;
  --gold:         #B8924A;
  --gold-light:   #D4AD6E;
  --anthrazit:    #2A2520;
  --anthrazit-mid:#4A4540;
  --rot:          #7A1E1E;
  --gruen:        #4A6B2A;
  --text-muted:   #8A7F72;
  --border:       rgba(42,37,32,0.12);
  --nav-height:   64px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* BASE */
body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--anthrazit);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: var(--nav-height);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--anthrazit);
}
.nav-logo-sub {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--anthrazit);
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-lang {
  display: flex;
  gap: 12px;
  align-items: center;
}
.nav-lang a {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: color 0.2s;
  font-weight: 400;
}
.nav-lang a.active {
  color: var(--anthrazit);
  font-weight: 500;
}
.nav-lang a:hover { color: var(--anthrazit); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--anthrazit);
  transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--nav-height));
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.55;
  mix-blend-mode: luminosity;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,21,16,0.92) 0%,
    rgba(26,21,16,0.5) 45%,
    rgba(26,21,16,0.05) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 80px;
  max-width: 600px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 80px;
  max-width: 600px;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.9;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.75);
  margin-bottom: 32px;
  font-weight: 300;
}

.hero-since {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(247,243,238,0.5);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-since::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

/* ============================================
   SECTION SHARED
   ============================================ */
.section-label {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ============================================
   AKTUELLES
   ============================================ */
.section-aktuelles {
  background: var(--cream-dark);
  padding: 80px 64px;
}

.aktuelles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.aktuelle-card {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.aktuelle-card:hover { border-color: var(--gold); }
.aktuelle-card.award { border-color: rgba(184,146,74,0.4); }

.aktuelle-type {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.aktuelle-card.award .aktuelle-type { color: var(--gold); }

.aktuelle-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--anthrazit);
  margin-bottom: 12px;
}

.aktuelle-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
}

.award-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  color: var(--gold);
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

/* ============================================
   SORTIMENT / KATEGORIEN
   ============================================ */
.section-sortiment {
  padding: 100px 64px;
  background: var(--cream);
}

.sortiment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.sortiment-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1;
  color: var(--anthrazit);
}

.sortiment-link {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.sortiment-link:hover { opacity: 0.7; }

.kategorie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.kategorie-card {
  position: relative;
  height: 440px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(0,0,0,0.08);
}

.kat-bg {
  position: absolute;
  inset: 0;
  background: var(--cream);
}

.kat-bottle {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 110px;
  padding-top: 0px;
}

.kat-bottle img {
  height: 92%;
  width: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.12));
}

.kategorie-card:hover .kat-bottle img {
  transform: translateY(-8px) scale(1.03);
}

.kat-bg-rot,
.kat-bg-weiss,
.kat-bg-riserva { background: #e2ddd8; }

.kat-content {
  position: relative;
  z-index: 2;
  padding: 40px 36px;
  background: linear-gradient(to top, rgba(247,243,238,0.95) 0%, transparent 100%);
}

.kat-eyebrow {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.kat-eyebrow-rot    { color: var(--anthrazit); }
.kat-eyebrow-weiss  { color: var(--anthrazit); }
.kat-eyebrow-riserva{ color: var(--gold); }

.kat-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--anthrazit);
  line-height: 1;
  margin-bottom: 4px;
}

.kat-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.4);
  font-size: 14px;
  transition: all 0.3s;
}
.kategorie-card:hover .kat-arrow {
  border-color: var(--anthrazit);
  color: var(--anthrazit);
}

/* ============================================
   ÜBER UNS (Startseite Teaser)
   ============================================ */
.section-ueber {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.ueber-bild {
  background: linear-gradient(135deg, #2a2520 0%, #3d2e1a 100%);
  position: relative;
  overflow: hidden;
}

.ueber-bild img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.ueber-logo-deco {
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px;
  font-weight: 300;
  color: rgba(184,146,74,0.08);
  line-height: 1;
  letter-spacing: -0.05em;
  user-select: none;
}

.ueber-1480 {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  opacity: 0.4;
  bottom: 40px;
  left: 40px;
}

/* Basis */
.ueber-text {
  padding: 48px 64px 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Home Über uns Teaser */
.ueber-text--hell {
  background: var(--cream-dark);
}

/* Home Vino Teaser */
.ueber-text--dunkel {
  background: var(--anthrazit);
}

/* Über uns Seite */
.ueber-text--seite {
  background: var(--cream-dark);
}

.ueber-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--anthrazit);
}

.ueber-text--dunkel h2 {
  color: var(--cream);
}

.ueber-text .vino-intro-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--anthrazit);
}

.ueber-text--dunkel .vino-intro-text {
  color: rgba(247,243,238,0.8);
}

.ueber-body-text p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--anthrazit-mid);
  margin-bottom: 1.2em;
}

.ueber-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
}

.ueber-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.ueber-stat-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   UEBER AWARDS
   ============================================ */
.ueber-awards {
  background: var(--cream);
  padding: 80px 64px;
}

   .award-card {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  padding: 32px 24px;
  position: relative;
  transition: border-color 0.3s;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.award-card:hover {
  border-color: var(--gold);
}

.award-flasche {
  height: 160px;
  width: auto;
  object-fit: contain;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.award-name {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.award-wein {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--anthrazit);
  margin-bottom: 8px;
  line-height: 1.2;
}

.award-ergebnis {
  font-size: 13px;
  color: var(--text-muted);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}

.award-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.award-link:hover {
  opacity: 1;
}

/* ============================================
   UEBER SLIDER
   ============================================ */
.ueber-slider {
  background: var(--cream-dark);
  padding: 64px 0;
}

.ueber-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

.ueber-slider-slide {
  min-width: 100%;
  height: 100%;
}

.ueber-slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ueber-slider-inner {
  position: relative;
  overflow: hidden;
  height: 520px;
  max-width: 100%;
  margin: 0;
}

.ueber-slider-prev,
.ueber-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(42,37,32,0.6);
  color: var(--cream);
  border: 1px solid rgba(247,243,238,0.2);
  width: 48px;
  height: 48px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ueber-slider-prev { left: 16px; }
.ueber-slider-next { right: 16px; }

/* ============================================
   VINOTHEK TEASER (Startseite)
   ============================================ */
.section-vino-teaser {
  background: #1a1510;
  padding: 100px 64px;
}

.vino-text .section-label { margin-bottom: 24px; }

.vino-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 20px;
}

.vino-body {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(247,243,238,0.5);
  max-width: 520px;
  margin-bottom: 36px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--anthrazit);
  padding: 15px 32px;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  transition: background 0.2s, color 0.2s;
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--cream);
}

.btn-primary.dark {
  background: var(--anthrazit);
  color: var(--cream);
}
.btn-primary.dark:hover {
  background: var(--rot);
}

.btn-outline {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  color: var(--anthrazit);
  padding: 15px 32px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: var(--anthrazit); }

/* ============================================
   WINE FLIP CARD
   ============================================ */
.wein-card-wrap {
  perspective: 1000px;
  cursor: pointer;
}

.wein-flip {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.wein-flip.flipped { transform: rotateY(180deg); }

.wein-front,
.wein-back {
  backface-visibility: hidden;
  border-radius: 2px;
  overflow: hidden;
}

.wein-back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
  background: #1e1812;
  border: 1px solid rgba(184,146,74,0.3);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.wein-back-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 4px;
}

.wein-back-type {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.wein-detail-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.wein-detail-key {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(247,243,238,0.35);
  width: 100px;
  flex-shrink: 0;
}

.wein-detail-val {
  font-size: 10px;
  color: rgba(247,243,238,0.75);
}

.wein-divider {
  height: 1px;
  background: rgba(184,146,74,0.2);
  margin: 16px 0;
}

.wein-back-desc {
  font-size: 12px;
  line-height: 1.75;
  color: rgba(247,243,238,0.5);
  flex: 1;
}

.wein-download {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  border: none;
  background: none;
  font-family: 'Jost', sans-serif;
}

.wein-download-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.wein-hint {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* Wein-Übersichtsseite */
.weine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2px;
  padding: 64px;
}

/* ============================================
   VINOTHEK SEITE
   ============================================ */
.vino-bild-footer {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
}

.vino-bild-footer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-vino-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 64px;
  align-items: start;
}

.vino-oe-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.vino-oe-day { color: var(--text-muted); }

.vino-menu-card {
  background: #1a1510;
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.vino-menu-eyebrow {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.vino-menu-datum {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(247,243,238,0.4);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.vino-menu-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 28px;
  line-height: 1;
}

.vino-deco {
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 180px;
  font-weight: 300;
  color: rgba(184,146,74,0.05);
  line-height: 1;
  user-select: none;
}

/* ============================================
   KONTAKT
   ============================================ */
.section-kontakt {
  padding: 100px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 64px 80px;
  align-items: start;
}

.social-icon:hover {
  background: var(--gold);
  color: var(--cream) !important;
}

.maps-consent {
  width: 100%;
  height: 360px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.maps-placeholder {
  text-align: center;
  padding: 32px;
  max-width: 320px;
}

.maps-placeholder p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.maps-load-btn {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  background: transparent;
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.2s;
}

.maps-load-btn:hover {
  background: var(--gold);
  color: var(--cream);
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
  background: var(--anthrazit);
  color: var(--cream);
  padding: 72px 64px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(247,243,238,0.08);
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.12em;
}

.footer-brand-sub {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-top: 2px;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(247,243,238,0.3);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 220px;
}

.footer-col-title {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 12px;
  color: rgba(247,243,238,0.45);
  margin-bottom: 8px;
  line-height: 1.6;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 10px;
  color: rgba(247,243,238,0.2);
  letter-spacing: 0.08em;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 10px;
  color: rgba(247,243,238,0.2);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(247,243,238,0.5); }

/* ============================================
   PAGE HERO (Unterseiten)
   ============================================ */
.page-hero {
  background: var(--anthrazit);
  padding: 80px 64px 64px;
  border-bottom: 1px solid rgba(247,243,238,0.08);
}

.page-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}

/* ============================================
   WETTER WIDGET
   ============================================ */
.wetter-widget {
  background: transparent;
  border: none;
  padding: 0;
}

.wetter-temp {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--anthrazit);
  line-height: 1;
  margin-bottom: 24px;
}

.wetter-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.wetter-key { color: var(--text-muted); }
.wetter-val { color: var(--anthrazit); }

.wetter-station {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-top: 20px;
  text-transform: uppercase;
}

.wetter-widget .section-label {
  margin-bottom: 14px;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--anthrazit);
  color: var(--cream);
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 999;
  border-top: 1px solid rgba(184,146,74,0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }

.cookie-text {
  font-size: 12px;
  color: rgba(247,243,238,0.6);
  line-height: 1.6;
  max-width: 600px;
}
.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.wein-kat-link:hover img { transform: translateY(-8px); }

.impressum-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--anthrazit);
  margin: 40px 0 12px;
  letter-spacing: 0.05em;
}

.impressum-text p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--anthrazit-mid);
  margin-bottom: 16px;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .main-nav { padding: 0 32px; }
  .hero-content { padding: 0 40px 64px; }
  .section-aktuelles,
  .section-sortiment,
  .section-vino-teaser { padding: 64px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .main-footer { padding: 56px 40px 0; }
  .footer-bottom { padding: 20px 0; }
  .section-ueber { grid-template-columns: 1fr; }
  .ueber-bild { min-height: 480px; }
  .ueber-text { padding: 56px 40px; }
  .section-vino-full,
  .section-kontakt { grid-template-columns: 1fr; padding: 64px 40px; gap: 48px; }
  .weine-grid { padding: 40px; }
  .awards-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .ueber-awards { padding: 64px 40px; }
  .ueber-slider-inner { height: 380px; }
  .section-sortiment { padding: 64px 40px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 56px; }

  .main-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--nav-height) 0 0 0;
    background: var(--cream);
    padding: 48px 32px;
    gap: 32px;
    z-index: 99;
  }
  .nav-links.open a { font-size: 14px; }

  .hero-content { padding: 0 24px 56px; }
  .hero-scroll { display: none; }

  .section-aktuelles,
  .section-sortiment,
  .section-vino-teaser { padding: 56px 24px; }

  .sortiment-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  .kategorie-grid { grid-template-columns: 1fr; }
  .kategorie-card { height: 320px; }

  .ueber-text { padding: 48px 24px; }
  .ueber-stats { gap: 32px; }
   .ueber-bild { min-height: 520px; }

  .awards-grid { grid-template-columns: 1fr; }
  .ueber-awards { padding: 48px 24px; }
  .award-flasche { height: 120px; }

  .ueber-slider { padding: 48px 0; }
  .ueber-slider-inner { height: 300px; }
  .ueber-slider-prev,
  .ueber-slider-next {
    width: 36px;
    height: 36px;
    font-size: 14px;
    }

  .section-vino-full,
  .section-kontakt { padding: 56px 24px; gap: 40px; }

  .vino-bild-footer { height: 300px; }

  .weine-grid { padding: 24px; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }

  .main-footer { padding: 48px 24px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }

  .cookie-banner { padding: 20px 24px; flex-direction: column; align-items: flex-start; }

  .page-hero { padding: 56px 24px 48px; }

  .section-kontakt { grid-template-columns: 1fr; }

  .weine-kat-grid {
    grid-template-columns: 1fr !important;
    gap: 48px;
  }
  
  .weine-kat-grid img {
    height: 280px !important;
  }

  .wein-card-wrap {
    height: auto !important;
    perspective: none;
  }
  
  .wein-flip {
    transform: none !important;
    transition: none;
  }
  
  .wein-front {
    position: relative;
    height: auto !important;
  }
  
  .wein-back {
    position: relative;
    transform: none;
    inset: auto;
    display: none;
    margin-top: 0;
  }
  
  .wein-card-wrap.open .wein-back {
    display: flex;
  }
  
  .wein-card-wrap.open .wein-front {
    border-bottom: 1px solid rgba(184,146,74,0.3);
  }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .aktuelles-grid { grid-template-columns: 1fr; }
  .cookie-btns { width: 100%; flex-direction: column; }
  .awards-grid { grid-template-columns: 1fr; }
  .kategorie-card { height: 280px; }
  .ueber-slider-inner { height: 240px; }
  .ueber-bild { min-height: 380px; }
}