.bottle-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 120px;
  min-width: 80px;
  height: 340px;
  background: rgba(255, 250, 245, 0.92);
  border-radius: 28px;
  box-shadow: 0 6px 32px 0 rgba(44,27,21,0.10);
  z-index: 0;
  pointer-events: none;
}

.bottle-bg-weiss {
  background: linear-gradient(155deg, #fffaf5 0%, #ece2d2 58%, #e7dacb 100%);
  box-shadow: 0 6px 32px 0 rgba(184,145,85,0.10);
}
.bottle-bg-rot {
  background: linear-gradient(180deg, #7b2432 12%, #3c0c20 34%), radial-gradient(circle at top, #b89155 20%, transparent 36%), linear-gradient(155deg, #fffaf5 0%, #ece2d2 92%);
  box-shadow: 0 6px 32px 0 rgba(123,36,50,0.10);
}
.bottle-bg-rose {
  background: linear-gradient(150deg, #fdf5f5 0%, #ebd7d7 54%, #dac8c8 100%);
  box-shadow: 0 6px 32px 0 rgba(180,100,110,0.10);
}
.bottle-bg-traubensaft {
  background: linear-gradient(180deg, #e7c6a1 0%, #f5ece0 100%);
  box-shadow: 0 6px 32px 0 rgba(44,27,21,0.10);
}
/* Shop-Seite: Buttons über dem Bild */

.shop-page-actions.above-image {
  position: absolute;
  right: 0;
  top: -55px; /* 15px über dem Bildrand, Bild hat 40px border-radius oben */
  z-index: 2;
  display: flex;
  gap: 16px;
  padding-right: 32px;
}

.shop-main {
  position: relative;
}
:root {
  --bg: #f2eee7;
  --bg-soft: #e9e0d1;
  --surface: rgba(247, 242, 234, 0.68);
  --surface-strong: rgba(44, 27, 21, 0.88);
  --text: #241813;
  --muted: #66554d;
  --line: rgba(36, 24, 19, 0.12);
  --accent: #7b2432;
  --accent-deep: #4d1220;
  --gold: #b89155;
  --shadow: 0 24px 60px rgba(55, 32, 25, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope";
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(176, 164, 143, 0.16), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(205, 198, 188, 0.12), transparent 24%),
    linear-gradient(180deg, #f4f1ec 0%, #ebe6df 48%, #e2ddd6 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 56px,
      rgba(73, 49, 40, 0.02) 56px,
      rgba(73, 49, 40, 0.02) 57px
    );
  mix-blend-mode: multiply;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  position: relative;
}

.site-header,
.site-footer,
.hero,
.story,
.collection,
.visit {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 18px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(148px, 15.1vw, 182px);
  aspect-ratio: 1 / 1;
  margin-left: -25px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: multiply;
}

.brand-block {
  display: grid;
  gap: 4px;
  margin-left: -20px;
  width: fit-content;
}

.brand-block .eyebrow,
.brand {
  display: block;
  width: 100%;
  white-space: nowrap;
}

.brand-block .eyebrow {
  letter-spacing: 0.12em;
}

.brand {
  font: inherit;
  color: inherit;
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  white-space: nowrap;
  color: var(--text);
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(123, 36, 50, 0.28);
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.9), rgba(244, 233, 221, 0.86));
  box-shadow:
    0 8px 20px rgba(77, 18, 32, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition:
    transform 180ms ease,
    box-shadow 200ms ease,
    background-color 200ms ease,
    border-color 200ms ease,
    color 200ms ease;
}

.site-nav a.active-nav-btn {
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  color: #fff !important;
  border-color: var(--accent-deep);
  box-shadow: 0 8px 24px rgba(123, 36, 50, 0.18);
  z-index: 1;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(123, 36, 50, 0.14), rgba(123, 36, 50, 0.08));
  border-color: rgba(123, 36, 50, 0.42);
  box-shadow:
    0 12px 26px rgba(77, 18, 32, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  color: var(--accent-deep);
}

.eyebrow,
.card-kicker,
.visit-label,
.wine-number {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: var(--accent);
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.72fr);
  gap: 32px;
  padding: 52px 0 80px;
  min-height: 76vh;
  align-items: end;
}

.hero-banner {
  margin-bottom: 20px;
}

.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-copy {
  padding: 56px 48px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(140deg, rgba(255, 250, 245, 0.82), rgba(238, 229, 216, 0.62)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}



h1, h2, h3, h4, .hero h1, .section-heading h2, .visit h2, .hero-card h2, .legal-hero h1, .legal-section h2, .wine-card-header strong, .wine-card h3, .visit-intro-title, .panel-line strong, .wine-card-header b {
  font-family: "Manrope";
  line-height: 0.95;
  font-weight: 600;
}

.hero h1 {
  margin-top: 16px;
  max-width: 14ch;
  font-size: clamp(1.89rem, 4.14vw, 3.69rem);
  hyphens: auto;
  overflow-wrap: break-word;
}

.wir-section .section-heading h2,
.story .section-heading h2,
.collection .section-heading h2,
.visit h2 {
  margin-top: 16px;
  max-width: 14ch;
  font-size: clamp(1.89rem, 4.14vw, 3.69rem);
  line-height: 1.14;
  hyphens: auto;
  overflow-wrap: break-word;
}

.visit h2 {
  max-width: none;
}

.collection .section-heading h2 {
  font-size: clamp(1.89rem, 4.14vw, 3.69rem);
  max-width: none;
}

.hero-text,
.story-content,
.visit-copy p,
.hero-card p,
.wine-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.2rem;;
}

.hero-text {
  max-width: 56ch;
  margin: 24px 0 0;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 30px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero-facts div {
  display: grid;
  gap: 8px;
}

.hero-facts dt {
  font-family: "Manrope";
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.1;
  min-height: 1.1em;
  white-space: nowrap;
}

.hero-facts dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.hero-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  padding: 32px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(58, 28, 24, 0.3), rgba(34, 16, 16, 0.92)),
    radial-gradient(circle at top, rgba(184, 145, 85, 0.45), transparent 34%);
  color: #f8efe2;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 245, 233, 0.18);
  border-radius: calc(var(--radius-xl) - 10px);
}

.hero-card > * {
  position: relative;
}

.hero-card h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.hero-card p,
.hero-note-label {
  color: rgba(248, 239, 226, 0.8);
}

.hero-note {
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 245, 233, 0.16);
}

.hero-note strong {
  font-size: 1.1rem;
}

.section-grid,
.collection,
.visit,
.wir-section {
  margin-bottom: 28px;
  padding: 44px 0 52px;
}

.wir-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.wir-content {
  display: grid;
  gap: 18px;
  padding-top: 0;
}

.wir-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.2rem;
}

.story {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr) minmax(240px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.section-heading {
  display: grid;
  gap: 16px;
}

.section-heading h2,
.visit h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.4rem);
}

.wir-section .section-heading h2 {
  font-size: clamp(1.89rem, 4.14vw, 3.69rem);
  line-height: 0.95;
}

.story .section-heading h2 {
  font-size: clamp(1.89rem, 4.14vw, 3.69rem);
  line-height: 0.95;
}

.visit-copy .index-h2-match {
  margin-top: 16px;
  max-width: 14ch;
  font-size: clamp(1.89rem, 4.14vw, 3.69rem);
  line-height: 0.95;
  hyphens: auto;
  overflow-wrap: break-word;
}

.section-heading-wide {
  max-width: 760px;
  margin-bottom: 28px;
}

.story-content {
  display: grid;
  gap: 18px;
  padding-top: 10px;
  width: 85%;
  margin-left: 6%;
}

.story-content p {
  margin: 0;
}

.story-panel,
.visit-box,
.wine-card {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.story-panel {
  display: grid;
  gap: 6px;
  margin-top: 30px;
  padding: 12px;
  width: 50%;
}

.panel-line {
  display: grid;
  gap: 3px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line);
}

.panel-line:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.panel-line span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.744rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.panel-line strong {
  font-family: "Manrope";
  font-size: 1.104rem;
  line-height: 1.25;
  font-weight: 600;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.wine-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.wine-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  align-items: stretch;
  gap: 18px;
  padding: 28px;
}

.wine-card-body {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  row-gap: 12px;
  flex: 1;
  min-width: 0;
}

.wine-card-header {
  display: grid;
  gap: 8px;
  align-content: start;
}

.wine-card-text {
  min-height: 0;
  align-self: start;
  overflow: visible;
}

.wine-card-list {
  align-self: end;
}

.wine-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

/* Bild in wine-card im Original-Seitenverhältnis und groß anzeigen */
  .wine-bottle-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    transform: scale(1.6);
  }
}


.wine-card .wine-number {
  display: block;
  line-height: 1;
}

.wine-card h3 {
  margin: 0;
  font-family: "Manrope";
  font-size: 1.5rem;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.1;
  min-height: 1.1em;
}

.wine-card p,
.wine-card ul {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.wine-card-text p {
  margin: 0;
}

.wine-card-list ul {
  margin: 0;
}

.wine-card ul {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.wine-card li {
  font-size: 0.855rem;
  line-height: 1.35;
  margin: 0;
  padding-left: 18px;
  position: relative;
}

.wine-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(184, 145, 85, 0.9);
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.72fr);
  gap: 28px;
  align-items: stretch;
}

.visit-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.visit-intro-title {
  margin: 0;
  font-family: "Manrope";
  font-size: clamp(1.14rem, 1.7vw, 1.5rem);
  line-height: 1.35;
  font-weight: 600;
  color: var(--text);
}

.visit-copy p {
  margin: 0;
}

.visit-copy p a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.visit-contact-card {
  margin-top: 6px;
}

.visit-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(77, 18, 32, 0.2);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(184, 145, 85, 0.18), transparent 34%),
    linear-gradient(150deg, rgba(245, 242, 238, 0.95), rgba(220, 220, 214, 0.92) 54%, rgba(188, 192, 191, 0.96));
  box-shadow: 0 12px 24px rgba(77, 18, 32, 0.2);
  font-weight: 400;
  transition: transform 180ms ease, box-shadow 200ms ease;
}

.visit-contact-link:hover,
.visit-contact-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(77, 18, 32, 0.24);
}

/* ── Gallery / Slideshow ── */
.gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.gallery-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 480ms cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide {
  flex: 0 0 100%;
  margin: 0;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.gallery-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-slide--1 {
  background: #1f1a15;
}
.gallery-slide--2 {
  background: #1f1a15;
}
.gallery-slide--3 {
  background: #1f1a15;
}

.gallery-slide--1 img {
  object-position: center 40%;
}

.gallery-slide--2 img {
  object-position: center 45%;
}

.gallery-slide--3 img {
  object-position: center 35%;
}

.gallery-slide figcaption {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 14px 18px;
  background: linear-gradient(to top, rgba(20, 10, 5, 0.72), transparent);
  color: #f5ece0;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.gallery-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(123, 36, 50, 0.3);
  background: rgba(255, 250, 245, 0.7);
  color: var(--accent-deep);
  font-size: 1.1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease, transform 150ms ease;
}

.gallery-btn:hover {
  background: rgba(123, 36, 50, 0.12);
  transform: scale(1.08);
}

.gallery-dots {
  display: flex;
  gap: 8px;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(36, 24, 19, 0.22);
  cursor: pointer;
  padding: 0;
  transition: background 220ms ease, transform 220ms ease;
}

.gallery-dot.is-active {
  background: var(--accent);
  transform: scale(1.35);
}

.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0 40px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  max-width: 48ch;
}

.footer-links {
  display: grid;
  gap: 6px;
  text-align: right;
}

.footer-links a {
  width: fit-content;
  justify-self: end;
}

.legal-main {
  padding: 34px 0 72px;
}

.legal-hero {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.legal-hero h1 {
  margin: 0;
  font-family: "Manrope";
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
  font-weight: 600;
}

.legal-hero p {
  margin: 0;
  max-width: 64ch;
  color: var(--muted);
  line-height: 1.75;
}

.legal-card {
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(140deg, rgba(255, 250, 245, 0.82), rgba(238, 229, 216, 0.62)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 245, 0.52);
  border: 1px solid rgba(123, 36, 50, 0.12);
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 100%;
}

.legal-section h2 {
  margin: 0;
  font-family: "Manrope";
  font-size: 1.45rem;
  font-weight: 600;
}
b, strong {
  font-family: "Manrope";
  font-weight: 700;
}

.legal-section p,
.legal-section address {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-style: normal;
}

.legal-section a {
  color: var(--accent-deep);
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.legal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(77, 18, 32, 0.2);
  background: rgba(255, 250, 245, 0.7);
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease;
}

.legal-link:hover,
.legal-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(123, 36, 50, 0.08);
}

@media (max-width: 980px) {
  .hero,
  .story,
  .visit,
  .wine-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy,
  .hero-card {
    padding: 32px 24px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .story-panel {
    width: 100%;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
  }

  .footer-links {
    text-align: left;
  }

  .footer-links a {
    justify-self: start;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .site-header {
    align-items: start;
    flex-direction: column;
    padding-top: 20px;
  }

  .brand-wrap {
    gap: 12px;
  }

  .brand-block .eyebrow,
  .brand {
    white-space: normal;
    overflow-wrap: break-word;
  }

  .brand-logo {
    width: 137px;
  }

  .site-nav {
    gap: 14px 18px;
    justify-content: flex-start;
  }

  .hero {
    padding: 20px 0 48px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.71rem, 9.18vw, 2.79rem);
    hyphens: auto;
    overflow-wrap: break-word;
  }

  .section-heading h2,
  .visit h2 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .collection .section-heading h2 {
    font-size: clamp(1.45rem, 7.92vw, 2.24rem);
  }

  .visit h2 {
    font-size: clamp(1.98rem, 10.8vw, 3.06rem);
  }

  .wir-section .section-heading h2 {
    font-size: clamp(1.45rem, 7.92vw, 2.24rem);
  }

  .wir-section {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .story .section-heading h2 {
    font-size: clamp(1.45rem, 7.92vw, 2.24rem);
    white-space: normal;
  }

  .story-content {
    width: 100%;
    margin-left: 0;
  }

  .legal-card {
    padding: 24px;
  }

  .legal-section {
    padding: 18px;
  }

  .visit-box a {
    font-size: 1.7rem;
  }
}